1if not modules then modules = { } end modules ['char-def'] = { 2 version = 1.001, 3 comment = "companion to char-ini.mkiv", 4 author = "Hans Hagen, PRAGMA-ADE, Hasselt NL", 5 copyright = "PRAGMA ADE / ConTeXt Development Team", 6 license = "see context related readme files", 7 dataonly = true, 8} 9 10--[[ 11The first version of this table was generated from unicode tables but after that was 12mostly updated manual using data present in ConTeXt and elsewhere. I did my best to 13make this table as complete as needed for proper use in ConTeXt MkIV. All errors are 14mine. If you find an error or ommision, just let me know. This file is updated every 15now and then using mtx-unicode where we check against the latest unicode txt files 16(normally once per year around the tex live code freeze) and checked afterwards for 17differences. We could save some bytes by sharing variant tables but it's not worth 18the trouble. Some additional data is kept in other files. 19 20For a generic subset of the data here, run "context luatex-basics-prepare.tex" after 21adapting this file. 22 23Todo: get rid of specials = { "font", ... } in math ... we have already vectors. 24Todo: remove adobe names (move them to the glyph list, done) 25Todo: remove some never used context names (idem) 26 27]]-- 28 29local variants_emoji={ 30 [0xFE0E]="text style", 31 [0xFE0F]="emoji style", 32} 33 34local variants_forms={ 35 [0xFE00]="corner-justified form", 36 [0xFE01]="centered form", 37} 38 39local variants_style={ 40 [0xFE00]="chancery style", 41 [0xFE01]="roundhand style", 42} 43 44local variants_dotted={ 45 [0xFE00]="dotted form", 46} 47 48local variants_90={ 49 [0xFE00]="rotated 90 degrees", 50} 51 52local variants_180={ 53 [0xFE01]="rotated 180 degrees", 54} 55 56local variants_270={ 57 [0xFE02]="rotated 270 degrees", 58} 59 60local variants_expanded={ 61 [0xFE00]="expanded", 62} 63 64local variants_90_180={ 65 [0xFE00]="rotated 90 degrees", 66 [0xFE01]="rotated 180 degrees", 67} 68 69local variants_90_180_270={ 70 [0xFE00]="rotated 90 degrees", 71 [0xFE01]="rotated 180 degrees", 72 [0xFE02]="rotated 270 degrees", 73} 74 75local variants_180_270={ 76 [0xFE01]="rotated 180 degrees", 77 [0xFE02]="rotated 270 degrees", 78} 79 80local variants_90_270={ 81 [0xFE00]="rotated 90 degrees", 82 [0xFE02]="rotated 270 degrees", 83} 84 85characters = characters or { } 86 87characters.data={ 88 [0x0]={ 89 category="cc", 90 description="NULL", 91 direction="bn", 92 linebreak="cm", 93 unicodeslot=0x0, 94 }, 95 { 96 category="cc", 97 description="START OF HEADING", 98 direction="bn", 99 linebreak="cm", 100 unicodeslot=0x1, 101 }, 102 { 103 category="cc", 104 description="START OF TEXT", 105 direction="bn", 106 linebreak="cm", 107 unicodeslot=0x2, 108 }, 109 { 110 category="cc", 111 description="END OF TEXT", 112 direction="bn", 113 linebreak="cm", 114 unicodeslot=0x3, 115 }, 116 { 117 category="cc", 118 description="END OF TRANSMISSION", 119 direction="bn", 120 linebreak="cm", 121 unicodeslot=0x4, 122 }, 123 { 124 category="cc", 125 description="ENQUIRY", 126 direction="bn", 127 linebreak="cm", 128 unicodeslot=0x5, 129 }, 130 { 131 category="cc", 132 description="ACKNOWLEDGE", 133 direction="bn", 134 linebreak="cm", 135 unicodeslot=0x6, 136 }, 137 { 138 category="cc", 139 description="BELL", 140 direction="bn", 141 linebreak="cm", 142 unicodeslot=0x7, 143 }, 144 { 145 category="cc", 146 description="BACKSPACE", 147 direction="bn", 148 linebreak="cm", 149 unicodeslot=0x8, 150 }, 151 { 152 category="cc", 153 description="CHARACTER TABULATION", 154 direction="s", 155 linebreak="ba", 156 synonyms={ "horizontal tabulation", "ht", "tab" }, 157 unicodeslot=0x9, 158 }, 159 { 160 category="cc", 161 description="LINE FEED (LF)", 162 direction="b", 163 linebreak="lf", 164 synonyms={ "end of line", "eol", "lf", "new line", "nl" }, 165 unicodeslot=0xA, 166 }, 167 { 168 category="cc", 169 description="LINE TABULATION", 170 direction="s", 171 linebreak="bk", 172 synonyms={ "vertical tabulation", "vt" }, 173 unicodeslot=0xB, 174 }, 175 { 176 category="cc", 177 description="FORM FEED (FF)", 178 direction="ws", 179 linebreak="bk", 180 synonyms={ "ff" }, 181 unicodeslot=0xC, 182 }, 183 { 184 category="cc", 185 description="CARRIAGE RETURN (CR)", 186 direction="b", 187 linebreak="cr", 188 synonyms={ "cr" }, 189 unicodeslot=0xD, 190 }, 191 { 192 category="cc", 193 description="SHIFT OUT", 194 direction="bn", 195 linebreak="cm", 196 unicodeslot=0xE, 197 }, 198 { 199 category="cc", 200 description="SHIFT IN", 201 direction="bn", 202 linebreak="cm", 203 unicodeslot=0xF, 204 }, 205 { 206 category="cc", 207 description="DATA LINK ESCAPE", 208 direction="bn", 209 linebreak="cm", 210 unicodeslot=0x10, 211 }, 212 { 213 category="cc", 214 description="DEVICE CONTROL ONE", 215 direction="bn", 216 linebreak="cm", 217 unicodeslot=0x11, 218 }, 219 { 220 category="cc", 221 description="DEVICE CONTROL TWO", 222 direction="bn", 223 linebreak="cm", 224 unicodeslot=0x12, 225 }, 226 { 227 category="cc", 228 description="DEVICE CONTROL THREE", 229 direction="bn", 230 linebreak="cm", 231 unicodeslot=0x13, 232 }, 233 { 234 category="cc", 235 description="DEVICE CONTROL FOUR", 236 direction="bn", 237 linebreak="cm", 238 unicodeslot=0x14, 239 }, 240 { 241 category="cc", 242 description="NEGATIVE ACKNOWLEDGE", 243 direction="bn", 244 linebreak="cm", 245 unicodeslot=0x15, 246 }, 247 { 248 category="cc", 249 description="SYNCHRONOUS IDLE", 250 direction="bn", 251 linebreak="cm", 252 unicodeslot=0x16, 253 }, 254 { 255 category="cc", 256 description="END OF TRANSMISSION BLOCK", 257 direction="bn", 258 linebreak="cm", 259 unicodeslot=0x17, 260 }, 261 { 262 category="cc", 263 description="CANCEL", 264 direction="bn", 265 linebreak="cm", 266 unicodeslot=0x18, 267 }, 268 { 269 category="cc", 270 description="END OF MEDIUM", 271 direction="bn", 272 linebreak="cm", 273 unicodeslot=0x19, 274 }, 275 { 276 category="cc", 277 description="SUBSTITUTE", 278 direction="bn", 279 linebreak="cm", 280 unicodeslot=0x1A, 281 }, 282 { 283 category="cc", 284 description="ESCAPE", 285 direction="bn", 286 linebreak="cm", 287 unicodeslot=0x1B, 288 }, 289 { 290 category="cc", 291 description="INFORMATION SEPARATOR FOUR", 292 direction="b", 293 linebreak="cm", 294 synonyms={ "file separator" }, 295 unicodeslot=0x1C, 296 }, 297 { 298 category="cc", 299 description="INFORMATION SEPARATOR THREE", 300 direction="b", 301 linebreak="cm", 302 synonyms={ "group separator" }, 303 unicodeslot=0x1D, 304 }, 305 { 306 category="cc", 307 description="INFORMATION SEPARATOR TWO", 308 direction="b", 309 linebreak="cm", 310 synonyms={ "record separator" }, 311 unicodeslot=0x1E, 312 }, 313 { 314 category="cc", 315 description="INFORMATION SEPARATOR ONE", 316 direction="s", 317 linebreak="cm", 318 synonyms={ "unit separator" }, 319 unicodeslot=0x1F, 320 }, 321 { 322 category="zs", 323 cjkwd="na", 324 description="SPACE", 325 direction="ws", 326 linebreak="sp", 327 unicodeslot=0x20, 328 }, 329 { 330 category="po", 331 cjkwd="na", 332 description="EXCLAMATION MARK", 333 direction="on", 334 linebreak="ex", 335 mathclass="factorial", 336 mathgroup="factorial", 337 mathmeaning="factorial", 338 synonyms={ "bang", "factorial" }, 339 unicodeslot=0x21, 340 }, 341 { 342 category="po", 343 cjkwd="na", 344 contextname="quotedbl", 345 description="QUOTATION MARK", 346 direction="on", 347 linebreak="qu", 348 mathclass="ordinary", 349 synonyms={ "neutral quotation mark" }, 350 unicodeslot=0x22, 351 }, 352 { 353 category="po", 354 cjkwd="na", 355 contextname="texthash", 356 description="NUMBER SIGN", 357 direction="et", 358 linebreak="al", 359 mathclass="binary", 360 mathgroup="unary arithmetic", 361 mathmeaning="the number of", 362 mathname="mathhash", 363 synonyms={ "crosshatch", "hash", "octothorpe", "pound sign" }, 364 unicodeslot=0x23, 365 variants=variants_emoji, 366 }, 367 { 368 category="sc", 369 cjkwd="na", 370 contextname="textdollar", 371 description="DOLLAR SIGN", 372 direction="et", 373 linebreak="pr", 374 mathclass="binary", 375 mathname="mathdollar", 376 synonyms={ "escudo", "milreis" }, 377 unicodeslot=0x24, 378 }, 379 { 380 category="po", 381 cjkwd="na", 382 contextname="textpercent", 383 description="PERCENT SIGN", 384 direction="et", 385 linebreak="po", 386 mathclass="binary", 387 mathgroup="quantifier", 388 mathmeaning="percent", 389 mathname="mathpercent", 390 unicodeslot=0x25, 391 }, 392 { 393 category="po", 394 cjkwd="na", 395 contextname="textampersand", 396 description="AMPERSAND", 397 direction="on", 398 linebreak="al", 399 mathclass="binary", 400 mathgroup="binary logical", 401 mathmeaning="and", 402 mathname="mathampersand", 403 unicodeslot=0x26, 404 }, 405 { 406 category="po", 407 cjkwd="na", 408 contextname="quotesingle", 409 description="APOSTROPHE", 410 direction="on", 411 linebreak="qu", 412 mathclass="prime", 413 synonyms={ "apl quote", "apostrophe-quote", "neutral single quotation mark" }, 414 unicodeslot=0x27, 415 }, 416 { 417 category="ps", 418 cjkwd="na", 419 description="LEFT PARENTHESIS", 420 direction="on", 421 linebreak="op", 422 mathclass="open", 423 mathname="lparent", 424 mirror=0x29, 425 synonyms={ "opening parenthesis" }, 426 textclass="open", 427 unicodeslot=0x28, 428 }, 429 { 430 category="pe", 431 cjkwd="na", 432 description="RIGHT PARENTHESIS", 433 direction="on", 434 linebreak="cp", 435 mathclass="close", 436 mathname="rparent", 437 mirror=0x28, 438 synonyms={ "closing parenthesis" }, 439 textclass="close", 440 unicodeslot=0x29, 441 }, 442 { 443 category="po", 444 cjkwd="na", 445 description="ASTERISK", 446 direction="on", 447 linebreak="al", 448 mathclass="binary", 449 mathsymbol=0x2217, 450 synonyms={ "star" }, 451 unicodeslot=0x2A, 452 variants=variants_emoji, 453 }, 454 { 455 category="sm", 456 cjkwd="na", 457 description="PLUS SIGN", 458 direction="es", 459 linebreak="pr", 460 mathclass="binary", 461 mathgroup="binary arithmetic", 462 mathmeaning="plus", 463 unicodeslot=0x2B, 464 }, 465 { 466 category="po", 467 cjkwd="na", 468 contextname="textcomma", 469 description="COMMA", 470 direction="cs", 471 linebreak="is", 472 mathclass="punctuation", 473 mathgroup="punctuation", 474 mathmeaning="comma", 475 synonyms={ "decimal separator" }, 476 unicodeslot=0x2C, 477 }, 478 { 479 category="pd", 480 cjkwd="na", 481 contextname="texthyphen", 482 description="HYPHEN-MINUS", 483 direction="es", 484 linebreak="hy", 485 mathclass="ordinary", 486 mathextensible="h", 487 mathfiller="relfill", 488 mathgroup="binary arithmetic", 489 mathname="mathhyphen", 490 mathsymbol=0x2212, 491 synonyms={ "hyphen or minus sign", "hyphus" }, 492 unicodeslot=0x2D, 493 }, 494 { 495 category="po", 496 cjkwd="na", 497 comment="class needed for autopunctuation", 498 contextname="textperiod", 499 description="FULL STOP", 500 direction="cs", 501 linebreak="is", 502 mathclass="punctuation", 503 mathspec={ 504 { 505 class="binary", 506 name="ldot", 507 }, 508 { 509 class="punctuation", 510 name="ldotp", 511 }, 512 }, 513 synonyms={ "decimal point", "dot", "period" }, 514 unicodeslot=0x2E, 515 }, 516 { 517 category="po", 518 cjkwd="na", 519 contextname="textslash", 520 description="SOLIDUS", 521 direction="cs", 522 linebreak="sy", 523 mathclass="division", 524 mathgroup="binary arithmetic", 525 mathmeaning="divided by", 526 mathspec={ 527 { 528 class="division", 529 name="slash", 530 }, 531 { 532 class="division", 533 name="solidus", 534 }, 535 }, 536 synonyms={ "slash", "virgule" }, 537 unicodeslot=0x2F, 538 }, 539 { 540 category="nd", 541 cjkwd="na", 542 description="DIGIT ZERO", 543 direction="en", 544 linebreak="nu", 545 mathclass="digit", 546 unicodeslot=0x30, 547 variants={ 548 [0xFE00]="short diagonal stroke form", 549 [0xFE0E]="text style", 550 [0xFE0F]="emoji style", 551 }, 552 }, 553 { 554 category="nd", 555 cjkwd="na", 556 description="DIGIT ONE", 557 direction="en", 558 linebreak="nu", 559 mathclass="digit", 560 unicodeslot=0x31, 561 variants=variants_emoji, 562 }, 563 { 564 category="nd", 565 cjkwd="na", 566 description="DIGIT TWO", 567 direction="en", 568 linebreak="nu", 569 mathclass="digit", 570 unicodeslot=0x32, 571 variants=variants_emoji, 572 }, 573 { 574 category="nd", 575 cjkwd="na", 576 description="DIGIT THREE", 577 direction="en", 578 linebreak="nu", 579 mathclass="digit", 580 unicodeslot=0x33, 581 variants=variants_emoji, 582 }, 583 { 584 category="nd", 585 cjkwd="na", 586 description="DIGIT FOUR", 587 direction="en", 588 linebreak="nu", 589 mathclass="digit", 590 unicodeslot=0x34, 591 variants=variants_emoji, 592 }, 593 { 594 category="nd", 595 cjkwd="na", 596 description="DIGIT FIVE", 597 direction="en", 598 linebreak="nu", 599 mathclass="digit", 600 unicodeslot=0x35, 601 variants=variants_emoji, 602 }, 603 { 604 category="nd", 605 cjkwd="na", 606 description="DIGIT SIX", 607 direction="en", 608 linebreak="nu", 609 mathclass="digit", 610 unicodeslot=0x36, 611 variants=variants_emoji, 612 }, 613 { 614 category="nd", 615 cjkwd="na", 616 description="DIGIT SEVEN", 617 direction="en", 618 linebreak="nu", 619 mathclass="digit", 620 unicodeslot=0x37, 621 variants=variants_emoji, 622 }, 623 { 624 category="nd", 625 cjkwd="na", 626 description="DIGIT EIGHT", 627 direction="en", 628 linebreak="nu", 629 mathclass="digit", 630 unicodeslot=0x38, 631 variants=variants_emoji, 632 }, 633 { 634 category="nd", 635 cjkwd="na", 636 description="DIGIT NINE", 637 direction="en", 638 linebreak="nu", 639 mathclass="digit", 640 unicodeslot=0x39, 641 variants=variants_emoji, 642 }, 643 { 644 category="po", 645 cjkwd="na", 646 comment="mathclass=punctuation,mathname=colon,mathsymbol=0x2236", 647 description="COLON", 648 direction="cs", 649 linebreak="is", 650 mathclass="relation", 651 unicodeslot=0x3A, 652 }, 653 { 654 category="po", 655 cjkwd="na", 656 description="SEMICOLON", 657 direction="on", 658 linebreak="is", 659 mathclass="punctuation", 660 synonyms={ "greek question mark" }, 661 unicodeslot=0x3B, 662 }, 663 { 664 category="sm", 665 cjkwd="na", 666 description="LESS-THAN SIGN", 667 direction="on", 668 linebreak="al", 669 mathclass="relation", 670 mathgroup="binary relation", 671 mathmeaning="is less than", 672 mathname="lt", 673 mirror=0x3E, 674 textclass="open", 675 unicodeslot=0x3C, 676 }, 677 { 678 category="sm", 679 cjkwd="na", 680 comment="mathclass=binary", 681 description="EQUALS SIGN", 682 direction="on", 683 linebreak="al", 684 mathextensible="h", 685 mathfiller="equalfill", 686 mathgroup="binary relation", 687 mathmeaning="equals", 688 mathspec={ 689 { 690 class="relation", 691 name="eq", 692 }, 693 { 694 class="relation", 695 comment="useless", 696 name="Relbar", 697 }, 698 }, 699 unicodeslot=0x3D, 700 }, 701 { 702 category="sm", 703 cjkwd="na", 704 description="GREATER-THAN SIGN", 705 direction="on", 706 linebreak="al", 707 mathclass="relation", 708 mathgroup="binary relation", 709 mathmeaning="is greater than", 710 mathname="gt", 711 mirror=0x3C, 712 textclass="close", 713 unicodeslot=0x3E, 714 }, 715 { 716 category="po", 717 cjkwd="na", 718 description="QUESTION MARK", 719 direction="on", 720 linebreak="ex", 721 mathclass="close", 722 unicodeslot=0x3F, 723 }, 724 { 725 category="po", 726 cjkwd="na", 727 contextname="textat", 728 description="COMMERCIAL AT", 729 direction="on", 730 linebreak="al", 731 synonyms={ "at sign" }, 732 unicodeslot=0x40, 733 }, 734 { 735 category="lu", 736 cjkwd="na", 737 description="LATIN CAPITAL LETTER A", 738 direction="l", 739 lccode=0x61, 740 linebreak="al", 741 mathclass="variable", 742 unicodeslot=0x41, 743 }, 744 { 745 category="lu", 746 cjkwd="na", 747 description="LATIN CAPITAL LETTER B", 748 direction="l", 749 lccode=0x62, 750 linebreak="al", 751 mathclass="variable", 752 unicodeslot=0x42, 753 }, 754 { 755 category="lu", 756 cjkwd="na", 757 description="LATIN CAPITAL LETTER C", 758 direction="l", 759 lccode=0x63, 760 linebreak="al", 761 mathclass="variable", 762 unicodeslot=0x43, 763 }, 764 { 765 category="lu", 766 cjkwd="na", 767 description="LATIN CAPITAL LETTER D", 768 direction="l", 769 lccode=0x64, 770 linebreak="al", 771 mathclass="variable", 772 mathspec={ 773 { 774 class="differential", 775 group="differential", 776 meaning="differential operator D", 777 name="mathDuprightshape", 778 }, 779 }, 780 unicodeslot=0x44, 781 }, 782 { 783 category="lu", 784 cjkwd="na", 785 description="LATIN CAPITAL LETTER E", 786 direction="l", 787 lccode=0x65, 788 linebreak="al", 789 mathclass="variable", 790 unicodeslot=0x45, 791 }, 792 { 793 category="lu", 794 cjkwd="na", 795 description="LATIN CAPITAL LETTER F", 796 direction="l", 797 lccode=0x66, 798 linebreak="al", 799 mathclass="variable", 800 unicodeslot=0x46, 801 }, 802 { 803 category="lu", 804 cjkwd="na", 805 description="LATIN CAPITAL LETTER G", 806 direction="l", 807 lccode=0x67, 808 linebreak="al", 809 mathclass="variable", 810 unicodeslot=0x47, 811 }, 812 { 813 category="lu", 814 cjkwd="na", 815 description="LATIN CAPITAL LETTER H", 816 direction="l", 817 lccode=0x68, 818 linebreak="al", 819 mathclass="variable", 820 unicodeslot=0x48, 821 }, 822 { 823 category="lu", 824 cjkwd="na", 825 contextname="dotlessI", 826 description="LATIN CAPITAL LETTER I", 827 direction="l", 828 lccode=0x69, 829 linebreak="al", 830 mathclass="variable", 831 unicodeslot=0x49, 832 }, 833 { 834 category="lu", 835 cjkwd="na", 836 contextname="dotlessJ", 837 description="LATIN CAPITAL LETTER J", 838 direction="l", 839 lccode=0x6A, 840 linebreak="al", 841 mathclass="variable", 842 unicodeslot=0x4A, 843 }, 844 { 845 category="lu", 846 cjkwd="na", 847 description="LATIN CAPITAL LETTER K", 848 direction="l", 849 lccode=0x6B, 850 linebreak="al", 851 mathclass="variable", 852 unicodeslot=0x4B, 853 }, 854 { 855 category="lu", 856 cjkwd="na", 857 description="LATIN CAPITAL LETTER L", 858 direction="l", 859 lccode=0x6C, 860 linebreak="al", 861 mathclass="variable", 862 unicodeslot=0x4C, 863 }, 864 { 865 category="lu", 866 cjkwd="na", 867 description="LATIN CAPITAL LETTER M", 868 direction="l", 869 lccode=0x6D, 870 linebreak="al", 871 mathclass="variable", 872 unicodeslot=0x4D, 873 }, 874 { 875 category="lu", 876 cjkwd="na", 877 description="LATIN CAPITAL LETTER N", 878 direction="l", 879 lccode=0x6E, 880 linebreak="al", 881 mathclass="variable", 882 unicodeslot=0x4E, 883 }, 884 { 885 category="lu", 886 cjkwd="na", 887 description="LATIN CAPITAL LETTER O", 888 direction="l", 889 lccode=0x6F, 890 linebreak="al", 891 mathclass="variable", 892 unicodeslot=0x4F, 893 }, 894 { 895 category="lu", 896 cjkwd="na", 897 description="LATIN CAPITAL LETTER P", 898 direction="l", 899 lccode=0x70, 900 linebreak="al", 901 mathclass="variable", 902 unicodeslot=0x50, 903 }, 904 { 905 category="lu", 906 cjkwd="na", 907 description="LATIN CAPITAL LETTER Q", 908 direction="l", 909 lccode=0x71, 910 linebreak="al", 911 mathclass="variable", 912 unicodeslot=0x51, 913 }, 914 { 915 category="lu", 916 cjkwd="na", 917 description="LATIN CAPITAL LETTER R", 918 direction="l", 919 lccode=0x72, 920 linebreak="al", 921 mathclass="variable", 922 unicodeslot=0x52, 923 }, 924 { 925 category="lu", 926 cjkwd="na", 927 description="LATIN CAPITAL LETTER S", 928 direction="l", 929 lccode=0x73, 930 linebreak="al", 931 mathclass="variable", 932 unicodeslot=0x53, 933 }, 934 { 935 category="lu", 936 cjkwd="na", 937 description="LATIN CAPITAL LETTER T", 938 direction="l", 939 lccode=0x74, 940 linebreak="al", 941 mathclass="variable", 942 unicodeslot=0x54, 943 }, 944 { 945 category="lu", 946 cjkwd="na", 947 description="LATIN CAPITAL LETTER U", 948 direction="l", 949 lccode=0x75, 950 linebreak="al", 951 mathclass="variable", 952 unicodeslot=0x55, 953 }, 954 { 955 category="lu", 956 cjkwd="na", 957 description="LATIN CAPITAL LETTER V", 958 direction="l", 959 lccode=0x76, 960 linebreak="al", 961 mathclass="variable", 962 unicodeslot=0x56, 963 }, 964 { 965 category="lu", 966 cjkwd="na", 967 description="LATIN CAPITAL LETTER W", 968 direction="l", 969 lccode=0x77, 970 linebreak="al", 971 mathclass="variable", 972 unicodeslot=0x57, 973 }, 974 { 975 category="lu", 976 cjkwd="na", 977 description="LATIN CAPITAL LETTER X", 978 direction="l", 979 lccode=0x78, 980 linebreak="al", 981 mathclass="variable", 982 unicodeslot=0x58, 983 }, 984 { 985 category="lu", 986 cjkwd="na", 987 description="LATIN CAPITAL LETTER Y", 988 direction="l", 989 lccode=0x79, 990 linebreak="al", 991 mathclass="variable", 992 unicodeslot=0x59, 993 }, 994 { 995 category="lu", 996 cjkwd="na", 997 description="LATIN CAPITAL LETTER Z", 998 direction="l", 999 lccode=0x7A, 1000 linebreak="al", 1001 mathclass="variable", 1002 unicodeslot=0x5A, 1003 }, 1004 { 1005 category="ps", 1006 cjkwd="na", 1007 description="LEFT SQUARE BRACKET", 1008 direction="on", 1009 linebreak="op", 1010 mathclass="open", 1011 mathname="lbracket", 1012 mirror=0x5D, 1013 synonyms={ "opening square bracket" }, 1014 textclass="open", 1015 unicodeslot=0x5B, 1016 }, 1017 { 1018 category="po", 1019 cjkwd="na", 1020 contextname="textbackslash", 1021 description="REVERSE SOLIDUS", 1022 direction="on", 1023 linebreak="pr", 1024 mathclass="division", 1025 mathname="backslash", 1026 synonyms={ "backslash" }, 1027 unicodeslot=0x5C, 1028 }, 1029 { 1030 category="pe", 1031 cjkwd="na", 1032 description="RIGHT SQUARE BRACKET", 1033 direction="on", 1034 linebreak="cp", 1035 mathclass="close", 1036 mathname="rbracket", 1037 mirror=0x5B, 1038 synonyms={ "closing square bracket" }, 1039 textclass="close", 1040 unicodeslot=0x5D, 1041 }, 1042 { 1043 category="sk", 1044 cjkwd="na", 1045 comment="the Hat looks rediculous in most fonts", 1046 contextname="textasciicircum", 1047 description="CIRCUMFLEX ACCENT", 1048 direction="on", 1049 linebreak="al", 1050 synonyms={ "spacing circumflex accent" }, 1051 unicodeslot=0x5E, 1052 }, 1053 { 1054 category="pc", 1055 cjkwd="na", 1056 contextname="textunderscore", 1057 description="LOW LINE", 1058 direction="on", 1059 linebreak="al", 1060 synonyms={ "spacing underscore" }, 1061 unicodeslot=0x5F, 1062 }, 1063 { 1064 category="sk", 1065 cjkwd="na", 1066 contextname="textgrave", 1067 description="GRAVE ACCENT", 1068 direction="on", 1069 linebreak="al", 1070 mathspec={ 1071 { 1072 class="topaccent", 1073 name="grave", 1074 }, 1075 { 1076 class="topaccent", 1077 name="widegrave", 1078 stretch="h", 1079 }, 1080 }, 1081 synonyms={ "spacing grave accent" }, 1082 unicodeslot=0x60, 1083 }, 1084 { 1085 category="ll", 1086 cjkwd="na", 1087 description="LATIN SMALL LETTER A", 1088 direction="l", 1089 linebreak="al", 1090 mathclass="variable", 1091 uccode=0x41, 1092 unicodeslot=0x61, 1093 }, 1094 { 1095 category="ll", 1096 cjkwd="na", 1097 description="LATIN SMALL LETTER B", 1098 direction="l", 1099 linebreak="al", 1100 mathclass="variable", 1101 uccode=0x42, 1102 unicodeslot=0x62, 1103 }, 1104 { 1105 category="ll", 1106 cjkwd="na", 1107 description="LATIN SMALL LETTER C", 1108 direction="l", 1109 linebreak="al", 1110 mathclass="variable", 1111 uccode=0x43, 1112 unicodeslot=0x63, 1113 }, 1114 { 1115 category="ll", 1116 cjkwd="na", 1117 description="LATIN SMALL LETTER D", 1118 direction="l", 1119 linebreak="al", 1120 mathclass="variable", 1121 mathmeaning="d", 1122 mathspec={ 1123 { 1124 class="differential", 1125 group="differential", 1126 meaning="differential d", 1127 name="mathduprightshape", 1128 }, 1129 }, 1130 uccode=0x44, 1131 unicodeslot=0x64, 1132 }, 1133 { 1134 category="ll", 1135 cjkwd="na", 1136 description="LATIN SMALL LETTER E", 1137 direction="l", 1138 linebreak="al", 1139 mathclass="variable", 1140 mathmeaning="e", 1141 mathspec={ 1142 { 1143 class="exponential", 1144 group="exponential", 1145 meaning="exponential e", 1146 name="matheuprightshape", 1147 }, 1148 }, 1149 uccode=0x45, 1150 unicodeslot=0x65, 1151 }, 1152 { 1153 category="ll", 1154 cjkwd="na", 1155 description="LATIN SMALL LETTER F", 1156 direction="l", 1157 linebreak="al", 1158 mathclass="variable", 1159 uccode=0x46, 1160 unicodeslot=0x66, 1161 }, 1162 { 1163 category="ll", 1164 cjkwd="na", 1165 description="LATIN SMALL LETTER G", 1166 direction="l", 1167 linebreak="al", 1168 mathclass="variable", 1169 uccode=0x47, 1170 unicodeslot=0x67, 1171 }, 1172 { 1173 category="ll", 1174 cjkwd="na", 1175 description="LATIN SMALL LETTER H", 1176 direction="l", 1177 linebreak="al", 1178 mathclass="variable", 1179 uccode=0x48, 1180 unicodeslot=0x68, 1181 }, 1182 { 1183 category="ll", 1184 cjkwd="na", 1185 contextname="idotaccent", 1186 description="LATIN SMALL LETTER I", 1187 direction="l", 1188 linebreak="al", 1189 mathclass="variable", 1190 mathmeaning="i", 1191 mathspec={ 1192 { 1193 class="imaginary", 1194 group="imaginary", 1195 meaning="imaginary i", 1196 name="mathiuprightshape", 1197 }, 1198 }, 1199 uccode=0x49, 1200 unicodeslot=0x69, 1201 }, 1202 { 1203 category="ll", 1204 cjkwd="na", 1205 description="LATIN SMALL LETTER J", 1206 direction="l", 1207 linebreak="al", 1208 mathclass="variable", 1209 mathmeaning="j", 1210 mathspec={ 1211 { 1212 class="imaginary", 1213 group="imaginary", 1214 meaning="imaginary j", 1215 name="mathjuprightshape", 1216 }, 1217 }, 1218 uccode=0x4A, 1219 unicodeslot=0x6A, 1220 }, 1221 { 1222 category="ll", 1223 cjkwd="na", 1224 description="LATIN SMALL LETTER K", 1225 direction="l", 1226 linebreak="al", 1227 mathclass="variable", 1228 uccode=0x4B, 1229 unicodeslot=0x6B, 1230 }, 1231 { 1232 category="ll", 1233 cjkwd="na", 1234 description="LATIN SMALL LETTER L", 1235 direction="l", 1236 linebreak="al", 1237 mathclass="variable", 1238 uccode=0x4C, 1239 unicodeslot=0x6C, 1240 }, 1241 { 1242 category="ll", 1243 cjkwd="na", 1244 description="LATIN SMALL LETTER M", 1245 direction="l", 1246 linebreak="al", 1247 mathclass="variable", 1248 uccode=0x4D, 1249 unicodeslot=0x6D, 1250 }, 1251 { 1252 category="ll", 1253 cjkwd="na", 1254 description="LATIN SMALL LETTER N", 1255 direction="l", 1256 linebreak="al", 1257 mathclass="variable", 1258 uccode=0x4E, 1259 unicodeslot=0x6E, 1260 }, 1261 { 1262 category="ll", 1263 cjkwd="na", 1264 description="LATIN SMALL LETTER O", 1265 direction="l", 1266 linebreak="al", 1267 mathclass="variable", 1268 uccode=0x4F, 1269 unicodeslot=0x6F, 1270 }, 1271 { 1272 category="ll", 1273 cjkwd="na", 1274 description="LATIN SMALL LETTER P", 1275 direction="l", 1276 linebreak="al", 1277 mathclass="variable", 1278 uccode=0x50, 1279 unicodeslot=0x70, 1280 }, 1281 { 1282 category="ll", 1283 cjkwd="na", 1284 description="LATIN SMALL LETTER Q", 1285 direction="l", 1286 linebreak="al", 1287 mathclass="variable", 1288 uccode=0x51, 1289 unicodeslot=0x71, 1290 }, 1291 { 1292 category="ll", 1293 cjkwd="na", 1294 description="LATIN SMALL LETTER R", 1295 direction="l", 1296 linebreak="al", 1297 mathclass="variable", 1298 uccode=0x52, 1299 unicodeslot=0x72, 1300 }, 1301 { 1302 category="ll", 1303 cjkwd="na", 1304 description="LATIN SMALL LETTER S", 1305 direction="l", 1306 linebreak="al", 1307 mathclass="variable", 1308 uccode=0x53, 1309 unicodeslot=0x73, 1310 }, 1311 { 1312 category="ll", 1313 cjkwd="na", 1314 description="LATIN SMALL LETTER T", 1315 direction="l", 1316 linebreak="al", 1317 mathclass="variable", 1318 uccode=0x54, 1319 unicodeslot=0x74, 1320 }, 1321 { 1322 category="ll", 1323 cjkwd="na", 1324 description="LATIN SMALL LETTER U", 1325 direction="l", 1326 linebreak="al", 1327 mathclass="variable", 1328 uccode=0x55, 1329 unicodeslot=0x75, 1330 }, 1331 { 1332 category="ll", 1333 cjkwd="na", 1334 description="LATIN SMALL LETTER V", 1335 direction="l", 1336 linebreak="al", 1337 mathclass="variable", 1338 uccode=0x56, 1339 unicodeslot=0x76, 1340 }, 1341 { 1342 category="ll", 1343 cjkwd="na", 1344 description="LATIN SMALL LETTER W", 1345 direction="l", 1346 linebreak="al", 1347 mathclass="variable", 1348 uccode=0x57, 1349 unicodeslot=0x77, 1350 }, 1351 { 1352 category="ll", 1353 cjkwd="na", 1354 description="LATIN SMALL LETTER X", 1355 direction="l", 1356 linebreak="al", 1357 mathclass="variable", 1358 uccode=0x58, 1359 unicodeslot=0x78, 1360 }, 1361 { 1362 category="ll", 1363 cjkwd="na", 1364 description="LATIN SMALL LETTER Y", 1365 direction="l", 1366 linebreak="al", 1367 mathclass="variable", 1368 uccode=0x59, 1369 unicodeslot=0x79, 1370 }, 1371 { 1372 category="ll", 1373 cjkwd="na", 1374 description="LATIN SMALL LETTER Z", 1375 direction="l", 1376 linebreak="al", 1377 mathclass="variable", 1378 uccode=0x5A, 1379 unicodeslot=0x7A, 1380 }, 1381 { 1382 category="ps", 1383 cjkwd="na", 1384 contextname="textbraceleft", 1385 description="LEFT CURLY BRACKET", 1386 direction="on", 1387 linebreak="op", 1388 mathclass="open", 1389 mathname="lbrace", 1390 mirror=0x7D, 1391 synonyms={ "opening brace", "opening curly bracket" }, 1392 textclass="open", 1393 unicodeslot=0x7B, 1394 }, 1395 { 1396 category="sm", 1397 cjkwd="na", 1398 comment="mathclass=binary,mathname=bar", 1399 contextname="textbar", 1400 description="VERTICAL LINE", 1401 direction="on", 1402 linebreak="ba", 1403 mathclass="ordinary", 1404 mathspec={ 1405 { 1406 class="delimiter", 1407 name="vert", 1408 }, 1409 { 1410 class="open", 1411 name="lvert", 1412 }, 1413 { 1414 class="middle", 1415 name="mvert", 1416 }, 1417 { 1418 class="close", 1419 name="rvert", 1420 }, 1421 { 1422 class="delimiter", 1423 name="singleverticalbar", 1424 }, 1425 }, 1426 synonyms={ "absolute value", "vertical bar" }, 1427 unicodeslot=0x7C, 1428 }, 1429 { 1430 category="pe", 1431 cjkwd="na", 1432 contextname="textbraceright", 1433 description="RIGHT CURLY BRACKET", 1434 direction="on", 1435 linebreak="cl", 1436 mathclass="close", 1437 mathname="rbrace", 1438 mirror=0x7B, 1439 synonyms={ "closing brace", "closing curly bracket" }, 1440 textclass="close", 1441 unicodeslot=0x7D, 1442 }, 1443 { 1444 category="sm", 1445 cjkwd="na", 1446 contextname="textasciitilde", 1447 description="TILDE", 1448 direction="on", 1449 linebreak="al", 1450 mathclass="relation", 1451 synonyms={ "spacing tilde" }, 1452 unicodeslot=0x7E, 1453 }, 1454 { 1455 category="cc", 1456 description="DELETE", 1457 direction="bn", 1458 linebreak="cm", 1459 unicodeslot=0x7F, 1460 }, 1461 { 1462 category="cc", 1463 description="NONE", 1464 direction="bn", 1465 linebreak="cm", 1466 unicodeslot=0x80, 1467 }, 1468 { 1469 category="cc", 1470 description="NONE", 1471 direction="bn", 1472 linebreak="cm", 1473 unicodeslot=0x81, 1474 }, 1475 { 1476 category="cc", 1477 description="BREAK PERMITTED HERE", 1478 direction="bn", 1479 linebreak="cm", 1480 unicodeslot=0x82, 1481 }, 1482 { 1483 category="cc", 1484 description="NO BREAK HERE", 1485 direction="bn", 1486 linebreak="cm", 1487 unicodeslot=0x83, 1488 }, 1489 { 1490 category="cc", 1491 description="NONE", 1492 direction="bn", 1493 linebreak="cm", 1494 unicodeslot=0x84, 1495 }, 1496 { 1497 category="cc", 1498 description="NEXT LINE (NEL)", 1499 direction="b", 1500 linebreak="nl", 1501 synonyms={ "nel" }, 1502 unicodeslot=0x85, 1503 }, 1504 { 1505 category="cc", 1506 description="START OF SELECTED AREA", 1507 direction="bn", 1508 linebreak="cm", 1509 unicodeslot=0x86, 1510 }, 1511 { 1512 category="cc", 1513 description="END OF SELECTED AREA", 1514 direction="bn", 1515 linebreak="cm", 1516 unicodeslot=0x87, 1517 }, 1518 { 1519 category="cc", 1520 description="CHARACTER TABULATION SET", 1521 direction="bn", 1522 linebreak="cm", 1523 unicodeslot=0x88, 1524 }, 1525 { 1526 category="cc", 1527 description="CHARACTER TABULATION WITH JUSTIFICATION", 1528 direction="bn", 1529 linebreak="cm", 1530 unicodeslot=0x89, 1531 }, 1532 { 1533 category="cc", 1534 description="LINE TABULATION SET", 1535 direction="bn", 1536 linebreak="cm", 1537 unicodeslot=0x8A, 1538 }, 1539 { 1540 category="cc", 1541 description="PARTIAL LINE FORWARD", 1542 direction="bn", 1543 linebreak="cm", 1544 unicodeslot=0x8B, 1545 }, 1546 { 1547 category="cc", 1548 description="PARTIAL LINE BACKWARD", 1549 direction="bn", 1550 linebreak="cm", 1551 unicodeslot=0x8C, 1552 }, 1553 { 1554 category="cc", 1555 description="REVERSE LINE FEED", 1556 direction="bn", 1557 linebreak="cm", 1558 unicodeslot=0x8D, 1559 }, 1560 { 1561 category="cc", 1562 description="SINGLE SHIFT TWO", 1563 direction="bn", 1564 linebreak="cm", 1565 unicodeslot=0x8E, 1566 }, 1567 { 1568 category="cc", 1569 description="SINGLE SHIFT THREE", 1570 direction="bn", 1571 linebreak="cm", 1572 unicodeslot=0x8F, 1573 }, 1574 { 1575 category="cc", 1576 description="DEVICE CONTROL STRING", 1577 direction="bn", 1578 linebreak="cm", 1579 unicodeslot=0x90, 1580 }, 1581 { 1582 category="cc", 1583 description="PRIVATE USE ONE", 1584 direction="bn", 1585 linebreak="cm", 1586 unicodeslot=0x91, 1587 }, 1588 { 1589 category="cc", 1590 description="PRIVATE USE TWO", 1591 direction="bn", 1592 linebreak="cm", 1593 unicodeslot=0x92, 1594 }, 1595 { 1596 category="cc", 1597 description="SET TRANSMIT STATE", 1598 direction="bn", 1599 linebreak="cm", 1600 unicodeslot=0x93, 1601 }, 1602 { 1603 category="cc", 1604 description="CANCEL CHARACTER", 1605 direction="bn", 1606 linebreak="cm", 1607 unicodeslot=0x94, 1608 }, 1609 { 1610 category="cc", 1611 description="MESSAGE WAITING", 1612 direction="bn", 1613 linebreak="cm", 1614 unicodeslot=0x95, 1615 }, 1616 { 1617 category="cc", 1618 description="START OF GUARDED AREA", 1619 direction="bn", 1620 linebreak="cm", 1621 unicodeslot=0x96, 1622 }, 1623 { 1624 category="cc", 1625 description="END OF GUARDED AREA", 1626 direction="bn", 1627 linebreak="cm", 1628 unicodeslot=0x97, 1629 }, 1630 { 1631 category="cc", 1632 description="START OF STRING", 1633 direction="bn", 1634 linebreak="cm", 1635 unicodeslot=0x98, 1636 }, 1637 { 1638 category="cc", 1639 description="NONE", 1640 direction="bn", 1641 linebreak="cm", 1642 unicodeslot=0x99, 1643 }, 1644 { 1645 category="cc", 1646 description="SINGLE CHARACTER INTRODUCER", 1647 direction="bn", 1648 linebreak="cm", 1649 unicodeslot=0x9A, 1650 }, 1651 { 1652 category="cc", 1653 description="CONTROL SEQUENCE INTRODUCER", 1654 direction="bn", 1655 linebreak="cm", 1656 unicodeslot=0x9B, 1657 }, 1658 { 1659 category="cc", 1660 description="STRING TERMINATOR", 1661 direction="bn", 1662 linebreak="cm", 1663 unicodeslot=0x9C, 1664 }, 1665 { 1666 category="cc", 1667 description="OPERATING SYSTEM COMMAND", 1668 direction="bn", 1669 linebreak="cm", 1670 unicodeslot=0x9D, 1671 }, 1672 { 1673 category="cc", 1674 description="PRIVACY MESSAGE", 1675 direction="bn", 1676 linebreak="cm", 1677 unicodeslot=0x9E, 1678 }, 1679 { 1680 category="cc", 1681 description="APPLICATION PROGRAM COMMAND", 1682 direction="bn", 1683 linebreak="cm", 1684 unicodeslot=0x9F, 1685 }, 1686 { 1687 category="zs", 1688 contextname="nobreakspace", 1689 description="NO-BREAK SPACE", 1690 direction="cs", 1691 linebreak="gl", 1692 mongolian="nj", 1693 specials={ "nobreak", 0x20 }, 1694 synonyms={ "nbsp", "non-breaking space" }, 1695 unicodeslot=0xA0, 1696 }, 1697 { 1698 category="po", 1699 cjkwd="a", 1700 contextname="exclamdown", 1701 description="INVERTED EXCLAMATION MARK", 1702 direction="on", 1703 linebreak="op", 1704 unicodeslot=0xA1, 1705 }, 1706 { 1707 category="sc", 1708 cjkwd="na", 1709 contextname="textcent", 1710 description="CENT SIGN", 1711 direction="et", 1712 linebreak="po", 1713 unicodeslot=0xA2, 1714 }, 1715 { 1716 category="sc", 1717 cjkwd="na", 1718 contextname="textsterling", 1719 description="POUND SIGN", 1720 direction="et", 1721 linebreak="pr", 1722 synonyms={ "irish punt", "italian lira", "pound sterling" }, 1723 unicodeslot=0xA3, 1724 }, 1725 { 1726 category="sc", 1727 cjkwd="a", 1728 contextname="textcurrency", 1729 description="CURRENCY SIGN", 1730 direction="et", 1731 linebreak="pr", 1732 unicodeslot=0xA4, 1733 }, 1734 { 1735 category="sc", 1736 cjkwd="na", 1737 contextname="textyen", 1738 description="YEN SIGN", 1739 direction="et", 1740 linebreak="pr", 1741 mathclass="ordinary", 1742 mathname="yen", 1743 synonyms={ "yuan sign" }, 1744 unicodeslot=0xA5, 1745 }, 1746 { 1747 category="so", 1748 cjkwd="na", 1749 contextname="textbrokenbar", 1750 description="BROKEN BAR", 1751 direction="on", 1752 linebreak="al", 1753 synonyms={ "broken vertical bar", "parted rule" }, 1754 unicodeslot=0xA6, 1755 }, 1756 { 1757 category="so", 1758 cjkwd="a", 1759 contextname="sectionmark", 1760 description="SECTION SIGN", 1761 direction="on", 1762 linebreak="ai", 1763 mathclass="ordinary", 1764 mathname="S", 1765 synonyms={ "european paragraph sign" }, 1766 unicodeslot=0xA7, 1767 }, 1768 { 1769 category="sk", 1770 cjkwd="a", 1771 contextname="textdiaeresis", 1772 description="DIAERESIS", 1773 direction="on", 1774 linebreak="ai", 1775 mathspec={ 1776 { 1777 class="topaccent", 1778 name="ddot", 1779 }, 1780 { 1781 class="topaccent", 1782 name="wideddot", 1783 stretch="h", 1784 }, 1785 }, 1786 specials={ "compat", 0x20, 0x308 }, 1787 synonyms={ "spacing diaeresis" }, 1788 unicodeslot=0xA8, 1789 }, 1790 { 1791 category="so", 1792 contextname="copyright", 1793 description="COPYRIGHT SIGN", 1794 direction="on", 1795 linebreak="al", 1796 unicodeslot=0xA9, 1797 variants=variants_emoji, 1798 }, 1799 { 1800 category="ll", 1801 cjkwd="a", 1802 contextname="ordfeminine", 1803 description="FEMININE ORDINAL INDICATOR", 1804 direction="l", 1805 linebreak="ai", 1806 specials={ "super", 0x61 }, 1807 unicodeslot=0xAA, 1808 }, 1809 { 1810 category="pi", 1811 contextname="leftguillemot", 1812 description="LEFT-POINTING DOUBLE ANGLE QUOTATION MARK", 1813 direction="on", 1814 linebreak="qu", 1815 mirror=0xBB, 1816 synonyms={ "chevrons", "left pointing guillemet" }, 1817 textclass="open", 1818 unicodeslot=0xAB, 1819 }, 1820 { 1821 category="sm", 1822 cjkwd="na", 1823 comment="neg is now implemented as function", 1824 contextname="textlognot", 1825 description="NOT SIGN", 1826 direction="on", 1827 linebreak="al", 1828 mathgroup="unary logical", 1829 mathmeaning="not", 1830 mathname="lnot", 1831 synonyms={ "angled dash" }, 1832 unicodeslot=0xAC, 1833 }, 1834 { 1835 category="cf", 1836 cjkwd="a", 1837 contextname="softhyphen", 1838 description="SOFT HYPHEN", 1839 direction="bn", 1840 linebreak="ba", 1841 synonyms={ "discretionary hyphen", "shy" }, 1842 unicodeslot=0xAD, 1843 }, 1844 { 1845 category="so", 1846 cjkwd="a", 1847 contextname="registered", 1848 description="REGISTERED SIGN", 1849 direction="on", 1850 linebreak="al", 1851 synonyms={ "registered trade mark sign" }, 1852 unicodeslot=0xAE, 1853 variants=variants_emoji, 1854 }, 1855 { 1856 category="sk", 1857 cjkwd="na", 1858 contextname="textmacron", 1859 description="MACRON", 1860 direction="on", 1861 linebreak="al", 1862 mathspec={ 1863 { 1864 class="topaccent", 1865 name="bar", 1866 }, 1867 { 1868 class="topaccent", 1869 name="widebar", 1870 stretch="h", 1871 }, 1872 }, 1873 specials={ "compat", 0x20, 0x304 }, 1874 synonyms={ "apl overbar", "overline", "spacing macron" }, 1875 unicodeslot=0xAF, 1876 }, 1877 { 1878 category="so", 1879 cjkwd="a", 1880 contextname="textdegree", 1881 description="DEGREE SIGN", 1882 direction="et", 1883 linebreak="po", 1884 unicodeslot=0xB0, 1885 }, 1886 { 1887 category="sm", 1888 cjkwd="a", 1889 contextname="textpm", 1890 description="PLUS-MINUS SIGN", 1891 direction="et", 1892 linebreak="pr", 1893 mathclass="binary", 1894 mathgroup="binary arithmetic", 1895 mathmeaning="plus minus", 1896 mathname="pm", 1897 unicodeslot=0xB1, 1898 }, 1899 { 1900 category="no", 1901 cjkwd="a", 1902 contextname="twosuperior", 1903 description="SUPERSCRIPT TWO", 1904 direction="en", 1905 linebreak="ai", 1906 specials={ "super", 0x32 }, 1907 synonyms={ "squared" }, 1908 unicodeslot=0xB2, 1909 }, 1910 { 1911 category="no", 1912 cjkwd="a", 1913 contextname="threesuperior", 1914 description="SUPERSCRIPT THREE", 1915 direction="en", 1916 linebreak="ai", 1917 specials={ "super", 0x33 }, 1918 synonyms={ "cubed" }, 1919 unicodeslot=0xB3, 1920 }, 1921 { 1922 category="sk", 1923 cjkwd="a", 1924 contextname="textacute", 1925 description="ACUTE ACCENT", 1926 direction="on", 1927 linebreak="bb", 1928 mathspec={ 1929 { 1930 class="topaccent", 1931 name="acute", 1932 }, 1933 { 1934 class="topaccent", 1935 name="wideacute", 1936 stretch="h", 1937 }, 1938 }, 1939 specials={ "compat", 0x20, 0x301 }, 1940 synonyms={ "spacing acute accent" }, 1941 unicodeslot=0xB4, 1942 }, 1943 { 1944 category="ll", 1945 contextname="textmu", 1946 description="MICRO SIGN", 1947 direction="l", 1948 linebreak="al", 1949 specials={ "compat", 0x3BC }, 1950 uccode=0x3BC, 1951 unicodeslot=0xB5, 1952 }, 1953 { 1954 category="so", 1955 cjkwd="a", 1956 contextname="paragraphmark", 1957 description="PILCROW SIGN", 1958 direction="on", 1959 linebreak="ai", 1960 mathclass="ordinary", 1961 mathname="P", 1962 synonyms={ "european section sign", "paragraph sign" }, 1963 unicodeslot=0xB6, 1964 }, 1965 { 1966 category="po", 1967 cjkwd="a", 1968 contextname="periodcentered", 1969 description="MIDDLE DOT", 1970 direction="on", 1971 linebreak="ai", 1972 mathclass="binary", 1973 mathgroup="binary arithmetic", 1974 mathsymbol=0x22C5, 1975 synonyms={ "georgian comma", "greek ano teleia", "greek middle dot", "midpoint" }, 1976 unicodeslot=0xB7, 1977 }, 1978 { 1979 category="sk", 1980 cjkwd="a", 1981 contextname="textcedilla", 1982 description="CEDILLA", 1983 direction="on", 1984 linebreak="ai", 1985 specials={ "compat", 0x20, 0x327 }, 1986 synonyms={ "spacing cedilla" }, 1987 unicodeslot=0xB8, 1988 }, 1989 { 1990 category="no", 1991 cjkwd="a", 1992 contextname="onesuperior", 1993 description="SUPERSCRIPT ONE", 1994 direction="en", 1995 linebreak="ai", 1996 specials={ "super", 0x31 }, 1997 unicodeslot=0xB9, 1998 }, 1999 { 2000 category="ll", 2001 cjkwd="a", 2002 contextname="ordmasculine", 2003 description="MASCULINE ORDINAL INDICATOR", 2004 direction="l", 2005 linebreak="ai", 2006 specials={ "super", 0x6F }, 2007 unicodeslot=0xBA, 2008 }, 2009 { 2010 category="pf", 2011 contextname="rightguillemot", 2012 description="RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK", 2013 direction="on", 2014 linebreak="qu", 2015 mirror=0xAB, 2016 synonyms={ "right pointing guillemet" }, 2017 textclass="close", 2018 unicodeslot=0xBB, 2019 }, 2020 { 2021 category="no", 2022 cjkwd="a", 2023 contextname="onequarter", 2024 description="VULGAR FRACTION ONE QUARTER", 2025 direction="on", 2026 linebreak="ai", 2027 specials={ "fraction", 0x31, 0x2044, 0x34 }, 2028 unicodeslot=0xBC, 2029 }, 2030 { 2031 category="no", 2032 cjkwd="a", 2033 contextname="onehalf", 2034 description="VULGAR FRACTION ONE HALF", 2035 direction="on", 2036 linebreak="ai", 2037 specials={ "fraction", 0x31, 0x2044, 0x32 }, 2038 unicodeslot=0xBD, 2039 }, 2040 { 2041 category="no", 2042 cjkwd="a", 2043 contextname="threequarter", 2044 description="VULGAR FRACTION THREE QUARTERS", 2045 direction="on", 2046 linebreak="ai", 2047 specials={ "fraction", 0x33, 0x2044, 0x34 }, 2048 unicodeslot=0xBE, 2049 }, 2050 { 2051 category="po", 2052 cjkwd="a", 2053 contextname="questiondown", 2054 description="INVERTED QUESTION MARK", 2055 direction="on", 2056 linebreak="op", 2057 synonyms={ "turned question mark" }, 2058 unicodeslot=0xBF, 2059 }, 2060 { 2061 category="lu", 2062 contextname="Agrave", 2063 description="LATIN CAPITAL LETTER A WITH GRAVE", 2064 direction="l", 2065 lccode=0xE0, 2066 linebreak="al", 2067 shcode=0x41, 2068 specials={ "char", 0x41, 0x300 }, 2069 unicodeslot=0xC0, 2070 }, 2071 { 2072 category="lu", 2073 contextname="Aacute", 2074 description="LATIN CAPITAL LETTER A WITH ACUTE", 2075 direction="l", 2076 lccode=0xE1, 2077 linebreak="al", 2078 shcode=0x41, 2079 specials={ "char", 0x41, 0x301 }, 2080 unicodeslot=0xC1, 2081 }, 2082 { 2083 category="lu", 2084 contextname="Acircumflex", 2085 description="LATIN CAPITAL LETTER A WITH CIRCUMFLEX", 2086 direction="l", 2087 lccode=0xE2, 2088 linebreak="al", 2089 shcode=0x41, 2090 specials={ "char", 0x41, 0x302 }, 2091 unicodeslot=0xC2, 2092 }, 2093 { 2094 category="lu", 2095 contextname="Atilde", 2096 description="LATIN CAPITAL LETTER A WITH TILDE", 2097 direction="l", 2098 lccode=0xE3, 2099 linebreak="al", 2100 shcode=0x41, 2101 specials={ "char", 0x41, 0x303 }, 2102 unicodeslot=0xC3, 2103 }, 2104 { 2105 category="lu", 2106 contextname="Adiaeresis", 2107 description="LATIN CAPITAL LETTER A WITH DIAERESIS", 2108 direction="l", 2109 lccode=0xE4, 2110 linebreak="al", 2111 shcode=0x41, 2112 specials={ "char", 0x41, 0x308 }, 2113 unicodeslot=0xC4, 2114 }, 2115 { 2116 category="lu", 2117 contextname="Aring", 2118 description="LATIN CAPITAL LETTER A WITH RING ABOVE", 2119 direction="l", 2120 lccode=0xE5, 2121 linebreak="al", 2122 shcode=0x41, 2123 specials={ "char", 0x41, 0x30A }, 2124 unicodeslot=0xC5, 2125 }, 2126 { 2127 category="lu", 2128 cjkwd="a", 2129 contextname="AEligature", 2130 description="LATIN CAPITAL LETTER AE", 2131 direction="l", 2132 lccode=0xE6, 2133 linebreak="al", 2134 shcode={ 0x41, 0x45 }, 2135 synonyms={ "latin capital ligature ae" }, 2136 unicodeslot=0xC6, 2137 }, 2138 { 2139 category="lu", 2140 contextname="Ccedilla", 2141 description="LATIN CAPITAL LETTER C WITH CEDILLA", 2142 direction="l", 2143 lccode=0xE7, 2144 linebreak="al", 2145 shcode=0x43, 2146 specials={ "char", 0x43, 0x327 }, 2147 unicodeslot=0xC7, 2148 }, 2149 { 2150 category="lu", 2151 contextname="Egrave", 2152 description="LATIN CAPITAL LETTER E WITH GRAVE", 2153 direction="l", 2154 lccode=0xE8, 2155 linebreak="al", 2156 shcode=0x45, 2157 specials={ "char", 0x45, 0x300 }, 2158 unicodeslot=0xC8, 2159 }, 2160 { 2161 category="lu", 2162 contextname="Eacute", 2163 description="LATIN CAPITAL LETTER E WITH ACUTE", 2164 direction="l", 2165 lccode=0xE9, 2166 linebreak="al", 2167 shcode=0x45, 2168 specials={ "char", 0x45, 0x301 }, 2169 unicodeslot=0xC9, 2170 }, 2171 { 2172 category="lu", 2173 contextname="Ecircumflex", 2174 description="LATIN CAPITAL LETTER E WITH CIRCUMFLEX", 2175 direction="l", 2176 lccode=0xEA, 2177 linebreak="al", 2178 shcode=0x45, 2179 specials={ "char", 0x45, 0x302 }, 2180 unicodeslot=0xCA, 2181 }, 2182 { 2183 category="lu", 2184 contextname="Ediaeresis", 2185 description="LATIN CAPITAL LETTER E WITH DIAERESIS", 2186 direction="l", 2187 lccode=0xEB, 2188 linebreak="al", 2189 shcode=0x45, 2190 specials={ "char", 0x45, 0x308 }, 2191 unicodeslot=0xCB, 2192 }, 2193 { 2194 category="lu", 2195 contextname="Igrave", 2196 description="LATIN CAPITAL LETTER I WITH GRAVE", 2197 direction="l", 2198 lccode=0xEC, 2199 linebreak="al", 2200 shcode=0x49, 2201 specials={ "char", 0x49, 0x300 }, 2202 unicodeslot=0xCC, 2203 }, 2204 { 2205 category="lu", 2206 contextname="Iacute", 2207 description="LATIN CAPITAL LETTER I WITH ACUTE", 2208 direction="l", 2209 lccode=0xED, 2210 linebreak="al", 2211 shcode=0x49, 2212 specials={ "char", 0x49, 0x301 }, 2213 unicodeslot=0xCD, 2214 }, 2215 { 2216 category="lu", 2217 contextname="Icircumflex", 2218 description="LATIN CAPITAL LETTER I WITH CIRCUMFLEX", 2219 direction="l", 2220 lccode=0xEE, 2221 linebreak="al", 2222 shcode=0x49, 2223 specials={ "char", 0x49, 0x302 }, 2224 unicodeslot=0xCE, 2225 }, 2226 { 2227 category="lu", 2228 contextname="Idiaeresis", 2229 description="LATIN CAPITAL LETTER I WITH DIAERESIS", 2230 direction="l", 2231 lccode=0xEF, 2232 linebreak="al", 2233 shcode=0x49, 2234 specials={ "char", 0x49, 0x308 }, 2235 unicodeslot=0xCF, 2236 }, 2237 { 2238 category="lu", 2239 cjkwd="a", 2240 contextname="Eth", 2241 description="LATIN CAPITAL LETTER ETH", 2242 direction="l", 2243 lccode=0xF0, 2244 linebreak="al", 2245 unicodeslot=0xD0, 2246 }, 2247 { 2248 category="lu", 2249 contextname="Ntilde", 2250 description="LATIN CAPITAL LETTER N WITH TILDE", 2251 direction="l", 2252 lccode=0xF1, 2253 linebreak="al", 2254 shcode=0x4E, 2255 specials={ "char", 0x4E, 0x303 }, 2256 unicodeslot=0xD1, 2257 }, 2258 { 2259 category="lu", 2260 contextname="Ograve", 2261 description="LATIN CAPITAL LETTER O WITH GRAVE", 2262 direction="l", 2263 lccode=0xF2, 2264 linebreak="al", 2265 shcode=0x4F, 2266 specials={ "char", 0x4F, 0x300 }, 2267 unicodeslot=0xD2, 2268 }, 2269 { 2270 category="lu", 2271 contextname="Oacute", 2272 description="LATIN CAPITAL LETTER O WITH ACUTE", 2273 direction="l", 2274 lccode=0xF3, 2275 linebreak="al", 2276 shcode=0x4F, 2277 specials={ "char", 0x4F, 0x301 }, 2278 unicodeslot=0xD3, 2279 }, 2280 { 2281 category="lu", 2282 contextname="Ocircumflex", 2283 description="LATIN CAPITAL LETTER O WITH CIRCUMFLEX", 2284 direction="l", 2285 lccode=0xF4, 2286 linebreak="al", 2287 shcode=0x4F, 2288 specials={ "char", 0x4F, 0x302 }, 2289 unicodeslot=0xD4, 2290 }, 2291 { 2292 category="lu", 2293 contextname="Otilde", 2294 description="LATIN CAPITAL LETTER O WITH TILDE", 2295 direction="l", 2296 lccode=0xF5, 2297 linebreak="al", 2298 shcode=0x4F, 2299 specials={ "char", 0x4F, 0x303 }, 2300 unicodeslot=0xD5, 2301 }, 2302 { 2303 category="lu", 2304 contextname="Odiaeresis", 2305 description="LATIN CAPITAL LETTER O WITH DIAERESIS", 2306 direction="l", 2307 lccode=0xF6, 2308 linebreak="al", 2309 shcode=0x4F, 2310 specials={ "char", 0x4F, 0x308 }, 2311 unicodeslot=0xD6, 2312 }, 2313 { 2314 category="sm", 2315 cjkwd="a", 2316 contextname="textmultiply", 2317 description="MULTIPLICATION SIGN", 2318 direction="on", 2319 linebreak="ai", 2320 mathclass="binary", 2321 mathgroup="binary arithmetic", 2322 mathmeaning="times", 2323 mathspec={ 2324 { 2325 class="binary", 2326 group="binary arithmetic", 2327 meaning="multiplication", 2328 name="times", 2329 }, 2330 { 2331 class="binary", 2332 group="binary vector", 2333 meaning="crossproduct", 2334 name="crossproduct", 2335 }, 2336 }, 2337 synonyms={ "cartesian product" }, 2338 unicodeslot=0xD7, 2339 }, 2340 { 2341 category="lu", 2342 cjkwd="a", 2343 contextname="Ostroke", 2344 description="LATIN CAPITAL LETTER O WITH STROKE", 2345 direction="l", 2346 lccode=0xF8, 2347 linebreak="al", 2348 shcode=0x4F, 2349 specials={ "with", 0x4F, 0x2F }, 2350 synonyms={ "latin capital letter o slash" }, 2351 unicodeslot=0xD8, 2352 }, 2353 { 2354 category="lu", 2355 contextname="Ugrave", 2356 description="LATIN CAPITAL LETTER U WITH GRAVE", 2357 direction="l", 2358 lccode=0xF9, 2359 linebreak="al", 2360 shcode=0x55, 2361 specials={ "char", 0x55, 0x300 }, 2362 unicodeslot=0xD9, 2363 }, 2364 { 2365 category="lu", 2366 contextname="Uacute", 2367 description="LATIN CAPITAL LETTER U WITH ACUTE", 2368 direction="l", 2369 lccode=0xFA, 2370 linebreak="al", 2371 shcode=0x55, 2372 specials={ "char", 0x55, 0x301 }, 2373 unicodeslot=0xDA, 2374 }, 2375 { 2376 category="lu", 2377 contextname="Ucircumflex", 2378 description="LATIN CAPITAL LETTER U WITH CIRCUMFLEX", 2379 direction="l", 2380 lccode=0xFB, 2381 linebreak="al", 2382 shcode=0x55, 2383 specials={ "char", 0x55, 0x302 }, 2384 unicodeslot=0xDB, 2385 }, 2386 { 2387 category="lu", 2388 contextname="Udiaeresis", 2389 description="LATIN CAPITAL LETTER U WITH DIAERESIS", 2390 direction="l", 2391 lccode=0xFC, 2392 linebreak="al", 2393 shcode=0x55, 2394 specials={ "char", 0x55, 0x308 }, 2395 unicodeslot=0xDC, 2396 }, 2397 { 2398 category="lu", 2399 contextname="Yacute", 2400 description="LATIN CAPITAL LETTER Y WITH ACUTE", 2401 direction="l", 2402 lccode=0xFD, 2403 linebreak="al", 2404 shcode=0x59, 2405 specials={ "char", 0x59, 0x301 }, 2406 unicodeslot=0xDD, 2407 }, 2408 { 2409 category="lu", 2410 cjkwd="a", 2411 contextname="Thorn", 2412 description="LATIN CAPITAL LETTER THORN", 2413 direction="l", 2414 lccode=0xFE, 2415 linebreak="al", 2416 unicodeslot=0xDE, 2417 }, 2418 { 2419 category="ll", 2420 cjkwd="a", 2421 comment="uppercase can be 0x1E9E", 2422 contextname="ssharp", 2423 description="LATIN SMALL LETTER SHARP S", 2424 direction="l", 2425 linebreak="al", 2426 shcode={ 0x73, 0x73 }, 2427 synonyms={ "eszett" }, 2428 uccode={ 0x53, 0x53 }, 2429 unicodeslot=0xDF, 2430 }, 2431 { 2432 category="ll", 2433 cjkwd="a", 2434 contextname="agrave", 2435 description="LATIN SMALL LETTER A WITH GRAVE", 2436 direction="l", 2437 linebreak="al", 2438 shcode=0x61, 2439 specials={ "char", 0x61, 0x300 }, 2440 uccode=0xC0, 2441 unicodeslot=0xE0, 2442 }, 2443 { 2444 category="ll", 2445 cjkwd="a", 2446 contextname="aacute", 2447 description="LATIN SMALL LETTER A WITH ACUTE", 2448 direction="l", 2449 linebreak="al", 2450 shcode=0x61, 2451 specials={ "char", 0x61, 0x301 }, 2452 uccode=0xC1, 2453 unicodeslot=0xE1, 2454 }, 2455 { 2456 category="ll", 2457 contextname="acircumflex", 2458 description="LATIN SMALL LETTER A WITH CIRCUMFLEX", 2459 direction="l", 2460 linebreak="al", 2461 shcode=0x61, 2462 specials={ "char", 0x61, 0x302 }, 2463 uccode=0xC2, 2464 unicodeslot=0xE2, 2465 }, 2466 { 2467 category="ll", 2468 contextname="atilde", 2469 description="LATIN SMALL LETTER A WITH TILDE", 2470 direction="l", 2471 linebreak="al", 2472 shcode=0x61, 2473 specials={ "char", 0x61, 0x303 }, 2474 uccode=0xC3, 2475 unicodeslot=0xE3, 2476 }, 2477 { 2478 category="ll", 2479 contextname="adiaeresis", 2480 description="LATIN SMALL LETTER A WITH DIAERESIS", 2481 direction="l", 2482 linebreak="al", 2483 shcode=0x61, 2484 specials={ "char", 0x61, 0x308 }, 2485 uccode=0xC4, 2486 unicodeslot=0xE4, 2487 }, 2488 { 2489 category="ll", 2490 contextname="aring", 2491 description="LATIN SMALL LETTER A WITH RING ABOVE", 2492 direction="l", 2493 linebreak="al", 2494 shcode=0x61, 2495 specials={ "char", 0x61, 0x30A }, 2496 uccode=0xC5, 2497 unicodeslot=0xE5, 2498 }, 2499 { 2500 category="ll", 2501 cjkwd="a", 2502 contextname="aeligature", 2503 description="LATIN SMALL LETTER AE", 2504 direction="l", 2505 linebreak="al", 2506 shcode={ 0x61, 0x65 }, 2507 synonyms={ "ash", "latin small ligature ae" }, 2508 uccode=0xC6, 2509 unicodeslot=0xE6, 2510 }, 2511 { 2512 category="ll", 2513 contextname="ccedilla", 2514 description="LATIN SMALL LETTER C WITH CEDILLA", 2515 direction="l", 2516 linebreak="al", 2517 shcode=0x63, 2518 specials={ "char", 0x63, 0x327 }, 2519 uccode=0xC7, 2520 unicodeslot=0xE7, 2521 }, 2522 { 2523 category="ll", 2524 cjkwd="a", 2525 contextname="egrave", 2526 description="LATIN SMALL LETTER E WITH GRAVE", 2527 direction="l", 2528 linebreak="al", 2529 shcode=0x65, 2530 specials={ "char", 0x65, 0x300 }, 2531 uccode=0xC8, 2532 unicodeslot=0xE8, 2533 }, 2534 { 2535 category="ll", 2536 cjkwd="a", 2537 contextname="eacute", 2538 description="LATIN SMALL LETTER E WITH ACUTE", 2539 direction="l", 2540 linebreak="al", 2541 shcode=0x65, 2542 specials={ "char", 0x65, 0x301 }, 2543 uccode=0xC9, 2544 unicodeslot=0xE9, 2545 }, 2546 { 2547 category="ll", 2548 cjkwd="a", 2549 contextname="ecircumflex", 2550 description="LATIN SMALL LETTER E WITH CIRCUMFLEX", 2551 direction="l", 2552 linebreak="al", 2553 shcode=0x65, 2554 specials={ "char", 0x65, 0x302 }, 2555 uccode=0xCA, 2556 unicodeslot=0xEA, 2557 }, 2558 { 2559 category="ll", 2560 contextname="ediaeresis", 2561 description="LATIN SMALL LETTER E WITH DIAERESIS", 2562 direction="l", 2563 linebreak="al", 2564 shcode=0x65, 2565 specials={ "char", 0x65, 0x308 }, 2566 uccode=0xCB, 2567 unicodeslot=0xEB, 2568 }, 2569 { 2570 category="ll", 2571 cjkwd="a", 2572 contextname="igrave", 2573 description="LATIN SMALL LETTER I WITH GRAVE", 2574 direction="l", 2575 linebreak="al", 2576 shcode=0x69, 2577 specials={ "char", 0x69, 0x300 }, 2578 uccode=0xCC, 2579 unicodeslot=0xEC, 2580 }, 2581 { 2582 category="ll", 2583 cjkwd="a", 2584 contextname="iacute", 2585 description="LATIN SMALL LETTER I WITH ACUTE", 2586 direction="l", 2587 linebreak="al", 2588 shcode=0x69, 2589 specials={ "char", 0x69, 0x301 }, 2590 uccode=0xCD, 2591 unicodeslot=0xED, 2592 }, 2593 { 2594 category="ll", 2595 contextname="icircumflex", 2596 description="LATIN SMALL LETTER I WITH CIRCUMFLEX", 2597 direction="l", 2598 linebreak="al", 2599 shcode=0x69, 2600 specials={ "char", 0x69, 0x302 }, 2601 uccode=0xCE, 2602 unicodeslot=0xEE, 2603 }, 2604 { 2605 category="ll", 2606 contextname="idiaeresis", 2607 description="LATIN SMALL LETTER I WITH DIAERESIS", 2608 direction="l", 2609 linebreak="al", 2610 shcode=0x69, 2611 specials={ "char", 0x69, 0x308 }, 2612 uccode=0xCF, 2613 unicodeslot=0xEF, 2614 }, 2615 { 2616 category="ll", 2617 cjkwd="a", 2618 comment="contextname=eth", 2619 description="LATIN SMALL LETTER ETH", 2620 direction="l", 2621 linebreak="al", 2622 mathclass="ordinary", 2623 mathname="eth", 2624 uccode=0xD0, 2625 unicodeslot=0xF0, 2626 }, 2627 { 2628 category="ll", 2629 contextname="ntilde", 2630 description="LATIN SMALL LETTER N WITH TILDE", 2631 direction="l", 2632 linebreak="al", 2633 shcode=0x6E, 2634 specials={ "char", 0x6E, 0x303 }, 2635 uccode=0xD1, 2636 unicodeslot=0xF1, 2637 }, 2638 { 2639 category="ll", 2640 cjkwd="a", 2641 contextname="ograve", 2642 description="LATIN SMALL LETTER O WITH GRAVE", 2643 direction="l", 2644 linebreak="al", 2645 shcode=0x6F, 2646 specials={ "char", 0x6F, 0x300 }, 2647 uccode=0xD2, 2648 unicodeslot=0xF2, 2649 }, 2650 { 2651 category="ll", 2652 cjkwd="a", 2653 contextname="oacute", 2654 description="LATIN SMALL LETTER O WITH ACUTE", 2655 direction="l", 2656 linebreak="al", 2657 shcode=0x6F, 2658 specials={ "char", 0x6F, 0x301 }, 2659 uccode=0xD3, 2660 unicodeslot=0xF3, 2661 }, 2662 { 2663 category="ll", 2664 contextname="ocircumflex", 2665 description="LATIN SMALL LETTER O WITH CIRCUMFLEX", 2666 direction="l", 2667 linebreak="al", 2668 shcode=0x6F, 2669 specials={ "char", 0x6F, 0x302 }, 2670 uccode=0xD4, 2671 unicodeslot=0xF4, 2672 }, 2673 { 2674 category="ll", 2675 contextname="otilde", 2676 description="LATIN SMALL LETTER O WITH TILDE", 2677 direction="l", 2678 linebreak="al", 2679 shcode=0x6F, 2680 specials={ "char", 0x6F, 0x303 }, 2681 uccode=0xD5, 2682 unicodeslot=0xF5, 2683 }, 2684 { 2685 category="ll", 2686 contextname="odiaeresis", 2687 description="LATIN SMALL LETTER O WITH DIAERESIS", 2688 direction="l", 2689 linebreak="al", 2690 shcode=0x6F, 2691 specials={ "char", 0x6F, 0x308 }, 2692 uccode=0xD6, 2693 unicodeslot=0xF6, 2694 }, 2695 { 2696 category="sm", 2697 cjkwd="a", 2698 contextname="textdiv", 2699 description="DIVISION SIGN", 2700 direction="on", 2701 linebreak="ai", 2702 mathclass="binary", 2703 mathgroup="binary arithmetic", 2704 mathmeaning="divided by", 2705 mathname="div", 2706 synonyms={ "obelus" }, 2707 unicodeslot=0xF7, 2708 }, 2709 { 2710 category="ll", 2711 cjkwd="a", 2712 contextname="ostroke", 2713 description="LATIN SMALL LETTER O WITH STROKE", 2714 direction="l", 2715 linebreak="al", 2716 shcode=0x6F, 2717 specials={ "with", 0x6F, 0x2F }, 2718 synonyms={ "latin small letter o slash" }, 2719 uccode=0xD8, 2720 unicodeslot=0xF8, 2721 }, 2722 { 2723 category="ll", 2724 cjkwd="a", 2725 contextname="ugrave", 2726 description="LATIN SMALL LETTER U WITH GRAVE", 2727 direction="l", 2728 linebreak="al", 2729 shcode=0x75, 2730 specials={ "char", 0x75, 0x300 }, 2731 uccode=0xD9, 2732 unicodeslot=0xF9, 2733 }, 2734 { 2735 category="ll", 2736 cjkwd="a", 2737 contextname="uacute", 2738 description="LATIN SMALL LETTER U WITH ACUTE", 2739 direction="l", 2740 linebreak="al", 2741 shcode=0x75, 2742 specials={ "char", 0x75, 0x301 }, 2743 uccode=0xDA, 2744 unicodeslot=0xFA, 2745 }, 2746 { 2747 category="ll", 2748 contextname="ucircumflex", 2749 description="LATIN SMALL LETTER U WITH CIRCUMFLEX", 2750 direction="l", 2751 linebreak="al", 2752 shcode=0x75, 2753 specials={ "char", 0x75, 0x302 }, 2754 uccode=0xDB, 2755 unicodeslot=0xFB, 2756 }, 2757 { 2758 category="ll", 2759 cjkwd="a", 2760 contextname="udiaeresis", 2761 description="LATIN SMALL LETTER U WITH DIAERESIS", 2762 direction="l", 2763 linebreak="al", 2764 shcode=0x75, 2765 specials={ "char", 0x75, 0x308 }, 2766 uccode=0xDC, 2767 unicodeslot=0xFC, 2768 }, 2769 { 2770 category="ll", 2771 contextname="yacute", 2772 description="LATIN SMALL LETTER Y WITH ACUTE", 2773 direction="l", 2774 linebreak="al", 2775 shcode=0x79, 2776 specials={ "char", 0x79, 0x301 }, 2777 uccode=0xDD, 2778 unicodeslot=0xFD, 2779 }, 2780 { 2781 category="ll", 2782 cjkwd="a", 2783 contextname="thorn", 2784 description="LATIN SMALL LETTER THORN", 2785 direction="l", 2786 linebreak="al", 2787 uccode=0xDE, 2788 unicodeslot=0xFE, 2789 }, 2790 { 2791 category="ll", 2792 contextname="ydiaeresis", 2793 description="LATIN SMALL LETTER Y WITH DIAERESIS", 2794 direction="l", 2795 linebreak="al", 2796 shcode=0x79, 2797 specials={ "char", 0x79, 0x308 }, 2798 uccode=0x178, 2799 unicodeslot=0xFF, 2800 }, 2801 { 2802 category="lu", 2803 contextname="Amacron", 2804 description="LATIN CAPITAL LETTER A WITH MACRON", 2805 direction="l", 2806 lccode=0x101, 2807 linebreak="al", 2808 shcode=0x41, 2809 specials={ "char", 0x41, 0x304 }, 2810 unicodeslot=0x100, 2811 }, 2812 { 2813 category="ll", 2814 cjkwd="a", 2815 contextname="amacron", 2816 description="LATIN SMALL LETTER A WITH MACRON", 2817 direction="l", 2818 linebreak="al", 2819 shcode=0x61, 2820 specials={ "char", 0x61, 0x304 }, 2821 uccode=0x100, 2822 unicodeslot=0x101, 2823 }, 2824 { 2825 category="lu", 2826 contextname="Abreve", 2827 description="LATIN CAPITAL LETTER A WITH BREVE", 2828 direction="l", 2829 lccode=0x103, 2830 linebreak="al", 2831 shcode=0x41, 2832 specials={ "char", 0x41, 0x306 }, 2833 unicodeslot=0x102, 2834 }, 2835 { 2836 category="ll", 2837 contextname="abreve", 2838 description="LATIN SMALL LETTER A WITH BREVE", 2839 direction="l", 2840 linebreak="al", 2841 shcode=0x61, 2842 specials={ "char", 0x61, 0x306 }, 2843 uccode=0x102, 2844 unicodeslot=0x103, 2845 }, 2846 { 2847 category="lu", 2848 contextname="Aogonek", 2849 description="LATIN CAPITAL LETTER A WITH OGONEK", 2850 direction="l", 2851 lccode=0x105, 2852 linebreak="al", 2853 shcode=0x41, 2854 specials={ "char", 0x41, 0x328 }, 2855 unicodeslot=0x104, 2856 }, 2857 { 2858 category="ll", 2859 contextname="aogonek", 2860 description="LATIN SMALL LETTER A WITH OGONEK", 2861 direction="l", 2862 linebreak="al", 2863 shcode=0x61, 2864 specials={ "char", 0x61, 0x328 }, 2865 uccode=0x104, 2866 unicodeslot=0x105, 2867 }, 2868 { 2869 category="lu", 2870 contextname="Cacute", 2871 description="LATIN CAPITAL LETTER C WITH ACUTE", 2872 direction="l", 2873 lccode=0x107, 2874 linebreak="al", 2875 shcode=0x43, 2876 specials={ "char", 0x43, 0x301 }, 2877 unicodeslot=0x106, 2878 }, 2879 { 2880 category="ll", 2881 contextname="cacute", 2882 description="LATIN SMALL LETTER C WITH ACUTE", 2883 direction="l", 2884 linebreak="al", 2885 shcode=0x63, 2886 specials={ "char", 0x63, 0x301 }, 2887 uccode=0x106, 2888 unicodeslot=0x107, 2889 }, 2890 { 2891 category="lu", 2892 contextname="Ccircumflex", 2893 description="LATIN CAPITAL LETTER C WITH CIRCUMFLEX", 2894 direction="l", 2895 lccode=0x109, 2896 linebreak="al", 2897 shcode=0x43, 2898 specials={ "char", 0x43, 0x302 }, 2899 unicodeslot=0x108, 2900 }, 2901 { 2902 category="ll", 2903 contextname="ccircumflex", 2904 description="LATIN SMALL LETTER C WITH CIRCUMFLEX", 2905 direction="l", 2906 linebreak="al", 2907 shcode=0x63, 2908 specials={ "char", 0x63, 0x302 }, 2909 uccode=0x108, 2910 unicodeslot=0x109, 2911 }, 2912 { 2913 category="lu", 2914 contextname="Cdotaccent", 2915 description="LATIN CAPITAL LETTER C WITH DOT ABOVE", 2916 direction="l", 2917 lccode=0x10B, 2918 linebreak="al", 2919 shcode=0x43, 2920 specials={ "char", 0x43, 0x307 }, 2921 unicodeslot=0x10A, 2922 }, 2923 { 2924 category="ll", 2925 contextname="cdotaccent", 2926 description="LATIN SMALL LETTER C WITH DOT ABOVE", 2927 direction="l", 2928 linebreak="al", 2929 shcode=0x63, 2930 specials={ "char", 0x63, 0x307 }, 2931 uccode=0x10A, 2932 unicodeslot=0x10B, 2933 }, 2934 { 2935 category="lu", 2936 contextname="Ccaron", 2937 description="LATIN CAPITAL LETTER C WITH CARON", 2938 direction="l", 2939 lccode=0x10D, 2940 linebreak="al", 2941 shcode=0x43, 2942 specials={ "char", 0x43, 0x30C }, 2943 unicodeslot=0x10C, 2944 }, 2945 { 2946 category="ll", 2947 contextname="ccaron", 2948 description="LATIN SMALL LETTER C WITH CARON", 2949 direction="l", 2950 linebreak="al", 2951 shcode=0x63, 2952 specials={ "char", 0x63, 0x30C }, 2953 uccode=0x10C, 2954 unicodeslot=0x10D, 2955 }, 2956 { 2957 category="lu", 2958 contextname="Dcaron", 2959 description="LATIN CAPITAL LETTER D WITH CARON", 2960 direction="l", 2961 lccode=0x10F, 2962 linebreak="al", 2963 shcode=0x44, 2964 specials={ "char", 0x44, 0x30C }, 2965 unicodeslot=0x10E, 2966 }, 2967 { 2968 category="ll", 2969 contextname="dcaron", 2970 description="LATIN SMALL LETTER D WITH CARON", 2971 direction="l", 2972 linebreak="al", 2973 shcode=0x64, 2974 specials={ "char", 0x64, 0x30C }, 2975 uccode=0x10E, 2976 unicodeslot=0x10F, 2977 }, 2978 { 2979 category="lu", 2980 contextname="Dstroke", 2981 description="LATIN CAPITAL LETTER D WITH STROKE", 2982 direction="l", 2983 lccode=0x111, 2984 linebreak="al", 2985 shcode=0x44, 2986 specials={ "with", 0x44, 0x2F }, 2987 unicodeslot=0x110, 2988 }, 2989 { 2990 category="ll", 2991 cjkwd="a", 2992 contextname="dstroke", 2993 description="LATIN SMALL LETTER D WITH STROKE", 2994 direction="l", 2995 linebreak="al", 2996 shcode=0x64, 2997 specials={ "with", 0x64, 0x2F }, 2998 uccode=0x110, 2999 unicodeslot=0x111, 3000 }, 3001 { 3002 category="lu", 3003 contextname="Emacron", 3004 description="LATIN CAPITAL LETTER E WITH MACRON", 3005 direction="l", 3006 lccode=0x113, 3007 linebreak="al", 3008 shcode=0x45, 3009 specials={ "char", 0x45, 0x304 }, 3010 unicodeslot=0x112, 3011 }, 3012 { 3013 category="ll", 3014 cjkwd="a", 3015 contextname="emacron", 3016 description="LATIN SMALL LETTER E WITH MACRON", 3017 direction="l", 3018 linebreak="al", 3019 shcode=0x65, 3020 specials={ "char", 0x65, 0x304 }, 3021 uccode=0x112, 3022 unicodeslot=0x113, 3023 }, 3024 { 3025 category="lu", 3026 contextname="Ebreve", 3027 description="LATIN CAPITAL LETTER E WITH BREVE", 3028 direction="l", 3029 lccode=0x115, 3030 linebreak="al", 3031 shcode=0x45, 3032 specials={ "char", 0x45, 0x306 }, 3033 unicodeslot=0x114, 3034 }, 3035 { 3036 category="ll", 3037 contextname="ebreve", 3038 description="LATIN SMALL LETTER E WITH BREVE", 3039 direction="l", 3040 linebreak="al", 3041 shcode=0x65, 3042 specials={ "char", 0x65, 0x306 }, 3043 uccode=0x114, 3044 unicodeslot=0x115, 3045 }, 3046 { 3047 category="lu", 3048 contextname="Edotaccent", 3049 description="LATIN CAPITAL LETTER E WITH DOT ABOVE", 3050 direction="l", 3051 lccode=0x117, 3052 linebreak="al", 3053 shcode=0x45, 3054 specials={ "char", 0x45, 0x307 }, 3055 unicodeslot=0x116, 3056 }, 3057 { 3058 category="ll", 3059 contextname="edotaccent", 3060 description="LATIN SMALL LETTER E WITH DOT ABOVE", 3061 direction="l", 3062 linebreak="al", 3063 shcode=0x65, 3064 specials={ "char", 0x65, 0x307 }, 3065 uccode=0x116, 3066 unicodeslot=0x117, 3067 }, 3068 { 3069 category="lu", 3070 contextname="Eogonek", 3071 description="LATIN CAPITAL LETTER E WITH OGONEK", 3072 direction="l", 3073 lccode=0x119, 3074 linebreak="al", 3075 shcode=0x45, 3076 specials={ "char", 0x45, 0x328 }, 3077 unicodeslot=0x118, 3078 }, 3079 { 3080 category="ll", 3081 contextname="eogonek", 3082 description="LATIN SMALL LETTER E WITH OGONEK", 3083 direction="l", 3084 linebreak="al", 3085 shcode=0x65, 3086 specials={ "char", 0x65, 0x328 }, 3087 uccode=0x118, 3088 unicodeslot=0x119, 3089 }, 3090 { 3091 category="lu", 3092 contextname="Ecaron", 3093 description="LATIN CAPITAL LETTER E WITH CARON", 3094 direction="l", 3095 lccode=0x11B, 3096 linebreak="al", 3097 shcode=0x45, 3098 specials={ "char", 0x45, 0x30C }, 3099 unicodeslot=0x11A, 3100 }, 3101 { 3102 category="ll", 3103 cjkwd="a", 3104 contextname="ecaron", 3105 description="LATIN SMALL LETTER E WITH CARON", 3106 direction="l", 3107 linebreak="al", 3108 shcode=0x65, 3109 specials={ "char", 0x65, 0x30C }, 3110 uccode=0x11A, 3111 unicodeslot=0x11B, 3112 }, 3113 { 3114 category="lu", 3115 contextname="Gcircumflex", 3116 description="LATIN CAPITAL LETTER G WITH CIRCUMFLEX", 3117 direction="l", 3118 lccode=0x11D, 3119 linebreak="al", 3120 shcode=0x47, 3121 specials={ "char", 0x47, 0x302 }, 3122 unicodeslot=0x11C, 3123 }, 3124 { 3125 category="ll", 3126 contextname="gcircumflex", 3127 description="LATIN SMALL LETTER G WITH CIRCUMFLEX", 3128 direction="l", 3129 linebreak="al", 3130 shcode=0x67, 3131 specials={ "char", 0x67, 0x302 }, 3132 uccode=0x11C, 3133 unicodeslot=0x11D, 3134 }, 3135 { 3136 category="lu", 3137 contextname="Gbreve", 3138 description="LATIN CAPITAL LETTER G WITH BREVE", 3139 direction="l", 3140 lccode=0x11F, 3141 linebreak="al", 3142 shcode=0x47, 3143 specials={ "char", 0x47, 0x306 }, 3144 unicodeslot=0x11E, 3145 }, 3146 { 3147 category="ll", 3148 contextname="gbreve", 3149 description="LATIN SMALL LETTER G WITH BREVE", 3150 direction="l", 3151 linebreak="al", 3152 shcode=0x67, 3153 specials={ "char", 0x67, 0x306 }, 3154 uccode=0x11E, 3155 unicodeslot=0x11F, 3156 }, 3157 { 3158 category="lu", 3159 contextname="Gdotaccent", 3160 description="LATIN CAPITAL LETTER G WITH DOT ABOVE", 3161 direction="l", 3162 lccode=0x121, 3163 linebreak="al", 3164 shcode=0x47, 3165 specials={ "char", 0x47, 0x307 }, 3166 unicodeslot=0x120, 3167 }, 3168 { 3169 category="ll", 3170 contextname="gdotaccent", 3171 description="LATIN SMALL LETTER G WITH DOT ABOVE", 3172 direction="l", 3173 linebreak="al", 3174 shcode=0x67, 3175 specials={ "char", 0x67, 0x307 }, 3176 uccode=0x120, 3177 unicodeslot=0x121, 3178 }, 3179 { 3180 category="lu", 3181 contextname="Gcommaaccent", 3182 description="LATIN CAPITAL LETTER G WITH CEDILLA", 3183 direction="l", 3184 lccode=0x123, 3185 linebreak="al", 3186 shcode=0x47, 3187 specials={ "char", 0x47, 0x327 }, 3188 unicodeslot=0x122, 3189 }, 3190 { 3191 category="ll", 3192 contextname="gcommaaccent", 3193 description="LATIN SMALL LETTER G WITH CEDILLA", 3194 direction="l", 3195 linebreak="al", 3196 shcode=0x67, 3197 specials={ "char", 0x67, 0x327 }, 3198 uccode=0x122, 3199 unicodeslot=0x123, 3200 }, 3201 { 3202 category="lu", 3203 contextname="Hcircumflex", 3204 description="LATIN CAPITAL LETTER H WITH CIRCUMFLEX", 3205 direction="l", 3206 lccode=0x125, 3207 linebreak="al", 3208 shcode=0x48, 3209 specials={ "char", 0x48, 0x302 }, 3210 unicodeslot=0x124, 3211 }, 3212 { 3213 category="ll", 3214 contextname="hcircumflex", 3215 description="LATIN SMALL LETTER H WITH CIRCUMFLEX", 3216 direction="l", 3217 linebreak="al", 3218 shcode=0x68, 3219 specials={ "char", 0x68, 0x302 }, 3220 uccode=0x124, 3221 unicodeslot=0x125, 3222 }, 3223 { 3224 category="lu", 3225 cjkwd="a", 3226 contextname="Hstroke", 3227 description="LATIN CAPITAL LETTER H WITH STROKE", 3228 direction="l", 3229 lccode=0x127, 3230 linebreak="al", 3231 shcode=0x48, 3232 specials={ "with", 0x48, 0x2F }, 3233 unicodeslot=0x126, 3234 }, 3235 { 3236 category="ll", 3237 cjkwd="a", 3238 contextname="hstroke", 3239 description="LATIN SMALL LETTER H WITH STROKE", 3240 direction="l", 3241 linebreak="al", 3242 shcode=0x68, 3243 specials={ "with", 0x68, 0x2F }, 3244 uccode=0x126, 3245 unicodeslot=0x127, 3246 }, 3247 { 3248 category="lu", 3249 contextname="Itilde", 3250 description="LATIN CAPITAL LETTER I WITH TILDE", 3251 direction="l", 3252 lccode=0x129, 3253 linebreak="al", 3254 shcode=0x49, 3255 specials={ "char", 0x49, 0x303 }, 3256 unicodeslot=0x128, 3257 }, 3258 { 3259 category="ll", 3260 contextname="itilde", 3261 description="LATIN SMALL LETTER I WITH TILDE", 3262 direction="l", 3263 linebreak="al", 3264 shcode=0x69, 3265 specials={ "char", 0x69, 0x303 }, 3266 uccode=0x128, 3267 unicodeslot=0x129, 3268 }, 3269 { 3270 category="lu", 3271 contextname="Imacron", 3272 description="LATIN CAPITAL LETTER I WITH MACRON", 3273 direction="l", 3274 lccode=0x12B, 3275 linebreak="al", 3276 shcode=0x49, 3277 specials={ "char", 0x49, 0x304 }, 3278 unicodeslot=0x12A, 3279 }, 3280 { 3281 category="ll", 3282 cjkwd="a", 3283 contextname="imacron", 3284 description="LATIN SMALL LETTER I WITH MACRON", 3285 direction="l", 3286 linebreak="al", 3287 shcode=0x69, 3288 specials={ "char", 0x69, 0x304 }, 3289 uccode=0x12A, 3290 unicodeslot=0x12B, 3291 }, 3292 { 3293 category="lu", 3294 contextname="Ibreve", 3295 description="LATIN CAPITAL LETTER I WITH BREVE", 3296 direction="l", 3297 lccode=0x12D, 3298 linebreak="al", 3299 shcode=0x49, 3300 specials={ "char", 0x49, 0x306 }, 3301 unicodeslot=0x12C, 3302 }, 3303 { 3304 category="ll", 3305 contextname="ibreve", 3306 description="LATIN SMALL LETTER I WITH BREVE", 3307 direction="l", 3308 linebreak="al", 3309 shcode=0x69, 3310 specials={ "char", 0x69, 0x306 }, 3311 uccode=0x12C, 3312 unicodeslot=0x12D, 3313 }, 3314 { 3315 category="lu", 3316 contextname="Iogonek", 3317 description="LATIN CAPITAL LETTER I WITH OGONEK", 3318 direction="l", 3319 lccode=0x12F, 3320 linebreak="al", 3321 shcode=0x49, 3322 specials={ "char", 0x49, 0x328 }, 3323 unicodeslot=0x12E, 3324 }, 3325 { 3326 category="ll", 3327 contextname="iogonek", 3328 description="LATIN SMALL LETTER I WITH OGONEK", 3329 direction="l", 3330 linebreak="al", 3331 shcode=0x69, 3332 specials={ "char", 0x69, 0x328 }, 3333 uccode=0x12E, 3334 unicodeslot=0x12F, 3335 }, 3336 { 3337 category="lu", 3338 contextname="Idotaccent", 3339 description="LATIN CAPITAL LETTER I WITH DOT ABOVE", 3340 direction="l", 3341 lccode=0x69, 3342 linebreak="al", 3343 shcode=0x49, 3344 specials={ "char", 0x49, 0x307 }, 3345 synonyms={ "latin capital letter i dot" }, 3346 unicodeslot=0x130, 3347 }, 3348 { 3349 category="ll", 3350 cjkwd="a", 3351 contextname="dotlessi", 3352 description="LATIN SMALL LETTER DOTLESS I", 3353 direction="l", 3354 linebreak="al", 3355 uccode=0x49, 3356 unicodeslot=0x131, 3357 }, 3358 { 3359 category="lu", 3360 cjkwd="a", 3361 contextname="IJligature", 3362 description="LATIN CAPITAL LIGATURE IJ", 3363 direction="l", 3364 lccode=0x133, 3365 linebreak="al", 3366 shcode={ 0x49, 0x4A }, 3367 specials={ "compat", 0x49, 0x4A }, 3368 unicodeslot=0x132, 3369 }, 3370 { 3371 category="ll", 3372 cjkwd="a", 3373 contextname="ijligature", 3374 description="LATIN SMALL LIGATURE IJ", 3375 direction="l", 3376 linebreak="al", 3377 shcode={ 0x69, 0x6A }, 3378 specials={ "compat", 0x69, 0x6A }, 3379 uccode=0x132, 3380 unicodeslot=0x133, 3381 }, 3382 { 3383 category="lu", 3384 contextname="Jcircumflex", 3385 description="LATIN CAPITAL LETTER J WITH CIRCUMFLEX", 3386 direction="l", 3387 lccode=0x135, 3388 linebreak="al", 3389 shcode=0x4A, 3390 specials={ "char", 0x4A, 0x302 }, 3391 unicodeslot=0x134, 3392 }, 3393 { 3394 category="ll", 3395 contextname="jcircumflex", 3396 description="LATIN SMALL LETTER J WITH CIRCUMFLEX", 3397 direction="l", 3398 linebreak="al", 3399 shcode=0x6A, 3400 specials={ "char", 0x6A, 0x302 }, 3401 uccode=0x134, 3402 unicodeslot=0x135, 3403 }, 3404 { 3405 category="lu", 3406 contextname="Kcommaaccent", 3407 description="LATIN CAPITAL LETTER K WITH CEDILLA", 3408 direction="l", 3409 lccode=0x137, 3410 linebreak="al", 3411 shcode=0x4B, 3412 specials={ "char", 0x4B, 0x327 }, 3413 unicodeslot=0x136, 3414 }, 3415 { 3416 category="ll", 3417 contextname="kcommaaccent", 3418 description="LATIN SMALL LETTER K WITH CEDILLA", 3419 direction="l", 3420 linebreak="al", 3421 shcode=0x6B, 3422 specials={ "char", 0x6B, 0x327 }, 3423 uccode=0x136, 3424 unicodeslot=0x137, 3425 }, 3426 { 3427 category="ll", 3428 cjkwd="a", 3429 contextname="kkra", 3430 description="LATIN SMALL LETTER KRA", 3431 direction="l", 3432 linebreak="al", 3433 unicodeslot=0x138, 3434 }, 3435 { 3436 category="lu", 3437 contextname="Lacute", 3438 description="LATIN CAPITAL LETTER L WITH ACUTE", 3439 direction="l", 3440 lccode=0x13A, 3441 linebreak="al", 3442 shcode=0x4C, 3443 specials={ "char", 0x4C, 0x301 }, 3444 unicodeslot=0x139, 3445 }, 3446 { 3447 category="ll", 3448 contextname="lacute", 3449 description="LATIN SMALL LETTER L WITH ACUTE", 3450 direction="l", 3451 linebreak="al", 3452 shcode=0x6C, 3453 specials={ "char", 0x6C, 0x301 }, 3454 uccode=0x139, 3455 unicodeslot=0x13A, 3456 }, 3457 { 3458 category="lu", 3459 contextname="Lcommaaccent", 3460 description="LATIN CAPITAL LETTER L WITH CEDILLA", 3461 direction="l", 3462 lccode=0x13C, 3463 linebreak="al", 3464 shcode=0x4C, 3465 specials={ "char", 0x4C, 0x327 }, 3466 unicodeslot=0x13B, 3467 }, 3468 { 3469 category="ll", 3470 contextname="lcommaaccent", 3471 description="LATIN SMALL LETTER L WITH CEDILLA", 3472 direction="l", 3473 linebreak="al", 3474 shcode=0x6C, 3475 specials={ "char", 0x6C, 0x327 }, 3476 uccode=0x13B, 3477 unicodeslot=0x13C, 3478 }, 3479 { 3480 category="lu", 3481 contextname="Lcaron", 3482 description="LATIN CAPITAL LETTER L WITH CARON", 3483 direction="l", 3484 lccode=0x13E, 3485 linebreak="al", 3486 shcode=0x4C, 3487 specials={ "char", 0x4C, 0x30C }, 3488 unicodeslot=0x13D, 3489 }, 3490 { 3491 category="ll", 3492 contextname="lcaron", 3493 description="LATIN SMALL LETTER L WITH CARON", 3494 direction="l", 3495 linebreak="al", 3496 shcode=0x6C, 3497 specials={ "char", 0x6C, 0x30C }, 3498 uccode=0x13D, 3499 unicodeslot=0x13E, 3500 }, 3501 { 3502 category="lu", 3503 cjkwd="a", 3504 contextname="Ldotmiddle", 3505 description="LATIN CAPITAL LETTER L WITH MIDDLE DOT", 3506 direction="l", 3507 lccode=0x140, 3508 linebreak="al", 3509 shcode=0x4C, 3510 specials={ "compat", 0x4C, 0xB7 }, 3511 unicodeslot=0x13F, 3512 }, 3513 { 3514 category="ll", 3515 cjkwd="a", 3516 contextname="ldotmiddle", 3517 description="LATIN SMALL LETTER L WITH MIDDLE DOT", 3518 direction="l", 3519 linebreak="al", 3520 shcode=0x6C, 3521 specials={ "compat", 0x6C, 0xB7 }, 3522 uccode=0x13F, 3523 unicodeslot=0x140, 3524 }, 3525 { 3526 category="lu", 3527 cjkwd="a", 3528 contextname="Lstroke", 3529 description="LATIN CAPITAL LETTER L WITH STROKE", 3530 direction="l", 3531 lccode=0x142, 3532 linebreak="al", 3533 shcode=0x4C, 3534 specials={ "with", 0x4C, 0x2F }, 3535 unicodeslot=0x141, 3536 }, 3537 { 3538 category="ll", 3539 cjkwd="a", 3540 contextname="lstroke", 3541 description="LATIN SMALL LETTER L WITH STROKE", 3542 direction="l", 3543 linebreak="al", 3544 shcode=0x6C, 3545 specials={ "with", 0x6C, 0x2F }, 3546 uccode=0x141, 3547 unicodeslot=0x142, 3548 }, 3549 { 3550 category="lu", 3551 contextname="Nacute", 3552 description="LATIN CAPITAL LETTER N WITH ACUTE", 3553 direction="l", 3554 lccode=0x144, 3555 linebreak="al", 3556 shcode=0x4E, 3557 specials={ "char", 0x4E, 0x301 }, 3558 unicodeslot=0x143, 3559 }, 3560 { 3561 category="ll", 3562 cjkwd="a", 3563 contextname="nacute", 3564 description="LATIN SMALL LETTER N WITH ACUTE", 3565 direction="l", 3566 linebreak="al", 3567 shcode=0x6E, 3568 specials={ "char", 0x6E, 0x301 }, 3569 uccode=0x143, 3570 unicodeslot=0x144, 3571 }, 3572 { 3573 category="lu", 3574 contextname="Ncommaaccent", 3575 description="LATIN CAPITAL LETTER N WITH CEDILLA", 3576 direction="l", 3577 lccode=0x146, 3578 linebreak="al", 3579 shcode=0x4E, 3580 specials={ "char", 0x4E, 0x327 }, 3581 unicodeslot=0x145, 3582 }, 3583 { 3584 category="ll", 3585 contextname="ncommaaccent", 3586 description="LATIN SMALL LETTER N WITH CEDILLA", 3587 direction="l", 3588 linebreak="al", 3589 shcode=0x6E, 3590 specials={ "char", 0x6E, 0x327 }, 3591 uccode=0x145, 3592 unicodeslot=0x146, 3593 }, 3594 { 3595 category="lu", 3596 contextname="Ncaron", 3597 description="LATIN CAPITAL LETTER N WITH CARON", 3598 direction="l", 3599 lccode=0x148, 3600 linebreak="al", 3601 shcode=0x4E, 3602 specials={ "char", 0x4E, 0x30C }, 3603 unicodeslot=0x147, 3604 }, 3605 { 3606 category="ll", 3607 cjkwd="a", 3608 contextname="ncaron", 3609 description="LATIN SMALL LETTER N WITH CARON", 3610 direction="l", 3611 linebreak="al", 3612 shcode=0x6E, 3613 specials={ "char", 0x6E, 0x30C }, 3614 uccode=0x147, 3615 unicodeslot=0x148, 3616 }, 3617 { 3618 category="ll", 3619 cjkwd="a", 3620 contextname="napostrophe", 3621 description="LATIN SMALL LETTER N PRECEDED BY APOSTROPHE", 3622 direction="l", 3623 linebreak="al", 3624 specials={ "compat", 0x2BC, 0x6E }, 3625 uccode={ 0x2BC, 0x6E }, 3626 unicodeslot=0x149, 3627 }, 3628 { 3629 category="lu", 3630 cjkwd="a", 3631 contextname="Neng", 3632 description="LATIN CAPITAL LETTER ENG", 3633 direction="l", 3634 lccode=0x14B, 3635 linebreak="al", 3636 unicodeslot=0x14A, 3637 }, 3638 { 3639 category="ll", 3640 cjkwd="a", 3641 contextname="neng", 3642 description="LATIN SMALL LETTER ENG", 3643 direction="l", 3644 linebreak="al", 3645 uccode=0x14A, 3646 unicodeslot=0x14B, 3647 }, 3648 { 3649 category="lu", 3650 contextname="Omacron", 3651 description="LATIN CAPITAL LETTER O WITH MACRON", 3652 direction="l", 3653 lccode=0x14D, 3654 linebreak="al", 3655 shcode=0x4F, 3656 specials={ "char", 0x4F, 0x304 }, 3657 unicodeslot=0x14C, 3658 }, 3659 { 3660 category="ll", 3661 cjkwd="a", 3662 contextname="omacron", 3663 description="LATIN SMALL LETTER O WITH MACRON", 3664 direction="l", 3665 linebreak="al", 3666 shcode=0x6F, 3667 specials={ "char", 0x6F, 0x304 }, 3668 uccode=0x14C, 3669 unicodeslot=0x14D, 3670 }, 3671 { 3672 category="lu", 3673 contextname="Obreve", 3674 description="LATIN CAPITAL LETTER O WITH BREVE", 3675 direction="l", 3676 lccode=0x14F, 3677 linebreak="al", 3678 shcode=0x4F, 3679 specials={ "char", 0x4F, 0x306 }, 3680 unicodeslot=0x14E, 3681 }, 3682 { 3683 category="ll", 3684 contextname="obreve", 3685 description="LATIN SMALL LETTER O WITH BREVE", 3686 direction="l", 3687 linebreak="al", 3688 shcode=0x6F, 3689 specials={ "char", 0x6F, 0x306 }, 3690 uccode=0x14E, 3691 unicodeslot=0x14F, 3692 }, 3693 { 3694 category="lu", 3695 contextname="Ohungarumlaut", 3696 description="LATIN CAPITAL LETTER O WITH DOUBLE ACUTE", 3697 direction="l", 3698 lccode=0x151, 3699 linebreak="al", 3700 shcode=0x4F, 3701 specials={ "char", 0x4F, 0x30B }, 3702 unicodeslot=0x150, 3703 }, 3704 { 3705 category="ll", 3706 contextname="ohungarumlaut", 3707 description="LATIN SMALL LETTER O WITH DOUBLE ACUTE", 3708 direction="l", 3709 linebreak="al", 3710 shcode=0x6F, 3711 specials={ "char", 0x6F, 0x30B }, 3712 uccode=0x150, 3713 unicodeslot=0x151, 3714 }, 3715 { 3716 category="lu", 3717 cjkwd="a", 3718 contextname="OEligature", 3719 description="LATIN CAPITAL LIGATURE OE", 3720 direction="l", 3721 lccode=0x153, 3722 linebreak="al", 3723 shcode={ 0x4F, 0x45 }, 3724 unicodeslot=0x152, 3725 }, 3726 { 3727 category="ll", 3728 cjkwd="a", 3729 contextname="oeligature", 3730 description="LATIN SMALL LIGATURE OE", 3731 direction="l", 3732 linebreak="al", 3733 shcode={ 0x6F, 0x65 }, 3734 synonyms={ "ethel", "latin small letter o e" }, 3735 uccode=0x152, 3736 unicodeslot=0x153, 3737 }, 3738 { 3739 category="lu", 3740 contextname="Racute", 3741 description="LATIN CAPITAL LETTER R WITH ACUTE", 3742 direction="l", 3743 lccode=0x155, 3744 linebreak="al", 3745 shcode=0x52, 3746 specials={ "char", 0x52, 0x301 }, 3747 unicodeslot=0x154, 3748 }, 3749 { 3750 category="ll", 3751 contextname="racute", 3752 description="LATIN SMALL LETTER R WITH ACUTE", 3753 direction="l", 3754 linebreak="al", 3755 shcode=0x72, 3756 specials={ "char", 0x72, 0x301 }, 3757 uccode=0x154, 3758 unicodeslot=0x155, 3759 }, 3760 { 3761 category="lu", 3762 contextname="Rcommaaccent", 3763 description="LATIN CAPITAL LETTER R WITH CEDILLA", 3764 direction="l", 3765 lccode=0x157, 3766 linebreak="al", 3767 shcode=0x52, 3768 specials={ "char", 0x52, 0x327 }, 3769 unicodeslot=0x156, 3770 }, 3771 { 3772 category="ll", 3773 contextname="rcommaaccent", 3774 description="LATIN SMALL LETTER R WITH CEDILLA", 3775 direction="l", 3776 linebreak="al", 3777 shcode=0x72, 3778 specials={ "char", 0x72, 0x327 }, 3779 uccode=0x156, 3780 unicodeslot=0x157, 3781 }, 3782 { 3783 category="lu", 3784 contextname="Rcaron", 3785 description="LATIN CAPITAL LETTER R WITH CARON", 3786 direction="l", 3787 lccode=0x159, 3788 linebreak="al", 3789 shcode=0x52, 3790 specials={ "char", 0x52, 0x30C }, 3791 unicodeslot=0x158, 3792 }, 3793 { 3794 category="ll", 3795 contextname="rcaron", 3796 description="LATIN SMALL LETTER R WITH CARON", 3797 direction="l", 3798 linebreak="al", 3799 shcode=0x72, 3800 specials={ "char", 0x72, 0x30C }, 3801 uccode=0x158, 3802 unicodeslot=0x159, 3803 }, 3804 { 3805 category="lu", 3806 contextname="Sacute", 3807 description="LATIN CAPITAL LETTER S WITH ACUTE", 3808 direction="l", 3809 lccode=0x15B, 3810 linebreak="al", 3811 shcode=0x53, 3812 specials={ "char", 0x53, 0x301 }, 3813 unicodeslot=0x15A, 3814 }, 3815 { 3816 category="ll", 3817 contextname="sacute", 3818 description="LATIN SMALL LETTER S WITH ACUTE", 3819 direction="l", 3820 linebreak="al", 3821 shcode=0x73, 3822 specials={ "char", 0x73, 0x301 }, 3823 uccode=0x15A, 3824 unicodeslot=0x15B, 3825 }, 3826 { 3827 category="lu", 3828 contextname="Scircumflex", 3829 description="LATIN CAPITAL LETTER S WITH CIRCUMFLEX", 3830 direction="l", 3831 lccode=0x15D, 3832 linebreak="al", 3833 shcode=0x53, 3834 specials={ "char", 0x53, 0x302 }, 3835 unicodeslot=0x15C, 3836 }, 3837 { 3838 category="ll", 3839 contextname="scircumflex", 3840 description="LATIN SMALL LETTER S WITH CIRCUMFLEX", 3841 direction="l", 3842 linebreak="al", 3843 shcode=0x73, 3844 specials={ "char", 0x73, 0x302 }, 3845 uccode=0x15C, 3846 unicodeslot=0x15D, 3847 }, 3848 { 3849 category="lu", 3850 contextname="Scedilla", 3851 description="LATIN CAPITAL LETTER S WITH CEDILLA", 3852 direction="l", 3853 lccode=0x15F, 3854 linebreak="al", 3855 shcode=0x53, 3856 specials={ "char", 0x53, 0x327 }, 3857 unicodeslot=0x15E, 3858 }, 3859 { 3860 category="ll", 3861 contextname="scedilla", 3862 description="LATIN SMALL LETTER S WITH CEDILLA", 3863 direction="l", 3864 linebreak="al", 3865 shcode=0x73, 3866 specials={ "char", 0x73, 0x327 }, 3867 uccode=0x15E, 3868 unicodeslot=0x15F, 3869 }, 3870 { 3871 category="lu", 3872 contextname="Scaron", 3873 description="LATIN CAPITAL LETTER S WITH CARON", 3874 direction="l", 3875 lccode=0x161, 3876 linebreak="al", 3877 shcode=0x53, 3878 specials={ "char", 0x53, 0x30C }, 3879 unicodeslot=0x160, 3880 }, 3881 { 3882 category="ll", 3883 contextname="scaron", 3884 description="LATIN SMALL LETTER S WITH CARON", 3885 direction="l", 3886 linebreak="al", 3887 shcode=0x73, 3888 specials={ "char", 0x73, 0x30C }, 3889 uccode=0x160, 3890 unicodeslot=0x161, 3891 }, 3892 { 3893 category="lu", 3894 contextname="Tcedilla", 3895 description="LATIN CAPITAL LETTER T WITH CEDILLA", 3896 direction="l", 3897 lccode=0x163, 3898 linebreak="al", 3899 shcode=0x54, 3900 specials={ "char", 0x54, 0x327 }, 3901 unicodeslot=0x162, 3902 }, 3903 { 3904 category="ll", 3905 contextname="tcedilla", 3906 description="LATIN SMALL LETTER T WITH CEDILLA", 3907 direction="l", 3908 linebreak="al", 3909 shcode=0x74, 3910 specials={ "char", 0x74, 0x327 }, 3911 uccode=0x162, 3912 unicodeslot=0x163, 3913 }, 3914 { 3915 category="lu", 3916 contextname="Tcaron", 3917 description="LATIN CAPITAL LETTER T WITH CARON", 3918 direction="l", 3919 lccode=0x165, 3920 linebreak="al", 3921 shcode=0x54, 3922 specials={ "char", 0x54, 0x30C }, 3923 unicodeslot=0x164, 3924 }, 3925 { 3926 category="ll", 3927 contextname="tcaron", 3928 description="LATIN SMALL LETTER T WITH CARON", 3929 direction="l", 3930 linebreak="al", 3931 shcode=0x74, 3932 specials={ "char", 0x74, 0x30C }, 3933 uccode=0x164, 3934 unicodeslot=0x165, 3935 }, 3936 { 3937 category="lu", 3938 cjkwd="a", 3939 contextname="Tstroke", 3940 description="LATIN CAPITAL LETTER T WITH STROKE", 3941 direction="l", 3942 lccode=0x167, 3943 linebreak="al", 3944 shcode=0x54, 3945 specials={ "with", 0x54, 0x2F }, 3946 unicodeslot=0x166, 3947 }, 3948 { 3949 category="ll", 3950 cjkwd="a", 3951 contextname="tstroke", 3952 description="LATIN SMALL LETTER T WITH STROKE", 3953 direction="l", 3954 linebreak="al", 3955 shcode=0x74, 3956 specials={ "with", 0x74, 0x2F }, 3957 uccode=0x166, 3958 unicodeslot=0x167, 3959 }, 3960 { 3961 category="lu", 3962 contextname="Utilde", 3963 description="LATIN CAPITAL LETTER U WITH TILDE", 3964 direction="l", 3965 lccode=0x169, 3966 linebreak="al", 3967 shcode=0x55, 3968 specials={ "char", 0x55, 0x303 }, 3969 unicodeslot=0x168, 3970 }, 3971 { 3972 category="ll", 3973 contextname="utilde", 3974 description="LATIN SMALL LETTER U WITH TILDE", 3975 direction="l", 3976 linebreak="al", 3977 shcode=0x75, 3978 specials={ "char", 0x75, 0x303 }, 3979 uccode=0x168, 3980 unicodeslot=0x169, 3981 }, 3982 { 3983 category="lu", 3984 contextname="Umacron", 3985 description="LATIN CAPITAL LETTER U WITH MACRON", 3986 direction="l", 3987 lccode=0x16B, 3988 linebreak="al", 3989 shcode=0x55, 3990 specials={ "char", 0x55, 0x304 }, 3991 unicodeslot=0x16A, 3992 }, 3993 { 3994 category="ll", 3995 cjkwd="a", 3996 contextname="umacron", 3997 description="LATIN SMALL LETTER U WITH MACRON", 3998 direction="l", 3999 linebreak="al", 4000 shcode=0x75, 4001 specials={ "char", 0x75, 0x304 }, 4002 uccode=0x16A, 4003 unicodeslot=0x16B, 4004 }, 4005 { 4006 category="lu", 4007 contextname="Ubreve", 4008 description="LATIN CAPITAL LETTER U WITH BREVE", 4009 direction="l", 4010 lccode=0x16D, 4011 linebreak="al", 4012 shcode=0x55, 4013 specials={ "char", 0x55, 0x306 }, 4014 unicodeslot=0x16C, 4015 }, 4016 { 4017 category="ll", 4018 contextname="ubreve", 4019 description="LATIN SMALL LETTER U WITH BREVE", 4020 direction="l", 4021 linebreak="al", 4022 shcode=0x75, 4023 specials={ "char", 0x75, 0x306 }, 4024 uccode=0x16C, 4025 unicodeslot=0x16D, 4026 }, 4027 { 4028 category="lu", 4029 contextname="Uring", 4030 description="LATIN CAPITAL LETTER U WITH RING ABOVE", 4031 direction="l", 4032 lccode=0x16F, 4033 linebreak="al", 4034 shcode=0x55, 4035 specials={ "char", 0x55, 0x30A }, 4036 unicodeslot=0x16E, 4037 }, 4038 { 4039 category="ll", 4040 contextname="uring", 4041 description="LATIN SMALL LETTER U WITH RING ABOVE", 4042 direction="l", 4043 linebreak="al", 4044 shcode=0x75, 4045 specials={ "char", 0x75, 0x30A }, 4046 uccode=0x16E, 4047 unicodeslot=0x16F, 4048 }, 4049 { 4050 category="lu", 4051 contextname="Uhungarumlaut", 4052 description="LATIN CAPITAL LETTER U WITH DOUBLE ACUTE", 4053 direction="l", 4054 lccode=0x171, 4055 linebreak="al", 4056 shcode=0x55, 4057 specials={ "char", 0x55, 0x30B }, 4058 unicodeslot=0x170, 4059 }, 4060 { 4061 category="ll", 4062 contextname="uhungarumlaut", 4063 description="LATIN SMALL LETTER U WITH DOUBLE ACUTE", 4064 direction="l", 4065 linebreak="al", 4066 shcode=0x75, 4067 specials={ "char", 0x75, 0x30B }, 4068 uccode=0x170, 4069 unicodeslot=0x171, 4070 }, 4071 { 4072 category="lu", 4073 contextname="Uogonek", 4074 description="LATIN CAPITAL LETTER U WITH OGONEK", 4075 direction="l", 4076 lccode=0x173, 4077 linebreak="al", 4078 shcode=0x55, 4079 specials={ "char", 0x55, 0x328 }, 4080 unicodeslot=0x172, 4081 }, 4082 { 4083 category="ll", 4084 contextname="uogonek", 4085 description="LATIN SMALL LETTER U WITH OGONEK", 4086 direction="l", 4087 linebreak="al", 4088 shcode=0x75, 4089 specials={ "char", 0x75, 0x328 }, 4090 uccode=0x172, 4091 unicodeslot=0x173, 4092 }, 4093 { 4094 category="lu", 4095 contextname="Wcircumflex", 4096 description="LATIN CAPITAL LETTER W WITH CIRCUMFLEX", 4097 direction="l", 4098 lccode=0x175, 4099 linebreak="al", 4100 shcode=0x57, 4101 specials={ "char", 0x57, 0x302 }, 4102 unicodeslot=0x174, 4103 }, 4104 { 4105 category="ll", 4106 contextname="wcircumflex", 4107 description="LATIN SMALL LETTER W WITH CIRCUMFLEX", 4108 direction="l", 4109 linebreak="al", 4110 shcode=0x77, 4111 specials={ "char", 0x77, 0x302 }, 4112 uccode=0x174, 4113 unicodeslot=0x175, 4114 }, 4115 { 4116 category="lu", 4117 contextname="Ycircumflex", 4118 description="LATIN CAPITAL LETTER Y WITH CIRCUMFLEX", 4119 direction="l", 4120 lccode=0x177, 4121 linebreak="al", 4122 shcode=0x59, 4123 specials={ "char", 0x59, 0x302 }, 4124 unicodeslot=0x176, 4125 }, 4126 { 4127 category="ll", 4128 contextname="ycircumflex", 4129 description="LATIN SMALL LETTER Y WITH CIRCUMFLEX", 4130 direction="l", 4131 linebreak="al", 4132 shcode=0x79, 4133 specials={ "char", 0x79, 0x302 }, 4134 uccode=0x176, 4135 unicodeslot=0x177, 4136 }, 4137 { 4138 category="lu", 4139 contextname="Ydiaeresis", 4140 description="LATIN CAPITAL LETTER Y WITH DIAERESIS", 4141 direction="l", 4142 lccode=0xFF, 4143 linebreak="al", 4144 shcode=0x59, 4145 specials={ "char", 0x59, 0x308 }, 4146 unicodeslot=0x178, 4147 }, 4148 { 4149 category="lu", 4150 contextname="Zacute", 4151 description="LATIN CAPITAL LETTER Z WITH ACUTE", 4152 direction="l", 4153 lccode=0x17A, 4154 linebreak="al", 4155 shcode=0x5A, 4156 specials={ "char", 0x5A, 0x301 }, 4157 unicodeslot=0x179, 4158 }, 4159 { 4160 category="ll", 4161 contextname="zacute", 4162 description="LATIN SMALL LETTER Z WITH ACUTE", 4163 direction="l", 4164 linebreak="al", 4165 shcode=0x7A, 4166 specials={ "char", 0x7A, 0x301 }, 4167 uccode=0x179, 4168 unicodeslot=0x17A, 4169 }, 4170 { 4171 category="lu", 4172 contextname="Zdotaccent", 4173 description="LATIN CAPITAL LETTER Z WITH DOT ABOVE", 4174 direction="l", 4175 lccode=0x17C, 4176 linebreak="al", 4177 shcode=0x5A, 4178 specials={ "char", 0x5A, 0x307 }, 4179 unicodeslot=0x17B, 4180 }, 4181 { 4182 category="ll", 4183 contextname="zdotaccent", 4184 description="LATIN SMALL LETTER Z WITH DOT ABOVE", 4185 direction="l", 4186 linebreak="al", 4187 shcode=0x7A, 4188 specials={ "char", 0x7A, 0x307 }, 4189 uccode=0x17B, 4190 unicodeslot=0x17C, 4191 }, 4192 { 4193 category="lu", 4194 contextname="Zcaron", 4195 description="LATIN CAPITAL LETTER Z WITH CARON", 4196 direction="l", 4197 lccode=0x17E, 4198 linebreak="al", 4199 shcode=0x5A, 4200 specials={ "char", 0x5A, 0x30C }, 4201 unicodeslot=0x17D, 4202 }, 4203 { 4204 category="ll", 4205 contextname="zcaron", 4206 description="LATIN SMALL LETTER Z WITH CARON", 4207 direction="l", 4208 linebreak="al", 4209 shcode=0x7A, 4210 specials={ "char", 0x7A, 0x30C }, 4211 uccode=0x17D, 4212 unicodeslot=0x17E, 4213 }, 4214 { 4215 category="ll", 4216 contextname="slong", 4217 description="LATIN SMALL LETTER LONG S", 4218 direction="l", 4219 linebreak="al", 4220 specials={ "compat", 0x73 }, 4221 uccode=0x73, 4222 unicodeslot=0x17F, 4223 }, 4224 { 4225 category="ll", 4226 contextname="bstroke", 4227 description="LATIN SMALL LETTER B WITH STROKE", 4228 direction="l", 4229 linebreak="al", 4230 shcode=0x62, 4231 specials={ "with", 0x62, 0x2F }, 4232 uccode=0x243, 4233 unicodeslot=0x180, 4234 }, 4235 { 4236 category="lu", 4237 contextname="Bhook", 4238 description="LATIN CAPITAL LETTER B WITH HOOK", 4239 direction="l", 4240 lccode=0x253, 4241 linebreak="al", 4242 shcode=0x42, 4243 specials={ "with", 0x42, 0x1FA9D }, 4244 unicodeslot=0x181, 4245 }, 4246 { 4247 category="lu", 4248 description="LATIN CAPITAL LETTER B WITH TOPBAR", 4249 direction="l", 4250 lccode=0x183, 4251 linebreak="al", 4252 shcode=0x42, 4253 unicodeslot=0x182, 4254 }, 4255 { 4256 category="ll", 4257 description="LATIN SMALL LETTER B WITH TOPBAR", 4258 direction="l", 4259 linebreak="al", 4260 shcode=0x62, 4261 uccode=0x182, 4262 unicodeslot=0x183, 4263 }, 4264 { 4265 category="lu", 4266 description="LATIN CAPITAL LETTER TONE SIX", 4267 direction="l", 4268 lccode=0x185, 4269 linebreak="al", 4270 unicodeslot=0x184, 4271 }, 4272 { 4273 category="ll", 4274 description="LATIN SMALL LETTER TONE SIX", 4275 direction="l", 4276 linebreak="al", 4277 uccode=0x184, 4278 unicodeslot=0x185, 4279 }, 4280 { 4281 category="lu", 4282 description="LATIN CAPITAL LETTER OPEN O", 4283 direction="l", 4284 lccode=0x254, 4285 linebreak="al", 4286 unicodeslot=0x186, 4287 }, 4288 { 4289 category="lu", 4290 contextname="Chook", 4291 description="LATIN CAPITAL LETTER C WITH HOOK", 4292 direction="l", 4293 lccode=0x188, 4294 linebreak="al", 4295 shcode=0x43, 4296 specials={ "with", 0x43, 0x1FA9D }, 4297 unicodeslot=0x187, 4298 }, 4299 { 4300 category="ll", 4301 contextname="chook", 4302 description="LATIN SMALL LETTER C WITH HOOK", 4303 direction="l", 4304 linebreak="al", 4305 shcode=0x63, 4306 specials={ "with", 0x63, 0x1FA9D }, 4307 uccode=0x187, 4308 unicodeslot=0x188, 4309 }, 4310 { 4311 category="lu", 4312 contextname="Dafrican", 4313 description="LATIN CAPITAL LETTER AFRICAN D", 4314 direction="l", 4315 lccode=0x256, 4316 linebreak="al", 4317 unicodeslot=0x189, 4318 }, 4319 { 4320 category="lu", 4321 contextname="Dhook", 4322 description="LATIN CAPITAL LETTER D WITH HOOK", 4323 direction="l", 4324 lccode=0x257, 4325 linebreak="al", 4326 shcode=0x44, 4327 specials={ "with", 0x44, 0x1FA9D }, 4328 unicodeslot=0x18A, 4329 }, 4330 { 4331 category="lu", 4332 description="LATIN CAPITAL LETTER D WITH TOPBAR", 4333 direction="l", 4334 lccode=0x18C, 4335 linebreak="al", 4336 shcode=0x44, 4337 unicodeslot=0x18B, 4338 }, 4339 { 4340 category="ll", 4341 description="LATIN SMALL LETTER D WITH TOPBAR", 4342 direction="l", 4343 linebreak="al", 4344 shcode=0x64, 4345 uccode=0x18B, 4346 unicodeslot=0x18C, 4347 }, 4348 { 4349 category="ll", 4350 description="LATIN SMALL LETTER TURNED DELTA", 4351 direction="l", 4352 linebreak="al", 4353 unicodeslot=0x18D, 4354 }, 4355 { 4356 category="lu", 4357 description="LATIN CAPITAL LETTER REVERSED E", 4358 direction="l", 4359 lccode=0x1DD, 4360 linebreak="al", 4361 synonyms={ "latin capital letter turned e" }, 4362 unicodeslot=0x18E, 4363 }, 4364 { 4365 category="lu", 4366 contextname="Schwa", 4367 description="LATIN CAPITAL LETTER SCHWA", 4368 direction="l", 4369 lccode=0x259, 4370 linebreak="al", 4371 unicodeslot=0x18F, 4372 }, 4373 { 4374 category="lu", 4375 description="LATIN CAPITAL LETTER OPEN E", 4376 direction="l", 4377 lccode=0x25B, 4378 linebreak="al", 4379 synonyms={ "latin capital letter epsilon" }, 4380 unicodeslot=0x190, 4381 }, 4382 { 4383 category="lu", 4384 contextname="Fhook", 4385 description="LATIN CAPITAL LETTER F WITH HOOK", 4386 direction="l", 4387 lccode=0x192, 4388 linebreak="al", 4389 shcode=0x46, 4390 specials={ "with", 0x46, 0x1FA9D }, 4391 unicodeslot=0x191, 4392 }, 4393 { 4394 category="ll", 4395 contextname="fhook", 4396 description="LATIN SMALL LETTER F WITH HOOK", 4397 direction="l", 4398 linebreak="al", 4399 shcode=0x66, 4400 specials={ "with", 0x66, 0x1FA9D }, 4401 synonyms={ "florin currency symbol", "folder", "function symbol", "latin small letter script f" }, 4402 uccode=0x191, 4403 unicodeslot=0x192, 4404 }, 4405 { 4406 category="lu", 4407 contextname="Ghook", 4408 description="LATIN CAPITAL LETTER G WITH HOOK", 4409 direction="l", 4410 lccode=0x260, 4411 linebreak="al", 4412 shcode=0x47, 4413 specials={ "with", 0x47, 0x1FA9D }, 4414 unicodeslot=0x193, 4415 }, 4416 { 4417 category="lu", 4418 description="LATIN CAPITAL LETTER GAMMA", 4419 direction="l", 4420 lccode=0x263, 4421 linebreak="al", 4422 unicodeslot=0x194, 4423 }, 4424 { 4425 category="ll", 4426 description="LATIN SMALL LETTER HV", 4427 direction="l", 4428 linebreak="al", 4429 uccode=0x1F6, 4430 unicodeslot=0x195, 4431 }, 4432 { 4433 category="lu", 4434 description="LATIN CAPITAL LETTER IOTA", 4435 direction="l", 4436 lccode=0x269, 4437 linebreak="al", 4438 unicodeslot=0x196, 4439 }, 4440 { 4441 category="lu", 4442 contextname="Istroke", 4443 description="LATIN CAPITAL LETTER I WITH STROKE", 4444 direction="l", 4445 lccode=0x268, 4446 linebreak="al", 4447 shcode=0x49, 4448 specials={ "with", 0x49, 0x2F }, 4449 synonyms={ "latin capital letter i bar" }, 4450 unicodeslot=0x197, 4451 }, 4452 { 4453 category="lu", 4454 contextname="Khook", 4455 description="LATIN CAPITAL LETTER K WITH HOOK", 4456 direction="l", 4457 lccode=0x199, 4458 linebreak="al", 4459 shcode=0x4B, 4460 specials={ "with", 0x4B, 0x1FA9D }, 4461 unicodeslot=0x198, 4462 }, 4463 { 4464 category="ll", 4465 contextname="khook", 4466 description="LATIN SMALL LETTER K WITH HOOK", 4467 direction="l", 4468 linebreak="al", 4469 shcode=0x6B, 4470 specials={ "with", 0x6B, 0x1FA9D }, 4471 uccode=0x198, 4472 unicodeslot=0x199, 4473 }, 4474 { 4475 category="ll", 4476 contextname="lbar", 4477 description="LATIN SMALL LETTER L WITH BAR", 4478 direction="l", 4479 linebreak="al", 4480 shcode=0x6C, 4481 uccode=0x23D, 4482 unicodeslot=0x19A, 4483 }, 4484 { 4485 category="ll", 4486 description="LATIN SMALL LETTER LAMBDA WITH STROKE", 4487 direction="l", 4488 linebreak="al", 4489 mathname="lambdabar", 4490 specials={ "with", 0xA7DB, 0x2F }, 4491 synonyms={ "latin letter lambda bar" }, 4492 unicodeslot=0x19B, 4493 }, 4494 { 4495 category="lu", 4496 description="LATIN CAPITAL LETTER TURNED M", 4497 direction="l", 4498 lccode=0x26F, 4499 linebreak="al", 4500 unicodeslot=0x19C, 4501 }, 4502 { 4503 category="lu", 4504 description="LATIN CAPITAL LETTER N WITH LEFT HOOK", 4505 direction="l", 4506 lccode=0x272, 4507 linebreak="al", 4508 shcode=0x4E, 4509 unicodeslot=0x19D, 4510 }, 4511 { 4512 category="ll", 4513 description="LATIN SMALL LETTER N WITH LONG RIGHT LEG", 4514 direction="l", 4515 linebreak="al", 4516 shcode=0x6E, 4517 uccode=0x220, 4518 unicodeslot=0x19E, 4519 }, 4520 { 4521 category="lu", 4522 description="LATIN CAPITAL LETTER O WITH MIDDLE TILDE", 4523 direction="l", 4524 lccode=0x275, 4525 linebreak="al", 4526 shcode=0x4F, 4527 synonyms={ "latin capital letter barred o", "latin capital letter o bar" }, 4528 unicodeslot=0x19F, 4529 }, 4530 { 4531 category="lu", 4532 contextname="Ohorn", 4533 description="LATIN CAPITAL LETTER O WITH HORN", 4534 direction="l", 4535 lccode=0x1A1, 4536 linebreak="al", 4537 shcode=0x4F, 4538 specials={ "char", 0x4F, 0x31B }, 4539 unicodeslot=0x1A0, 4540 }, 4541 { 4542 category="ll", 4543 contextname="ohorn", 4544 description="LATIN SMALL LETTER O WITH HORN", 4545 direction="l", 4546 linebreak="al", 4547 shcode=0x6F, 4548 specials={ "char", 0x6F, 0x31B }, 4549 uccode=0x1A0, 4550 unicodeslot=0x1A1, 4551 }, 4552 { 4553 category="lu", 4554 description="LATIN CAPITAL LETTER OI", 4555 direction="l", 4556 lccode=0x1A3, 4557 linebreak="al", 4558 unicodeslot=0x1A2, 4559 }, 4560 { 4561 category="ll", 4562 description="LATIN SMALL LETTER OI", 4563 direction="l", 4564 linebreak="al", 4565 uccode=0x1A2, 4566 unicodeslot=0x1A3, 4567 }, 4568 { 4569 category="lu", 4570 contextname="Phook", 4571 description="LATIN CAPITAL LETTER P WITH HOOK", 4572 direction="l", 4573 lccode=0x1A5, 4574 linebreak="al", 4575 shcode=0x50, 4576 specials={ "with", 0x50, 0x1FA9D }, 4577 unicodeslot=0x1A4, 4578 }, 4579 { 4580 category="ll", 4581 contextname="phook", 4582 description="LATIN SMALL LETTER P WITH HOOK", 4583 direction="l", 4584 linebreak="al", 4585 shcode=0x70, 4586 specials={ "with", 0x70, 0x1FA9D }, 4587 uccode=0x1A4, 4588 unicodeslot=0x1A5, 4589 }, 4590 { 4591 category="lu", 4592 description="LATIN LETTER YR", 4593 direction="l", 4594 lccode=0x280, 4595 linebreak="al", 4596 unicodeslot=0x1A6, 4597 }, 4598 { 4599 category="lu", 4600 description="LATIN CAPITAL LETTER TONE TWO", 4601 direction="l", 4602 lccode=0x1A8, 4603 linebreak="al", 4604 unicodeslot=0x1A7, 4605 }, 4606 { 4607 category="ll", 4608 description="LATIN SMALL LETTER TONE TWO", 4609 direction="l", 4610 linebreak="al", 4611 uccode=0x1A7, 4612 unicodeslot=0x1A8, 4613 }, 4614 { 4615 category="lu", 4616 description="LATIN CAPITAL LETTER ESH", 4617 direction="l", 4618 lccode=0x283, 4619 linebreak="al", 4620 unicodeslot=0x1A9, 4621 }, 4622 { 4623 category="ll", 4624 description="LATIN LETTER REVERSED ESH LOOP", 4625 direction="l", 4626 linebreak="al", 4627 unicodeslot=0x1AA, 4628 }, 4629 { 4630 category="ll", 4631 description="LATIN SMALL LETTER T WITH PALATAL HOOK", 4632 direction="l", 4633 linebreak="al", 4634 shcode=0x74, 4635 unicodeslot=0x1AB, 4636 }, 4637 { 4638 category="lu", 4639 contextname="Thook", 4640 description="LATIN CAPITAL LETTER T WITH HOOK", 4641 direction="l", 4642 lccode=0x1AD, 4643 linebreak="al", 4644 shcode=0x54, 4645 specials={ "with", 0x54, 0x1FA9D }, 4646 unicodeslot=0x1AC, 4647 }, 4648 { 4649 category="ll", 4650 contextname="thook", 4651 description="LATIN SMALL LETTER T WITH HOOK", 4652 direction="l", 4653 linebreak="al", 4654 shcode=0x74, 4655 specials={ "with", 0x74, 0x1FA9D }, 4656 uccode=0x1AC, 4657 unicodeslot=0x1AD, 4658 }, 4659 { 4660 category="lu", 4661 description="LATIN CAPITAL LETTER T WITH RETROFLEX HOOK", 4662 direction="l", 4663 lccode=0x288, 4664 linebreak="al", 4665 shcode=0x54, 4666 unicodeslot=0x1AE, 4667 }, 4668 { 4669 category="lu", 4670 contextname="Uhorn", 4671 description="LATIN CAPITAL LETTER U WITH HORN", 4672 direction="l", 4673 lccode=0x1B0, 4674 linebreak="al", 4675 shcode=0x55, 4676 specials={ "char", 0x55, 0x31B }, 4677 unicodeslot=0x1AF, 4678 }, 4679 { 4680 category="ll", 4681 contextname="uhorn", 4682 description="LATIN SMALL LETTER U WITH HORN", 4683 direction="l", 4684 linebreak="al", 4685 shcode=0x75, 4686 specials={ "char", 0x75, 0x31B }, 4687 uccode=0x1AF, 4688 unicodeslot=0x1B0, 4689 }, 4690 { 4691 category="lu", 4692 description="LATIN CAPITAL LETTER UPSILON", 4693 direction="l", 4694 lccode=0x28A, 4695 linebreak="al", 4696 unicodeslot=0x1B1, 4697 }, 4698 { 4699 category="lu", 4700 contextname="Vhook", 4701 description="LATIN CAPITAL LETTER V WITH HOOK", 4702 direction="l", 4703 lccode=0x28B, 4704 linebreak="al", 4705 shcode=0x56, 4706 specials={ "with", 0x56, 0x1FA9D }, 4707 synonyms={ "latin capital letter script v" }, 4708 unicodeslot=0x1B2, 4709 }, 4710 { 4711 category="lu", 4712 contextname="Yhook", 4713 description="LATIN CAPITAL LETTER Y WITH HOOK", 4714 direction="l", 4715 lccode=0x1B4, 4716 linebreak="al", 4717 shcode=0x59, 4718 specials={ "with", 0x59, 0x1FA9D }, 4719 unicodeslot=0x1B3, 4720 }, 4721 { 4722 category="ll", 4723 contextname="yhook", 4724 description="LATIN SMALL LETTER Y WITH HOOK", 4725 direction="l", 4726 linebreak="al", 4727 shcode=0x79, 4728 specials={ "with", 0x79, 0x1FA9D }, 4729 uccode=0x1B3, 4730 unicodeslot=0x1B4, 4731 }, 4732 { 4733 category="lu", 4734 contextname="Zstroke", 4735 description="LATIN CAPITAL LETTER Z WITH STROKE", 4736 direction="l", 4737 lccode=0x1B6, 4738 linebreak="al", 4739 shcode=0x5A, 4740 specials={ "with", 0x5A, 0x2F }, 4741 unicodeslot=0x1B5, 4742 }, 4743 { 4744 category="ll", 4745 contextname="zstroke", 4746 description="LATIN SMALL LETTER Z WITH STROKE", 4747 direction="l", 4748 linebreak="al", 4749 shcode=0x7A, 4750 specials={ "with", 0x7A, 0x2F }, 4751 synonyms={ "latin small letter z bar" }, 4752 uccode=0x1B5, 4753 unicodeslot=0x1B6, 4754 }, 4755 { 4756 category="lu", 4757 description="LATIN CAPITAL LETTER EZH", 4758 direction="l", 4759 lccode=0x292, 4760 linebreak="al", 4761 unicodeslot=0x1B7, 4762 }, 4763 { 4764 category="lu", 4765 description="LATIN CAPITAL LETTER EZH REVERSED", 4766 direction="l", 4767 lccode=0x1B9, 4768 linebreak="al", 4769 unicodeslot=0x1B8, 4770 }, 4771 { 4772 category="ll", 4773 description="LATIN SMALL LETTER EZH REVERSED", 4774 direction="l", 4775 linebreak="al", 4776 uccode=0x1B8, 4777 unicodeslot=0x1B9, 4778 }, 4779 { 4780 category="ll", 4781 description="LATIN SMALL LETTER EZH WITH TAIL", 4782 direction="l", 4783 linebreak="al", 4784 shcode=0x292, 4785 unicodeslot=0x1BA, 4786 }, 4787 { 4788 category="lo", 4789 description="LATIN LETTER TWO WITH STROKE", 4790 direction="l", 4791 linebreak="al", 4792 unicodeslot=0x1BB, 4793 }, 4794 { 4795 category="lu", 4796 description="LATIN CAPITAL LETTER TONE FIVE", 4797 direction="l", 4798 lccode=0x1BD, 4799 linebreak="al", 4800 unicodeslot=0x1BC, 4801 }, 4802 { 4803 category="ll", 4804 description="LATIN SMALL LETTER TONE FIVE", 4805 direction="l", 4806 linebreak="al", 4807 uccode=0x1BC, 4808 unicodeslot=0x1BD, 4809 }, 4810 { 4811 category="ll", 4812 description="LATIN LETTER INVERTED GLOTTAL STOP WITH STROKE", 4813 direction="l", 4814 linebreak="al", 4815 specials={ "with", 0x296, 0x2F }, 4816 unicodeslot=0x1BE, 4817 }, 4818 { 4819 category="ll", 4820 description="LATIN LETTER WYNN", 4821 direction="l", 4822 linebreak="al", 4823 uccode=0x1F7, 4824 unicodeslot=0x1BF, 4825 }, 4826 { 4827 category="lo", 4828 description="LATIN LETTER DENTAL CLICK", 4829 direction="l", 4830 linebreak="al", 4831 synonyms={ "pipe" }, 4832 unicodeslot=0x1C0, 4833 }, 4834 { 4835 category="lo", 4836 description="LATIN LETTER LATERAL CLICK", 4837 direction="l", 4838 linebreak="al", 4839 synonyms={ "double pipe" }, 4840 unicodeslot=0x1C1, 4841 }, 4842 { 4843 category="lo", 4844 description="LATIN LETTER ALVEOLAR CLICK", 4845 direction="l", 4846 linebreak="al", 4847 synonyms={ "double-barred pipe" }, 4848 unicodeslot=0x1C2, 4849 }, 4850 { 4851 category="lo", 4852 description="LATIN LETTER RETROFLEX CLICK", 4853 direction="l", 4854 linebreak="al", 4855 synonyms={ "latin letter exclamation mark" }, 4856 unicodeslot=0x1C3, 4857 }, 4858 { 4859 category="lu", 4860 contextname="DZcaronligature", 4861 description="LATIN CAPITAL LETTER DZ WITH CARON", 4862 direction="l", 4863 lccode=0x1C6, 4864 linebreak="al", 4865 shcode=0x1F1, 4866 specials={ "compat", 0x44, 0x17D }, 4867 uccode=0x1C5, 4868 unicodeslot=0x1C4, 4869 }, 4870 { 4871 category="lt", 4872 contextname="Dzcaronligature", 4873 description="LATIN CAPITAL LETTER D WITH SMALL LETTER Z WITH CARON", 4874 direction="l", 4875 lccode=0x1C6, 4876 linebreak="al", 4877 shcode=0x1F2, 4878 specials={ "compat", 0x44, 0x17E }, 4879 uccode=0x1C4, 4880 unicodeslot=0x1C5, 4881 }, 4882 { 4883 category="ll", 4884 contextname="dzcaronligature", 4885 description="LATIN SMALL LETTER DZ WITH CARON", 4886 direction="l", 4887 linebreak="al", 4888 shcode=0x1F3, 4889 specials={ "compat", 0x64, 0x17E }, 4890 uccode=0x1C4, 4891 unicodeslot=0x1C6, 4892 }, 4893 { 4894 category="lu", 4895 contextname="LJligature", 4896 description="LATIN CAPITAL LETTER LJ", 4897 direction="l", 4898 lccode=0x1C9, 4899 linebreak="al", 4900 shcode={ 0x4C, 0x4A }, 4901 specials={ "compat", 0x4C, 0x4A }, 4902 uccode=0x1C8, 4903 unicodeslot=0x1C7, 4904 }, 4905 { 4906 category="lt", 4907 contextname="Ljligature", 4908 description="LATIN CAPITAL LETTER L WITH SMALL LETTER J", 4909 direction="l", 4910 lccode=0x1C9, 4911 linebreak="al", 4912 shcode={ 0x4C, 0x6A }, 4913 specials={ "compat", 0x4C, 0x6A }, 4914 uccode=0x1C7, 4915 unicodeslot=0x1C8, 4916 }, 4917 { 4918 category="ll", 4919 contextname="ljligature", 4920 description="LATIN SMALL LETTER LJ", 4921 direction="l", 4922 linebreak="al", 4923 shcode={ 0x6C, 0x6A }, 4924 specials={ "compat", 0x6C, 0x6A }, 4925 uccode=0x1C7, 4926 unicodeslot=0x1C9, 4927 }, 4928 { 4929 category="lu", 4930 contextname="NJligature", 4931 description="LATIN CAPITAL LETTER NJ", 4932 direction="l", 4933 lccode=0x1CC, 4934 linebreak="al", 4935 shcode={ 0x4E, 0x4A }, 4936 specials={ "compat", 0x4E, 0x4A }, 4937 uccode=0x1CB, 4938 unicodeslot=0x1CA, 4939 }, 4940 { 4941 category="lt", 4942 contextname="Njligature", 4943 description="LATIN CAPITAL LETTER N WITH SMALL LETTER J", 4944 direction="l", 4945 lccode=0x1CC, 4946 linebreak="al", 4947 shcode=0x4E, 4948 specials={ "compat", 0x4E, 0x6A }, 4949 uccode=0x1CA, 4950 unicodeslot=0x1CB, 4951 }, 4952 { 4953 category="ll", 4954 contextname="njligature", 4955 description="LATIN SMALL LETTER NJ", 4956 direction="l", 4957 linebreak="al", 4958 shcode={ 0x6E, 0x6A }, 4959 specials={ "compat", 0x6E, 0x6A }, 4960 uccode=0x1CA, 4961 unicodeslot=0x1CC, 4962 }, 4963 { 4964 category="lu", 4965 contextname="Acaron", 4966 description="LATIN CAPITAL LETTER A WITH CARON", 4967 direction="l", 4968 lccode=0x1CE, 4969 linebreak="al", 4970 shcode=0x41, 4971 specials={ "char", 0x41, 0x30C }, 4972 unicodeslot=0x1CD, 4973 }, 4974 { 4975 category="ll", 4976 cjkwd="a", 4977 contextname="acaron", 4978 description="LATIN SMALL LETTER A WITH CARON", 4979 direction="l", 4980 linebreak="al", 4981 shcode=0x61, 4982 specials={ "char", 0x61, 0x30C }, 4983 uccode=0x1CD, 4984 unicodeslot=0x1CE, 4985 }, 4986 { 4987 category="lu", 4988 contextname="Icaron", 4989 description="LATIN CAPITAL LETTER I WITH CARON", 4990 direction="l", 4991 lccode=0x1D0, 4992 linebreak="al", 4993 shcode=0x49, 4994 specials={ "char", 0x49, 0x30C }, 4995 unicodeslot=0x1CF, 4996 }, 4997 { 4998 category="ll", 4999 cjkwd="a", 5000 contextname="icaron", 5001 description="LATIN SMALL LETTER I WITH CARON", 5002 direction="l", 5003 linebreak="al", 5004 shcode=0x69, 5005 specials={ "char", 0x69, 0x30C }, 5006 uccode=0x1CF, 5007 unicodeslot=0x1D0, 5008 }, 5009 { 5010 category="lu", 5011 contextname="Ocaron", 5012 description="LATIN CAPITAL LETTER O WITH CARON", 5013 direction="l", 5014 lccode=0x1D2, 5015 linebreak="al", 5016 shcode=0x4F, 5017 specials={ "char", 0x4F, 0x30C }, 5018 unicodeslot=0x1D1, 5019 }, 5020 { 5021 category="ll", 5022 cjkwd="a", 5023 contextname="ocaron", 5024 description="LATIN SMALL LETTER O WITH CARON", 5025 direction="l", 5026 linebreak="al", 5027 shcode=0x6F, 5028 specials={ "char", 0x6F, 0x30C }, 5029 uccode=0x1D1, 5030 unicodeslot=0x1D2, 5031 }, 5032 { 5033 category="lu", 5034 contextname="Ucaron", 5035 description="LATIN CAPITAL LETTER U WITH CARON", 5036 direction="l", 5037 lccode=0x1D4, 5038 linebreak="al", 5039 shcode=0x55, 5040 specials={ "char", 0x55, 0x30C }, 5041 unicodeslot=0x1D3, 5042 }, 5043 { 5044 category="ll", 5045 cjkwd="a", 5046 contextname="ucaron", 5047 description="LATIN SMALL LETTER U WITH CARON", 5048 direction="l", 5049 linebreak="al", 5050 shcode=0x75, 5051 specials={ "char", 0x75, 0x30C }, 5052 uccode=0x1D3, 5053 unicodeslot=0x1D4, 5054 }, 5055 { 5056 category="lu", 5057 contextname="Udiaeresismacron", 5058 description="LATIN CAPITAL LETTER U WITH DIAERESIS AND MACRON", 5059 direction="l", 5060 lccode=0x1D6, 5061 linebreak="al", 5062 shcode=0x55, 5063 specials={ "char", 0xDC, 0x304 }, 5064 unicodeslot=0x1D5, 5065 }, 5066 { 5067 category="ll", 5068 cjkwd="a", 5069 contextname="udiaeresismacron", 5070 description="LATIN SMALL LETTER U WITH DIAERESIS AND MACRON", 5071 direction="l", 5072 linebreak="al", 5073 shcode=0x75, 5074 specials={ "char", 0xFC, 0x304 }, 5075 uccode=0x1D5, 5076 unicodeslot=0x1D6, 5077 }, 5078 { 5079 category="lu", 5080 contextname="Udiaeresisacute", 5081 description="LATIN CAPITAL LETTER U WITH DIAERESIS AND ACUTE", 5082 direction="l", 5083 lccode=0x1D8, 5084 linebreak="al", 5085 shcode=0x55, 5086 specials={ "char", 0xDC, 0x301 }, 5087 unicodeslot=0x1D7, 5088 }, 5089 { 5090 category="ll", 5091 cjkwd="a", 5092 contextname="udiaeresisacute", 5093 description="LATIN SMALL LETTER U WITH DIAERESIS AND ACUTE", 5094 direction="l", 5095 linebreak="al", 5096 shcode=0x75, 5097 specials={ "char", 0xFC, 0x301 }, 5098 uccode=0x1D7, 5099 unicodeslot=0x1D8, 5100 }, 5101 { 5102 category="lu", 5103 contextname="Udiaeresiscaron", 5104 description="LATIN CAPITAL LETTER U WITH DIAERESIS AND CARON", 5105 direction="l", 5106 lccode=0x1DA, 5107 linebreak="al", 5108 shcode=0x55, 5109 specials={ "char", 0xDC, 0x30C }, 5110 unicodeslot=0x1D9, 5111 }, 5112 { 5113 category="ll", 5114 cjkwd="a", 5115 contextname="udiaeresiscaron", 5116 description="LATIN SMALL LETTER U WITH DIAERESIS AND CARON", 5117 direction="l", 5118 linebreak="al", 5119 shcode=0x75, 5120 specials={ "char", 0xFC, 0x30C }, 5121 uccode=0x1D9, 5122 unicodeslot=0x1DA, 5123 }, 5124 { 5125 category="lu", 5126 contextname="Udiaeresisgrave", 5127 description="LATIN CAPITAL LETTER U WITH DIAERESIS AND GRAVE", 5128 direction="l", 5129 lccode=0x1DC, 5130 linebreak="al", 5131 shcode=0x55, 5132 specials={ "char", 0xDC, 0x300 }, 5133 unicodeslot=0x1DB, 5134 }, 5135 { 5136 category="ll", 5137 cjkwd="a", 5138 contextname="udiaeresisgrave", 5139 description="LATIN SMALL LETTER U WITH DIAERESIS AND GRAVE", 5140 direction="l", 5141 linebreak="al", 5142 shcode=0x75, 5143 specials={ "char", 0xFC, 0x300 }, 5144 uccode=0x1DB, 5145 unicodeslot=0x1DC, 5146 }, 5147 { 5148 category="ll", 5149 description="LATIN SMALL LETTER TURNED E", 5150 direction="l", 5151 linebreak="al", 5152 uccode=0x18E, 5153 unicodeslot=0x1DD, 5154 }, 5155 { 5156 category="lu", 5157 contextname="Adiaeresismacron", 5158 description="LATIN CAPITAL LETTER A WITH DIAERESIS AND MACRON", 5159 direction="l", 5160 lccode=0x1DF, 5161 linebreak="al", 5162 shcode=0x41, 5163 specials={ "char", 0xC4, 0x304 }, 5164 unicodeslot=0x1DE, 5165 }, 5166 { 5167 category="ll", 5168 contextname="adiaeresismacron", 5169 description="LATIN SMALL LETTER A WITH DIAERESIS AND MACRON", 5170 direction="l", 5171 linebreak="al", 5172 shcode=0x61, 5173 specials={ "char", 0xE4, 0x304 }, 5174 uccode=0x1DE, 5175 unicodeslot=0x1DF, 5176 }, 5177 { 5178 category="lu", 5179 contextname="Adotaccentmacron", 5180 description="LATIN CAPITAL LETTER A WITH DOT ABOVE AND MACRON", 5181 direction="l", 5182 lccode=0x1E1, 5183 linebreak="al", 5184 shcode=0x41, 5185 specials={ "char", 0x226, 0x304 }, 5186 unicodeslot=0x1E0, 5187 }, 5188 { 5189 category="ll", 5190 contextname="adotaccentmacron", 5191 description="LATIN SMALL LETTER A WITH DOT ABOVE AND MACRON", 5192 direction="l", 5193 linebreak="al", 5194 shcode=0x61, 5195 specials={ "char", 0x227, 0x304 }, 5196 uccode=0x1E0, 5197 unicodeslot=0x1E1, 5198 }, 5199 { 5200 category="lu", 5201 contextname="AEmacron", 5202 description="LATIN CAPITAL LETTER AE WITH MACRON", 5203 direction="l", 5204 lccode=0x1E3, 5205 linebreak="al", 5206 shcode=0xC6, 5207 specials={ "char", 0xC6, 0x304 }, 5208 unicodeslot=0x1E2, 5209 }, 5210 { 5211 category="ll", 5212 contextname="aemacron", 5213 description="LATIN SMALL LETTER AE WITH MACRON", 5214 direction="l", 5215 linebreak="al", 5216 shcode=0xE6, 5217 specials={ "char", 0xE6, 0x304 }, 5218 uccode=0x1E2, 5219 unicodeslot=0x1E3, 5220 }, 5221 { 5222 category="lu", 5223 contextname="Gstroke", 5224 description="LATIN CAPITAL LETTER G WITH STROKE", 5225 direction="l", 5226 lccode=0x1E5, 5227 linebreak="al", 5228 shcode=0x47, 5229 specials={ "with", 0x47, 0x2F }, 5230 unicodeslot=0x1E4, 5231 }, 5232 { 5233 category="ll", 5234 contextname="gstroke", 5235 description="LATIN SMALL LETTER G WITH STROKE", 5236 direction="l", 5237 linebreak="al", 5238 shcode=0x67, 5239 specials={ "with", 0x67, 0x2F }, 5240 uccode=0x1E4, 5241 unicodeslot=0x1E5, 5242 }, 5243 { 5244 category="lu", 5245 contextname="Gcaron", 5246 description="LATIN CAPITAL LETTER G WITH CARON", 5247 direction="l", 5248 lccode=0x1E7, 5249 linebreak="al", 5250 shcode=0x47, 5251 specials={ "char", 0x47, 0x30C }, 5252 unicodeslot=0x1E6, 5253 }, 5254 { 5255 category="ll", 5256 contextname="gcaron", 5257 description="LATIN SMALL LETTER G WITH CARON", 5258 direction="l", 5259 linebreak="al", 5260 shcode=0x67, 5261 specials={ "char", 0x67, 0x30C }, 5262 uccode=0x1E6, 5263 unicodeslot=0x1E7, 5264 }, 5265 { 5266 category="lu", 5267 contextname="Kcaron", 5268 description="LATIN CAPITAL LETTER K WITH CARON", 5269 direction="l", 5270 lccode=0x1E9, 5271 linebreak="al", 5272 shcode=0x4B, 5273 specials={ "char", 0x4B, 0x30C }, 5274 unicodeslot=0x1E8, 5275 }, 5276 { 5277 category="ll", 5278 contextname="kcaron", 5279 description="LATIN SMALL LETTER K WITH CARON", 5280 direction="l", 5281 linebreak="al", 5282 shcode=0x6B, 5283 specials={ "char", 0x6B, 0x30C }, 5284 uccode=0x1E8, 5285 unicodeslot=0x1E9, 5286 }, 5287 { 5288 category="lu", 5289 contextname="Oogonek", 5290 description="LATIN CAPITAL LETTER O WITH OGONEK", 5291 direction="l", 5292 lccode=0x1EB, 5293 linebreak="al", 5294 shcode=0x4F, 5295 specials={ "char", 0x4F, 0x328 }, 5296 unicodeslot=0x1EA, 5297 }, 5298 { 5299 category="ll", 5300 contextname="oogonek", 5301 description="LATIN SMALL LETTER O WITH OGONEK", 5302 direction="l", 5303 linebreak="al", 5304 shcode=0x6F, 5305 specials={ "char", 0x6F, 0x328 }, 5306 uccode=0x1EA, 5307 unicodeslot=0x1EB, 5308 }, 5309 { 5310 category="lu", 5311 contextname="Oogonekmacron", 5312 description="LATIN CAPITAL LETTER O WITH OGONEK AND MACRON", 5313 direction="l", 5314 lccode=0x1ED, 5315 linebreak="al", 5316 shcode=0x4F, 5317 specials={ "char", 0x1EA, 0x304 }, 5318 unicodeslot=0x1EC, 5319 }, 5320 { 5321 category="ll", 5322 contextname="oogonekmacron", 5323 description="LATIN SMALL LETTER O WITH OGONEK AND MACRON", 5324 direction="l", 5325 linebreak="al", 5326 shcode=0x6F, 5327 specials={ "char", 0x1EB, 0x304 }, 5328 uccode=0x1EC, 5329 unicodeslot=0x1ED, 5330 }, 5331 { 5332 category="lu", 5333 description="LATIN CAPITAL LETTER EZH WITH CARON", 5334 direction="l", 5335 lccode=0x1EF, 5336 linebreak="al", 5337 shcode=0x1B7, 5338 specials={ "char", 0x1B7, 0x30C }, 5339 unicodeslot=0x1EE, 5340 }, 5341 { 5342 category="ll", 5343 description="LATIN SMALL LETTER EZH WITH CARON", 5344 direction="l", 5345 linebreak="al", 5346 shcode=0x292, 5347 specials={ "char", 0x292, 0x30C }, 5348 uccode=0x1EE, 5349 unicodeslot=0x1EF, 5350 }, 5351 { 5352 category="ll", 5353 contextname="jcaron", 5354 description="LATIN SMALL LETTER J WITH CARON", 5355 direction="l", 5356 linebreak="al", 5357 shcode=0x6A, 5358 specials={ "char", 0x6A, 0x30C }, 5359 uccode={ 0x6A, 0x30C }, 5360 unicodeslot=0x1F0, 5361 }, 5362 { 5363 category="lu", 5364 contextname="DZligature", 5365 description="LATIN CAPITAL LETTER DZ", 5366 direction="l", 5367 lccode=0x1F3, 5368 linebreak="al", 5369 specials={ "compat", 0x44, 0x5A }, 5370 uccode=0x1F2, 5371 unicodeslot=0x1F1, 5372 }, 5373 { 5374 category="lt", 5375 contextname="Dzligature", 5376 description="LATIN CAPITAL LETTER D WITH SMALL LETTER Z", 5377 direction="l", 5378 lccode=0x1F3, 5379 linebreak="al", 5380 shcode=0x44, 5381 specials={ "compat", 0x44, 0x7A }, 5382 uccode=0x1F1, 5383 unicodeslot=0x1F2, 5384 }, 5385 { 5386 category="ll", 5387 contextname="dzligature", 5388 description="LATIN SMALL LETTER DZ", 5389 direction="l", 5390 linebreak="al", 5391 specials={ "compat", 0x64, 0x7A }, 5392 uccode=0x1F1, 5393 unicodeslot=0x1F3, 5394 }, 5395 { 5396 category="lu", 5397 contextname="Gacute", 5398 description="LATIN CAPITAL LETTER G WITH ACUTE", 5399 direction="l", 5400 lccode=0x1F5, 5401 linebreak="al", 5402 shcode=0x47, 5403 specials={ "char", 0x47, 0x301 }, 5404 unicodeslot=0x1F4, 5405 }, 5406 { 5407 category="ll", 5408 contextname="gacute", 5409 description="LATIN SMALL LETTER G WITH ACUTE", 5410 direction="l", 5411 linebreak="al", 5412 shcode=0x67, 5413 specials={ "char", 0x67, 0x301 }, 5414 uccode=0x1F4, 5415 unicodeslot=0x1F5, 5416 }, 5417 { 5418 category="lu", 5419 description="LATIN CAPITAL LETTER HWAIR", 5420 direction="l", 5421 lccode=0x195, 5422 linebreak="al", 5423 unicodeslot=0x1F6, 5424 }, 5425 { 5426 category="lu", 5427 description="LATIN CAPITAL LETTER WYNN", 5428 direction="l", 5429 lccode=0x1BF, 5430 linebreak="al", 5431 unicodeslot=0x1F7, 5432 }, 5433 { 5434 category="lu", 5435 contextname="Ngrave", 5436 description="LATIN CAPITAL LETTER N WITH GRAVE", 5437 direction="l", 5438 lccode=0x1F9, 5439 linebreak="al", 5440 shcode=0x4E, 5441 specials={ "char", 0x4E, 0x300 }, 5442 unicodeslot=0x1F8, 5443 }, 5444 { 5445 category="ll", 5446 contextname="ngrave", 5447 description="LATIN SMALL LETTER N WITH GRAVE", 5448 direction="l", 5449 linebreak="al", 5450 shcode=0x6E, 5451 specials={ "char", 0x6E, 0x300 }, 5452 uccode=0x1F8, 5453 unicodeslot=0x1F9, 5454 }, 5455 { 5456 category="lu", 5457 contextname="Aringacute", 5458 description="LATIN CAPITAL LETTER A WITH RING ABOVE AND ACUTE", 5459 direction="l", 5460 lccode=0x1FB, 5461 linebreak="al", 5462 shcode=0x41, 5463 specials={ "char", 0xC5, 0x301 }, 5464 unicodeslot=0x1FA, 5465 }, 5466 { 5467 category="ll", 5468 contextname="aringacute", 5469 description="LATIN SMALL LETTER A WITH RING ABOVE AND ACUTE", 5470 direction="l", 5471 linebreak="al", 5472 shcode=0x61, 5473 specials={ "char", 0xE5, 0x301 }, 5474 uccode=0x1FA, 5475 unicodeslot=0x1FB, 5476 }, 5477 { 5478 category="lu", 5479 contextname="AEacute", 5480 description="LATIN CAPITAL LETTER AE WITH ACUTE", 5481 direction="l", 5482 lccode=0x1FD, 5483 linebreak="al", 5484 shcode=0xC6, 5485 specials={ "char", 0xC6, 0x301 }, 5486 unicodeslot=0x1FC, 5487 }, 5488 { 5489 category="ll", 5490 contextname="aeacute", 5491 description="LATIN SMALL LETTER AE WITH ACUTE", 5492 direction="l", 5493 linebreak="al", 5494 shcode=0xE6, 5495 specials={ "char", 0xE6, 0x301 }, 5496 uccode=0x1FC, 5497 unicodeslot=0x1FD, 5498 }, 5499 { 5500 category="lu", 5501 contextname="Ostrokeacute", 5502 description="LATIN CAPITAL LETTER O WITH STROKE AND ACUTE", 5503 direction="l", 5504 lccode=0x1FF, 5505 linebreak="al", 5506 shcode=0x4F, 5507 specials={ "char", 0xD8, 0x301 }, 5508 unicodeslot=0x1FE, 5509 }, 5510 { 5511 category="ll", 5512 contextname="ostrokeacute", 5513 description="LATIN SMALL LETTER O WITH STROKE AND ACUTE", 5514 direction="l", 5515 linebreak="al", 5516 shcode=0x6F, 5517 specials={ "char", 0xF8, 0x301 }, 5518 uccode=0x1FE, 5519 unicodeslot=0x1FF, 5520 }, 5521 { 5522 category="lu", 5523 contextname="Adoublegrave", 5524 description="LATIN CAPITAL LETTER A WITH DOUBLE GRAVE", 5525 direction="l", 5526 lccode=0x201, 5527 linebreak="al", 5528 shcode=0x41, 5529 specials={ "char", 0x41, 0x30F }, 5530 unicodeslot=0x200, 5531 }, 5532 { 5533 category="ll", 5534 contextname="adoublegrave", 5535 description="LATIN SMALL LETTER A WITH DOUBLE GRAVE", 5536 direction="l", 5537 linebreak="al", 5538 shcode=0x61, 5539 specials={ "char", 0x61, 0x30F }, 5540 uccode=0x200, 5541 unicodeslot=0x201, 5542 }, 5543 { 5544 category="lu", 5545 contextname="Ainvertedbreve", 5546 description="LATIN CAPITAL LETTER A WITH INVERTED BREVE", 5547 direction="l", 5548 lccode=0x203, 5549 linebreak="al", 5550 shcode=0x41, 5551 specials={ "char", 0x41, 0x311 }, 5552 unicodeslot=0x202, 5553 }, 5554 { 5555 category="ll", 5556 contextname="ainvertedbreve", 5557 description="LATIN SMALL LETTER A WITH INVERTED BREVE", 5558 direction="l", 5559 linebreak="al", 5560 shcode=0x61, 5561 specials={ "char", 0x61, 0x311 }, 5562 uccode=0x202, 5563 unicodeslot=0x203, 5564 }, 5565 { 5566 category="lu", 5567 contextname="Edoublegrave", 5568 description="LATIN CAPITAL LETTER E WITH DOUBLE GRAVE", 5569 direction="l", 5570 lccode=0x205, 5571 linebreak="al", 5572 shcode=0x45, 5573 specials={ "char", 0x45, 0x30F }, 5574 unicodeslot=0x204, 5575 }, 5576 { 5577 category="ll", 5578 contextname="edoublegrave", 5579 description="LATIN SMALL LETTER E WITH DOUBLE GRAVE", 5580 direction="l", 5581 linebreak="al", 5582 shcode=0x65, 5583 specials={ "char", 0x65, 0x30F }, 5584 uccode=0x204, 5585 unicodeslot=0x205, 5586 }, 5587 { 5588 category="lu", 5589 contextname="Einvertedbreve", 5590 description="LATIN CAPITAL LETTER E WITH INVERTED BREVE", 5591 direction="l", 5592 lccode=0x207, 5593 linebreak="al", 5594 shcode=0x45, 5595 specials={ "char", 0x45, 0x311 }, 5596 unicodeslot=0x206, 5597 }, 5598 { 5599 category="ll", 5600 contextname="einvertedbreve", 5601 description="LATIN SMALL LETTER E WITH INVERTED BREVE", 5602 direction="l", 5603 linebreak="al", 5604 shcode=0x65, 5605 specials={ "char", 0x65, 0x311 }, 5606 uccode=0x206, 5607 unicodeslot=0x207, 5608 }, 5609 { 5610 category="lu", 5611 contextname="Idoublegrave", 5612 description="LATIN CAPITAL LETTER I WITH DOUBLE GRAVE", 5613 direction="l", 5614 lccode=0x209, 5615 linebreak="al", 5616 shcode=0x49, 5617 specials={ "char", 0x49, 0x30F }, 5618 unicodeslot=0x208, 5619 }, 5620 { 5621 category="ll", 5622 contextname="idoublegrave", 5623 description="LATIN SMALL LETTER I WITH DOUBLE GRAVE", 5624 direction="l", 5625 linebreak="al", 5626 shcode=0x69, 5627 specials={ "char", 0x69, 0x30F }, 5628 uccode=0x208, 5629 unicodeslot=0x209, 5630 }, 5631 { 5632 category="lu", 5633 contextname="Iinvertedbreve", 5634 description="LATIN CAPITAL LETTER I WITH INVERTED BREVE", 5635 direction="l", 5636 lccode=0x20B, 5637 linebreak="al", 5638 shcode=0x49, 5639 specials={ "char", 0x49, 0x311 }, 5640 unicodeslot=0x20A, 5641 }, 5642 { 5643 category="ll", 5644 contextname="iinvertedbreve", 5645 description="LATIN SMALL LETTER I WITH INVERTED BREVE", 5646 direction="l", 5647 linebreak="al", 5648 shcode=0x69, 5649 specials={ "char", 0x69, 0x311 }, 5650 uccode=0x20A, 5651 unicodeslot=0x20B, 5652 }, 5653 { 5654 category="lu", 5655 contextname="Odoublegrave", 5656 description="LATIN CAPITAL LETTER O WITH DOUBLE GRAVE", 5657 direction="l", 5658 lccode=0x20D, 5659 linebreak="al", 5660 shcode=0x4F, 5661 specials={ "char", 0x4F, 0x30F }, 5662 unicodeslot=0x20C, 5663 }, 5664 { 5665 category="ll", 5666 contextname="odoublegrave", 5667 description="LATIN SMALL LETTER O WITH DOUBLE GRAVE", 5668 direction="l", 5669 linebreak="al", 5670 shcode=0x6F, 5671 specials={ "char", 0x6F, 0x30F }, 5672 uccode=0x20C, 5673 unicodeslot=0x20D, 5674 }, 5675 { 5676 category="lu", 5677 contextname="Oinvertedbreve", 5678 description="LATIN CAPITAL LETTER O WITH INVERTED BREVE", 5679 direction="l", 5680 lccode=0x20F, 5681 linebreak="al", 5682 shcode=0x4F, 5683 specials={ "char", 0x4F, 0x311 }, 5684 unicodeslot=0x20E, 5685 }, 5686 { 5687 category="ll", 5688 contextname="oinvertedbreve", 5689 description="LATIN SMALL LETTER O WITH INVERTED BREVE", 5690 direction="l", 5691 linebreak="al", 5692 shcode=0x6F, 5693 specials={ "char", 0x6F, 0x311 }, 5694 uccode=0x20E, 5695 unicodeslot=0x20F, 5696 }, 5697 { 5698 category="lu", 5699 contextname="Rdoublegrave", 5700 description="LATIN CAPITAL LETTER R WITH DOUBLE GRAVE", 5701 direction="l", 5702 lccode=0x211, 5703 linebreak="al", 5704 shcode=0x52, 5705 specials={ "char", 0x52, 0x30F }, 5706 unicodeslot=0x210, 5707 }, 5708 { 5709 category="ll", 5710 contextname="rdoublegrave", 5711 description="LATIN SMALL LETTER R WITH DOUBLE GRAVE", 5712 direction="l", 5713 linebreak="al", 5714 shcode=0x72, 5715 specials={ "char", 0x72, 0x30F }, 5716 uccode=0x210, 5717 unicodeslot=0x211, 5718 }, 5719 { 5720 category="lu", 5721 contextname="Rinvertedbreve", 5722 description="LATIN CAPITAL LETTER R WITH INVERTED BREVE", 5723 direction="l", 5724 lccode=0x213, 5725 linebreak="al", 5726 shcode=0x52, 5727 specials={ "char", 0x52, 0x311 }, 5728 unicodeslot=0x212, 5729 }, 5730 { 5731 category="ll", 5732 contextname="rinvertedbreve", 5733 description="LATIN SMALL LETTER R WITH INVERTED BREVE", 5734 direction="l", 5735 linebreak="al", 5736 shcode=0x72, 5737 specials={ "char", 0x72, 0x311 }, 5738 uccode=0x212, 5739 unicodeslot=0x213, 5740 }, 5741 { 5742 category="lu", 5743 contextname="Udoublegrave", 5744 description="LATIN CAPITAL LETTER U WITH DOUBLE GRAVE", 5745 direction="l", 5746 lccode=0x215, 5747 linebreak="al", 5748 shcode=0x55, 5749 specials={ "char", 0x55, 0x30F }, 5750 unicodeslot=0x214, 5751 }, 5752 { 5753 category="ll", 5754 contextname="udoublegrave", 5755 description="LATIN SMALL LETTER U WITH DOUBLE GRAVE", 5756 direction="l", 5757 linebreak="al", 5758 shcode=0x75, 5759 specials={ "char", 0x75, 0x30F }, 5760 uccode=0x214, 5761 unicodeslot=0x215, 5762 }, 5763 { 5764 category="lu", 5765 contextname="Uinvertedbreve", 5766 description="LATIN CAPITAL LETTER U WITH INVERTED BREVE", 5767 direction="l", 5768 lccode=0x217, 5769 linebreak="al", 5770 shcode=0x55, 5771 specials={ "char", 0x55, 0x311 }, 5772 unicodeslot=0x216, 5773 }, 5774 { 5775 category="ll", 5776 contextname="uinvertedbreve", 5777 description="LATIN SMALL LETTER U WITH INVERTED BREVE", 5778 direction="l", 5779 linebreak="al", 5780 shcode=0x75, 5781 specials={ "char", 0x75, 0x311 }, 5782 uccode=0x216, 5783 unicodeslot=0x217, 5784 }, 5785 { 5786 category="lu", 5787 contextname="Scommaaccent", 5788 description="LATIN CAPITAL LETTER S WITH COMMA BELOW", 5789 direction="l", 5790 lccode=0x219, 5791 linebreak="al", 5792 shcode=0x53, 5793 specials={ "char", 0x53, 0x326 }, 5794 unicodeslot=0x218, 5795 }, 5796 { 5797 category="ll", 5798 contextname="scommaaccent", 5799 description="LATIN SMALL LETTER S WITH COMMA BELOW", 5800 direction="l", 5801 linebreak="al", 5802 shcode=0x73, 5803 specials={ "char", 0x73, 0x326 }, 5804 uccode=0x218, 5805 unicodeslot=0x219, 5806 }, 5807 { 5808 category="lu", 5809 contextname="Tcommaaccent", 5810 description="LATIN CAPITAL LETTER T WITH COMMA BELOW", 5811 direction="l", 5812 lccode=0x21B, 5813 linebreak="al", 5814 shcode=0x54, 5815 specials={ "char", 0x54, 0x326 }, 5816 unicodeslot=0x21A, 5817 }, 5818 { 5819 category="ll", 5820 contextname="tcommaaccent", 5821 description="LATIN SMALL LETTER T WITH COMMA BELOW", 5822 direction="l", 5823 linebreak="al", 5824 shcode=0x74, 5825 specials={ "char", 0x74, 0x326 }, 5826 uccode=0x21A, 5827 unicodeslot=0x21B, 5828 }, 5829 { 5830 category="lu", 5831 description="LATIN CAPITAL LETTER YOGH", 5832 direction="l", 5833 lccode=0x21D, 5834 linebreak="al", 5835 unicodeslot=0x21C, 5836 }, 5837 { 5838 category="ll", 5839 description="LATIN SMALL LETTER YOGH", 5840 direction="l", 5841 linebreak="al", 5842 uccode=0x21C, 5843 unicodeslot=0x21D, 5844 }, 5845 { 5846 category="lu", 5847 contextname="Hcaron", 5848 description="LATIN CAPITAL LETTER H WITH CARON", 5849 direction="l", 5850 lccode=0x21F, 5851 linebreak="al", 5852 shcode=0x48, 5853 specials={ "char", 0x48, 0x30C }, 5854 unicodeslot=0x21E, 5855 }, 5856 { 5857 category="ll", 5858 contextname="hcaron", 5859 description="LATIN SMALL LETTER H WITH CARON", 5860 direction="l", 5861 linebreak="al", 5862 shcode=0x68, 5863 specials={ "char", 0x68, 0x30C }, 5864 uccode=0x21E, 5865 unicodeslot=0x21F, 5866 }, 5867 { 5868 category="lu", 5869 description="LATIN CAPITAL LETTER N WITH LONG RIGHT LEG", 5870 direction="l", 5871 lccode=0x19E, 5872 linebreak="al", 5873 shcode=0x4E, 5874 unicodeslot=0x220, 5875 }, 5876 { 5877 category="ll", 5878 contextname="dcurl", 5879 description="LATIN SMALL LETTER D WITH CURL", 5880 direction="l", 5881 linebreak="al", 5882 shcode=0x64, 5883 unicodeslot=0x221, 5884 }, 5885 { 5886 category="lu", 5887 description="LATIN CAPITAL LETTER OU", 5888 direction="l", 5889 lccode=0x223, 5890 linebreak="al", 5891 unicodeslot=0x222, 5892 }, 5893 { 5894 category="ll", 5895 description="LATIN SMALL LETTER OU", 5896 direction="l", 5897 linebreak="al", 5898 uccode=0x222, 5899 unicodeslot=0x223, 5900 }, 5901 { 5902 category="lu", 5903 contextname="Zhook", 5904 description="LATIN CAPITAL LETTER Z WITH HOOK", 5905 direction="l", 5906 lccode=0x225, 5907 linebreak="al", 5908 shcode=0x5A, 5909 specials={ "with", 0x5A, 0x1FA9D }, 5910 unicodeslot=0x224, 5911 }, 5912 { 5913 category="ll", 5914 contextname="zhook", 5915 description="LATIN SMALL LETTER Z WITH HOOK", 5916 direction="l", 5917 linebreak="al", 5918 shcode=0x7A, 5919 specials={ "with", 0x7A, 0x1FA9D }, 5920 uccode=0x224, 5921 unicodeslot=0x225, 5922 }, 5923 { 5924 category="lu", 5925 contextname="Adotaccent", 5926 description="LATIN CAPITAL LETTER A WITH DOT ABOVE", 5927 direction="l", 5928 lccode=0x227, 5929 linebreak="al", 5930 shcode=0x41, 5931 specials={ "char", 0x41, 0x307 }, 5932 unicodeslot=0x226, 5933 }, 5934 { 5935 category="ll", 5936 contextname="adotaccent", 5937 description="LATIN SMALL LETTER A WITH DOT ABOVE", 5938 direction="l", 5939 linebreak="al", 5940 shcode=0x61, 5941 specials={ "char", 0x61, 0x307 }, 5942 uccode=0x226, 5943 unicodeslot=0x227, 5944 }, 5945 { 5946 category="lu", 5947 contextname="Ecedilla", 5948 description="LATIN CAPITAL LETTER E WITH CEDILLA", 5949 direction="l", 5950 lccode=0x229, 5951 linebreak="al", 5952 shcode=0x45, 5953 specials={ "char", 0x45, 0x327 }, 5954 unicodeslot=0x228, 5955 }, 5956 { 5957 category="ll", 5958 contextname="ecedilla", 5959 description="LATIN SMALL LETTER E WITH CEDILLA", 5960 direction="l", 5961 linebreak="al", 5962 shcode=0x65, 5963 specials={ "char", 0x65, 0x327 }, 5964 uccode=0x228, 5965 unicodeslot=0x229, 5966 }, 5967 { 5968 category="lu", 5969 contextname="Odiaeresismacron", 5970 description="LATIN CAPITAL LETTER O WITH DIAERESIS AND MACRON", 5971 direction="l", 5972 lccode=0x22B, 5973 linebreak="al", 5974 shcode=0x4F, 5975 specials={ "char", 0xD6, 0x304 }, 5976 unicodeslot=0x22A, 5977 }, 5978 { 5979 category="ll", 5980 contextname="odiaeresismacron", 5981 description="LATIN SMALL LETTER O WITH DIAERESIS AND MACRON", 5982 direction="l", 5983 linebreak="al", 5984 shcode=0x6F, 5985 specials={ "char", 0xF6, 0x304 }, 5986 uccode=0x22A, 5987 unicodeslot=0x22B, 5988 }, 5989 { 5990 category="lu", 5991 contextname="Otildemacron", 5992 description="LATIN CAPITAL LETTER O WITH TILDE AND MACRON", 5993 direction="l", 5994 lccode=0x22D, 5995 linebreak="al", 5996 shcode=0x4F, 5997 specials={ "char", 0xD5, 0x304 }, 5998 unicodeslot=0x22C, 5999 }, 6000 { 6001 category="ll", 6002 contextname="otildemacron", 6003 description="LATIN SMALL LETTER O WITH TILDE AND MACRON", 6004 direction="l", 6005 linebreak="al", 6006 shcode=0x6F, 6007 specials={ "char", 0xF5, 0x304 }, 6008 uccode=0x22C, 6009 unicodeslot=0x22D, 6010 }, 6011 { 6012 category="lu", 6013 contextname="Odotaccent", 6014 description="LATIN CAPITAL LETTER O WITH DOT ABOVE", 6015 direction="l", 6016 lccode=0x22F, 6017 linebreak="al", 6018 shcode=0x4F, 6019 specials={ "char", 0x4F, 0x307 }, 6020 unicodeslot=0x22E, 6021 }, 6022 { 6023 category="ll", 6024 contextname="odotaccent", 6025 description="LATIN SMALL LETTER O WITH DOT ABOVE", 6026 direction="l", 6027 linebreak="al", 6028 shcode=0x6F, 6029 specials={ "char", 0x6F, 0x307 }, 6030 uccode=0x22E, 6031 unicodeslot=0x22F, 6032 }, 6033 { 6034 category="lu", 6035 contextname="Odotaccentmacron", 6036 description="LATIN CAPITAL LETTER O WITH DOT ABOVE AND MACRON", 6037 direction="l", 6038 lccode=0x231, 6039 linebreak="al", 6040 shcode=0x4F, 6041 specials={ "char", 0x22E, 0x304 }, 6042 unicodeslot=0x230, 6043 }, 6044 { 6045 category="ll", 6046 contextname="odotaccentmacron", 6047 description="LATIN SMALL LETTER O WITH DOT ABOVE AND MACRON", 6048 direction="l", 6049 linebreak="al", 6050 shcode=0x6F, 6051 specials={ "char", 0x22F, 0x304 }, 6052 uccode=0x230, 6053 unicodeslot=0x231, 6054 }, 6055 { 6056 category="lu", 6057 contextname="Ymacron", 6058 description="LATIN CAPITAL LETTER Y WITH MACRON", 6059 direction="l", 6060 lccode=0x233, 6061 linebreak="al", 6062 shcode=0x59, 6063 specials={ "char", 0x59, 0x304 }, 6064 unicodeslot=0x232, 6065 }, 6066 { 6067 category="ll", 6068 contextname="ymacron", 6069 description="LATIN SMALL LETTER Y WITH MACRON", 6070 direction="l", 6071 linebreak="al", 6072 shcode=0x79, 6073 specials={ "char", 0x79, 0x304 }, 6074 uccode=0x232, 6075 unicodeslot=0x233, 6076 }, 6077 { 6078 category="ll", 6079 contextname="lcurl", 6080 description="LATIN SMALL LETTER L WITH CURL", 6081 direction="l", 6082 linebreak="al", 6083 shcode=0x6C, 6084 unicodeslot=0x234, 6085 }, 6086 { 6087 category="ll", 6088 contextname="ncurl", 6089 description="LATIN SMALL LETTER N WITH CURL", 6090 direction="l", 6091 linebreak="al", 6092 shcode=0x6E, 6093 unicodeslot=0x235, 6094 }, 6095 { 6096 category="ll", 6097 contextname="tcurl", 6098 description="LATIN SMALL LETTER T WITH CURL", 6099 direction="l", 6100 linebreak="al", 6101 shcode=0x74, 6102 unicodeslot=0x236, 6103 }, 6104 { 6105 category="ll", 6106 contextname="dotlessj", 6107 description="LATIN SMALL LETTER DOTLESS J", 6108 direction="l", 6109 linebreak="al", 6110 unicodeslot=0x237, 6111 }, 6112 { 6113 category="ll", 6114 description="LATIN SMALL LETTER DB DIGRAPH", 6115 direction="l", 6116 linebreak="al", 6117 unicodeslot=0x238, 6118 }, 6119 { 6120 category="ll", 6121 description="LATIN SMALL LETTER QP DIGRAPH", 6122 direction="l", 6123 linebreak="al", 6124 unicodeslot=0x239, 6125 }, 6126 { 6127 category="lu", 6128 contextname="Astroke", 6129 description="LATIN CAPITAL LETTER A WITH STROKE", 6130 direction="l", 6131 lccode=0x2C65, 6132 linebreak="al", 6133 shcode=0x41, 6134 specials={ "with", 0x41, 0x2F }, 6135 unicodeslot=0x23A, 6136 }, 6137 { 6138 category="lu", 6139 contextname="Cstroke", 6140 description="LATIN CAPITAL LETTER C WITH STROKE", 6141 direction="l", 6142 lccode=0x23C, 6143 linebreak="al", 6144 shcode=0x43, 6145 specials={ "with", 0x43, 0x2F }, 6146 unicodeslot=0x23B, 6147 }, 6148 { 6149 category="ll", 6150 contextname="cstroke", 6151 description="LATIN SMALL LETTER C WITH STROKE", 6152 direction="l", 6153 linebreak="al", 6154 shcode=0x63, 6155 specials={ "with", 0x63, 0x2F }, 6156 uccode=0x23B, 6157 unicodeslot=0x23C, 6158 }, 6159 { 6160 category="lu", 6161 contextname="Lbar", 6162 description="LATIN CAPITAL LETTER L WITH BAR", 6163 direction="l", 6164 lccode=0x19A, 6165 linebreak="al", 6166 shcode=0x4C, 6167 unicodeslot=0x23D, 6168 }, 6169 { 6170 category="lu", 6171 description="LATIN CAPITAL LETTER T WITH DIAGONAL STROKE", 6172 direction="l", 6173 lccode=0x2C66, 6174 linebreak="al", 6175 shcode=0x54, 6176 unicodeslot=0x23E, 6177 }, 6178 { 6179 category="ll", 6180 description="LATIN SMALL LETTER S WITH SWASH TAIL", 6181 direction="l", 6182 linebreak="al", 6183 shcode=0x73, 6184 unicodeslot=0x23F, 6185 }, 6186 { 6187 category="ll", 6188 description="LATIN SMALL LETTER Z WITH SWASH TAIL", 6189 direction="l", 6190 linebreak="al", 6191 shcode=0x7A, 6192 unicodeslot=0x240, 6193 }, 6194 { 6195 category="lu", 6196 description="LATIN CAPITAL LETTER GLOTTAL STOP", 6197 direction="l", 6198 lccode=0x242, 6199 linebreak="al", 6200 unicodeslot=0x241, 6201 }, 6202 { 6203 category="ll", 6204 description="LATIN SMALL LETTER GLOTTAL STOP", 6205 direction="l", 6206 linebreak="al", 6207 uccode=0x241, 6208 unicodeslot=0x242, 6209 }, 6210 { 6211 category="lu", 6212 description="LATIN CAPITAL LETTER B WITH STROKE", 6213 direction="l", 6214 lccode=0x180, 6215 linebreak="al", 6216 shcode=0x42, 6217 specials={ "with", 0x42, 0x2F }, 6218 unicodeslot=0x243, 6219 }, 6220 { 6221 category="lu", 6222 description="LATIN CAPITAL LETTER U BAR", 6223 direction="l", 6224 lccode=0x289, 6225 linebreak="al", 6226 unicodeslot=0x244, 6227 }, 6228 { 6229 category="lu", 6230 description="LATIN CAPITAL LETTER TURNED V", 6231 direction="l", 6232 lccode=0x28C, 6233 linebreak="al", 6234 unicodeslot=0x245, 6235 }, 6236 { 6237 category="lu", 6238 description="LATIN CAPITAL LETTER E WITH STROKE", 6239 direction="l", 6240 lccode=0x247, 6241 linebreak="al", 6242 shcode=0x45, 6243 specials={ "with", 0x45, 0x2F }, 6244 unicodeslot=0x246, 6245 }, 6246 { 6247 category="ll", 6248 description="LATIN SMALL LETTER E WITH STROKE", 6249 direction="l", 6250 linebreak="al", 6251 shcode=0x65, 6252 specials={ "with", 0x65, 0x2F }, 6253 uccode=0x246, 6254 unicodeslot=0x247, 6255 }, 6256 { 6257 category="lu", 6258 description="LATIN CAPITAL LETTER J WITH STROKE", 6259 direction="l", 6260 lccode=0x249, 6261 linebreak="al", 6262 shcode=0x4A, 6263 specials={ "with", 0x4A, 0x2F }, 6264 unicodeslot=0x248, 6265 }, 6266 { 6267 category="ll", 6268 description="LATIN SMALL LETTER J WITH STROKE", 6269 direction="l", 6270 linebreak="al", 6271 shcode=0x6A, 6272 specials={ "with", 0x6A, 0x2F }, 6273 uccode=0x248, 6274 unicodeslot=0x249, 6275 }, 6276 { 6277 category="lu", 6278 description="LATIN CAPITAL LETTER SMALL Q WITH HOOK TAIL", 6279 direction="l", 6280 lccode=0x24B, 6281 linebreak="al", 6282 unicodeslot=0x24A, 6283 }, 6284 { 6285 category="ll", 6286 description="LATIN SMALL LETTER Q WITH HOOK TAIL", 6287 direction="l", 6288 linebreak="al", 6289 shcode=0x71, 6290 uccode=0x24A, 6291 unicodeslot=0x24B, 6292 }, 6293 { 6294 category="lu", 6295 description="LATIN CAPITAL LETTER R WITH STROKE", 6296 direction="l", 6297 lccode=0x24D, 6298 linebreak="al", 6299 shcode=0x52, 6300 specials={ "with", 0x52, 0x2F }, 6301 unicodeslot=0x24C, 6302 }, 6303 { 6304 category="ll", 6305 description="LATIN SMALL LETTER R WITH STROKE", 6306 direction="l", 6307 linebreak="al", 6308 shcode=0x72, 6309 specials={ "with", 0x72, 0x2F }, 6310 uccode=0x24C, 6311 unicodeslot=0x24D, 6312 }, 6313 { 6314 category="lu", 6315 description="LATIN CAPITAL LETTER Y WITH STROKE", 6316 direction="l", 6317 lccode=0x24F, 6318 linebreak="al", 6319 shcode=0x59, 6320 specials={ "with", 0x59, 0x2F }, 6321 unicodeslot=0x24E, 6322 }, 6323 { 6324 category="ll", 6325 description="LATIN SMALL LETTER Y WITH STROKE", 6326 direction="l", 6327 linebreak="al", 6328 shcode=0x79, 6329 specials={ "with", 0x79, 0x2F }, 6330 uccode=0x24E, 6331 unicodeslot=0x24F, 6332 }, 6333 { 6334 category="ll", 6335 description="LATIN SMALL LETTER TURNED A", 6336 direction="l", 6337 linebreak="al", 6338 unicodeslot=0x250, 6339 }, 6340 { 6341 category="ll", 6342 cjkwd="a", 6343 description="LATIN SMALL LETTER ALPHA", 6344 direction="l", 6345 linebreak="al", 6346 synonyms={ "latin small letter script a" }, 6347 unicodeslot=0x251, 6348 }, 6349 { 6350 category="ll", 6351 description="LATIN SMALL LETTER TURNED ALPHA", 6352 direction="l", 6353 linebreak="al", 6354 unicodeslot=0x252, 6355 }, 6356 { 6357 category="ll", 6358 contextname="bhook", 6359 description="LATIN SMALL LETTER B WITH HOOK", 6360 direction="l", 6361 linebreak="al", 6362 shcode=0x62, 6363 specials={ "with", 0x62, 0x1FA9D }, 6364 uccode=0x181, 6365 unicodeslot=0x253, 6366 }, 6367 { 6368 category="ll", 6369 description="LATIN SMALL LETTER OPEN O", 6370 direction="l", 6371 linebreak="al", 6372 uccode=0x186, 6373 unicodeslot=0x254, 6374 }, 6375 { 6376 category="ll", 6377 contextname="ccurl", 6378 description="LATIN SMALL LETTER C WITH CURL", 6379 direction="l", 6380 linebreak="al", 6381 shcode=0x63, 6382 unicodeslot=0x255, 6383 }, 6384 { 6385 category="ll", 6386 contextname="dtail", 6387 description="LATIN SMALL LETTER D WITH TAIL", 6388 direction="l", 6389 linebreak="al", 6390 shcode=0x64, 6391 synonyms={ "latin small letter d retroflex hook" }, 6392 uccode=0x189, 6393 unicodeslot=0x256, 6394 }, 6395 { 6396 category="ll", 6397 contextname="dhook", 6398 description="LATIN SMALL LETTER D WITH HOOK", 6399 direction="l", 6400 linebreak="al", 6401 shcode=0x64, 6402 specials={ "with", 0x64, 0x1FA9D }, 6403 uccode=0x18A, 6404 unicodeslot=0x257, 6405 }, 6406 { 6407 category="ll", 6408 description="LATIN SMALL LETTER REVERSED E", 6409 direction="l", 6410 linebreak="al", 6411 unicodeslot=0x258, 6412 }, 6413 { 6414 category="ll", 6415 contextname="schwa", 6416 description="LATIN SMALL LETTER SCHWA", 6417 direction="l", 6418 linebreak="al", 6419 uccode=0x18F, 6420 unicodeslot=0x259, 6421 }, 6422 { 6423 category="ll", 6424 contextname="schwahook", 6425 description="LATIN SMALL LETTER SCHWA WITH HOOK", 6426 direction="l", 6427 linebreak="al", 6428 shcode=0x259, 6429 specials={ "with", 0x259, 0x1FA9D }, 6430 unicodeslot=0x25A, 6431 }, 6432 { 6433 category="ll", 6434 description="LATIN SMALL LETTER OPEN E", 6435 direction="l", 6436 linebreak="al", 6437 synonyms={ "latin small letter epsilon" }, 6438 uccode=0x190, 6439 unicodeslot=0x25B, 6440 }, 6441 { 6442 category="ll", 6443 description="LATIN SMALL LETTER REVERSED OPEN E", 6444 direction="l", 6445 linebreak="al", 6446 unicodeslot=0x25C, 6447 }, 6448 { 6449 category="ll", 6450 description="LATIN SMALL LETTER REVERSED OPEN E WITH HOOK", 6451 direction="l", 6452 linebreak="al", 6453 specials={ "with", 0x25C, 0x1FA9D }, 6454 unicodeslot=0x25D, 6455 }, 6456 { 6457 category="ll", 6458 description="LATIN SMALL LETTER CLOSED REVERSED OPEN E", 6459 direction="l", 6460 linebreak="al", 6461 synonyms={ "latin small letter closed reversed epsilon" }, 6462 unicodeslot=0x25E, 6463 }, 6464 { 6465 category="ll", 6466 contextname="dotlessjstroke", 6467 description="LATIN SMALL LETTER DOTLESS J WITH STROKE", 6468 direction="l", 6469 linebreak="al", 6470 specials={ "with", 0x237, 0x2F }, 6471 unicodeslot=0x25F, 6472 }, 6473 { 6474 category="ll", 6475 description="LATIN SMALL LETTER G WITH HOOK", 6476 direction="l", 6477 linebreak="al", 6478 shcode=0x67, 6479 specials={ "with", 0x67, 0x1FA9D }, 6480 uccode=0x193, 6481 unicodeslot=0x260, 6482 }, 6483 { 6484 category="ll", 6485 cjkwd="a", 6486 description="LATIN SMALL LETTER SCRIPT G", 6487 direction="l", 6488 linebreak="al", 6489 unicodeslot=0x261, 6490 }, 6491 { 6492 category="ll", 6493 description="LATIN LETTER SMALL CAPITAL G", 6494 direction="l", 6495 linebreak="al", 6496 unicodeslot=0x262, 6497 }, 6498 { 6499 category="ll", 6500 description="LATIN SMALL LETTER GAMMA", 6501 direction="l", 6502 linebreak="al", 6503 uccode=0x194, 6504 unicodeslot=0x263, 6505 }, 6506 { 6507 category="ll", 6508 description="LATIN SMALL LETTER RAMS HORN", 6509 direction="l", 6510 linebreak="al", 6511 synonyms={ "latin small letter baby gamma" }, 6512 unicodeslot=0x264, 6513 }, 6514 { 6515 category="ll", 6516 description="LATIN SMALL LETTER TURNED H", 6517 direction="l", 6518 linebreak="al", 6519 unicodeslot=0x265, 6520 }, 6521 { 6522 category="ll", 6523 description="LATIN SMALL LETTER H WITH HOOK", 6524 direction="l", 6525 linebreak="al", 6526 shcode=0x68, 6527 specials={ "with", 0x68, 0x1FA9D }, 6528 unicodeslot=0x266, 6529 }, 6530 { 6531 category="ll", 6532 description="LATIN SMALL LETTER HENG WITH HOOK", 6533 direction="l", 6534 linebreak="al", 6535 specials={ "with", 0xA727, 0x1FA9D }, 6536 unicodeslot=0x267, 6537 }, 6538 { 6539 category="ll", 6540 description="LATIN SMALL LETTER I WITH STROKE", 6541 direction="l", 6542 linebreak="al", 6543 shcode=0x69, 6544 specials={ "with", 0x69, 0x2F }, 6545 uccode=0x197, 6546 unicodeslot=0x268, 6547 }, 6548 { 6549 category="ll", 6550 description="LATIN SMALL LETTER IOTA", 6551 direction="l", 6552 linebreak="al", 6553 uccode=0x196, 6554 unicodeslot=0x269, 6555 }, 6556 { 6557 category="ll", 6558 description="LATIN LETTER SMALL CAPITAL I", 6559 direction="l", 6560 linebreak="al", 6561 unicodeslot=0x26A, 6562 }, 6563 { 6564 category="ll", 6565 description="LATIN SMALL LETTER L WITH MIDDLE TILDE", 6566 direction="l", 6567 linebreak="al", 6568 shcode=0x6C, 6569 uccode=0x2C62, 6570 unicodeslot=0x26B, 6571 }, 6572 { 6573 category="ll", 6574 description="LATIN SMALL LETTER L WITH BELT", 6575 direction="l", 6576 linebreak="al", 6577 shcode=0x6C, 6578 unicodeslot=0x26C, 6579 }, 6580 { 6581 category="ll", 6582 description="LATIN SMALL LETTER L WITH RETROFLEX HOOK", 6583 direction="l", 6584 linebreak="al", 6585 shcode=0x6C, 6586 unicodeslot=0x26D, 6587 }, 6588 { 6589 category="ll", 6590 description="LATIN SMALL LETTER LEZH", 6591 direction="l", 6592 linebreak="al", 6593 unicodeslot=0x26E, 6594 }, 6595 { 6596 category="ll", 6597 description="LATIN SMALL LETTER TURNED M", 6598 direction="l", 6599 linebreak="al", 6600 uccode=0x19C, 6601 unicodeslot=0x26F, 6602 }, 6603 { 6604 category="ll", 6605 description="LATIN SMALL LETTER TURNED M WITH LONG LEG", 6606 direction="l", 6607 linebreak="al", 6608 unicodeslot=0x270, 6609 }, 6610 { 6611 category="ll", 6612 description="LATIN SMALL LETTER M WITH HOOK", 6613 direction="l", 6614 linebreak="al", 6615 shcode=0x6D, 6616 specials={ "with", 0x6D, 0x1FA9D }, 6617 unicodeslot=0x271, 6618 }, 6619 { 6620 category="ll", 6621 description="LATIN SMALL LETTER N WITH LEFT HOOK", 6622 direction="l", 6623 linebreak="al", 6624 shcode=0x6E, 6625 uccode=0x19D, 6626 unicodeslot=0x272, 6627 }, 6628 { 6629 category="ll", 6630 description="LATIN SMALL LETTER N WITH RETROFLEX HOOK", 6631 direction="l", 6632 linebreak="al", 6633 shcode=0x6E, 6634 unicodeslot=0x273, 6635 }, 6636 { 6637 category="ll", 6638 description="LATIN LETTER SMALL CAPITAL N", 6639 direction="l", 6640 linebreak="al", 6641 unicodeslot=0x274, 6642 }, 6643 { 6644 category="ll", 6645 description="LATIN SMALL LETTER BARRED O", 6646 direction="l", 6647 linebreak="al", 6648 synonyms={ "latin small letter o bar" }, 6649 uccode=0x19F, 6650 unicodeslot=0x275, 6651 }, 6652 { 6653 category="ll", 6654 description="LATIN LETTER SMALL CAPITAL OE", 6655 direction="l", 6656 linebreak="al", 6657 unicodeslot=0x276, 6658 }, 6659 { 6660 category="ll", 6661 description="LATIN SMALL LETTER CLOSED OMEGA", 6662 direction="l", 6663 linebreak="al", 6664 unicodeslot=0x277, 6665 }, 6666 { 6667 category="ll", 6668 description="LATIN SMALL LETTER PHI", 6669 direction="l", 6670 linebreak="al", 6671 unicodeslot=0x278, 6672 }, 6673 { 6674 category="ll", 6675 description="LATIN SMALL LETTER TURNED R", 6676 direction="l", 6677 linebreak="al", 6678 unicodeslot=0x279, 6679 }, 6680 { 6681 category="ll", 6682 description="LATIN SMALL LETTER TURNED R WITH LONG LEG", 6683 direction="l", 6684 linebreak="al", 6685 unicodeslot=0x27A, 6686 }, 6687 { 6688 category="ll", 6689 description="LATIN SMALL LETTER TURNED R WITH HOOK", 6690 direction="l", 6691 linebreak="al", 6692 specials={ "with", 0x279, 0x1FA9D }, 6693 unicodeslot=0x27B, 6694 }, 6695 { 6696 category="ll", 6697 description="LATIN SMALL LETTER R WITH LONG LEG", 6698 direction="l", 6699 linebreak="al", 6700 shcode=0x72, 6701 unicodeslot=0x27C, 6702 }, 6703 { 6704 category="ll", 6705 description="LATIN SMALL LETTER R WITH TAIL", 6706 direction="l", 6707 linebreak="al", 6708 shcode=0x72, 6709 uccode=0x2C64, 6710 unicodeslot=0x27D, 6711 }, 6712 { 6713 category="ll", 6714 description="LATIN SMALL LETTER R WITH FISHHOOK", 6715 direction="l", 6716 linebreak="al", 6717 shcode=0x72, 6718 unicodeslot=0x27E, 6719 }, 6720 { 6721 category="ll", 6722 description="LATIN SMALL LETTER REVERSED R WITH FISHHOOK", 6723 direction="l", 6724 linebreak="al", 6725 unicodeslot=0x27F, 6726 }, 6727 { 6728 category="ll", 6729 description="LATIN LETTER SMALL CAPITAL R", 6730 direction="l", 6731 linebreak="al", 6732 uccode=0x1A6, 6733 unicodeslot=0x280, 6734 }, 6735 { 6736 category="ll", 6737 description="LATIN LETTER SMALL CAPITAL INVERTED R", 6738 direction="l", 6739 linebreak="al", 6740 unicodeslot=0x281, 6741 }, 6742 { 6743 category="ll", 6744 description="LATIN SMALL LETTER S WITH HOOK", 6745 direction="l", 6746 linebreak="al", 6747 shcode=0x73, 6748 specials={ "with", 0x73, 0x1FA9D }, 6749 unicodeslot=0x282, 6750 }, 6751 { 6752 category="ll", 6753 description="LATIN SMALL LETTER ESH", 6754 direction="l", 6755 linebreak="al", 6756 uccode=0x1A9, 6757 unicodeslot=0x283, 6758 }, 6759 { 6760 category="ll", 6761 description="LATIN SMALL LETTER DOTLESS J WITH STROKE AND HOOK", 6762 direction="l", 6763 linebreak="al", 6764 unicodeslot=0x284, 6765 }, 6766 { 6767 category="ll", 6768 description="LATIN SMALL LETTER SQUAT REVERSED ESH", 6769 direction="l", 6770 linebreak="al", 6771 unicodeslot=0x285, 6772 }, 6773 { 6774 category="ll", 6775 description="LATIN SMALL LETTER ESH WITH CURL", 6776 direction="l", 6777 linebreak="al", 6778 shcode=0x283, 6779 unicodeslot=0x286, 6780 }, 6781 { 6782 category="ll", 6783 description="LATIN SMALL LETTER TURNED T", 6784 direction="l", 6785 linebreak="al", 6786 unicodeslot=0x287, 6787 }, 6788 { 6789 category="ll", 6790 description="LATIN SMALL LETTER T WITH RETROFLEX HOOK", 6791 direction="l", 6792 linebreak="al", 6793 shcode=0x74, 6794 uccode=0x1AE, 6795 unicodeslot=0x288, 6796 }, 6797 { 6798 category="ll", 6799 description="LATIN SMALL LETTER U BAR", 6800 direction="l", 6801 linebreak="al", 6802 uccode=0x244, 6803 unicodeslot=0x289, 6804 }, 6805 { 6806 category="ll", 6807 description="LATIN SMALL LETTER UPSILON", 6808 direction="l", 6809 linebreak="al", 6810 uccode=0x1B1, 6811 unicodeslot=0x28A, 6812 }, 6813 { 6814 category="ll", 6815 description="LATIN SMALL LETTER V WITH HOOK", 6816 direction="l", 6817 linebreak="al", 6818 shcode=0x76, 6819 specials={ "with", 0x76, 0x1FA9D }, 6820 synonyms={ "latin small letter script v" }, 6821 uccode=0x1B2, 6822 unicodeslot=0x28B, 6823 }, 6824 { 6825 category="ll", 6826 description="LATIN SMALL LETTER TURNED V", 6827 direction="l", 6828 linebreak="al", 6829 synonyms={ "caret" }, 6830 uccode=0x245, 6831 unicodeslot=0x28C, 6832 }, 6833 { 6834 category="ll", 6835 description="LATIN SMALL LETTER TURNED W", 6836 direction="l", 6837 linebreak="al", 6838 unicodeslot=0x28D, 6839 }, 6840 { 6841 category="ll", 6842 description="LATIN SMALL LETTER TURNED Y", 6843 direction="l", 6844 linebreak="al", 6845 unicodeslot=0x28E, 6846 }, 6847 { 6848 category="ll", 6849 description="LATIN LETTER SMALL CAPITAL Y", 6850 direction="l", 6851 linebreak="al", 6852 unicodeslot=0x28F, 6853 }, 6854 { 6855 category="ll", 6856 description="LATIN SMALL LETTER Z WITH RETROFLEX HOOK", 6857 direction="l", 6858 linebreak="al", 6859 shcode=0x7A, 6860 unicodeslot=0x290, 6861 }, 6862 { 6863 category="ll", 6864 description="LATIN SMALL LETTER Z WITH CURL", 6865 direction="l", 6866 linebreak="al", 6867 shcode=0x7A, 6868 unicodeslot=0x291, 6869 }, 6870 { 6871 category="ll", 6872 description="LATIN SMALL LETTER EZH", 6873 direction="l", 6874 linebreak="al", 6875 synonyms={ "dram" }, 6876 uccode=0x1B7, 6877 unicodeslot=0x292, 6878 }, 6879 { 6880 category="ll", 6881 description="LATIN SMALL LETTER EZH WITH CURL", 6882 direction="l", 6883 linebreak="al", 6884 shcode=0x292, 6885 unicodeslot=0x293, 6886 }, 6887 { 6888 category="lo", 6889 description="LATIN LETTER GLOTTAL STOP", 6890 direction="l", 6891 linebreak="al", 6892 unicodeslot=0x294, 6893 }, 6894 { 6895 category="ll", 6896 description="LATIN LETTER PHARYNGEAL VOICED FRICATIVE", 6897 direction="l", 6898 linebreak="al", 6899 synonyms={ "latin letter reversed glottal stop" }, 6900 unicodeslot=0x295, 6901 }, 6902 { 6903 category="ll", 6904 description="LATIN LETTER INVERTED GLOTTAL STOP", 6905 direction="l", 6906 linebreak="al", 6907 unicodeslot=0x296, 6908 }, 6909 { 6910 category="ll", 6911 description="LATIN LETTER STRETCHED C", 6912 direction="l", 6913 linebreak="al", 6914 unicodeslot=0x297, 6915 }, 6916 { 6917 category="ll", 6918 description="LATIN LETTER BILABIAL CLICK", 6919 direction="l", 6920 linebreak="al", 6921 synonyms={ "latin letter bullseye" }, 6922 unicodeslot=0x298, 6923 }, 6924 { 6925 category="ll", 6926 description="LATIN LETTER SMALL CAPITAL B", 6927 direction="l", 6928 linebreak="al", 6929 unicodeslot=0x299, 6930 }, 6931 { 6932 category="ll", 6933 description="LATIN SMALL LETTER CLOSED OPEN E", 6934 direction="l", 6935 linebreak="al", 6936 synonyms={ "latin small letter closed epsilon" }, 6937 unicodeslot=0x29A, 6938 }, 6939 { 6940 category="ll", 6941 description="LATIN LETTER SMALL CAPITAL G WITH HOOK", 6942 direction="l", 6943 linebreak="al", 6944 specials={ "with", 0x262, 0x1FA9D }, 6945 unicodeslot=0x29B, 6946 }, 6947 { 6948 category="ll", 6949 description="LATIN LETTER SMALL CAPITAL H", 6950 direction="l", 6951 linebreak="al", 6952 unicodeslot=0x29C, 6953 }, 6954 { 6955 category="ll", 6956 description="LATIN SMALL LETTER J WITH CROSSED-TAIL", 6957 direction="l", 6958 linebreak="al", 6959 shcode=0x6A, 6960 unicodeslot=0x29D, 6961 }, 6962 { 6963 category="ll", 6964 description="LATIN SMALL LETTER TURNED K", 6965 direction="l", 6966 linebreak="al", 6967 unicodeslot=0x29E, 6968 }, 6969 { 6970 category="ll", 6971 description="LATIN LETTER SMALL CAPITAL L", 6972 direction="l", 6973 linebreak="al", 6974 unicodeslot=0x29F, 6975 }, 6976 { 6977 category="ll", 6978 description="LATIN SMALL LETTER Q WITH HOOK", 6979 direction="l", 6980 linebreak="al", 6981 shcode=0x71, 6982 specials={ "with", 0x71, 0x1FA9D }, 6983 unicodeslot=0x2A0, 6984 }, 6985 { 6986 category="ll", 6987 description="LATIN LETTER GLOTTAL STOP WITH STROKE", 6988 direction="l", 6989 linebreak="al", 6990 specials={ "with", 0x294, 0x2F }, 6991 unicodeslot=0x2A1, 6992 }, 6993 { 6994 category="ll", 6995 description="LATIN LETTER REVERSED GLOTTAL STOP WITH STROKE", 6996 direction="l", 6997 linebreak="al", 6998 unicodeslot=0x2A2, 6999 }, 7000 { 7001 category="ll", 7002 description="LATIN SMALL LETTER DZ DIGRAPH", 7003 direction="l", 7004 linebreak="al", 7005 unicodeslot=0x2A3, 7006 }, 7007 { 7008 category="ll", 7009 description="LATIN SMALL LETTER DEZH DIGRAPH", 7010 direction="l", 7011 linebreak="al", 7012 unicodeslot=0x2A4, 7013 }, 7014 { 7015 category="ll", 7016 description="LATIN SMALL LETTER DZ DIGRAPH WITH CURL", 7017 direction="l", 7018 linebreak="al", 7019 unicodeslot=0x2A5, 7020 }, 7021 { 7022 category="ll", 7023 description="LATIN SMALL LETTER TS DIGRAPH", 7024 direction="l", 7025 linebreak="al", 7026 unicodeslot=0x2A6, 7027 }, 7028 { 7029 category="ll", 7030 description="LATIN SMALL LETTER TESH DIGRAPH", 7031 direction="l", 7032 linebreak="al", 7033 unicodeslot=0x2A7, 7034 }, 7035 { 7036 category="ll", 7037 description="LATIN SMALL LETTER TC DIGRAPH WITH CURL", 7038 direction="l", 7039 linebreak="al", 7040 unicodeslot=0x2A8, 7041 }, 7042 { 7043 category="ll", 7044 description="LATIN SMALL LETTER FENG DIGRAPH", 7045 direction="l", 7046 linebreak="al", 7047 unicodeslot=0x2A9, 7048 }, 7049 { 7050 category="ll", 7051 description="LATIN SMALL LETTER LS DIGRAPH", 7052 direction="l", 7053 linebreak="al", 7054 unicodeslot=0x2AA, 7055 }, 7056 { 7057 category="ll", 7058 description="LATIN SMALL LETTER LZ DIGRAPH", 7059 direction="l", 7060 linebreak="al", 7061 unicodeslot=0x2AB, 7062 }, 7063 { 7064 category="ll", 7065 description="LATIN LETTER BILABIAL PERCUSSIVE", 7066 direction="l", 7067 linebreak="al", 7068 unicodeslot=0x2AC, 7069 }, 7070 { 7071 category="ll", 7072 description="LATIN LETTER BIDENTAL PERCUSSIVE", 7073 direction="l", 7074 linebreak="al", 7075 unicodeslot=0x2AD, 7076 }, 7077 { 7078 category="ll", 7079 description="LATIN SMALL LETTER TURNED H WITH FISHHOOK", 7080 direction="l", 7081 linebreak="al", 7082 unicodeslot=0x2AE, 7083 }, 7084 { 7085 category="ll", 7086 description="LATIN SMALL LETTER TURNED H WITH FISHHOOK AND TAIL", 7087 direction="l", 7088 linebreak="al", 7089 unicodeslot=0x2AF, 7090 }, 7091 { 7092 category="lm", 7093 description="MODIFIER LETTER SMALL H", 7094 direction="l", 7095 linebreak="al", 7096 specials={ "super", 0x68 }, 7097 unicodeslot=0x2B0, 7098 }, 7099 { 7100 category="lm", 7101 description="MODIFIER LETTER SMALL H WITH HOOK", 7102 direction="l", 7103 linebreak="al", 7104 specials={ "super", 0x266 }, 7105 unicodeslot=0x2B1, 7106 }, 7107 { 7108 category="lm", 7109 description="MODIFIER LETTER SMALL J", 7110 direction="l", 7111 linebreak="al", 7112 specials={ "super", 0x6A }, 7113 unicodeslot=0x2B2, 7114 }, 7115 { 7116 category="lm", 7117 description="MODIFIER LETTER SMALL R", 7118 direction="l", 7119 linebreak="al", 7120 specials={ "super", 0x72 }, 7121 unicodeslot=0x2B3, 7122 }, 7123 { 7124 category="lm", 7125 description="MODIFIER LETTER SMALL TURNED R", 7126 direction="l", 7127 linebreak="al", 7128 specials={ "super", 0x279 }, 7129 unicodeslot=0x2B4, 7130 }, 7131 { 7132 category="lm", 7133 description="MODIFIER LETTER SMALL TURNED R WITH HOOK", 7134 direction="l", 7135 linebreak="al", 7136 specials={ "super", 0x27B }, 7137 unicodeslot=0x2B5, 7138 }, 7139 { 7140 category="lm", 7141 description="MODIFIER LETTER SMALL CAPITAL INVERTED R", 7142 direction="l", 7143 linebreak="al", 7144 specials={ "super", 0x281 }, 7145 unicodeslot=0x2B6, 7146 }, 7147 { 7148 category="lm", 7149 description="MODIFIER LETTER SMALL W", 7150 direction="l", 7151 linebreak="al", 7152 specials={ "super", 0x77 }, 7153 unicodeslot=0x2B7, 7154 }, 7155 { 7156 category="lm", 7157 description="MODIFIER LETTER SMALL Y", 7158 direction="l", 7159 linebreak="al", 7160 specials={ "super", 0x79 }, 7161 unicodeslot=0x2B8, 7162 }, 7163 { 7164 category="lm", 7165 description="MODIFIER LETTER PRIME", 7166 direction="on", 7167 linebreak="al", 7168 unicodeslot=0x2B9, 7169 }, 7170 { 7171 category="lm", 7172 description="MODIFIER LETTER DOUBLE PRIME", 7173 direction="on", 7174 linebreak="al", 7175 unicodeslot=0x2BA, 7176 }, 7177 { 7178 category="lm", 7179 description="MODIFIER LETTER TURNED COMMA", 7180 direction="l", 7181 linebreak="al", 7182 unicodeslot=0x2BB, 7183 }, 7184 { 7185 category="lm", 7186 description="MODIFIER LETTER APOSTROPHE", 7187 direction="l", 7188 linebreak="al", 7189 synonyms={ "glottal stop", "neutral apostrophe" }, 7190 unicodeslot=0x2BC, 7191 }, 7192 { 7193 category="lm", 7194 description="MODIFIER LETTER REVERSED COMMA", 7195 direction="l", 7196 linebreak="al", 7197 unicodeslot=0x2BD, 7198 }, 7199 { 7200 category="lm", 7201 description="MODIFIER LETTER RIGHT HALF RING", 7202 direction="l", 7203 linebreak="al", 7204 unicodeslot=0x2BE, 7205 }, 7206 { 7207 category="lm", 7208 description="MODIFIER LETTER LEFT HALF RING", 7209 direction="l", 7210 linebreak="al", 7211 unicodeslot=0x2BF, 7212 }, 7213 { 7214 category="lm", 7215 description="MODIFIER LETTER GLOTTAL STOP", 7216 direction="l", 7217 linebreak="al", 7218 unicodeslot=0x2C0, 7219 }, 7220 { 7221 category="lm", 7222 description="MODIFIER LETTER REVERSED GLOTTAL STOP", 7223 direction="l", 7224 linebreak="al", 7225 unicodeslot=0x2C1, 7226 }, 7227 { 7228 category="sk", 7229 description="MODIFIER LETTER LEFT ARROWHEAD", 7230 direction="on", 7231 linebreak="al", 7232 unicodeslot=0x2C2, 7233 }, 7234 { 7235 category="sk", 7236 description="MODIFIER LETTER RIGHT ARROWHEAD", 7237 direction="on", 7238 linebreak="al", 7239 unicodeslot=0x2C3, 7240 }, 7241 { 7242 category="sk", 7243 cjkwd="a", 7244 description="MODIFIER LETTER UP ARROWHEAD", 7245 direction="on", 7246 linebreak="al", 7247 unicodeslot=0x2C4, 7248 }, 7249 { 7250 category="sk", 7251 description="MODIFIER LETTER DOWN ARROWHEAD", 7252 direction="on", 7253 linebreak="al", 7254 unicodeslot=0x2C5, 7255 }, 7256 { 7257 category="lm", 7258 comment="check special", 7259 contextname="textcircumflex", 7260 description="MODIFIER LETTER CIRCUMFLEX ACCENT", 7261 direction="on", 7262 linebreak="al", 7263 mathspec={ 7264 { 7265 class="topaccent", 7266 name="hat", 7267 }, 7268 { 7269 class="topaccent", 7270 name="widehat", 7271 stretch="h", 7272 }, 7273 }, 7274 specials={ "compat", 0x20, 0x302 }, 7275 unicodeslot=0x2C6, 7276 }, 7277 { 7278 category="lm", 7279 cjkwd="a", 7280 comment="check special", 7281 contextname="textcaron", 7282 description="CARON", 7283 direction="on", 7284 linebreak="ai", 7285 mathspec={ 7286 { 7287 class="topaccent", 7288 name="check", 7289 }, 7290 { 7291 class="topaccent", 7292 name="widecheck", 7293 stretch="h", 7294 }, 7295 }, 7296 specials={ "compat", 0x20, 0x30C }, 7297 synonyms={ "mandarin chinese third tone", "modifier letter hacek" }, 7298 unicodeslot=0x2C7, 7299 }, 7300 { 7301 category="lm", 7302 description="MODIFIER LETTER VERTICAL LINE", 7303 direction="on", 7304 linebreak="bb", 7305 unicodeslot=0x2C8, 7306 }, 7307 { 7308 category="lm", 7309 cjkwd="a", 7310 description="MODIFIER LETTER MACRON", 7311 direction="on", 7312 linebreak="ai", 7313 synonyms={ "mandarin chinese first tone" }, 7314 unicodeslot=0x2C9, 7315 }, 7316 { 7317 category="lm", 7318 cjkwd="a", 7319 description="MODIFIER LETTER ACUTE ACCENT", 7320 direction="on", 7321 linebreak="ai", 7322 synonyms={ "mandarin chinese second tone" }, 7323 unicodeslot=0x2CA, 7324 }, 7325 { 7326 category="lm", 7327 cjkwd="a", 7328 description="MODIFIER LETTER GRAVE ACCENT", 7329 direction="on", 7330 linebreak="ai", 7331 synonyms={ "mandarin chinese fourth tone" }, 7332 unicodeslot=0x2CB, 7333 }, 7334 { 7335 category="lm", 7336 description="MODIFIER LETTER LOW VERTICAL LINE", 7337 direction="on", 7338 linebreak="bb", 7339 unicodeslot=0x2CC, 7340 }, 7341 { 7342 category="lm", 7343 cjkwd="a", 7344 description="MODIFIER LETTER LOW MACRON", 7345 direction="on", 7346 linebreak="ai", 7347 unicodeslot=0x2CD, 7348 }, 7349 { 7350 category="lm", 7351 description="MODIFIER LETTER LOW GRAVE ACCENT", 7352 direction="on", 7353 linebreak="al", 7354 unicodeslot=0x2CE, 7355 }, 7356 { 7357 category="lm", 7358 description="MODIFIER LETTER LOW ACUTE ACCENT", 7359 direction="on", 7360 linebreak="al", 7361 unicodeslot=0x2CF, 7362 }, 7363 { 7364 category="lm", 7365 cjkwd="a", 7366 description="MODIFIER LETTER TRIANGULAR COLON", 7367 direction="l", 7368 linebreak="ai", 7369 unicodeslot=0x2D0, 7370 }, 7371 { 7372 category="lm", 7373 description="MODIFIER LETTER HALF TRIANGULAR COLON", 7374 direction="l", 7375 linebreak="al", 7376 unicodeslot=0x2D1, 7377 }, 7378 { 7379 category="sk", 7380 description="MODIFIER LETTER CENTRED RIGHT HALF RING", 7381 direction="on", 7382 linebreak="al", 7383 unicodeslot=0x2D2, 7384 }, 7385 { 7386 category="sk", 7387 description="MODIFIER LETTER CENTRED LEFT HALF RING", 7388 direction="on", 7389 linebreak="al", 7390 unicodeslot=0x2D3, 7391 }, 7392 { 7393 category="sk", 7394 description="MODIFIER LETTER UP TACK", 7395 direction="on", 7396 linebreak="al", 7397 unicodeslot=0x2D4, 7398 }, 7399 { 7400 category="sk", 7401 description="MODIFIER LETTER DOWN TACK", 7402 direction="on", 7403 linebreak="al", 7404 unicodeslot=0x2D5, 7405 }, 7406 { 7407 category="sk", 7408 description="MODIFIER LETTER PLUS SIGN", 7409 direction="on", 7410 linebreak="al", 7411 unicodeslot=0x2D6, 7412 }, 7413 { 7414 category="sk", 7415 description="MODIFIER LETTER MINUS SIGN", 7416 direction="on", 7417 linebreak="al", 7418 unicodeslot=0x2D7, 7419 }, 7420 { 7421 category="sk", 7422 cjkwd="a", 7423 contextname="textbreve", 7424 description="BREVE", 7425 direction="on", 7426 linebreak="ai", 7427 mathspec={ 7428 { 7429 class="topaccent", 7430 name="breve", 7431 }, 7432 { 7433 class="topaccent", 7434 name="widebreve", 7435 stretch="h", 7436 }, 7437 }, 7438 specials={ "compat", 0x20, 0x306 }, 7439 unicodeslot=0x2D8, 7440 }, 7441 { 7442 category="sk", 7443 cjkwd="a", 7444 contextname="textdotaccent", 7445 description="DOT ABOVE", 7446 direction="on", 7447 linebreak="ai", 7448 mathspec={ 7449 { 7450 class="topaccent", 7451 name="dot", 7452 }, 7453 { 7454 class="topaccent", 7455 name="widedot", 7456 stretch="h", 7457 }, 7458 }, 7459 specials={ "compat", 0x20, 0x307 }, 7460 synonyms={ "mandarin chinese fifth or neutral tone" }, 7461 unicodeslot=0x2D9, 7462 }, 7463 { 7464 category="sk", 7465 cjkwd="a", 7466 contextname="textring", 7467 description="RING ABOVE", 7468 direction="on", 7469 linebreak="ai", 7470 mathspec={ 7471 { 7472 class="topaccent", 7473 name="ring", 7474 }, 7475 { 7476 class="topaccent", 7477 name="widering", 7478 stretch="h", 7479 }, 7480 }, 7481 specials={ "compat", 0x20, 0x30A }, 7482 unicodeslot=0x2DA, 7483 }, 7484 { 7485 category="sk", 7486 cjkwd="a", 7487 contextname="textogonek", 7488 description="OGONEK", 7489 direction="on", 7490 linebreak="ai", 7491 specials={ "compat", 0x20, 0x328 }, 7492 unicodeslot=0x2DB, 7493 }, 7494 { 7495 category="sk", 7496 contextname="texttilde", 7497 description="SMALL TILDE", 7498 direction="on", 7499 linebreak="al", 7500 mathspec={ 7501 { 7502 class="topaccent", 7503 name="tilde", 7504 }, 7505 { 7506 class="topaccent", 7507 name="widetilde", 7508 stretch="h", 7509 }, 7510 }, 7511 specials={ "compat", 0x20, 0x303 }, 7512 unicodeslot=0x2DC, 7513 }, 7514 { 7515 category="sk", 7516 cjkwd="a", 7517 contextname="texthungarumlaut", 7518 description="DOUBLE ACUTE ACCENT", 7519 direction="on", 7520 linebreak="ai", 7521 specials={ "compat", 0x20, 0x30B }, 7522 unicodeslot=0x2DD, 7523 }, 7524 { 7525 category="sk", 7526 description="MODIFIER LETTER RHOTIC HOOK", 7527 direction="on", 7528 linebreak="al", 7529 unicodeslot=0x2DE, 7530 }, 7531 { 7532 category="sk", 7533 cjkwd="a", 7534 description="MODIFIER LETTER CROSS ACCENT", 7535 direction="on", 7536 linebreak="bb", 7537 synonyms={ "swedish grave accent" }, 7538 unicodeslot=0x2DF, 7539 }, 7540 { 7541 category="lm", 7542 description="MODIFIER LETTER SMALL GAMMA", 7543 direction="l", 7544 linebreak="al", 7545 specials={ "super", 0x263 }, 7546 unicodeslot=0x2E0, 7547 }, 7548 { 7549 category="lm", 7550 description="MODIFIER LETTER SMALL L", 7551 direction="l", 7552 linebreak="al", 7553 specials={ "super", 0x6C }, 7554 unicodeslot=0x2E1, 7555 }, 7556 { 7557 category="lm", 7558 description="MODIFIER LETTER SMALL S", 7559 direction="l", 7560 linebreak="al", 7561 specials={ "super", 0x73 }, 7562 unicodeslot=0x2E2, 7563 }, 7564 { 7565 category="lm", 7566 description="MODIFIER LETTER SMALL X", 7567 direction="l", 7568 linebreak="al", 7569 specials={ "super", 0x78 }, 7570 unicodeslot=0x2E3, 7571 }, 7572 { 7573 category="lm", 7574 description="MODIFIER LETTER SMALL REVERSED GLOTTAL STOP", 7575 direction="l", 7576 linebreak="al", 7577 specials={ "super", 0x295 }, 7578 unicodeslot=0x2E4, 7579 }, 7580 { 7581 category="sk", 7582 description="MODIFIER LETTER EXTRA-HIGH TONE BAR", 7583 direction="on", 7584 linebreak="al", 7585 unicodeslot=0x2E5, 7586 }, 7587 { 7588 category="sk", 7589 description="MODIFIER LETTER HIGH TONE BAR", 7590 direction="on", 7591 linebreak="al", 7592 unicodeslot=0x2E6, 7593 }, 7594 { 7595 category="sk", 7596 description="MODIFIER LETTER MID TONE BAR", 7597 direction="on", 7598 linebreak="al", 7599 unicodeslot=0x2E7, 7600 }, 7601 { 7602 category="sk", 7603 description="MODIFIER LETTER LOW TONE BAR", 7604 direction="on", 7605 linebreak="al", 7606 unicodeslot=0x2E8, 7607 }, 7608 { 7609 category="sk", 7610 description="MODIFIER LETTER EXTRA-LOW TONE BAR", 7611 direction="on", 7612 linebreak="al", 7613 unicodeslot=0x2E9, 7614 }, 7615 { 7616 category="sk", 7617 description="MODIFIER LETTER YIN DEPARTING TONE MARK", 7618 direction="on", 7619 linebreak="al", 7620 unicodeslot=0x2EA, 7621 }, 7622 { 7623 category="sk", 7624 description="MODIFIER LETTER YANG DEPARTING TONE MARK", 7625 direction="on", 7626 linebreak="al", 7627 unicodeslot=0x2EB, 7628 }, 7629 { 7630 category="sk", 7631 description="MODIFIER LETTER VOICING", 7632 direction="on", 7633 linebreak="al", 7634 unicodeslot=0x2EC, 7635 }, 7636 { 7637 category="sk", 7638 description="MODIFIER LETTER UNASPIRATED", 7639 direction="on", 7640 linebreak="al", 7641 unicodeslot=0x2ED, 7642 }, 7643 { 7644 category="lm", 7645 description="MODIFIER LETTER DOUBLE APOSTROPHE", 7646 direction="l", 7647 linebreak="al", 7648 unicodeslot=0x2EE, 7649 }, 7650 { 7651 category="sk", 7652 description="MODIFIER LETTER LOW DOWN ARROWHEAD", 7653 direction="on", 7654 linebreak="al", 7655 unicodeslot=0x2EF, 7656 }, 7657 { 7658 category="sk", 7659 description="MODIFIER LETTER LOW UP ARROWHEAD", 7660 direction="on", 7661 linebreak="al", 7662 unicodeslot=0x2F0, 7663 }, 7664 { 7665 category="sk", 7666 description="MODIFIER LETTER LOW LEFT ARROWHEAD", 7667 direction="on", 7668 linebreak="al", 7669 unicodeslot=0x2F1, 7670 }, 7671 { 7672 category="sk", 7673 description="MODIFIER LETTER LOW RIGHT ARROWHEAD", 7674 direction="on", 7675 linebreak="al", 7676 unicodeslot=0x2F2, 7677 }, 7678 { 7679 category="sk", 7680 description="MODIFIER LETTER LOW RING", 7681 direction="on", 7682 linebreak="al", 7683 unicodeslot=0x2F3, 7684 }, 7685 { 7686 category="sk", 7687 description="MODIFIER LETTER MIDDLE GRAVE ACCENT", 7688 direction="on", 7689 linebreak="al", 7690 unicodeslot=0x2F4, 7691 }, 7692 { 7693 category="sk", 7694 description="MODIFIER LETTER MIDDLE DOUBLE GRAVE ACCENT", 7695 direction="on", 7696 linebreak="al", 7697 unicodeslot=0x2F5, 7698 }, 7699 { 7700 category="sk", 7701 description="MODIFIER LETTER MIDDLE DOUBLE ACUTE ACCENT", 7702 direction="on", 7703 linebreak="al", 7704 unicodeslot=0x2F6, 7705 }, 7706 { 7707 category="sk", 7708 description="MODIFIER LETTER LOW TILDE", 7709 direction="on", 7710 linebreak="al", 7711 unicodeslot=0x2F7, 7712 }, 7713 { 7714 category="sk", 7715 description="MODIFIER LETTER RAISED COLON", 7716 direction="on", 7717 linebreak="al", 7718 unicodeslot=0x2F8, 7719 }, 7720 { 7721 category="sk", 7722 description="MODIFIER LETTER BEGIN HIGH TONE", 7723 direction="on", 7724 linebreak="al", 7725 unicodeslot=0x2F9, 7726 }, 7727 { 7728 category="sk", 7729 description="MODIFIER LETTER END HIGH TONE", 7730 direction="on", 7731 linebreak="al", 7732 unicodeslot=0x2FA, 7733 }, 7734 { 7735 category="sk", 7736 description="MODIFIER LETTER BEGIN LOW TONE", 7737 direction="on", 7738 linebreak="al", 7739 unicodeslot=0x2FB, 7740 }, 7741 { 7742 category="sk", 7743 description="MODIFIER LETTER END LOW TONE", 7744 direction="on", 7745 linebreak="al", 7746 unicodeslot=0x2FC, 7747 }, 7748 { 7749 category="sk", 7750 description="MODIFIER LETTER SHELF", 7751 direction="on", 7752 linebreak="al", 7753 unicodeslot=0x2FD, 7754 }, 7755 { 7756 category="sk", 7757 description="MODIFIER LETTER OPEN SHELF", 7758 direction="on", 7759 linebreak="al", 7760 unicodeslot=0x2FE, 7761 }, 7762 { 7763 category="sk", 7764 description="MODIFIER LETTER LOW LEFT ARROW", 7765 direction="on", 7766 linebreak="al", 7767 unicodeslot=0x2FF, 7768 }, 7769 { 7770 category="mn", 7771 cjkwd="a", 7772 combining=0xE6, 7773 description="COMBINING GRAVE ACCENT", 7774 direction="nsm", 7775 linebreak="cm", 7776 synonyms={ "greek varia" }, 7777 unicodeslot=0x300, 7778 }, 7779 { 7780 category="mn", 7781 cjkwd="a", 7782 combining=0xE6, 7783 description="COMBINING ACUTE ACCENT", 7784 direction="nsm", 7785 linebreak="cm", 7786 synonyms={ "greek oxia", "greek tonos", "stress mark" }, 7787 unicodeslot=0x301, 7788 }, 7789 { 7790 category="mn", 7791 cjkwd="a", 7792 combining=0xE6, 7793 description="COMBINING CIRCUMFLEX ACCENT", 7794 direction="nsm", 7795 linebreak="cm", 7796 unicodeslot=0x302, 7797 }, 7798 { 7799 category="mn", 7800 cjkwd="a", 7801 combining=0xE6, 7802 description="COMBINING TILDE", 7803 direction="nsm", 7804 linebreak="cm", 7805 unicodeslot=0x303, 7806 }, 7807 { 7808 category="mn", 7809 cjkwd="a", 7810 combining=0xE6, 7811 description="COMBINING MACRON", 7812 direction="nsm", 7813 linebreak="cm", 7814 synonyms={ "long" }, 7815 unicodeslot=0x304, 7816 }, 7817 { 7818 category="mn", 7819 cjkwd="a", 7820 combining=0xE6, 7821 description="COMBINING OVERLINE", 7822 direction="nsm", 7823 linebreak="cm", 7824 synonyms={ "overscore", "vinculum" }, 7825 unicodeslot=0x305, 7826 }, 7827 { 7828 category="mn", 7829 cjkwd="a", 7830 combining=0xE6, 7831 description="COMBINING BREVE", 7832 direction="nsm", 7833 linebreak="cm", 7834 synonyms={ "greek vrachy", "short" }, 7835 unicodeslot=0x306, 7836 }, 7837 { 7838 category="mn", 7839 cjkwd="a", 7840 combining=0xE6, 7841 description="COMBINING DOT ABOVE", 7842 direction="nsm", 7843 linebreak="cm", 7844 synonyms={ "derivative" }, 7845 unicodeslot=0x307, 7846 }, 7847 { 7848 category="mn", 7849 cjkwd="a", 7850 combining=0xE6, 7851 description="COMBINING DIAERESIS", 7852 direction="nsm", 7853 linebreak="cm", 7854 synonyms={ "double derivative", "double dot above", "greek dialytika", "umlaut" }, 7855 unicodeslot=0x308, 7856 }, 7857 { 7858 category="mn", 7859 cjkwd="a", 7860 combining=0xE6, 7861 description="COMBINING HOOK ABOVE", 7862 direction="nsm", 7863 linebreak="cm", 7864 unicodeslot=0x309, 7865 }, 7866 { 7867 category="mn", 7868 cjkwd="a", 7869 combining=0xE6, 7870 description="COMBINING RING ABOVE", 7871 direction="nsm", 7872 linebreak="cm", 7873 unicodeslot=0x30A, 7874 }, 7875 { 7876 category="mn", 7877 cjkwd="a", 7878 combining=0xE6, 7879 description="COMBINING DOUBLE ACUTE ACCENT", 7880 direction="nsm", 7881 linebreak="cm", 7882 unicodeslot=0x30B, 7883 }, 7884 { 7885 category="mn", 7886 cjkwd="a", 7887 combining=0xE6, 7888 description="COMBINING CARON", 7889 direction="nsm", 7890 linebreak="cm", 7891 synonyms={ "combining hacek", "v above" }, 7892 unicodeslot=0x30C, 7893 }, 7894 { 7895 category="mn", 7896 cjkwd="a", 7897 combining=0xE6, 7898 description="COMBINING VERTICAL LINE ABOVE", 7899 direction="nsm", 7900 linebreak="cm", 7901 unicodeslot=0x30D, 7902 }, 7903 { 7904 category="mn", 7905 cjkwd="a", 7906 combining=0xE6, 7907 description="COMBINING DOUBLE VERTICAL LINE ABOVE", 7908 direction="nsm", 7909 linebreak="cm", 7910 unicodeslot=0x30E, 7911 }, 7912 { 7913 category="mn", 7914 cjkwd="a", 7915 combining=0xE6, 7916 description="COMBINING DOUBLE GRAVE ACCENT", 7917 direction="nsm", 7918 linebreak="cm", 7919 unicodeslot=0x30F, 7920 }, 7921 { 7922 category="mn", 7923 cjkwd="a", 7924 combining=0xE6, 7925 description="COMBINING CANDRABINDU", 7926 direction="nsm", 7927 linebreak="cm", 7928 unicodeslot=0x310, 7929 }, 7930 { 7931 category="mn", 7932 cjkwd="a", 7933 combining=0xE6, 7934 description="COMBINING INVERTED BREVE", 7935 direction="nsm", 7936 linebreak="cm", 7937 unicodeslot=0x311, 7938 }, 7939 { 7940 category="mn", 7941 cjkwd="a", 7942 combining=0xE6, 7943 description="COMBINING TURNED COMMA ABOVE", 7944 direction="nsm", 7945 linebreak="cm", 7946 synonyms={ "cedilla above" }, 7947 unicodeslot=0x312, 7948 }, 7949 { 7950 category="mn", 7951 cjkwd="a", 7952 combining=0xE6, 7953 description="COMBINING COMMA ABOVE", 7954 direction="nsm", 7955 linebreak="cm", 7956 synonyms={ "greek psili", "greek smooth breathing mark" }, 7957 unicodeslot=0x313, 7958 }, 7959 { 7960 category="mn", 7961 cjkwd="a", 7962 combining=0xE6, 7963 description="COMBINING REVERSED COMMA ABOVE", 7964 direction="nsm", 7965 linebreak="cm", 7966 synonyms={ "greek dasia", "greek rough breathing mark" }, 7967 unicodeslot=0x314, 7968 }, 7969 { 7970 category="mn", 7971 cjkwd="a", 7972 combining=0xE8, 7973 description="COMBINING COMMA ABOVE RIGHT", 7974 direction="nsm", 7975 linebreak="cm", 7976 unicodeslot=0x315, 7977 }, 7978 { 7979 category="mn", 7980 cjkwd="a", 7981 combining=0xDC, 7982 description="COMBINING GRAVE ACCENT BELOW", 7983 direction="nsm", 7984 linebreak="cm", 7985 unicodeslot=0x316, 7986 }, 7987 { 7988 category="mn", 7989 cjkwd="a", 7990 combining=0xDC, 7991 description="COMBINING ACUTE ACCENT BELOW", 7992 direction="nsm", 7993 linebreak="cm", 7994 unicodeslot=0x317, 7995 }, 7996 { 7997 category="mn", 7998 cjkwd="a", 7999 combining=0xDC, 8000 description="COMBINING LEFT TACK BELOW", 8001 direction="nsm", 8002 linebreak="cm", 8003 unicodeslot=0x318, 8004 }, 8005 { 8006 category="mn", 8007 cjkwd="a", 8008 combining=0xDC, 8009 description="COMBINING RIGHT TACK BELOW", 8010 direction="nsm", 8011 linebreak="cm", 8012 unicodeslot=0x319, 8013 }, 8014 { 8015 category="mn", 8016 cjkwd="a", 8017 combining=0xE8, 8018 description="COMBINING LEFT ANGLE ABOVE", 8019 direction="nsm", 8020 linebreak="cm", 8021 unicodeslot=0x31A, 8022 }, 8023 { 8024 category="mn", 8025 cjkwd="a", 8026 combining=0xD8, 8027 description="COMBINING HORN", 8028 direction="nsm", 8029 linebreak="cm", 8030 unicodeslot=0x31B, 8031 }, 8032 { 8033 category="mn", 8034 cjkwd="a", 8035 combining=0xDC, 8036 description="COMBINING LEFT HALF RING BELOW", 8037 direction="nsm", 8038 linebreak="cm", 8039 unicodeslot=0x31C, 8040 }, 8041 { 8042 category="mn", 8043 cjkwd="a", 8044 combining=0xDC, 8045 description="COMBINING UP TACK BELOW", 8046 direction="nsm", 8047 linebreak="cm", 8048 unicodeslot=0x31D, 8049 }, 8050 { 8051 category="mn", 8052 cjkwd="a", 8053 combining=0xDC, 8054 description="COMBINING DOWN TACK BELOW", 8055 direction="nsm", 8056 linebreak="cm", 8057 unicodeslot=0x31E, 8058 }, 8059 { 8060 category="mn", 8061 cjkwd="a", 8062 combining=0xDC, 8063 description="COMBINING PLUS SIGN BELOW", 8064 direction="nsm", 8065 linebreak="cm", 8066 unicodeslot=0x31F, 8067 }, 8068 { 8069 category="mn", 8070 cjkwd="a", 8071 combining=0xDC, 8072 description="COMBINING MINUS SIGN BELOW", 8073 direction="nsm", 8074 linebreak="cm", 8075 unicodeslot=0x320, 8076 }, 8077 { 8078 category="mn", 8079 cjkwd="a", 8080 combining=0xCA, 8081 description="COMBINING PALATALIZED HOOK BELOW", 8082 direction="nsm", 8083 linebreak="cm", 8084 unicodeslot=0x321, 8085 }, 8086 { 8087 category="mn", 8088 cjkwd="a", 8089 combining=0xCA, 8090 description="COMBINING RETROFLEX HOOK BELOW", 8091 direction="nsm", 8092 linebreak="cm", 8093 unicodeslot=0x322, 8094 }, 8095 { 8096 category="mn", 8097 cjkwd="a", 8098 combining=0xDC, 8099 contextname="textbottomdot", 8100 description="COMBINING DOT BELOW", 8101 direction="nsm", 8102 linebreak="cm", 8103 unicodeslot=0x323, 8104 }, 8105 { 8106 category="mn", 8107 cjkwd="a", 8108 combining=0xDC, 8109 description="COMBINING DIAERESIS BELOW", 8110 direction="nsm", 8111 linebreak="cm", 8112 unicodeslot=0x324, 8113 }, 8114 { 8115 category="mn", 8116 cjkwd="a", 8117 combining=0xDC, 8118 description="COMBINING RING BELOW", 8119 direction="nsm", 8120 linebreak="cm", 8121 unicodeslot=0x325, 8122 }, 8123 { 8124 category="mn", 8125 cjkwd="a", 8126 combining=0xDC, 8127 contextname="textbottomcomma", 8128 description="COMBINING COMMA BELOW", 8129 direction="nsm", 8130 linebreak="cm", 8131 unicodeslot=0x326, 8132 }, 8133 { 8134 category="mn", 8135 cjkwd="a", 8136 combining=0xCA, 8137 description="COMBINING CEDILLA", 8138 direction="nsm", 8139 linebreak="cm", 8140 unicodeslot=0x327, 8141 }, 8142 { 8143 category="mn", 8144 cjkwd="a", 8145 combining=0xCA, 8146 description="COMBINING OGONEK", 8147 direction="nsm", 8148 linebreak="cm", 8149 synonyms={ "nasal hook" }, 8150 unicodeslot=0x328, 8151 }, 8152 { 8153 category="mn", 8154 cjkwd="a", 8155 combining=0xDC, 8156 description="COMBINING VERTICAL LINE BELOW", 8157 direction="nsm", 8158 linebreak="cm", 8159 unicodeslot=0x329, 8160 }, 8161 { 8162 category="mn", 8163 cjkwd="a", 8164 combining=0xDC, 8165 description="COMBINING BRIDGE BELOW", 8166 direction="nsm", 8167 linebreak="cm", 8168 unicodeslot=0x32A, 8169 }, 8170 { 8171 category="mn", 8172 cjkwd="a", 8173 combining=0xDC, 8174 description="COMBINING INVERTED DOUBLE ARCH BELOW", 8175 direction="nsm", 8176 linebreak="cm", 8177 unicodeslot=0x32B, 8178 }, 8179 { 8180 category="mn", 8181 cjkwd="a", 8182 combining=0xDC, 8183 description="COMBINING CARON BELOW", 8184 direction="nsm", 8185 linebreak="cm", 8186 unicodeslot=0x32C, 8187 }, 8188 { 8189 category="mn", 8190 cjkwd="a", 8191 combining=0xDC, 8192 description="COMBINING CIRCUMFLEX ACCENT BELOW", 8193 direction="nsm", 8194 linebreak="cm", 8195 unicodeslot=0x32D, 8196 }, 8197 { 8198 category="mn", 8199 cjkwd="a", 8200 combining=0xDC, 8201 description="COMBINING BREVE BELOW", 8202 direction="nsm", 8203 linebreak="cm", 8204 unicodeslot=0x32E, 8205 }, 8206 { 8207 category="mn", 8208 cjkwd="a", 8209 combining=0xDC, 8210 description="COMBINING INVERTED BREVE BELOW", 8211 direction="nsm", 8212 linebreak="cm", 8213 unicodeslot=0x32F, 8214 }, 8215 { 8216 category="mn", 8217 cjkwd="a", 8218 combining=0xDC, 8219 description="COMBINING TILDE BELOW", 8220 direction="nsm", 8221 linebreak="cm", 8222 unicodeslot=0x330, 8223 }, 8224 { 8225 category="mn", 8226 cjkwd="a", 8227 combining=0xDC, 8228 description="COMBINING MACRON BELOW", 8229 direction="nsm", 8230 linebreak="cm", 8231 unicodeslot=0x331, 8232 }, 8233 { 8234 category="mn", 8235 cjkwd="a", 8236 combining=0xDC, 8237 description="COMBINING LOW LINE", 8238 direction="nsm", 8239 linebreak="cm", 8240 mathextensible="l", 8241 synonyms={ "underline", "underscore" }, 8242 unicodeslot=0x332, 8243 }, 8244 { 8245 category="mn", 8246 cjkwd="a", 8247 combining=0xDC, 8248 description="COMBINING DOUBLE LOW LINE", 8249 direction="nsm", 8250 linebreak="cm", 8251 synonyms={ "double underline", "double underscore" }, 8252 unicodeslot=0x333, 8253 }, 8254 { 8255 category="mn", 8256 cjkwd="a", 8257 combining=0x1, 8258 description="COMBINING TILDE OVERLAY", 8259 direction="nsm", 8260 linebreak="cm", 8261 unicodeslot=0x334, 8262 }, 8263 { 8264 category="mn", 8265 cjkwd="a", 8266 combining=0x1, 8267 description="COMBINING SHORT STROKE OVERLAY", 8268 direction="nsm", 8269 linebreak="cm", 8270 unicodeslot=0x335, 8271 }, 8272 { 8273 category="mn", 8274 cjkwd="a", 8275 combining=0x1, 8276 description="COMBINING LONG STROKE OVERLAY", 8277 direction="nsm", 8278 linebreak="cm", 8279 unicodeslot=0x336, 8280 }, 8281 { 8282 category="mn", 8283 cjkwd="a", 8284 combining=0x1, 8285 description="COMBINING SHORT SOLIDUS OVERLAY", 8286 direction="nsm", 8287 linebreak="cm", 8288 synonyms={ "short slash overlay" }, 8289 unicodeslot=0x337, 8290 }, 8291 { 8292 category="mn", 8293 cjkwd="a", 8294 combining=0x1, 8295 description="COMBINING LONG SOLIDUS OVERLAY", 8296 direction="nsm", 8297 linebreak="cm", 8298 mathclass="relation", 8299 mathname="not", 8300 synonyms={ "long slash overlay" }, 8301 unicodeslot=0x338, 8302 }, 8303 { 8304 category="mn", 8305 cjkwd="a", 8306 combining=0xDC, 8307 description="COMBINING RIGHT HALF RING BELOW", 8308 direction="nsm", 8309 linebreak="cm", 8310 unicodeslot=0x339, 8311 }, 8312 { 8313 category="mn", 8314 cjkwd="a", 8315 combining=0xDC, 8316 description="COMBINING INVERTED BRIDGE BELOW", 8317 direction="nsm", 8318 linebreak="cm", 8319 unicodeslot=0x33A, 8320 }, 8321 { 8322 category="mn", 8323 cjkwd="a", 8324 combining=0xDC, 8325 description="COMBINING SQUARE BELOW", 8326 direction="nsm", 8327 linebreak="cm", 8328 unicodeslot=0x33B, 8329 }, 8330 { 8331 category="mn", 8332 cjkwd="a", 8333 combining=0xDC, 8334 description="COMBINING SEAGULL BELOW", 8335 direction="nsm", 8336 linebreak="cm", 8337 unicodeslot=0x33C, 8338 }, 8339 { 8340 category="mn", 8341 cjkwd="a", 8342 combining=0xE6, 8343 description="COMBINING X ABOVE", 8344 direction="nsm", 8345 linebreak="cm", 8346 unicodeslot=0x33D, 8347 }, 8348 { 8349 category="mn", 8350 cjkwd="a", 8351 combining=0xE6, 8352 description="COMBINING VERTICAL TILDE", 8353 direction="nsm", 8354 linebreak="cm", 8355 unicodeslot=0x33E, 8356 }, 8357 { 8358 category="mn", 8359 cjkwd="a", 8360 combining=0xE6, 8361 description="COMBINING DOUBLE OVERLINE", 8362 direction="nsm", 8363 linebreak="cm", 8364 unicodeslot=0x33F, 8365 }, 8366 { 8367 category="mn", 8368 cjkwd="a", 8369 combining=0xE6, 8370 description="COMBINING GRAVE TONE MARK", 8371 direction="nsm", 8372 linebreak="cm", 8373 specials={ "char", 0x300 }, 8374 unicodeslot=0x340, 8375 }, 8376 { 8377 category="mn", 8378 cjkwd="a", 8379 combining=0xE6, 8380 description="COMBINING ACUTE TONE MARK", 8381 direction="nsm", 8382 linebreak="cm", 8383 specials={ "char", 0x301 }, 8384 unicodeslot=0x341, 8385 }, 8386 { 8387 category="mn", 8388 cjkwd="a", 8389 combining=0xE6, 8390 description="COMBINING GREEK PERISPOMENI", 8391 direction="nsm", 8392 linebreak="cm", 8393 unicodeslot=0x342, 8394 }, 8395 { 8396 category="mn", 8397 cjkwd="a", 8398 combining=0xE6, 8399 description="COMBINING GREEK KORONIS", 8400 direction="nsm", 8401 linebreak="cm", 8402 specials={ "char", 0x313 }, 8403 unicodeslot=0x343, 8404 }, 8405 { 8406 category="mn", 8407 cjkwd="a", 8408 combining=0xE6, 8409 description="COMBINING GREEK DIALYTIKA TONOS", 8410 direction="nsm", 8411 linebreak="cm", 8412 specials={ "char", 0x308, 0x301 }, 8413 unicodeslot=0x344, 8414 }, 8415 { 8416 category="mn", 8417 cjkwd="a", 8418 combining=0xF0, 8419 description="COMBINING GREEK YPOGEGRAMMENI", 8420 direction="nsm", 8421 linebreak="cm", 8422 synonyms={ "greek iota subscript", "greek non-spacing iota below" }, 8423 uccode=0x399, 8424 unicodeslot=0x345, 8425 }, 8426 { 8427 category="mn", 8428 cjkwd="a", 8429 combining=0xE6, 8430 description="COMBINING BRIDGE ABOVE", 8431 direction="nsm", 8432 linebreak="cm", 8433 unicodeslot=0x346, 8434 }, 8435 { 8436 category="mn", 8437 cjkwd="a", 8438 combining=0xDC, 8439 description="COMBINING EQUALS SIGN BELOW", 8440 direction="nsm", 8441 linebreak="cm", 8442 unicodeslot=0x347, 8443 }, 8444 { 8445 category="mn", 8446 cjkwd="a", 8447 combining=0xDC, 8448 description="COMBINING DOUBLE VERTICAL LINE BELOW", 8449 direction="nsm", 8450 linebreak="cm", 8451 unicodeslot=0x348, 8452 }, 8453 { 8454 category="mn", 8455 cjkwd="a", 8456 combining=0xDC, 8457 description="COMBINING LEFT ANGLE BELOW", 8458 direction="nsm", 8459 linebreak="cm", 8460 unicodeslot=0x349, 8461 }, 8462 { 8463 category="mn", 8464 cjkwd="a", 8465 combining=0xE6, 8466 description="COMBINING NOT TILDE ABOVE", 8467 direction="nsm", 8468 linebreak="cm", 8469 unicodeslot=0x34A, 8470 }, 8471 { 8472 category="mn", 8473 cjkwd="a", 8474 combining=0xE6, 8475 description="COMBINING HOMOTHETIC ABOVE", 8476 direction="nsm", 8477 linebreak="cm", 8478 unicodeslot=0x34B, 8479 }, 8480 { 8481 category="mn", 8482 cjkwd="a", 8483 combining=0xE6, 8484 description="COMBINING ALMOST EQUAL TO ABOVE", 8485 direction="nsm", 8486 linebreak="cm", 8487 unicodeslot=0x34C, 8488 }, 8489 { 8490 category="mn", 8491 cjkwd="a", 8492 combining=0xDC, 8493 description="COMBINING LEFT RIGHT ARROW BELOW", 8494 direction="nsm", 8495 linebreak="cm", 8496 unicodeslot=0x34D, 8497 }, 8498 { 8499 category="mn", 8500 cjkwd="a", 8501 combining=0xDC, 8502 description="COMBINING UPWARDS ARROW BELOW", 8503 direction="nsm", 8504 linebreak="cm", 8505 unicodeslot=0x34E, 8506 }, 8507 { 8508 category="mn", 8509 cjkwd="a", 8510 description="COMBINING GRAPHEME JOINER", 8511 direction="nsm", 8512 linebreak="gl", 8513 synonyms={ "cgj" }, 8514 unicodeslot=0x34F, 8515 }, 8516 { 8517 category="mn", 8518 cjkwd="a", 8519 combining=0xE6, 8520 description="COMBINING RIGHT ARROWHEAD ABOVE", 8521 direction="nsm", 8522 linebreak="cm", 8523 unicodeslot=0x350, 8524 }, 8525 { 8526 category="mn", 8527 cjkwd="a", 8528 combining=0xE6, 8529 description="COMBINING LEFT HALF RING ABOVE", 8530 direction="nsm", 8531 linebreak="cm", 8532 unicodeslot=0x351, 8533 }, 8534 { 8535 category="mn", 8536 cjkwd="a", 8537 combining=0xE6, 8538 description="COMBINING FERMATA", 8539 direction="nsm", 8540 linebreak="cm", 8541 unicodeslot=0x352, 8542 }, 8543 { 8544 category="mn", 8545 cjkwd="a", 8546 combining=0xDC, 8547 description="COMBINING X BELOW", 8548 direction="nsm", 8549 linebreak="cm", 8550 unicodeslot=0x353, 8551 }, 8552 { 8553 category="mn", 8554 cjkwd="a", 8555 combining=0xDC, 8556 description="COMBINING LEFT ARROWHEAD BELOW", 8557 direction="nsm", 8558 linebreak="cm", 8559 unicodeslot=0x354, 8560 }, 8561 { 8562 category="mn", 8563 cjkwd="a", 8564 combining=0xDC, 8565 description="COMBINING RIGHT ARROWHEAD BELOW", 8566 direction="nsm", 8567 linebreak="cm", 8568 unicodeslot=0x355, 8569 }, 8570 { 8571 category="mn", 8572 cjkwd="a", 8573 combining=0xDC, 8574 description="COMBINING RIGHT ARROWHEAD AND UP ARROWHEAD BELOW", 8575 direction="nsm", 8576 linebreak="cm", 8577 unicodeslot=0x356, 8578 }, 8579 { 8580 category="mn", 8581 cjkwd="a", 8582 combining=0xE6, 8583 description="COMBINING RIGHT HALF RING ABOVE", 8584 direction="nsm", 8585 linebreak="cm", 8586 unicodeslot=0x357, 8587 }, 8588 { 8589 category="mn", 8590 cjkwd="a", 8591 combining=0xE8, 8592 description="COMBINING DOT ABOVE RIGHT", 8593 direction="nsm", 8594 linebreak="cm", 8595 unicodeslot=0x358, 8596 }, 8597 { 8598 category="mn", 8599 cjkwd="a", 8600 combining=0xDC, 8601 description="COMBINING ASTERISK BELOW", 8602 direction="nsm", 8603 linebreak="cm", 8604 unicodeslot=0x359, 8605 }, 8606 { 8607 category="mn", 8608 cjkwd="a", 8609 combining=0xDC, 8610 description="COMBINING DOUBLE RING BELOW", 8611 direction="nsm", 8612 linebreak="cm", 8613 unicodeslot=0x35A, 8614 }, 8615 { 8616 category="mn", 8617 cjkwd="a", 8618 combining=0xE6, 8619 description="COMBINING ZIGZAG ABOVE", 8620 direction="nsm", 8621 linebreak="cm", 8622 unicodeslot=0x35B, 8623 }, 8624 { 8625 category="mn", 8626 cjkwd="a", 8627 combining=0xE9, 8628 description="COMBINING DOUBLE BREVE BELOW", 8629 direction="nsm", 8630 linebreak="gl", 8631 synonyms={ "ligature tie below", "papyrological hyphen" }, 8632 unicodeslot=0x35C, 8633 }, 8634 { 8635 category="mn", 8636 cjkwd="a", 8637 combining=0xEA, 8638 description="COMBINING DOUBLE BREVE", 8639 direction="nsm", 8640 linebreak="gl", 8641 unicodeslot=0x35D, 8642 }, 8643 { 8644 category="mn", 8645 cjkwd="a", 8646 combining=0xEA, 8647 description="COMBINING DOUBLE MACRON", 8648 direction="nsm", 8649 linebreak="gl", 8650 unicodeslot=0x35E, 8651 }, 8652 { 8653 category="mn", 8654 cjkwd="a", 8655 combining=0xE9, 8656 description="COMBINING DOUBLE MACRON BELOW", 8657 direction="nsm", 8658 linebreak="gl", 8659 unicodeslot=0x35F, 8660 }, 8661 { 8662 category="mn", 8663 cjkwd="a", 8664 combining=0xEA, 8665 description="COMBINING DOUBLE TILDE", 8666 direction="nsm", 8667 linebreak="gl", 8668 unicodeslot=0x360, 8669 }, 8670 { 8671 category="mn", 8672 cjkwd="a", 8673 combining=0xEA, 8674 description="COMBINING DOUBLE INVERTED BREVE", 8675 direction="nsm", 8676 linebreak="gl", 8677 synonyms={ "ligature tie" }, 8678 unicodeslot=0x361, 8679 }, 8680 { 8681 category="mn", 8682 cjkwd="a", 8683 combining=0xE9, 8684 description="COMBINING DOUBLE RIGHTWARDS ARROW BELOW", 8685 direction="nsm", 8686 linebreak="gl", 8687 unicodeslot=0x362, 8688 }, 8689 { 8690 category="mn", 8691 cjkwd="a", 8692 combining=0xE6, 8693 description="COMBINING LATIN SMALL LETTER A", 8694 direction="nsm", 8695 linebreak="cm", 8696 unicodeslot=0x363, 8697 }, 8698 { 8699 category="mn", 8700 cjkwd="a", 8701 combining=0xE6, 8702 description="COMBINING LATIN SMALL LETTER E", 8703 direction="nsm", 8704 linebreak="cm", 8705 unicodeslot=0x364, 8706 }, 8707 { 8708 category="mn", 8709 cjkwd="a", 8710 combining=0xE6, 8711 description="COMBINING LATIN SMALL LETTER I", 8712 direction="nsm", 8713 linebreak="cm", 8714 unicodeslot=0x365, 8715 }, 8716 { 8717 category="mn", 8718 cjkwd="a", 8719 combining=0xE6, 8720 description="COMBINING LATIN SMALL LETTER O", 8721 direction="nsm", 8722 linebreak="cm", 8723 unicodeslot=0x366, 8724 }, 8725 { 8726 category="mn", 8727 cjkwd="a", 8728 combining=0xE6, 8729 description="COMBINING LATIN SMALL LETTER U", 8730 direction="nsm", 8731 linebreak="cm", 8732 unicodeslot=0x367, 8733 }, 8734 { 8735 category="mn", 8736 cjkwd="a", 8737 combining=0xE6, 8738 description="COMBINING LATIN SMALL LETTER C", 8739 direction="nsm", 8740 linebreak="cm", 8741 unicodeslot=0x368, 8742 }, 8743 { 8744 category="mn", 8745 cjkwd="a", 8746 combining=0xE6, 8747 description="COMBINING LATIN SMALL LETTER D", 8748 direction="nsm", 8749 linebreak="cm", 8750 unicodeslot=0x369, 8751 }, 8752 { 8753 category="mn", 8754 cjkwd="a", 8755 combining=0xE6, 8756 description="COMBINING LATIN SMALL LETTER H", 8757 direction="nsm", 8758 linebreak="cm", 8759 unicodeslot=0x36A, 8760 }, 8761 { 8762 category="mn", 8763 cjkwd="a", 8764 combining=0xE6, 8765 description="COMBINING LATIN SMALL LETTER M", 8766 direction="nsm", 8767 linebreak="cm", 8768 unicodeslot=0x36B, 8769 }, 8770 { 8771 category="mn", 8772 cjkwd="a", 8773 combining=0xE6, 8774 description="COMBINING LATIN SMALL LETTER R", 8775 direction="nsm", 8776 linebreak="cm", 8777 unicodeslot=0x36C, 8778 }, 8779 { 8780 category="mn", 8781 cjkwd="a", 8782 combining=0xE6, 8783 description="COMBINING LATIN SMALL LETTER T", 8784 direction="nsm", 8785 linebreak="cm", 8786 unicodeslot=0x36D, 8787 }, 8788 { 8789 category="mn", 8790 cjkwd="a", 8791 combining=0xE6, 8792 description="COMBINING LATIN SMALL LETTER V", 8793 direction="nsm", 8794 linebreak="cm", 8795 unicodeslot=0x36E, 8796 }, 8797 { 8798 category="mn", 8799 cjkwd="a", 8800 combining=0xE6, 8801 description="COMBINING LATIN SMALL LETTER X", 8802 direction="nsm", 8803 linebreak="cm", 8804 unicodeslot=0x36F, 8805 }, 8806 { 8807 category="lu", 8808 description="GREEK CAPITAL LETTER HETA", 8809 direction="l", 8810 lccode=0x371, 8811 linebreak="al", 8812 unicodeslot=0x370, 8813 }, 8814 { 8815 category="ll", 8816 description="GREEK SMALL LETTER HETA", 8817 direction="l", 8818 linebreak="al", 8819 unicodeslot=0x371, 8820 }, 8821 { 8822 category="lu", 8823 description="GREEK CAPITAL LETTER ARCHAIC SAMPI", 8824 direction="l", 8825 lccode=0x373, 8826 linebreak="al", 8827 unicodeslot=0x372, 8828 }, 8829 { 8830 category="ll", 8831 description="GREEK SMALL LETTER ARCHAIC SAMPI", 8832 direction="l", 8833 linebreak="al", 8834 unicodeslot=0x373, 8835 }, 8836 { 8837 category="sk", 8838 description="GREEK NUMERAL SIGN", 8839 direction="on", 8840 linebreak="al", 8841 specials={ "char", 0x2B9 }, 8842 unicodeslot=0x374, 8843 }, 8844 { 8845 category="sk", 8846 description="GREEK LOWER NUMERAL SIGN", 8847 direction="on", 8848 linebreak="al", 8849 unicodeslot=0x375, 8850 }, 8851 { 8852 category="lu", 8853 description="GREEK CAPITAL LETTER PAMPHYLIAN DIGAMMA", 8854 direction="l", 8855 lccode=0x377, 8856 linebreak="al", 8857 unicodeslot=0x376, 8858 }, 8859 { 8860 category="ll", 8861 description="GREEK SMALL LETTER PAMPHYLIAN DIGAMMA", 8862 direction="l", 8863 linebreak="al", 8864 unicodeslot=0x377, 8865 }, 8866 [0x37A]={ 8867 category="lm", 8868 description="GREEK YPOGEGRAMMENI", 8869 direction="l", 8870 linebreak="al", 8871 specials={ "compat", 0x20, 0x345 }, 8872 unicodeslot=0x37A, 8873 }, 8874 [0x37B]={ 8875 category="ll", 8876 description="GREEK SMALL REVERSED LUNATE SIGMA SYMBOL", 8877 direction="l", 8878 linebreak="al", 8879 uccode=0x3FD, 8880 unicodeslot=0x37B, 8881 }, 8882 [0x37C]={ 8883 category="ll", 8884 description="GREEK SMALL DOTTED LUNATE SIGMA SYMBOL", 8885 direction="l", 8886 linebreak="al", 8887 uccode=0x3FE, 8888 unicodeslot=0x37C, 8889 }, 8890 [0x37D]={ 8891 category="ll", 8892 description="GREEK SMALL REVERSED DOTTED LUNATE SIGMA SYMBOL", 8893 direction="l", 8894 linebreak="al", 8895 uccode=0x3FF, 8896 unicodeslot=0x37D, 8897 }, 8898 [0x37E]={ 8899 category="po", 8900 description="GREEK QUESTION MARK", 8901 direction="on", 8902 linebreak="is", 8903 specials={ "char", 0x3B }, 8904 unicodeslot=0x37E, 8905 }, 8906 [0x37F]={ 8907 category="lu", 8908 description="GREEK CAPITAL LETTER YOT", 8909 direction="l", 8910 lccode=0x3F3, 8911 linebreak="al", 8912 unicodeslot=0x37F, 8913 }, 8914 [0x384]={ 8915 category="sk", 8916 contextname="greektonos", 8917 description="GREEK TONOS", 8918 direction="on", 8919 linebreak="al", 8920 specials={ "compat", 0x20, 0x301 }, 8921 unicodeslot=0x384, 8922 }, 8923 [0x385]={ 8924 category="sk", 8925 contextname="greekdialytikatonos", 8926 description="GREEK DIALYTIKA TONOS", 8927 direction="on", 8928 linebreak="al", 8929 specials={ "char", 0xA8, 0x301 }, 8930 unicodeslot=0x385, 8931 }, 8932 [0x386]={ 8933 category="lu", 8934 contextname="greekAlphatonos", 8935 description="GREEK CAPITAL LETTER ALPHA WITH TONOS", 8936 direction="l", 8937 lccode=0x3AC, 8938 linebreak="al", 8939 shcode=0x391, 8940 specials={ "char", 0x391, 0x301 }, 8941 unicodeslot=0x386, 8942 }, 8943 [0x387]={ 8944 category="po", 8945 description="GREEK ANO TELEIA", 8946 direction="on", 8947 linebreak="al", 8948 specials={ "char", 0xB7 }, 8949 unicodeslot=0x387, 8950 }, 8951 [0x388]={ 8952 category="lu", 8953 contextname="greekEpsilontonos", 8954 description="GREEK CAPITAL LETTER EPSILON WITH TONOS", 8955 direction="l", 8956 lccode=0x3AD, 8957 linebreak="al", 8958 shcode=0x395, 8959 specials={ "char", 0x395, 0x301 }, 8960 unicodeslot=0x388, 8961 }, 8962 [0x389]={ 8963 category="lu", 8964 contextname="greekEtatonos", 8965 description="GREEK CAPITAL LETTER ETA WITH TONOS", 8966 direction="l", 8967 lccode=0x3AE, 8968 linebreak="al", 8969 shcode=0x397, 8970 specials={ "char", 0x397, 0x301 }, 8971 unicodeslot=0x389, 8972 }, 8973 [0x38A]={ 8974 category="lu", 8975 contextname="greekIotatonos", 8976 description="GREEK CAPITAL LETTER IOTA WITH TONOS", 8977 direction="l", 8978 lccode=0x3AF, 8979 linebreak="al", 8980 shcode=0x399, 8981 specials={ "char", 0x399, 0x301 }, 8982 unicodeslot=0x38A, 8983 }, 8984 [0x38C]={ 8985 category="lu", 8986 contextname="greekOmicrontonos", 8987 description="GREEK CAPITAL LETTER OMICRON WITH TONOS", 8988 direction="l", 8989 lccode=0x3CC, 8990 linebreak="al", 8991 shcode=0x39F, 8992 specials={ "char", 0x39F, 0x301 }, 8993 unicodeslot=0x38C, 8994 }, 8995 [0x38E]={ 8996 category="lu", 8997 contextname="greekUpsilontonos", 8998 description="GREEK CAPITAL LETTER UPSILON WITH TONOS", 8999 direction="l", 9000 lccode=0x3CD, 9001 linebreak="al", 9002 shcode=0x3A5, 9003 specials={ "char", 0x3A5, 0x301 }, 9004 unicodeslot=0x38E, 9005 }, 9006 [0x38F]={ 9007 category="lu", 9008 contextname="greekOmegatonos", 9009 description="GREEK CAPITAL LETTER OMEGA WITH TONOS", 9010 direction="l", 9011 lccode=0x3CE, 9012 linebreak="al", 9013 shcode=0x3A9, 9014 specials={ "char", 0x3A9, 0x301 }, 9015 unicodeslot=0x38F, 9016 }, 9017 [0x390]={ 9018 category="ll", 9019 contextname="greekiotadialytikatonos", 9020 description="GREEK SMALL LETTER IOTA WITH DIALYTIKA AND TONOS", 9021 direction="l", 9022 linebreak="al", 9023 shcode=0x3B9, 9024 specials={ "char", 0x3CA, 0x301 }, 9025 uccode={ 0x3B9, 0x308, 0x301 }, 9026 unicodeslot=0x390, 9027 }, 9028 [0x391]={ 9029 category="lu", 9030 cjkwd="a", 9031 contextname="greekAlpha", 9032 description="GREEK CAPITAL LETTER ALPHA", 9033 direction="l", 9034 lccode=0x3B1, 9035 linebreak="al", 9036 mathclass="variable", 9037 mathname="Alpha", 9038 unicodeslot=0x391, 9039 }, 9040 [0x392]={ 9041 category="lu", 9042 cjkwd="a", 9043 contextname="greekBeta", 9044 description="GREEK CAPITAL LETTER BETA", 9045 direction="l", 9046 lccode=0x3B2, 9047 linebreak="al", 9048 mathclass="variable", 9049 mathname="Beta", 9050 unicodeslot=0x392, 9051 }, 9052 [0x393]={ 9053 category="lu", 9054 cjkwd="a", 9055 contextname="greekGamma", 9056 description="GREEK CAPITAL LETTER GAMMA", 9057 direction="l", 9058 lccode=0x3B3, 9059 linebreak="al", 9060 mathclass="variable", 9061 mathname="Gamma", 9062 synonyms={ "gamma function" }, 9063 unicodeslot=0x393, 9064 }, 9065 [0x394]={ 9066 category="lu", 9067 cjkwd="a", 9068 contextname="greekDelta", 9069 description="GREEK CAPITAL LETTER DELTA", 9070 direction="l", 9071 lccode=0x3B4, 9072 linebreak="al", 9073 mathclass="variable", 9074 mathname="Delta", 9075 unicodeslot=0x394, 9076 }, 9077 [0x395]={ 9078 category="lu", 9079 cjkwd="a", 9080 contextname="greekEpsilon", 9081 description="GREEK CAPITAL LETTER EPSILON", 9082 direction="l", 9083 lccode=0x3B5, 9084 linebreak="al", 9085 mathclass="variable", 9086 mathname="Epsilon", 9087 unicodeslot=0x395, 9088 }, 9089 [0x396]={ 9090 category="lu", 9091 cjkwd="a", 9092 contextname="greekZeta", 9093 description="GREEK CAPITAL LETTER ZETA", 9094 direction="l", 9095 lccode=0x3B6, 9096 linebreak="al", 9097 mathclass="variable", 9098 mathname="Zeta", 9099 unicodeslot=0x396, 9100 }, 9101 [0x397]={ 9102 category="lu", 9103 cjkwd="a", 9104 contextname="greekEta", 9105 description="GREEK CAPITAL LETTER ETA", 9106 direction="l", 9107 lccode=0x3B7, 9108 linebreak="al", 9109 mathclass="variable", 9110 mathname="Eta", 9111 unicodeslot=0x397, 9112 }, 9113 [0x398]={ 9114 category="lu", 9115 cjkwd="a", 9116 contextname="greekTheta", 9117 description="GREEK CAPITAL LETTER THETA", 9118 direction="l", 9119 lccode=0x3B8, 9120 linebreak="al", 9121 mathclass="variable", 9122 mathname="Theta", 9123 unicodeslot=0x398, 9124 }, 9125 [0x399]={ 9126 category="lu", 9127 cjkwd="a", 9128 contextname="greekIota", 9129 description="GREEK CAPITAL LETTER IOTA", 9130 direction="l", 9131 lccode=0x3B9, 9132 linebreak="al", 9133 mathclass="variable", 9134 mathname="Iota", 9135 unicodeslot=0x399, 9136 }, 9137 [0x39A]={ 9138 category="lu", 9139 cjkwd="a", 9140 contextname="greekKappa", 9141 description="GREEK CAPITAL LETTER KAPPA", 9142 direction="l", 9143 lccode=0x3BA, 9144 linebreak="al", 9145 mathclass="variable", 9146 mathname="Kappa", 9147 unicodeslot=0x39A, 9148 }, 9149 [0x39B]={ 9150 category="lu", 9151 cjkwd="a", 9152 contextname="greekLambda", 9153 description="GREEK CAPITAL LETTER LAMDA", 9154 direction="l", 9155 lccode=0x3BB, 9156 linebreak="al", 9157 mathclass="variable", 9158 mathname="Lambda", 9159 unicodeslot=0x39B, 9160 }, 9161 [0x39C]={ 9162 category="lu", 9163 cjkwd="a", 9164 contextname="greekMu", 9165 description="GREEK CAPITAL LETTER MU", 9166 direction="l", 9167 lccode=0x3BC, 9168 linebreak="al", 9169 mathclass="variable", 9170 mathname="Mu", 9171 unicodeslot=0x39C, 9172 }, 9173 [0x39D]={ 9174 category="lu", 9175 cjkwd="a", 9176 contextname="greekNu", 9177 description="GREEK CAPITAL LETTER NU", 9178 direction="l", 9179 lccode=0x3BD, 9180 linebreak="al", 9181 mathclass="variable", 9182 mathname="Nu", 9183 unicodeslot=0x39D, 9184 }, 9185 [0x39E]={ 9186 category="lu", 9187 cjkwd="a", 9188 contextname="greekXi", 9189 description="GREEK CAPITAL LETTER XI", 9190 direction="l", 9191 lccode=0x3BE, 9192 linebreak="al", 9193 mathclass="variable", 9194 mathname="Xi", 9195 unicodeslot=0x39E, 9196 }, 9197 [0x39F]={ 9198 category="lu", 9199 cjkwd="a", 9200 contextname="greekOmicron", 9201 description="GREEK CAPITAL LETTER OMICRON", 9202 direction="l", 9203 lccode=0x3BF, 9204 linebreak="al", 9205 mathclass="variable", 9206 mathname="Omicron", 9207 unicodeslot=0x39F, 9208 }, 9209 [0x3A0]={ 9210 category="lu", 9211 cjkwd="a", 9212 contextname="greekPi", 9213 description="GREEK CAPITAL LETTER PI", 9214 direction="l", 9215 lccode=0x3C0, 9216 linebreak="al", 9217 mathclass="variable", 9218 mathname="Pi", 9219 unicodeslot=0x3A0, 9220 }, 9221 [0x3A1]={ 9222 category="lu", 9223 cjkwd="a", 9224 contextname="greekRho", 9225 description="GREEK CAPITAL LETTER RHO", 9226 direction="l", 9227 lccode=0x3C1, 9228 linebreak="al", 9229 mathclass="variable", 9230 mathname="Rho", 9231 unicodeslot=0x3A1, 9232 }, 9233 [0x3A3]={ 9234 category="lu", 9235 cjkwd="a", 9236 contextname="greekSigma", 9237 description="GREEK CAPITAL LETTER SIGMA", 9238 direction="l", 9239 lccode=0x3C3, 9240 linebreak="al", 9241 mathclass="variable", 9242 mathname="Sigma", 9243 unicodeslot=0x3A3, 9244 }, 9245 [0x3A4]={ 9246 category="lu", 9247 cjkwd="a", 9248 contextname="greekTau", 9249 description="GREEK CAPITAL LETTER TAU", 9250 direction="l", 9251 lccode=0x3C4, 9252 linebreak="al", 9253 mathclass="variable", 9254 mathname="Tau", 9255 unicodeslot=0x3A4, 9256 }, 9257 [0x3A5]={ 9258 category="lu", 9259 cjkwd="a", 9260 contextname="greekUpsilon", 9261 description="GREEK CAPITAL LETTER UPSILON", 9262 direction="l", 9263 lccode=0x3C5, 9264 linebreak="al", 9265 mathclass="variable", 9266 mathname="Upsilon", 9267 unicodeslot=0x3A5, 9268 }, 9269 [0x3A6]={ 9270 category="lu", 9271 cjkwd="a", 9272 contextname="greekPhi", 9273 description="GREEK CAPITAL LETTER PHI", 9274 direction="l", 9275 lccode=0x3C6, 9276 linebreak="al", 9277 mathclass="variable", 9278 mathname="Phi", 9279 unicodeslot=0x3A6, 9280 }, 9281 [0x3A7]={ 9282 category="lu", 9283 cjkwd="a", 9284 contextname="greekChi", 9285 description="GREEK CAPITAL LETTER CHI", 9286 direction="l", 9287 lccode=0x3C7, 9288 linebreak="al", 9289 mathclass="variable", 9290 mathname="Chi", 9291 unicodeslot=0x3A7, 9292 }, 9293 [0x3A8]={ 9294 category="lu", 9295 cjkwd="a", 9296 contextname="greekPsi", 9297 description="GREEK CAPITAL LETTER PSI", 9298 direction="l", 9299 lccode=0x3C8, 9300 linebreak="al", 9301 mathclass="variable", 9302 mathname="Psi", 9303 unicodeslot=0x3A8, 9304 }, 9305 [0x3A9]={ 9306 category="lu", 9307 cjkwd="a", 9308 contextname="greekOmega", 9309 description="GREEK CAPITAL LETTER OMEGA", 9310 direction="l", 9311 lccode=0x3C9, 9312 linebreak="al", 9313 mathclass="variable", 9314 mathname="Omega", 9315 unicodeslot=0x3A9, 9316 }, 9317 [0x3AA]={ 9318 category="lu", 9319 contextname="greekIotadialytika", 9320 description="GREEK CAPITAL LETTER IOTA WITH DIALYTIKA", 9321 direction="l", 9322 lccode=0x3CA, 9323 linebreak="al", 9324 mathclass="variable", 9325 shcode=0x399, 9326 specials={ "char", 0x399, 0x308 }, 9327 unicodeslot=0x3AA, 9328 }, 9329 [0x3AB]={ 9330 category="lu", 9331 contextname="greekUpsilondialytika", 9332 description="GREEK CAPITAL LETTER UPSILON WITH DIALYTIKA", 9333 direction="l", 9334 lccode=0x3CB, 9335 linebreak="al", 9336 shcode=0x3A5, 9337 specials={ "char", 0x3A5, 0x308 }, 9338 unicodeslot=0x3AB, 9339 }, 9340 [0x3AC]={ 9341 category="ll", 9342 contextname="greekalphatonos", 9343 description="GREEK SMALL LETTER ALPHA WITH TONOS", 9344 direction="l", 9345 linebreak="al", 9346 shcode=0x3B1, 9347 specials={ "char", 0x3B1, 0x301 }, 9348 uccode=0x386, 9349 unicodeslot=0x3AC, 9350 }, 9351 [0x3AD]={ 9352 category="ll", 9353 contextname="greekepsilontonos", 9354 description="GREEK SMALL LETTER EPSILON WITH TONOS", 9355 direction="l", 9356 linebreak="al", 9357 shcode=0x3B5, 9358 specials={ "char", 0x3B5, 0x301 }, 9359 uccode=0x388, 9360 unicodeslot=0x3AD, 9361 }, 9362 [0x3AE]={ 9363 category="ll", 9364 contextname="greeketatonos", 9365 description="GREEK SMALL LETTER ETA WITH TONOS", 9366 direction="l", 9367 linebreak="al", 9368 shcode=0x3B7, 9369 specials={ "char", 0x3B7, 0x301 }, 9370 uccode=0x389, 9371 unicodeslot=0x3AE, 9372 }, 9373 [0x3AF]={ 9374 category="ll", 9375 contextname="greekiotatonos", 9376 description="GREEK SMALL LETTER IOTA WITH TONOS", 9377 direction="l", 9378 linebreak="al", 9379 shcode=0x3B9, 9380 specials={ "char", 0x3B9, 0x301 }, 9381 uccode=0x38A, 9382 unicodeslot=0x3AF, 9383 }, 9384 [0x3B0]={ 9385 category="ll", 9386 contextname="greekupsilondialytikatonos", 9387 description="GREEK SMALL LETTER UPSILON WITH DIALYTIKA AND TONOS", 9388 direction="l", 9389 linebreak="al", 9390 shcode=0x3C5, 9391 specials={ "char", 0x3CB, 0x301 }, 9392 uccode={ 0x3C5, 0x308, 0x301 }, 9393 unicodeslot=0x3B0, 9394 }, 9395 [0x3B1]={ 9396 category="ll", 9397 cjkwd="a", 9398 contextname="greekalpha", 9399 description="GREEK SMALL LETTER ALPHA", 9400 direction="l", 9401 linebreak="al", 9402 mathclass="variable", 9403 mathname="alpha", 9404 uccode=0x391, 9405 unicodeslot=0x3B1, 9406 }, 9407 [0x3B2]={ 9408 category="ll", 9409 cjkwd="a", 9410 contextname="greekbeta", 9411 description="GREEK SMALL LETTER BETA", 9412 direction="l", 9413 linebreak="al", 9414 mathclass="variable", 9415 mathname="beta", 9416 uccode=0x392, 9417 unicodeslot=0x3B2, 9418 }, 9419 [0x3B3]={ 9420 category="ll", 9421 cjkwd="a", 9422 contextname="greekgamma", 9423 description="GREEK SMALL LETTER GAMMA", 9424 direction="l", 9425 linebreak="al", 9426 mathclass="variable", 9427 mathname="gamma", 9428 uccode=0x393, 9429 unicodeslot=0x3B3, 9430 }, 9431 [0x3B4]={ 9432 category="ll", 9433 cjkwd="a", 9434 contextname="greekdelta", 9435 description="GREEK SMALL LETTER DELTA", 9436 direction="l", 9437 linebreak="al", 9438 mathclass="variable", 9439 mathname="delta", 9440 uccode=0x394, 9441 unicodeslot=0x3B4, 9442 }, 9443 [0x3B5]={ 9444 category="ll", 9445 cjkwd="a", 9446 contextname="greekepsilon", 9447 description="GREEK SMALL LETTER EPSILON", 9448 direction="l", 9449 linebreak="al", 9450 mathclass="variable", 9451 mathname="varepsilon", 9452 uccode=0x395, 9453 unicodeslot=0x3B5, 9454 }, 9455 [0x3B6]={ 9456 category="ll", 9457 cjkwd="a", 9458 contextname="greekzeta", 9459 description="GREEK SMALL LETTER ZETA", 9460 direction="l", 9461 linebreak="al", 9462 mathclass="variable", 9463 mathname="zeta", 9464 uccode=0x396, 9465 unicodeslot=0x3B6, 9466 }, 9467 [0x3B7]={ 9468 category="ll", 9469 cjkwd="a", 9470 contextname="greeketa", 9471 description="GREEK SMALL LETTER ETA", 9472 direction="l", 9473 linebreak="al", 9474 mathclass="variable", 9475 mathname="eta", 9476 uccode=0x397, 9477 unicodeslot=0x3B7, 9478 }, 9479 [0x3B8]={ 9480 category="ll", 9481 cjkwd="a", 9482 contextname="greektheta", 9483 description="GREEK SMALL LETTER THETA", 9484 direction="l", 9485 linebreak="al", 9486 mathclass="variable", 9487 mathname="theta", 9488 uccode=0x398, 9489 unicodeslot=0x3B8, 9490 }, 9491 [0x3B9]={ 9492 category="ll", 9493 cjkwd="a", 9494 contextname="greekiota", 9495 description="GREEK SMALL LETTER IOTA", 9496 direction="l", 9497 linebreak="al", 9498 mathclass="variable", 9499 mathname="iota", 9500 uccode=0x399, 9501 unicodeslot=0x3B9, 9502 }, 9503 [0x3BA]={ 9504 category="ll", 9505 cjkwd="a", 9506 contextname="greekkappa", 9507 description="GREEK SMALL LETTER KAPPA", 9508 direction="l", 9509 linebreak="al", 9510 mathclass="variable", 9511 mathname="kappa", 9512 uccode=0x39A, 9513 unicodeslot=0x3BA, 9514 }, 9515 [0x3BB]={ 9516 category="ll", 9517 cjkwd="a", 9518 contextname="greeklambda", 9519 description="GREEK SMALL LETTER LAMDA", 9520 direction="l", 9521 linebreak="al", 9522 mathclass="variable", 9523 mathname="lambda", 9524 uccode=0x39B, 9525 unicodeslot=0x3BB, 9526 }, 9527 [0x3BC]={ 9528 category="ll", 9529 cjkwd="a", 9530 contextname="greekmu", 9531 description="GREEK SMALL LETTER MU", 9532 direction="l", 9533 linebreak="al", 9534 mathclass="variable", 9535 mathname="mu", 9536 uccode=0x39C, 9537 unicodeslot=0x3BC, 9538 }, 9539 [0x3BD]={ 9540 category="ll", 9541 cjkwd="a", 9542 contextname="greeknu", 9543 description="GREEK SMALL LETTER NU", 9544 direction="l", 9545 linebreak="al", 9546 mathclass="variable", 9547 mathname="nu", 9548 uccode=0x39D, 9549 unicodeslot=0x3BD, 9550 }, 9551 [0x3BE]={ 9552 category="ll", 9553 cjkwd="a", 9554 contextname="greekxi", 9555 description="GREEK SMALL LETTER XI", 9556 direction="l", 9557 linebreak="al", 9558 mathclass="variable", 9559 mathname="xi", 9560 uccode=0x39E, 9561 unicodeslot=0x3BE, 9562 }, 9563 [0x3BF]={ 9564 category="ll", 9565 cjkwd="a", 9566 contextname="greekomicron", 9567 description="GREEK SMALL LETTER OMICRON", 9568 direction="l", 9569 linebreak="al", 9570 mathclass="variable", 9571 mathname="omicron", 9572 uccode=0x39F, 9573 unicodeslot=0x3BF, 9574 }, 9575 [0x3C0]={ 9576 category="ll", 9577 cjkwd="a", 9578 contextname="greekpi", 9579 description="GREEK SMALL LETTER PI", 9580 direction="l", 9581 linebreak="al", 9582 mathclass="variable", 9583 mathname="mathpiuprightshape", 9584 synonyms={ "mathematical constant 3.141592... pi", "mathematical constant pi" }, 9585 uccode=0x3A0, 9586 unicodeslot=0x3C0, 9587 }, 9588 [0x3C1]={ 9589 category="ll", 9590 cjkwd="a", 9591 contextname="greekrho", 9592 description="GREEK SMALL LETTER RHO", 9593 direction="l", 9594 linebreak="al", 9595 mathclass="variable", 9596 mathname="rho", 9597 uccode=0x3A1, 9598 unicodeslot=0x3C1, 9599 }, 9600 [0x3C2]={ 9601 category="ll", 9602 contextname="greekfinalsigma", 9603 description="GREEK SMALL LETTER FINAL SIGMA", 9604 direction="l", 9605 linebreak="al", 9606 mathclass="variable", 9607 mathname="varsigma", 9608 uccode=0x3C3, 9609 unicodeslot=0x3C2, 9610 }, 9611 [0x3C3]={ 9612 category="ll", 9613 cjkwd="a", 9614 contextname="greeksigma", 9615 description="GREEK SMALL LETTER SIGMA", 9616 direction="l", 9617 linebreak="al", 9618 mathclass="variable", 9619 mathname="sigma", 9620 uccode=0x3A3, 9621 unicodeslot=0x3C3, 9622 }, 9623 [0x3C4]={ 9624 category="ll", 9625 cjkwd="a", 9626 contextname="greektau", 9627 description="GREEK SMALL LETTER TAU", 9628 direction="l", 9629 linebreak="al", 9630 mathclass="variable", 9631 mathname="tau", 9632 uccode=0x3A4, 9633 unicodeslot=0x3C4, 9634 }, 9635 [0x3C5]={ 9636 category="ll", 9637 cjkwd="a", 9638 contextname="greekupsilon", 9639 description="GREEK SMALL LETTER UPSILON", 9640 direction="l", 9641 linebreak="al", 9642 mathclass="variable", 9643 mathname="upsilon", 9644 uccode=0x3A5, 9645 unicodeslot=0x3C5, 9646 }, 9647 [0x3C6]={ 9648 category="ll", 9649 cjkwd="a", 9650 contextname="greekphi", 9651 description="GREEK SMALL LETTER PHI", 9652 direction="l", 9653 linebreak="al", 9654 mathclass="variable", 9655 mathname="varphi", 9656 uccode=0x3A6, 9657 unicodeslot=0x3C6, 9658 }, 9659 [0x3C7]={ 9660 category="ll", 9661 cjkwd="a", 9662 contextname="greekchi", 9663 description="GREEK SMALL LETTER CHI", 9664 direction="l", 9665 linebreak="al", 9666 mathclass="variable", 9667 mathname="chi", 9668 uccode=0x3A7, 9669 unicodeslot=0x3C7, 9670 }, 9671 [0x3C8]={ 9672 category="ll", 9673 cjkwd="a", 9674 contextname="greekpsi", 9675 description="GREEK SMALL LETTER PSI", 9676 direction="l", 9677 linebreak="al", 9678 mathclass="variable", 9679 mathname="psi", 9680 uccode=0x3A8, 9681 unicodeslot=0x3C8, 9682 }, 9683 [0x3C9]={ 9684 category="ll", 9685 cjkwd="a", 9686 contextname="greekomega", 9687 description="GREEK SMALL LETTER OMEGA", 9688 direction="l", 9689 linebreak="al", 9690 mathclass="variable", 9691 mathname="omega", 9692 uccode=0x3A9, 9693 unicodeslot=0x3C9, 9694 }, 9695 [0x3CA]={ 9696 category="ll", 9697 contextname="greekiotadialytika", 9698 description="GREEK SMALL LETTER IOTA WITH DIALYTIKA", 9699 direction="l", 9700 linebreak="al", 9701 shcode=0x3B9, 9702 specials={ "char", 0x3B9, 0x308 }, 9703 uccode=0x3AA, 9704 unicodeslot=0x3CA, 9705 }, 9706 [0x3CB]={ 9707 category="ll", 9708 contextname="greekupsilondiaeresis", 9709 description="GREEK SMALL LETTER UPSILON WITH DIALYTIKA", 9710 direction="l", 9711 linebreak="al", 9712 shcode=0x3C5, 9713 specials={ "char", 0x3C5, 0x308 }, 9714 uccode=0x3AB, 9715 unicodeslot=0x3CB, 9716 }, 9717 [0x3CC]={ 9718 category="ll", 9719 contextname="greekomicrontonos", 9720 description="GREEK SMALL LETTER OMICRON WITH TONOS", 9721 direction="l", 9722 linebreak="al", 9723 shcode=0x3BF, 9724 specials={ "char", 0x3BF, 0x301 }, 9725 uccode=0x38C, 9726 unicodeslot=0x3CC, 9727 }, 9728 [0x3CD]={ 9729 category="ll", 9730 contextname="greekupsilontonos", 9731 description="GREEK SMALL LETTER UPSILON WITH TONOS", 9732 direction="l", 9733 linebreak="al", 9734 shcode=0x3C5, 9735 specials={ "char", 0x3C5, 0x301 }, 9736 uccode=0x38E, 9737 unicodeslot=0x3CD, 9738 }, 9739 [0x3CE]={ 9740 category="ll", 9741 contextname="greekomegatonos", 9742 description="GREEK SMALL LETTER OMEGA WITH TONOS", 9743 direction="l", 9744 linebreak="al", 9745 shcode=0x3C9, 9746 specials={ "char", 0x3C9, 0x301 }, 9747 uccode=0x38F, 9748 unicodeslot=0x3CE, 9749 }, 9750 [0x3CF]={ 9751 category="lu", 9752 description="GREEK CAPITAL KAI SYMBOL", 9753 direction="l", 9754 lccode=0x3D7, 9755 linebreak="al", 9756 unicodeslot=0x3CF, 9757 }, 9758 [0x3D0]={ 9759 category="ll", 9760 contextname="greekbetaalt", 9761 description="GREEK BETA SYMBOL", 9762 direction="l", 9763 linebreak="al", 9764 specials={ "compat", 0x3B2 }, 9765 synonyms={ "curled beta" }, 9766 uccode=0x3B2, 9767 unicodeslot=0x3D0, 9768 }, 9769 [0x3D1]={ 9770 category="ll", 9771 contextname="greekthetaalt", 9772 description="GREEK THETA SYMBOL", 9773 direction="l", 9774 linebreak="al", 9775 mathname="varTheta", 9776 specials={ "compat", 0x3B8 }, 9777 synonyms={ "script theta" }, 9778 uccode=0x3B8, 9779 unicodeslot=0x3D1, 9780 }, 9781 [0x3D2]={ 9782 category="lu", 9783 description="GREEK UPSILON WITH HOOK SYMBOL", 9784 direction="l", 9785 linebreak="al", 9786 specials={ "compat", 0x3A5 }, 9787 unicodeslot=0x3D2, 9788 }, 9789 [0x3D3]={ 9790 category="lu", 9791 description="GREEK UPSILON WITH ACUTE AND HOOK SYMBOL", 9792 direction="l", 9793 linebreak="al", 9794 specials={ "char", 0x3D2, 0x301 }, 9795 unicodeslot=0x3D3, 9796 }, 9797 [0x3D4]={ 9798 category="lu", 9799 description="GREEK UPSILON WITH DIAERESIS AND HOOK SYMBOL", 9800 direction="l", 9801 linebreak="al", 9802 specials={ "char", 0x3D2, 0x308 }, 9803 unicodeslot=0x3D4, 9804 }, 9805 [0x3D5]={ 9806 category="ll", 9807 contextname="greekphialt", 9808 description="GREEK PHI SYMBOL", 9809 direction="l", 9810 linebreak="al", 9811 mathname="phi", 9812 specials={ "compat", 0x3C6 }, 9813 uccode=0x3C6, 9814 unicodeslot=0x3D5, 9815 }, 9816 [0x3D6]={ 9817 category="ll", 9818 contextname="greekpialt", 9819 description="GREEK PI SYMBOL", 9820 direction="l", 9821 linebreak="al", 9822 mathname="varpi", 9823 specials={ "compat", 0x3C0 }, 9824 synonyms={ "omega pi" }, 9825 uccode=0x3C0, 9826 unicodeslot=0x3D6, 9827 }, 9828 [0x3D7]={ 9829 category="ll", 9830 description="GREEK KAI SYMBOL", 9831 direction="l", 9832 linebreak="al", 9833 unicodeslot=0x3D7, 9834 }, 9835 [0x3D8]={ 9836 category="lu", 9837 description="GREEK LETTER ARCHAIC KOPPA", 9838 direction="l", 9839 lccode=0x3D9, 9840 linebreak="al", 9841 unicodeslot=0x3D8, 9842 }, 9843 [0x3D9]={ 9844 category="ll", 9845 contextname="greekkoppa", 9846 description="GREEK SMALL LETTER ARCHAIC KOPPA", 9847 direction="l", 9848 linebreak="al", 9849 uccode=0x3D8, 9850 unicodeslot=0x3D9, 9851 }, 9852 [0x3DA]={ 9853 category="lu", 9854 description="GREEK LETTER STIGMA", 9855 direction="l", 9856 lccode=0x3DB, 9857 linebreak="al", 9858 unicodeslot=0x3DA, 9859 }, 9860 [0x3DB]={ 9861 category="ll", 9862 contextname="greekstigma", 9863 description="GREEK SMALL LETTER STIGMA", 9864 direction="l", 9865 linebreak="al", 9866 uccode=0x3DA, 9867 unicodeslot=0x3DB, 9868 }, 9869 [0x3DC]={ 9870 category="lu", 9871 description="GREEK LETTER DIGAMMA", 9872 direction="l", 9873 lccode=0x3DD, 9874 linebreak="al", 9875 mathname="digamma", 9876 unicodeslot=0x3DC, 9877 }, 9878 [0x3DD]={ 9879 category="ll", 9880 contextname="greekdigamma", 9881 description="GREEK SMALL LETTER DIGAMMA", 9882 direction="l", 9883 linebreak="al", 9884 uccode=0x3DC, 9885 unicodeslot=0x3DD, 9886 }, 9887 [0x3DE]={ 9888 category="lu", 9889 description="GREEK LETTER KOPPA", 9890 direction="l", 9891 lccode=0x3DF, 9892 linebreak="al", 9893 unicodeslot=0x3DE, 9894 }, 9895 [0x3DF]={ 9896 category="ll", 9897 contextname="greeknumkoppa", 9898 description="GREEK SMALL LETTER KOPPA", 9899 direction="l", 9900 linebreak="al", 9901 uccode=0x3DE, 9902 unicodeslot=0x3DF, 9903 }, 9904 [0x3E0]={ 9905 category="lu", 9906 description="GREEK LETTER SAMPI", 9907 direction="l", 9908 lccode=0x3E1, 9909 linebreak="al", 9910 unicodeslot=0x3E0, 9911 }, 9912 [0x3E1]={ 9913 category="ll", 9914 contextname="greeksampi", 9915 description="GREEK SMALL LETTER SAMPI", 9916 direction="l", 9917 linebreak="al", 9918 uccode=0x3E0, 9919 unicodeslot=0x3E1, 9920 }, 9921 [0x3E2]={ 9922 category="lu", 9923 description="COPTIC CAPITAL LETTER SHEI", 9924 direction="l", 9925 lccode=0x3E3, 9926 linebreak="al", 9927 unicodeslot=0x3E2, 9928 }, 9929 [0x3E3]={ 9930 category="ll", 9931 description="COPTIC SMALL LETTER SHEI", 9932 direction="l", 9933 linebreak="al", 9934 uccode=0x3E2, 9935 unicodeslot=0x3E3, 9936 }, 9937 [0x3E4]={ 9938 category="lu", 9939 description="COPTIC CAPITAL LETTER FEI", 9940 direction="l", 9941 lccode=0x3E5, 9942 linebreak="al", 9943 unicodeslot=0x3E4, 9944 }, 9945 [0x3E5]={ 9946 category="ll", 9947 description="COPTIC SMALL LETTER FEI", 9948 direction="l", 9949 linebreak="al", 9950 uccode=0x3E4, 9951 unicodeslot=0x3E5, 9952 }, 9953 [0x3E6]={ 9954 category="lu", 9955 description="COPTIC CAPITAL LETTER KHEI", 9956 direction="l", 9957 lccode=0x3E7, 9958 linebreak="al", 9959 unicodeslot=0x3E6, 9960 }, 9961 [0x3E7]={ 9962 category="ll", 9963 description="COPTIC SMALL LETTER KHEI", 9964 direction="l", 9965 linebreak="al", 9966 uccode=0x3E6, 9967 unicodeslot=0x3E7, 9968 }, 9969 [0x3E8]={ 9970 category="lu", 9971 description="COPTIC CAPITAL LETTER HORI", 9972 direction="l", 9973 lccode=0x3E9, 9974 linebreak="al", 9975 unicodeslot=0x3E8, 9976 }, 9977 [0x3E9]={ 9978 category="ll", 9979 description="COPTIC SMALL LETTER HORI", 9980 direction="l", 9981 linebreak="al", 9982 uccode=0x3E8, 9983 unicodeslot=0x3E9, 9984 }, 9985 [0x3EA]={ 9986 category="lu", 9987 description="COPTIC CAPITAL LETTER GANGIA", 9988 direction="l", 9989 lccode=0x3EB, 9990 linebreak="al", 9991 unicodeslot=0x3EA, 9992 }, 9993 [0x3EB]={ 9994 category="ll", 9995 description="COPTIC SMALL LETTER GANGIA", 9996 direction="l", 9997 linebreak="al", 9998 uccode=0x3EA, 9999 unicodeslot=0x3EB, 10000 }, 10001 [0x3EC]={ 10002 category="lu", 10003 description="COPTIC CAPITAL LETTER SHIMA", 10004 direction="l", 10005 lccode=0x3ED, 10006 linebreak="al", 10007 unicodeslot=0x3EC, 10008 }, 10009 [0x3ED]={ 10010 category="ll", 10011 description="COPTIC SMALL LETTER SHIMA", 10012 direction="l", 10013 linebreak="al", 10014 uccode=0x3EC, 10015 unicodeslot=0x3ED, 10016 }, 10017 [0x3EE]={ 10018 category="lu", 10019 description="COPTIC CAPITAL LETTER DEI", 10020 direction="l", 10021 lccode=0x3EF, 10022 linebreak="al", 10023 unicodeslot=0x3EE, 10024 }, 10025 [0x3EF]={ 10026 category="ll", 10027 description="COPTIC SMALL LETTER DEI", 10028 direction="l", 10029 linebreak="al", 10030 uccode=0x3EE, 10031 unicodeslot=0x3EF, 10032 }, 10033 [0x3F0]={ 10034 category="ll", 10035 description="GREEK KAPPA SYMBOL", 10036 direction="l", 10037 linebreak="al", 10038 mathclass="ordinary", 10039 specials={ "compat", 0x3BA }, 10040 uccode=0x3BA, 10041 unicodeslot=0x3F0, 10042 }, 10043 [0x3F1]={ 10044 category="ll", 10045 contextname="greekrhoalt", 10046 description="GREEK RHO SYMBOL", 10047 direction="l", 10048 linebreak="al", 10049 specials={ "compat", 0x3C1 }, 10050 uccode=0x3C1, 10051 unicodeslot=0x3F1, 10052 }, 10053 [0x3F2]={ 10054 category="ll", 10055 contextname="greeksigmalunate", 10056 description="GREEK LUNATE SIGMA SYMBOL", 10057 direction="l", 10058 linebreak="al", 10059 specials={ "compat", 0x3C2 }, 10060 synonyms={ "greek small letter lunate sigma" }, 10061 uccode=0x3F9, 10062 unicodeslot=0x3F2, 10063 }, 10064 [0x3F3]={ 10065 category="ll", 10066 description="GREEK LETTER YOT", 10067 direction="l", 10068 linebreak="al", 10069 unicodeslot=0x3F3, 10070 }, 10071 [0x3F4]={ 10072 category="lu", 10073 description="GREEK CAPITAL THETA SYMBOL", 10074 direction="l", 10075 lccode=0x3B8, 10076 linebreak="al", 10077 specials={ "compat", 0x398 }, 10078 unicodeslot=0x3F4, 10079 }, 10080 [0x3F5]={ 10081 category="ll", 10082 contextname="greekepsilonalt", 10083 description="GREEK LUNATE EPSILON SYMBOL", 10084 direction="l", 10085 linebreak="al", 10086 mathname="epsilon", 10087 specials={ "compat", 0x3B5 }, 10088 synonyms={ "straight epsilon" }, 10089 uccode=0x3B5, 10090 unicodeslot=0x3F5, 10091 }, 10092 [0x3F6]={ 10093 category="sm", 10094 description="GREEK REVERSED LUNATE EPSILON SYMBOL", 10095 direction="on", 10096 linebreak="al", 10097 mathname="backepsilon", 10098 synonyms={ "reversed straight epsilon" }, 10099 unicodeslot=0x3F6, 10100 }, 10101 [0x3F7]={ 10102 category="lu", 10103 description="GREEK CAPITAL LETTER SHO", 10104 direction="l", 10105 lccode=0x3F8, 10106 linebreak="al", 10107 unicodeslot=0x3F7, 10108 }, 10109 [0x3F8]={ 10110 category="ll", 10111 description="GREEK SMALL LETTER SHO", 10112 direction="l", 10113 linebreak="al", 10114 uccode=0x3F7, 10115 unicodeslot=0x3F8, 10116 }, 10117 [0x3F9]={ 10118 category="lu", 10119 contextname="greekSigmalunate", 10120 description="GREEK CAPITAL LUNATE SIGMA SYMBOL", 10121 direction="l", 10122 lccode=0x3F2, 10123 linebreak="al", 10124 specials={ "compat", 0x3A3 }, 10125 unicodeslot=0x3F9, 10126 }, 10127 [0x3FA]={ 10128 category="lu", 10129 description="GREEK CAPITAL LETTER SAN", 10130 direction="l", 10131 lccode=0x3FB, 10132 linebreak="al", 10133 unicodeslot=0x3FA, 10134 }, 10135 [0x3FB]={ 10136 category="ll", 10137 description="GREEK SMALL LETTER SAN", 10138 direction="l", 10139 linebreak="al", 10140 uccode=0x3FA, 10141 unicodeslot=0x3FB, 10142 }, 10143 [0x3FC]={ 10144 category="ll", 10145 description="GREEK RHO WITH STROKE SYMBOL", 10146 direction="l", 10147 linebreak="al", 10148 unicodeslot=0x3FC, 10149 }, 10150 [0x3FD]={ 10151 category="lu", 10152 description="GREEK CAPITAL REVERSED LUNATE SIGMA SYMBOL", 10153 direction="l", 10154 lccode=0x37B, 10155 linebreak="al", 10156 unicodeslot=0x3FD, 10157 }, 10158 [0x3FE]={ 10159 category="lu", 10160 description="GREEK CAPITAL DOTTED LUNATE SIGMA SYMBOL", 10161 direction="l", 10162 lccode=0x37C, 10163 linebreak="al", 10164 unicodeslot=0x3FE, 10165 }, 10166 [0x3FF]={ 10167 category="lu", 10168 description="GREEK CAPITAL REVERSED DOTTED LUNATE SIGMA SYMBOL", 10169 direction="l", 10170 lccode=0x37D, 10171 linebreak="al", 10172 unicodeslot=0x3FF, 10173 }, 10174 [0x400]={ 10175 category="lu", 10176 contextname="cyrillicEgrave", 10177 description="CYRILLIC CAPITAL LETTER IE WITH GRAVE", 10178 direction="l", 10179 lccode=0x450, 10180 linebreak="al", 10181 shcode=0x415, 10182 specials={ "char", 0x415, 0x300 }, 10183 unicodeslot=0x400, 10184 }, 10185 [0x401]={ 10186 category="lu", 10187 cjkwd="a", 10188 contextname="cyrillicYO", 10189 description="CYRILLIC CAPITAL LETTER IO", 10190 direction="l", 10191 lccode=0x451, 10192 linebreak="al", 10193 specials={ "char", 0x415, 0x308 }, 10194 unicodeslot=0x401, 10195 }, 10196 [0x402]={ 10197 category="lu", 10198 contextname="cyrillicDJE", 10199 description="CYRILLIC CAPITAL LETTER DJE", 10200 direction="l", 10201 lccode=0x452, 10202 linebreak="al", 10203 unicodeslot=0x402, 10204 }, 10205 [0x403]={ 10206 category="lu", 10207 contextname="cyrillicGJE", 10208 description="CYRILLIC CAPITAL LETTER GJE", 10209 direction="l", 10210 lccode=0x453, 10211 linebreak="al", 10212 specials={ "char", 0x413, 0x301 }, 10213 unicodeslot=0x403, 10214 }, 10215 [0x404]={ 10216 category="lu", 10217 contextname="cyrillicIE", 10218 description="CYRILLIC CAPITAL LETTER UKRAINIAN IE", 10219 direction="l", 10220 lccode=0x454, 10221 linebreak="al", 10222 unicodeslot=0x404, 10223 }, 10224 [0x405]={ 10225 category="lu", 10226 contextname="cyrillicDZE", 10227 description="CYRILLIC CAPITAL LETTER DZE", 10228 direction="l", 10229 lccode=0x455, 10230 linebreak="al", 10231 unicodeslot=0x405, 10232 }, 10233 [0x406]={ 10234 category="lu", 10235 contextname="cyrillicII", 10236 description="CYRILLIC CAPITAL LETTER BYELORUSSIAN-UKRAINIAN I", 10237 direction="l", 10238 lccode=0x456, 10239 linebreak="al", 10240 unicodeslot=0x406, 10241 }, 10242 [0x407]={ 10243 category="lu", 10244 contextname="cyrillicYI", 10245 description="CYRILLIC CAPITAL LETTER YI", 10246 direction="l", 10247 lccode=0x457, 10248 linebreak="al", 10249 specials={ "char", 0x406, 0x308 }, 10250 unicodeslot=0x407, 10251 }, 10252 [0x408]={ 10253 category="lu", 10254 contextname="cyrillicJE", 10255 description="CYRILLIC CAPITAL LETTER JE", 10256 direction="l", 10257 lccode=0x458, 10258 linebreak="al", 10259 unicodeslot=0x408, 10260 }, 10261 [0x409]={ 10262 category="lu", 10263 contextname="cyrillicLJE", 10264 description="CYRILLIC CAPITAL LETTER LJE", 10265 direction="l", 10266 lccode=0x459, 10267 linebreak="al", 10268 unicodeslot=0x409, 10269 }, 10270 [0x40A]={ 10271 category="lu", 10272 contextname="cyrillicNJE", 10273 description="CYRILLIC CAPITAL LETTER NJE", 10274 direction="l", 10275 lccode=0x45A, 10276 linebreak="al", 10277 unicodeslot=0x40A, 10278 }, 10279 [0x40B]={ 10280 category="lu", 10281 contextname="cyrillicTSHE", 10282 description="CYRILLIC CAPITAL LETTER TSHE", 10283 direction="l", 10284 lccode=0x45B, 10285 linebreak="al", 10286 unicodeslot=0x40B, 10287 }, 10288 [0x40C]={ 10289 category="lu", 10290 contextname="cyrillicKJE", 10291 description="CYRILLIC CAPITAL LETTER KJE", 10292 direction="l", 10293 lccode=0x45C, 10294 linebreak="al", 10295 specials={ "char", 0x41A, 0x301 }, 10296 unicodeslot=0x40C, 10297 }, 10298 [0x40D]={ 10299 category="lu", 10300 contextname="cyrillicIgrave", 10301 description="CYRILLIC CAPITAL LETTER I WITH GRAVE", 10302 direction="l", 10303 lccode=0x45D, 10304 linebreak="al", 10305 shcode=0x418, 10306 specials={ "char", 0x418, 0x300 }, 10307 unicodeslot=0x40D, 10308 }, 10309 [0x40E]={ 10310 category="lu", 10311 contextname="cyrillicUSHRT", 10312 description="CYRILLIC CAPITAL LETTER SHORT U", 10313 direction="l", 10314 lccode=0x45E, 10315 linebreak="al", 10316 specials={ "char", 0x423, 0x306 }, 10317 unicodeslot=0x40E, 10318 }, 10319 [0x40F]={ 10320 category="lu", 10321 contextname="cyrillicDZHE", 10322 description="CYRILLIC CAPITAL LETTER DZHE", 10323 direction="l", 10324 lccode=0x45F, 10325 linebreak="al", 10326 unicodeslot=0x40F, 10327 }, 10328 [0x410]={ 10329 category="lu", 10330 cjkwd="a", 10331 contextname="cyrillicA", 10332 description="CYRILLIC CAPITAL LETTER A", 10333 direction="l", 10334 lccode=0x430, 10335 linebreak="al", 10336 unicodeslot=0x410, 10337 }, 10338 [0x411]={ 10339 category="lu", 10340 cjkwd="a", 10341 contextname="cyrillicB", 10342 description="CYRILLIC CAPITAL LETTER BE", 10343 direction="l", 10344 lccode=0x431, 10345 linebreak="al", 10346 unicodeslot=0x411, 10347 }, 10348 [0x412]={ 10349 category="lu", 10350 cjkwd="a", 10351 contextname="cyrillicV", 10352 description="CYRILLIC CAPITAL LETTER VE", 10353 direction="l", 10354 lccode=0x432, 10355 linebreak="al", 10356 unicodeslot=0x412, 10357 }, 10358 [0x413]={ 10359 category="lu", 10360 cjkwd="a", 10361 contextname="cyrillicG", 10362 description="CYRILLIC CAPITAL LETTER GHE", 10363 direction="l", 10364 lccode=0x433, 10365 linebreak="al", 10366 unicodeslot=0x413, 10367 }, 10368 [0x414]={ 10369 category="lu", 10370 cjkwd="a", 10371 contextname="cyrillicD", 10372 description="CYRILLIC CAPITAL LETTER DE", 10373 direction="l", 10374 lccode=0x434, 10375 linebreak="al", 10376 unicodeslot=0x414, 10377 }, 10378 [0x415]={ 10379 category="lu", 10380 cjkwd="a", 10381 contextname="cyrillicE", 10382 description="CYRILLIC CAPITAL LETTER IE", 10383 direction="l", 10384 lccode=0x435, 10385 linebreak="al", 10386 unicodeslot=0x415, 10387 }, 10388 [0x416]={ 10389 category="lu", 10390 cjkwd="a", 10391 contextname="cyrillicZH", 10392 description="CYRILLIC CAPITAL LETTER ZHE", 10393 direction="l", 10394 lccode=0x436, 10395 linebreak="al", 10396 unicodeslot=0x416, 10397 }, 10398 [0x417]={ 10399 category="lu", 10400 cjkwd="a", 10401 contextname="cyrillicZ", 10402 description="CYRILLIC CAPITAL LETTER ZE", 10403 direction="l", 10404 lccode=0x437, 10405 linebreak="al", 10406 unicodeslot=0x417, 10407 }, 10408 [0x418]={ 10409 category="lu", 10410 cjkwd="a", 10411 contextname="cyrillicI", 10412 description="CYRILLIC CAPITAL LETTER I", 10413 direction="l", 10414 lccode=0x438, 10415 linebreak="al", 10416 unicodeslot=0x418, 10417 }, 10418 [0x419]={ 10419 category="lu", 10420 cjkwd="a", 10421 contextname="cyrillicISHRT", 10422 description="CYRILLIC CAPITAL LETTER SHORT I", 10423 direction="l", 10424 lccode=0x439, 10425 linebreak="al", 10426 specials={ "char", 0x418, 0x306 }, 10427 unicodeslot=0x419, 10428 }, 10429 [0x41A]={ 10430 category="lu", 10431 cjkwd="a", 10432 contextname="cyrillicK", 10433 description="CYRILLIC CAPITAL LETTER KA", 10434 direction="l", 10435 lccode=0x43A, 10436 linebreak="al", 10437 unicodeslot=0x41A, 10438 }, 10439 [0x41B]={ 10440 category="lu", 10441 cjkwd="a", 10442 contextname="cyrillicL", 10443 description="CYRILLIC CAPITAL LETTER EL", 10444 direction="l", 10445 lccode=0x43B, 10446 linebreak="al", 10447 unicodeslot=0x41B, 10448 }, 10449 [0x41C]={ 10450 category="lu", 10451 cjkwd="a", 10452 contextname="cyrillicM", 10453 description="CYRILLIC CAPITAL LETTER EM", 10454 direction="l", 10455 lccode=0x43C, 10456 linebreak="al", 10457 unicodeslot=0x41C, 10458 }, 10459 [0x41D]={ 10460 category="lu", 10461 cjkwd="a", 10462 contextname="cyrillicN", 10463 description="CYRILLIC CAPITAL LETTER EN", 10464 direction="l", 10465 lccode=0x43D, 10466 linebreak="al", 10467 unicodeslot=0x41D, 10468 }, 10469 [0x41E]={ 10470 category="lu", 10471 cjkwd="a", 10472 contextname="cyrillicO", 10473 description="CYRILLIC CAPITAL LETTER O", 10474 direction="l", 10475 lccode=0x43E, 10476 linebreak="al", 10477 unicodeslot=0x41E, 10478 }, 10479 [0x41F]={ 10480 category="lu", 10481 cjkwd="a", 10482 contextname="cyrillicP", 10483 description="CYRILLIC CAPITAL LETTER PE", 10484 direction="l", 10485 lccode=0x43F, 10486 linebreak="al", 10487 unicodeslot=0x41F, 10488 }, 10489 [0x420]={ 10490 category="lu", 10491 cjkwd="a", 10492 contextname="cyrillicR", 10493 description="CYRILLIC CAPITAL LETTER ER", 10494 direction="l", 10495 lccode=0x440, 10496 linebreak="al", 10497 unicodeslot=0x420, 10498 }, 10499 [0x421]={ 10500 category="lu", 10501 cjkwd="a", 10502 contextname="cyrillicS", 10503 description="CYRILLIC CAPITAL LETTER ES", 10504 direction="l", 10505 lccode=0x441, 10506 linebreak="al", 10507 unicodeslot=0x421, 10508 }, 10509 [0x422]={ 10510 category="lu", 10511 cjkwd="a", 10512 contextname="cyrillicT", 10513 description="CYRILLIC CAPITAL LETTER TE", 10514 direction="l", 10515 lccode=0x442, 10516 linebreak="al", 10517 unicodeslot=0x422, 10518 }, 10519 [0x423]={ 10520 category="lu", 10521 cjkwd="a", 10522 contextname="cyrillicU", 10523 description="CYRILLIC CAPITAL LETTER U", 10524 direction="l", 10525 lccode=0x443, 10526 linebreak="al", 10527 unicodeslot=0x423, 10528 }, 10529 [0x424]={ 10530 category="lu", 10531 cjkwd="a", 10532 contextname="cyrillicF", 10533 description="CYRILLIC CAPITAL LETTER EF", 10534 direction="l", 10535 lccode=0x444, 10536 linebreak="al", 10537 unicodeslot=0x424, 10538 }, 10539 [0x425]={ 10540 category="lu", 10541 cjkwd="a", 10542 contextname="cyrillicH", 10543 description="CYRILLIC CAPITAL LETTER HA", 10544 direction="l", 10545 lccode=0x445, 10546 linebreak="al", 10547 unicodeslot=0x425, 10548 }, 10549 [0x426]={ 10550 category="lu", 10551 cjkwd="a", 10552 contextname="cyrillicC", 10553 description="CYRILLIC CAPITAL LETTER TSE", 10554 direction="l", 10555 lccode=0x446, 10556 linebreak="al", 10557 unicodeslot=0x426, 10558 }, 10559 [0x427]={ 10560 category="lu", 10561 cjkwd="a", 10562 contextname="cyrillicCH", 10563 description="CYRILLIC CAPITAL LETTER CHE", 10564 direction="l", 10565 lccode=0x447, 10566 linebreak="al", 10567 unicodeslot=0x427, 10568 }, 10569 [0x428]={ 10570 category="lu", 10571 cjkwd="a", 10572 contextname="cyrillicSH", 10573 description="CYRILLIC CAPITAL LETTER SHA", 10574 direction="l", 10575 lccode=0x448, 10576 linebreak="al", 10577 unicodeslot=0x428, 10578 }, 10579 [0x429]={ 10580 category="lu", 10581 cjkwd="a", 10582 contextname="cyrillicSHCH", 10583 description="CYRILLIC CAPITAL LETTER SHCHA", 10584 direction="l", 10585 lccode=0x449, 10586 linebreak="al", 10587 unicodeslot=0x429, 10588 }, 10589 [0x42A]={ 10590 category="lu", 10591 cjkwd="a", 10592 contextname="cyrillicHRDSN", 10593 description="CYRILLIC CAPITAL LETTER HARD SIGN", 10594 direction="l", 10595 lccode=0x44A, 10596 linebreak="al", 10597 unicodeslot=0x42A, 10598 }, 10599 [0x42B]={ 10600 category="lu", 10601 cjkwd="a", 10602 contextname="cyrillicERY", 10603 description="CYRILLIC CAPITAL LETTER YERU", 10604 direction="l", 10605 lccode=0x44B, 10606 linebreak="al", 10607 unicodeslot=0x42B, 10608 }, 10609 [0x42C]={ 10610 category="lu", 10611 cjkwd="a", 10612 contextname="cyrillicSFTSN", 10613 description="CYRILLIC CAPITAL LETTER SOFT SIGN", 10614 direction="l", 10615 lccode=0x44C, 10616 linebreak="al", 10617 unicodeslot=0x42C, 10618 }, 10619 [0x42D]={ 10620 category="lu", 10621 cjkwd="a", 10622 contextname="cyrillicEREV", 10623 description="CYRILLIC CAPITAL LETTER E", 10624 direction="l", 10625 lccode=0x44D, 10626 linebreak="al", 10627 unicodeslot=0x42D, 10628 }, 10629 [0x42E]={ 10630 category="lu", 10631 cjkwd="a", 10632 contextname="cyrillicYU", 10633 description="CYRILLIC CAPITAL LETTER YU", 10634 direction="l", 10635 lccode=0x44E, 10636 linebreak="al", 10637 unicodeslot=0x42E, 10638 }, 10639 [0x42F]={ 10640 category="lu", 10641 cjkwd="a", 10642 contextname="cyrillicYA", 10643 description="CYRILLIC CAPITAL LETTER YA", 10644 direction="l", 10645 lccode=0x44F, 10646 linebreak="al", 10647 unicodeslot=0x42F, 10648 }, 10649 [0x430]={ 10650 category="ll", 10651 cjkwd="a", 10652 contextname="cyrillica", 10653 description="CYRILLIC SMALL LETTER A", 10654 direction="l", 10655 linebreak="al", 10656 uccode=0x410, 10657 unicodeslot=0x430, 10658 }, 10659 [0x431]={ 10660 category="ll", 10661 cjkwd="a", 10662 contextname="cyrillicb", 10663 description="CYRILLIC SMALL LETTER BE", 10664 direction="l", 10665 linebreak="al", 10666 uccode=0x411, 10667 unicodeslot=0x431, 10668 }, 10669 [0x432]={ 10670 category="ll", 10671 cjkwd="a", 10672 contextname="cyrillicv", 10673 description="CYRILLIC SMALL LETTER VE", 10674 direction="l", 10675 linebreak="al", 10676 uccode=0x412, 10677 unicodeslot=0x432, 10678 }, 10679 [0x433]={ 10680 category="ll", 10681 cjkwd="a", 10682 contextname="cyrillicg", 10683 description="CYRILLIC SMALL LETTER GHE", 10684 direction="l", 10685 linebreak="al", 10686 uccode=0x413, 10687 unicodeslot=0x433, 10688 }, 10689 [0x434]={ 10690 category="ll", 10691 cjkwd="a", 10692 contextname="cyrillicd", 10693 description="CYRILLIC SMALL LETTER DE", 10694 direction="l", 10695 linebreak="al", 10696 uccode=0x414, 10697 unicodeslot=0x434, 10698 }, 10699 [0x435]={ 10700 category="ll", 10701 cjkwd="a", 10702 contextname="cyrillice", 10703 description="CYRILLIC SMALL LETTER IE", 10704 direction="l", 10705 linebreak="al", 10706 uccode=0x415, 10707 unicodeslot=0x435, 10708 }, 10709 [0x436]={ 10710 category="ll", 10711 cjkwd="a", 10712 contextname="cyrilliczh", 10713 description="CYRILLIC SMALL LETTER ZHE", 10714 direction="l", 10715 linebreak="al", 10716 uccode=0x416, 10717 unicodeslot=0x436, 10718 }, 10719 [0x437]={ 10720 category="ll", 10721 cjkwd="a", 10722 contextname="cyrillicz", 10723 description="CYRILLIC SMALL LETTER ZE", 10724 direction="l", 10725 linebreak="al", 10726 uccode=0x417, 10727 unicodeslot=0x437, 10728 }, 10729 [0x438]={ 10730 category="ll", 10731 cjkwd="a", 10732 contextname="cyrillici", 10733 description="CYRILLIC SMALL LETTER I", 10734 direction="l", 10735 linebreak="al", 10736 uccode=0x418, 10737 unicodeslot=0x438, 10738 }, 10739 [0x439]={ 10740 category="ll", 10741 cjkwd="a", 10742 contextname="cyrillicishrt", 10743 description="CYRILLIC SMALL LETTER SHORT I", 10744 direction="l", 10745 linebreak="al", 10746 specials={ "char", 0x438, 0x306 }, 10747 uccode=0x419, 10748 unicodeslot=0x439, 10749 }, 10750 [0x43A]={ 10751 category="ll", 10752 cjkwd="a", 10753 contextname="cyrillick", 10754 description="CYRILLIC SMALL LETTER KA", 10755 direction="l", 10756 linebreak="al", 10757 uccode=0x41A, 10758 unicodeslot=0x43A, 10759 }, 10760 [0x43B]={ 10761 category="ll", 10762 cjkwd="a", 10763 contextname="cyrillicl", 10764 description="CYRILLIC SMALL LETTER EL", 10765 direction="l", 10766 linebreak="al", 10767 uccode=0x41B, 10768 unicodeslot=0x43B, 10769 }, 10770 [0x43C]={ 10771 category="ll", 10772 cjkwd="a", 10773 contextname="cyrillicm", 10774 description="CYRILLIC SMALL LETTER EM", 10775 direction="l", 10776 linebreak="al", 10777 uccode=0x41C, 10778 unicodeslot=0x43C, 10779 }, 10780 [0x43D]={ 10781 category="ll", 10782 cjkwd="a", 10783 contextname="cyrillicn", 10784 description="CYRILLIC SMALL LETTER EN", 10785 direction="l", 10786 linebreak="al", 10787 uccode=0x41D, 10788 unicodeslot=0x43D, 10789 }, 10790 [0x43E]={ 10791 category="ll", 10792 cjkwd="a", 10793 contextname="cyrillico", 10794 description="CYRILLIC SMALL LETTER O", 10795 direction="l", 10796 linebreak="al", 10797 uccode=0x41E, 10798 unicodeslot=0x43E, 10799 }, 10800 [0x43F]={ 10801 category="ll", 10802 cjkwd="a", 10803 contextname="cyrillicp", 10804 description="CYRILLIC SMALL LETTER PE", 10805 direction="l", 10806 linebreak="al", 10807 uccode=0x41F, 10808 unicodeslot=0x43F, 10809 }, 10810 [0x440]={ 10811 category="ll", 10812 cjkwd="a", 10813 contextname="cyrillicr", 10814 description="CYRILLIC SMALL LETTER ER", 10815 direction="l", 10816 linebreak="al", 10817 uccode=0x420, 10818 unicodeslot=0x440, 10819 }, 10820 [0x441]={ 10821 category="ll", 10822 cjkwd="a", 10823 contextname="cyrillics", 10824 description="CYRILLIC SMALL LETTER ES", 10825 direction="l", 10826 linebreak="al", 10827 uccode=0x421, 10828 unicodeslot=0x441, 10829 }, 10830 [0x442]={ 10831 category="ll", 10832 cjkwd="a", 10833 contextname="cyrillict", 10834 description="CYRILLIC SMALL LETTER TE", 10835 direction="l", 10836 linebreak="al", 10837 uccode=0x422, 10838 unicodeslot=0x442, 10839 }, 10840 [0x443]={ 10841 category="ll", 10842 cjkwd="a", 10843 contextname="cyrillicu", 10844 description="CYRILLIC SMALL LETTER U", 10845 direction="l", 10846 linebreak="al", 10847 uccode=0x423, 10848 unicodeslot=0x443, 10849 }, 10850 [0x444]={ 10851 category="ll", 10852 cjkwd="a", 10853 contextname="cyrillicf", 10854 description="CYRILLIC SMALL LETTER EF", 10855 direction="l", 10856 linebreak="al", 10857 uccode=0x424, 10858 unicodeslot=0x444, 10859 }, 10860 [0x445]={ 10861 category="ll", 10862 cjkwd="a", 10863 contextname="cyrillich", 10864 description="CYRILLIC SMALL LETTER HA", 10865 direction="l", 10866 linebreak="al", 10867 uccode=0x425, 10868 unicodeslot=0x445, 10869 }, 10870 [0x446]={ 10871 category="ll", 10872 cjkwd="a", 10873 contextname="cyrillicc", 10874 description="CYRILLIC SMALL LETTER TSE", 10875 direction="l", 10876 linebreak="al", 10877 uccode=0x426, 10878 unicodeslot=0x446, 10879 }, 10880 [0x447]={ 10881 category="ll", 10882 cjkwd="a", 10883 contextname="cyrillicch", 10884 description="CYRILLIC SMALL LETTER CHE", 10885 direction="l", 10886 linebreak="al", 10887 uccode=0x427, 10888 unicodeslot=0x447, 10889 }, 10890 [0x448]={ 10891 category="ll", 10892 cjkwd="a", 10893 contextname="cyrillicsh", 10894 description="CYRILLIC SMALL LETTER SHA", 10895 direction="l", 10896 linebreak="al", 10897 uccode=0x428, 10898 unicodeslot=0x448, 10899 }, 10900 [0x449]={ 10901 category="ll", 10902 cjkwd="a", 10903 contextname="cyrillicshch", 10904 description="CYRILLIC SMALL LETTER SHCHA", 10905 direction="l", 10906 linebreak="al", 10907 uccode=0x429, 10908 unicodeslot=0x449, 10909 }, 10910 [0x44A]={ 10911 category="ll", 10912 cjkwd="a", 10913 contextname="cyrillichrdsn", 10914 description="CYRILLIC SMALL LETTER HARD SIGN", 10915 direction="l", 10916 linebreak="al", 10917 uccode=0x42A, 10918 unicodeslot=0x44A, 10919 }, 10920 [0x44B]={ 10921 category="ll", 10922 cjkwd="a", 10923 contextname="cyrillicery", 10924 description="CYRILLIC SMALL LETTER YERU", 10925 direction="l", 10926 linebreak="al", 10927 uccode=0x42B, 10928 unicodeslot=0x44B, 10929 }, 10930 [0x44C]={ 10931 category="ll", 10932 cjkwd="a", 10933 contextname="cyrillicsftsn", 10934 description="CYRILLIC SMALL LETTER SOFT SIGN", 10935 direction="l", 10936 linebreak="al", 10937 uccode=0x42C, 10938 unicodeslot=0x44C, 10939 }, 10940 [0x44D]={ 10941 category="ll", 10942 cjkwd="a", 10943 contextname="cyrillicerev", 10944 description="CYRILLIC SMALL LETTER E", 10945 direction="l", 10946 linebreak="al", 10947 uccode=0x42D, 10948 unicodeslot=0x44D, 10949 }, 10950 [0x44E]={ 10951 category="ll", 10952 cjkwd="a", 10953 contextname="cyrillicyu", 10954 description="CYRILLIC SMALL LETTER YU", 10955 direction="l", 10956 linebreak="al", 10957 uccode=0x42E, 10958 unicodeslot=0x44E, 10959 }, 10960 [0x44F]={ 10961 category="ll", 10962 cjkwd="a", 10963 contextname="cyrillicya", 10964 description="CYRILLIC SMALL LETTER YA", 10965 direction="l", 10966 linebreak="al", 10967 uccode=0x42F, 10968 unicodeslot=0x44F, 10969 }, 10970 [0x450]={ 10971 category="ll", 10972 contextname="cyrillicegrave", 10973 description="CYRILLIC SMALL LETTER IE WITH GRAVE", 10974 direction="l", 10975 linebreak="al", 10976 shcode=0x435, 10977 specials={ "char", 0x435, 0x300 }, 10978 uccode=0x400, 10979 unicodeslot=0x450, 10980 }, 10981 [0x451]={ 10982 category="ll", 10983 cjkwd="a", 10984 contextname="cyrillicyo", 10985 description="CYRILLIC SMALL LETTER IO", 10986 direction="l", 10987 linebreak="al", 10988 specials={ "char", 0x435, 0x308 }, 10989 uccode=0x401, 10990 unicodeslot=0x451, 10991 }, 10992 [0x452]={ 10993 category="ll", 10994 contextname="cyrillicdje", 10995 description="CYRILLIC SMALL LETTER DJE", 10996 direction="l", 10997 linebreak="al", 10998 uccode=0x402, 10999 unicodeslot=0x452, 11000 }, 11001 [0x453]={ 11002 category="ll", 11003 contextname="cyrillicgje", 11004 description="CYRILLIC SMALL LETTER GJE", 11005 direction="l", 11006 linebreak="al", 11007 specials={ "char", 0x433, 0x301 }, 11008 uccode=0x403, 11009 unicodeslot=0x453, 11010 }, 11011 [0x454]={ 11012 category="ll", 11013 contextname="cyrillicie", 11014 description="CYRILLIC SMALL LETTER UKRAINIAN IE", 11015 direction="l", 11016 linebreak="al", 11017 uccode=0x404, 11018 unicodeslot=0x454, 11019 }, 11020 [0x455]={ 11021 category="ll", 11022 contextname="cyrillicdze", 11023 description="CYRILLIC SMALL LETTER DZE", 11024 direction="l", 11025 linebreak="al", 11026 uccode=0x405, 11027 unicodeslot=0x455, 11028 }, 11029 [0x456]={ 11030 category="ll", 11031 contextname="cyrillicii", 11032 description="CYRILLIC SMALL LETTER BYELORUSSIAN-UKRAINIAN I", 11033 direction="l", 11034 linebreak="al", 11035 uccode=0x406, 11036 unicodeslot=0x456, 11037 }, 11038 [0x457]={ 11039 category="ll", 11040 contextname="cyrillicyi", 11041 description="CYRILLIC SMALL LETTER YI", 11042 direction="l", 11043 linebreak="al", 11044 specials={ "char", 0x456, 0x308 }, 11045 uccode=0x407, 11046 unicodeslot=0x457, 11047 }, 11048 [0x458]={ 11049 category="ll", 11050 contextname="cyrillicje", 11051 description="CYRILLIC SMALL LETTER JE", 11052 direction="l", 11053 linebreak="al", 11054 uccode=0x408, 11055 unicodeslot=0x458, 11056 }, 11057 [0x459]={ 11058 category="ll", 11059 contextname="cyrilliclje", 11060 description="CYRILLIC SMALL LETTER LJE", 11061 direction="l", 11062 linebreak="al", 11063 uccode=0x409, 11064 unicodeslot=0x459, 11065 }, 11066 [0x45A]={ 11067 category="ll", 11068 contextname="cyrillicnje", 11069 description="CYRILLIC SMALL LETTER NJE", 11070 direction="l", 11071 linebreak="al", 11072 uccode=0x40A, 11073 unicodeslot=0x45A, 11074 }, 11075 [0x45B]={ 11076 category="ll", 11077 contextname="cyrillictshe", 11078 description="CYRILLIC SMALL LETTER TSHE", 11079 direction="l", 11080 linebreak="al", 11081 uccode=0x40B, 11082 unicodeslot=0x45B, 11083 }, 11084 [0x45C]={ 11085 category="ll", 11086 contextname="cyrillickje", 11087 description="CYRILLIC SMALL LETTER KJE", 11088 direction="l", 11089 linebreak="al", 11090 specials={ "char", 0x43A, 0x301 }, 11091 uccode=0x40C, 11092 unicodeslot=0x45C, 11093 }, 11094 [0x45D]={ 11095 category="ll", 11096 contextname="cyrillicigrave", 11097 description="CYRILLIC SMALL LETTER I WITH GRAVE", 11098 direction="l", 11099 linebreak="al", 11100 shcode=0x438, 11101 specials={ "char", 0x438, 0x300 }, 11102 uccode=0x40D, 11103 unicodeslot=0x45D, 11104 }, 11105 [0x45E]={ 11106 category="ll", 11107 contextname="cyrillicushrt", 11108 description="CYRILLIC SMALL LETTER SHORT U", 11109 direction="l", 11110 linebreak="al", 11111 specials={ "char", 0x443, 0x306 }, 11112 uccode=0x40E, 11113 unicodeslot=0x45E, 11114 }, 11115 [0x45F]={ 11116 category="ll", 11117 contextname="cyrillicdzhe", 11118 description="CYRILLIC SMALL LETTER DZHE", 11119 direction="l", 11120 linebreak="al", 11121 uccode=0x40F, 11122 unicodeslot=0x45F, 11123 }, 11124 [0x460]={ 11125 category="lu", 11126 contextname="cyrillicOMEGA", 11127 description="CYRILLIC CAPITAL LETTER OMEGA", 11128 direction="l", 11129 lccode=0x461, 11130 linebreak="al", 11131 unicodeslot=0x460, 11132 }, 11133 [0x461]={ 11134 category="ll", 11135 contextname="cyrillicomega", 11136 description="CYRILLIC SMALL LETTER OMEGA", 11137 direction="l", 11138 linebreak="al", 11139 uccode=0x460, 11140 unicodeslot=0x461, 11141 }, 11142 [0x462]={ 11143 category="lu", 11144 contextname="cyrillicYAT", 11145 description="CYRILLIC CAPITAL LETTER YAT", 11146 direction="l", 11147 lccode=0x463, 11148 linebreak="al", 11149 unicodeslot=0x462, 11150 }, 11151 [0x463]={ 11152 category="ll", 11153 contextname="cyrillicyat", 11154 description="CYRILLIC SMALL LETTER YAT", 11155 direction="l", 11156 linebreak="al", 11157 uccode=0x462, 11158 unicodeslot=0x463, 11159 }, 11160 [0x464]={ 11161 category="lu", 11162 contextname="cyrillicEiotified", 11163 description="CYRILLIC CAPITAL LETTER IOTIFIED E", 11164 direction="l", 11165 lccode=0x465, 11166 linebreak="al", 11167 unicodeslot=0x464, 11168 }, 11169 [0x465]={ 11170 category="ll", 11171 contextname="cyrilliceiotified", 11172 description="CYRILLIC SMALL LETTER IOTIFIED E", 11173 direction="l", 11174 linebreak="al", 11175 uccode=0x464, 11176 unicodeslot=0x465, 11177 }, 11178 [0x466]={ 11179 category="lu", 11180 contextname="cyrillicLITTLEYUS", 11181 description="CYRILLIC CAPITAL LETTER LITTLE YUS", 11182 direction="l", 11183 lccode=0x467, 11184 linebreak="al", 11185 unicodeslot=0x466, 11186 }, 11187 [0x467]={ 11188 category="ll", 11189 contextname="cyrilliclittleyus", 11190 description="CYRILLIC SMALL LETTER LITTLE YUS", 11191 direction="l", 11192 linebreak="al", 11193 uccode=0x466, 11194 unicodeslot=0x467, 11195 }, 11196 [0x468]={ 11197 category="lu", 11198 contextname="cyrillicLITTLEYUSiotified", 11199 description="CYRILLIC CAPITAL LETTER IOTIFIED LITTLE YUS", 11200 direction="l", 11201 lccode=0x469, 11202 linebreak="al", 11203 unicodeslot=0x468, 11204 }, 11205 [0x469]={ 11206 category="ll", 11207 contextname="cyrilliclittleyusiotified", 11208 description="CYRILLIC SMALL LETTER IOTIFIED LITTLE YUS", 11209 direction="l", 11210 linebreak="al", 11211 uccode=0x468, 11212 unicodeslot=0x469, 11213 }, 11214 [0x46A]={ 11215 category="lu", 11216 contextname="cyrillicBIGYUS", 11217 description="CYRILLIC CAPITAL LETTER BIG YUS", 11218 direction="l", 11219 lccode=0x46B, 11220 linebreak="al", 11221 unicodeslot=0x46A, 11222 }, 11223 [0x46B]={ 11224 category="ll", 11225 contextname="cyrillicbigyus", 11226 description="CYRILLIC SMALL LETTER BIG YUS", 11227 direction="l", 11228 linebreak="al", 11229 uccode=0x46A, 11230 unicodeslot=0x46B, 11231 }, 11232 [0x46C]={ 11233 category="lu", 11234 contextname="cyrillicBIGYUSiotified", 11235 description="CYRILLIC CAPITAL LETTER IOTIFIED BIG YUS", 11236 direction="l", 11237 lccode=0x46D, 11238 linebreak="al", 11239 unicodeslot=0x46C, 11240 }, 11241 [0x46D]={ 11242 category="ll", 11243 contextname="cyrillicbigyusiotified", 11244 description="CYRILLIC SMALL LETTER IOTIFIED BIG YUS", 11245 direction="l", 11246 linebreak="al", 11247 uccode=0x46C, 11248 unicodeslot=0x46D, 11249 }, 11250 [0x46E]={ 11251 category="lu", 11252 contextname="cyrillicKSI", 11253 description="CYRILLIC CAPITAL LETTER KSI", 11254 direction="l", 11255 lccode=0x46F, 11256 linebreak="al", 11257 unicodeslot=0x46E, 11258 }, 11259 [0x46F]={ 11260 category="ll", 11261 contextname="cyrillicksi", 11262 description="CYRILLIC SMALL LETTER KSI", 11263 direction="l", 11264 linebreak="al", 11265 uccode=0x46E, 11266 unicodeslot=0x46F, 11267 }, 11268 [0x470]={ 11269 category="lu", 11270 contextname="cyrillicPSI", 11271 description="CYRILLIC CAPITAL LETTER PSI", 11272 direction="l", 11273 lccode=0x471, 11274 linebreak="al", 11275 unicodeslot=0x470, 11276 }, 11277 [0x471]={ 11278 category="ll", 11279 contextname="cyrillicpsi", 11280 description="CYRILLIC SMALL LETTER PSI", 11281 direction="l", 11282 linebreak="al", 11283 uccode=0x470, 11284 unicodeslot=0x471, 11285 }, 11286 [0x472]={ 11287 category="lu", 11288 contextname="cyrillicFITA", 11289 description="CYRILLIC CAPITAL LETTER FITA", 11290 direction="l", 11291 lccode=0x473, 11292 linebreak="al", 11293 unicodeslot=0x472, 11294 }, 11295 [0x473]={ 11296 category="ll", 11297 contextname="cyrillicfita", 11298 description="CYRILLIC SMALL LETTER FITA", 11299 direction="l", 11300 linebreak="al", 11301 uccode=0x472, 11302 unicodeslot=0x473, 11303 }, 11304 [0x474]={ 11305 category="lu", 11306 contextname="cyrillicIZHITSA", 11307 description="CYRILLIC CAPITAL LETTER IZHITSA", 11308 direction="l", 11309 lccode=0x475, 11310 linebreak="al", 11311 unicodeslot=0x474, 11312 }, 11313 [0x475]={ 11314 category="ll", 11315 contextname="cyrillicizhitsa", 11316 description="CYRILLIC SMALL LETTER IZHITSA", 11317 direction="l", 11318 linebreak="al", 11319 uccode=0x474, 11320 unicodeslot=0x475, 11321 }, 11322 [0x476]={ 11323 category="lu", 11324 contextname="cyrillicIZHITSAdoublegrave", 11325 description="CYRILLIC CAPITAL LETTER IZHITSA WITH DOUBLE GRAVE ACCENT", 11326 direction="l", 11327 lccode=0x477, 11328 linebreak="al", 11329 shcode=0x474, 11330 specials={ "char", 0x474, 0x30F }, 11331 unicodeslot=0x476, 11332 }, 11333 [0x477]={ 11334 category="ll", 11335 contextname="cyrillicizhitsadoublegrave", 11336 description="CYRILLIC SMALL LETTER IZHITSA WITH DOUBLE GRAVE ACCENT", 11337 direction="l", 11338 linebreak="al", 11339 shcode=0x475, 11340 specials={ "char", 0x475, 0x30F }, 11341 uccode=0x476, 11342 unicodeslot=0x477, 11343 }, 11344 [0x478]={ 11345 category="lu", 11346 contextname="cyrillicUK", 11347 description="CYRILLIC CAPITAL LETTER UK", 11348 direction="l", 11349 lccode=0x479, 11350 linebreak="al", 11351 unicodeslot=0x478, 11352 }, 11353 [0x479]={ 11354 category="ll", 11355 contextname="cyrillicuk", 11356 description="CYRILLIC SMALL LETTER UK", 11357 direction="l", 11358 linebreak="al", 11359 uccode=0x478, 11360 unicodeslot=0x479, 11361 }, 11362 [0x47A]={ 11363 category="lu", 11364 contextname="cyrillicOMEGAround", 11365 description="CYRILLIC CAPITAL LETTER ROUND OMEGA", 11366 direction="l", 11367 lccode=0x47B, 11368 linebreak="al", 11369 unicodeslot=0x47A, 11370 }, 11371 [0x47B]={ 11372 category="ll", 11373 contextname="cyrillicomegaround", 11374 description="CYRILLIC SMALL LETTER ROUND OMEGA", 11375 direction="l", 11376 linebreak="al", 11377 uccode=0x47A, 11378 unicodeslot=0x47B, 11379 }, 11380 [0x47C]={ 11381 category="lu", 11382 contextname="cyrillicOMEGAtitlo", 11383 description="CYRILLIC CAPITAL LETTER OMEGA WITH TITLO", 11384 direction="l", 11385 lccode=0x47D, 11386 linebreak="al", 11387 shcode=0x460, 11388 unicodeslot=0x47C, 11389 }, 11390 [0x47D]={ 11391 category="ll", 11392 contextname="cyrillicomegatitlo", 11393 description="CYRILLIC SMALL LETTER OMEGA WITH TITLO", 11394 direction="l", 11395 linebreak="al", 11396 shcode=0x461, 11397 uccode=0x47C, 11398 unicodeslot=0x47D, 11399 }, 11400 [0x47E]={ 11401 category="lu", 11402 contextname="cyrillicOT", 11403 description="CYRILLIC CAPITAL LETTER OT", 11404 direction="l", 11405 lccode=0x47F, 11406 linebreak="al", 11407 unicodeslot=0x47E, 11408 }, 11409 [0x47F]={ 11410 category="ll", 11411 contextname="cyrillicot", 11412 description="CYRILLIC SMALL LETTER OT", 11413 direction="l", 11414 linebreak="al", 11415 uccode=0x47E, 11416 unicodeslot=0x47F, 11417 }, 11418 [0x480]={ 11419 category="lu", 11420 contextname="cyrillicKOPPA", 11421 description="CYRILLIC CAPITAL LETTER KOPPA", 11422 direction="l", 11423 lccode=0x481, 11424 linebreak="al", 11425 unicodeslot=0x480, 11426 }, 11427 [0x481]={ 11428 category="ll", 11429 contextname="cyrillickoppa", 11430 description="CYRILLIC SMALL LETTER KOPPA", 11431 direction="l", 11432 linebreak="al", 11433 uccode=0x480, 11434 unicodeslot=0x481, 11435 }, 11436 [0x482]={ 11437 category="so", 11438 description="CYRILLIC THOUSANDS SIGN", 11439 direction="l", 11440 linebreak="al", 11441 unicodeslot=0x482, 11442 }, 11443 [0x483]={ 11444 category="mn", 11445 combining=0xE6, 11446 contextname="cyrillicTITLO", 11447 description="COMBINING CYRILLIC TITLO", 11448 direction="nsm", 11449 linebreak="cm", 11450 unicodeslot=0x483, 11451 }, 11452 [0x484]={ 11453 category="mn", 11454 combining=0xE6, 11455 contextname="cyrillicPALATALIZATION", 11456 description="COMBINING CYRILLIC PALATALIZATION", 11457 direction="nsm", 11458 linebreak="cm", 11459 unicodeslot=0x484, 11460 }, 11461 [0x485]={ 11462 category="mn", 11463 combining=0xE6, 11464 contextname="cyrillicDASIAPNEUMATA", 11465 description="COMBINING CYRILLIC DASIA PNEUMATA", 11466 direction="nsm", 11467 linebreak="cm", 11468 unicodeslot=0x485, 11469 }, 11470 [0x486]={ 11471 category="mn", 11472 combining=0xE6, 11473 contextname="cyrillicPSILIPNEUMATA", 11474 description="COMBINING CYRILLIC PSILI PNEUMATA", 11475 direction="nsm", 11476 linebreak="cm", 11477 unicodeslot=0x486, 11478 }, 11479 [0x487]={ 11480 category="mn", 11481 combining=0xE6, 11482 description="COMBINING CYRILLIC POKRYTIE", 11483 direction="nsm", 11484 linebreak="cm", 11485 unicodeslot=0x487, 11486 }, 11487 [0x488]={ 11488 category="me", 11489 description="COMBINING CYRILLIC HUNDRED THOUSANDS SIGN", 11490 direction="nsm", 11491 linebreak="cm", 11492 unicodeslot=0x488, 11493 }, 11494 [0x489]={ 11495 category="me", 11496 description="COMBINING CYRILLIC MILLIONS SIGN", 11497 direction="nsm", 11498 linebreak="cm", 11499 unicodeslot=0x489, 11500 }, 11501 [0x48A]={ 11502 category="lu", 11503 contextname="cyrillicISHRTtail", 11504 description="CYRILLIC CAPITAL LETTER SHORT I WITH TAIL", 11505 direction="l", 11506 lccode=0x48B, 11507 linebreak="al", 11508 unicodeslot=0x48A, 11509 }, 11510 [0x48B]={ 11511 category="ll", 11512 contextname="cyrillicishrttail", 11513 description="CYRILLIC SMALL LETTER SHORT I WITH TAIL", 11514 direction="l", 11515 linebreak="al", 11516 uccode=0x48A, 11517 unicodeslot=0x48B, 11518 }, 11519 [0x48C]={ 11520 category="lu", 11521 contextname="cyrillicSEMISOFT", 11522 description="CYRILLIC CAPITAL LETTER SEMISOFT SIGN", 11523 direction="l", 11524 lccode=0x48D, 11525 linebreak="al", 11526 unicodeslot=0x48C, 11527 }, 11528 [0x48D]={ 11529 category="ll", 11530 contextname="cyrillicsemisoft", 11531 description="CYRILLIC SMALL LETTER SEMISOFT SIGN", 11532 direction="l", 11533 linebreak="al", 11534 uccode=0x48C, 11535 unicodeslot=0x48D, 11536 }, 11537 [0x48E]={ 11538 category="lu", 11539 contextname="cyrillicERtick", 11540 description="CYRILLIC CAPITAL LETTER ER WITH TICK", 11541 direction="l", 11542 lccode=0x48F, 11543 linebreak="al", 11544 shcode=0x420, 11545 unicodeslot=0x48E, 11546 }, 11547 [0x48F]={ 11548 category="ll", 11549 contextname="cyrillicertick", 11550 description="CYRILLIC SMALL LETTER ER WITH TICK", 11551 direction="l", 11552 linebreak="al", 11553 shcode=0x440, 11554 uccode=0x48E, 11555 unicodeslot=0x48F, 11556 }, 11557 [0x490]={ 11558 category="lu", 11559 contextname="cyrillicGHEupturn", 11560 description="CYRILLIC CAPITAL LETTER GHE WITH UPTURN", 11561 direction="l", 11562 lccode=0x491, 11563 linebreak="al", 11564 shcode=0x413, 11565 unicodeslot=0x490, 11566 }, 11567 [0x491]={ 11568 category="ll", 11569 contextname="cyrillicgheupturn", 11570 description="CYRILLIC SMALL LETTER GHE WITH UPTURN", 11571 direction="l", 11572 linebreak="al", 11573 shcode=0x433, 11574 uccode=0x490, 11575 unicodeslot=0x491, 11576 }, 11577 [0x492]={ 11578 category="lu", 11579 contextname="cyrillicGHEstroke", 11580 description="CYRILLIC CAPITAL LETTER GHE WITH STROKE", 11581 direction="l", 11582 lccode=0x493, 11583 linebreak="al", 11584 shcode=0x413, 11585 specials={ "with", 0x413, 0x2F }, 11586 unicodeslot=0x492, 11587 }, 11588 [0x493]={ 11589 category="ll", 11590 contextname="cyrillicghestroke", 11591 description="CYRILLIC SMALL LETTER GHE WITH STROKE", 11592 direction="l", 11593 linebreak="al", 11594 shcode=0x433, 11595 specials={ "with", 0x433, 0x2F }, 11596 uccode=0x492, 11597 unicodeslot=0x493, 11598 }, 11599 [0x494]={ 11600 category="lu", 11601 contextname="cyrillicGHEmidhook", 11602 description="CYRILLIC CAPITAL LETTER GHE WITH MIDDLE HOOK", 11603 direction="l", 11604 lccode=0x495, 11605 linebreak="al", 11606 shcode=0x413, 11607 unicodeslot=0x494, 11608 }, 11609 [0x495]={ 11610 category="ll", 11611 contextname="cyrillicghemidhook", 11612 description="CYRILLIC SMALL LETTER GHE WITH MIDDLE HOOK", 11613 direction="l", 11614 linebreak="al", 11615 shcode=0x433, 11616 uccode=0x494, 11617 unicodeslot=0x495, 11618 }, 11619 [0x496]={ 11620 category="lu", 11621 contextname="cyrillicZHEdescender", 11622 description="CYRILLIC CAPITAL LETTER ZHE WITH DESCENDER", 11623 direction="l", 11624 lccode=0x497, 11625 linebreak="al", 11626 shcode=0x416, 11627 unicodeslot=0x496, 11628 }, 11629 [0x497]={ 11630 category="ll", 11631 contextname="cyrilliczhedescender", 11632 description="CYRILLIC SMALL LETTER ZHE WITH DESCENDER", 11633 direction="l", 11634 linebreak="al", 11635 shcode=0x436, 11636 uccode=0x496, 11637 unicodeslot=0x497, 11638 }, 11639 [0x498]={ 11640 category="lu", 11641 contextname="cyrillicZDSC", 11642 description="CYRILLIC CAPITAL LETTER ZE WITH DESCENDER", 11643 direction="l", 11644 lccode=0x499, 11645 linebreak="al", 11646 shcode=0x417, 11647 unicodeslot=0x498, 11648 }, 11649 [0x499]={ 11650 category="ll", 11651 contextname="cyrilliczdsc", 11652 description="CYRILLIC SMALL LETTER ZE WITH DESCENDER", 11653 direction="l", 11654 linebreak="al", 11655 shcode=0x437, 11656 uccode=0x498, 11657 unicodeslot=0x499, 11658 }, 11659 [0x49A]={ 11660 category="lu", 11661 contextname="cyrillicKADC", 11662 description="CYRILLIC CAPITAL LETTER KA WITH DESCENDER", 11663 direction="l", 11664 lccode=0x49B, 11665 linebreak="al", 11666 shcode=0x41A, 11667 unicodeslot=0x49A, 11668 }, 11669 [0x49B]={ 11670 category="ll", 11671 contextname="cyrillickadc", 11672 description="CYRILLIC SMALL LETTER KA WITH DESCENDER", 11673 direction="l", 11674 linebreak="al", 11675 shcode=0x43A, 11676 uccode=0x49A, 11677 unicodeslot=0x49B, 11678 }, 11679 [0x49C]={ 11680 category="lu", 11681 contextname="cyrillicKAvertstroke", 11682 description="CYRILLIC CAPITAL LETTER KA WITH VERTICAL STROKE", 11683 direction="l", 11684 lccode=0x49D, 11685 linebreak="al", 11686 shcode=0x41A, 11687 unicodeslot=0x49C, 11688 }, 11689 [0x49D]={ 11690 category="ll", 11691 contextname="cyrillickavertstroke", 11692 description="CYRILLIC SMALL LETTER KA WITH VERTICAL STROKE", 11693 direction="l", 11694 linebreak="al", 11695 shcode=0x43A, 11696 uccode=0x49C, 11697 unicodeslot=0x49D, 11698 }, 11699 [0x49E]={ 11700 category="lu", 11701 contextname="cyrillicKAstroke", 11702 description="CYRILLIC CAPITAL LETTER KA WITH STROKE", 11703 direction="l", 11704 lccode=0x49F, 11705 linebreak="al", 11706 shcode=0x41A, 11707 specials={ "with", 0x41A, 0x2F }, 11708 unicodeslot=0x49E, 11709 }, 11710 [0x49F]={ 11711 category="ll", 11712 contextname="cyrillickastroke", 11713 description="CYRILLIC SMALL LETTER KA WITH STROKE", 11714 direction="l", 11715 linebreak="al", 11716 shcode=0x43A, 11717 specials={ "with", 0x43A, 0x2F }, 11718 uccode=0x49E, 11719 unicodeslot=0x49F, 11720 }, 11721 [0x4A0]={ 11722 category="lu", 11723 contextname="cyrillicKAbashkir", 11724 description="CYRILLIC CAPITAL LETTER BASHKIR KA", 11725 direction="l", 11726 lccode=0x4A1, 11727 linebreak="al", 11728 unicodeslot=0x4A0, 11729 }, 11730 [0x4A1]={ 11731 category="ll", 11732 contextname="cyrillickabashkir", 11733 description="CYRILLIC SMALL LETTER BASHKIR KA", 11734 direction="l", 11735 linebreak="al", 11736 uccode=0x4A0, 11737 unicodeslot=0x4A1, 11738 }, 11739 [0x4A2]={ 11740 category="lu", 11741 contextname="cyrillicENDC", 11742 description="CYRILLIC CAPITAL LETTER EN WITH DESCENDER", 11743 direction="l", 11744 lccode=0x4A3, 11745 linebreak="al", 11746 shcode=0x41D, 11747 unicodeslot=0x4A2, 11748 }, 11749 [0x4A3]={ 11750 category="ll", 11751 contextname="cyrillicendc", 11752 description="CYRILLIC SMALL LETTER EN WITH DESCENDER", 11753 direction="l", 11754 linebreak="al", 11755 shcode=0x43D, 11756 uccode=0x4A2, 11757 unicodeslot=0x4A3, 11758 }, 11759 [0x4A4]={ 11760 category="lu", 11761 contextname="cyrillicENGHE", 11762 description="CYRILLIC CAPITAL LIGATURE EN GHE", 11763 direction="l", 11764 lccode=0x4A5, 11765 linebreak="al", 11766 unicodeslot=0x4A4, 11767 }, 11768 [0x4A5]={ 11769 category="ll", 11770 contextname="cyrillicenghe", 11771 description="CYRILLIC SMALL LIGATURE EN GHE", 11772 direction="l", 11773 linebreak="al", 11774 uccode=0x4A4, 11775 unicodeslot=0x4A5, 11776 }, 11777 [0x4A6]={ 11778 category="lu", 11779 contextname="cyrillicPEmidhook", 11780 description="CYRILLIC CAPITAL LETTER PE WITH MIDDLE HOOK", 11781 direction="l", 11782 lccode=0x4A7, 11783 linebreak="al", 11784 shcode=0x41F, 11785 unicodeslot=0x4A6, 11786 }, 11787 [0x4A7]={ 11788 category="ll", 11789 contextname="cyrillicpemidhook", 11790 description="CYRILLIC SMALL LETTER PE WITH MIDDLE HOOK", 11791 direction="l", 11792 linebreak="al", 11793 shcode=0x43F, 11794 uccode=0x4A6, 11795 unicodeslot=0x4A7, 11796 }, 11797 [0x4A8]={ 11798 category="lu", 11799 contextname="cyrillicHA", 11800 description="CYRILLIC CAPITAL LETTER ABKHASIAN HA", 11801 direction="l", 11802 lccode=0x4A9, 11803 linebreak="al", 11804 unicodeslot=0x4A8, 11805 }, 11806 [0x4A9]={ 11807 category="ll", 11808 contextname="cyrillicha", 11809 description="CYRILLIC SMALL LETTER ABKHASIAN HA", 11810 direction="l", 11811 linebreak="al", 11812 uccode=0x4A8, 11813 unicodeslot=0x4A9, 11814 }, 11815 [0x4AA]={ 11816 category="lu", 11817 contextname="cyrillicSDSC", 11818 description="CYRILLIC CAPITAL LETTER ES WITH DESCENDER", 11819 direction="l", 11820 lccode=0x4AB, 11821 linebreak="al", 11822 shcode=0x421, 11823 unicodeslot=0x4AA, 11824 }, 11825 [0x4AB]={ 11826 category="ll", 11827 contextname="cyrillicsdsc", 11828 description="CYRILLIC SMALL LETTER ES WITH DESCENDER", 11829 direction="l", 11830 linebreak="al", 11831 shcode=0x441, 11832 uccode=0x4AA, 11833 unicodeslot=0x4AB, 11834 }, 11835 [0x4AC]={ 11836 category="lu", 11837 contextname="cyrillicTEDC", 11838 description="CYRILLIC CAPITAL LETTER TE WITH DESCENDER", 11839 direction="l", 11840 lccode=0x4AD, 11841 linebreak="al", 11842 shcode=0x422, 11843 unicodeslot=0x4AC, 11844 }, 11845 [0x4AD]={ 11846 category="ll", 11847 contextname="cyrillictedc", 11848 description="CYRILLIC SMALL LETTER TE WITH DESCENDER", 11849 direction="l", 11850 linebreak="al", 11851 shcode=0x442, 11852 uccode=0x4AC, 11853 unicodeslot=0x4AD, 11854 }, 11855 [0x4AE]={ 11856 category="lu", 11857 contextname="cyrillicYstr", 11858 description="CYRILLIC CAPITAL LETTER STRAIGHT U", 11859 direction="l", 11860 lccode=0x4AF, 11861 linebreak="al", 11862 unicodeslot=0x4AE, 11863 }, 11864 [0x4AF]={ 11865 category="ll", 11866 contextname="cyrillicystr", 11867 description="CYRILLIC SMALL LETTER STRAIGHT U", 11868 direction="l", 11869 linebreak="al", 11870 uccode=0x4AE, 11871 unicodeslot=0x4AF, 11872 }, 11873 [0x4B0]={ 11874 category="lu", 11875 contextname="cyrillicYstrstroke", 11876 description="CYRILLIC CAPITAL LETTER STRAIGHT U WITH STROKE", 11877 direction="l", 11878 lccode=0x4B1, 11879 linebreak="al", 11880 specials={ "with", 0x4AE, 0x2F }, 11881 unicodeslot=0x4B0, 11882 }, 11883 [0x4B1]={ 11884 category="ll", 11885 contextname="cyrillicystrstroke", 11886 description="CYRILLIC SMALL LETTER STRAIGHT U WITH STROKE", 11887 direction="l", 11888 linebreak="al", 11889 specials={ "with", 0x4AF, 0x2F }, 11890 uccode=0x4B0, 11891 unicodeslot=0x4B1, 11892 }, 11893 [0x4B2]={ 11894 category="lu", 11895 contextname="cyrillicHADC", 11896 description="CYRILLIC CAPITAL LETTER HA WITH DESCENDER", 11897 direction="l", 11898 lccode=0x4B3, 11899 linebreak="al", 11900 shcode=0x425, 11901 unicodeslot=0x4B2, 11902 }, 11903 [0x4B3]={ 11904 category="ll", 11905 contextname="cyrillichadc", 11906 description="CYRILLIC SMALL LETTER HA WITH DESCENDER", 11907 direction="l", 11908 linebreak="al", 11909 shcode=0x445, 11910 uccode=0x4B2, 11911 unicodeslot=0x4B3, 11912 }, 11913 [0x4B4]={ 11914 category="lu", 11915 contextname="cyrillicTETSE", 11916 description="CYRILLIC CAPITAL LIGATURE TE TSE", 11917 direction="l", 11918 lccode=0x4B5, 11919 linebreak="al", 11920 unicodeslot=0x4B4, 11921 }, 11922 [0x4B5]={ 11923 category="ll", 11924 contextname="cyrillictetse", 11925 description="CYRILLIC SMALL LIGATURE TE TSE", 11926 direction="l", 11927 linebreak="al", 11928 uccode=0x4B4, 11929 unicodeslot=0x4B5, 11930 }, 11931 [0x4B6]={ 11932 category="lu", 11933 contextname="cyrillicCHEDC", 11934 description="CYRILLIC CAPITAL LETTER CHE WITH DESCENDER", 11935 direction="l", 11936 lccode=0x4B7, 11937 linebreak="al", 11938 shcode=0x427, 11939 unicodeslot=0x4B6, 11940 }, 11941 [0x4B7]={ 11942 category="ll", 11943 contextname="cyrillicchedc", 11944 description="CYRILLIC SMALL LETTER CHE WITH DESCENDER", 11945 direction="l", 11946 linebreak="al", 11947 shcode=0x447, 11948 uccode=0x4B6, 11949 unicodeslot=0x4B7, 11950 }, 11951 [0x4B8]={ 11952 category="lu", 11953 contextname="cyrillicCHEvertstroke", 11954 description="CYRILLIC CAPITAL LETTER CHE WITH VERTICAL STROKE", 11955 direction="l", 11956 lccode=0x4B9, 11957 linebreak="al", 11958 shcode=0x427, 11959 unicodeslot=0x4B8, 11960 }, 11961 [0x4B9]={ 11962 category="ll", 11963 contextname="cyrillicchevertstroke", 11964 description="CYRILLIC SMALL LETTER CHE WITH VERTICAL STROKE", 11965 direction="l", 11966 linebreak="al", 11967 shcode=0x447, 11968 uccode=0x4B8, 11969 unicodeslot=0x4B9, 11970 }, 11971 [0x4BA]={ 11972 category="lu", 11973 contextname="cyrillicSHHA", 11974 description="CYRILLIC CAPITAL LETTER SHHA", 11975 direction="l", 11976 lccode=0x4BB, 11977 linebreak="al", 11978 unicodeslot=0x4BA, 11979 }, 11980 [0x4BB]={ 11981 category="ll", 11982 contextname="cyrillicshha", 11983 description="CYRILLIC SMALL LETTER SHHA", 11984 direction="l", 11985 linebreak="al", 11986 uccode=0x4BA, 11987 unicodeslot=0x4BB, 11988 }, 11989 [0x4BC]={ 11990 category="lu", 11991 contextname="cyrillicCHEabkhasian", 11992 description="CYRILLIC CAPITAL LETTER ABKHASIAN CHE", 11993 direction="l", 11994 lccode=0x4BD, 11995 linebreak="al", 11996 unicodeslot=0x4BC, 11997 }, 11998 [0x4BD]={ 11999 category="ll", 12000 contextname="cyrilliccheabkhasian", 12001 description="CYRILLIC SMALL LETTER ABKHASIAN CHE", 12002 direction="l", 12003 linebreak="al", 12004 uccode=0x4BC, 12005 unicodeslot=0x4BD, 12006 }, 12007 [0x4BE]={ 12008 category="lu", 12009 contextname="cyrillicCHEDCabkhasian", 12010 description="CYRILLIC CAPITAL LETTER ABKHASIAN CHE WITH DESCENDER", 12011 direction="l", 12012 lccode=0x4BF, 12013 linebreak="al", 12014 unicodeslot=0x4BE, 12015 }, 12016 [0x4BF]={ 12017 category="ll", 12018 contextname="cyrillicchedcabkhasian", 12019 description="CYRILLIC SMALL LETTER ABKHASIAN CHE WITH DESCENDER", 12020 direction="l", 12021 linebreak="al", 12022 uccode=0x4BE, 12023 unicodeslot=0x4BF, 12024 }, 12025 [0x4C0]={ 12026 category="lu", 12027 contextname="cyrillicPALOCHKA", 12028 description="CYRILLIC LETTER PALOCHKA", 12029 direction="l", 12030 lccode=0x4CF, 12031 linebreak="al", 12032 unicodeslot=0x4C0, 12033 }, 12034 [0x4C1]={ 12035 category="lu", 12036 contextname="cyrillicZHEbreve", 12037 description="CYRILLIC CAPITAL LETTER ZHE WITH BREVE", 12038 direction="l", 12039 lccode=0x4C2, 12040 linebreak="al", 12041 shcode=0x416, 12042 specials={ "char", 0x416, 0x306 }, 12043 unicodeslot=0x4C1, 12044 }, 12045 [0x4C2]={ 12046 category="ll", 12047 contextname="cyrilliczhebreve", 12048 description="CYRILLIC SMALL LETTER ZHE WITH BREVE", 12049 direction="l", 12050 linebreak="al", 12051 shcode=0x436, 12052 specials={ "char", 0x436, 0x306 }, 12053 uccode=0x4C1, 12054 unicodeslot=0x4C2, 12055 }, 12056 [0x4C3]={ 12057 category="lu", 12058 contextname="cyrillicKAhook", 12059 description="CYRILLIC CAPITAL LETTER KA WITH HOOK", 12060 direction="l", 12061 lccode=0x4C4, 12062 linebreak="al", 12063 shcode=0x41A, 12064 specials={ "with", 0x41A, 0x1FA9D }, 12065 unicodeslot=0x4C3, 12066 }, 12067 [0x4C4]={ 12068 category="ll", 12069 contextname="cyrillickahook", 12070 description="CYRILLIC SMALL LETTER KA WITH HOOK", 12071 direction="l", 12072 linebreak="al", 12073 shcode=0x43A, 12074 specials={ "with", 0x43A, 0x1FA9D }, 12075 uccode=0x4C3, 12076 unicodeslot=0x4C4, 12077 }, 12078 [0x4C5]={ 12079 category="lu", 12080 contextname="cyrillicELtail", 12081 description="CYRILLIC CAPITAL LETTER EL WITH TAIL", 12082 direction="l", 12083 lccode=0x4C6, 12084 linebreak="al", 12085 shcode=0x41B, 12086 unicodeslot=0x4C5, 12087 }, 12088 [0x4C6]={ 12089 category="ll", 12090 contextname="cyrilliceltail", 12091 description="CYRILLIC SMALL LETTER EL WITH TAIL", 12092 direction="l", 12093 linebreak="al", 12094 shcode=0x43B, 12095 uccode=0x4C5, 12096 unicodeslot=0x4C6, 12097 }, 12098 [0x4C7]={ 12099 category="lu", 12100 contextname="cyrillicENhook", 12101 description="CYRILLIC CAPITAL LETTER EN WITH HOOK", 12102 direction="l", 12103 lccode=0x4C8, 12104 linebreak="al", 12105 shcode=0x41D, 12106 specials={ "with", 0x41D, 0x1FA9D }, 12107 unicodeslot=0x4C7, 12108 }, 12109 [0x4C8]={ 12110 category="ll", 12111 contextname="cyrillicenhook", 12112 description="CYRILLIC SMALL LETTER EN WITH HOOK", 12113 direction="l", 12114 linebreak="al", 12115 shcode=0x43D, 12116 specials={ "with", 0x43D, 0x1FA9D }, 12117 uccode=0x4C7, 12118 unicodeslot=0x4C8, 12119 }, 12120 [0x4C9]={ 12121 category="lu", 12122 contextname="cyrillicENtail", 12123 description="CYRILLIC CAPITAL LETTER EN WITH TAIL", 12124 direction="l", 12125 lccode=0x4CA, 12126 linebreak="al", 12127 shcode=0x41D, 12128 unicodeslot=0x4C9, 12129 }, 12130 [0x4CA]={ 12131 category="ll", 12132 contextname="cyrillicentail", 12133 description="CYRILLIC SMALL LETTER EN WITH TAIL", 12134 direction="l", 12135 linebreak="al", 12136 shcode=0x43D, 12137 uccode=0x4C9, 12138 unicodeslot=0x4CA, 12139 }, 12140 [0x4CB]={ 12141 category="lu", 12142 contextname="cyrillicCHEkhakassian", 12143 description="CYRILLIC CAPITAL LETTER KHAKASSIAN CHE", 12144 direction="l", 12145 lccode=0x4CC, 12146 linebreak="al", 12147 unicodeslot=0x4CB, 12148 }, 12149 [0x4CC]={ 12150 category="ll", 12151 contextname="cyrillicchekhakassian", 12152 description="CYRILLIC SMALL LETTER KHAKASSIAN CHE", 12153 direction="l", 12154 linebreak="al", 12155 uccode=0x4CB, 12156 unicodeslot=0x4CC, 12157 }, 12158 [0x4CD]={ 12159 category="lu", 12160 contextname="cyrillicEMtail", 12161 description="CYRILLIC CAPITAL LETTER EM WITH TAIL", 12162 direction="l", 12163 lccode=0x4CE, 12164 linebreak="al", 12165 shcode=0x41C, 12166 unicodeslot=0x4CD, 12167 }, 12168 [0x4CE]={ 12169 category="ll", 12170 contextname="cyrillicemtail", 12171 description="CYRILLIC SMALL LETTER EM WITH TAIL", 12172 direction="l", 12173 linebreak="al", 12174 shcode=0x43C, 12175 uccode=0x4CD, 12176 unicodeslot=0x4CE, 12177 }, 12178 [0x4CF]={ 12179 category="ll", 12180 description="CYRILLIC SMALL LETTER PALOCHKA", 12181 direction="l", 12182 linebreak="al", 12183 uccode=0x4C0, 12184 unicodeslot=0x4CF, 12185 }, 12186 [0x4D0]={ 12187 category="lu", 12188 contextname="cyrillicAbreve", 12189 description="CYRILLIC CAPITAL LETTER A WITH BREVE", 12190 direction="l", 12191 lccode=0x4D1, 12192 linebreak="al", 12193 shcode=0x410, 12194 specials={ "char", 0x410, 0x306 }, 12195 unicodeslot=0x4D0, 12196 }, 12197 [0x4D1]={ 12198 category="ll", 12199 contextname="cyrillicabreve", 12200 description="CYRILLIC SMALL LETTER A WITH BREVE", 12201 direction="l", 12202 linebreak="al", 12203 shcode=0x430, 12204 specials={ "char", 0x430, 0x306 }, 12205 uccode=0x4D0, 12206 unicodeslot=0x4D1, 12207 }, 12208 [0x4D2]={ 12209 category="lu", 12210 contextname="cyrillicAdiaeresis", 12211 description="CYRILLIC CAPITAL LETTER A WITH DIAERESIS", 12212 direction="l", 12213 lccode=0x4D3, 12214 linebreak="al", 12215 shcode=0x410, 12216 specials={ "char", 0x410, 0x308 }, 12217 unicodeslot=0x4D2, 12218 }, 12219 [0x4D3]={ 12220 category="ll", 12221 contextname="cyrillicadiaeresis", 12222 description="CYRILLIC SMALL LETTER A WITH DIAERESIS", 12223 direction="l", 12224 linebreak="al", 12225 shcode=0x430, 12226 specials={ "char", 0x430, 0x308 }, 12227 uccode=0x4D2, 12228 unicodeslot=0x4D3, 12229 }, 12230 [0x4D4]={ 12231 category="lu", 12232 contextname="cyrillicAE", 12233 description="CYRILLIC CAPITAL LIGATURE A IE", 12234 direction="l", 12235 lccode=0x4D5, 12236 linebreak="al", 12237 unicodeslot=0x4D4, 12238 }, 12239 [0x4D5]={ 12240 category="ll", 12241 contextname="cyrillicae", 12242 description="CYRILLIC SMALL LIGATURE A IE", 12243 direction="l", 12244 linebreak="al", 12245 uccode=0x4D4, 12246 unicodeslot=0x4D5, 12247 }, 12248 [0x4D6]={ 12249 category="lu", 12250 contextname="cyrillicEbreve", 12251 description="CYRILLIC CAPITAL LETTER IE WITH BREVE", 12252 direction="l", 12253 lccode=0x4D7, 12254 linebreak="al", 12255 shcode=0x415, 12256 specials={ "char", 0x415, 0x306 }, 12257 unicodeslot=0x4D6, 12258 }, 12259 [0x4D7]={ 12260 category="ll", 12261 contextname="cyrillicebreve", 12262 description="CYRILLIC SMALL LETTER IE WITH BREVE", 12263 direction="l", 12264 linebreak="al", 12265 shcode=0x435, 12266 specials={ "char", 0x435, 0x306 }, 12267 uccode=0x4D6, 12268 unicodeslot=0x4D7, 12269 }, 12270 [0x4D8]={ 12271 category="lu", 12272 contextname="cyrillicSCHWA", 12273 description="CYRILLIC CAPITAL LETTER SCHWA", 12274 direction="l", 12275 lccode=0x4D9, 12276 linebreak="al", 12277 unicodeslot=0x4D8, 12278 }, 12279 [0x4D9]={ 12280 category="ll", 12281 contextname="cyrillicschwa", 12282 description="CYRILLIC SMALL LETTER SCHWA", 12283 direction="l", 12284 linebreak="al", 12285 uccode=0x4D8, 12286 unicodeslot=0x4D9, 12287 }, 12288 [0x4DA]={ 12289 category="lu", 12290 contextname="cyrillicSCHWAdiaeresis", 12291 description="CYRILLIC CAPITAL LETTER SCHWA WITH DIAERESIS", 12292 direction="l", 12293 lccode=0x4DB, 12294 linebreak="al", 12295 shcode=0x4D8, 12296 specials={ "char", 0x4D8, 0x308 }, 12297 unicodeslot=0x4DA, 12298 }, 12299 [0x4DB]={ 12300 category="ll", 12301 contextname="cyrillicschwadiaeresis", 12302 description="CYRILLIC SMALL LETTER SCHWA WITH DIAERESIS", 12303 direction="l", 12304 linebreak="al", 12305 shcode=0x4D9, 12306 specials={ "char", 0x4D9, 0x308 }, 12307 uccode=0x4DA, 12308 unicodeslot=0x4DB, 12309 }, 12310 [0x4DC]={ 12311 category="lu", 12312 contextname="cyrillicZHEdiaeresis", 12313 description="CYRILLIC CAPITAL LETTER ZHE WITH DIAERESIS", 12314 direction="l", 12315 lccode=0x4DD, 12316 linebreak="al", 12317 shcode=0x416, 12318 specials={ "char", 0x416, 0x308 }, 12319 unicodeslot=0x4DC, 12320 }, 12321 [0x4DD]={ 12322 category="ll", 12323 contextname="cyrilliczhediaeresis", 12324 description="CYRILLIC SMALL LETTER ZHE WITH DIAERESIS", 12325 direction="l", 12326 linebreak="al", 12327 shcode=0x436, 12328 specials={ "char", 0x436, 0x308 }, 12329 uccode=0x4DC, 12330 unicodeslot=0x4DD, 12331 }, 12332 [0x4DE]={ 12333 category="lu", 12334 contextname="cyrillicZEdiaeresis", 12335 description="CYRILLIC CAPITAL LETTER ZE WITH DIAERESIS", 12336 direction="l", 12337 lccode=0x4DF, 12338 linebreak="al", 12339 shcode=0x417, 12340 specials={ "char", 0x417, 0x308 }, 12341 unicodeslot=0x4DE, 12342 }, 12343 [0x4DF]={ 12344 category="ll", 12345 contextname="cyrilliczediaeresis", 12346 description="CYRILLIC SMALL LETTER ZE WITH DIAERESIS", 12347 direction="l", 12348 linebreak="al", 12349 shcode=0x437, 12350 specials={ "char", 0x437, 0x308 }, 12351 uccode=0x4DE, 12352 unicodeslot=0x4DF, 12353 }, 12354 [0x4E0]={ 12355 category="lu", 12356 contextname="cyrillicDZEabkhasian", 12357 description="CYRILLIC CAPITAL LETTER ABKHASIAN DZE", 12358 direction="l", 12359 lccode=0x4E1, 12360 linebreak="al", 12361 unicodeslot=0x4E0, 12362 }, 12363 [0x4E1]={ 12364 category="ll", 12365 contextname="cyrillicdzeabkhasian", 12366 description="CYRILLIC SMALL LETTER ABKHASIAN DZE", 12367 direction="l", 12368 linebreak="al", 12369 uccode=0x4E0, 12370 unicodeslot=0x4E1, 12371 }, 12372 [0x4E2]={ 12373 category="lu", 12374 contextname="cyrillicImacron", 12375 description="CYRILLIC CAPITAL LETTER I WITH MACRON", 12376 direction="l", 12377 lccode=0x4E3, 12378 linebreak="al", 12379 shcode=0x418, 12380 specials={ "char", 0x418, 0x304 }, 12381 unicodeslot=0x4E2, 12382 }, 12383 [0x4E3]={ 12384 category="ll", 12385 contextname="cyrillicimacron", 12386 description="CYRILLIC SMALL LETTER I WITH MACRON", 12387 direction="l", 12388 linebreak="al", 12389 shcode=0x438, 12390 specials={ "char", 0x438, 0x304 }, 12391 uccode=0x4E2, 12392 unicodeslot=0x4E3, 12393 }, 12394 [0x4E4]={ 12395 category="lu", 12396 contextname="cyrillicIdiaeresis", 12397 description="CYRILLIC CAPITAL LETTER I WITH DIAERESIS", 12398 direction="l", 12399 lccode=0x4E5, 12400 linebreak="al", 12401 shcode=0x418, 12402 specials={ "char", 0x418, 0x308 }, 12403 unicodeslot=0x4E4, 12404 }, 12405 [0x4E5]={ 12406 category="ll", 12407 contextname="cyrillicidiaeresis", 12408 description="CYRILLIC SMALL LETTER I WITH DIAERESIS", 12409 direction="l", 12410 linebreak="al", 12411 shcode=0x438, 12412 specials={ "char", 0x438, 0x308 }, 12413 uccode=0x4E4, 12414 unicodeslot=0x4E5, 12415 }, 12416 [0x4E6]={ 12417 category="lu", 12418 contextname="cyrillicOdiaeresis", 12419 description="CYRILLIC CAPITAL LETTER O WITH DIAERESIS", 12420 direction="l", 12421 lccode=0x4E7, 12422 linebreak="al", 12423 shcode=0x41E, 12424 specials={ "char", 0x41E, 0x308 }, 12425 unicodeslot=0x4E6, 12426 }, 12427 [0x4E7]={ 12428 category="ll", 12429 contextname="cyrillicodiaeresis", 12430 description="CYRILLIC SMALL LETTER O WITH DIAERESIS", 12431 direction="l", 12432 linebreak="al", 12433 shcode=0x43E, 12434 specials={ "char", 0x43E, 0x308 }, 12435 uccode=0x4E6, 12436 unicodeslot=0x4E7, 12437 }, 12438 [0x4E8]={ 12439 category="lu", 12440 contextname="cyrillicObarred", 12441 description="CYRILLIC CAPITAL LETTER BARRED O", 12442 direction="l", 12443 lccode=0x4E9, 12444 linebreak="al", 12445 unicodeslot=0x4E8, 12446 }, 12447 [0x4E9]={ 12448 category="ll", 12449 contextname="cyrillicobarred", 12450 description="CYRILLIC SMALL LETTER BARRED O", 12451 direction="l", 12452 linebreak="al", 12453 uccode=0x4E8, 12454 unicodeslot=0x4E9, 12455 }, 12456 [0x4EA]={ 12457 category="lu", 12458 contextname="cyrillicObarreddiaeresis", 12459 description="CYRILLIC CAPITAL LETTER BARRED O WITH DIAERESIS", 12460 direction="l", 12461 lccode=0x4EB, 12462 linebreak="al", 12463 specials={ "char", 0x4E8, 0x308 }, 12464 unicodeslot=0x4EA, 12465 }, 12466 [0x4EB]={ 12467 category="ll", 12468 contextname="cyrillicobarreddiaeresis", 12469 description="CYRILLIC SMALL LETTER BARRED O WITH DIAERESIS", 12470 direction="l", 12471 linebreak="al", 12472 specials={ "char", 0x4E9, 0x308 }, 12473 uccode=0x4EA, 12474 unicodeslot=0x4EB, 12475 }, 12476 [0x4EC]={ 12477 category="lu", 12478 contextname="cyrillicEdiaeresis", 12479 description="CYRILLIC CAPITAL LETTER E WITH DIAERESIS", 12480 direction="l", 12481 lccode=0x4ED, 12482 linebreak="al", 12483 shcode=0x42D, 12484 specials={ "char", 0x42D, 0x308 }, 12485 unicodeslot=0x4EC, 12486 }, 12487 [0x4ED]={ 12488 category="ll", 12489 contextname="cyrillicediaeresis", 12490 description="CYRILLIC SMALL LETTER E WITH DIAERESIS", 12491 direction="l", 12492 linebreak="al", 12493 shcode=0x44D, 12494 specials={ "char", 0x44D, 0x308 }, 12495 uccode=0x4EC, 12496 unicodeslot=0x4ED, 12497 }, 12498 [0x4EE]={ 12499 category="lu", 12500 contextname="cyrillicUmacron", 12501 description="CYRILLIC CAPITAL LETTER U WITH MACRON", 12502 direction="l", 12503 lccode=0x4EF, 12504 linebreak="al", 12505 shcode=0x423, 12506 specials={ "char", 0x423, 0x304 }, 12507 unicodeslot=0x4EE, 12508 }, 12509 [0x4EF]={ 12510 category="ll", 12511 contextname="cyrillicumacron", 12512 description="CYRILLIC SMALL LETTER U WITH MACRON", 12513 direction="l", 12514 linebreak="al", 12515 shcode=0x443, 12516 specials={ "char", 0x443, 0x304 }, 12517 uccode=0x4EE, 12518 unicodeslot=0x4EF, 12519 }, 12520 [0x4F0]={ 12521 category="lu", 12522 contextname="cyrillicUdiaeresis", 12523 description="CYRILLIC CAPITAL LETTER U WITH DIAERESIS", 12524 direction="l", 12525 lccode=0x4F1, 12526 linebreak="al", 12527 shcode=0x423, 12528 specials={ "char", 0x423, 0x308 }, 12529 unicodeslot=0x4F0, 12530 }, 12531 [0x4F1]={ 12532 category="ll", 12533 contextname="cyrillicudiaeresis", 12534 description="CYRILLIC SMALL LETTER U WITH DIAERESIS", 12535 direction="l", 12536 linebreak="al", 12537 shcode=0x443, 12538 specials={ "char", 0x443, 0x308 }, 12539 uccode=0x4F0, 12540 unicodeslot=0x4F1, 12541 }, 12542 [0x4F2]={ 12543 category="lu", 12544 contextname="cyrillicUdoubleacute", 12545 description="CYRILLIC CAPITAL LETTER U WITH DOUBLE ACUTE", 12546 direction="l", 12547 lccode=0x4F3, 12548 linebreak="al", 12549 shcode=0x423, 12550 specials={ "char", 0x423, 0x30B }, 12551 unicodeslot=0x4F2, 12552 }, 12553 [0x4F3]={ 12554 category="ll", 12555 contextname="cyrillicudoubleacute", 12556 description="CYRILLIC SMALL LETTER U WITH DOUBLE ACUTE", 12557 direction="l", 12558 linebreak="al", 12559 shcode=0x443, 12560 specials={ "char", 0x443, 0x30B }, 12561 uccode=0x4F2, 12562 unicodeslot=0x4F3, 12563 }, 12564 [0x4F4]={ 12565 category="lu", 12566 contextname="cyrillicCHEdiaeresis", 12567 description="CYRILLIC CAPITAL LETTER CHE WITH DIAERESIS", 12568 direction="l", 12569 lccode=0x4F5, 12570 linebreak="al", 12571 shcode=0x427, 12572 specials={ "char", 0x427, 0x308 }, 12573 unicodeslot=0x4F4, 12574 }, 12575 [0x4F5]={ 12576 category="ll", 12577 contextname="cyrillicchediaeresis", 12578 description="CYRILLIC SMALL LETTER CHE WITH DIAERESIS", 12579 direction="l", 12580 linebreak="al", 12581 shcode=0x447, 12582 specials={ "char", 0x447, 0x308 }, 12583 uccode=0x4F4, 12584 unicodeslot=0x4F5, 12585 }, 12586 [0x4F6]={ 12587 category="lu", 12588 description="CYRILLIC CAPITAL LETTER GHE WITH DESCENDER", 12589 direction="l", 12590 lccode=0x4F7, 12591 linebreak="al", 12592 shcode=0x413, 12593 unicodeslot=0x4F6, 12594 }, 12595 [0x4F7]={ 12596 category="ll", 12597 description="CYRILLIC SMALL LETTER GHE WITH DESCENDER", 12598 direction="l", 12599 linebreak="al", 12600 shcode=0x433, 12601 uccode=0x4F6, 12602 unicodeslot=0x4F7, 12603 }, 12604 [0x4F8]={ 12605 category="lu", 12606 contextname="cyrillicYERUdiaeresis", 12607 description="CYRILLIC CAPITAL LETTER YERU WITH DIAERESIS", 12608 direction="l", 12609 lccode=0x4F9, 12610 linebreak="al", 12611 shcode=0x42B, 12612 specials={ "char", 0x42B, 0x308 }, 12613 unicodeslot=0x4F8, 12614 }, 12615 [0x4F9]={ 12616 category="ll", 12617 contextname="cyrillicyerudiaeresis", 12618 description="CYRILLIC SMALL LETTER YERU WITH DIAERESIS", 12619 direction="l", 12620 linebreak="al", 12621 shcode=0x44B, 12622 specials={ "char", 0x44B, 0x308 }, 12623 uccode=0x4F8, 12624 unicodeslot=0x4F9, 12625 }, 12626 [0x4FA]={ 12627 category="lu", 12628 description="CYRILLIC CAPITAL LETTER GHE WITH STROKE AND HOOK", 12629 direction="l", 12630 lccode=0x4FB, 12631 linebreak="al", 12632 shcode=0x413, 12633 unicodeslot=0x4FA, 12634 }, 12635 [0x4FB]={ 12636 category="ll", 12637 description="CYRILLIC SMALL LETTER GHE WITH STROKE AND HOOK", 12638 direction="l", 12639 linebreak="al", 12640 shcode=0x433, 12641 uccode=0x4FA, 12642 unicodeslot=0x4FB, 12643 }, 12644 [0x4FC]={ 12645 category="lu", 12646 description="CYRILLIC CAPITAL LETTER HA WITH HOOK", 12647 direction="l", 12648 lccode=0x4FD, 12649 linebreak="al", 12650 shcode=0x425, 12651 specials={ "with", 0x425, 0x1FA9D }, 12652 unicodeslot=0x4FC, 12653 }, 12654 [0x4FD]={ 12655 category="ll", 12656 description="CYRILLIC SMALL LETTER HA WITH HOOK", 12657 direction="l", 12658 linebreak="al", 12659 shcode=0x445, 12660 specials={ "with", 0x445, 0x1FA9D }, 12661 uccode=0x4FC, 12662 unicodeslot=0x4FD, 12663 }, 12664 [0x4FE]={ 12665 category="lu", 12666 description="CYRILLIC CAPITAL LETTER HA WITH STROKE", 12667 direction="l", 12668 lccode=0x4FF, 12669 linebreak="al", 12670 shcode=0x425, 12671 specials={ "with", 0x425, 0x2F }, 12672 unicodeslot=0x4FE, 12673 }, 12674 [0x4FF]={ 12675 category="ll", 12676 description="CYRILLIC SMALL LETTER HA WITH STROKE", 12677 direction="l", 12678 linebreak="al", 12679 shcode=0x445, 12680 specials={ "with", 0x445, 0x2F }, 12681 uccode=0x4FE, 12682 unicodeslot=0x4FF, 12683 }, 12684 [0x500]={ 12685 category="lu", 12686 description="CYRILLIC CAPITAL LETTER KOMI DE", 12687 direction="l", 12688 lccode=0x501, 12689 linebreak="al", 12690 unicodeslot=0x500, 12691 }, 12692 [0x501]={ 12693 category="ll", 12694 description="CYRILLIC SMALL LETTER KOMI DE", 12695 direction="l", 12696 linebreak="al", 12697 uccode=0x500, 12698 unicodeslot=0x501, 12699 }, 12700 [0x502]={ 12701 category="lu", 12702 description="CYRILLIC CAPITAL LETTER KOMI DJE", 12703 direction="l", 12704 lccode=0x503, 12705 linebreak="al", 12706 unicodeslot=0x502, 12707 }, 12708 [0x503]={ 12709 category="ll", 12710 description="CYRILLIC SMALL LETTER KOMI DJE", 12711 direction="l", 12712 linebreak="al", 12713 uccode=0x502, 12714 unicodeslot=0x503, 12715 }, 12716 [0x504]={ 12717 category="lu", 12718 description="CYRILLIC CAPITAL LETTER KOMI ZJE", 12719 direction="l", 12720 lccode=0x505, 12721 linebreak="al", 12722 unicodeslot=0x504, 12723 }, 12724 [0x505]={ 12725 category="ll", 12726 description="CYRILLIC SMALL LETTER KOMI ZJE", 12727 direction="l", 12728 linebreak="al", 12729 uccode=0x504, 12730 unicodeslot=0x505, 12731 }, 12732 [0x506]={ 12733 category="lu", 12734 description="CYRILLIC CAPITAL LETTER KOMI DZJE", 12735 direction="l", 12736 lccode=0x507, 12737 linebreak="al", 12738 unicodeslot=0x506, 12739 }, 12740 [0x507]={ 12741 category="ll", 12742 description="CYRILLIC SMALL LETTER KOMI DZJE", 12743 direction="l", 12744 linebreak="al", 12745 uccode=0x506, 12746 unicodeslot=0x507, 12747 }, 12748 [0x508]={ 12749 category="lu", 12750 description="CYRILLIC CAPITAL LETTER KOMI LJE", 12751 direction="l", 12752 lccode=0x509, 12753 linebreak="al", 12754 unicodeslot=0x508, 12755 }, 12756 [0x509]={ 12757 category="ll", 12758 description="CYRILLIC SMALL LETTER KOMI LJE", 12759 direction="l", 12760 linebreak="al", 12761 uccode=0x508, 12762 unicodeslot=0x509, 12763 }, 12764 [0x50A]={ 12765 category="lu", 12766 description="CYRILLIC CAPITAL LETTER KOMI NJE", 12767 direction="l", 12768 lccode=0x50B, 12769 linebreak="al", 12770 unicodeslot=0x50A, 12771 }, 12772 [0x50B]={ 12773 category="ll", 12774 description="CYRILLIC SMALL LETTER KOMI NJE", 12775 direction="l", 12776 linebreak="al", 12777 uccode=0x50A, 12778 unicodeslot=0x50B, 12779 }, 12780 [0x50C]={ 12781 category="lu", 12782 description="CYRILLIC CAPITAL LETTER KOMI SJE", 12783 direction="l", 12784 lccode=0x50D, 12785 linebreak="al", 12786 unicodeslot=0x50C, 12787 }, 12788 [0x50D]={ 12789 category="ll", 12790 description="CYRILLIC SMALL LETTER KOMI SJE", 12791 direction="l", 12792 linebreak="al", 12793 uccode=0x50C, 12794 unicodeslot=0x50D, 12795 }, 12796 [0x50E]={ 12797 category="lu", 12798 description="CYRILLIC CAPITAL LETTER KOMI TJE", 12799 direction="l", 12800 lccode=0x50F, 12801 linebreak="al", 12802 unicodeslot=0x50E, 12803 }, 12804 [0x50F]={ 12805 category="ll", 12806 description="CYRILLIC SMALL LETTER KOMI TJE", 12807 direction="l", 12808 linebreak="al", 12809 uccode=0x50E, 12810 unicodeslot=0x50F, 12811 }, 12812 [0x510]={ 12813 category="lu", 12814 description="CYRILLIC CAPITAL LETTER REVERSED ZE", 12815 direction="l", 12816 lccode=0x511, 12817 linebreak="al", 12818 unicodeslot=0x510, 12819 }, 12820 [0x511]={ 12821 category="ll", 12822 description="CYRILLIC SMALL LETTER REVERSED ZE", 12823 direction="l", 12824 linebreak="al", 12825 uccode=0x510, 12826 unicodeslot=0x511, 12827 }, 12828 [0x512]={ 12829 category="lu", 12830 description="CYRILLIC CAPITAL LETTER EL WITH HOOK", 12831 direction="l", 12832 lccode=0x513, 12833 linebreak="al", 12834 shcode=0x41B, 12835 specials={ "with", 0x41B, 0x1FA9D }, 12836 unicodeslot=0x512, 12837 }, 12838 [0x513]={ 12839 category="ll", 12840 description="CYRILLIC SMALL LETTER EL WITH HOOK", 12841 direction="l", 12842 linebreak="al", 12843 shcode=0x43B, 12844 specials={ "with", 0x43B, 0x1FA9D }, 12845 uccode=0x512, 12846 unicodeslot=0x513, 12847 }, 12848 [0x514]={ 12849 category="lu", 12850 description="CYRILLIC CAPITAL LETTER LHA", 12851 direction="l", 12852 lccode=0x515, 12853 linebreak="al", 12854 unicodeslot=0x514, 12855 }, 12856 [0x515]={ 12857 category="ll", 12858 description="CYRILLIC SMALL LETTER LHA", 12859 direction="l", 12860 linebreak="al", 12861 unicodeslot=0x515, 12862 }, 12863 [0x516]={ 12864 category="lu", 12865 description="CYRILLIC CAPITAL LETTER RHA", 12866 direction="l", 12867 lccode=0x517, 12868 linebreak="al", 12869 unicodeslot=0x516, 12870 }, 12871 [0x517]={ 12872 category="ll", 12873 description="CYRILLIC SMALL LETTER RHA", 12874 direction="l", 12875 linebreak="al", 12876 unicodeslot=0x517, 12877 }, 12878 [0x518]={ 12879 category="lu", 12880 description="CYRILLIC CAPITAL LETTER YAE", 12881 direction="l", 12882 lccode=0x519, 12883 linebreak="al", 12884 unicodeslot=0x518, 12885 }, 12886 [0x519]={ 12887 category="ll", 12888 description="CYRILLIC SMALL LETTER YAE", 12889 direction="l", 12890 linebreak="al", 12891 unicodeslot=0x519, 12892 }, 12893 [0x51A]={ 12894 category="lu", 12895 description="CYRILLIC CAPITAL LETTER QA", 12896 direction="l", 12897 lccode=0x51B, 12898 linebreak="al", 12899 unicodeslot=0x51A, 12900 }, 12901 [0x51B]={ 12902 category="ll", 12903 description="CYRILLIC SMALL LETTER QA", 12904 direction="l", 12905 linebreak="al", 12906 unicodeslot=0x51B, 12907 }, 12908 [0x51C]={ 12909 category="lu", 12910 description="CYRILLIC CAPITAL LETTER WE", 12911 direction="l", 12912 lccode=0x51D, 12913 linebreak="al", 12914 unicodeslot=0x51C, 12915 }, 12916 [0x51D]={ 12917 category="ll", 12918 description="CYRILLIC SMALL LETTER WE", 12919 direction="l", 12920 linebreak="al", 12921 unicodeslot=0x51D, 12922 }, 12923 [0x51E]={ 12924 category="lu", 12925 description="CYRILLIC CAPITAL LETTER ALEUT KA", 12926 direction="l", 12927 lccode=0x51F, 12928 linebreak="al", 12929 unicodeslot=0x51E, 12930 }, 12931 [0x51F]={ 12932 category="ll", 12933 description="CYRILLIC SMALL LETTER ALEUT KA", 12934 direction="l", 12935 linebreak="al", 12936 unicodeslot=0x51F, 12937 }, 12938 [0x520]={ 12939 category="lu", 12940 description="CYRILLIC CAPITAL LETTER EL WITH MIDDLE HOOK", 12941 direction="l", 12942 lccode=0x521, 12943 linebreak="al", 12944 unicodeslot=0x520, 12945 }, 12946 [0x521]={ 12947 category="ll", 12948 description="CYRILLIC SMALL LETTER EL WITH MIDDLE HOOK", 12949 direction="l", 12950 linebreak="al", 12951 unicodeslot=0x521, 12952 }, 12953 [0x522]={ 12954 category="lu", 12955 description="CYRILLIC CAPITAL LETTER EN WITH MIDDLE HOOK", 12956 direction="l", 12957 lccode=0x523, 12958 linebreak="al", 12959 unicodeslot=0x522, 12960 }, 12961 [0x523]={ 12962 category="ll", 12963 description="CYRILLIC SMALL LETTER EN WITH MIDDLE HOOK", 12964 direction="l", 12965 linebreak="al", 12966 unicodeslot=0x523, 12967 }, 12968 [0x524]={ 12969 category="lu", 12970 description="CYRILLIC CAPITAL LETTER PE WITH DESCENDER", 12971 direction="l", 12972 lccode=0x525, 12973 linebreak="al", 12974 unicodeslot=0x524, 12975 }, 12976 [0x525]={ 12977 category="ll", 12978 description="CYRILLIC SMALL LETTER PE WITH DESCENDER", 12979 direction="l", 12980 linebreak="al", 12981 unicodeslot=0x525, 12982 }, 12983 [0x526]={ 12984 category="lu", 12985 description="CYRILLIC CAPITAL LETTER SHHA WITH DESCENDER", 12986 direction="l", 12987 lccode=0x527, 12988 linebreak="al", 12989 unicodeslot=0x526, 12990 }, 12991 [0x527]={ 12992 category="ll", 12993 description="CYRILLIC SMALL LETTER SHHA WITH DESCENDER", 12994 direction="l", 12995 linebreak="al", 12996 unicodeslot=0x527, 12997 }, 12998 [0x528]={ 12999 category="lu", 13000 description="CYRILLIC CAPITAL LETTER EN WITH LEFT HOOK", 13001 direction="l", 13002 lccode=0x529, 13003 linebreak="al", 13004 unicodeslot=0x528, 13005 }, 13006 [0x529]={ 13007 category="ll", 13008 description="CYRILLIC SMALL LETTER EN WITH LEFT HOOK", 13009 direction="l", 13010 linebreak="al", 13011 unicodeslot=0x529, 13012 }, 13013 [0x52A]={ 13014 category="lu", 13015 description="CYRILLIC CAPITAL LETTER DZZHE", 13016 direction="l", 13017 lccode=0x52B, 13018 linebreak="al", 13019 unicodeslot=0x52A, 13020 }, 13021 [0x52B]={ 13022 category="ll", 13023 description="CYRILLIC SMALL LETTER DZZHE", 13024 direction="l", 13025 linebreak="al", 13026 unicodeslot=0x52B, 13027 }, 13028 [0x52C]={ 13029 category="lu", 13030 description="CYRILLIC CAPITAL LETTER DCHE", 13031 direction="l", 13032 lccode=0x52D, 13033 linebreak="al", 13034 unicodeslot=0x52C, 13035 }, 13036 [0x52D]={ 13037 category="ll", 13038 description="CYRILLIC SMALL LETTER DCHE", 13039 direction="l", 13040 linebreak="al", 13041 unicodeslot=0x52D, 13042 }, 13043 [0x52E]={ 13044 category="lu", 13045 description="CYRILLIC CAPITAL LETTER EL WITH DESCENDER", 13046 direction="l", 13047 lccode=0x52F, 13048 linebreak="al", 13049 unicodeslot=0x52E, 13050 }, 13051 [0x52F]={ 13052 category="ll", 13053 description="CYRILLIC SMALL LETTER EL WITH DESCENDER", 13054 direction="l", 13055 linebreak="al", 13056 unicodeslot=0x52F, 13057 }, 13058 [0x531]={ 13059 category="lu", 13060 description="ARMENIAN CAPITAL LETTER AYB", 13061 direction="l", 13062 lccode=0x561, 13063 linebreak="al", 13064 unicodeslot=0x531, 13065 }, 13066 [0x532]={ 13067 category="lu", 13068 description="ARMENIAN CAPITAL LETTER BEN", 13069 direction="l", 13070 lccode=0x562, 13071 linebreak="al", 13072 unicodeslot=0x532, 13073 }, 13074 [0x533]={ 13075 category="lu", 13076 description="ARMENIAN CAPITAL LETTER GIM", 13077 direction="l", 13078 lccode=0x563, 13079 linebreak="al", 13080 unicodeslot=0x533, 13081 }, 13082 [0x534]={ 13083 category="lu", 13084 description="ARMENIAN CAPITAL LETTER DA", 13085 direction="l", 13086 lccode=0x564, 13087 linebreak="al", 13088 unicodeslot=0x534, 13089 }, 13090 [0x535]={ 13091 category="lu", 13092 description="ARMENIAN CAPITAL LETTER ECH", 13093 direction="l", 13094 lccode=0x565, 13095 linebreak="al", 13096 unicodeslot=0x535, 13097 }, 13098 [0x536]={ 13099 category="lu", 13100 description="ARMENIAN CAPITAL LETTER ZA", 13101 direction="l", 13102 lccode=0x566, 13103 linebreak="al", 13104 unicodeslot=0x536, 13105 }, 13106 [0x537]={ 13107 category="lu", 13108 description="ARMENIAN CAPITAL LETTER EH", 13109 direction="l", 13110 lccode=0x567, 13111 linebreak="al", 13112 unicodeslot=0x537, 13113 }, 13114 [0x538]={ 13115 category="lu", 13116 description="ARMENIAN CAPITAL LETTER ET", 13117 direction="l", 13118 lccode=0x568, 13119 linebreak="al", 13120 unicodeslot=0x538, 13121 }, 13122 [0x539]={ 13123 category="lu", 13124 description="ARMENIAN CAPITAL LETTER TO", 13125 direction="l", 13126 lccode=0x569, 13127 linebreak="al", 13128 unicodeslot=0x539, 13129 }, 13130 [0x53A]={ 13131 category="lu", 13132 description="ARMENIAN CAPITAL LETTER ZHE", 13133 direction="l", 13134 lccode=0x56A, 13135 linebreak="al", 13136 unicodeslot=0x53A, 13137 }, 13138 [0x53B]={ 13139 category="lu", 13140 description="ARMENIAN CAPITAL LETTER INI", 13141 direction="l", 13142 lccode=0x56B, 13143 linebreak="al", 13144 unicodeslot=0x53B, 13145 }, 13146 [0x53C]={ 13147 category="lu", 13148 description="ARMENIAN CAPITAL LETTER LIWN", 13149 direction="l", 13150 lccode=0x56C, 13151 linebreak="al", 13152 unicodeslot=0x53C, 13153 }, 13154 [0x53D]={ 13155 category="lu", 13156 description="ARMENIAN CAPITAL LETTER XEH", 13157 direction="l", 13158 lccode=0x56D, 13159 linebreak="al", 13160 unicodeslot=0x53D, 13161 }, 13162 [0x53E]={ 13163 category="lu", 13164 description="ARMENIAN CAPITAL LETTER CA", 13165 direction="l", 13166 lccode=0x56E, 13167 linebreak="al", 13168 unicodeslot=0x53E, 13169 }, 13170 [0x53F]={ 13171 category="lu", 13172 description="ARMENIAN CAPITAL LETTER KEN", 13173 direction="l", 13174 lccode=0x56F, 13175 linebreak="al", 13176 unicodeslot=0x53F, 13177 }, 13178 [0x540]={ 13179 category="lu", 13180 description="ARMENIAN CAPITAL LETTER HO", 13181 direction="l", 13182 lccode=0x570, 13183 linebreak="al", 13184 unicodeslot=0x540, 13185 }, 13186 [0x541]={ 13187 category="lu", 13188 description="ARMENIAN CAPITAL LETTER JA", 13189 direction="l", 13190 lccode=0x571, 13191 linebreak="al", 13192 unicodeslot=0x541, 13193 }, 13194 [0x542]={ 13195 category="lu", 13196 description="ARMENIAN CAPITAL LETTER GHAD", 13197 direction="l", 13198 lccode=0x572, 13199 linebreak="al", 13200 unicodeslot=0x542, 13201 }, 13202 [0x543]={ 13203 category="lu", 13204 description="ARMENIAN CAPITAL LETTER CHEH", 13205 direction="l", 13206 lccode=0x573, 13207 linebreak="al", 13208 unicodeslot=0x543, 13209 }, 13210 [0x544]={ 13211 category="lu", 13212 description="ARMENIAN CAPITAL LETTER MEN", 13213 direction="l", 13214 lccode=0x574, 13215 linebreak="al", 13216 unicodeslot=0x544, 13217 }, 13218 [0x545]={ 13219 category="lu", 13220 description="ARMENIAN CAPITAL LETTER YI", 13221 direction="l", 13222 lccode=0x575, 13223 linebreak="al", 13224 unicodeslot=0x545, 13225 }, 13226 [0x546]={ 13227 category="lu", 13228 description="ARMENIAN CAPITAL LETTER NOW", 13229 direction="l", 13230 lccode=0x576, 13231 linebreak="al", 13232 unicodeslot=0x546, 13233 }, 13234 [0x547]={ 13235 category="lu", 13236 description="ARMENIAN CAPITAL LETTER SHA", 13237 direction="l", 13238 lccode=0x577, 13239 linebreak="al", 13240 unicodeslot=0x547, 13241 }, 13242 [0x548]={ 13243 category="lu", 13244 description="ARMENIAN CAPITAL LETTER VO", 13245 direction="l", 13246 lccode=0x578, 13247 linebreak="al", 13248 unicodeslot=0x548, 13249 }, 13250 [0x549]={ 13251 category="lu", 13252 description="ARMENIAN CAPITAL LETTER CHA", 13253 direction="l", 13254 lccode=0x579, 13255 linebreak="al", 13256 unicodeslot=0x549, 13257 }, 13258 [0x54A]={ 13259 category="lu", 13260 description="ARMENIAN CAPITAL LETTER PEH", 13261 direction="l", 13262 lccode=0x57A, 13263 linebreak="al", 13264 unicodeslot=0x54A, 13265 }, 13266 [0x54B]={ 13267 category="lu", 13268 description="ARMENIAN CAPITAL LETTER JHEH", 13269 direction="l", 13270 lccode=0x57B, 13271 linebreak="al", 13272 unicodeslot=0x54B, 13273 }, 13274 [0x54C]={ 13275 category="lu", 13276 description="ARMENIAN CAPITAL LETTER RA", 13277 direction="l", 13278 lccode=0x57C, 13279 linebreak="al", 13280 unicodeslot=0x54C, 13281 }, 13282 [0x54D]={ 13283 category="lu", 13284 description="ARMENIAN CAPITAL LETTER SEH", 13285 direction="l", 13286 lccode=0x57D, 13287 linebreak="al", 13288 unicodeslot=0x54D, 13289 }, 13290 [0x54E]={ 13291 category="lu", 13292 description="ARMENIAN CAPITAL LETTER VEW", 13293 direction="l", 13294 lccode=0x57E, 13295 linebreak="al", 13296 unicodeslot=0x54E, 13297 }, 13298 [0x54F]={ 13299 category="lu", 13300 description="ARMENIAN CAPITAL LETTER TIWN", 13301 direction="l", 13302 lccode=0x57F, 13303 linebreak="al", 13304 unicodeslot=0x54F, 13305 }, 13306 [0x550]={ 13307 category="lu", 13308 description="ARMENIAN CAPITAL LETTER REH", 13309 direction="l", 13310 lccode=0x580, 13311 linebreak="al", 13312 unicodeslot=0x550, 13313 }, 13314 [0x551]={ 13315 category="lu", 13316 description="ARMENIAN CAPITAL LETTER CO", 13317 direction="l", 13318 lccode=0x581, 13319 linebreak="al", 13320 unicodeslot=0x551, 13321 }, 13322 [0x552]={ 13323 category="lu", 13324 description="ARMENIAN CAPITAL LETTER YIWN", 13325 direction="l", 13326 lccode=0x582, 13327 linebreak="al", 13328 unicodeslot=0x552, 13329 }, 13330 [0x553]={ 13331 category="lu", 13332 description="ARMENIAN CAPITAL LETTER PIWR", 13333 direction="l", 13334 lccode=0x583, 13335 linebreak="al", 13336 unicodeslot=0x553, 13337 }, 13338 [0x554]={ 13339 category="lu", 13340 description="ARMENIAN CAPITAL LETTER KEH", 13341 direction="l", 13342 lccode=0x584, 13343 linebreak="al", 13344 unicodeslot=0x554, 13345 }, 13346 [0x555]={ 13347 category="lu", 13348 description="ARMENIAN CAPITAL LETTER OH", 13349 direction="l", 13350 lccode=0x585, 13351 linebreak="al", 13352 unicodeslot=0x555, 13353 }, 13354 [0x556]={ 13355 category="lu", 13356 description="ARMENIAN CAPITAL LETTER FEH", 13357 direction="l", 13358 lccode=0x586, 13359 linebreak="al", 13360 unicodeslot=0x556, 13361 }, 13362 [0x559]={ 13363 category="lm", 13364 description="ARMENIAN MODIFIER LETTER LEFT HALF RING", 13365 direction="l", 13366 linebreak="al", 13367 unicodeslot=0x559, 13368 }, 13369 [0x55A]={ 13370 category="po", 13371 description="ARMENIAN APOSTROPHE", 13372 direction="l", 13373 linebreak="al", 13374 synonyms={ "armenian modifier letter right half ring" }, 13375 unicodeslot=0x55A, 13376 }, 13377 [0x55B]={ 13378 category="po", 13379 description="ARMENIAN EMPHASIS MARK", 13380 direction="l", 13381 linebreak="al", 13382 synonyms={ "armenian shesht" }, 13383 unicodeslot=0x55B, 13384 }, 13385 [0x55C]={ 13386 category="po", 13387 description="ARMENIAN EXCLAMATION MARK", 13388 direction="l", 13389 linebreak="al", 13390 synonyms={ "armenian batsaganchakan nshan" }, 13391 unicodeslot=0x55C, 13392 }, 13393 [0x55D]={ 13394 category="po", 13395 description="ARMENIAN COMMA", 13396 direction="l", 13397 linebreak="al", 13398 synonyms={ "armenian bowt" }, 13399 unicodeslot=0x55D, 13400 }, 13401 [0x55E]={ 13402 category="po", 13403 description="ARMENIAN QUESTION MARK", 13404 direction="l", 13405 linebreak="al", 13406 synonyms={ "armenian hartsakan nshan" }, 13407 unicodeslot=0x55E, 13408 }, 13409 [0x55F]={ 13410 category="po", 13411 description="ARMENIAN ABBREVIATION MARK", 13412 direction="l", 13413 linebreak="al", 13414 synonyms={ "armenian patiw" }, 13415 unicodeslot=0x55F, 13416 }, 13417 [0x560]={ 13418 category="ll", 13419 description="ARMENIAN SMALL LETTER TURNED AYB", 13420 direction="l", 13421 linebreak="al", 13422 unicodeslot=0x560, 13423 }, 13424 [0x561]={ 13425 category="ll", 13426 description="ARMENIAN SMALL LETTER AYB", 13427 direction="l", 13428 linebreak="al", 13429 uccode=0x531, 13430 unicodeslot=0x561, 13431 }, 13432 [0x562]={ 13433 category="ll", 13434 description="ARMENIAN SMALL LETTER BEN", 13435 direction="l", 13436 linebreak="al", 13437 uccode=0x532, 13438 unicodeslot=0x562, 13439 }, 13440 [0x563]={ 13441 category="ll", 13442 description="ARMENIAN SMALL LETTER GIM", 13443 direction="l", 13444 linebreak="al", 13445 uccode=0x533, 13446 unicodeslot=0x563, 13447 }, 13448 [0x564]={ 13449 category="ll", 13450 description="ARMENIAN SMALL LETTER DA", 13451 direction="l", 13452 linebreak="al", 13453 uccode=0x534, 13454 unicodeslot=0x564, 13455 }, 13456 [0x565]={ 13457 category="ll", 13458 description="ARMENIAN SMALL LETTER ECH", 13459 direction="l", 13460 linebreak="al", 13461 uccode=0x535, 13462 unicodeslot=0x565, 13463 }, 13464 [0x566]={ 13465 category="ll", 13466 description="ARMENIAN SMALL LETTER ZA", 13467 direction="l", 13468 linebreak="al", 13469 uccode=0x536, 13470 unicodeslot=0x566, 13471 }, 13472 [0x567]={ 13473 category="ll", 13474 description="ARMENIAN SMALL LETTER EH", 13475 direction="l", 13476 linebreak="al", 13477 uccode=0x537, 13478 unicodeslot=0x567, 13479 }, 13480 [0x568]={ 13481 category="ll", 13482 description="ARMENIAN SMALL LETTER ET", 13483 direction="l", 13484 linebreak="al", 13485 uccode=0x538, 13486 unicodeslot=0x568, 13487 }, 13488 [0x569]={ 13489 category="ll", 13490 description="ARMENIAN SMALL LETTER TO", 13491 direction="l", 13492 linebreak="al", 13493 uccode=0x539, 13494 unicodeslot=0x569, 13495 }, 13496 [0x56A]={ 13497 category="ll", 13498 description="ARMENIAN SMALL LETTER ZHE", 13499 direction="l", 13500 linebreak="al", 13501 uccode=0x53A, 13502 unicodeslot=0x56A, 13503 }, 13504 [0x56B]={ 13505 category="ll", 13506 description="ARMENIAN SMALL LETTER INI", 13507 direction="l", 13508 linebreak="al", 13509 uccode=0x53B, 13510 unicodeslot=0x56B, 13511 }, 13512 [0x56C]={ 13513 category="ll", 13514 description="ARMENIAN SMALL LETTER LIWN", 13515 direction="l", 13516 linebreak="al", 13517 uccode=0x53C, 13518 unicodeslot=0x56C, 13519 }, 13520 [0x56D]={ 13521 category="ll", 13522 description="ARMENIAN SMALL LETTER XEH", 13523 direction="l", 13524 linebreak="al", 13525 uccode=0x53D, 13526 unicodeslot=0x56D, 13527 }, 13528 [0x56E]={ 13529 category="ll", 13530 description="ARMENIAN SMALL LETTER CA", 13531 direction="l", 13532 linebreak="al", 13533 uccode=0x53E, 13534 unicodeslot=0x56E, 13535 }, 13536 [0x56F]={ 13537 category="ll", 13538 description="ARMENIAN SMALL LETTER KEN", 13539 direction="l", 13540 linebreak="al", 13541 uccode=0x53F, 13542 unicodeslot=0x56F, 13543 }, 13544 [0x570]={ 13545 category="ll", 13546 description="ARMENIAN SMALL LETTER HO", 13547 direction="l", 13548 linebreak="al", 13549 uccode=0x540, 13550 unicodeslot=0x570, 13551 }, 13552 [0x571]={ 13553 category="ll", 13554 description="ARMENIAN SMALL LETTER JA", 13555 direction="l", 13556 linebreak="al", 13557 uccode=0x541, 13558 unicodeslot=0x571, 13559 }, 13560 [0x572]={ 13561 category="ll", 13562 description="ARMENIAN SMALL LETTER GHAD", 13563 direction="l", 13564 linebreak="al", 13565 uccode=0x542, 13566 unicodeslot=0x572, 13567 }, 13568 [0x573]={ 13569 category="ll", 13570 description="ARMENIAN SMALL LETTER CHEH", 13571 direction="l", 13572 linebreak="al", 13573 uccode=0x543, 13574 unicodeslot=0x573, 13575 }, 13576 [0x574]={ 13577 category="ll", 13578 description="ARMENIAN SMALL LETTER MEN", 13579 direction="l", 13580 linebreak="al", 13581 uccode=0x544, 13582 unicodeslot=0x574, 13583 }, 13584 [0x575]={ 13585 category="ll", 13586 description="ARMENIAN SMALL LETTER YI", 13587 direction="l", 13588 linebreak="al", 13589 uccode=0x545, 13590 unicodeslot=0x575, 13591 }, 13592 [0x576]={ 13593 category="ll", 13594 description="ARMENIAN SMALL LETTER NOW", 13595 direction="l", 13596 linebreak="al", 13597 uccode=0x546, 13598 unicodeslot=0x576, 13599 }, 13600 [0x577]={ 13601 category="ll", 13602 description="ARMENIAN SMALL LETTER SHA", 13603 direction="l", 13604 linebreak="al", 13605 uccode=0x547, 13606 unicodeslot=0x577, 13607 }, 13608 [0x578]={ 13609 category="ll", 13610 description="ARMENIAN SMALL LETTER VO", 13611 direction="l", 13612 linebreak="al", 13613 uccode=0x548, 13614 unicodeslot=0x578, 13615 }, 13616 [0x579]={ 13617 category="ll", 13618 description="ARMENIAN SMALL LETTER CHA", 13619 direction="l", 13620 linebreak="al", 13621 uccode=0x549, 13622 unicodeslot=0x579, 13623 }, 13624 [0x57A]={ 13625 category="ll", 13626 description="ARMENIAN SMALL LETTER PEH", 13627 direction="l", 13628 linebreak="al", 13629 uccode=0x54A, 13630 unicodeslot=0x57A, 13631 }, 13632 [0x57B]={ 13633 category="ll", 13634 description="ARMENIAN SMALL LETTER JHEH", 13635 direction="l", 13636 linebreak="al", 13637 uccode=0x54B, 13638 unicodeslot=0x57B, 13639 }, 13640 [0x57C]={ 13641 category="ll", 13642 description="ARMENIAN SMALL LETTER RA", 13643 direction="l", 13644 linebreak="al", 13645 uccode=0x54C, 13646 unicodeslot=0x57C, 13647 }, 13648 [0x57D]={ 13649 category="ll", 13650 description="ARMENIAN SMALL LETTER SEH", 13651 direction="l", 13652 linebreak="al", 13653 uccode=0x54D, 13654 unicodeslot=0x57D, 13655 }, 13656 [0x57E]={ 13657 category="ll", 13658 description="ARMENIAN SMALL LETTER VEW", 13659 direction="l", 13660 linebreak="al", 13661 uccode=0x54E, 13662 unicodeslot=0x57E, 13663 }, 13664 [0x57F]={ 13665 category="ll", 13666 description="ARMENIAN SMALL LETTER TIWN", 13667 direction="l", 13668 linebreak="al", 13669 uccode=0x54F, 13670 unicodeslot=0x57F, 13671 }, 13672 [0x580]={ 13673 category="ll", 13674 description="ARMENIAN SMALL LETTER REH", 13675 direction="l", 13676 linebreak="al", 13677 uccode=0x550, 13678 unicodeslot=0x580, 13679 }, 13680 [0x581]={ 13681 category="ll", 13682 description="ARMENIAN SMALL LETTER CO", 13683 direction="l", 13684 linebreak="al", 13685 uccode=0x551, 13686 unicodeslot=0x581, 13687 }, 13688 [0x582]={ 13689 category="ll", 13690 description="ARMENIAN SMALL LETTER YIWN", 13691 direction="l", 13692 linebreak="al", 13693 uccode=0x552, 13694 unicodeslot=0x582, 13695 }, 13696 [0x583]={ 13697 category="ll", 13698 description="ARMENIAN SMALL LETTER PIWR", 13699 direction="l", 13700 linebreak="al", 13701 uccode=0x553, 13702 unicodeslot=0x583, 13703 }, 13704 [0x584]={ 13705 category="ll", 13706 description="ARMENIAN SMALL LETTER KEH", 13707 direction="l", 13708 linebreak="al", 13709 uccode=0x554, 13710 unicodeslot=0x584, 13711 }, 13712 [0x585]={ 13713 category="ll", 13714 description="ARMENIAN SMALL LETTER OH", 13715 direction="l", 13716 linebreak="al", 13717 uccode=0x555, 13718 unicodeslot=0x585, 13719 }, 13720 [0x586]={ 13721 category="ll", 13722 description="ARMENIAN SMALL LETTER FEH", 13723 direction="l", 13724 linebreak="al", 13725 uccode=0x556, 13726 unicodeslot=0x586, 13727 }, 13728 [0x587]={ 13729 category="ll", 13730 description="ARMENIAN SMALL LIGATURE ECH YIWN", 13731 direction="l", 13732 linebreak="al", 13733 specials={ "compat", 0x565, 0x582 }, 13734 uccode={ 0x565, 0x582 }, 13735 unicodeslot=0x587, 13736 }, 13737 [0x588]={ 13738 category="ll", 13739 description="ARMENIAN SMALL LETTER YI WITH STROKE", 13740 direction="l", 13741 linebreak="al", 13742 unicodeslot=0x588, 13743 }, 13744 [0x589]={ 13745 category="po", 13746 description="ARMENIAN FULL STOP", 13747 direction="l", 13748 linebreak="is", 13749 synonyms={ "armenian vertsaket", "georgian full stop" }, 13750 unicodeslot=0x589, 13751 }, 13752 [0x58A]={ 13753 category="pd", 13754 description="ARMENIAN HYPHEN", 13755 direction="on", 13756 linebreak="ba", 13757 synonyms={ "armenian yentamna" }, 13758 unicodeslot=0x58A, 13759 }, 13760 [0x58D]={ 13761 category="so", 13762 description="RIGHT-FACING ARMENIAN ETERNITY SIGN", 13763 direction="on", 13764 linebreak="al", 13765 unicodeslot=0x58D, 13766 }, 13767 [0x58E]={ 13768 category="so", 13769 description="LEFT-FACING ARMENIAN ETERNITY SIGN", 13770 direction="on", 13771 linebreak="al", 13772 unicodeslot=0x58E, 13773 }, 13774 [0x58F]={ 13775 category="sc", 13776 description="ARMENIAN DRAM SIGN", 13777 direction="et", 13778 linebreak="pr", 13779 synonyms={ "armenian currency" }, 13780 unicodeslot=0x58F, 13781 }, 13782 [0x591]={ 13783 category="mn", 13784 combining=0xDC, 13785 description="HEBREW ACCENT ETNAHTA", 13786 direction="nsm", 13787 linebreak="cm", 13788 unicodeslot=0x591, 13789 }, 13790 [0x592]={ 13791 category="mn", 13792 combining=0xE6, 13793 description="HEBREW ACCENT SEGOL", 13794 direction="nsm", 13795 linebreak="cm", 13796 unicodeslot=0x592, 13797 }, 13798 [0x593]={ 13799 category="mn", 13800 combining=0xE6, 13801 description="HEBREW ACCENT SHALSHELET", 13802 direction="nsm", 13803 linebreak="cm", 13804 unicodeslot=0x593, 13805 }, 13806 [0x594]={ 13807 category="mn", 13808 combining=0xE6, 13809 description="HEBREW ACCENT ZAQEF QATAN", 13810 direction="nsm", 13811 linebreak="cm", 13812 unicodeslot=0x594, 13813 }, 13814 [0x595]={ 13815 category="mn", 13816 combining=0xE6, 13817 description="HEBREW ACCENT ZAQEF GADOL", 13818 direction="nsm", 13819 linebreak="cm", 13820 unicodeslot=0x595, 13821 }, 13822 [0x596]={ 13823 category="mn", 13824 combining=0xDC, 13825 description="HEBREW ACCENT TIPEHA", 13826 direction="nsm", 13827 linebreak="cm", 13828 unicodeslot=0x596, 13829 }, 13830 [0x597]={ 13831 category="mn", 13832 combining=0xE6, 13833 description="HEBREW ACCENT REVIA", 13834 direction="nsm", 13835 linebreak="cm", 13836 unicodeslot=0x597, 13837 }, 13838 [0x598]={ 13839 category="mn", 13840 combining=0xE6, 13841 description="HEBREW ACCENT ZARQA", 13842 direction="nsm", 13843 linebreak="cm", 13844 unicodeslot=0x598, 13845 }, 13846 [0x599]={ 13847 category="mn", 13848 combining=0xE6, 13849 description="HEBREW ACCENT PASHTA", 13850 direction="nsm", 13851 linebreak="cm", 13852 unicodeslot=0x599, 13853 }, 13854 [0x59A]={ 13855 category="mn", 13856 combining=0xDE, 13857 description="HEBREW ACCENT YETIV", 13858 direction="nsm", 13859 linebreak="cm", 13860 unicodeslot=0x59A, 13861 }, 13862 [0x59B]={ 13863 category="mn", 13864 combining=0xDC, 13865 description="HEBREW ACCENT TEVIR", 13866 direction="nsm", 13867 linebreak="cm", 13868 unicodeslot=0x59B, 13869 }, 13870 [0x59C]={ 13871 category="mn", 13872 combining=0xE6, 13873 description="HEBREW ACCENT GERESH", 13874 direction="nsm", 13875 linebreak="cm", 13876 unicodeslot=0x59C, 13877 }, 13878 [0x59D]={ 13879 category="mn", 13880 combining=0xE6, 13881 description="HEBREW ACCENT GERESH MUQDAM", 13882 direction="nsm", 13883 linebreak="cm", 13884 unicodeslot=0x59D, 13885 }, 13886 [0x59E]={ 13887 category="mn", 13888 combining=0xE6, 13889 description="HEBREW ACCENT GERSHAYIM", 13890 direction="nsm", 13891 linebreak="cm", 13892 unicodeslot=0x59E, 13893 }, 13894 [0x59F]={ 13895 category="mn", 13896 combining=0xE6, 13897 description="HEBREW ACCENT QARNEY PARA", 13898 direction="nsm", 13899 linebreak="cm", 13900 unicodeslot=0x59F, 13901 }, 13902 [0x5A0]={ 13903 category="mn", 13904 combining=0xE6, 13905 description="HEBREW ACCENT TELISHA GEDOLA", 13906 direction="nsm", 13907 linebreak="cm", 13908 unicodeslot=0x5A0, 13909 }, 13910 [0x5A1]={ 13911 category="mn", 13912 combining=0xE6, 13913 description="HEBREW ACCENT PAZER", 13914 direction="nsm", 13915 linebreak="cm", 13916 unicodeslot=0x5A1, 13917 }, 13918 [0x5A2]={ 13919 category="mn", 13920 combining=0xDC, 13921 description="HEBREW ACCENT ATNAH HAFUKH", 13922 direction="nsm", 13923 linebreak="cm", 13924 unicodeslot=0x5A2, 13925 }, 13926 [0x5A3]={ 13927 category="mn", 13928 combining=0xDC, 13929 description="HEBREW ACCENT MUNAH", 13930 direction="nsm", 13931 linebreak="cm", 13932 unicodeslot=0x5A3, 13933 }, 13934 [0x5A4]={ 13935 category="mn", 13936 combining=0xDC, 13937 description="HEBREW ACCENT MAHAPAKH", 13938 direction="nsm", 13939 linebreak="cm", 13940 unicodeslot=0x5A4, 13941 }, 13942 [0x5A5]={ 13943 category="mn", 13944 combining=0xDC, 13945 description="HEBREW ACCENT MERKHA", 13946 direction="nsm", 13947 linebreak="cm", 13948 unicodeslot=0x5A5, 13949 }, 13950 [0x5A6]={ 13951 category="mn", 13952 combining=0xDC, 13953 description="HEBREW ACCENT MERKHA KEFULA", 13954 direction="nsm", 13955 linebreak="cm", 13956 unicodeslot=0x5A6, 13957 }, 13958 [0x5A7]={ 13959 category="mn", 13960 combining=0xDC, 13961 description="HEBREW ACCENT DARGA", 13962 direction="nsm", 13963 linebreak="cm", 13964 unicodeslot=0x5A7, 13965 }, 13966 [0x5A8]={ 13967 category="mn", 13968 combining=0xE6, 13969 description="HEBREW ACCENT QADMA", 13970 direction="nsm", 13971 linebreak="cm", 13972 unicodeslot=0x5A8, 13973 }, 13974 [0x5A9]={ 13975 category="mn", 13976 combining=0xE6, 13977 description="HEBREW ACCENT TELISHA QETANA", 13978 direction="nsm", 13979 linebreak="cm", 13980 unicodeslot=0x5A9, 13981 }, 13982 [0x5AA]={ 13983 category="mn", 13984 combining=0xDC, 13985 description="HEBREW ACCENT YERAH BEN YOMO", 13986 direction="nsm", 13987 linebreak="cm", 13988 unicodeslot=0x5AA, 13989 }, 13990 [0x5AB]={ 13991 category="mn", 13992 combining=0xE6, 13993 description="HEBREW ACCENT OLE", 13994 direction="nsm", 13995 linebreak="cm", 13996 unicodeslot=0x5AB, 13997 }, 13998 [0x5AC]={ 13999 category="mn", 14000 combining=0xE6, 14001 description="HEBREW ACCENT ILUY", 14002 direction="nsm", 14003 linebreak="cm", 14004 unicodeslot=0x5AC, 14005 }, 14006 [0x5AD]={ 14007 category="mn", 14008 combining=0xDE, 14009 description="HEBREW ACCENT DEHI", 14010 direction="nsm", 14011 linebreak="cm", 14012 unicodeslot=0x5AD, 14013 }, 14014 [0x5AE]={ 14015 category="mn", 14016 combining=0xE4, 14017 description="HEBREW ACCENT ZINOR", 14018 direction="nsm", 14019 linebreak="cm", 14020 unicodeslot=0x5AE, 14021 }, 14022 [0x5AF]={ 14023 category="mn", 14024 combining=0xE6, 14025 description="HEBREW MARK MASORA CIRCLE", 14026 direction="nsm", 14027 linebreak="cm", 14028 unicodeslot=0x5AF, 14029 }, 14030 [0x5B0]={ 14031 category="mn", 14032 combining=0xA, 14033 description="HEBREW POINT SHEVA", 14034 direction="nsm", 14035 linebreak="cm", 14036 unicodeslot=0x5B0, 14037 }, 14038 [0x5B1]={ 14039 category="mn", 14040 combining=0xB, 14041 description="HEBREW POINT HATAF SEGOL", 14042 direction="nsm", 14043 linebreak="cm", 14044 unicodeslot=0x5B1, 14045 }, 14046 [0x5B2]={ 14047 category="mn", 14048 combining=0xC, 14049 description="HEBREW POINT HATAF PATAH", 14050 direction="nsm", 14051 linebreak="cm", 14052 unicodeslot=0x5B2, 14053 }, 14054 [0x5B3]={ 14055 category="mn", 14056 combining=0xD, 14057 description="HEBREW POINT HATAF QAMATS", 14058 direction="nsm", 14059 linebreak="cm", 14060 unicodeslot=0x5B3, 14061 }, 14062 [0x5B4]={ 14063 category="mn", 14064 combining=0xE, 14065 description="HEBREW POINT HIRIQ", 14066 direction="nsm", 14067 linebreak="cm", 14068 unicodeslot=0x5B4, 14069 }, 14070 [0x5B5]={ 14071 category="mn", 14072 combining=0xF, 14073 description="HEBREW POINT TSERE", 14074 direction="nsm", 14075 linebreak="cm", 14076 unicodeslot=0x5B5, 14077 }, 14078 [0x5B6]={ 14079 category="mn", 14080 combining=0x10, 14081 description="HEBREW POINT SEGOL", 14082 direction="nsm", 14083 linebreak="cm", 14084 unicodeslot=0x5B6, 14085 }, 14086 [0x5B7]={ 14087 category="mn", 14088 combining=0x11, 14089 description="HEBREW POINT PATAH", 14090 direction="nsm", 14091 linebreak="cm", 14092 unicodeslot=0x5B7, 14093 }, 14094 [0x5B8]={ 14095 category="mn", 14096 combining=0x12, 14097 description="HEBREW POINT QAMATS", 14098 direction="nsm", 14099 linebreak="cm", 14100 unicodeslot=0x5B8, 14101 }, 14102 [0x5B9]={ 14103 category="mn", 14104 combining=0x13, 14105 description="HEBREW POINT HOLAM", 14106 direction="nsm", 14107 linebreak="cm", 14108 unicodeslot=0x5B9, 14109 }, 14110 [0x5BA]={ 14111 category="mn", 14112 combining=0x13, 14113 description="HEBREW POINT HOLAM HASER FOR VAV", 14114 direction="nsm", 14115 linebreak="cm", 14116 unicodeslot=0x5BA, 14117 }, 14118 [0x5BB]={ 14119 category="mn", 14120 combining=0x14, 14121 description="HEBREW POINT QUBUTS", 14122 direction="nsm", 14123 linebreak="cm", 14124 unicodeslot=0x5BB, 14125 }, 14126 [0x5BC]={ 14127 category="mn", 14128 combining=0x15, 14129 description="HEBREW POINT DAGESH OR MAPIQ", 14130 direction="nsm", 14131 linebreak="cm", 14132 unicodeslot=0x5BC, 14133 }, 14134 [0x5BD]={ 14135 category="mn", 14136 combining=0x16, 14137 description="HEBREW POINT METEG", 14138 direction="nsm", 14139 linebreak="cm", 14140 unicodeslot=0x5BD, 14141 }, 14142 [0x5BE]={ 14143 category="po", 14144 description="HEBREW PUNCTUATION MAQAF", 14145 direction="r", 14146 linebreak="ba", 14147 unicodeslot=0x5BE, 14148 }, 14149 [0x5BF]={ 14150 category="mn", 14151 combining=0x17, 14152 description="HEBREW POINT RAFE", 14153 direction="nsm", 14154 linebreak="cm", 14155 unicodeslot=0x5BF, 14156 }, 14157 [0x5C0]={ 14158 category="po", 14159 description="HEBREW PUNCTUATION PASEQ", 14160 direction="r", 14161 linebreak="al", 14162 unicodeslot=0x5C0, 14163 }, 14164 [0x5C1]={ 14165 category="mn", 14166 combining=0x18, 14167 description="HEBREW POINT SHIN DOT", 14168 direction="nsm", 14169 linebreak="cm", 14170 unicodeslot=0x5C1, 14171 }, 14172 [0x5C2]={ 14173 category="mn", 14174 combining=0x19, 14175 description="HEBREW POINT SIN DOT", 14176 direction="nsm", 14177 linebreak="cm", 14178 unicodeslot=0x5C2, 14179 }, 14180 [0x5C3]={ 14181 category="po", 14182 description="HEBREW PUNCTUATION SOF PASUQ", 14183 direction="r", 14184 linebreak="al", 14185 unicodeslot=0x5C3, 14186 }, 14187 [0x5C4]={ 14188 category="mn", 14189 combining=0xE6, 14190 description="HEBREW MARK UPPER DOT", 14191 direction="nsm", 14192 linebreak="cm", 14193 unicodeslot=0x5C4, 14194 }, 14195 [0x5C5]={ 14196 category="mn", 14197 combining=0xDC, 14198 description="HEBREW MARK LOWER DOT", 14199 direction="nsm", 14200 linebreak="cm", 14201 unicodeslot=0x5C5, 14202 }, 14203 [0x5C6]={ 14204 category="po", 14205 description="HEBREW PUNCTUATION NUN HAFUKHA", 14206 direction="r", 14207 linebreak="ex", 14208 unicodeslot=0x5C6, 14209 }, 14210 [0x5C7]={ 14211 category="mn", 14212 combining=0x12, 14213 description="HEBREW POINT QAMATS QATAN", 14214 direction="nsm", 14215 linebreak="cm", 14216 unicodeslot=0x5C7, 14217 }, 14218 [0x5D0]={ 14219 category="lo", 14220 contextname="hebrewAlef", 14221 description="HEBREW LETTER ALEF", 14222 direction="r", 14223 linebreak="hl", 14224 unicodeslot=0x5D0, 14225 }, 14226 [0x5D1]={ 14227 category="lo", 14228 contextname="hebrewBet", 14229 description="HEBREW LETTER BET", 14230 direction="r", 14231 linebreak="hl", 14232 unicodeslot=0x5D1, 14233 }, 14234 [0x5D2]={ 14235 category="lo", 14236 contextname="hebrewGimel", 14237 description="HEBREW LETTER GIMEL", 14238 direction="r", 14239 linebreak="hl", 14240 unicodeslot=0x5D2, 14241 }, 14242 [0x5D3]={ 14243 category="lo", 14244 contextname="hebrewDalet", 14245 description="HEBREW LETTER DALET", 14246 direction="r", 14247 linebreak="hl", 14248 unicodeslot=0x5D3, 14249 }, 14250 [0x5D4]={ 14251 category="lo", 14252 contextname="hebrewHe", 14253 description="HEBREW LETTER HE", 14254 direction="r", 14255 linebreak="hl", 14256 unicodeslot=0x5D4, 14257 }, 14258 [0x5D5]={ 14259 category="lo", 14260 contextname="hebrewVav", 14261 description="HEBREW LETTER VAV", 14262 direction="r", 14263 linebreak="hl", 14264 unicodeslot=0x5D5, 14265 }, 14266 [0x5D6]={ 14267 category="lo", 14268 contextname="hebrewZayin", 14269 description="HEBREW LETTER ZAYIN", 14270 direction="r", 14271 linebreak="hl", 14272 unicodeslot=0x5D6, 14273 }, 14274 [0x5D7]={ 14275 category="lo", 14276 contextname="hebrewHet", 14277 description="HEBREW LETTER HET", 14278 direction="r", 14279 linebreak="hl", 14280 unicodeslot=0x5D7, 14281 }, 14282 [0x5D8]={ 14283 category="lo", 14284 contextname="hebrewTet", 14285 description="HEBREW LETTER TET", 14286 direction="r", 14287 linebreak="hl", 14288 unicodeslot=0x5D8, 14289 }, 14290 [0x5D9]={ 14291 category="lo", 14292 contextname="hebrewYod", 14293 description="HEBREW LETTER YOD", 14294 direction="r", 14295 linebreak="hl", 14296 unicodeslot=0x5D9, 14297 }, 14298 [0x5DA]={ 14299 category="lo", 14300 contextname="hebrewKaffinal", 14301 description="HEBREW LETTER FINAL KAF", 14302 direction="r", 14303 linebreak="hl", 14304 unicodeslot=0x5DA, 14305 }, 14306 [0x5DB]={ 14307 category="lo", 14308 contextname="hebrewKaf", 14309 description="HEBREW LETTER KAF", 14310 direction="r", 14311 linebreak="hl", 14312 unicodeslot=0x5DB, 14313 }, 14314 [0x5DC]={ 14315 category="lo", 14316 contextname="hebrewLamed", 14317 description="HEBREW LETTER LAMED", 14318 direction="r", 14319 linebreak="hl", 14320 unicodeslot=0x5DC, 14321 }, 14322 [0x5DD]={ 14323 category="lo", 14324 contextname="hebrewMemfinal", 14325 description="HEBREW LETTER FINAL MEM", 14326 direction="r", 14327 linebreak="hl", 14328 unicodeslot=0x5DD, 14329 }, 14330 [0x5DE]={ 14331 category="lo", 14332 contextname="hebrewMem", 14333 description="HEBREW LETTER MEM", 14334 direction="r", 14335 linebreak="hl", 14336 unicodeslot=0x5DE, 14337 }, 14338 [0x5DF]={ 14339 category="lo", 14340 contextname="hebrewNunfinal", 14341 description="HEBREW LETTER FINAL NUN", 14342 direction="r", 14343 linebreak="hl", 14344 unicodeslot=0x5DF, 14345 }, 14346 [0x5E0]={ 14347 category="lo", 14348 contextname="hebrewNun", 14349 description="HEBREW LETTER NUN", 14350 direction="r", 14351 linebreak="hl", 14352 unicodeslot=0x5E0, 14353 }, 14354 [0x5E1]={ 14355 category="lo", 14356 contextname="hebrewSamekh", 14357 description="HEBREW LETTER SAMEKH", 14358 direction="r", 14359 linebreak="hl", 14360 unicodeslot=0x5E1, 14361 }, 14362 [0x5E2]={ 14363 category="lo", 14364 contextname="hebrewAyin", 14365 description="HEBREW LETTER AYIN", 14366 direction="r", 14367 linebreak="hl", 14368 unicodeslot=0x5E2, 14369 }, 14370 [0x5E3]={ 14371 category="lo", 14372 contextname="hebrewPefinal", 14373 description="HEBREW LETTER FINAL PE", 14374 direction="r", 14375 linebreak="hl", 14376 unicodeslot=0x5E3, 14377 }, 14378 [0x5E4]={ 14379 category="lo", 14380 contextname="hebrewPe", 14381 description="HEBREW LETTER PE", 14382 direction="r", 14383 linebreak="hl", 14384 unicodeslot=0x5E4, 14385 }, 14386 [0x5E5]={ 14387 category="lo", 14388 contextname="hebrewTsadifinal", 14389 description="HEBREW LETTER FINAL TSADI", 14390 direction="r", 14391 linebreak="hl", 14392 unicodeslot=0x5E5, 14393 }, 14394 [0x5E6]={ 14395 category="lo", 14396 contextname="hebrewTsadi", 14397 description="HEBREW LETTER TSADI", 14398 direction="r", 14399 linebreak="hl", 14400 unicodeslot=0x5E6, 14401 }, 14402 [0x5E7]={ 14403 category="lo", 14404 contextname="hebrewQof", 14405 description="HEBREW LETTER QOF", 14406 direction="r", 14407 linebreak="hl", 14408 unicodeslot=0x5E7, 14409 }, 14410 [0x5E8]={ 14411 category="lo", 14412 contextname="hebrewResh", 14413 description="HEBREW LETTER RESH", 14414 direction="r", 14415 linebreak="hl", 14416 unicodeslot=0x5E8, 14417 }, 14418 [0x5E9]={ 14419 category="lo", 14420 contextname="hebrewShin", 14421 description="HEBREW LETTER SHIN", 14422 direction="r", 14423 linebreak="hl", 14424 unicodeslot=0x5E9, 14425 }, 14426 [0x5EA]={ 14427 category="lo", 14428 contextname="hebrewTav", 14429 description="HEBREW LETTER TAV", 14430 direction="r", 14431 linebreak="hl", 14432 unicodeslot=0x5EA, 14433 }, 14434 [0x5EF]={ 14435 category="lo", 14436 description="HEBREW YOD TRIANGLE", 14437 direction="r", 14438 linebreak="hl", 14439 unicodeslot=0x5EF, 14440 }, 14441 [0x5F0]={ 14442 category="lo", 14443 description="HEBREW LIGATURE YIDDISH DOUBLE VAV", 14444 direction="r", 14445 linebreak="hl", 14446 unicodeslot=0x5F0, 14447 }, 14448 [0x5F1]={ 14449 category="lo", 14450 description="HEBREW LIGATURE YIDDISH VAV YOD", 14451 direction="r", 14452 linebreak="hl", 14453 unicodeslot=0x5F1, 14454 }, 14455 [0x5F2]={ 14456 category="lo", 14457 description="HEBREW LIGATURE YIDDISH DOUBLE YOD", 14458 direction="r", 14459 linebreak="hl", 14460 unicodeslot=0x5F2, 14461 }, 14462 [0x5F3]={ 14463 category="po", 14464 description="HEBREW PUNCTUATION GERESH", 14465 direction="r", 14466 linebreak="al", 14467 unicodeslot=0x5F3, 14468 }, 14469 [0x5F4]={ 14470 category="po", 14471 description="HEBREW PUNCTUATION GERSHAYIM", 14472 direction="r", 14473 linebreak="al", 14474 unicodeslot=0x5F4, 14475 }, 14476 [0x600]={ 14477 arabic="u", 14478 category="cf", 14479 contextname="arabicnumber", 14480 description="ARABIC NUMBER SIGN", 14481 direction="an", 14482 linebreak="nu", 14483 unicodeslot=0x600, 14484 visible=true, 14485 }, 14486 [0x601]={ 14487 arabic="u", 14488 category="cf", 14489 contextname="arabicsanah", 14490 description="ARABIC SIGN SANAH", 14491 direction="an", 14492 linebreak="nu", 14493 unicodeslot=0x601, 14494 visible=true, 14495 }, 14496 [0x602]={ 14497 arabic="u", 14498 category="cf", 14499 contextname="arabicfootnotemarker", 14500 description="ARABIC FOOTNOTE MARKER", 14501 direction="an", 14502 linebreak="nu", 14503 unicodeslot=0x602, 14504 visible=true, 14505 }, 14506 [0x603]={ 14507 arabic="u", 14508 category="cf", 14509 contextname="arabicsafha", 14510 description="ARABIC SIGN SAFHA", 14511 direction="an", 14512 linebreak="nu", 14513 unicodeslot=0x603, 14514 visible=true, 14515 }, 14516 [0x604]={ 14517 arabic="u", 14518 category="cf", 14519 contextname="arabicsamvat", 14520 description="ARABIC SIGN SAMVAT", 14521 direction="an", 14522 linebreak="nu", 14523 unicodeslot=0x604, 14524 }, 14525 [0x605]={ 14526 arabic="u", 14527 category="cf", 14528 contextname="arabicnumberabove", 14529 description="ARABIC NUMBER MARK ABOVE", 14530 direction="an", 14531 linebreak="nu", 14532 unicodeslot=0x605, 14533 }, 14534 [0x606]={ 14535 category="sm", 14536 contextname="arabiccuberoot", 14537 description="ARABIC-INDIC CUBE ROOT", 14538 direction="on", 14539 linebreak="al", 14540 unicodeslot=0x606, 14541 }, 14542 [0x607]={ 14543 category="sm", 14544 contextname="arabicfourthroot", 14545 description="ARABIC-INDIC FOURTH ROOT", 14546 direction="on", 14547 linebreak="al", 14548 unicodeslot=0x607, 14549 }, 14550 [0x608]={ 14551 arabic="u", 14552 category="sm", 14553 contextname="arabicray", 14554 description="ARABIC RAY", 14555 direction="al", 14556 linebreak="al", 14557 unicodeslot=0x608, 14558 }, 14559 [0x609]={ 14560 category="po", 14561 contextname="arabicpermille", 14562 description="ARABIC-INDIC PER MILLE SIGN", 14563 direction="et", 14564 linebreak="po", 14565 unicodeslot=0x609, 14566 }, 14567 [0x60A]={ 14568 category="po", 14569 contextname="arabicpertenthousand", 14570 description="ARABIC-INDIC PER TEN THOUSAND SIGN", 14571 direction="et", 14572 linebreak="po", 14573 unicodeslot=0x60A, 14574 }, 14575 [0x60B]={ 14576 arabic="u", 14577 category="sc", 14578 contextname="afghanicurrency", 14579 description="AFGHANI SIGN", 14580 direction="al", 14581 linebreak="po", 14582 unicodeslot=0x60B, 14583 }, 14584 [0x60C]={ 14585 category="po", 14586 contextname="arabiccomma", 14587 description="ARABIC COMMA", 14588 direction="cs", 14589 linebreak="is", 14590 unicodeslot=0x60C, 14591 }, 14592 [0x60D]={ 14593 category="po", 14594 contextname="arabicdateseparator", 14595 description="ARABIC DATE SEPARATOR", 14596 direction="al", 14597 linebreak="is", 14598 unicodeslot=0x60D, 14599 }, 14600 [0x60E]={ 14601 category="so", 14602 contextname="arabicpoeticverse", 14603 description="ARABIC POETIC VERSE SIGN", 14604 direction="on", 14605 linebreak="al", 14606 unicodeslot=0x60E, 14607 }, 14608 [0x60F]={ 14609 category="so", 14610 contextname="arabicmisra", 14611 description="ARABIC SIGN MISRA", 14612 direction="on", 14613 linebreak="al", 14614 unicodeslot=0x60F, 14615 }, 14616 [0x610]={ 14617 category="mn", 14618 combining=0xE6, 14619 contextname="arabichighsallallahou", 14620 description="ARABIC SIGN SALLALLAHOU ALAYHE WASSALLAM", 14621 direction="nsm", 14622 linebreak="cm", 14623 unicodeslot=0x610, 14624 }, 14625 [0x611]={ 14626 category="mn", 14627 combining=0xE6, 14628 contextname="arabichighalayheassallam", 14629 description="ARABIC SIGN ALAYHE ASSALLAM", 14630 direction="nsm", 14631 linebreak="cm", 14632 unicodeslot=0x611, 14633 }, 14634 [0x612]={ 14635 category="mn", 14636 combining=0xE6, 14637 contextname="arabichighrahmatullahalayhe", 14638 description="ARABIC SIGN RAHMATULLAH ALAYHE", 14639 direction="nsm", 14640 linebreak="cm", 14641 unicodeslot=0x612, 14642 }, 14643 [0x613]={ 14644 category="mn", 14645 combining=0xE6, 14646 contextname="arabichighradiallahouanhu", 14647 description="ARABIC SIGN RADI ALLAHOU ANHU", 14648 direction="nsm", 14649 linebreak="cm", 14650 unicodeslot=0x613, 14651 }, 14652 [0x614]={ 14653 category="mn", 14654 combining=0xE6, 14655 contextname="arabichightakhallus", 14656 description="ARABIC SIGN TAKHALLUS", 14657 direction="nsm", 14658 linebreak="cm", 14659 unicodeslot=0x614, 14660 }, 14661 [0x615]={ 14662 category="mn", 14663 combining=0xE6, 14664 contextname="arabichightah", 14665 description="ARABIC SMALL HIGH TAH", 14666 direction="nsm", 14667 linebreak="cm", 14668 unicodeslot=0x615, 14669 }, 14670 [0x616]={ 14671 category="mn", 14672 combining=0xE6, 14673 description="ARABIC SMALL HIGH LIGATURE ALEF WITH LAM WITH YEH", 14674 direction="nsm", 14675 linebreak="cm", 14676 unicodeslot=0x616, 14677 }, 14678 [0x617]={ 14679 category="mn", 14680 combining=0xE6, 14681 contextname="arabichighzain", 14682 description="ARABIC SMALL HIGH ZAIN", 14683 direction="nsm", 14684 linebreak="cm", 14685 unicodeslot=0x617, 14686 }, 14687 [0x618]={ 14688 category="mn", 14689 combining=0x1E, 14690 description="ARABIC SMALL FATHA", 14691 direction="nsm", 14692 linebreak="cm", 14693 unicodeslot=0x618, 14694 }, 14695 [0x619]={ 14696 category="mn", 14697 combining=0x1F, 14698 description="ARABIC SMALL DAMMA", 14699 direction="nsm", 14700 linebreak="cm", 14701 unicodeslot=0x619, 14702 }, 14703 [0x61A]={ 14704 category="mn", 14705 combining=0x20, 14706 description="ARABIC SMALL KASRA", 14707 direction="nsm", 14708 linebreak="cm", 14709 unicodeslot=0x61A, 14710 }, 14711 [0x61B]={ 14712 category="po", 14713 contextname="arabicsemicolon", 14714 description="ARABIC SEMICOLON", 14715 direction="al", 14716 linebreak="ex", 14717 unicodeslot=0x61B, 14718 }, 14719 [0x61C]={ 14720 category="cf", 14721 contextname="arabiclettermark", 14722 description="ARABIC LETTER MARK", 14723 direction="al", 14724 linebreak="cm", 14725 unicodeslot=0x61C, 14726 }, 14727 [0x61D]={ 14728 category="po", 14729 description="ARABIC END OF TEXT MARK", 14730 direction="al", 14731 linebreak="ex", 14732 unicodeslot=0x61D, 14733 }, 14734 [0x61E]={ 14735 category="po", 14736 contextname="arabictripledot", 14737 description="ARABIC TRIPLE DOT PUNCTUATION MARK", 14738 direction="al", 14739 linebreak="ex", 14740 unicodeslot=0x61E, 14741 }, 14742 [0x61F]={ 14743 category="po", 14744 contextname="arabicquestion", 14745 description="ARABIC QUESTION MARK", 14746 direction="al", 14747 linebreak="ex", 14748 unicodeslot=0x61F, 14749 }, 14750 [0x620]={ 14751 arabic="d", 14752 category="lo", 14753 description="ARABIC LETTER KASHMIRI YEH", 14754 direction="al", 14755 linebreak="al", 14756 unicodeslot=0x620, 14757 }, 14758 [0x621]={ 14759 arabic="u", 14760 category="lo", 14761 description="ARABIC LETTER HAMZA", 14762 direction="al", 14763 linebreak="al", 14764 unicodeslot=0x621, 14765 }, 14766 [0x622]={ 14767 arabic="r", 14768 category="lo", 14769 description="ARABIC LETTER ALEF WITH MADDA ABOVE", 14770 direction="al", 14771 linebreak="al", 14772 shcode=0x627, 14773 specials={ "char", 0x627, 0x653 }, 14774 unicodeslot=0x622, 14775 }, 14776 [0x623]={ 14777 arabic="r", 14778 category="lo", 14779 description="ARABIC LETTER ALEF WITH HAMZA ABOVE", 14780 direction="al", 14781 linebreak="al", 14782 shcode=0x627, 14783 specials={ "char", 0x627, 0x654 }, 14784 unicodeslot=0x623, 14785 }, 14786 [0x624]={ 14787 arabic="r", 14788 category="lo", 14789 description="ARABIC LETTER WAW WITH HAMZA ABOVE", 14790 direction="al", 14791 linebreak="al", 14792 shcode=0x648, 14793 specials={ "char", 0x648, 0x654 }, 14794 unicodeslot=0x624, 14795 }, 14796 [0x625]={ 14797 arabic="r", 14798 category="lo", 14799 description="ARABIC LETTER ALEF WITH HAMZA BELOW", 14800 direction="al", 14801 linebreak="al", 14802 shcode=0x627, 14803 specials={ "char", 0x627, 0x655 }, 14804 unicodeslot=0x625, 14805 }, 14806 [0x626]={ 14807 arabic="d", 14808 category="lo", 14809 description="ARABIC LETTER YEH WITH HAMZA ABOVE", 14810 direction="al", 14811 linebreak="al", 14812 shcode=0x64A, 14813 specials={ "char", 0x64A, 0x654 }, 14814 unicodeslot=0x626, 14815 }, 14816 [0x627]={ 14817 arabic="r", 14818 category="lo", 14819 description="ARABIC LETTER ALEF", 14820 direction="al", 14821 linebreak="al", 14822 unicodeslot=0x627, 14823 }, 14824 [0x628]={ 14825 arabic="d", 14826 category="lo", 14827 description="ARABIC LETTER BEH", 14828 direction="al", 14829 linebreak="al", 14830 unicodeslot=0x628, 14831 }, 14832 [0x629]={ 14833 arabic="r", 14834 category="lo", 14835 description="ARABIC LETTER TEH MARBUTA", 14836 direction="al", 14837 linebreak="al", 14838 unicodeslot=0x629, 14839 }, 14840 [0x62A]={ 14841 arabic="d", 14842 category="lo", 14843 description="ARABIC LETTER TEH", 14844 direction="al", 14845 linebreak="al", 14846 unicodeslot=0x62A, 14847 }, 14848 [0x62B]={ 14849 arabic="d", 14850 category="lo", 14851 description="ARABIC LETTER THEH", 14852 direction="al", 14853 linebreak="al", 14854 unicodeslot=0x62B, 14855 }, 14856 [0x62C]={ 14857 arabic="d", 14858 category="lo", 14859 description="ARABIC LETTER JEEM", 14860 direction="al", 14861 linebreak="al", 14862 unicodeslot=0x62C, 14863 }, 14864 [0x62D]={ 14865 arabic="d", 14866 category="lo", 14867 description="ARABIC LETTER HAH", 14868 direction="al", 14869 linebreak="al", 14870 unicodeslot=0x62D, 14871 }, 14872 [0x62E]={ 14873 arabic="d", 14874 category="lo", 14875 description="ARABIC LETTER KHAH", 14876 direction="al", 14877 linebreak="al", 14878 unicodeslot=0x62E, 14879 }, 14880 [0x62F]={ 14881 arabic="r", 14882 category="lo", 14883 description="ARABIC LETTER DAL", 14884 direction="al", 14885 linebreak="al", 14886 unicodeslot=0x62F, 14887 }, 14888 [0x630]={ 14889 arabic="r", 14890 category="lo", 14891 description="ARABIC LETTER THAL", 14892 direction="al", 14893 linebreak="al", 14894 unicodeslot=0x630, 14895 }, 14896 [0x631]={ 14897 arabic="r", 14898 category="lo", 14899 description="ARABIC LETTER REH", 14900 direction="al", 14901 linebreak="al", 14902 unicodeslot=0x631, 14903 }, 14904 [0x632]={ 14905 arabic="r", 14906 category="lo", 14907 description="ARABIC LETTER ZAIN", 14908 direction="al", 14909 linebreak="al", 14910 unicodeslot=0x632, 14911 }, 14912 [0x633]={ 14913 arabic="d", 14914 category="lo", 14915 description="ARABIC LETTER SEEN", 14916 direction="al", 14917 linebreak="al", 14918 unicodeslot=0x633, 14919 }, 14920 [0x634]={ 14921 arabic="d", 14922 category="lo", 14923 description="ARABIC LETTER SHEEN", 14924 direction="al", 14925 linebreak="al", 14926 unicodeslot=0x634, 14927 }, 14928 [0x635]={ 14929 arabic="d", 14930 category="lo", 14931 description="ARABIC LETTER SAD", 14932 direction="al", 14933 linebreak="al", 14934 unicodeslot=0x635, 14935 }, 14936 [0x636]={ 14937 arabic="d", 14938 category="lo", 14939 description="ARABIC LETTER DAD", 14940 direction="al", 14941 linebreak="al", 14942 unicodeslot=0x636, 14943 }, 14944 [0x637]={ 14945 arabic="d", 14946 category="lo", 14947 description="ARABIC LETTER TAH", 14948 direction="al", 14949 linebreak="al", 14950 unicodeslot=0x637, 14951 }, 14952 [0x638]={ 14953 arabic="d", 14954 category="lo", 14955 description="ARABIC LETTER ZAH", 14956 direction="al", 14957 linebreak="al", 14958 unicodeslot=0x638, 14959 }, 14960 [0x639]={ 14961 arabic="d", 14962 category="lo", 14963 description="ARABIC LETTER AIN", 14964 direction="al", 14965 linebreak="al", 14966 unicodeslot=0x639, 14967 }, 14968 [0x63A]={ 14969 arabic="d", 14970 category="lo", 14971 description="ARABIC LETTER GHAIN", 14972 direction="al", 14973 linebreak="al", 14974 unicodeslot=0x63A, 14975 }, 14976 [0x63B]={ 14977 arabic="d", 14978 category="lo", 14979 description="ARABIC LETTER KEHEH WITH TWO DOTS ABOVE", 14980 direction="al", 14981 linebreak="al", 14982 unicodeslot=0x63B, 14983 }, 14984 [0x63C]={ 14985 arabic="d", 14986 category="lo", 14987 description="ARABIC LETTER KEHEH WITH THREE DOTS BELOW", 14988 direction="al", 14989 linebreak="al", 14990 unicodeslot=0x63C, 14991 }, 14992 [0x63D]={ 14993 arabic="d", 14994 category="lo", 14995 description="ARABIC LETTER FARSI YEH WITH INVERTED V", 14996 direction="al", 14997 linebreak="al", 14998 unicodeslot=0x63D, 14999 }, 15000 [0x63E]={ 15001 arabic="d", 15002 category="lo", 15003 description="ARABIC LETTER FARSI YEH WITH TWO DOTS ABOVE", 15004 direction="al", 15005 linebreak="al", 15006 unicodeslot=0x63E, 15007 }, 15008 [0x63F]={ 15009 arabic="d", 15010 category="lo", 15011 description="ARABIC LETTER FARSI YEH WITH THREE DOTS ABOVE", 15012 direction="al", 15013 linebreak="al", 15014 unicodeslot=0x63F, 15015 }, 15016 [0x640]={ 15017 arabic="c", 15018 category="lm", 15019 description="ARABIC TATWEEL", 15020 direction="al", 15021 linebreak="al", 15022 synonyms={ "arabic kashida" }, 15023 unicodeslot=0x640, 15024 }, 15025 [0x641]={ 15026 arabic="d", 15027 category="lo", 15028 description="ARABIC LETTER FEH", 15029 direction="al", 15030 linebreak="al", 15031 unicodeslot=0x641, 15032 }, 15033 [0x642]={ 15034 arabic="d", 15035 category="lo", 15036 description="ARABIC LETTER QAF", 15037 direction="al", 15038 linebreak="al", 15039 unicodeslot=0x642, 15040 }, 15041 [0x643]={ 15042 arabic="d", 15043 category="lo", 15044 description="ARABIC LETTER KAF", 15045 direction="al", 15046 linebreak="al", 15047 unicodeslot=0x643, 15048 }, 15049 [0x644]={ 15050 arabic="d", 15051 category="lo", 15052 description="ARABIC LETTER LAM", 15053 direction="al", 15054 linebreak="al", 15055 unicodeslot=0x644, 15056 }, 15057 [0x645]={ 15058 arabic="d", 15059 category="lo", 15060 description="ARABIC LETTER MEEM", 15061 direction="al", 15062 linebreak="al", 15063 unicodeslot=0x645, 15064 }, 15065 [0x646]={ 15066 arabic="d", 15067 category="lo", 15068 description="ARABIC LETTER NOON", 15069 direction="al", 15070 linebreak="al", 15071 unicodeslot=0x646, 15072 }, 15073 [0x647]={ 15074 arabic="d", 15075 category="lo", 15076 description="ARABIC LETTER HEH", 15077 direction="al", 15078 linebreak="al", 15079 unicodeslot=0x647, 15080 }, 15081 [0x648]={ 15082 arabic="r", 15083 category="lo", 15084 description="ARABIC LETTER WAW", 15085 direction="al", 15086 linebreak="al", 15087 unicodeslot=0x648, 15088 }, 15089 [0x649]={ 15090 arabic="d", 15091 category="lo", 15092 description="ARABIC LETTER ALEF MAKSURA", 15093 direction="al", 15094 linebreak="al", 15095 unicodeslot=0x649, 15096 }, 15097 [0x64A]={ 15098 arabic="d", 15099 category="lo", 15100 description="ARABIC LETTER YEH", 15101 direction="al", 15102 linebreak="al", 15103 unicodeslot=0x64A, 15104 }, 15105 [0x64B]={ 15106 category="mn", 15107 combining=0x1B, 15108 description="ARABIC FATHATAN", 15109 direction="nsm", 15110 linebreak="cm", 15111 unicodeslot=0x64B, 15112 }, 15113 [0x64C]={ 15114 category="mn", 15115 combining=0x1C, 15116 description="ARABIC DAMMATAN", 15117 direction="nsm", 15118 linebreak="cm", 15119 unicodeslot=0x64C, 15120 }, 15121 [0x64D]={ 15122 category="mn", 15123 combining=0x1D, 15124 description="ARABIC KASRATAN", 15125 direction="nsm", 15126 linebreak="cm", 15127 unicodeslot=0x64D, 15128 }, 15129 [0x64E]={ 15130 category="mn", 15131 combining=0x1E, 15132 description="ARABIC FATHA", 15133 direction="nsm", 15134 linebreak="cm", 15135 unicodeslot=0x64E, 15136 }, 15137 [0x64F]={ 15138 category="mn", 15139 combining=0x1F, 15140 description="ARABIC DAMMA", 15141 direction="nsm", 15142 linebreak="cm", 15143 unicodeslot=0x64F, 15144 }, 15145 [0x650]={ 15146 category="mn", 15147 combining=0x20, 15148 description="ARABIC KASRA", 15149 direction="nsm", 15150 linebreak="cm", 15151 unicodeslot=0x650, 15152 }, 15153 [0x651]={ 15154 category="mn", 15155 combining=0x21, 15156 description="ARABIC SHADDA", 15157 direction="nsm", 15158 linebreak="cm", 15159 unicodeslot=0x651, 15160 }, 15161 [0x652]={ 15162 category="mn", 15163 combining=0x22, 15164 description="ARABIC SUKUN", 15165 direction="nsm", 15166 linebreak="cm", 15167 unicodeslot=0x652, 15168 }, 15169 [0x653]={ 15170 category="mn", 15171 combining=0xE6, 15172 description="ARABIC MADDAH ABOVE", 15173 direction="nsm", 15174 linebreak="cm", 15175 unicodeslot=0x653, 15176 }, 15177 [0x654]={ 15178 category="mn", 15179 combining=0xE6, 15180 description="ARABIC HAMZA ABOVE", 15181 direction="nsm", 15182 linebreak="cm", 15183 unicodeslot=0x654, 15184 }, 15185 [0x655]={ 15186 category="mn", 15187 combining=0xDC, 15188 description="ARABIC HAMZA BELOW", 15189 direction="nsm", 15190 linebreak="cm", 15191 unicodeslot=0x655, 15192 }, 15193 [0x656]={ 15194 category="mn", 15195 combining=0xDC, 15196 description="ARABIC SUBSCRIPT ALEF", 15197 direction="nsm", 15198 linebreak="cm", 15199 unicodeslot=0x656, 15200 }, 15201 [0x657]={ 15202 category="mn", 15203 combining=0xE6, 15204 description="ARABIC INVERTED DAMMA", 15205 direction="nsm", 15206 linebreak="cm", 15207 unicodeslot=0x657, 15208 }, 15209 [0x658]={ 15210 category="mn", 15211 combining=0xE6, 15212 description="ARABIC MARK NOON GHUNNA", 15213 direction="nsm", 15214 linebreak="cm", 15215 unicodeslot=0x658, 15216 }, 15217 [0x659]={ 15218 category="mn", 15219 combining=0xE6, 15220 description="ARABIC ZWARAKAY", 15221 direction="nsm", 15222 linebreak="cm", 15223 unicodeslot=0x659, 15224 }, 15225 [0x65A]={ 15226 category="mn", 15227 combining=0xE6, 15228 description="ARABIC VOWEL SIGN SMALL V ABOVE", 15229 direction="nsm", 15230 linebreak="cm", 15231 unicodeslot=0x65A, 15232 }, 15233 [0x65B]={ 15234 category="mn", 15235 combining=0xE6, 15236 description="ARABIC VOWEL SIGN INVERTED SMALL V ABOVE", 15237 direction="nsm", 15238 linebreak="cm", 15239 unicodeslot=0x65B, 15240 }, 15241 [0x65C]={ 15242 category="mn", 15243 combining=0xDC, 15244 description="ARABIC VOWEL SIGN DOT BELOW", 15245 direction="nsm", 15246 linebreak="cm", 15247 unicodeslot=0x65C, 15248 }, 15249 [0x65D]={ 15250 category="mn", 15251 combining=0xE6, 15252 description="ARABIC REVERSED DAMMA", 15253 direction="nsm", 15254 linebreak="cm", 15255 unicodeslot=0x65D, 15256 }, 15257 [0x65E]={ 15258 category="mn", 15259 combining=0xE6, 15260 description="ARABIC FATHA WITH TWO DOTS", 15261 direction="nsm", 15262 linebreak="cm", 15263 unicodeslot=0x65E, 15264 }, 15265 [0x65F]={ 15266 category="mn", 15267 combining=0xDC, 15268 description="ARABIC WAVY HAMZA BELOW", 15269 direction="nsm", 15270 linebreak="cm", 15271 unicodeslot=0x65F, 15272 }, 15273 [0x660]={ 15274 category="nd", 15275 description="ARABIC-INDIC DIGIT ZERO", 15276 direction="an", 15277 linebreak="nu", 15278 mathclass="digit", 15279 unicodeslot=0x660, 15280 }, 15281 [0x661]={ 15282 category="nd", 15283 description="ARABIC-INDIC DIGIT ONE", 15284 direction="an", 15285 linebreak="nu", 15286 mathclass="digit", 15287 unicodeslot=0x661, 15288 }, 15289 [0x662]={ 15290 category="nd", 15291 description="ARABIC-INDIC DIGIT TWO", 15292 direction="an", 15293 linebreak="nu", 15294 mathclass="digit", 15295 unicodeslot=0x662, 15296 }, 15297 [0x663]={ 15298 category="nd", 15299 description="ARABIC-INDIC DIGIT THREE", 15300 direction="an", 15301 linebreak="nu", 15302 mathclass="digit", 15303 unicodeslot=0x663, 15304 }, 15305 [0x664]={ 15306 category="nd", 15307 description="ARABIC-INDIC DIGIT FOUR", 15308 direction="an", 15309 linebreak="nu", 15310 mathclass="digit", 15311 unicodeslot=0x664, 15312 }, 15313 [0x665]={ 15314 category="nd", 15315 description="ARABIC-INDIC DIGIT FIVE", 15316 direction="an", 15317 linebreak="nu", 15318 mathclass="digit", 15319 unicodeslot=0x665, 15320 }, 15321 [0x666]={ 15322 category="nd", 15323 description="ARABIC-INDIC DIGIT SIX", 15324 direction="an", 15325 linebreak="nu", 15326 mathclass="digit", 15327 unicodeslot=0x666, 15328 }, 15329 [0x667]={ 15330 category="nd", 15331 description="ARABIC-INDIC DIGIT SEVEN", 15332 direction="an", 15333 linebreak="nu", 15334 mathclass="digit", 15335 unicodeslot=0x667, 15336 }, 15337 [0x668]={ 15338 category="nd", 15339 description="ARABIC-INDIC DIGIT EIGHT", 15340 direction="an", 15341 linebreak="nu", 15342 mathclass="digit", 15343 unicodeslot=0x668, 15344 }, 15345 [0x669]={ 15346 category="nd", 15347 description="ARABIC-INDIC DIGIT NINE", 15348 direction="an", 15349 linebreak="nu", 15350 mathclass="digit", 15351 unicodeslot=0x669, 15352 }, 15353 [0x66A]={ 15354 category="po", 15355 contextname="arabicpercent", 15356 description="ARABIC PERCENT SIGN", 15357 direction="et", 15358 linebreak="po", 15359 unicodeslot=0x66A, 15360 }, 15361 [0x66B]={ 15362 category="po", 15363 contextname="persiandecimalseparator", 15364 description="ARABIC DECIMAL SEPARATOR", 15365 direction="an", 15366 linebreak="nu", 15367 unicodeslot=0x66B, 15368 }, 15369 [0x66C]={ 15370 category="po", 15371 contextname="persianthousandsseparator", 15372 description="ARABIC THOUSANDS SEPARATOR", 15373 direction="an", 15374 linebreak="nu", 15375 synonyms={ "arabic phrase separator" }, 15376 unicodeslot=0x66C, 15377 }, 15378 [0x66D]={ 15379 category="po", 15380 contextname="arabicasterisk", 15381 description="ARABIC FIVE POINTED STAR", 15382 direction="al", 15383 linebreak="al", 15384 unicodeslot=0x66D, 15385 }, 15386 [0x66E]={ 15387 arabic="d", 15388 category="lo", 15389 description="ARABIC LETTER DOTLESS BEH", 15390 direction="al", 15391 linebreak="al", 15392 unicodeslot=0x66E, 15393 }, 15394 [0x66F]={ 15395 arabic="d", 15396 category="lo", 15397 description="ARABIC LETTER DOTLESS QAF", 15398 direction="al", 15399 linebreak="al", 15400 unicodeslot=0x66F, 15401 }, 15402 [0x670]={ 15403 category="mn", 15404 combining=0x23, 15405 description="ARABIC LETTER SUPERSCRIPT ALEF", 15406 direction="nsm", 15407 linebreak="cm", 15408 unicodeslot=0x670, 15409 }, 15410 [0x671]={ 15411 arabic="r", 15412 category="lo", 15413 description="ARABIC LETTER ALEF WASLA", 15414 direction="al", 15415 linebreak="al", 15416 unicodeslot=0x671, 15417 }, 15418 [0x672]={ 15419 arabic="r", 15420 category="lo", 15421 description="ARABIC LETTER ALEF WITH WAVY HAMZA ABOVE", 15422 direction="al", 15423 linebreak="al", 15424 shcode=0x627, 15425 unicodeslot=0x672, 15426 }, 15427 [0x673]={ 15428 arabic="r", 15429 category="lo", 15430 description="ARABIC LETTER ALEF WITH WAVY HAMZA BELOW", 15431 direction="al", 15432 linebreak="al", 15433 shcode=0x627, 15434 unicodeslot=0x673, 15435 }, 15436 [0x674]={ 15437 arabic="u", 15438 category="lo", 15439 description="ARABIC LETTER HIGH HAMZA", 15440 direction="al", 15441 linebreak="al", 15442 unicodeslot=0x674, 15443 }, 15444 [0x675]={ 15445 arabic="r", 15446 category="lo", 15447 description="ARABIC LETTER HIGH HAMZA ALEF", 15448 direction="al", 15449 linebreak="al", 15450 specials={ "compat", 0x627, 0x674 }, 15451 unicodeslot=0x675, 15452 }, 15453 [0x676]={ 15454 arabic="r", 15455 category="lo", 15456 description="ARABIC LETTER HIGH HAMZA WAW", 15457 direction="al", 15458 linebreak="al", 15459 specials={ "compat", 0x648, 0x674 }, 15460 unicodeslot=0x676, 15461 }, 15462 [0x677]={ 15463 arabic="r", 15464 category="lo", 15465 description="ARABIC LETTER U WITH HAMZA ABOVE", 15466 direction="al", 15467 linebreak="al", 15468 shcode=0x6C7, 15469 specials={ "compat", 0x6C7, 0x674 }, 15470 unicodeslot=0x677, 15471 }, 15472 [0x678]={ 15473 arabic="d", 15474 category="lo", 15475 description="ARABIC LETTER HIGH HAMZA YEH", 15476 direction="al", 15477 linebreak="al", 15478 specials={ "compat", 0x64A, 0x674 }, 15479 unicodeslot=0x678, 15480 }, 15481 [0x679]={ 15482 arabic="d", 15483 category="lo", 15484 description="ARABIC LETTER TTEH", 15485 direction="al", 15486 linebreak="al", 15487 unicodeslot=0x679, 15488 }, 15489 [0x67A]={ 15490 arabic="d", 15491 category="lo", 15492 description="ARABIC LETTER TTEHEH", 15493 direction="al", 15494 linebreak="al", 15495 unicodeslot=0x67A, 15496 }, 15497 [0x67B]={ 15498 arabic="d", 15499 category="lo", 15500 description="ARABIC LETTER BEEH", 15501 direction="al", 15502 linebreak="al", 15503 unicodeslot=0x67B, 15504 }, 15505 [0x67C]={ 15506 arabic="d", 15507 category="lo", 15508 description="ARABIC LETTER TEH WITH RING", 15509 direction="al", 15510 linebreak="al", 15511 shcode=0x62A, 15512 unicodeslot=0x67C, 15513 }, 15514 [0x67D]={ 15515 arabic="d", 15516 category="lo", 15517 description="ARABIC LETTER TEH WITH THREE DOTS ABOVE DOWNWARDS", 15518 direction="al", 15519 linebreak="al", 15520 shcode=0x62A, 15521 unicodeslot=0x67D, 15522 }, 15523 [0x67E]={ 15524 arabic="d", 15525 category="lo", 15526 description="ARABIC LETTER PEH", 15527 direction="al", 15528 linebreak="al", 15529 unicodeslot=0x67E, 15530 }, 15531 [0x67F]={ 15532 arabic="d", 15533 category="lo", 15534 description="ARABIC LETTER TEHEH", 15535 direction="al", 15536 linebreak="al", 15537 unicodeslot=0x67F, 15538 }, 15539 [0x680]={ 15540 arabic="d", 15541 category="lo", 15542 description="ARABIC LETTER BEHEH", 15543 direction="al", 15544 linebreak="al", 15545 unicodeslot=0x680, 15546 }, 15547 [0x681]={ 15548 arabic="d", 15549 category="lo", 15550 description="ARABIC LETTER HAH WITH HAMZA ABOVE", 15551 direction="al", 15552 linebreak="al", 15553 shcode=0x62D, 15554 unicodeslot=0x681, 15555 }, 15556 [0x682]={ 15557 arabic="d", 15558 category="lo", 15559 description="ARABIC LETTER HAH WITH TWO DOTS VERTICAL ABOVE", 15560 direction="al", 15561 linebreak="al", 15562 shcode=0x62D, 15563 unicodeslot=0x682, 15564 }, 15565 [0x683]={ 15566 arabic="d", 15567 category="lo", 15568 description="ARABIC LETTER NYEH", 15569 direction="al", 15570 linebreak="al", 15571 unicodeslot=0x683, 15572 }, 15573 [0x684]={ 15574 arabic="d", 15575 category="lo", 15576 description="ARABIC LETTER DYEH", 15577 direction="al", 15578 linebreak="al", 15579 unicodeslot=0x684, 15580 }, 15581 [0x685]={ 15582 arabic="d", 15583 category="lo", 15584 description="ARABIC LETTER HAH WITH THREE DOTS ABOVE", 15585 direction="al", 15586 linebreak="al", 15587 shcode=0x62D, 15588 unicodeslot=0x685, 15589 }, 15590 [0x686]={ 15591 arabic="d", 15592 category="lo", 15593 description="ARABIC LETTER TCHEH", 15594 direction="al", 15595 linebreak="al", 15596 unicodeslot=0x686, 15597 }, 15598 [0x687]={ 15599 arabic="d", 15600 category="lo", 15601 description="ARABIC LETTER TCHEHEH", 15602 direction="al", 15603 linebreak="al", 15604 unicodeslot=0x687, 15605 }, 15606 [0x688]={ 15607 arabic="r", 15608 category="lo", 15609 description="ARABIC LETTER DDAL", 15610 direction="al", 15611 linebreak="al", 15612 unicodeslot=0x688, 15613 }, 15614 [0x689]={ 15615 arabic="r", 15616 category="lo", 15617 description="ARABIC LETTER DAL WITH RING", 15618 direction="al", 15619 linebreak="al", 15620 shcode=0x62F, 15621 unicodeslot=0x689, 15622 }, 15623 [0x68A]={ 15624 arabic="r", 15625 category="lo", 15626 description="ARABIC LETTER DAL WITH DOT BELOW", 15627 direction="al", 15628 linebreak="al", 15629 shcode=0x62F, 15630 unicodeslot=0x68A, 15631 }, 15632 [0x68B]={ 15633 arabic="r", 15634 category="lo", 15635 description="ARABIC LETTER DAL WITH DOT BELOW AND SMALL TAH", 15636 direction="al", 15637 linebreak="al", 15638 shcode=0x62F, 15639 unicodeslot=0x68B, 15640 }, 15641 [0x68C]={ 15642 arabic="r", 15643 category="lo", 15644 description="ARABIC LETTER DAHAL", 15645 direction="al", 15646 linebreak="al", 15647 unicodeslot=0x68C, 15648 }, 15649 [0x68D]={ 15650 arabic="r", 15651 category="lo", 15652 description="ARABIC LETTER DDAHAL", 15653 direction="al", 15654 linebreak="al", 15655 unicodeslot=0x68D, 15656 }, 15657 [0x68E]={ 15658 arabic="r", 15659 category="lo", 15660 description="ARABIC LETTER DUL", 15661 direction="al", 15662 linebreak="al", 15663 unicodeslot=0x68E, 15664 }, 15665 [0x68F]={ 15666 arabic="r", 15667 category="lo", 15668 description="ARABIC LETTER DAL WITH THREE DOTS ABOVE DOWNWARDS", 15669 direction="al", 15670 linebreak="al", 15671 shcode=0x62F, 15672 unicodeslot=0x68F, 15673 }, 15674 [0x690]={ 15675 arabic="r", 15676 category="lo", 15677 description="ARABIC LETTER DAL WITH FOUR DOTS ABOVE", 15678 direction="al", 15679 linebreak="al", 15680 shcode=0x62F, 15681 unicodeslot=0x690, 15682 }, 15683 [0x691]={ 15684 arabic="r", 15685 category="lo", 15686 description="ARABIC LETTER RREH", 15687 direction="al", 15688 linebreak="al", 15689 unicodeslot=0x691, 15690 }, 15691 [0x692]={ 15692 arabic="r", 15693 category="lo", 15694 description="ARABIC LETTER REH WITH SMALL V", 15695 direction="al", 15696 linebreak="al", 15697 shcode=0x631, 15698 unicodeslot=0x692, 15699 }, 15700 [0x693]={ 15701 arabic="r", 15702 category="lo", 15703 description="ARABIC LETTER REH WITH RING", 15704 direction="al", 15705 linebreak="al", 15706 shcode=0x631, 15707 unicodeslot=0x693, 15708 }, 15709 [0x694]={ 15710 arabic="r", 15711 category="lo", 15712 description="ARABIC LETTER REH WITH DOT BELOW", 15713 direction="al", 15714 linebreak="al", 15715 shcode=0x631, 15716 unicodeslot=0x694, 15717 }, 15718 [0x695]={ 15719 arabic="r", 15720 category="lo", 15721 description="ARABIC LETTER REH WITH SMALL V BELOW", 15722 direction="al", 15723 linebreak="al", 15724 shcode=0x631, 15725 unicodeslot=0x695, 15726 }, 15727 [0x696]={ 15728 arabic="r", 15729 category="lo", 15730 description="ARABIC LETTER REH WITH DOT BELOW AND DOT ABOVE", 15731 direction="al", 15732 linebreak="al", 15733 shcode=0x631, 15734 unicodeslot=0x696, 15735 }, 15736 [0x697]={ 15737 arabic="r", 15738 category="lo", 15739 description="ARABIC LETTER REH WITH TWO DOTS ABOVE", 15740 direction="al", 15741 linebreak="al", 15742 shcode=0x631, 15743 unicodeslot=0x697, 15744 }, 15745 [0x698]={ 15746 arabic="r", 15747 category="lo", 15748 description="ARABIC LETTER JEH", 15749 direction="al", 15750 linebreak="al", 15751 unicodeslot=0x698, 15752 }, 15753 [0x699]={ 15754 arabic="r", 15755 category="lo", 15756 description="ARABIC LETTER REH WITH FOUR DOTS ABOVE", 15757 direction="al", 15758 linebreak="al", 15759 shcode=0x631, 15760 unicodeslot=0x699, 15761 }, 15762 [0x69A]={ 15763 arabic="d", 15764 category="lo", 15765 description="ARABIC LETTER SEEN WITH DOT BELOW AND DOT ABOVE", 15766 direction="al", 15767 linebreak="al", 15768 shcode=0x633, 15769 unicodeslot=0x69A, 15770 }, 15771 [0x69B]={ 15772 arabic="d", 15773 category="lo", 15774 description="ARABIC LETTER SEEN WITH THREE DOTS BELOW", 15775 direction="al", 15776 linebreak="al", 15777 shcode=0x633, 15778 unicodeslot=0x69B, 15779 }, 15780 [0x69C]={ 15781 arabic="d", 15782 category="lo", 15783 description="ARABIC LETTER SEEN WITH THREE DOTS BELOW AND THREE DOTS ABOVE", 15784 direction="al", 15785 linebreak="al", 15786 shcode=0x633, 15787 unicodeslot=0x69C, 15788 }, 15789 [0x69D]={ 15790 arabic="d", 15791 category="lo", 15792 description="ARABIC LETTER SAD WITH TWO DOTS BELOW", 15793 direction="al", 15794 linebreak="al", 15795 shcode=0x635, 15796 unicodeslot=0x69D, 15797 }, 15798 [0x69E]={ 15799 arabic="d", 15800 category="lo", 15801 description="ARABIC LETTER SAD WITH THREE DOTS ABOVE", 15802 direction="al", 15803 linebreak="al", 15804 shcode=0x635, 15805 unicodeslot=0x69E, 15806 }, 15807 [0x69F]={ 15808 arabic="d", 15809 category="lo", 15810 description="ARABIC LETTER TAH WITH THREE DOTS ABOVE", 15811 direction="al", 15812 linebreak="al", 15813 shcode=0x637, 15814 unicodeslot=0x69F, 15815 }, 15816 [0x6A0]={ 15817 arabic="d", 15818 category="lo", 15819 description="ARABIC LETTER AIN WITH THREE DOTS ABOVE", 15820 direction="al", 15821 linebreak="al", 15822 shcode=0x639, 15823 unicodeslot=0x6A0, 15824 }, 15825 [0x6A1]={ 15826 arabic="d", 15827 category="lo", 15828 description="ARABIC LETTER DOTLESS FEH", 15829 direction="al", 15830 linebreak="al", 15831 unicodeslot=0x6A1, 15832 }, 15833 [0x6A2]={ 15834 arabic="d", 15835 category="lo", 15836 description="ARABIC LETTER FEH WITH DOT MOVED BELOW", 15837 direction="al", 15838 linebreak="al", 15839 shcode=0x641, 15840 unicodeslot=0x6A2, 15841 }, 15842 [0x6A3]={ 15843 arabic="d", 15844 category="lo", 15845 description="ARABIC LETTER FEH WITH DOT BELOW", 15846 direction="al", 15847 linebreak="al", 15848 shcode=0x641, 15849 unicodeslot=0x6A3, 15850 }, 15851 [0x6A4]={ 15852 arabic="d", 15853 category="lo", 15854 description="ARABIC LETTER VEH", 15855 direction="al", 15856 linebreak="al", 15857 unicodeslot=0x6A4, 15858 }, 15859 [0x6A5]={ 15860 arabic="d", 15861 category="lo", 15862 description="ARABIC LETTER FEH WITH THREE DOTS BELOW", 15863 direction="al", 15864 linebreak="al", 15865 shcode=0x641, 15866 unicodeslot=0x6A5, 15867 }, 15868 [0x6A6]={ 15869 arabic="d", 15870 category="lo", 15871 description="ARABIC LETTER PEHEH", 15872 direction="al", 15873 linebreak="al", 15874 unicodeslot=0x6A6, 15875 }, 15876 [0x6A7]={ 15877 arabic="d", 15878 category="lo", 15879 description="ARABIC LETTER QAF WITH DOT ABOVE", 15880 direction="al", 15881 linebreak="al", 15882 shcode=0x642, 15883 unicodeslot=0x6A7, 15884 }, 15885 [0x6A8]={ 15886 arabic="d", 15887 category="lo", 15888 description="ARABIC LETTER QAF WITH THREE DOTS ABOVE", 15889 direction="al", 15890 linebreak="al", 15891 shcode=0x642, 15892 unicodeslot=0x6A8, 15893 }, 15894 [0x6A9]={ 15895 arabic="d", 15896 category="lo", 15897 description="ARABIC LETTER KEHEH", 15898 direction="al", 15899 linebreak="al", 15900 unicodeslot=0x6A9, 15901 }, 15902 [0x6AA]={ 15903 arabic="d", 15904 category="lo", 15905 description="ARABIC LETTER SWASH KAF", 15906 direction="al", 15907 linebreak="al", 15908 unicodeslot=0x6AA, 15909 }, 15910 [0x6AB]={ 15911 arabic="d", 15912 category="lo", 15913 description="ARABIC LETTER KAF WITH RING", 15914 direction="al", 15915 linebreak="al", 15916 shcode=0x643, 15917 unicodeslot=0x6AB, 15918 }, 15919 [0x6AC]={ 15920 arabic="d", 15921 category="lo", 15922 description="ARABIC LETTER KAF WITH DOT ABOVE", 15923 direction="al", 15924 linebreak="al", 15925 shcode=0x643, 15926 unicodeslot=0x6AC, 15927 }, 15928 [0x6AD]={ 15929 arabic="d", 15930 category="lo", 15931 description="ARABIC LETTER NG", 15932 direction="al", 15933 linebreak="al", 15934 unicodeslot=0x6AD, 15935 }, 15936 [0x6AE]={ 15937 arabic="d", 15938 category="lo", 15939 description="ARABIC LETTER KAF WITH THREE DOTS BELOW", 15940 direction="al", 15941 linebreak="al", 15942 shcode=0x643, 15943 unicodeslot=0x6AE, 15944 }, 15945 [0x6AF]={ 15946 arabic="d", 15947 category="lo", 15948 description="ARABIC LETTER GAF", 15949 direction="al", 15950 linebreak="al", 15951 unicodeslot=0x6AF, 15952 }, 15953 [0x6B0]={ 15954 arabic="d", 15955 category="lo", 15956 description="ARABIC LETTER GAF WITH RING", 15957 direction="al", 15958 linebreak="al", 15959 shcode=0x6AF, 15960 unicodeslot=0x6B0, 15961 }, 15962 [0x6B1]={ 15963 arabic="d", 15964 category="lo", 15965 description="ARABIC LETTER NGOEH", 15966 direction="al", 15967 linebreak="al", 15968 unicodeslot=0x6B1, 15969 }, 15970 [0x6B2]={ 15971 arabic="d", 15972 category="lo", 15973 description="ARABIC LETTER GAF WITH TWO DOTS BELOW", 15974 direction="al", 15975 linebreak="al", 15976 shcode=0x6AF, 15977 unicodeslot=0x6B2, 15978 }, 15979 [0x6B3]={ 15980 arabic="d", 15981 category="lo", 15982 description="ARABIC LETTER GUEH", 15983 direction="al", 15984 linebreak="al", 15985 unicodeslot=0x6B3, 15986 }, 15987 [0x6B4]={ 15988 arabic="d", 15989 category="lo", 15990 description="ARABIC LETTER GAF WITH THREE DOTS ABOVE", 15991 direction="al", 15992 linebreak="al", 15993 shcode=0x6AF, 15994 unicodeslot=0x6B4, 15995 }, 15996 [0x6B5]={ 15997 arabic="d", 15998 category="lo", 15999 description="ARABIC LETTER LAM WITH SMALL V", 16000 direction="al", 16001 linebreak="al", 16002 shcode=0x644, 16003 unicodeslot=0x6B5, 16004 }, 16005 [0x6B6]={ 16006 arabic="d", 16007 category="lo", 16008 description="ARABIC LETTER LAM WITH DOT ABOVE", 16009 direction="al", 16010 linebreak="al", 16011 shcode=0x644, 16012 unicodeslot=0x6B6, 16013 }, 16014 [0x6B7]={ 16015 arabic="d", 16016 category="lo", 16017 description="ARABIC LETTER LAM WITH THREE DOTS ABOVE", 16018 direction="al", 16019 linebreak="al", 16020 shcode=0x644, 16021 unicodeslot=0x6B7, 16022 }, 16023 [0x6B8]={ 16024 arabic="d", 16025 category="lo", 16026 description="ARABIC LETTER LAM WITH THREE DOTS BELOW", 16027 direction="al", 16028 linebreak="al", 16029 shcode=0x644, 16030 unicodeslot=0x6B8, 16031 }, 16032 [0x6B9]={ 16033 arabic="d", 16034 category="lo", 16035 description="ARABIC LETTER NOON WITH DOT BELOW", 16036 direction="al", 16037 linebreak="al", 16038 shcode=0x646, 16039 unicodeslot=0x6B9, 16040 }, 16041 [0x6BA]={ 16042 arabic="d", 16043 category="lo", 16044 description="ARABIC LETTER NOON GHUNNA", 16045 direction="al", 16046 linebreak="al", 16047 unicodeslot=0x6BA, 16048 }, 16049 [0x6BB]={ 16050 arabic="d", 16051 category="lo", 16052 description="ARABIC LETTER RNOON", 16053 direction="al", 16054 linebreak="al", 16055 unicodeslot=0x6BB, 16056 }, 16057 [0x6BC]={ 16058 arabic="d", 16059 category="lo", 16060 description="ARABIC LETTER NOON WITH RING", 16061 direction="al", 16062 linebreak="al", 16063 shcode=0x646, 16064 unicodeslot=0x6BC, 16065 }, 16066 [0x6BD]={ 16067 arabic="d", 16068 category="lo", 16069 description="ARABIC LETTER NOON WITH THREE DOTS ABOVE", 16070 direction="al", 16071 linebreak="al", 16072 shcode=0x646, 16073 unicodeslot=0x6BD, 16074 }, 16075 [0x6BE]={ 16076 arabic="d", 16077 category="lo", 16078 description="ARABIC LETTER HEH DOACHASHMEE", 16079 direction="al", 16080 linebreak="al", 16081 unicodeslot=0x6BE, 16082 }, 16083 [0x6BF]={ 16084 arabic="d", 16085 category="lo", 16086 description="ARABIC LETTER TCHEH WITH DOT ABOVE", 16087 direction="al", 16088 linebreak="al", 16089 shcode=0x686, 16090 unicodeslot=0x6BF, 16091 }, 16092 [0x6C0]={ 16093 arabic="r", 16094 category="lo", 16095 description="ARABIC LETTER HEH WITH YEH ABOVE", 16096 direction="al", 16097 linebreak="al", 16098 shcode=0x647, 16099 specials={ "char", 0x6D5, 0x654 }, 16100 synonyms={ "arabic letter hamzah on ha", "izafet" }, 16101 unicodeslot=0x6C0, 16102 }, 16103 [0x6C1]={ 16104 arabic="d", 16105 category="lo", 16106 description="ARABIC LETTER HEH GOAL", 16107 direction="al", 16108 linebreak="al", 16109 unicodeslot=0x6C1, 16110 }, 16111 [0x6C2]={ 16112 arabic="d", 16113 category="lo", 16114 description="ARABIC LETTER HEH GOAL WITH HAMZA ABOVE", 16115 direction="al", 16116 linebreak="al", 16117 specials={ "char", 0x6C1, 0x654 }, 16118 unicodeslot=0x6C2, 16119 }, 16120 [0x6C3]={ 16121 arabic="r", 16122 category="lo", 16123 description="ARABIC LETTER TEH MARBUTA GOAL", 16124 direction="al", 16125 linebreak="al", 16126 unicodeslot=0x6C3, 16127 }, 16128 [0x6C4]={ 16129 arabic="r", 16130 category="lo", 16131 description="ARABIC LETTER WAW WITH RING", 16132 direction="al", 16133 linebreak="al", 16134 shcode=0x648, 16135 unicodeslot=0x6C4, 16136 }, 16137 [0x6C5]={ 16138 arabic="r", 16139 category="lo", 16140 description="ARABIC LETTER KIRGHIZ OE", 16141 direction="al", 16142 linebreak="al", 16143 unicodeslot=0x6C5, 16144 }, 16145 [0x6C6]={ 16146 arabic="r", 16147 category="lo", 16148 description="ARABIC LETTER OE", 16149 direction="al", 16150 linebreak="al", 16151 unicodeslot=0x6C6, 16152 }, 16153 [0x6C7]={ 16154 arabic="r", 16155 category="lo", 16156 description="ARABIC LETTER U", 16157 direction="al", 16158 linebreak="al", 16159 unicodeslot=0x6C7, 16160 }, 16161 [0x6C8]={ 16162 arabic="r", 16163 category="lo", 16164 description="ARABIC LETTER YU", 16165 direction="al", 16166 linebreak="al", 16167 unicodeslot=0x6C8, 16168 }, 16169 [0x6C9]={ 16170 arabic="r", 16171 category="lo", 16172 description="ARABIC LETTER KIRGHIZ YU", 16173 direction="al", 16174 linebreak="al", 16175 unicodeslot=0x6C9, 16176 }, 16177 [0x6CA]={ 16178 arabic="r", 16179 category="lo", 16180 description="ARABIC LETTER WAW WITH TWO DOTS ABOVE", 16181 direction="al", 16182 linebreak="al", 16183 shcode=0x648, 16184 unicodeslot=0x6CA, 16185 }, 16186 [0x6CB]={ 16187 arabic="r", 16188 category="lo", 16189 description="ARABIC LETTER VE", 16190 direction="al", 16191 linebreak="al", 16192 unicodeslot=0x6CB, 16193 }, 16194 [0x6CC]={ 16195 arabic="d", 16196 category="lo", 16197 description="ARABIC LETTER FARSI YEH", 16198 direction="al", 16199 linebreak="al", 16200 unicodeslot=0x6CC, 16201 }, 16202 [0x6CD]={ 16203 arabic="r", 16204 category="lo", 16205 description="ARABIC LETTER YEH WITH TAIL", 16206 direction="al", 16207 linebreak="al", 16208 shcode=0x64A, 16209 unicodeslot=0x6CD, 16210 }, 16211 [0x6CE]={ 16212 arabic="d", 16213 category="lo", 16214 description="ARABIC LETTER YEH WITH SMALL V", 16215 direction="al", 16216 linebreak="al", 16217 shcode=0x64A, 16218 unicodeslot=0x6CE, 16219 }, 16220 [0x6CF]={ 16221 arabic="r", 16222 category="lo", 16223 description="ARABIC LETTER WAW WITH DOT ABOVE", 16224 direction="al", 16225 linebreak="al", 16226 shcode=0x648, 16227 unicodeslot=0x6CF, 16228 }, 16229 [0x6D0]={ 16230 arabic="d", 16231 category="lo", 16232 description="ARABIC LETTER E", 16233 direction="al", 16234 linebreak="al", 16235 unicodeslot=0x6D0, 16236 }, 16237 [0x6D1]={ 16238 arabic="d", 16239 category="lo", 16240 description="ARABIC LETTER YEH WITH THREE DOTS BELOW", 16241 direction="al", 16242 linebreak="al", 16243 shcode=0x64A, 16244 unicodeslot=0x6D1, 16245 }, 16246 [0x6D2]={ 16247 arabic="r", 16248 category="lo", 16249 description="ARABIC LETTER YEH BARREE", 16250 direction="al", 16251 linebreak="al", 16252 unicodeslot=0x6D2, 16253 }, 16254 [0x6D3]={ 16255 arabic="r", 16256 category="lo", 16257 description="ARABIC LETTER YEH BARREE WITH HAMZA ABOVE", 16258 direction="al", 16259 linebreak="al", 16260 specials={ "char", 0x6D2, 0x654 }, 16261 unicodeslot=0x6D3, 16262 }, 16263 [0x6D4]={ 16264 category="po", 16265 contextname="arabicperiod", 16266 description="ARABIC FULL STOP", 16267 direction="al", 16268 linebreak="ex", 16269 unicodeslot=0x6D4, 16270 }, 16271 [0x6D5]={ 16272 arabic="r", 16273 category="lo", 16274 description="ARABIC LETTER AE", 16275 direction="al", 16276 linebreak="al", 16277 unicodeslot=0x6D5, 16278 }, 16279 [0x6D6]={ 16280 category="mn", 16281 combining=0xE6, 16282 contextname="arabichighesala", 16283 description="ARABIC SMALL HIGH LIGATURE SAD WITH LAM WITH ALEF MAKSURA", 16284 direction="nsm", 16285 linebreak="cm", 16286 unicodeslot=0x6D6, 16287 }, 16288 [0x6D7]={ 16289 category="mn", 16290 combining=0xE6, 16291 contextname="arabichigheqala", 16292 description="ARABIC SMALL HIGH LIGATURE QAF WITH LAM WITH ALEF MAKSURA", 16293 direction="nsm", 16294 linebreak="cm", 16295 unicodeslot=0x6D7, 16296 }, 16297 [0x6D8]={ 16298 category="mn", 16299 combining=0xE6, 16300 contextname="arabichighmeemshort", 16301 description="ARABIC SMALL HIGH MEEM INITIAL FORM", 16302 direction="nsm", 16303 linebreak="cm", 16304 unicodeslot=0x6D8, 16305 }, 16306 [0x6D9]={ 16307 category="mn", 16308 combining=0xE6, 16309 contextname="arabichighlamalef", 16310 description="ARABIC SMALL HIGH LAM ALEF", 16311 direction="nsm", 16312 linebreak="cm", 16313 unicodeslot=0x6D9, 16314 }, 16315 [0x6DA]={ 16316 category="mn", 16317 combining=0xE6, 16318 contextname="arabichighjeem", 16319 description="ARABIC SMALL HIGH JEEM", 16320 direction="nsm", 16321 linebreak="cm", 16322 unicodeslot=0x6DA, 16323 }, 16324 [0x6DB]={ 16325 category="mn", 16326 combining=0xE6, 16327 contextname="arabicshighthreedots", 16328 description="ARABIC SMALL HIGH THREE DOTS", 16329 direction="nsm", 16330 linebreak="cm", 16331 unicodeslot=0x6DB, 16332 }, 16333 [0x6DC]={ 16334 category="mn", 16335 combining=0xE6, 16336 contextname="arabichighseen", 16337 description="ARABIC SMALL HIGH SEEN", 16338 direction="nsm", 16339 linebreak="cm", 16340 unicodeslot=0x6DC, 16341 }, 16342 [0x6DD]={ 16343 arabic="u", 16344 category="cf", 16345 contextname="arabicendofayah", 16346 description="ARABIC END OF AYAH", 16347 direction="an", 16348 linebreak="nu", 16349 unicodeslot=0x6DD, 16350 visible=true, 16351 }, 16352 [0x6DE]={ 16353 category="me", 16354 contextname="arabicstartofrubc", 16355 description="ARABIC START OF RUB EL HIZB", 16356 direction="on", 16357 linebreak="al", 16358 unicodeslot=0x6DE, 16359 }, 16360 [0x6DF]={ 16361 category="mn", 16362 combining=0xE6, 16363 description="ARABIC SMALL HIGH ROUNDED ZERO", 16364 direction="nsm", 16365 linebreak="cm", 16366 unicodeslot=0x6DF, 16367 }, 16368 [0x6E0]={ 16369 category="mn", 16370 combining=0xE6, 16371 description="ARABIC SMALL HIGH UPRIGHT RECTANGULAR ZERO", 16372 direction="nsm", 16373 linebreak="cm", 16374 unicodeslot=0x6E0, 16375 }, 16376 [0x6E1]={ 16377 category="mn", 16378 combining=0xE6, 16379 description="ARABIC SMALL HIGH DOTLESS HEAD OF KHAH", 16380 direction="nsm", 16381 linebreak="cm", 16382 unicodeslot=0x6E1, 16383 }, 16384 [0x6E2]={ 16385 category="mn", 16386 combining=0xE6, 16387 contextname="arabichighmeemlong", 16388 description="ARABIC SMALL HIGH MEEM ISOLATED FORM", 16389 direction="nsm", 16390 linebreak="cm", 16391 unicodeslot=0x6E2, 16392 }, 16393 [0x6E3]={ 16394 category="mn", 16395 combining=0xDC, 16396 contextname="arabiclowseen", 16397 description="ARABIC SMALL LOW SEEN", 16398 direction="nsm", 16399 linebreak="cm", 16400 unicodeslot=0x6E3, 16401 }, 16402 [0x6E4]={ 16403 category="mn", 16404 combining=0xE6, 16405 contextname="arabichighmadda", 16406 description="ARABIC SMALL HIGH MADDA", 16407 direction="nsm", 16408 linebreak="cm", 16409 unicodeslot=0x6E4, 16410 }, 16411 [0x6E5]={ 16412 category="lm", 16413 contextname="arabicvowelwaw", 16414 description="ARABIC SMALL WAW", 16415 direction="al", 16416 linebreak="al", 16417 unicodeslot=0x6E5, 16418 }, 16419 [0x6E6]={ 16420 category="lm", 16421 contextname="arabicvowelyeh", 16422 description="ARABIC SMALL YEH", 16423 direction="al", 16424 linebreak="al", 16425 unicodeslot=0x6E6, 16426 }, 16427 [0x6E7]={ 16428 category="mn", 16429 combining=0xE6, 16430 contextname="arabichighyeh", 16431 description="ARABIC SMALL HIGH YEH", 16432 direction="nsm", 16433 linebreak="cm", 16434 unicodeslot=0x6E7, 16435 }, 16436 [0x6E8]={ 16437 category="mn", 16438 combining=0xE6, 16439 contextname="arabichighnoon", 16440 description="ARABIC SMALL HIGH NOON", 16441 direction="nsm", 16442 linebreak="cm", 16443 unicodeslot=0x6E8, 16444 }, 16445 [0x6E9]={ 16446 category="so", 16447 contextname="arabicsajdah", 16448 description="ARABIC PLACE OF SAJDAH", 16449 direction="on", 16450 linebreak="al", 16451 unicodeslot=0x6E9, 16452 }, 16453 [0x6EA]={ 16454 category="mn", 16455 combining=0xDC, 16456 description="ARABIC EMPTY CENTRE LOW STOP", 16457 direction="nsm", 16458 linebreak="cm", 16459 unicodeslot=0x6EA, 16460 }, 16461 [0x6EB]={ 16462 category="mn", 16463 combining=0xE6, 16464 description="ARABIC EMPTY CENTRE HIGH STOP", 16465 direction="nsm", 16466 linebreak="cm", 16467 unicodeslot=0x6EB, 16468 }, 16469 [0x6EC]={ 16470 category="mn", 16471 combining=0xE6, 16472 description="ARABIC ROUNDED HIGH STOP WITH FILLED CENTRE", 16473 direction="nsm", 16474 linebreak="cm", 16475 unicodeslot=0x6EC, 16476 }, 16477 [0x6ED]={ 16478 category="mn", 16479 combining=0xDC, 16480 contextname="arabiclowmeemlong", 16481 description="ARABIC SMALL LOW MEEM", 16482 direction="nsm", 16483 linebreak="cm", 16484 unicodeslot=0x6ED, 16485 }, 16486 [0x6EE]={ 16487 arabic="r", 16488 category="lo", 16489 description="ARABIC LETTER DAL WITH INVERTED V", 16490 direction="al", 16491 linebreak="al", 16492 shcode=0x62F, 16493 unicodeslot=0x6EE, 16494 }, 16495 [0x6EF]={ 16496 arabic="r", 16497 category="lo", 16498 description="ARABIC LETTER REH WITH INVERTED V", 16499 direction="al", 16500 linebreak="al", 16501 shcode=0x631, 16502 unicodeslot=0x6EF, 16503 }, 16504 [0x6F0]={ 16505 category="nd", 16506 description="EXTENDED ARABIC-INDIC DIGIT ZERO", 16507 direction="en", 16508 linebreak="nu", 16509 mathclass="digit", 16510 unicodeslot=0x6F0, 16511 }, 16512 [0x6F1]={ 16513 category="nd", 16514 description="EXTENDED ARABIC-INDIC DIGIT ONE", 16515 direction="en", 16516 linebreak="nu", 16517 mathclass="digit", 16518 unicodeslot=0x6F1, 16519 }, 16520 [0x6F2]={ 16521 category="nd", 16522 description="EXTENDED ARABIC-INDIC DIGIT TWO", 16523 direction="en", 16524 linebreak="nu", 16525 mathclass="digit", 16526 unicodeslot=0x6F2, 16527 }, 16528 [0x6F3]={ 16529 category="nd", 16530 description="EXTENDED ARABIC-INDIC DIGIT THREE", 16531 direction="en", 16532 linebreak="nu", 16533 mathclass="digit", 16534 unicodeslot=0x6F3, 16535 }, 16536 [0x6F4]={ 16537 category="nd", 16538 description="EXTENDED ARABIC-INDIC DIGIT FOUR", 16539 direction="en", 16540 linebreak="nu", 16541 mathclass="digit", 16542 unicodeslot=0x6F4, 16543 }, 16544 [0x6F5]={ 16545 category="nd", 16546 description="EXTENDED ARABIC-INDIC DIGIT FIVE", 16547 direction="en", 16548 linebreak="nu", 16549 mathclass="digit", 16550 unicodeslot=0x6F5, 16551 }, 16552 [0x6F6]={ 16553 category="nd", 16554 description="EXTENDED ARABIC-INDIC DIGIT SIX", 16555 direction="en", 16556 linebreak="nu", 16557 mathclass="digit", 16558 unicodeslot=0x6F6, 16559 }, 16560 [0x6F7]={ 16561 category="nd", 16562 description="EXTENDED ARABIC-INDIC DIGIT SEVEN", 16563 direction="en", 16564 linebreak="nu", 16565 mathclass="digit", 16566 unicodeslot=0x6F7, 16567 }, 16568 [0x6F8]={ 16569 category="nd", 16570 description="EXTENDED ARABIC-INDIC DIGIT EIGHT", 16571 direction="en", 16572 linebreak="nu", 16573 mathclass="digit", 16574 unicodeslot=0x6F8, 16575 }, 16576 [0x6F9]={ 16577 category="nd", 16578 description="EXTENDED ARABIC-INDIC DIGIT NINE", 16579 direction="en", 16580 linebreak="nu", 16581 mathclass="digit", 16582 unicodeslot=0x6F9, 16583 }, 16584 [0x6FA]={ 16585 arabic="d", 16586 category="lo", 16587 description="ARABIC LETTER SHEEN WITH DOT BELOW", 16588 direction="al", 16589 linebreak="al", 16590 shcode=0x634, 16591 unicodeslot=0x6FA, 16592 }, 16593 [0x6FB]={ 16594 arabic="d", 16595 category="lo", 16596 description="ARABIC LETTER DAD WITH DOT BELOW", 16597 direction="al", 16598 linebreak="al", 16599 shcode=0x636, 16600 unicodeslot=0x6FB, 16601 }, 16602 [0x6FC]={ 16603 arabic="d", 16604 category="lo", 16605 description="ARABIC LETTER GHAIN WITH DOT BELOW", 16606 direction="al", 16607 linebreak="al", 16608 shcode=0x63A, 16609 unicodeslot=0x6FC, 16610 }, 16611 [0x6FD]={ 16612 category="so", 16613 description="ARABIC SIGN SINDHI AMPERSAND", 16614 direction="al", 16615 linebreak="al", 16616 unicodeslot=0x6FD, 16617 }, 16618 [0x6FE]={ 16619 category="so", 16620 description="ARABIC SIGN SINDHI POSTPOSITION MEN", 16621 direction="al", 16622 linebreak="al", 16623 unicodeslot=0x6FE, 16624 }, 16625 [0x6FF]={ 16626 arabic="d", 16627 category="lo", 16628 description="ARABIC LETTER HEH WITH INVERTED V", 16629 direction="al", 16630 linebreak="al", 16631 shcode=0x647, 16632 unicodeslot=0x6FF, 16633 }, 16634 [0x700]={ 16635 category="po", 16636 description="SYRIAC END OF PARAGRAPH", 16637 direction="al", 16638 linebreak="al", 16639 unicodeslot=0x700, 16640 }, 16641 [0x701]={ 16642 category="po", 16643 description="SYRIAC SUPRALINEAR FULL STOP", 16644 direction="al", 16645 linebreak="al", 16646 unicodeslot=0x701, 16647 }, 16648 [0x702]={ 16649 category="po", 16650 description="SYRIAC SUBLINEAR FULL STOP", 16651 direction="al", 16652 linebreak="al", 16653 unicodeslot=0x702, 16654 }, 16655 [0x703]={ 16656 category="po", 16657 description="SYRIAC SUPRALINEAR COLON", 16658 direction="al", 16659 linebreak="al", 16660 unicodeslot=0x703, 16661 }, 16662 [0x704]={ 16663 category="po", 16664 description="SYRIAC SUBLINEAR COLON", 16665 direction="al", 16666 linebreak="al", 16667 unicodeslot=0x704, 16668 }, 16669 [0x705]={ 16670 category="po", 16671 description="SYRIAC HORIZONTAL COLON", 16672 direction="al", 16673 linebreak="al", 16674 unicodeslot=0x705, 16675 }, 16676 [0x706]={ 16677 category="po", 16678 description="SYRIAC COLON SKEWED LEFT", 16679 direction="al", 16680 linebreak="al", 16681 unicodeslot=0x706, 16682 }, 16683 [0x707]={ 16684 category="po", 16685 description="SYRIAC COLON SKEWED RIGHT", 16686 direction="al", 16687 linebreak="al", 16688 unicodeslot=0x707, 16689 }, 16690 [0x708]={ 16691 category="po", 16692 description="SYRIAC SUPRALINEAR COLON SKEWED LEFT", 16693 direction="al", 16694 linebreak="al", 16695 unicodeslot=0x708, 16696 }, 16697 [0x709]={ 16698 category="po", 16699 description="SYRIAC SUBLINEAR COLON SKEWED RIGHT", 16700 direction="al", 16701 linebreak="al", 16702 unicodeslot=0x709, 16703 }, 16704 [0x70A]={ 16705 category="po", 16706 description="SYRIAC CONTRACTION", 16707 direction="al", 16708 linebreak="al", 16709 unicodeslot=0x70A, 16710 }, 16711 [0x70B]={ 16712 category="po", 16713 description="SYRIAC HARKLEAN OBELUS", 16714 direction="al", 16715 linebreak="al", 16716 unicodeslot=0x70B, 16717 }, 16718 [0x70C]={ 16719 category="po", 16720 description="SYRIAC HARKLEAN METOBELUS", 16721 direction="al", 16722 linebreak="al", 16723 unicodeslot=0x70C, 16724 }, 16725 [0x70D]={ 16726 category="po", 16727 description="SYRIAC HARKLEAN ASTERISCUS", 16728 direction="al", 16729 linebreak="al", 16730 unicodeslot=0x70D, 16731 }, 16732 [0x70F]={ 16733 arabic="t", 16734 category="cf", 16735 description="SYRIAC ABBREVIATION MARK", 16736 direction="al", 16737 linebreak="al", 16738 synonyms={ "syriac sam" }, 16739 unicodeslot=0x70F, 16740 visible=true, 16741 }, 16742 [0x710]={ 16743 arabic="r", 16744 category="lo", 16745 description="SYRIAC LETTER ALAPH", 16746 direction="al", 16747 linebreak="al", 16748 unicodeslot=0x710, 16749 }, 16750 [0x711]={ 16751 category="mn", 16752 combining=0x24, 16753 description="SYRIAC LETTER SUPERSCRIPT ALAPH", 16754 direction="nsm", 16755 linebreak="cm", 16756 unicodeslot=0x711, 16757 }, 16758 [0x712]={ 16759 arabic="d", 16760 category="lo", 16761 description="SYRIAC LETTER BETH", 16762 direction="al", 16763 linebreak="al", 16764 unicodeslot=0x712, 16765 }, 16766 [0x713]={ 16767 arabic="d", 16768 category="lo", 16769 description="SYRIAC LETTER GAMAL", 16770 direction="al", 16771 linebreak="al", 16772 unicodeslot=0x713, 16773 }, 16774 [0x714]={ 16775 arabic="d", 16776 category="lo", 16777 description="SYRIAC LETTER GAMAL GARSHUNI", 16778 direction="al", 16779 linebreak="al", 16780 unicodeslot=0x714, 16781 }, 16782 [0x715]={ 16783 arabic="r", 16784 category="lo", 16785 description="SYRIAC LETTER DALATH", 16786 direction="al", 16787 linebreak="al", 16788 unicodeslot=0x715, 16789 }, 16790 [0x716]={ 16791 arabic="r", 16792 category="lo", 16793 description="SYRIAC LETTER DOTLESS DALATH RISH", 16794 direction="al", 16795 linebreak="al", 16796 unicodeslot=0x716, 16797 }, 16798 [0x717]={ 16799 arabic="r", 16800 category="lo", 16801 description="SYRIAC LETTER HE", 16802 direction="al", 16803 linebreak="al", 16804 unicodeslot=0x717, 16805 }, 16806 [0x718]={ 16807 arabic="r", 16808 category="lo", 16809 description="SYRIAC LETTER WAW", 16810 direction="al", 16811 linebreak="al", 16812 unicodeslot=0x718, 16813 }, 16814 [0x719]={ 16815 arabic="r", 16816 category="lo", 16817 description="SYRIAC LETTER ZAIN", 16818 direction="al", 16819 linebreak="al", 16820 unicodeslot=0x719, 16821 }, 16822 [0x71A]={ 16823 arabic="d", 16824 category="lo", 16825 description="SYRIAC LETTER HETH", 16826 direction="al", 16827 linebreak="al", 16828 unicodeslot=0x71A, 16829 }, 16830 [0x71B]={ 16831 arabic="d", 16832 category="lo", 16833 description="SYRIAC LETTER TETH", 16834 direction="al", 16835 linebreak="al", 16836 unicodeslot=0x71B, 16837 }, 16838 [0x71C]={ 16839 arabic="d", 16840 category="lo", 16841 description="SYRIAC LETTER TETH GARSHUNI", 16842 direction="al", 16843 linebreak="al", 16844 unicodeslot=0x71C, 16845 }, 16846 [0x71D]={ 16847 arabic="d", 16848 category="lo", 16849 description="SYRIAC LETTER YUDH", 16850 direction="al", 16851 linebreak="al", 16852 unicodeslot=0x71D, 16853 }, 16854 [0x71E]={ 16855 arabic="r", 16856 category="lo", 16857 description="SYRIAC LETTER YUDH HE", 16858 direction="al", 16859 linebreak="al", 16860 unicodeslot=0x71E, 16861 }, 16862 [0x71F]={ 16863 arabic="d", 16864 category="lo", 16865 description="SYRIAC LETTER KAPH", 16866 direction="al", 16867 linebreak="al", 16868 unicodeslot=0x71F, 16869 }, 16870 [0x720]={ 16871 arabic="d", 16872 category="lo", 16873 description="SYRIAC LETTER LAMADH", 16874 direction="al", 16875 linebreak="al", 16876 unicodeslot=0x720, 16877 }, 16878 [0x721]={ 16879 arabic="d", 16880 category="lo", 16881 description="SYRIAC LETTER MIM", 16882 direction="al", 16883 linebreak="al", 16884 unicodeslot=0x721, 16885 }, 16886 [0x722]={ 16887 arabic="d", 16888 category="lo", 16889 description="SYRIAC LETTER NUN", 16890 direction="al", 16891 linebreak="al", 16892 unicodeslot=0x722, 16893 }, 16894 [0x723]={ 16895 arabic="d", 16896 category="lo", 16897 description="SYRIAC LETTER SEMKATH", 16898 direction="al", 16899 linebreak="al", 16900 unicodeslot=0x723, 16901 }, 16902 [0x724]={ 16903 arabic="d", 16904 category="lo", 16905 description="SYRIAC LETTER FINAL SEMKATH", 16906 direction="al", 16907 linebreak="al", 16908 unicodeslot=0x724, 16909 }, 16910 [0x725]={ 16911 arabic="d", 16912 category="lo", 16913 description="SYRIAC LETTER E", 16914 direction="al", 16915 linebreak="al", 16916 unicodeslot=0x725, 16917 }, 16918 [0x726]={ 16919 arabic="d", 16920 category="lo", 16921 description="SYRIAC LETTER PE", 16922 direction="al", 16923 linebreak="al", 16924 unicodeslot=0x726, 16925 }, 16926 [0x727]={ 16927 arabic="d", 16928 category="lo", 16929 description="SYRIAC LETTER REVERSED PE", 16930 direction="al", 16931 linebreak="al", 16932 unicodeslot=0x727, 16933 }, 16934 [0x728]={ 16935 arabic="r", 16936 category="lo", 16937 description="SYRIAC LETTER SADHE", 16938 direction="al", 16939 linebreak="al", 16940 unicodeslot=0x728, 16941 }, 16942 [0x729]={ 16943 arabic="d", 16944 category="lo", 16945 description="SYRIAC LETTER QAPH", 16946 direction="al", 16947 linebreak="al", 16948 unicodeslot=0x729, 16949 }, 16950 [0x72A]={ 16951 arabic="r", 16952 category="lo", 16953 description="SYRIAC LETTER RISH", 16954 direction="al", 16955 linebreak="al", 16956 unicodeslot=0x72A, 16957 }, 16958 [0x72B]={ 16959 arabic="d", 16960 category="lo", 16961 description="SYRIAC LETTER SHIN", 16962 direction="al", 16963 linebreak="al", 16964 unicodeslot=0x72B, 16965 }, 16966 [0x72C]={ 16967 arabic="r", 16968 category="lo", 16969 description="SYRIAC LETTER TAW", 16970 direction="al", 16971 linebreak="al", 16972 unicodeslot=0x72C, 16973 }, 16974 [0x72D]={ 16975 arabic="d", 16976 category="lo", 16977 description="SYRIAC LETTER PERSIAN BHETH", 16978 direction="al", 16979 linebreak="al", 16980 unicodeslot=0x72D, 16981 }, 16982 [0x72E]={ 16983 arabic="d", 16984 category="lo", 16985 description="SYRIAC LETTER PERSIAN GHAMAL", 16986 direction="al", 16987 linebreak="al", 16988 unicodeslot=0x72E, 16989 }, 16990 [0x72F]={ 16991 arabic="r", 16992 category="lo", 16993 description="SYRIAC LETTER PERSIAN DHALATH", 16994 direction="al", 16995 linebreak="al", 16996 unicodeslot=0x72F, 16997 }, 16998 [0x730]={ 16999 category="mn", 17000 combining=0xE6, 17001 description="SYRIAC PTHAHA ABOVE", 17002 direction="nsm", 17003 linebreak="cm", 17004 unicodeslot=0x730, 17005 }, 17006 [0x731]={ 17007 category="mn", 17008 combining=0xDC, 17009 description="SYRIAC PTHAHA BELOW", 17010 direction="nsm", 17011 linebreak="cm", 17012 unicodeslot=0x731, 17013 }, 17014 [0x732]={ 17015 category="mn", 17016 combining=0xE6, 17017 description="SYRIAC PTHAHA DOTTED", 17018 direction="nsm", 17019 linebreak="cm", 17020 unicodeslot=0x732, 17021 }, 17022 [0x733]={ 17023 category="mn", 17024 combining=0xE6, 17025 description="SYRIAC ZQAPHA ABOVE", 17026 direction="nsm", 17027 linebreak="cm", 17028 unicodeslot=0x733, 17029 }, 17030 [0x734]={ 17031 category="mn", 17032 combining=0xDC, 17033 description="SYRIAC ZQAPHA BELOW", 17034 direction="nsm", 17035 linebreak="cm", 17036 unicodeslot=0x734, 17037 }, 17038 [0x735]={ 17039 category="mn", 17040 combining=0xE6, 17041 description="SYRIAC ZQAPHA DOTTED", 17042 direction="nsm", 17043 linebreak="cm", 17044 unicodeslot=0x735, 17045 }, 17046 [0x736]={ 17047 category="mn", 17048 combining=0xE6, 17049 description="SYRIAC RBASA ABOVE", 17050 direction="nsm", 17051 linebreak="cm", 17052 unicodeslot=0x736, 17053 }, 17054 [0x737]={ 17055 category="mn", 17056 combining=0xDC, 17057 description="SYRIAC RBASA BELOW", 17058 direction="nsm", 17059 linebreak="cm", 17060 unicodeslot=0x737, 17061 }, 17062 [0x738]={ 17063 category="mn", 17064 combining=0xDC, 17065 description="SYRIAC DOTTED ZLAMA HORIZONTAL", 17066 direction="nsm", 17067 linebreak="cm", 17068 unicodeslot=0x738, 17069 }, 17070 [0x739]={ 17071 category="mn", 17072 combining=0xDC, 17073 description="SYRIAC DOTTED ZLAMA ANGULAR", 17074 direction="nsm", 17075 linebreak="cm", 17076 unicodeslot=0x739, 17077 }, 17078 [0x73A]={ 17079 category="mn", 17080 combining=0xE6, 17081 description="SYRIAC HBASA ABOVE", 17082 direction="nsm", 17083 linebreak="cm", 17084 unicodeslot=0x73A, 17085 }, 17086 [0x73B]={ 17087 category="mn", 17088 combining=0xDC, 17089 description="SYRIAC HBASA BELOW", 17090 direction="nsm", 17091 linebreak="cm", 17092 unicodeslot=0x73B, 17093 }, 17094 [0x73C]={ 17095 category="mn", 17096 combining=0xDC, 17097 description="SYRIAC HBASA-ESASA DOTTED", 17098 direction="nsm", 17099 linebreak="cm", 17100 unicodeslot=0x73C, 17101 }, 17102 [0x73D]={ 17103 category="mn", 17104 combining=0xE6, 17105 description="SYRIAC ESASA ABOVE", 17106 direction="nsm", 17107 linebreak="cm", 17108 unicodeslot=0x73D, 17109 }, 17110 [0x73E]={ 17111 category="mn", 17112 combining=0xDC, 17113 description="SYRIAC ESASA BELOW", 17114 direction="nsm", 17115 linebreak="cm", 17116 unicodeslot=0x73E, 17117 }, 17118 [0x73F]={ 17119 category="mn", 17120 combining=0xE6, 17121 description="SYRIAC RWAHA", 17122 direction="nsm", 17123 linebreak="cm", 17124 unicodeslot=0x73F, 17125 }, 17126 [0x740]={ 17127 category="mn", 17128 combining=0xE6, 17129 description="SYRIAC FEMININE DOT", 17130 direction="nsm", 17131 linebreak="cm", 17132 unicodeslot=0x740, 17133 }, 17134 [0x741]={ 17135 category="mn", 17136 combining=0xE6, 17137 description="SYRIAC QUSHSHAYA", 17138 direction="nsm", 17139 linebreak="cm", 17140 unicodeslot=0x741, 17141 }, 17142 [0x742]={ 17143 category="mn", 17144 combining=0xDC, 17145 description="SYRIAC RUKKAKHA", 17146 direction="nsm", 17147 linebreak="cm", 17148 unicodeslot=0x742, 17149 }, 17150 [0x743]={ 17151 category="mn", 17152 combining=0xE6, 17153 description="SYRIAC TWO VERTICAL DOTS ABOVE", 17154 direction="nsm", 17155 linebreak="cm", 17156 unicodeslot=0x743, 17157 }, 17158 [0x744]={ 17159 category="mn", 17160 combining=0xDC, 17161 description="SYRIAC TWO VERTICAL DOTS BELOW", 17162 direction="nsm", 17163 linebreak="cm", 17164 unicodeslot=0x744, 17165 }, 17166 [0x745]={ 17167 category="mn", 17168 combining=0xE6, 17169 description="SYRIAC THREE DOTS ABOVE", 17170 direction="nsm", 17171 linebreak="cm", 17172 unicodeslot=0x745, 17173 }, 17174 [0x746]={ 17175 category="mn", 17176 combining=0xDC, 17177 description="SYRIAC THREE DOTS BELOW", 17178 direction="nsm", 17179 linebreak="cm", 17180 unicodeslot=0x746, 17181 }, 17182 [0x747]={ 17183 category="mn", 17184 combining=0xE6, 17185 description="SYRIAC OBLIQUE LINE ABOVE", 17186 direction="nsm", 17187 linebreak="cm", 17188 unicodeslot=0x747, 17189 }, 17190 [0x748]={ 17191 category="mn", 17192 combining=0xDC, 17193 description="SYRIAC OBLIQUE LINE BELOW", 17194 direction="nsm", 17195 linebreak="cm", 17196 unicodeslot=0x748, 17197 }, 17198 [0x749]={ 17199 category="mn", 17200 combining=0xE6, 17201 description="SYRIAC MUSIC", 17202 direction="nsm", 17203 linebreak="cm", 17204 unicodeslot=0x749, 17205 }, 17206 [0x74A]={ 17207 category="mn", 17208 combining=0xE6, 17209 description="SYRIAC BARREKH", 17210 direction="nsm", 17211 linebreak="cm", 17212 unicodeslot=0x74A, 17213 }, 17214 [0x74D]={ 17215 arabic="r", 17216 category="lo", 17217 description="SYRIAC LETTER SOGDIAN ZHAIN", 17218 direction="al", 17219 linebreak="al", 17220 unicodeslot=0x74D, 17221 }, 17222 [0x74E]={ 17223 arabic="d", 17224 category="lo", 17225 description="SYRIAC LETTER SOGDIAN KHAPH", 17226 direction="al", 17227 linebreak="al", 17228 unicodeslot=0x74E, 17229 }, 17230 [0x74F]={ 17231 arabic="d", 17232 category="lo", 17233 description="SYRIAC LETTER SOGDIAN FE", 17234 direction="al", 17235 linebreak="al", 17236 unicodeslot=0x74F, 17237 }, 17238 [0x750]={ 17239 arabic="d", 17240 category="lo", 17241 description="ARABIC LETTER BEH WITH THREE DOTS HORIZONTALLY BELOW", 17242 direction="al", 17243 linebreak="al", 17244 shcode=0x628, 17245 unicodeslot=0x750, 17246 }, 17247 [0x751]={ 17248 arabic="d", 17249 category="lo", 17250 description="ARABIC LETTER BEH WITH DOT BELOW AND THREE DOTS ABOVE", 17251 direction="al", 17252 linebreak="al", 17253 shcode=0x628, 17254 unicodeslot=0x751, 17255 }, 17256 [0x752]={ 17257 arabic="d", 17258 category="lo", 17259 description="ARABIC LETTER BEH WITH THREE DOTS POINTING UPWARDS BELOW", 17260 direction="al", 17261 linebreak="al", 17262 shcode=0x628, 17263 unicodeslot=0x752, 17264 }, 17265 [0x753]={ 17266 arabic="d", 17267 category="lo", 17268 description="ARABIC LETTER BEH WITH THREE DOTS POINTING UPWARDS BELOW AND TWO DOTS ABOVE", 17269 direction="al", 17270 linebreak="al", 17271 shcode=0x628, 17272 unicodeslot=0x753, 17273 }, 17274 [0x754]={ 17275 arabic="d", 17276 category="lo", 17277 description="ARABIC LETTER BEH WITH TWO DOTS BELOW AND DOT ABOVE", 17278 direction="al", 17279 linebreak="al", 17280 shcode=0x628, 17281 unicodeslot=0x754, 17282 }, 17283 [0x755]={ 17284 arabic="d", 17285 category="lo", 17286 description="ARABIC LETTER BEH WITH INVERTED SMALL V BELOW", 17287 direction="al", 17288 linebreak="al", 17289 shcode=0x628, 17290 unicodeslot=0x755, 17291 }, 17292 [0x756]={ 17293 arabic="d", 17294 category="lo", 17295 description="ARABIC LETTER BEH WITH SMALL V", 17296 direction="al", 17297 linebreak="al", 17298 shcode=0x628, 17299 unicodeslot=0x756, 17300 }, 17301 [0x757]={ 17302 arabic="d", 17303 category="lo", 17304 description="ARABIC LETTER HAH WITH TWO DOTS ABOVE", 17305 direction="al", 17306 linebreak="al", 17307 shcode=0x62D, 17308 unicodeslot=0x757, 17309 }, 17310 [0x758]={ 17311 arabic="d", 17312 category="lo", 17313 description="ARABIC LETTER HAH WITH THREE DOTS POINTING UPWARDS BELOW", 17314 direction="al", 17315 linebreak="al", 17316 shcode=0x62D, 17317 unicodeslot=0x758, 17318 }, 17319 [0x759]={ 17320 arabic="r", 17321 category="lo", 17322 description="ARABIC LETTER DAL WITH TWO DOTS VERTICALLY BELOW AND SMALL TAH", 17323 direction="al", 17324 linebreak="al", 17325 shcode=0x62F, 17326 unicodeslot=0x759, 17327 }, 17328 [0x75A]={ 17329 arabic="r", 17330 category="lo", 17331 description="ARABIC LETTER DAL WITH INVERTED SMALL V BELOW", 17332 direction="al", 17333 linebreak="al", 17334 shcode=0x62F, 17335 unicodeslot=0x75A, 17336 }, 17337 [0x75B]={ 17338 arabic="r", 17339 category="lo", 17340 description="ARABIC LETTER REH WITH STROKE", 17341 direction="al", 17342 linebreak="al", 17343 shcode=0x631, 17344 unicodeslot=0x75B, 17345 }, 17346 [0x75C]={ 17347 arabic="d", 17348 category="lo", 17349 description="ARABIC LETTER SEEN WITH FOUR DOTS ABOVE", 17350 direction="al", 17351 linebreak="al", 17352 shcode=0x633, 17353 unicodeslot=0x75C, 17354 }, 17355 [0x75D]={ 17356 arabic="d", 17357 category="lo", 17358 description="ARABIC LETTER AIN WITH TWO DOTS ABOVE", 17359 direction="al", 17360 linebreak="al", 17361 shcode=0x639, 17362 unicodeslot=0x75D, 17363 }, 17364 [0x75E]={ 17365 arabic="d", 17366 category="lo", 17367 description="ARABIC LETTER AIN WITH THREE DOTS POINTING DOWNWARDS ABOVE", 17368 direction="al", 17369 linebreak="al", 17370 shcode=0x639, 17371 unicodeslot=0x75E, 17372 }, 17373 [0x75F]={ 17374 arabic="d", 17375 category="lo", 17376 description="ARABIC LETTER AIN WITH TWO DOTS VERTICALLY ABOVE", 17377 direction="al", 17378 linebreak="al", 17379 shcode=0x639, 17380 unicodeslot=0x75F, 17381 }, 17382 [0x760]={ 17383 arabic="d", 17384 category="lo", 17385 description="ARABIC LETTER FEH WITH TWO DOTS BELOW", 17386 direction="al", 17387 linebreak="al", 17388 shcode=0x641, 17389 unicodeslot=0x760, 17390 }, 17391 [0x761]={ 17392 arabic="d", 17393 category="lo", 17394 description="ARABIC LETTER FEH WITH THREE DOTS POINTING UPWARDS BELOW", 17395 direction="al", 17396 linebreak="al", 17397 shcode=0x641, 17398 unicodeslot=0x761, 17399 }, 17400 [0x762]={ 17401 arabic="d", 17402 category="lo", 17403 description="ARABIC LETTER KEHEH WITH DOT ABOVE", 17404 direction="al", 17405 linebreak="al", 17406 shcode=0x6A9, 17407 unicodeslot=0x762, 17408 }, 17409 [0x763]={ 17410 arabic="d", 17411 category="lo", 17412 description="ARABIC LETTER KEHEH WITH THREE DOTS ABOVE", 17413 direction="al", 17414 linebreak="al", 17415 shcode=0x6A9, 17416 unicodeslot=0x763, 17417 }, 17418 [0x764]={ 17419 arabic="d", 17420 category="lo", 17421 description="ARABIC LETTER KEHEH WITH THREE DOTS POINTING UPWARDS BELOW", 17422 direction="al", 17423 linebreak="al", 17424 shcode=0x6A9, 17425 unicodeslot=0x764, 17426 }, 17427 [0x765]={ 17428 arabic="d", 17429 category="lo", 17430 description="ARABIC LETTER MEEM WITH DOT ABOVE", 17431 direction="al", 17432 linebreak="al", 17433 shcode=0x645, 17434 unicodeslot=0x765, 17435 }, 17436 [0x766]={ 17437 arabic="d", 17438 category="lo", 17439 description="ARABIC LETTER MEEM WITH DOT BELOW", 17440 direction="al", 17441 linebreak="al", 17442 shcode=0x645, 17443 unicodeslot=0x766, 17444 }, 17445 [0x767]={ 17446 arabic="d", 17447 category="lo", 17448 description="ARABIC LETTER NOON WITH TWO DOTS BELOW", 17449 direction="al", 17450 linebreak="al", 17451 shcode=0x646, 17452 unicodeslot=0x767, 17453 }, 17454 [0x768]={ 17455 arabic="d", 17456 category="lo", 17457 description="ARABIC LETTER NOON WITH SMALL TAH", 17458 direction="al", 17459 linebreak="al", 17460 shcode=0x646, 17461 unicodeslot=0x768, 17462 }, 17463 [0x769]={ 17464 arabic="d", 17465 category="lo", 17466 description="ARABIC LETTER NOON WITH SMALL V", 17467 direction="al", 17468 linebreak="al", 17469 shcode=0x646, 17470 unicodeslot=0x769, 17471 }, 17472 [0x76A]={ 17473 arabic="d", 17474 category="lo", 17475 description="ARABIC LETTER LAM WITH BAR", 17476 direction="al", 17477 linebreak="al", 17478 shcode=0x644, 17479 unicodeslot=0x76A, 17480 }, 17481 [0x76B]={ 17482 arabic="r", 17483 category="lo", 17484 description="ARABIC LETTER REH WITH TWO DOTS VERTICALLY ABOVE", 17485 direction="al", 17486 linebreak="al", 17487 shcode=0x631, 17488 unicodeslot=0x76B, 17489 }, 17490 [0x76C]={ 17491 arabic="r", 17492 category="lo", 17493 description="ARABIC LETTER REH WITH HAMZA ABOVE", 17494 direction="al", 17495 linebreak="al", 17496 shcode=0x631, 17497 unicodeslot=0x76C, 17498 }, 17499 [0x76D]={ 17500 arabic="d", 17501 category="lo", 17502 description="ARABIC LETTER SEEN WITH TWO DOTS VERTICALLY ABOVE", 17503 direction="al", 17504 linebreak="al", 17505 shcode=0x633, 17506 unicodeslot=0x76D, 17507 }, 17508 [0x76E]={ 17509 arabic="d", 17510 category="lo", 17511 description="ARABIC LETTER HAH WITH SMALL ARABIC LETTER TAH BELOW", 17512 direction="al", 17513 linebreak="al", 17514 unicodeslot=0x76E, 17515 }, 17516 [0x76F]={ 17517 arabic="d", 17518 category="lo", 17519 description="ARABIC LETTER HAH WITH SMALL ARABIC LETTER TAH AND TWO DOTS", 17520 direction="al", 17521 linebreak="al", 17522 unicodeslot=0x76F, 17523 }, 17524 [0x770]={ 17525 arabic="d", 17526 category="lo", 17527 description="ARABIC LETTER SEEN WITH SMALL ARABIC LETTER TAH AND TWO DOTS", 17528 direction="al", 17529 linebreak="al", 17530 unicodeslot=0x770, 17531 }, 17532 [0x771]={ 17533 arabic="r", 17534 category="lo", 17535 description="ARABIC LETTER REH WITH SMALL ARABIC LETTER TAH AND TWO DOTS", 17536 direction="al", 17537 linebreak="al", 17538 unicodeslot=0x771, 17539 }, 17540 [0x772]={ 17541 arabic="d", 17542 category="lo", 17543 description="ARABIC LETTER HAH WITH SMALL ARABIC LETTER TAH ABOVE", 17544 direction="al", 17545 linebreak="al", 17546 unicodeslot=0x772, 17547 }, 17548 [0x773]={ 17549 arabic="r", 17550 category="lo", 17551 description="ARABIC LETTER ALEF WITH EXTENDED ARABIC-INDIC DIGIT TWO ABOVE", 17552 direction="al", 17553 linebreak="al", 17554 unicodeslot=0x773, 17555 }, 17556 [0x774]={ 17557 arabic="r", 17558 category="lo", 17559 description="ARABIC LETTER ALEF WITH EXTENDED ARABIC-INDIC DIGIT THREE ABOVE", 17560 direction="al", 17561 linebreak="al", 17562 unicodeslot=0x774, 17563 }, 17564 [0x775]={ 17565 arabic="d", 17566 category="lo", 17567 description="ARABIC LETTER FARSI YEH WITH EXTENDED ARABIC-INDIC DIGIT TWO ABOVE", 17568 direction="al", 17569 linebreak="al", 17570 unicodeslot=0x775, 17571 }, 17572 [0x776]={ 17573 arabic="d", 17574 category="lo", 17575 description="ARABIC LETTER FARSI YEH WITH EXTENDED ARABIC-INDIC DIGIT THREE ABOVE", 17576 direction="al", 17577 linebreak="al", 17578 unicodeslot=0x776, 17579 }, 17580 [0x777]={ 17581 arabic="d", 17582 category="lo", 17583 description="ARABIC LETTER FARSI YEH WITH EXTENDED ARABIC-INDIC DIGIT FOUR BELOW", 17584 direction="al", 17585 linebreak="al", 17586 unicodeslot=0x777, 17587 }, 17588 [0x778]={ 17589 arabic="r", 17590 category="lo", 17591 description="ARABIC LETTER WAW WITH EXTENDED ARABIC-INDIC DIGIT TWO ABOVE", 17592 direction="al", 17593 linebreak="al", 17594 unicodeslot=0x778, 17595 }, 17596 [0x779]={ 17597 arabic="r", 17598 category="lo", 17599 description="ARABIC LETTER WAW WITH EXTENDED ARABIC-INDIC DIGIT THREE ABOVE", 17600 direction="al", 17601 linebreak="al", 17602 unicodeslot=0x779, 17603 }, 17604 [0x77A]={ 17605 arabic="d", 17606 category="lo", 17607 description="ARABIC LETTER YEH BARREE WITH EXTENDED ARABIC-INDIC DIGIT TWO ABOVE", 17608 direction="al", 17609 linebreak="al", 17610 unicodeslot=0x77A, 17611 }, 17612 [0x77B]={ 17613 arabic="d", 17614 category="lo", 17615 description="ARABIC LETTER YEH BARREE WITH EXTENDED ARABIC-INDIC DIGIT THREE ABOVE", 17616 direction="al", 17617 linebreak="al", 17618 unicodeslot=0x77B, 17619 }, 17620 [0x77C]={ 17621 arabic="d", 17622 category="lo", 17623 description="ARABIC LETTER HAH WITH EXTENDED ARABIC-INDIC DIGIT FOUR BELOW", 17624 direction="al", 17625 linebreak="al", 17626 unicodeslot=0x77C, 17627 }, 17628 [0x77D]={ 17629 arabic="d", 17630 category="lo", 17631 description="ARABIC LETTER SEEN WITH EXTENDED ARABIC-INDIC DIGIT FOUR ABOVE", 17632 direction="al", 17633 linebreak="al", 17634 unicodeslot=0x77D, 17635 }, 17636 [0x77E]={ 17637 arabic="d", 17638 category="lo", 17639 description="ARABIC LETTER SEEN WITH INVERTED V", 17640 direction="al", 17641 linebreak="al", 17642 unicodeslot=0x77E, 17643 }, 17644 [0x77F]={ 17645 arabic="d", 17646 category="lo", 17647 description="ARABIC LETTER KAF WITH TWO DOTS ABOVE", 17648 direction="al", 17649 linebreak="al", 17650 unicodeslot=0x77F, 17651 }, 17652 [0x780]={ 17653 category="lo", 17654 description="THAANA LETTER HAA", 17655 direction="al", 17656 linebreak="al", 17657 unicodeslot=0x780, 17658 }, 17659 [0x781]={ 17660 category="lo", 17661 description="THAANA LETTER SHAVIYANI", 17662 direction="al", 17663 linebreak="al", 17664 unicodeslot=0x781, 17665 }, 17666 [0x782]={ 17667 category="lo", 17668 description="THAANA LETTER NOONU", 17669 direction="al", 17670 linebreak="al", 17671 unicodeslot=0x782, 17672 }, 17673 [0x783]={ 17674 category="lo", 17675 description="THAANA LETTER RAA", 17676 direction="al", 17677 linebreak="al", 17678 unicodeslot=0x783, 17679 }, 17680 [0x784]={ 17681 category="lo", 17682 description="THAANA LETTER BAA", 17683 direction="al", 17684 linebreak="al", 17685 unicodeslot=0x784, 17686 }, 17687 [0x785]={ 17688 category="lo", 17689 description="THAANA LETTER LHAVIYANI", 17690 direction="al", 17691 linebreak="al", 17692 unicodeslot=0x785, 17693 }, 17694 [0x786]={ 17695 category="lo", 17696 description="THAANA LETTER KAAFU", 17697 direction="al", 17698 linebreak="al", 17699 unicodeslot=0x786, 17700 }, 17701 [0x787]={ 17702 category="lo", 17703 description="THAANA LETTER ALIFU", 17704 direction="al", 17705 linebreak="al", 17706 unicodeslot=0x787, 17707 }, 17708 [0x788]={ 17709 category="lo", 17710 description="THAANA LETTER VAAVU", 17711 direction="al", 17712 linebreak="al", 17713 unicodeslot=0x788, 17714 }, 17715 [0x789]={ 17716 category="lo", 17717 description="THAANA LETTER MEEMU", 17718 direction="al", 17719 linebreak="al", 17720 unicodeslot=0x789, 17721 }, 17722 [0x78A]={ 17723 category="lo", 17724 description="THAANA LETTER FAAFU", 17725 direction="al", 17726 linebreak="al", 17727 unicodeslot=0x78A, 17728 }, 17729 [0x78B]={ 17730 category="lo", 17731 description="THAANA LETTER DHAALU", 17732 direction="al", 17733 linebreak="al", 17734 unicodeslot=0x78B, 17735 }, 17736 [0x78C]={ 17737 category="lo", 17738 description="THAANA LETTER THAA", 17739 direction="al", 17740 linebreak="al", 17741 unicodeslot=0x78C, 17742 }, 17743 [0x78D]={ 17744 category="lo", 17745 description="THAANA LETTER LAAMU", 17746 direction="al", 17747 linebreak="al", 17748 unicodeslot=0x78D, 17749 }, 17750 [0x78E]={ 17751 category="lo", 17752 description="THAANA LETTER GAAFU", 17753 direction="al", 17754 linebreak="al", 17755 unicodeslot=0x78E, 17756 }, 17757 [0x78F]={ 17758 category="lo", 17759 description="THAANA LETTER GNAVIYANI", 17760 direction="al", 17761 linebreak="al", 17762 unicodeslot=0x78F, 17763 }, 17764 [0x790]={ 17765 category="lo", 17766 description="THAANA LETTER SEENU", 17767 direction="al", 17768 linebreak="al", 17769 unicodeslot=0x790, 17770 }, 17771 [0x791]={ 17772 category="lo", 17773 description="THAANA LETTER DAVIYANI", 17774 direction="al", 17775 linebreak="al", 17776 unicodeslot=0x791, 17777 }, 17778 [0x792]={ 17779 category="lo", 17780 description="THAANA LETTER ZAVIYANI", 17781 direction="al", 17782 linebreak="al", 17783 unicodeslot=0x792, 17784 }, 17785 [0x793]={ 17786 category="lo", 17787 description="THAANA LETTER TAVIYANI", 17788 direction="al", 17789 linebreak="al", 17790 unicodeslot=0x793, 17791 }, 17792 [0x794]={ 17793 category="lo", 17794 description="THAANA LETTER YAA", 17795 direction="al", 17796 linebreak="al", 17797 unicodeslot=0x794, 17798 }, 17799 [0x795]={ 17800 category="lo", 17801 description="THAANA LETTER PAVIYANI", 17802 direction="al", 17803 linebreak="al", 17804 unicodeslot=0x795, 17805 }, 17806 [0x796]={ 17807 category="lo", 17808 description="THAANA LETTER JAVIYANI", 17809 direction="al", 17810 linebreak="al", 17811 unicodeslot=0x796, 17812 }, 17813 [0x797]={ 17814 category="lo", 17815 description="THAANA LETTER CHAVIYANI", 17816 direction="al", 17817 linebreak="al", 17818 unicodeslot=0x797, 17819 }, 17820 [0x798]={ 17821 category="lo", 17822 description="THAANA LETTER TTAA", 17823 direction="al", 17824 linebreak="al", 17825 unicodeslot=0x798, 17826 }, 17827 [0x799]={ 17828 category="lo", 17829 description="THAANA LETTER HHAA", 17830 direction="al", 17831 linebreak="al", 17832 unicodeslot=0x799, 17833 }, 17834 [0x79A]={ 17835 category="lo", 17836 description="THAANA LETTER KHAA", 17837 direction="al", 17838 linebreak="al", 17839 unicodeslot=0x79A, 17840 }, 17841 [0x79B]={ 17842 category="lo", 17843 description="THAANA LETTER THAALU", 17844 direction="al", 17845 linebreak="al", 17846 unicodeslot=0x79B, 17847 }, 17848 [0x79C]={ 17849 category="lo", 17850 description="THAANA LETTER ZAA", 17851 direction="al", 17852 linebreak="al", 17853 unicodeslot=0x79C, 17854 }, 17855 [0x79D]={ 17856 category="lo", 17857 description="THAANA LETTER SHEENU", 17858 direction="al", 17859 linebreak="al", 17860 unicodeslot=0x79D, 17861 }, 17862 [0x79E]={ 17863 category="lo", 17864 description="THAANA LETTER SAADHU", 17865 direction="al", 17866 linebreak="al", 17867 unicodeslot=0x79E, 17868 }, 17869 [0x79F]={ 17870 category="lo", 17871 description="THAANA LETTER DAADHU", 17872 direction="al", 17873 linebreak="al", 17874 unicodeslot=0x79F, 17875 }, 17876 [0x7A0]={ 17877 category="lo", 17878 description="THAANA LETTER TO", 17879 direction="al", 17880 linebreak="al", 17881 unicodeslot=0x7A0, 17882 }, 17883 [0x7A1]={ 17884 category="lo", 17885 description="THAANA LETTER ZO", 17886 direction="al", 17887 linebreak="al", 17888 unicodeslot=0x7A1, 17889 }, 17890 [0x7A2]={ 17891 category="lo", 17892 description="THAANA LETTER AINU", 17893 direction="al", 17894 linebreak="al", 17895 unicodeslot=0x7A2, 17896 }, 17897 [0x7A3]={ 17898 category="lo", 17899 description="THAANA LETTER GHAINU", 17900 direction="al", 17901 linebreak="al", 17902 unicodeslot=0x7A3, 17903 }, 17904 [0x7A4]={ 17905 category="lo", 17906 description="THAANA LETTER QAAFU", 17907 direction="al", 17908 linebreak="al", 17909 unicodeslot=0x7A4, 17910 }, 17911 [0x7A5]={ 17912 category="lo", 17913 description="THAANA LETTER WAAVU", 17914 direction="al", 17915 linebreak="al", 17916 unicodeslot=0x7A5, 17917 }, 17918 [0x7A6]={ 17919 category="mn", 17920 description="THAANA ABAFILI", 17921 direction="nsm", 17922 linebreak="cm", 17923 unicodeslot=0x7A6, 17924 }, 17925 [0x7A7]={ 17926 category="mn", 17927 description="THAANA AABAAFILI", 17928 direction="nsm", 17929 linebreak="cm", 17930 unicodeslot=0x7A7, 17931 }, 17932 [0x7A8]={ 17933 category="mn", 17934 description="THAANA IBIFILI", 17935 direction="nsm", 17936 linebreak="cm", 17937 unicodeslot=0x7A8, 17938 }, 17939 [0x7A9]={ 17940 category="mn", 17941 description="THAANA EEBEEFILI", 17942 direction="nsm", 17943 linebreak="cm", 17944 unicodeslot=0x7A9, 17945 }, 17946 [0x7AA]={ 17947 category="mn", 17948 description="THAANA UBUFILI", 17949 direction="nsm", 17950 linebreak="cm", 17951 unicodeslot=0x7AA, 17952 }, 17953 [0x7AB]={ 17954 category="mn", 17955 description="THAANA OOBOOFILI", 17956 direction="nsm", 17957 linebreak="cm", 17958 unicodeslot=0x7AB, 17959 }, 17960 [0x7AC]={ 17961 category="mn", 17962 description="THAANA EBEFILI", 17963 direction="nsm", 17964 linebreak="cm", 17965 unicodeslot=0x7AC, 17966 }, 17967 [0x7AD]={ 17968 category="mn", 17969 description="THAANA EYBEYFILI", 17970 direction="nsm", 17971 linebreak="cm", 17972 unicodeslot=0x7AD, 17973 }, 17974 [0x7AE]={ 17975 category="mn", 17976 description="THAANA OBOFILI", 17977 direction="nsm", 17978 linebreak="cm", 17979 unicodeslot=0x7AE, 17980 }, 17981 [0x7AF]={ 17982 category="mn", 17983 description="THAANA OABOAFILI", 17984 direction="nsm", 17985 linebreak="cm", 17986 unicodeslot=0x7AF, 17987 }, 17988 [0x7B0]={ 17989 category="mn", 17990 description="THAANA SUKUN", 17991 direction="nsm", 17992 linebreak="cm", 17993 unicodeslot=0x7B0, 17994 }, 17995 [0x7B1]={ 17996 category="lo", 17997 description="THAANA LETTER NAA", 17998 direction="al", 17999 linebreak="al", 18000 unicodeslot=0x7B1, 18001 }, 18002 [0x7C0]={ 18003 category="nd", 18004 description="NKO DIGIT ZERO", 18005 direction="r", 18006 linebreak="nu", 18007 unicodeslot=0x7C0, 18008 }, 18009 [0x7C1]={ 18010 category="nd", 18011 description="NKO DIGIT ONE", 18012 direction="r", 18013 linebreak="nu", 18014 unicodeslot=0x7C1, 18015 }, 18016 [0x7C2]={ 18017 category="nd", 18018 description="NKO DIGIT TWO", 18019 direction="r", 18020 linebreak="nu", 18021 unicodeslot=0x7C2, 18022 }, 18023 [0x7C3]={ 18024 category="nd", 18025 description="NKO DIGIT THREE", 18026 direction="r", 18027 linebreak="nu", 18028 unicodeslot=0x7C3, 18029 }, 18030 [0x7C4]={ 18031 category="nd", 18032 description="NKO DIGIT FOUR", 18033 direction="r", 18034 linebreak="nu", 18035 unicodeslot=0x7C4, 18036 }, 18037 [0x7C5]={ 18038 category="nd", 18039 description="NKO DIGIT FIVE", 18040 direction="r", 18041 linebreak="nu", 18042 unicodeslot=0x7C5, 18043 }, 18044 [0x7C6]={ 18045 category="nd", 18046 description="NKO DIGIT SIX", 18047 direction="r", 18048 linebreak="nu", 18049 unicodeslot=0x7C6, 18050 }, 18051 [0x7C7]={ 18052 category="nd", 18053 description="NKO DIGIT SEVEN", 18054 direction="r", 18055 linebreak="nu", 18056 unicodeslot=0x7C7, 18057 }, 18058 [0x7C8]={ 18059 category="nd", 18060 description="NKO DIGIT EIGHT", 18061 direction="r", 18062 linebreak="nu", 18063 unicodeslot=0x7C8, 18064 }, 18065 [0x7C9]={ 18066 category="nd", 18067 description="NKO DIGIT NINE", 18068 direction="r", 18069 linebreak="nu", 18070 unicodeslot=0x7C9, 18071 }, 18072 [0x7CA]={ 18073 arabic="d", 18074 category="lo", 18075 description="NKO LETTER A", 18076 direction="r", 18077 linebreak="al", 18078 unicodeslot=0x7CA, 18079 }, 18080 [0x7CB]={ 18081 arabic="d", 18082 category="lo", 18083 description="NKO LETTER EE", 18084 direction="r", 18085 linebreak="al", 18086 unicodeslot=0x7CB, 18087 }, 18088 [0x7CC]={ 18089 arabic="d", 18090 category="lo", 18091 description="NKO LETTER I", 18092 direction="r", 18093 linebreak="al", 18094 unicodeslot=0x7CC, 18095 }, 18096 [0x7CD]={ 18097 arabic="d", 18098 category="lo", 18099 description="NKO LETTER E", 18100 direction="r", 18101 linebreak="al", 18102 unicodeslot=0x7CD, 18103 }, 18104 [0x7CE]={ 18105 arabic="d", 18106 category="lo", 18107 description="NKO LETTER U", 18108 direction="r", 18109 linebreak="al", 18110 unicodeslot=0x7CE, 18111 }, 18112 [0x7CF]={ 18113 arabic="d", 18114 category="lo", 18115 description="NKO LETTER OO", 18116 direction="r", 18117 linebreak="al", 18118 unicodeslot=0x7CF, 18119 }, 18120 [0x7D0]={ 18121 arabic="d", 18122 category="lo", 18123 description="NKO LETTER O", 18124 direction="r", 18125 linebreak="al", 18126 unicodeslot=0x7D0, 18127 }, 18128 [0x7D1]={ 18129 arabic="d", 18130 category="lo", 18131 description="NKO LETTER DAGBASINNA", 18132 direction="r", 18133 linebreak="al", 18134 unicodeslot=0x7D1, 18135 }, 18136 [0x7D2]={ 18137 arabic="d", 18138 category="lo", 18139 description="NKO LETTER N", 18140 direction="r", 18141 linebreak="al", 18142 unicodeslot=0x7D2, 18143 }, 18144 [0x7D3]={ 18145 arabic="d", 18146 category="lo", 18147 description="NKO LETTER BA", 18148 direction="r", 18149 linebreak="al", 18150 unicodeslot=0x7D3, 18151 }, 18152 [0x7D4]={ 18153 arabic="d", 18154 category="lo", 18155 description="NKO LETTER PA", 18156 direction="r", 18157 linebreak="al", 18158 unicodeslot=0x7D4, 18159 }, 18160 [0x7D5]={ 18161 arabic="d", 18162 category="lo", 18163 description="NKO LETTER TA", 18164 direction="r", 18165 linebreak="al", 18166 unicodeslot=0x7D5, 18167 }, 18168 [0x7D6]={ 18169 arabic="d", 18170 category="lo", 18171 description="NKO LETTER JA", 18172 direction="r", 18173 linebreak="al", 18174 unicodeslot=0x7D6, 18175 }, 18176 [0x7D7]={ 18177 arabic="d", 18178 category="lo", 18179 description="NKO LETTER CHA", 18180 direction="r", 18181 linebreak="al", 18182 unicodeslot=0x7D7, 18183 }, 18184 [0x7D8]={ 18185 arabic="d", 18186 category="lo", 18187 description="NKO LETTER DA", 18188 direction="r", 18189 linebreak="al", 18190 unicodeslot=0x7D8, 18191 }, 18192 [0x7D9]={ 18193 arabic="d", 18194 category="lo", 18195 description="NKO LETTER RA", 18196 direction="r", 18197 linebreak="al", 18198 unicodeslot=0x7D9, 18199 }, 18200 [0x7DA]={ 18201 arabic="d", 18202 category="lo", 18203 description="NKO LETTER RRA", 18204 direction="r", 18205 linebreak="al", 18206 unicodeslot=0x7DA, 18207 }, 18208 [0x7DB]={ 18209 arabic="d", 18210 category="lo", 18211 description="NKO LETTER SA", 18212 direction="r", 18213 linebreak="al", 18214 unicodeslot=0x7DB, 18215 }, 18216 [0x7DC]={ 18217 arabic="d", 18218 category="lo", 18219 description="NKO LETTER GBA", 18220 direction="r", 18221 linebreak="al", 18222 unicodeslot=0x7DC, 18223 }, 18224 [0x7DD]={ 18225 arabic="d", 18226 category="lo", 18227 description="NKO LETTER FA", 18228 direction="r", 18229 linebreak="al", 18230 unicodeslot=0x7DD, 18231 }, 18232 [0x7DE]={ 18233 arabic="d", 18234 category="lo", 18235 description="NKO LETTER KA", 18236 direction="r", 18237 linebreak="al", 18238 unicodeslot=0x7DE, 18239 }, 18240 [0x7DF]={ 18241 arabic="d", 18242 category="lo", 18243 description="NKO LETTER LA", 18244 direction="r", 18245 linebreak="al", 18246 unicodeslot=0x7DF, 18247 }, 18248 [0x7E0]={ 18249 arabic="d", 18250 category="lo", 18251 description="NKO LETTER NA WOLOSO", 18252 direction="r", 18253 linebreak="al", 18254 unicodeslot=0x7E0, 18255 }, 18256 [0x7E1]={ 18257 arabic="d", 18258 category="lo", 18259 description="NKO LETTER MA", 18260 direction="r", 18261 linebreak="al", 18262 unicodeslot=0x7E1, 18263 }, 18264 [0x7E2]={ 18265 arabic="d", 18266 category="lo", 18267 description="NKO LETTER NYA", 18268 direction="r", 18269 linebreak="al", 18270 unicodeslot=0x7E2, 18271 }, 18272 [0x7E3]={ 18273 arabic="d", 18274 category="lo", 18275 description="NKO LETTER NA", 18276 direction="r", 18277 linebreak="al", 18278 unicodeslot=0x7E3, 18279 }, 18280 [0x7E4]={ 18281 arabic="d", 18282 category="lo", 18283 description="NKO LETTER HA", 18284 direction="r", 18285 linebreak="al", 18286 unicodeslot=0x7E4, 18287 }, 18288 [0x7E5]={ 18289 arabic="d", 18290 category="lo", 18291 description="NKO LETTER WA", 18292 direction="r", 18293 linebreak="al", 18294 unicodeslot=0x7E5, 18295 }, 18296 [0x7E6]={ 18297 arabic="d", 18298 category="lo", 18299 description="NKO LETTER YA", 18300 direction="r", 18301 linebreak="al", 18302 unicodeslot=0x7E6, 18303 }, 18304 [0x7E7]={ 18305 arabic="d", 18306 category="lo", 18307 description="NKO LETTER NYA WOLOSO", 18308 direction="r", 18309 linebreak="al", 18310 unicodeslot=0x7E7, 18311 }, 18312 [0x7E8]={ 18313 arabic="d", 18314 category="lo", 18315 description="NKO LETTER JONA JA", 18316 direction="r", 18317 linebreak="al", 18318 unicodeslot=0x7E8, 18319 }, 18320 [0x7E9]={ 18321 arabic="d", 18322 category="lo", 18323 description="NKO LETTER JONA CHA", 18324 direction="r", 18325 linebreak="al", 18326 unicodeslot=0x7E9, 18327 }, 18328 [0x7EA]={ 18329 arabic="d", 18330 category="lo", 18331 description="NKO LETTER JONA RA", 18332 direction="r", 18333 linebreak="al", 18334 unicodeslot=0x7EA, 18335 }, 18336 [0x7EB]={ 18337 category="mn", 18338 combining=0xE6, 18339 description="NKO COMBINING SHORT HIGH TONE", 18340 direction="nsm", 18341 linebreak="cm", 18342 unicodeslot=0x7EB, 18343 }, 18344 [0x7EC]={ 18345 category="mn", 18346 combining=0xE6, 18347 description="NKO COMBINING SHORT LOW TONE", 18348 direction="nsm", 18349 linebreak="cm", 18350 unicodeslot=0x7EC, 18351 }, 18352 [0x7ED]={ 18353 category="mn", 18354 combining=0xE6, 18355 description="NKO COMBINING SHORT RISING TONE", 18356 direction="nsm", 18357 linebreak="cm", 18358 unicodeslot=0x7ED, 18359 }, 18360 [0x7EE]={ 18361 category="mn", 18362 combining=0xE6, 18363 description="NKO COMBINING LONG DESCENDING TONE", 18364 direction="nsm", 18365 linebreak="cm", 18366 unicodeslot=0x7EE, 18367 }, 18368 [0x7EF]={ 18369 category="mn", 18370 combining=0xE6, 18371 description="NKO COMBINING LONG HIGH TONE", 18372 direction="nsm", 18373 linebreak="cm", 18374 unicodeslot=0x7EF, 18375 }, 18376 [0x7F0]={ 18377 category="mn", 18378 combining=0xE6, 18379 description="NKO COMBINING LONG LOW TONE", 18380 direction="nsm", 18381 linebreak="cm", 18382 unicodeslot=0x7F0, 18383 }, 18384 [0x7F1]={ 18385 category="mn", 18386 combining=0xE6, 18387 description="NKO COMBINING LONG RISING TONE", 18388 direction="nsm", 18389 linebreak="cm", 18390 unicodeslot=0x7F1, 18391 }, 18392 [0x7F2]={ 18393 category="mn", 18394 combining=0xDC, 18395 description="NKO COMBINING NASALIZATION MARK", 18396 direction="nsm", 18397 linebreak="cm", 18398 unicodeslot=0x7F2, 18399 }, 18400 [0x7F3]={ 18401 category="mn", 18402 combining=0xE6, 18403 description="NKO COMBINING DOUBLE DOT ABOVE", 18404 direction="nsm", 18405 linebreak="cm", 18406 unicodeslot=0x7F3, 18407 }, 18408 [0x7F4]={ 18409 category="lm", 18410 description="NKO HIGH TONE APOSTROPHE", 18411 direction="r", 18412 linebreak="al", 18413 unicodeslot=0x7F4, 18414 }, 18415 [0x7F5]={ 18416 category="lm", 18417 description="NKO LOW TONE APOSTROPHE", 18418 direction="r", 18419 linebreak="al", 18420 unicodeslot=0x7F5, 18421 }, 18422 [0x7F6]={ 18423 category="so", 18424 description="NKO SYMBOL OO DENNEN", 18425 direction="on", 18426 linebreak="al", 18427 unicodeslot=0x7F6, 18428 }, 18429 [0x7F7]={ 18430 category="po", 18431 description="NKO SYMBOL GBAKURUNEN", 18432 direction="on", 18433 linebreak="al", 18434 unicodeslot=0x7F7, 18435 }, 18436 [0x7F8]={ 18437 category="po", 18438 description="NKO COMMA", 18439 direction="on", 18440 linebreak="is", 18441 unicodeslot=0x7F8, 18442 }, 18443 [0x7F9]={ 18444 category="po", 18445 description="NKO EXCLAMATION MARK", 18446 direction="on", 18447 linebreak="ex", 18448 unicodeslot=0x7F9, 18449 }, 18450 [0x7FA]={ 18451 arabic="c", 18452 category="lm", 18453 description="NKO LAJANYALAN", 18454 direction="r", 18455 linebreak="al", 18456 unicodeslot=0x7FA, 18457 }, 18458 [0x7FD]={ 18459 category="mn", 18460 combining=0xDC, 18461 description="NKO DANTAYALAN", 18462 direction="nsm", 18463 linebreak="cm", 18464 unicodeslot=0x7FD, 18465 }, 18466 [0x7FE]={ 18467 category="sc", 18468 description="NKO DOROME SIGN", 18469 direction="r", 18470 linebreak="pr", 18471 unicodeslot=0x7FE, 18472 }, 18473 [0x7FF]={ 18474 category="sc", 18475 description="NKO TAMAN SIGN", 18476 direction="r", 18477 linebreak="pr", 18478 unicodeslot=0x7FF, 18479 }, 18480 [0x800]={ 18481 category="lo", 18482 description="SAMARITAN LETTER ALAF", 18483 direction="r", 18484 linebreak="al", 18485 unicodeslot=0x800, 18486 }, 18487 [0x801]={ 18488 category="lo", 18489 description="SAMARITAN LETTER BIT", 18490 direction="r", 18491 linebreak="al", 18492 unicodeslot=0x801, 18493 }, 18494 [0x802]={ 18495 category="lo", 18496 description="SAMARITAN LETTER GAMAN", 18497 direction="r", 18498 linebreak="al", 18499 unicodeslot=0x802, 18500 }, 18501 [0x803]={ 18502 category="lo", 18503 description="SAMARITAN LETTER DALAT", 18504 direction="r", 18505 linebreak="al", 18506 unicodeslot=0x803, 18507 }, 18508 [0x804]={ 18509 category="lo", 18510 description="SAMARITAN LETTER IY", 18511 direction="r", 18512 linebreak="al", 18513 unicodeslot=0x804, 18514 }, 18515 [0x805]={ 18516 category="lo", 18517 description="SAMARITAN LETTER BAA", 18518 direction="r", 18519 linebreak="al", 18520 unicodeslot=0x805, 18521 }, 18522 [0x806]={ 18523 category="lo", 18524 description="SAMARITAN LETTER ZEN", 18525 direction="r", 18526 linebreak="al", 18527 unicodeslot=0x806, 18528 }, 18529 [0x807]={ 18530 category="lo", 18531 description="SAMARITAN LETTER IT", 18532 direction="r", 18533 linebreak="al", 18534 unicodeslot=0x807, 18535 }, 18536 [0x808]={ 18537 category="lo", 18538 description="SAMARITAN LETTER TIT", 18539 direction="r", 18540 linebreak="al", 18541 unicodeslot=0x808, 18542 }, 18543 [0x809]={ 18544 category="lo", 18545 description="SAMARITAN LETTER YUT", 18546 direction="r", 18547 linebreak="al", 18548 unicodeslot=0x809, 18549 }, 18550 [0x80A]={ 18551 category="lo", 18552 description="SAMARITAN LETTER KAAF", 18553 direction="r", 18554 linebreak="al", 18555 unicodeslot=0x80A, 18556 }, 18557 [0x80B]={ 18558 category="lo", 18559 description="SAMARITAN LETTER LABAT", 18560 direction="r", 18561 linebreak="al", 18562 unicodeslot=0x80B, 18563 }, 18564 [0x80C]={ 18565 category="lo", 18566 description="SAMARITAN LETTER MIM", 18567 direction="r", 18568 linebreak="al", 18569 unicodeslot=0x80C, 18570 }, 18571 [0x80D]={ 18572 category="lo", 18573 description="SAMARITAN LETTER NUN", 18574 direction="r", 18575 linebreak="al", 18576 unicodeslot=0x80D, 18577 }, 18578 [0x80E]={ 18579 category="lo", 18580 description="SAMARITAN LETTER SINGAAT", 18581 direction="r", 18582 linebreak="al", 18583 unicodeslot=0x80E, 18584 }, 18585 [0x80F]={ 18586 category="lo", 18587 description="SAMARITAN LETTER IN", 18588 direction="r", 18589 linebreak="al", 18590 unicodeslot=0x80F, 18591 }, 18592 [0x810]={ 18593 category="lo", 18594 description="SAMARITAN LETTER FI", 18595 direction="r", 18596 linebreak="al", 18597 unicodeslot=0x810, 18598 }, 18599 [0x811]={ 18600 category="lo", 18601 description="SAMARITAN LETTER TSAADIY", 18602 direction="r", 18603 linebreak="al", 18604 unicodeslot=0x811, 18605 }, 18606 [0x812]={ 18607 category="lo", 18608 description="SAMARITAN LETTER QUF", 18609 direction="r", 18610 linebreak="al", 18611 unicodeslot=0x812, 18612 }, 18613 [0x813]={ 18614 category="lo", 18615 description="SAMARITAN LETTER RISH", 18616 direction="r", 18617 linebreak="al", 18618 unicodeslot=0x813, 18619 }, 18620 [0x814]={ 18621 category="lo", 18622 description="SAMARITAN LETTER SHAN", 18623 direction="r", 18624 linebreak="al", 18625 unicodeslot=0x814, 18626 }, 18627 [0x815]={ 18628 category="lo", 18629 description="SAMARITAN LETTER TAAF", 18630 direction="r", 18631 linebreak="al", 18632 unicodeslot=0x815, 18633 }, 18634 [0x816]={ 18635 category="mn", 18636 combining=0xE6, 18637 description="SAMARITAN MARK IN", 18638 direction="nsm", 18639 linebreak="cm", 18640 unicodeslot=0x816, 18641 }, 18642 [0x817]={ 18643 category="mn", 18644 combining=0xE6, 18645 description="SAMARITAN MARK IN-ALAF", 18646 direction="nsm", 18647 linebreak="cm", 18648 unicodeslot=0x817, 18649 }, 18650 [0x818]={ 18651 category="mn", 18652 combining=0xE6, 18653 description="SAMARITAN MARK OCCLUSION", 18654 direction="nsm", 18655 linebreak="cm", 18656 unicodeslot=0x818, 18657 }, 18658 [0x819]={ 18659 category="mn", 18660 combining=0xE6, 18661 description="SAMARITAN MARK DAGESH", 18662 direction="nsm", 18663 linebreak="cm", 18664 unicodeslot=0x819, 18665 }, 18666 [0x81A]={ 18667 category="lm", 18668 description="SAMARITAN MODIFIER LETTER EPENTHETIC YUT", 18669 direction="r", 18670 linebreak="al", 18671 unicodeslot=0x81A, 18672 }, 18673 [0x81B]={ 18674 category="mn", 18675 combining=0xE6, 18676 description="SAMARITAN MARK EPENTHETIC YUT", 18677 direction="nsm", 18678 linebreak="cm", 18679 unicodeslot=0x81B, 18680 }, 18681 [0x81C]={ 18682 category="mn", 18683 combining=0xE6, 18684 description="SAMARITAN VOWEL SIGN LONG E", 18685 direction="nsm", 18686 linebreak="cm", 18687 unicodeslot=0x81C, 18688 }, 18689 [0x81D]={ 18690 category="mn", 18691 combining=0xE6, 18692 description="SAMARITAN VOWEL SIGN E", 18693 direction="nsm", 18694 linebreak="cm", 18695 unicodeslot=0x81D, 18696 }, 18697 [0x81E]={ 18698 category="mn", 18699 combining=0xE6, 18700 description="SAMARITAN VOWEL SIGN OVERLONG AA", 18701 direction="nsm", 18702 linebreak="cm", 18703 unicodeslot=0x81E, 18704 }, 18705 [0x81F]={ 18706 category="mn", 18707 combining=0xE6, 18708 description="SAMARITAN VOWEL SIGN LONG AA", 18709 direction="nsm", 18710 linebreak="cm", 18711 unicodeslot=0x81F, 18712 }, 18713 [0x820]={ 18714 category="mn", 18715 combining=0xE6, 18716 description="SAMARITAN VOWEL SIGN AA", 18717 direction="nsm", 18718 linebreak="cm", 18719 unicodeslot=0x820, 18720 }, 18721 [0x821]={ 18722 category="mn", 18723 combining=0xE6, 18724 description="SAMARITAN VOWEL SIGN OVERLONG A", 18725 direction="nsm", 18726 linebreak="cm", 18727 unicodeslot=0x821, 18728 }, 18729 [0x822]={ 18730 category="mn", 18731 combining=0xE6, 18732 description="SAMARITAN VOWEL SIGN LONG A", 18733 direction="nsm", 18734 linebreak="cm", 18735 unicodeslot=0x822, 18736 }, 18737 [0x823]={ 18738 category="mn", 18739 combining=0xE6, 18740 description="SAMARITAN VOWEL SIGN A", 18741 direction="nsm", 18742 linebreak="cm", 18743 unicodeslot=0x823, 18744 }, 18745 [0x824]={ 18746 category="lm", 18747 description="SAMARITAN MODIFIER LETTER SHORT A", 18748 direction="r", 18749 linebreak="al", 18750 unicodeslot=0x824, 18751 }, 18752 [0x825]={ 18753 category="mn", 18754 combining=0xE6, 18755 description="SAMARITAN VOWEL SIGN SHORT A", 18756 direction="nsm", 18757 linebreak="cm", 18758 unicodeslot=0x825, 18759 }, 18760 [0x826]={ 18761 category="mn", 18762 combining=0xE6, 18763 description="SAMARITAN VOWEL SIGN LONG U", 18764 direction="nsm", 18765 linebreak="cm", 18766 unicodeslot=0x826, 18767 }, 18768 [0x827]={ 18769 category="mn", 18770 combining=0xE6, 18771 description="SAMARITAN VOWEL SIGN U", 18772 direction="nsm", 18773 linebreak="cm", 18774 unicodeslot=0x827, 18775 }, 18776 [0x828]={ 18777 category="lm", 18778 description="SAMARITAN MODIFIER LETTER I", 18779 direction="r", 18780 linebreak="al", 18781 unicodeslot=0x828, 18782 }, 18783 [0x829]={ 18784 category="mn", 18785 combining=0xE6, 18786 description="SAMARITAN VOWEL SIGN LONG I", 18787 direction="nsm", 18788 linebreak="cm", 18789 unicodeslot=0x829, 18790 }, 18791 [0x82A]={ 18792 category="mn", 18793 combining=0xE6, 18794 description="SAMARITAN VOWEL SIGN I", 18795 direction="nsm", 18796 linebreak="cm", 18797 unicodeslot=0x82A, 18798 }, 18799 [0x82B]={ 18800 category="mn", 18801 combining=0xE6, 18802 description="SAMARITAN VOWEL SIGN O", 18803 direction="nsm", 18804 linebreak="cm", 18805 unicodeslot=0x82B, 18806 }, 18807 [0x82C]={ 18808 category="mn", 18809 combining=0xE6, 18810 description="SAMARITAN VOWEL SIGN SUKUN", 18811 direction="nsm", 18812 linebreak="cm", 18813 unicodeslot=0x82C, 18814 }, 18815 [0x82D]={ 18816 category="mn", 18817 combining=0xE6, 18818 description="SAMARITAN MARK NEQUDAA", 18819 direction="nsm", 18820 linebreak="cm", 18821 unicodeslot=0x82D, 18822 }, 18823 [0x830]={ 18824 category="po", 18825 description="SAMARITAN PUNCTUATION NEQUDAA", 18826 direction="r", 18827 linebreak="al", 18828 unicodeslot=0x830, 18829 }, 18830 [0x831]={ 18831 category="po", 18832 description="SAMARITAN PUNCTUATION AFSAAQ", 18833 direction="r", 18834 linebreak="al", 18835 unicodeslot=0x831, 18836 }, 18837 [0x832]={ 18838 category="po", 18839 description="SAMARITAN PUNCTUATION ANGED", 18840 direction="r", 18841 linebreak="al", 18842 unicodeslot=0x832, 18843 }, 18844 [0x833]={ 18845 category="po", 18846 description="SAMARITAN PUNCTUATION BAU", 18847 direction="r", 18848 linebreak="al", 18849 unicodeslot=0x833, 18850 }, 18851 [0x834]={ 18852 category="po", 18853 description="SAMARITAN PUNCTUATION ATMAAU", 18854 direction="r", 18855 linebreak="al", 18856 unicodeslot=0x834, 18857 }, 18858 [0x835]={ 18859 category="po", 18860 description="SAMARITAN PUNCTUATION SHIYYAALAA", 18861 direction="r", 18862 linebreak="al", 18863 unicodeslot=0x835, 18864 }, 18865 [0x836]={ 18866 category="po", 18867 description="SAMARITAN ABBREVIATION MARK", 18868 direction="r", 18869 linebreak="al", 18870 unicodeslot=0x836, 18871 }, 18872 [0x837]={ 18873 category="po", 18874 description="SAMARITAN PUNCTUATION MELODIC QITSA", 18875 direction="r", 18876 linebreak="al", 18877 unicodeslot=0x837, 18878 }, 18879 [0x838]={ 18880 category="po", 18881 description="SAMARITAN PUNCTUATION ZIQAA", 18882 direction="r", 18883 linebreak="al", 18884 unicodeslot=0x838, 18885 }, 18886 [0x839]={ 18887 category="po", 18888 description="SAMARITAN PUNCTUATION QITSA", 18889 direction="r", 18890 linebreak="al", 18891 unicodeslot=0x839, 18892 }, 18893 [0x83A]={ 18894 category="po", 18895 description="SAMARITAN PUNCTUATION ZAEF", 18896 direction="r", 18897 linebreak="al", 18898 unicodeslot=0x83A, 18899 }, 18900 [0x83B]={ 18901 category="po", 18902 description="SAMARITAN PUNCTUATION TURU", 18903 direction="r", 18904 linebreak="al", 18905 unicodeslot=0x83B, 18906 }, 18907 [0x83C]={ 18908 category="po", 18909 description="SAMARITAN PUNCTUATION ARKAANU", 18910 direction="r", 18911 linebreak="al", 18912 unicodeslot=0x83C, 18913 }, 18914 [0x83D]={ 18915 category="po", 18916 description="SAMARITAN PUNCTUATION SOF MASHFAAT", 18917 direction="r", 18918 linebreak="al", 18919 unicodeslot=0x83D, 18920 }, 18921 [0x83E]={ 18922 category="po", 18923 description="SAMARITAN PUNCTUATION ANNAAU", 18924 direction="r", 18925 linebreak="al", 18926 unicodeslot=0x83E, 18927 }, 18928 [0x840]={ 18929 arabic="r", 18930 category="lo", 18931 description="MANDAIC LETTER HALQA", 18932 direction="r", 18933 linebreak="al", 18934 unicodeslot=0x840, 18935 }, 18936 [0x841]={ 18937 arabic="d", 18938 category="lo", 18939 description="MANDAIC LETTER AB", 18940 direction="r", 18941 linebreak="al", 18942 unicodeslot=0x841, 18943 }, 18944 [0x842]={ 18945 arabic="d", 18946 category="lo", 18947 description="MANDAIC LETTER AG", 18948 direction="r", 18949 linebreak="al", 18950 unicodeslot=0x842, 18951 }, 18952 [0x843]={ 18953 arabic="d", 18954 category="lo", 18955 description="MANDAIC LETTER AD", 18956 direction="r", 18957 linebreak="al", 18958 unicodeslot=0x843, 18959 }, 18960 [0x844]={ 18961 arabic="d", 18962 category="lo", 18963 description="MANDAIC LETTER AH", 18964 direction="r", 18965 linebreak="al", 18966 unicodeslot=0x844, 18967 }, 18968 [0x845]={ 18969 arabic="d", 18970 category="lo", 18971 description="MANDAIC LETTER USHENNA", 18972 direction="r", 18973 linebreak="al", 18974 unicodeslot=0x845, 18975 }, 18976 [0x846]={ 18977 arabic="r", 18978 category="lo", 18979 description="MANDAIC LETTER AZ", 18980 direction="r", 18981 linebreak="al", 18982 unicodeslot=0x846, 18983 }, 18984 [0x847]={ 18985 arabic="r", 18986 category="lo", 18987 description="MANDAIC LETTER IT", 18988 direction="r", 18989 linebreak="al", 18990 unicodeslot=0x847, 18991 }, 18992 [0x848]={ 18993 arabic="d", 18994 category="lo", 18995 description="MANDAIC LETTER ATT", 18996 direction="r", 18997 linebreak="al", 18998 unicodeslot=0x848, 18999 }, 19000 [0x849]={ 19001 arabic="r", 19002 category="lo", 19003 description="MANDAIC LETTER AKSA", 19004 direction="r", 19005 linebreak="al", 19006 unicodeslot=0x849, 19007 }, 19008 [0x84A]={ 19009 arabic="d", 19010 category="lo", 19011 description="MANDAIC LETTER AK", 19012 direction="r", 19013 linebreak="al", 19014 unicodeslot=0x84A, 19015 }, 19016 [0x84B]={ 19017 arabic="d", 19018 category="lo", 19019 description="MANDAIC LETTER AL", 19020 direction="r", 19021 linebreak="al", 19022 unicodeslot=0x84B, 19023 }, 19024 [0x84C]={ 19025 arabic="d", 19026 category="lo", 19027 description="MANDAIC LETTER AM", 19028 direction="r", 19029 linebreak="al", 19030 unicodeslot=0x84C, 19031 }, 19032 [0x84D]={ 19033 arabic="d", 19034 category="lo", 19035 description="MANDAIC LETTER AN", 19036 direction="r", 19037 linebreak="al", 19038 unicodeslot=0x84D, 19039 }, 19040 [0x84E]={ 19041 arabic="d", 19042 category="lo", 19043 description="MANDAIC LETTER AS", 19044 direction="r", 19045 linebreak="al", 19046 unicodeslot=0x84E, 19047 }, 19048 [0x84F]={ 19049 arabic="d", 19050 category="lo", 19051 description="MANDAIC LETTER IN", 19052 direction="r", 19053 linebreak="al", 19054 unicodeslot=0x84F, 19055 }, 19056 [0x850]={ 19057 arabic="d", 19058 category="lo", 19059 description="MANDAIC LETTER AP", 19060 direction="r", 19061 linebreak="al", 19062 unicodeslot=0x850, 19063 }, 19064 [0x851]={ 19065 arabic="d", 19066 category="lo", 19067 description="MANDAIC LETTER ASZ", 19068 direction="r", 19069 linebreak="al", 19070 unicodeslot=0x851, 19071 }, 19072 [0x852]={ 19073 arabic="d", 19074 category="lo", 19075 description="MANDAIC LETTER AQ", 19076 direction="r", 19077 linebreak="al", 19078 unicodeslot=0x852, 19079 }, 19080 [0x853]={ 19081 arabic="d", 19082 category="lo", 19083 description="MANDAIC LETTER AR", 19084 direction="r", 19085 linebreak="al", 19086 unicodeslot=0x853, 19087 }, 19088 [0x854]={ 19089 arabic="r", 19090 category="lo", 19091 description="MANDAIC LETTER ASH", 19092 direction="r", 19093 linebreak="al", 19094 unicodeslot=0x854, 19095 }, 19096 [0x855]={ 19097 arabic="d", 19098 category="lo", 19099 description="MANDAIC LETTER AT", 19100 direction="r", 19101 linebreak="al", 19102 unicodeslot=0x855, 19103 }, 19104 [0x856]={ 19105 arabic="r", 19106 category="lo", 19107 description="MANDAIC LETTER DUSHENNA", 19108 direction="r", 19109 linebreak="al", 19110 unicodeslot=0x856, 19111 }, 19112 [0x857]={ 19113 arabic="r", 19114 category="lo", 19115 description="MANDAIC LETTER KAD", 19116 direction="r", 19117 linebreak="al", 19118 unicodeslot=0x857, 19119 }, 19120 [0x858]={ 19121 arabic="r", 19122 category="lo", 19123 description="MANDAIC LETTER AIN", 19124 direction="r", 19125 linebreak="al", 19126 unicodeslot=0x858, 19127 }, 19128 [0x859]={ 19129 category="mn", 19130 combining=0xDC, 19131 description="MANDAIC AFFRICATION MARK", 19132 direction="nsm", 19133 linebreak="cm", 19134 unicodeslot=0x859, 19135 }, 19136 [0x85A]={ 19137 category="mn", 19138 combining=0xDC, 19139 description="MANDAIC VOCALIZATION MARK", 19140 direction="nsm", 19141 linebreak="cm", 19142 unicodeslot=0x85A, 19143 }, 19144 [0x85B]={ 19145 category="mn", 19146 combining=0xDC, 19147 description="MANDAIC GEMINATION MARK", 19148 direction="nsm", 19149 linebreak="cm", 19150 unicodeslot=0x85B, 19151 }, 19152 [0x85E]={ 19153 category="po", 19154 description="MANDAIC PUNCTUATION", 19155 direction="r", 19156 linebreak="al", 19157 unicodeslot=0x85E, 19158 }, 19159 [0x860]={ 19160 arabic="d", 19161 category="lo", 19162 description="SYRIAC LETTER MALAYALAM NGA", 19163 direction="al", 19164 linebreak="al", 19165 unicodeslot=0x860, 19166 }, 19167 [0x861]={ 19168 arabic="u", 19169 category="lo", 19170 description="SYRIAC LETTER MALAYALAM JA", 19171 direction="al", 19172 linebreak="al", 19173 unicodeslot=0x861, 19174 }, 19175 [0x862]={ 19176 arabic="d", 19177 category="lo", 19178 description="SYRIAC LETTER MALAYALAM NYA", 19179 direction="al", 19180 linebreak="al", 19181 unicodeslot=0x862, 19182 }, 19183 [0x863]={ 19184 arabic="d", 19185 category="lo", 19186 description="SYRIAC LETTER MALAYALAM TTA", 19187 direction="al", 19188 linebreak="al", 19189 unicodeslot=0x863, 19190 }, 19191 [0x864]={ 19192 arabic="d", 19193 category="lo", 19194 description="SYRIAC LETTER MALAYALAM NNA", 19195 direction="al", 19196 linebreak="al", 19197 unicodeslot=0x864, 19198 }, 19199 [0x865]={ 19200 arabic="d", 19201 category="lo", 19202 description="SYRIAC LETTER MALAYALAM NNNA", 19203 direction="al", 19204 linebreak="al", 19205 unicodeslot=0x865, 19206 }, 19207 [0x866]={ 19208 arabic="u", 19209 category="lo", 19210 description="SYRIAC LETTER MALAYALAM BHA", 19211 direction="al", 19212 linebreak="al", 19213 unicodeslot=0x866, 19214 }, 19215 [0x867]={ 19216 arabic="r", 19217 category="lo", 19218 description="SYRIAC LETTER MALAYALAM RA", 19219 direction="al", 19220 linebreak="al", 19221 unicodeslot=0x867, 19222 }, 19223 [0x868]={ 19224 arabic="d", 19225 category="lo", 19226 description="SYRIAC LETTER MALAYALAM LLA", 19227 direction="al", 19228 linebreak="al", 19229 unicodeslot=0x868, 19230 }, 19231 [0x869]={ 19232 arabic="r", 19233 category="lo", 19234 description="SYRIAC LETTER MALAYALAM LLLA", 19235 direction="al", 19236 linebreak="al", 19237 unicodeslot=0x869, 19238 }, 19239 [0x86A]={ 19240 arabic="r", 19241 category="lo", 19242 description="SYRIAC LETTER MALAYALAM SSA", 19243 direction="al", 19244 linebreak="al", 19245 unicodeslot=0x86A, 19246 }, 19247 [0x870]={ 19248 arabic="r", 19249 category="lo", 19250 description="ARABIC LETTER ALEF WITH ATTACHED FATHA", 19251 direction="al", 19252 linebreak="al", 19253 unicodeslot=0x870, 19254 }, 19255 [0x871]={ 19256 arabic="r", 19257 category="lo", 19258 description="ARABIC LETTER ALEF WITH ATTACHED TOP RIGHT FATHA", 19259 direction="al", 19260 linebreak="al", 19261 unicodeslot=0x871, 19262 }, 19263 [0x872]={ 19264 arabic="r", 19265 category="lo", 19266 description="ARABIC LETTER ALEF WITH RIGHT MIDDLE STROKE", 19267 direction="al", 19268 linebreak="al", 19269 unicodeslot=0x872, 19270 }, 19271 [0x873]={ 19272 arabic="r", 19273 category="lo", 19274 description="ARABIC LETTER ALEF WITH LEFT MIDDLE STROKE", 19275 direction="al", 19276 linebreak="al", 19277 unicodeslot=0x873, 19278 }, 19279 [0x874]={ 19280 arabic="r", 19281 category="lo", 19282 description="ARABIC LETTER ALEF WITH ATTACHED KASRA", 19283 direction="al", 19284 linebreak="al", 19285 unicodeslot=0x874, 19286 }, 19287 [0x875]={ 19288 arabic="r", 19289 category="lo", 19290 description="ARABIC LETTER ALEF WITH ATTACHED BOTTOM RIGHT KASRA", 19291 direction="al", 19292 linebreak="al", 19293 unicodeslot=0x875, 19294 }, 19295 [0x876]={ 19296 arabic="r", 19297 category="lo", 19298 description="ARABIC LETTER ALEF WITH ATTACHED ROUND DOT ABOVE", 19299 direction="al", 19300 linebreak="al", 19301 unicodeslot=0x876, 19302 }, 19303 [0x877]={ 19304 arabic="r", 19305 category="lo", 19306 description="ARABIC LETTER ALEF WITH ATTACHED RIGHT ROUND DOT", 19307 direction="al", 19308 linebreak="al", 19309 unicodeslot=0x877, 19310 }, 19311 [0x878]={ 19312 arabic="r", 19313 category="lo", 19314 description="ARABIC LETTER ALEF WITH ATTACHED LEFT ROUND DOT", 19315 direction="al", 19316 linebreak="al", 19317 unicodeslot=0x878, 19318 }, 19319 [0x879]={ 19320 arabic="r", 19321 category="lo", 19322 description="ARABIC LETTER ALEF WITH ATTACHED ROUND DOT BELOW", 19323 direction="al", 19324 linebreak="al", 19325 unicodeslot=0x879, 19326 }, 19327 [0x87A]={ 19328 arabic="r", 19329 category="lo", 19330 description="ARABIC LETTER ALEF WITH DOT ABOVE", 19331 direction="al", 19332 linebreak="al", 19333 unicodeslot=0x87A, 19334 }, 19335 [0x87B]={ 19336 arabic="r", 19337 category="lo", 19338 description="ARABIC LETTER ALEF WITH ATTACHED TOP RIGHT FATHA AND DOT ABOVE", 19339 direction="al", 19340 linebreak="al", 19341 unicodeslot=0x87B, 19342 }, 19343 [0x87C]={ 19344 arabic="r", 19345 category="lo", 19346 description="ARABIC LETTER ALEF WITH RIGHT MIDDLE STROKE AND DOT ABOVE", 19347 direction="al", 19348 linebreak="al", 19349 unicodeslot=0x87C, 19350 }, 19351 [0x87D]={ 19352 arabic="r", 19353 category="lo", 19354 description="ARABIC LETTER ALEF WITH ATTACHED BOTTOM RIGHT KASRA AND DOT ABOVE", 19355 direction="al", 19356 linebreak="al", 19357 unicodeslot=0x87D, 19358 }, 19359 [0x87E]={ 19360 arabic="r", 19361 category="lo", 19362 description="ARABIC LETTER ALEF WITH ATTACHED TOP RIGHT FATHA AND LEFT RING", 19363 direction="al", 19364 linebreak="al", 19365 unicodeslot=0x87E, 19366 }, 19367 [0x87F]={ 19368 arabic="r", 19369 category="lo", 19370 description="ARABIC LETTER ALEF WITH RIGHT MIDDLE STROKE AND LEFT RING", 19371 direction="al", 19372 linebreak="al", 19373 unicodeslot=0x87F, 19374 }, 19375 [0x880]={ 19376 arabic="r", 19377 category="lo", 19378 description="ARABIC LETTER ALEF WITH ATTACHED BOTTOM RIGHT KASRA AND LEFT RING", 19379 direction="al", 19380 linebreak="al", 19381 unicodeslot=0x880, 19382 }, 19383 [0x881]={ 19384 arabic="r", 19385 category="lo", 19386 description="ARABIC LETTER ALEF WITH ATTACHED RIGHT HAMZA", 19387 direction="al", 19388 linebreak="al", 19389 unicodeslot=0x881, 19390 }, 19391 [0x882]={ 19392 arabic="r", 19393 category="lo", 19394 description="ARABIC LETTER ALEF WITH ATTACHED LEFT HAMZA", 19395 direction="al", 19396 linebreak="al", 19397 unicodeslot=0x882, 19398 }, 19399 [0x883]={ 19400 arabic="c", 19401 category="lo", 19402 description="ARABIC TATWEEL WITH OVERSTRUCK HAMZA", 19403 direction="al", 19404 linebreak="al", 19405 unicodeslot=0x883, 19406 }, 19407 [0x884]={ 19408 arabic="c", 19409 category="lo", 19410 description="ARABIC TATWEEL WITH OVERSTRUCK WAW", 19411 direction="al", 19412 linebreak="al", 19413 unicodeslot=0x884, 19414 }, 19415 [0x885]={ 19416 arabic="c", 19417 category="lo", 19418 description="ARABIC TATWEEL WITH TWO DOTS BELOW", 19419 direction="al", 19420 linebreak="al", 19421 unicodeslot=0x885, 19422 }, 19423 [0x886]={ 19424 arabic="d", 19425 category="lo", 19426 description="ARABIC LETTER THIN YEH", 19427 direction="al", 19428 linebreak="al", 19429 unicodeslot=0x886, 19430 }, 19431 [0x887]={ 19432 arabic="u", 19433 category="lo", 19434 description="ARABIC BASELINE ROUND DOT", 19435 direction="al", 19436 linebreak="al", 19437 unicodeslot=0x887, 19438 }, 19439 [0x888]={ 19440 arabic="u", 19441 category="sk", 19442 description="ARABIC RAISED ROUND DOT", 19443 direction="al", 19444 linebreak="al", 19445 unicodeslot=0x888, 19446 }, 19447 [0x889]={ 19448 arabic="d", 19449 category="lo", 19450 description="ARABIC LETTER NOON WITH INVERTED SMALL V", 19451 direction="al", 19452 linebreak="al", 19453 unicodeslot=0x889, 19454 }, 19455 [0x88A]={ 19456 arabic="d", 19457 category="lo", 19458 description="ARABIC LETTER HAH WITH INVERTED SMALL V BELOW", 19459 direction="al", 19460 linebreak="al", 19461 unicodeslot=0x88A, 19462 }, 19463 [0x88B]={ 19464 arabic="d", 19465 category="lo", 19466 description="ARABIC LETTER TAH WITH DOT BELOW", 19467 direction="al", 19468 linebreak="al", 19469 unicodeslot=0x88B, 19470 }, 19471 [0x88C]={ 19472 arabic="d", 19473 category="lo", 19474 description="ARABIC LETTER TAH WITH THREE DOTS BELOW", 19475 direction="al", 19476 linebreak="al", 19477 unicodeslot=0x88C, 19478 }, 19479 [0x88D]={ 19480 arabic="d", 19481 category="lo", 19482 description="ARABIC LETTER KEHEH WITH TWO DOTS VERTICALLY BELOW", 19483 direction="al", 19484 linebreak="al", 19485 unicodeslot=0x88D, 19486 }, 19487 [0x88E]={ 19488 arabic="r", 19489 category="lo", 19490 description="ARABIC VERTICAL TAIL", 19491 direction="al", 19492 linebreak="al", 19493 unicodeslot=0x88E, 19494 }, 19495 [0x890]={ 19496 arabic="u", 19497 category="cf", 19498 description="ARABIC POUND MARK ABOVE", 19499 direction="an", 19500 linebreak="nu", 19501 unicodeslot=0x890, 19502 }, 19503 [0x891]={ 19504 arabic="u", 19505 category="cf", 19506 description="ARABIC PIASTRE MARK ABOVE", 19507 direction="an", 19508 linebreak="nu", 19509 unicodeslot=0x891, 19510 }, 19511 [0x897]={ 19512 category="mn", 19513 combining=0xE6, 19514 description="ARABIC PEPET", 19515 direction="nsm", 19516 linebreak="cm", 19517 unicodeslot=0x897, 19518 }, 19519 [0x898]={ 19520 category="mn", 19521 combining=0xE6, 19522 description="ARABIC SMALL HIGH WORD AL-JUZ", 19523 direction="nsm", 19524 linebreak="cm", 19525 unicodeslot=0x898, 19526 }, 19527 [0x899]={ 19528 category="mn", 19529 combining=0xDC, 19530 description="ARABIC SMALL LOW WORD ISHMAAM", 19531 direction="nsm", 19532 linebreak="cm", 19533 unicodeslot=0x899, 19534 }, 19535 [0x89A]={ 19536 category="mn", 19537 combining=0xDC, 19538 description="ARABIC SMALL LOW WORD IMAALA", 19539 direction="nsm", 19540 linebreak="cm", 19541 unicodeslot=0x89A, 19542 }, 19543 [0x89B]={ 19544 category="mn", 19545 combining=0xDC, 19546 description="ARABIC SMALL LOW WORD TASHEEL", 19547 direction="nsm", 19548 linebreak="cm", 19549 unicodeslot=0x89B, 19550 }, 19551 [0x89C]={ 19552 category="mn", 19553 combining=0xE6, 19554 description="ARABIC MADDA WAAJIB", 19555 direction="nsm", 19556 linebreak="cm", 19557 unicodeslot=0x89C, 19558 }, 19559 [0x89D]={ 19560 category="mn", 19561 combining=0xE6, 19562 description="ARABIC SUPERSCRIPT ALEF MOKHASSAS", 19563 direction="nsm", 19564 linebreak="cm", 19565 unicodeslot=0x89D, 19566 }, 19567 [0x89E]={ 19568 category="mn", 19569 combining=0xE6, 19570 description="ARABIC DOUBLED MADDA", 19571 direction="nsm", 19572 linebreak="cm", 19573 unicodeslot=0x89E, 19574 }, 19575 [0x89F]={ 19576 category="mn", 19577 combining=0xE6, 19578 description="ARABIC HALF MADDA OVER MADDA", 19579 direction="nsm", 19580 linebreak="cm", 19581 unicodeslot=0x89F, 19582 }, 19583 [0x8A0]={ 19584 arabic="d", 19585 category="lo", 19586 description="ARABIC LETTER BEH WITH SMALL V BELOW", 19587 direction="al", 19588 linebreak="al", 19589 unicodeslot=0x8A0, 19590 }, 19591 [0x8A1]={ 19592 arabic="d", 19593 category="lo", 19594 description="ARABIC LETTER BEH WITH HAMZA ABOVE", 19595 direction="al", 19596 linebreak="al", 19597 unicodeslot=0x8A1, 19598 }, 19599 [0x8A2]={ 19600 arabic="d", 19601 category="lo", 19602 description="ARABIC LETTER JEEM WITH TWO DOTS ABOVE", 19603 direction="al", 19604 linebreak="al", 19605 unicodeslot=0x8A2, 19606 }, 19607 [0x8A3]={ 19608 arabic="d", 19609 category="lo", 19610 description="ARABIC LETTER TAH WITH TWO DOTS ABOVE", 19611 direction="al", 19612 linebreak="al", 19613 unicodeslot=0x8A3, 19614 }, 19615 [0x8A4]={ 19616 arabic="d", 19617 category="lo", 19618 description="ARABIC LETTER FEH WITH DOT BELOW AND THREE DOTS ABOVE", 19619 direction="al", 19620 linebreak="al", 19621 unicodeslot=0x8A4, 19622 }, 19623 [0x8A5]={ 19624 arabic="d", 19625 category="lo", 19626 description="ARABIC LETTER QAF WITH DOT BELOW", 19627 direction="al", 19628 linebreak="al", 19629 unicodeslot=0x8A5, 19630 }, 19631 [0x8A6]={ 19632 arabic="d", 19633 category="lo", 19634 description="ARABIC LETTER LAM WITH DOUBLE BAR", 19635 direction="al", 19636 linebreak="al", 19637 unicodeslot=0x8A6, 19638 }, 19639 [0x8A7]={ 19640 arabic="d", 19641 category="lo", 19642 description="ARABIC LETTER MEEM WITH THREE DOTS ABOVE", 19643 direction="al", 19644 linebreak="al", 19645 unicodeslot=0x8A7, 19646 }, 19647 [0x8A8]={ 19648 arabic="d", 19649 category="lo", 19650 description="ARABIC LETTER YEH WITH TWO DOTS BELOW AND HAMZA ABOVE", 19651 direction="al", 19652 linebreak="al", 19653 unicodeslot=0x8A8, 19654 }, 19655 [0x8A9]={ 19656 arabic="d", 19657 category="lo", 19658 description="ARABIC LETTER YEH WITH TWO DOTS BELOW AND DOT ABOVE", 19659 direction="al", 19660 linebreak="al", 19661 unicodeslot=0x8A9, 19662 }, 19663 [0x8AA]={ 19664 arabic="r", 19665 category="lo", 19666 description="ARABIC LETTER REH WITH LOOP", 19667 direction="al", 19668 linebreak="al", 19669 unicodeslot=0x8AA, 19670 }, 19671 [0x8AB]={ 19672 arabic="r", 19673 category="lo", 19674 description="ARABIC LETTER WAW WITH DOT WITHIN", 19675 direction="al", 19676 linebreak="al", 19677 unicodeslot=0x8AB, 19678 }, 19679 [0x8AC]={ 19680 arabic="r", 19681 category="lo", 19682 description="ARABIC LETTER ROHINGYA YEH", 19683 direction="al", 19684 linebreak="al", 19685 unicodeslot=0x8AC, 19686 }, 19687 [0x8AD]={ 19688 arabic="u", 19689 category="lo", 19690 description="ARABIC LETTER LOW ALEF", 19691 direction="al", 19692 linebreak="al", 19693 unicodeslot=0x8AD, 19694 }, 19695 [0x8AE]={ 19696 arabic="r", 19697 category="lo", 19698 description="ARABIC LETTER DAL WITH THREE DOTS BELOW", 19699 direction="al", 19700 linebreak="al", 19701 unicodeslot=0x8AE, 19702 }, 19703 [0x8AF]={ 19704 arabic="d", 19705 category="lo", 19706 description="ARABIC LETTER SAD WITH THREE DOTS BELOW", 19707 direction="al", 19708 linebreak="al", 19709 unicodeslot=0x8AF, 19710 }, 19711 [0x8B0]={ 19712 arabic="d", 19713 category="lo", 19714 description="ARABIC LETTER GAF WITH INVERTED STROKE", 19715 direction="al", 19716 linebreak="al", 19717 unicodeslot=0x8B0, 19718 }, 19719 [0x8B1]={ 19720 arabic="r", 19721 category="lo", 19722 description="ARABIC LETTER STRAIGHT WAW", 19723 direction="al", 19724 linebreak="al", 19725 unicodeslot=0x8B1, 19726 }, 19727 [0x8B2]={ 19728 arabic="r", 19729 category="lo", 19730 description="ARABIC LETTER ZAIN WITH INVERTED V ABOVE", 19731 direction="al", 19732 linebreak="al", 19733 unicodeslot=0x8B2, 19734 }, 19735 [0x8B3]={ 19736 arabic="d", 19737 category="lo", 19738 description="ARABIC LETTER AIN WITH THREE DOTS BELOW", 19739 direction="al", 19740 linebreak="al", 19741 unicodeslot=0x8B3, 19742 }, 19743 [0x8B4]={ 19744 arabic="d", 19745 category="lo", 19746 description="ARABIC LETTER KAF WITH DOT BELOW", 19747 direction="al", 19748 linebreak="al", 19749 unicodeslot=0x8B4, 19750 }, 19751 [0x8B5]={ 19752 arabic="d", 19753 category="lo", 19754 description="ARABIC LETTER QAF WITH DOT BELOW AND NO DOTS ABOVE", 19755 direction="al", 19756 linebreak="al", 19757 unicodeslot=0x8B5, 19758 }, 19759 [0x8B6]={ 19760 arabic="d", 19761 category="lo", 19762 description="ARABIC LETTER BEH WITH SMALL MEEM ABOVE", 19763 direction="al", 19764 linebreak="al", 19765 unicodeslot=0x8B6, 19766 }, 19767 [0x8B7]={ 19768 arabic="d", 19769 category="lo", 19770 description="ARABIC LETTER PEH WITH SMALL MEEM ABOVE", 19771 direction="al", 19772 linebreak="al", 19773 unicodeslot=0x8B7, 19774 }, 19775 [0x8B8]={ 19776 arabic="d", 19777 category="lo", 19778 description="ARABIC LETTER TEH WITH SMALL TEH ABOVE", 19779 direction="al", 19780 linebreak="al", 19781 unicodeslot=0x8B8, 19782 }, 19783 [0x8B9]={ 19784 arabic="r", 19785 category="lo", 19786 description="ARABIC LETTER REH WITH SMALL NOON ABOVE", 19787 direction="al", 19788 linebreak="al", 19789 unicodeslot=0x8B9, 19790 }, 19791 [0x8BA]={ 19792 arabic="d", 19793 category="lo", 19794 description="ARABIC LETTER YEH WITH TWO DOTS BELOW AND SMALL NOON ABOVE", 19795 direction="al", 19796 linebreak="al", 19797 unicodeslot=0x8BA, 19798 }, 19799 [0x8BB]={ 19800 arabic="d", 19801 category="lo", 19802 description="ARABIC LETTER AFRICAN FEH", 19803 direction="al", 19804 linebreak="al", 19805 unicodeslot=0x8BB, 19806 }, 19807 [0x8BC]={ 19808 arabic="d", 19809 category="lo", 19810 description="ARABIC LETTER AFRICAN QAF", 19811 direction="al", 19812 linebreak="al", 19813 unicodeslot=0x8BC, 19814 }, 19815 [0x8BD]={ 19816 arabic="d", 19817 category="lo", 19818 description="ARABIC LETTER AFRICAN NOON", 19819 direction="al", 19820 linebreak="al", 19821 unicodeslot=0x8BD, 19822 }, 19823 [0x8BE]={ 19824 arabic="d", 19825 category="lo", 19826 description="ARABIC LETTER PEH WITH SMALL V", 19827 direction="al", 19828 linebreak="al", 19829 unicodeslot=0x8BE, 19830 }, 19831 [0x8BF]={ 19832 arabic="d", 19833 category="lo", 19834 description="ARABIC LETTER TEH WITH SMALL V", 19835 direction="al", 19836 linebreak="al", 19837 unicodeslot=0x8BF, 19838 }, 19839 [0x8C0]={ 19840 arabic="d", 19841 category="lo", 19842 description="ARABIC LETTER TTEH WITH SMALL V", 19843 direction="al", 19844 linebreak="al", 19845 unicodeslot=0x8C0, 19846 }, 19847 [0x8C1]={ 19848 arabic="d", 19849 category="lo", 19850 description="ARABIC LETTER TCHEH WITH SMALL V", 19851 direction="al", 19852 linebreak="al", 19853 unicodeslot=0x8C1, 19854 }, 19855 [0x8C2]={ 19856 arabic="d", 19857 category="lo", 19858 description="ARABIC LETTER KEHEH WITH SMALL V", 19859 direction="al", 19860 linebreak="al", 19861 unicodeslot=0x8C2, 19862 }, 19863 [0x8C3]={ 19864 arabic="d", 19865 category="lo", 19866 description="ARABIC LETTER GHAIN WITH THREE DOTS ABOVE", 19867 direction="al", 19868 linebreak="al", 19869 unicodeslot=0x8C3, 19870 }, 19871 [0x8C4]={ 19872 arabic="d", 19873 category="lo", 19874 description="ARABIC LETTER AFRICAN QAF WITH THREE DOTS ABOVE", 19875 direction="al", 19876 linebreak="al", 19877 unicodeslot=0x8C4, 19878 }, 19879 [0x8C5]={ 19880 arabic="d", 19881 category="lo", 19882 description="ARABIC LETTER JEEM WITH THREE DOTS ABOVE", 19883 direction="al", 19884 linebreak="al", 19885 unicodeslot=0x8C5, 19886 }, 19887 [0x8C6]={ 19888 arabic="d", 19889 category="lo", 19890 description="ARABIC LETTER JEEM WITH THREE DOTS BELOW", 19891 direction="al", 19892 linebreak="al", 19893 unicodeslot=0x8C6, 19894 }, 19895 [0x8C7]={ 19896 arabic="d", 19897 category="lo", 19898 description="ARABIC LETTER LAM WITH SMALL ARABIC LETTER TAH ABOVE", 19899 direction="al", 19900 linebreak="al", 19901 unicodeslot=0x8C7, 19902 }, 19903 [0x8C8]={ 19904 arabic="d", 19905 category="lo", 19906 description="ARABIC LETTER GRAF", 19907 direction="al", 19908 linebreak="al", 19909 unicodeslot=0x8C8, 19910 }, 19911 [0x8C9]={ 19912 category="lm", 19913 description="ARABIC SMALL FARSI YEH", 19914 direction="al", 19915 linebreak="al", 19916 unicodeslot=0x8C9, 19917 }, 19918 [0x8CA]={ 19919 category="mn", 19920 combining=0xE6, 19921 description="ARABIC SMALL HIGH FARSI YEH", 19922 direction="nsm", 19923 linebreak="cm", 19924 unicodeslot=0x8CA, 19925 }, 19926 [0x8CB]={ 19927 category="mn", 19928 combining=0xE6, 19929 description="ARABIC SMALL HIGH YEH BARREE WITH TWO DOTS BELOW", 19930 direction="nsm", 19931 linebreak="cm", 19932 unicodeslot=0x8CB, 19933 }, 19934 [0x8CC]={ 19935 category="mn", 19936 combining=0xE6, 19937 description="ARABIC SMALL HIGH WORD SAH", 19938 direction="nsm", 19939 linebreak="cm", 19940 unicodeslot=0x8CC, 19941 }, 19942 [0x8CD]={ 19943 category="mn", 19944 combining=0xE6, 19945 description="ARABIC SMALL HIGH ZAH", 19946 direction="nsm", 19947 linebreak="cm", 19948 unicodeslot=0x8CD, 19949 }, 19950 [0x8CE]={ 19951 category="mn", 19952 combining=0xE6, 19953 description="ARABIC LARGE ROUND DOT ABOVE", 19954 direction="nsm", 19955 linebreak="cm", 19956 unicodeslot=0x8CE, 19957 }, 19958 [0x8CF]={ 19959 category="mn", 19960 combining=0xDC, 19961 description="ARABIC LARGE ROUND DOT BELOW", 19962 direction="nsm", 19963 linebreak="cm", 19964 unicodeslot=0x8CF, 19965 }, 19966 [0x8D0]={ 19967 category="mn", 19968 combining=0xDC, 19969 description="ARABIC SUKUN BELOW", 19970 direction="nsm", 19971 linebreak="cm", 19972 unicodeslot=0x8D0, 19973 }, 19974 [0x8D1]={ 19975 category="mn", 19976 combining=0xDC, 19977 description="ARABIC LARGE CIRCLE BELOW", 19978 direction="nsm", 19979 linebreak="cm", 19980 unicodeslot=0x8D1, 19981 }, 19982 [0x8D2]={ 19983 category="mn", 19984 combining=0xDC, 19985 description="ARABIC LARGE ROUND DOT INSIDE CIRCLE BELOW", 19986 direction="nsm", 19987 linebreak="cm", 19988 unicodeslot=0x8D2, 19989 }, 19990 [0x8D3]={ 19991 category="mn", 19992 combining=0xDC, 19993 description="ARABIC SMALL LOW WAW", 19994 direction="nsm", 19995 linebreak="cm", 19996 unicodeslot=0x8D3, 19997 }, 19998 [0x8D4]={ 19999 category="mn", 20000 combining=0xE6, 20001 contextname="arabichighrubc", 20002 description="ARABIC SMALL HIGH WORD AR-RUB", 20003 direction="nsm", 20004 linebreak="cm", 20005 unicodeslot=0x8D4, 20006 }, 20007 [0x8D5]={ 20008 category="mn", 20009 combining=0xE6, 20010 contextname="arabichighsad", 20011 description="ARABIC SMALL HIGH SAD", 20012 direction="nsm", 20013 linebreak="cm", 20014 unicodeslot=0x8D5, 20015 }, 20016 [0x8D6]={ 20017 category="mn", 20018 combining=0xE6, 20019 contextname="arabichighain", 20020 description="ARABIC SMALL HIGH AIN", 20021 direction="nsm", 20022 linebreak="cm", 20023 unicodeslot=0x8D6, 20024 }, 20025 [0x8D7]={ 20026 category="mn", 20027 combining=0xE6, 20028 contextname="arabichighqaf", 20029 description="ARABIC SMALL HIGH QAF", 20030 direction="nsm", 20031 linebreak="cm", 20032 unicodeslot=0x8D7, 20033 }, 20034 [0x8D8]={ 20035 category="mn", 20036 combining=0xE6, 20037 contextname="arabichighnoonkasra", 20038 description="ARABIC SMALL HIGH NOON WITH KASRA", 20039 direction="nsm", 20040 linebreak="cm", 20041 unicodeslot=0x8D8, 20042 }, 20043 [0x8D9]={ 20044 category="mn", 20045 combining=0xE6, 20046 contextname="arabiclownoonkasra", 20047 description="ARABIC SMALL LOW NOON WITH KASRA", 20048 direction="nsm", 20049 linebreak="cm", 20050 unicodeslot=0x8D9, 20051 }, 20052 [0x8DA]={ 20053 category="mn", 20054 combining=0xE6, 20055 contextname="arabichighthalatha", 20056 description="ARABIC SMALL HIGH WORD ATH-THALATHA", 20057 direction="nsm", 20058 linebreak="cm", 20059 unicodeslot=0x8DA, 20060 }, 20061 [0x8DB]={ 20062 category="mn", 20063 combining=0xE6, 20064 contextname="arabichighsajda", 20065 description="ARABIC SMALL HIGH WORD AS-SAJDA", 20066 direction="nsm", 20067 linebreak="cm", 20068 unicodeslot=0x8DB, 20069 }, 20070 [0x8DC]={ 20071 category="mn", 20072 combining=0xE6, 20073 contextname="arabichighnisf", 20074 description="ARABIC SMALL HIGH WORD AN-NISF", 20075 direction="nsm", 20076 linebreak="cm", 20077 unicodeslot=0x8DC, 20078 }, 20079 [0x8DD]={ 20080 category="mn", 20081 combining=0xE6, 20082 contextname="arabichighsakta", 20083 description="ARABIC SMALL HIGH WORD SAKTA", 20084 direction="nsm", 20085 linebreak="cm", 20086 unicodeslot=0x8DD, 20087 }, 20088 [0x8DE]={ 20089 category="mn", 20090 combining=0xE6, 20091 contextname="arabichighqif", 20092 description="ARABIC SMALL HIGH WORD QIF", 20093 direction="nsm", 20094 linebreak="cm", 20095 unicodeslot=0x8DE, 20096 }, 20097 [0x8DF]={ 20098 category="mn", 20099 combining=0xE6, 20100 contextname="arabichighwaqf", 20101 description="ARABIC SMALL HIGH WORD WAQFA", 20102 direction="nsm", 20103 linebreak="cm", 20104 unicodeslot=0x8DF, 20105 }, 20106 [0x8E0]={ 20107 category="mn", 20108 combining=0xE6, 20109 contextname="arabichighfootnotemarker", 20110 description="ARABIC SMALL HIGH FOOTNOTE MARKER", 20111 direction="nsm", 20112 linebreak="cm", 20113 unicodeslot=0x8E0, 20114 }, 20115 [0x8E1]={ 20116 category="mn", 20117 combining=0xE6, 20118 contextname="arabichighsmallsafha", 20119 description="ARABIC SMALL HIGH SIGN SAFHA", 20120 direction="nsm", 20121 linebreak="cm", 20122 unicodeslot=0x8E1, 20123 }, 20124 [0x8E2]={ 20125 arabic="u", 20126 category="cf", 20127 contextname="arabicdisputedendofayah", 20128 description="ARABIC DISPUTED END OF AYAH", 20129 direction="an", 20130 linebreak="nu", 20131 unicodeslot=0x8E2, 20132 }, 20133 [0x8E3]={ 20134 category="mn", 20135 combining=0xDC, 20136 description="ARABIC TURNED DAMMA BELOW", 20137 direction="nsm", 20138 linebreak="cm", 20139 unicodeslot=0x8E3, 20140 }, 20141 [0x8E4]={ 20142 category="mn", 20143 combining=0xE6, 20144 description="ARABIC CURLY FATHA", 20145 direction="nsm", 20146 linebreak="cm", 20147 unicodeslot=0x8E4, 20148 }, 20149 [0x8E5]={ 20150 category="mn", 20151 combining=0xE6, 20152 description="ARABIC CURLY DAMMA", 20153 direction="nsm", 20154 linebreak="cm", 20155 unicodeslot=0x8E5, 20156 }, 20157 [0x8E6]={ 20158 category="mn", 20159 combining=0xDC, 20160 description="ARABIC CURLY KASRA", 20161 direction="nsm", 20162 linebreak="cm", 20163 unicodeslot=0x8E6, 20164 }, 20165 [0x8E7]={ 20166 category="mn", 20167 combining=0xE6, 20168 description="ARABIC CURLY FATHATAN", 20169 direction="nsm", 20170 linebreak="cm", 20171 unicodeslot=0x8E7, 20172 }, 20173 [0x8E8]={ 20174 category="mn", 20175 combining=0xE6, 20176 description="ARABIC CURLY DAMMATAN", 20177 direction="nsm", 20178 linebreak="cm", 20179 unicodeslot=0x8E8, 20180 }, 20181 [0x8E9]={ 20182 category="mn", 20183 combining=0xDC, 20184 description="ARABIC CURLY KASRATAN", 20185 direction="nsm", 20186 linebreak="cm", 20187 unicodeslot=0x8E9, 20188 }, 20189 [0x8EA]={ 20190 category="mn", 20191 combining=0xE6, 20192 description="ARABIC TONE ONE DOT ABOVE", 20193 direction="nsm", 20194 linebreak="cm", 20195 unicodeslot=0x8EA, 20196 }, 20197 [0x8EB]={ 20198 category="mn", 20199 combining=0xE6, 20200 description="ARABIC TONE TWO DOTS ABOVE", 20201 direction="nsm", 20202 linebreak="cm", 20203 unicodeslot=0x8EB, 20204 }, 20205 [0x8EC]={ 20206 category="mn", 20207 combining=0xE6, 20208 description="ARABIC TONE LOOP ABOVE", 20209 direction="nsm", 20210 linebreak="cm", 20211 unicodeslot=0x8EC, 20212 }, 20213 [0x8ED]={ 20214 category="mn", 20215 combining=0xDC, 20216 description="ARABIC TONE ONE DOT BELOW", 20217 direction="nsm", 20218 linebreak="cm", 20219 unicodeslot=0x8ED, 20220 }, 20221 [0x8EE]={ 20222 category="mn", 20223 combining=0xDC, 20224 description="ARABIC TONE TWO DOTS BELOW", 20225 direction="nsm", 20226 linebreak="cm", 20227 unicodeslot=0x8EE, 20228 }, 20229 [0x8EF]={ 20230 category="mn", 20231 combining=0xDC, 20232 description="ARABIC TONE LOOP BELOW", 20233 direction="nsm", 20234 linebreak="cm", 20235 unicodeslot=0x8EF, 20236 }, 20237 [0x8F0]={ 20238 category="mn", 20239 combining=0x1B, 20240 description="ARABIC OPEN FATHATAN", 20241 direction="nsm", 20242 linebreak="cm", 20243 unicodeslot=0x8F0, 20244 }, 20245 [0x8F1]={ 20246 category="mn", 20247 combining=0x1C, 20248 description="ARABIC OPEN DAMMATAN", 20249 direction="nsm", 20250 linebreak="cm", 20251 unicodeslot=0x8F1, 20252 }, 20253 [0x8F2]={ 20254 category="mn", 20255 combining=0x1D, 20256 description="ARABIC OPEN KASRATAN", 20257 direction="nsm", 20258 linebreak="cm", 20259 unicodeslot=0x8F2, 20260 }, 20261 [0x8F3]={ 20262 category="mn", 20263 combining=0xE6, 20264 description="ARABIC SMALL HIGH WAW", 20265 direction="nsm", 20266 linebreak="cm", 20267 unicodeslot=0x8F3, 20268 }, 20269 [0x8F4]={ 20270 category="mn", 20271 combining=0xE6, 20272 description="ARABIC FATHA WITH RING", 20273 direction="nsm", 20274 linebreak="cm", 20275 unicodeslot=0x8F4, 20276 }, 20277 [0x8F5]={ 20278 category="mn", 20279 combining=0xE6, 20280 description="ARABIC FATHA WITH DOT ABOVE", 20281 direction="nsm", 20282 linebreak="cm", 20283 unicodeslot=0x8F5, 20284 }, 20285 [0x8F6]={ 20286 category="mn", 20287 combining=0xDC, 20288 description="ARABIC KASRA WITH DOT BELOW", 20289 direction="nsm", 20290 linebreak="cm", 20291 unicodeslot=0x8F6, 20292 }, 20293 [0x8F7]={ 20294 category="mn", 20295 combining=0xE6, 20296 description="ARABIC LEFT ARROWHEAD ABOVE", 20297 direction="nsm", 20298 linebreak="cm", 20299 unicodeslot=0x8F7, 20300 }, 20301 [0x8F8]={ 20302 category="mn", 20303 combining=0xE6, 20304 description="ARABIC RIGHT ARROWHEAD ABOVE", 20305 direction="nsm", 20306 linebreak="cm", 20307 unicodeslot=0x8F8, 20308 }, 20309 [0x8F9]={ 20310 category="mn", 20311 combining=0xDC, 20312 description="ARABIC LEFT ARROWHEAD BELOW", 20313 direction="nsm", 20314 linebreak="cm", 20315 unicodeslot=0x8F9, 20316 }, 20317 [0x8FA]={ 20318 category="mn", 20319 combining=0xDC, 20320 description="ARABIC RIGHT ARROWHEAD BELOW", 20321 direction="nsm", 20322 linebreak="cm", 20323 unicodeslot=0x8FA, 20324 }, 20325 [0x8FB]={ 20326 category="mn", 20327 combining=0xE6, 20328 description="ARABIC DOUBLE RIGHT ARROWHEAD ABOVE", 20329 direction="nsm", 20330 linebreak="cm", 20331 unicodeslot=0x8FB, 20332 }, 20333 [0x8FC]={ 20334 category="mn", 20335 combining=0xE6, 20336 description="ARABIC DOUBLE RIGHT ARROWHEAD ABOVE WITH DOT", 20337 direction="nsm", 20338 linebreak="cm", 20339 unicodeslot=0x8FC, 20340 }, 20341 [0x8FD]={ 20342 category="mn", 20343 combining=0xE6, 20344 description="ARABIC RIGHT ARROWHEAD ABOVE WITH DOT", 20345 direction="nsm", 20346 linebreak="cm", 20347 unicodeslot=0x8FD, 20348 }, 20349 [0x8FE]={ 20350 category="mn", 20351 combining=0xE6, 20352 description="ARABIC DAMMA WITH DOT", 20353 direction="nsm", 20354 linebreak="cm", 20355 unicodeslot=0x8FE, 20356 }, 20357 [0x8FF]={ 20358 category="mn", 20359 combining=0xE6, 20360 description="ARABIC MARK SIDEWAYS NOON GHUNNA", 20361 direction="nsm", 20362 linebreak="cm", 20363 unicodeslot=0x8FF, 20364 }, 20365 [0x900]={ 20366 category="mn", 20367 description="DEVANAGARI SIGN INVERTED CANDRABINDU", 20368 direction="nsm", 20369 indic="m", 20370 indicmark="t", 20371 linebreak="cm", 20372 unicodeslot=0x900, 20373 }, 20374 [0x901]={ 20375 category="mn", 20376 description="DEVANAGARI SIGN CANDRABINDU", 20377 direction="nsm", 20378 indic="m", 20379 indicmark="t", 20380 linebreak="cm", 20381 synonyms={ "devanagari anunasika" }, 20382 unicodeslot=0x901, 20383 }, 20384 [0x902]={ 20385 category="mn", 20386 description="DEVANAGARI SIGN ANUSVARA", 20387 direction="nsm", 20388 indic="m", 20389 indicmark="t", 20390 linebreak="cm", 20391 synonyms={ "devanagari bindu" }, 20392 unicodeslot=0x902, 20393 }, 20394 [0x903]={ 20395 category="mc", 20396 description="DEVANAGARI SIGN VISARGA", 20397 direction="l", 20398 indic="m", 20399 indicmark="r", 20400 linebreak="cm", 20401 unicodeslot=0x903, 20402 }, 20403 [0x904]={ 20404 category="lo", 20405 description="DEVANAGARI LETTER SHORT A", 20406 direction="l", 20407 indic="i", 20408 linebreak="al", 20409 unicodeslot=0x904, 20410 }, 20411 [0x905]={ 20412 category="lo", 20413 description="DEVANAGARI LETTER A", 20414 direction="l", 20415 indic="i", 20416 linebreak="al", 20417 unicodeslot=0x905, 20418 }, 20419 [0x906]={ 20420 category="lo", 20421 description="DEVANAGARI LETTER AA", 20422 direction="l", 20423 indic="i", 20424 linebreak="al", 20425 unicodeslot=0x906, 20426 }, 20427 [0x907]={ 20428 category="lo", 20429 description="DEVANAGARI LETTER I", 20430 direction="l", 20431 indic="i", 20432 linebreak="al", 20433 unicodeslot=0x907, 20434 }, 20435 [0x908]={ 20436 category="lo", 20437 description="DEVANAGARI LETTER II", 20438 direction="l", 20439 indic="i", 20440 linebreak="al", 20441 unicodeslot=0x908, 20442 }, 20443 [0x909]={ 20444 category="lo", 20445 description="DEVANAGARI LETTER U", 20446 direction="l", 20447 indic="i", 20448 linebreak="al", 20449 unicodeslot=0x909, 20450 }, 20451 [0x90A]={ 20452 category="lo", 20453 description="DEVANAGARI LETTER UU", 20454 direction="l", 20455 indic="i", 20456 linebreak="al", 20457 unicodeslot=0x90A, 20458 }, 20459 [0x90B]={ 20460 category="lo", 20461 description="DEVANAGARI LETTER VOCALIC R", 20462 direction="l", 20463 indic="i", 20464 linebreak="al", 20465 unicodeslot=0x90B, 20466 }, 20467 [0x90C]={ 20468 category="lo", 20469 description="DEVANAGARI LETTER VOCALIC L", 20470 direction="l", 20471 indic="i", 20472 linebreak="al", 20473 unicodeslot=0x90C, 20474 }, 20475 [0x90D]={ 20476 category="lo", 20477 description="DEVANAGARI LETTER CANDRA E", 20478 direction="l", 20479 indic="i", 20480 linebreak="al", 20481 unicodeslot=0x90D, 20482 }, 20483 [0x90E]={ 20484 category="lo", 20485 description="DEVANAGARI LETTER SHORT E", 20486 direction="l", 20487 indic="i", 20488 linebreak="al", 20489 unicodeslot=0x90E, 20490 }, 20491 [0x90F]={ 20492 category="lo", 20493 description="DEVANAGARI LETTER E", 20494 direction="l", 20495 indic="i", 20496 linebreak="al", 20497 unicodeslot=0x90F, 20498 }, 20499 [0x910]={ 20500 category="lo", 20501 description="DEVANAGARI LETTER AI", 20502 direction="l", 20503 indic="i", 20504 linebreak="al", 20505 unicodeslot=0x910, 20506 }, 20507 [0x911]={ 20508 category="lo", 20509 description="DEVANAGARI LETTER CANDRA O", 20510 direction="l", 20511 indic="i", 20512 linebreak="al", 20513 unicodeslot=0x911, 20514 }, 20515 [0x912]={ 20516 category="lo", 20517 description="DEVANAGARI LETTER SHORT O", 20518 direction="l", 20519 indic="i", 20520 linebreak="al", 20521 unicodeslot=0x912, 20522 }, 20523 [0x913]={ 20524 category="lo", 20525 description="DEVANAGARI LETTER O", 20526 direction="l", 20527 indic="i", 20528 linebreak="al", 20529 unicodeslot=0x913, 20530 }, 20531 [0x914]={ 20532 category="lo", 20533 description="DEVANAGARI LETTER AU", 20534 direction="l", 20535 indic="i", 20536 linebreak="al", 20537 unicodeslot=0x914, 20538 }, 20539 [0x915]={ 20540 category="lo", 20541 description="DEVANAGARI LETTER KA", 20542 direction="l", 20543 indic="c", 20544 linebreak="al", 20545 unicodeslot=0x915, 20546 }, 20547 [0x916]={ 20548 category="lo", 20549 description="DEVANAGARI LETTER KHA", 20550 direction="l", 20551 indic="c", 20552 linebreak="al", 20553 unicodeslot=0x916, 20554 }, 20555 [0x917]={ 20556 category="lo", 20557 description="DEVANAGARI LETTER GA", 20558 direction="l", 20559 indic="c", 20560 linebreak="al", 20561 unicodeslot=0x917, 20562 }, 20563 [0x918]={ 20564 category="lo", 20565 description="DEVANAGARI LETTER GHA", 20566 direction="l", 20567 indic="c", 20568 linebreak="al", 20569 unicodeslot=0x918, 20570 }, 20571 [0x919]={ 20572 category="lo", 20573 description="DEVANAGARI LETTER NGA", 20574 direction="l", 20575 indic="c", 20576 linebreak="al", 20577 unicodeslot=0x919, 20578 }, 20579 [0x91A]={ 20580 category="lo", 20581 description="DEVANAGARI LETTER CA", 20582 direction="l", 20583 indic="c", 20584 linebreak="al", 20585 unicodeslot=0x91A, 20586 }, 20587 [0x91B]={ 20588 category="lo", 20589 description="DEVANAGARI LETTER CHA", 20590 direction="l", 20591 indic="c", 20592 linebreak="al", 20593 unicodeslot=0x91B, 20594 }, 20595 [0x91C]={ 20596 category="lo", 20597 description="DEVANAGARI LETTER JA", 20598 direction="l", 20599 indic="c", 20600 linebreak="al", 20601 unicodeslot=0x91C, 20602 }, 20603 [0x91D]={ 20604 category="lo", 20605 description="DEVANAGARI LETTER JHA", 20606 direction="l", 20607 indic="c", 20608 linebreak="al", 20609 unicodeslot=0x91D, 20610 }, 20611 [0x91E]={ 20612 category="lo", 20613 description="DEVANAGARI LETTER NYA", 20614 direction="l", 20615 indic="c", 20616 linebreak="al", 20617 unicodeslot=0x91E, 20618 }, 20619 [0x91F]={ 20620 category="lo", 20621 description="DEVANAGARI LETTER TTA", 20622 direction="l", 20623 indic="c", 20624 linebreak="al", 20625 unicodeslot=0x91F, 20626 }, 20627 [0x920]={ 20628 category="lo", 20629 description="DEVANAGARI LETTER TTHA", 20630 direction="l", 20631 indic="c", 20632 linebreak="al", 20633 unicodeslot=0x920, 20634 }, 20635 [0x921]={ 20636 category="lo", 20637 description="DEVANAGARI LETTER DDA", 20638 direction="l", 20639 indic="c", 20640 linebreak="al", 20641 unicodeslot=0x921, 20642 }, 20643 [0x922]={ 20644 category="lo", 20645 description="DEVANAGARI LETTER DDHA", 20646 direction="l", 20647 indic="c", 20648 linebreak="al", 20649 unicodeslot=0x922, 20650 }, 20651 [0x923]={ 20652 category="lo", 20653 description="DEVANAGARI LETTER NNA", 20654 direction="l", 20655 indic="c", 20656 linebreak="al", 20657 unicodeslot=0x923, 20658 }, 20659 [0x924]={ 20660 category="lo", 20661 description="DEVANAGARI LETTER TA", 20662 direction="l", 20663 indic="c", 20664 linebreak="al", 20665 unicodeslot=0x924, 20666 }, 20667 [0x925]={ 20668 category="lo", 20669 description="DEVANAGARI LETTER THA", 20670 direction="l", 20671 indic="c", 20672 linebreak="al", 20673 unicodeslot=0x925, 20674 }, 20675 [0x926]={ 20676 category="lo", 20677 description="DEVANAGARI LETTER DA", 20678 direction="l", 20679 indic="c", 20680 linebreak="al", 20681 unicodeslot=0x926, 20682 }, 20683 [0x927]={ 20684 category="lo", 20685 description="DEVANAGARI LETTER DHA", 20686 direction="l", 20687 indic="c", 20688 linebreak="al", 20689 unicodeslot=0x927, 20690 }, 20691 [0x928]={ 20692 category="lo", 20693 description="DEVANAGARI LETTER NA", 20694 direction="l", 20695 indic="c", 20696 linebreak="al", 20697 unicodeslot=0x928, 20698 }, 20699 [0x929]={ 20700 category="lo", 20701 description="DEVANAGARI LETTER NNNA", 20702 direction="l", 20703 indic="c", 20704 linebreak="al", 20705 specials={ "char", 0x928, 0x93C }, 20706 unicodeslot=0x929, 20707 }, 20708 [0x92A]={ 20709 category="lo", 20710 description="DEVANAGARI LETTER PA", 20711 direction="l", 20712 indic="c", 20713 linebreak="al", 20714 unicodeslot=0x92A, 20715 }, 20716 [0x92B]={ 20717 category="lo", 20718 description="DEVANAGARI LETTER PHA", 20719 direction="l", 20720 indic="c", 20721 linebreak="al", 20722 unicodeslot=0x92B, 20723 }, 20724 [0x92C]={ 20725 category="lo", 20726 description="DEVANAGARI LETTER BA", 20727 direction="l", 20728 indic="c", 20729 linebreak="al", 20730 unicodeslot=0x92C, 20731 }, 20732 [0x92D]={ 20733 category="lo", 20734 description="DEVANAGARI LETTER BHA", 20735 direction="l", 20736 indic="c", 20737 linebreak="al", 20738 unicodeslot=0x92D, 20739 }, 20740 [0x92E]={ 20741 category="lo", 20742 description="DEVANAGARI LETTER MA", 20743 direction="l", 20744 indic="c", 20745 linebreak="al", 20746 unicodeslot=0x92E, 20747 }, 20748 [0x92F]={ 20749 category="lo", 20750 description="DEVANAGARI LETTER YA", 20751 direction="l", 20752 indic="c", 20753 linebreak="al", 20754 unicodeslot=0x92F, 20755 }, 20756 [0x930]={ 20757 category="lo", 20758 description="DEVANAGARI LETTER RA", 20759 direction="l", 20760 indic="c", 20761 indicclass="ra", 20762 indicorder="bp", 20763 linebreak="al", 20764 unicodeslot=0x930, 20765 }, 20766 [0x931]={ 20767 category="lo", 20768 description="DEVANAGARI LETTER RRA", 20769 direction="l", 20770 indic="c", 20771 linebreak="al", 20772 specials={ "char", 0x930, 0x93C }, 20773 unicodeslot=0x931, 20774 }, 20775 [0x932]={ 20776 category="lo", 20777 description="DEVANAGARI LETTER LA", 20778 direction="l", 20779 indic="c", 20780 linebreak="al", 20781 unicodeslot=0x932, 20782 }, 20783 [0x933]={ 20784 category="lo", 20785 description="DEVANAGARI LETTER LLA", 20786 direction="l", 20787 indic="c", 20788 linebreak="al", 20789 unicodeslot=0x933, 20790 }, 20791 [0x934]={ 20792 category="lo", 20793 description="DEVANAGARI LETTER LLLA", 20794 direction="l", 20795 indic="c", 20796 linebreak="al", 20797 specials={ "char", 0x933, 0x93C }, 20798 unicodeslot=0x934, 20799 }, 20800 [0x935]={ 20801 category="lo", 20802 description="DEVANAGARI LETTER VA", 20803 direction="l", 20804 indic="c", 20805 linebreak="al", 20806 unicodeslot=0x935, 20807 }, 20808 [0x936]={ 20809 category="lo", 20810 description="DEVANAGARI LETTER SHA", 20811 direction="l", 20812 indic="c", 20813 linebreak="al", 20814 unicodeslot=0x936, 20815 }, 20816 [0x937]={ 20817 category="lo", 20818 description="DEVANAGARI LETTER SSA", 20819 direction="l", 20820 indic="c", 20821 linebreak="al", 20822 unicodeslot=0x937, 20823 }, 20824 [0x938]={ 20825 category="lo", 20826 description="DEVANAGARI LETTER SA", 20827 direction="l", 20828 indic="c", 20829 linebreak="al", 20830 unicodeslot=0x938, 20831 }, 20832 [0x939]={ 20833 category="lo", 20834 description="DEVANAGARI LETTER HA", 20835 direction="l", 20836 indic="c", 20837 linebreak="al", 20838 unicodeslot=0x939, 20839 }, 20840 [0x93A]={ 20841 category="mn", 20842 description="DEVANAGARI VOWEL SIGN OE", 20843 direction="nsm", 20844 indic="d", 20845 indicmark="t", 20846 linebreak="cm", 20847 unicodeslot=0x93A, 20848 }, 20849 [0x93B]={ 20850 category="mc", 20851 description="DEVANAGARI VOWEL SIGN OOE", 20852 direction="l", 20853 indic="d", 20854 indicmark="r", 20855 linebreak="cm", 20856 unicodeslot=0x93B, 20857 }, 20858 [0x93C]={ 20859 category="mn", 20860 combining=0x7, 20861 description="DEVANAGARI SIGN NUKTA", 20862 direction="nsm", 20863 indic="o", 20864 indicclass="nukta", 20865 indicmark="b", 20866 linebreak="cm", 20867 unicodeslot=0x93C, 20868 }, 20869 [0x93D]={ 20870 category="lo", 20871 description="DEVANAGARI SIGN AVAGRAHA", 20872 direction="l", 20873 indic="o", 20874 linebreak="al", 20875 unicodeslot=0x93D, 20876 }, 20877 [0x93E]={ 20878 category="mc", 20879 description="DEVANAGARI VOWEL SIGN AA", 20880 direction="l", 20881 indic="d", 20882 indicmark="r", 20883 indicorder="as", 20884 linebreak="cm", 20885 unicodeslot=0x93E, 20886 }, 20887 [0x93F]={ 20888 category="mc", 20889 description="DEVANAGARI VOWEL SIGN I", 20890 direction="l", 20891 indic="d", 20892 indicmark="l", 20893 indicorder="bh", 20894 linebreak="cm", 20895 unicodeslot=0x93F, 20896 }, 20897 [0x940]={ 20898 category="mc", 20899 description="DEVANAGARI VOWEL SIGN II", 20900 direction="l", 20901 indic="d", 20902 indicmark="r", 20903 indicorder="as", 20904 linebreak="cm", 20905 unicodeslot=0x940, 20906 }, 20907 [0x941]={ 20908 category="mn", 20909 description="DEVANAGARI VOWEL SIGN U", 20910 direction="nsm", 20911 indic="d", 20912 indicmark="b", 20913 indicorder="as", 20914 linebreak="cm", 20915 unicodeslot=0x941, 20916 }, 20917 [0x942]={ 20918 category="mn", 20919 description="DEVANAGARI VOWEL SIGN UU", 20920 direction="nsm", 20921 indic="d", 20922 indicmark="b", 20923 indicorder="as", 20924 linebreak="cm", 20925 unicodeslot=0x942, 20926 }, 20927 [0x943]={ 20928 category="mn", 20929 description="DEVANAGARI VOWEL SIGN VOCALIC R", 20930 direction="nsm", 20931 indic="d", 20932 indicmark="b", 20933 indicorder="as", 20934 linebreak="cm", 20935 unicodeslot=0x943, 20936 }, 20937 [0x944]={ 20938 category="mn", 20939 description="DEVANAGARI VOWEL SIGN VOCALIC RR", 20940 direction="nsm", 20941 indic="d", 20942 indicmark="b", 20943 indicorder="as", 20944 linebreak="cm", 20945 unicodeslot=0x944, 20946 }, 20947 [0x945]={ 20948 category="mn", 20949 description="DEVANAGARI VOWEL SIGN CANDRA E", 20950 direction="nsm", 20951 indic="d", 20952 indicmark="t", 20953 indicorder="as", 20954 linebreak="cm", 20955 unicodeslot=0x945, 20956 }, 20957 [0x946]={ 20958 category="mn", 20959 description="DEVANAGARI VOWEL SIGN SHORT E", 20960 direction="nsm", 20961 indic="d", 20962 indicmark="t", 20963 indicorder="as", 20964 linebreak="cm", 20965 unicodeslot=0x946, 20966 }, 20967 [0x947]={ 20968 category="mn", 20969 description="DEVANAGARI VOWEL SIGN E", 20970 direction="nsm", 20971 indic="d", 20972 indicmark="t", 20973 indicorder="as", 20974 linebreak="cm", 20975 unicodeslot=0x947, 20976 }, 20977 [0x948]={ 20978 category="mn", 20979 description="DEVANAGARI VOWEL SIGN AI", 20980 direction="nsm", 20981 indic="d", 20982 indicmark="t", 20983 indicorder="as", 20984 linebreak="cm", 20985 unicodeslot=0x948, 20986 }, 20987 [0x949]={ 20988 category="mc", 20989 description="DEVANAGARI VOWEL SIGN CANDRA O", 20990 direction="l", 20991 indic="d", 20992 indicmark="r", 20993 indicorder="as", 20994 linebreak="cm", 20995 unicodeslot=0x949, 20996 }, 20997 [0x94A]={ 20998 category="mc", 20999 description="DEVANAGARI VOWEL SIGN SHORT O", 21000 direction="l", 21001 indic="d", 21002 indicmark="r", 21003 indicorder="as", 21004 linebreak="cm", 21005 unicodeslot=0x94A, 21006 }, 21007 [0x94B]={ 21008 category="mc", 21009 description="DEVANAGARI VOWEL SIGN O", 21010 direction="l", 21011 indic="d", 21012 indicmark="r", 21013 indicorder="as", 21014 linebreak="cm", 21015 unicodeslot=0x94B, 21016 }, 21017 [0x94C]={ 21018 category="mc", 21019 description="DEVANAGARI VOWEL SIGN AU", 21020 direction="l", 21021 indic="d", 21022 indicmark="r", 21023 indicorder="as", 21024 linebreak="cm", 21025 unicodeslot=0x94C, 21026 }, 21027 [0x94D]={ 21028 category="mn", 21029 combining=0x9, 21030 description="DEVANAGARI SIGN VIRAMA", 21031 direction="nsm", 21032 indic="o", 21033 indicclass="halant", 21034 indicmark="b", 21035 linebreak="cm", 21036 synonyms={ "halant" }, 21037 unicodeslot=0x94D, 21038 }, 21039 [0x94E]={ 21040 category="mc", 21041 description="DEVANAGARI VOWEL SIGN PRISHTHAMATRA E", 21042 direction="l", 21043 indic="d", 21044 indicmark="l", 21045 indicorder="bh", 21046 linebreak="cm", 21047 unicodeslot=0x94E, 21048 }, 21049 [0x94F]={ 21050 category="mc", 21051 description="DEVANAGARI VOWEL SIGN AW", 21052 direction="l", 21053 indic="d", 21054 indicmark="r", 21055 linebreak="cm", 21056 unicodeslot=0x94F, 21057 }, 21058 [0x950]={ 21059 category="lo", 21060 description="DEVANAGARI OM", 21061 direction="l", 21062 indic="o", 21063 linebreak="al", 21064 unicodeslot=0x950, 21065 }, 21066 [0x951]={ 21067 category="mn", 21068 combining=0xE6, 21069 description="DEVANAGARI STRESS SIGN UDATTA", 21070 direction="nsm", 21071 indic="s", 21072 indicmark="t", 21073 linebreak="cm", 21074 unicodeslot=0x951, 21075 }, 21076 [0x952]={ 21077 category="mn", 21078 combining=0xDC, 21079 description="DEVANAGARI STRESS SIGN ANUDATTA", 21080 direction="nsm", 21081 indic="s", 21082 indicclass="anudatta", 21083 indicmark="b", 21084 linebreak="cm", 21085 unicodeslot=0x952, 21086 }, 21087 [0x953]={ 21088 category="mn", 21089 combining=0xE6, 21090 description="DEVANAGARI GRAVE ACCENT", 21091 direction="nsm", 21092 indic="s", 21093 indicmark="t", 21094 linebreak="cm", 21095 unicodeslot=0x953, 21096 }, 21097 [0x954]={ 21098 category="mn", 21099 combining=0xE6, 21100 description="DEVANAGARI ACUTE ACCENT", 21101 direction="nsm", 21102 indic="s", 21103 indicmark="t", 21104 linebreak="cm", 21105 unicodeslot=0x954, 21106 }, 21107 [0x955]={ 21108 category="mn", 21109 description="DEVANAGARI VOWEL SIGN CANDRA LONG E", 21110 direction="nsm", 21111 indic="d", 21112 indicmark="t", 21113 linebreak="cm", 21114 unicodeslot=0x955, 21115 }, 21116 [0x956]={ 21117 category="mn", 21118 description="DEVANAGARI VOWEL SIGN UE", 21119 direction="nsm", 21120 indic="d", 21121 indicmark="b", 21122 linebreak="cm", 21123 unicodeslot=0x956, 21124 }, 21125 [0x957]={ 21126 category="mn", 21127 description="DEVANAGARI VOWEL SIGN UUE", 21128 direction="nsm", 21129 indic="d", 21130 indicmark="b", 21131 linebreak="cm", 21132 unicodeslot=0x957, 21133 }, 21134 [0x958]={ 21135 category="lo", 21136 description="DEVANAGARI LETTER QA", 21137 direction="l", 21138 indic="c", 21139 linebreak="al", 21140 specials={ "char", 0x915, 0x93C }, 21141 unicodeslot=0x958, 21142 }, 21143 [0x959]={ 21144 category="lo", 21145 description="DEVANAGARI LETTER KHHA", 21146 direction="l", 21147 indic="c", 21148 linebreak="al", 21149 specials={ "char", 0x916, 0x93C }, 21150 unicodeslot=0x959, 21151 }, 21152 [0x95A]={ 21153 category="lo", 21154 description="DEVANAGARI LETTER GHHA", 21155 direction="l", 21156 indic="c", 21157 linebreak="al", 21158 specials={ "char", 0x917, 0x93C }, 21159 unicodeslot=0x95A, 21160 }, 21161 [0x95B]={ 21162 category="lo", 21163 description="DEVANAGARI LETTER ZA", 21164 direction="l", 21165 indic="c", 21166 linebreak="al", 21167 specials={ "char", 0x91C, 0x93C }, 21168 unicodeslot=0x95B, 21169 }, 21170 [0x95C]={ 21171 category="lo", 21172 description="DEVANAGARI LETTER DDDHA", 21173 direction="l", 21174 indic="c", 21175 linebreak="al", 21176 specials={ "char", 0x921, 0x93C }, 21177 unicodeslot=0x95C, 21178 }, 21179 [0x95D]={ 21180 category="lo", 21181 description="DEVANAGARI LETTER RHA", 21182 direction="l", 21183 indic="c", 21184 linebreak="al", 21185 specials={ "char", 0x922, 0x93C }, 21186 unicodeslot=0x95D, 21187 }, 21188 [0x95E]={ 21189 category="lo", 21190 description="DEVANAGARI LETTER FA", 21191 direction="l", 21192 indic="c", 21193 linebreak="al", 21194 specials={ "char", 0x92B, 0x93C }, 21195 unicodeslot=0x95E, 21196 }, 21197 [0x95F]={ 21198 category="lo", 21199 description="DEVANAGARI LETTER YYA", 21200 direction="l", 21201 indic="c", 21202 linebreak="al", 21203 specials={ "char", 0x92F, 0x93C }, 21204 unicodeslot=0x95F, 21205 }, 21206 [0x960]={ 21207 category="lo", 21208 description="DEVANAGARI LETTER VOCALIC RR", 21209 direction="l", 21210 indic="i", 21211 linebreak="al", 21212 unicodeslot=0x960, 21213 }, 21214 [0x961]={ 21215 category="lo", 21216 description="DEVANAGARI LETTER VOCALIC LL", 21217 direction="l", 21218 indic="i", 21219 linebreak="al", 21220 unicodeslot=0x961, 21221 }, 21222 [0x962]={ 21223 category="mn", 21224 description="DEVANAGARI VOWEL SIGN VOCALIC L", 21225 direction="nsm", 21226 indic="d", 21227 indicmark="b", 21228 indicorder="as", 21229 linebreak="cm", 21230 unicodeslot=0x962, 21231 }, 21232 [0x963]={ 21233 category="mn", 21234 description="DEVANAGARI VOWEL SIGN VOCALIC LL", 21235 direction="nsm", 21236 indic="d", 21237 indicmark="b", 21238 indicorder="as", 21239 linebreak="cm", 21240 unicodeslot=0x963, 21241 }, 21242 [0x964]={ 21243 category="po", 21244 description="DEVANAGARI DANDA", 21245 direction="l", 21246 indic="o", 21247 linebreak="ba", 21248 synonyms={ "devanagari phrase separator", "devanagari purna viram" }, 21249 unicodeslot=0x964, 21250 }, 21251 [0x965]={ 21252 category="po", 21253 description="DEVANAGARI DOUBLE DANDA", 21254 direction="l", 21255 indic="o", 21256 linebreak="ba", 21257 synonyms={ "devanagari deergh viram" }, 21258 unicodeslot=0x965, 21259 }, 21260 [0x966]={ 21261 category="nd", 21262 description="DEVANAGARI DIGIT ZERO", 21263 direction="l", 21264 indic="o", 21265 linebreak="nu", 21266 unicodeslot=0x966, 21267 }, 21268 [0x967]={ 21269 category="nd", 21270 description="DEVANAGARI DIGIT ONE", 21271 direction="l", 21272 indic="o", 21273 linebreak="nu", 21274 unicodeslot=0x967, 21275 }, 21276 [0x968]={ 21277 category="nd", 21278 description="DEVANAGARI DIGIT TWO", 21279 direction="l", 21280 indic="o", 21281 linebreak="nu", 21282 unicodeslot=0x968, 21283 }, 21284 [0x969]={ 21285 category="nd", 21286 description="DEVANAGARI DIGIT THREE", 21287 direction="l", 21288 indic="o", 21289 linebreak="nu", 21290 unicodeslot=0x969, 21291 }, 21292 [0x96A]={ 21293 category="nd", 21294 description="DEVANAGARI DIGIT FOUR", 21295 direction="l", 21296 indic="o", 21297 linebreak="nu", 21298 unicodeslot=0x96A, 21299 }, 21300 [0x96B]={ 21301 category="nd", 21302 description="DEVANAGARI DIGIT FIVE", 21303 direction="l", 21304 indic="o", 21305 linebreak="nu", 21306 unicodeslot=0x96B, 21307 }, 21308 [0x96C]={ 21309 category="nd", 21310 description="DEVANAGARI DIGIT SIX", 21311 direction="l", 21312 indic="o", 21313 linebreak="nu", 21314 unicodeslot=0x96C, 21315 }, 21316 [0x96D]={ 21317 category="nd", 21318 description="DEVANAGARI DIGIT SEVEN", 21319 direction="l", 21320 indic="o", 21321 linebreak="nu", 21322 unicodeslot=0x96D, 21323 }, 21324 [0x96E]={ 21325 category="nd", 21326 description="DEVANAGARI DIGIT EIGHT", 21327 direction="l", 21328 indic="o", 21329 linebreak="nu", 21330 unicodeslot=0x96E, 21331 }, 21332 [0x96F]={ 21333 category="nd", 21334 description="DEVANAGARI DIGIT NINE", 21335 direction="l", 21336 indic="o", 21337 linebreak="nu", 21338 unicodeslot=0x96F, 21339 }, 21340 [0x970]={ 21341 category="po", 21342 description="DEVANAGARI ABBREVIATION SIGN", 21343 direction="l", 21344 indic="o", 21345 linebreak="al", 21346 unicodeslot=0x970, 21347 }, 21348 [0x971]={ 21349 category="lm", 21350 description="DEVANAGARI SIGN HIGH SPACING DOT", 21351 direction="l", 21352 indic="o", 21353 linebreak="al", 21354 unicodeslot=0x971, 21355 }, 21356 [0x972]={ 21357 category="lo", 21358 description="DEVANAGARI LETTER CANDRA A", 21359 direction="l", 21360 indic="i", 21361 linebreak="al", 21362 unicodeslot=0x972, 21363 }, 21364 [0x973]={ 21365 category="lo", 21366 description="DEVANAGARI LETTER OE", 21367 direction="l", 21368 indic="i", 21369 linebreak="al", 21370 unicodeslot=0x973, 21371 }, 21372 [0x974]={ 21373 category="lo", 21374 description="DEVANAGARI LETTER OOE", 21375 direction="l", 21376 indic="i", 21377 linebreak="al", 21378 unicodeslot=0x974, 21379 }, 21380 [0x975]={ 21381 category="lo", 21382 description="DEVANAGARI LETTER AW", 21383 direction="l", 21384 indic="i", 21385 linebreak="al", 21386 unicodeslot=0x975, 21387 }, 21388 [0x976]={ 21389 category="lo", 21390 description="DEVANAGARI LETTER UE", 21391 direction="l", 21392 indic="i", 21393 linebreak="al", 21394 unicodeslot=0x976, 21395 }, 21396 [0x977]={ 21397 category="lo", 21398 description="DEVANAGARI LETTER UUE", 21399 direction="l", 21400 indic="i", 21401 linebreak="al", 21402 unicodeslot=0x977, 21403 }, 21404 [0x978]={ 21405 category="lo", 21406 description="DEVANAGARI LETTER MARWARI DDA", 21407 direction="l", 21408 indic="c", 21409 linebreak="al", 21410 unicodeslot=0x978, 21411 }, 21412 [0x979]={ 21413 category="lo", 21414 description="DEVANAGARI LETTER ZHA", 21415 direction="l", 21416 indic="c", 21417 linebreak="al", 21418 unicodeslot=0x979, 21419 }, 21420 [0x97A]={ 21421 category="lo", 21422 description="DEVANAGARI LETTER HEAVY YA", 21423 direction="l", 21424 indic="c", 21425 linebreak="al", 21426 unicodeslot=0x97A, 21427 }, 21428 [0x97B]={ 21429 category="lo", 21430 description="DEVANAGARI LETTER GGA", 21431 direction="l", 21432 indic="o", 21433 linebreak="al", 21434 unicodeslot=0x97B, 21435 }, 21436 [0x97C]={ 21437 category="lo", 21438 description="DEVANAGARI LETTER JJA", 21439 direction="l", 21440 indic="o", 21441 linebreak="al", 21442 unicodeslot=0x97C, 21443 }, 21444 [0x97D]={ 21445 category="lo", 21446 description="DEVANAGARI LETTER GLOTTAL STOP", 21447 direction="l", 21448 indic="o", 21449 linebreak="al", 21450 unicodeslot=0x97D, 21451 }, 21452 [0x97E]={ 21453 category="lo", 21454 description="DEVANAGARI LETTER DDDA", 21455 direction="l", 21456 indic="o", 21457 linebreak="al", 21458 unicodeslot=0x97E, 21459 }, 21460 [0x97F]={ 21461 category="lo", 21462 description="DEVANAGARI LETTER BBA", 21463 direction="l", 21464 indic="o", 21465 linebreak="al", 21466 unicodeslot=0x97F, 21467 }, 21468 [0x980]={ 21469 category="lo", 21470 description="BENGALI ANJI", 21471 direction="l", 21472 indic="o", 21473 linebreak="al", 21474 unicodeslot=0x980, 21475 }, 21476 [0x981]={ 21477 category="mn", 21478 description="BENGALI SIGN CANDRABINDU", 21479 direction="nsm", 21480 indic="m", 21481 indicorder="ap", 21482 linebreak="cm", 21483 unicodeslot=0x981, 21484 }, 21485 [0x982]={ 21486 category="mc", 21487 description="BENGALI SIGN ANUSVARA", 21488 direction="l", 21489 indic="o", 21490 linebreak="cm", 21491 unicodeslot=0x982, 21492 }, 21493 [0x983]={ 21494 category="mc", 21495 description="BENGALI SIGN VISARGA", 21496 direction="l", 21497 indic="o", 21498 linebreak="cm", 21499 unicodeslot=0x983, 21500 }, 21501 [0x985]={ 21502 category="lo", 21503 description="BENGALI LETTER A", 21504 direction="l", 21505 indic="i", 21506 linebreak="al", 21507 unicodeslot=0x985, 21508 }, 21509 [0x986]={ 21510 category="lo", 21511 description="BENGALI LETTER AA", 21512 direction="l", 21513 indic="i", 21514 linebreak="al", 21515 unicodeslot=0x986, 21516 }, 21517 [0x987]={ 21518 category="lo", 21519 description="BENGALI LETTER I", 21520 direction="l", 21521 indic="i", 21522 linebreak="al", 21523 unicodeslot=0x987, 21524 }, 21525 [0x988]={ 21526 category="lo", 21527 description="BENGALI LETTER II", 21528 direction="l", 21529 indic="i", 21530 linebreak="al", 21531 unicodeslot=0x988, 21532 }, 21533 [0x989]={ 21534 category="lo", 21535 description="BENGALI LETTER U", 21536 direction="l", 21537 indic="i", 21538 linebreak="al", 21539 unicodeslot=0x989, 21540 }, 21541 [0x98A]={ 21542 category="lo", 21543 description="BENGALI LETTER UU", 21544 direction="l", 21545 indic="i", 21546 linebreak="al", 21547 unicodeslot=0x98A, 21548 }, 21549 [0x98B]={ 21550 category="lo", 21551 description="BENGALI LETTER VOCALIC R", 21552 direction="l", 21553 indic="i", 21554 linebreak="al", 21555 unicodeslot=0x98B, 21556 }, 21557 [0x98C]={ 21558 category="lo", 21559 description="BENGALI LETTER VOCALIC L", 21560 direction="l", 21561 indic="i", 21562 linebreak="al", 21563 unicodeslot=0x98C, 21564 }, 21565 [0x98F]={ 21566 category="lo", 21567 description="BENGALI LETTER E", 21568 direction="l", 21569 indic="i", 21570 linebreak="al", 21571 unicodeslot=0x98F, 21572 }, 21573 [0x990]={ 21574 category="lo", 21575 description="BENGALI LETTER AI", 21576 direction="l", 21577 indic="i", 21578 linebreak="al", 21579 unicodeslot=0x990, 21580 }, 21581 [0x993]={ 21582 category="lo", 21583 description="BENGALI LETTER O", 21584 direction="l", 21585 indic="i", 21586 linebreak="al", 21587 unicodeslot=0x993, 21588 }, 21589 [0x994]={ 21590 category="lo", 21591 description="BENGALI LETTER AU", 21592 direction="l", 21593 indic="i", 21594 linebreak="al", 21595 unicodeslot=0x994, 21596 }, 21597 [0x995]={ 21598 category="lo", 21599 description="BENGALI LETTER KA", 21600 direction="l", 21601 indic="c", 21602 linebreak="al", 21603 unicodeslot=0x995, 21604 }, 21605 [0x996]={ 21606 category="lo", 21607 description="BENGALI LETTER KHA", 21608 direction="l", 21609 indic="c", 21610 linebreak="al", 21611 unicodeslot=0x996, 21612 }, 21613 [0x997]={ 21614 category="lo", 21615 description="BENGALI LETTER GA", 21616 direction="l", 21617 indic="c", 21618 linebreak="al", 21619 unicodeslot=0x997, 21620 }, 21621 [0x998]={ 21622 category="lo", 21623 description="BENGALI LETTER GHA", 21624 direction="l", 21625 indic="c", 21626 linebreak="al", 21627 unicodeslot=0x998, 21628 }, 21629 [0x999]={ 21630 category="lo", 21631 description="BENGALI LETTER NGA", 21632 direction="l", 21633 indic="c", 21634 linebreak="al", 21635 unicodeslot=0x999, 21636 }, 21637 [0x99A]={ 21638 category="lo", 21639 description="BENGALI LETTER CA", 21640 direction="l", 21641 indic="c", 21642 linebreak="al", 21643 unicodeslot=0x99A, 21644 }, 21645 [0x99B]={ 21646 category="lo", 21647 description="BENGALI LETTER CHA", 21648 direction="l", 21649 indic="c", 21650 linebreak="al", 21651 unicodeslot=0x99B, 21652 }, 21653 [0x99C]={ 21654 category="lo", 21655 description="BENGALI LETTER JA", 21656 direction="l", 21657 indic="c", 21658 linebreak="al", 21659 unicodeslot=0x99C, 21660 }, 21661 [0x99D]={ 21662 category="lo", 21663 description="BENGALI LETTER JHA", 21664 direction="l", 21665 indic="c", 21666 linebreak="al", 21667 unicodeslot=0x99D, 21668 }, 21669 [0x99E]={ 21670 category="lo", 21671 description="BENGALI LETTER NYA", 21672 direction="l", 21673 indic="c", 21674 linebreak="al", 21675 unicodeslot=0x99E, 21676 }, 21677 [0x99F]={ 21678 category="lo", 21679 description="BENGALI LETTER TTA", 21680 direction="l", 21681 indic="c", 21682 linebreak="al", 21683 unicodeslot=0x99F, 21684 }, 21685 [0x9A0]={ 21686 category="lo", 21687 description="BENGALI LETTER TTHA", 21688 direction="l", 21689 indic="c", 21690 linebreak="al", 21691 unicodeslot=0x9A0, 21692 }, 21693 [0x9A1]={ 21694 category="lo", 21695 description="BENGALI LETTER DDA", 21696 direction="l", 21697 indic="c", 21698 linebreak="al", 21699 unicodeslot=0x9A1, 21700 }, 21701 [0x9A2]={ 21702 category="lo", 21703 description="BENGALI LETTER DDHA", 21704 direction="l", 21705 indic="c", 21706 linebreak="al", 21707 unicodeslot=0x9A2, 21708 }, 21709 [0x9A3]={ 21710 category="lo", 21711 description="BENGALI LETTER NNA", 21712 direction="l", 21713 indic="c", 21714 linebreak="al", 21715 unicodeslot=0x9A3, 21716 }, 21717 [0x9A4]={ 21718 category="lo", 21719 description="BENGALI LETTER TA", 21720 direction="l", 21721 indic="c", 21722 linebreak="al", 21723 unicodeslot=0x9A4, 21724 }, 21725 [0x9A5]={ 21726 category="lo", 21727 description="BENGALI LETTER THA", 21728 direction="l", 21729 indic="c", 21730 linebreak="al", 21731 unicodeslot=0x9A5, 21732 }, 21733 [0x9A6]={ 21734 category="lo", 21735 description="BENGALI LETTER DA", 21736 direction="l", 21737 indic="c", 21738 linebreak="al", 21739 unicodeslot=0x9A6, 21740 }, 21741 [0x9A7]={ 21742 category="lo", 21743 description="BENGALI LETTER DHA", 21744 direction="l", 21745 indic="c", 21746 linebreak="al", 21747 unicodeslot=0x9A7, 21748 }, 21749 [0x9A8]={ 21750 category="lo", 21751 description="BENGALI LETTER NA", 21752 direction="l", 21753 indic="c", 21754 linebreak="al", 21755 unicodeslot=0x9A8, 21756 }, 21757 [0x9AA]={ 21758 category="lo", 21759 description="BENGALI LETTER PA", 21760 direction="l", 21761 indic="c", 21762 linebreak="al", 21763 unicodeslot=0x9AA, 21764 }, 21765 [0x9AB]={ 21766 category="lo", 21767 description="BENGALI LETTER PHA", 21768 direction="l", 21769 indic="c", 21770 linebreak="al", 21771 unicodeslot=0x9AB, 21772 }, 21773 [0x9AC]={ 21774 category="lo", 21775 description="BENGALI LETTER BA", 21776 direction="l", 21777 indic="c", 21778 linebreak="al", 21779 unicodeslot=0x9AC, 21780 }, 21781 [0x9AD]={ 21782 category="lo", 21783 description="BENGALI LETTER BHA", 21784 direction="l", 21785 indic="c", 21786 linebreak="al", 21787 unicodeslot=0x9AD, 21788 }, 21789 [0x9AE]={ 21790 category="lo", 21791 description="BENGALI LETTER MA", 21792 direction="l", 21793 indic="c", 21794 linebreak="al", 21795 unicodeslot=0x9AE, 21796 }, 21797 [0x9AF]={ 21798 category="lo", 21799 description="BENGALI LETTER YA", 21800 direction="l", 21801 indic="c", 21802 linebreak="al", 21803 unicodeslot=0x9AF, 21804 }, 21805 [0x9B0]={ 21806 category="lo", 21807 description="BENGALI LETTER RA", 21808 direction="l", 21809 indic="c", 21810 indicclass="ra", 21811 indicorder="as", 21812 linebreak="al", 21813 unicodeslot=0x9B0, 21814 }, 21815 [0x9B2]={ 21816 category="lo", 21817 description="BENGALI LETTER LA", 21818 direction="l", 21819 indic="c", 21820 linebreak="al", 21821 unicodeslot=0x9B2, 21822 }, 21823 [0x9B6]={ 21824 category="lo", 21825 description="BENGALI LETTER SHA", 21826 direction="l", 21827 indic="c", 21828 linebreak="al", 21829 unicodeslot=0x9B6, 21830 }, 21831 [0x9B7]={ 21832 category="lo", 21833 description="BENGALI LETTER SSA", 21834 direction="l", 21835 indic="c", 21836 linebreak="al", 21837 unicodeslot=0x9B7, 21838 }, 21839 [0x9B8]={ 21840 category="lo", 21841 description="BENGALI LETTER SA", 21842 direction="l", 21843 indic="c", 21844 linebreak="al", 21845 unicodeslot=0x9B8, 21846 }, 21847 [0x9B9]={ 21848 category="lo", 21849 description="BENGALI LETTER HA", 21850 direction="l", 21851 indic="c", 21852 linebreak="al", 21853 unicodeslot=0x9B9, 21854 }, 21855 [0x9BC]={ 21856 category="mn", 21857 combining=0x7, 21858 description="BENGALI SIGN NUKTA", 21859 direction="nsm", 21860 indic="o", 21861 indicclass="nukta", 21862 indicmark="b", 21863 linebreak="cm", 21864 unicodeslot=0x9BC, 21865 }, 21866 [0x9BD]={ 21867 category="lo", 21868 description="BENGALI SIGN AVAGRAHA", 21869 direction="l", 21870 indic="o", 21871 linebreak="al", 21872 unicodeslot=0x9BD, 21873 }, 21874 [0x9BE]={ 21875 category="mc", 21876 description="BENGALI VOWEL SIGN AA", 21877 direction="l", 21878 indic="d", 21879 indicmark="r", 21880 indicorder="ap", 21881 linebreak="cm", 21882 unicodeslot=0x9BE, 21883 }, 21884 [0x9BF]={ 21885 category="mc", 21886 description="BENGALI VOWEL SIGN I", 21887 direction="l", 21888 indic="d", 21889 indicmark="l", 21890 indicorder="bh", 21891 linebreak="cm", 21892 unicodeslot=0x9BF, 21893 }, 21894 [0x9C0]={ 21895 category="mc", 21896 description="BENGALI VOWEL SIGN II", 21897 direction="l", 21898 indic="o", 21899 indicmark="r", 21900 indicorder="ap", 21901 linebreak="cm", 21902 unicodeslot=0x9C0, 21903 }, 21904 [0x9C1]={ 21905 category="mn", 21906 description="BENGALI VOWEL SIGN U", 21907 direction="nsm", 21908 indic="d", 21909 indicmark="b", 21910 indicorder="as", 21911 linebreak="cm", 21912 unicodeslot=0x9C1, 21913 }, 21914 [0x9C2]={ 21915 category="mn", 21916 description="BENGALI VOWEL SIGN UU", 21917 direction="nsm", 21918 indic="d", 21919 indicmark="b", 21920 indicorder="as", 21921 linebreak="cm", 21922 unicodeslot=0x9C2, 21923 }, 21924 [0x9C3]={ 21925 category="mn", 21926 description="BENGALI VOWEL SIGN VOCALIC R", 21927 direction="nsm", 21928 indic="d", 21929 indicmark="b", 21930 indicorder="as", 21931 linebreak="cm", 21932 unicodeslot=0x9C3, 21933 }, 21934 [0x9C4]={ 21935 category="mn", 21936 description="BENGALI VOWEL SIGN VOCALIC RR", 21937 direction="nsm", 21938 indic="d", 21939 indicmark="b", 21940 indicorder="as", 21941 linebreak="cm", 21942 unicodeslot=0x9C4, 21943 }, 21944 [0x9C7]={ 21945 category="mc", 21946 description="BENGALI VOWEL SIGN E", 21947 direction="l", 21948 indic="d", 21949 indicmark="l", 21950 indicorder="bh", 21951 linebreak="cm", 21952 unicodeslot=0x9C7, 21953 }, 21954 [0x9C8]={ 21955 category="mc", 21956 description="BENGALI VOWEL SIGN AI", 21957 direction="l", 21958 indic="d", 21959 indicmark="l", 21960 linebreak="cm", 21961 unicodeslot=0x9C8, 21962 }, 21963 [0x9CB]={ 21964 category="mc", 21965 description="BENGALI VOWEL SIGN O", 21966 direction="l", 21967 indic="d", 21968 indicmark="s", 21969 linebreak="cm", 21970 specials={ "char", 0x9C7, 0x9BE }, 21971 unicodeslot=0x9CB, 21972 }, 21973 [0x9CC]={ 21974 category="mc", 21975 description="BENGALI VOWEL SIGN AU", 21976 direction="l", 21977 indic="d", 21978 indicmark="s", 21979 linebreak="cm", 21980 specials={ "char", 0x9C7, 0x9D7 }, 21981 unicodeslot=0x9CC, 21982 }, 21983 [0x9CD]={ 21984 category="mn", 21985 combining=0x9, 21986 description="BENGALI SIGN VIRAMA", 21987 direction="nsm", 21988 indic="o", 21989 indicclass="halant", 21990 indicmark="b", 21991 linebreak="cm", 21992 synonyms={ "bengali hasant" }, 21993 unicodeslot=0x9CD, 21994 }, 21995 [0x9CE]={ 21996 category="lo", 21997 description="BENGALI LETTER KHANDA TA", 21998 direction="l", 21999 indic="c", 22000 linebreak="al", 22001 synonyms={ "bangla khanda ta" }, 22002 unicodeslot=0x9CE, 22003 }, 22004 [0x9D7]={ 22005 category="mc", 22006 description="BENGALI AU LENGTH MARK", 22007 direction="l", 22008 indic="d", 22009 indicmark="r", 22010 indicorder="ap", 22011 linebreak="cm", 22012 unicodeslot=0x9D7, 22013 }, 22014 [0x9DC]={ 22015 category="lo", 22016 description="BENGALI LETTER RRA", 22017 direction="l", 22018 indic="c", 22019 linebreak="al", 22020 specials={ "char", 0x9A1, 0x9BC }, 22021 unicodeslot=0x9DC, 22022 }, 22023 [0x9DD]={ 22024 category="lo", 22025 description="BENGALI LETTER RHA", 22026 direction="l", 22027 indic="c", 22028 linebreak="al", 22029 specials={ "char", 0x9A2, 0x9BC }, 22030 unicodeslot=0x9DD, 22031 }, 22032 [0x9DF]={ 22033 category="lo", 22034 description="BENGALI LETTER YYA", 22035 direction="l", 22036 indic="c", 22037 linebreak="al", 22038 specials={ "char", 0x9AF, 0x9BC }, 22039 unicodeslot=0x9DF, 22040 }, 22041 [0x9E0]={ 22042 category="lo", 22043 description="BENGALI LETTER VOCALIC RR", 22044 direction="l", 22045 indic="i", 22046 linebreak="al", 22047 unicodeslot=0x9E0, 22048 }, 22049 [0x9E1]={ 22050 category="lo", 22051 description="BENGALI LETTER VOCALIC LL", 22052 direction="l", 22053 indic="i", 22054 linebreak="al", 22055 unicodeslot=0x9E1, 22056 }, 22057 [0x9E2]={ 22058 category="mn", 22059 description="BENGALI VOWEL SIGN VOCALIC L", 22060 direction="nsm", 22061 indic="i", 22062 indicorder="as", 22063 linebreak="cm", 22064 unicodeslot=0x9E2, 22065 }, 22066 [0x9E3]={ 22067 category="mn", 22068 description="BENGALI VOWEL SIGN VOCALIC LL", 22069 direction="nsm", 22070 indic="i", 22071 indicorder="as", 22072 linebreak="cm", 22073 unicodeslot=0x9E3, 22074 }, 22075 [0x9E6]={ 22076 category="nd", 22077 description="BENGALI DIGIT ZERO", 22078 direction="l", 22079 indic="o", 22080 linebreak="nu", 22081 unicodeslot=0x9E6, 22082 }, 22083 [0x9E7]={ 22084 category="nd", 22085 description="BENGALI DIGIT ONE", 22086 direction="l", 22087 indic="o", 22088 linebreak="nu", 22089 unicodeslot=0x9E7, 22090 }, 22091 [0x9E8]={ 22092 category="nd", 22093 description="BENGALI DIGIT TWO", 22094 direction="l", 22095 indic="o", 22096 linebreak="nu", 22097 unicodeslot=0x9E8, 22098 }, 22099 [0x9E9]={ 22100 category="nd", 22101 description="BENGALI DIGIT THREE", 22102 direction="l", 22103 indic="o", 22104 linebreak="nu", 22105 unicodeslot=0x9E9, 22106 }, 22107 [0x9EA]={ 22108 category="nd", 22109 description="BENGALI DIGIT FOUR", 22110 direction="l", 22111 indic="o", 22112 linebreak="nu", 22113 unicodeslot=0x9EA, 22114 }, 22115 [0x9EB]={ 22116 category="nd", 22117 description="BENGALI DIGIT FIVE", 22118 direction="l", 22119 indic="o", 22120 linebreak="nu", 22121 unicodeslot=0x9EB, 22122 }, 22123 [0x9EC]={ 22124 category="nd", 22125 description="BENGALI DIGIT SIX", 22126 direction="l", 22127 indic="o", 22128 linebreak="nu", 22129 unicodeslot=0x9EC, 22130 }, 22131 [0x9ED]={ 22132 category="nd", 22133 description="BENGALI DIGIT SEVEN", 22134 direction="l", 22135 indic="o", 22136 linebreak="nu", 22137 unicodeslot=0x9ED, 22138 }, 22139 [0x9EE]={ 22140 category="nd", 22141 description="BENGALI DIGIT EIGHT", 22142 direction="l", 22143 indic="o", 22144 linebreak="nu", 22145 unicodeslot=0x9EE, 22146 }, 22147 [0x9EF]={ 22148 category="nd", 22149 description="BENGALI DIGIT NINE", 22150 direction="l", 22151 indic="o", 22152 linebreak="nu", 22153 unicodeslot=0x9EF, 22154 }, 22155 [0x9F0]={ 22156 category="lo", 22157 description="BENGALI LETTER RA WITH MIDDLE DIAGONAL", 22158 direction="l", 22159 indic="o", 22160 indicclass="ra", 22161 indicorder="as", 22162 linebreak="al", 22163 shcode=0x9B0, 22164 unicodeslot=0x9F0, 22165 }, 22166 [0x9F1]={ 22167 category="lo", 22168 description="BENGALI LETTER RA WITH LOWER DIAGONAL", 22169 direction="l", 22170 indic="o", 22171 linebreak="al", 22172 shcode=0x9B0, 22173 unicodeslot=0x9F1, 22174 }, 22175 [0x9F2]={ 22176 category="sc", 22177 description="BENGALI RUPEE MARK", 22178 direction="et", 22179 indic="o", 22180 linebreak="po", 22181 unicodeslot=0x9F2, 22182 }, 22183 [0x9F3]={ 22184 category="sc", 22185 description="BENGALI RUPEE SIGN", 22186 direction="et", 22187 indic="o", 22188 linebreak="po", 22189 unicodeslot=0x9F3, 22190 }, 22191 [0x9F4]={ 22192 category="no", 22193 description="BENGALI CURRENCY NUMERATOR ONE", 22194 direction="l", 22195 indic="o", 22196 linebreak="al", 22197 unicodeslot=0x9F4, 22198 }, 22199 [0x9F5]={ 22200 category="no", 22201 description="BENGALI CURRENCY NUMERATOR TWO", 22202 direction="l", 22203 indic="o", 22204 linebreak="al", 22205 unicodeslot=0x9F5, 22206 }, 22207 [0x9F6]={ 22208 category="no", 22209 description="BENGALI CURRENCY NUMERATOR THREE", 22210 direction="l", 22211 indic="o", 22212 linebreak="al", 22213 unicodeslot=0x9F6, 22214 }, 22215 [0x9F7]={ 22216 category="no", 22217 description="BENGALI CURRENCY NUMERATOR FOUR", 22218 direction="l", 22219 indic="o", 22220 linebreak="al", 22221 unicodeslot=0x9F7, 22222 }, 22223 [0x9F8]={ 22224 category="no", 22225 description="BENGALI CURRENCY NUMERATOR ONE LESS THAN THE DENOMINATOR", 22226 direction="l", 22227 indic="o", 22228 linebreak="al", 22229 unicodeslot=0x9F8, 22230 }, 22231 [0x9F9]={ 22232 category="no", 22233 description="BENGALI CURRENCY DENOMINATOR SIXTEEN", 22234 direction="l", 22235 indic="o", 22236 linebreak="po", 22237 unicodeslot=0x9F9, 22238 }, 22239 [0x9FA]={ 22240 category="so", 22241 description="BENGALI ISSHAR", 22242 direction="l", 22243 indic="o", 22244 linebreak="al", 22245 unicodeslot=0x9FA, 22246 }, 22247 [0x9FB]={ 22248 category="sc", 22249 description="BENGALI GANDA MARK", 22250 direction="et", 22251 indic="o", 22252 linebreak="pr", 22253 unicodeslot=0x9FB, 22254 }, 22255 [0x9FC]={ 22256 category="lo", 22257 description="BENGALI LETTER VEDIC ANUSVARA", 22258 direction="l", 22259 indic="o", 22260 linebreak="al", 22261 unicodeslot=0x9FC, 22262 }, 22263 [0x9FD]={ 22264 category="po", 22265 description="BENGALI ABBREVIATION SIGN", 22266 direction="l", 22267 indic="o", 22268 linebreak="al", 22269 unicodeslot=0x9FD, 22270 }, 22271 [0x9FE]={ 22272 category="mn", 22273 combining=0xE6, 22274 description="BENGALI SANDHI MARK", 22275 direction="nsm", 22276 linebreak="cm", 22277 unicodeslot=0x9FE, 22278 }, 22279 [0xA01]={ 22280 category="mn", 22281 description="GURMUKHI SIGN ADAK BINDI", 22282 direction="nsm", 22283 indic="o", 22284 indicorder="ap", 22285 linebreak="cm", 22286 unicodeslot=0xA01, 22287 }, 22288 [0xA02]={ 22289 category="mn", 22290 description="GURMUKHI SIGN BINDI", 22291 direction="nsm", 22292 indic="o", 22293 indicorder="ap", 22294 linebreak="cm", 22295 unicodeslot=0xA02, 22296 }, 22297 [0xA03]={ 22298 category="mc", 22299 description="GURMUKHI SIGN VISARGA", 22300 direction="l", 22301 indic="o", 22302 linebreak="cm", 22303 unicodeslot=0xA03, 22304 }, 22305 [0xA05]={ 22306 category="lo", 22307 description="GURMUKHI LETTER A", 22308 direction="l", 22309 indic="i", 22310 linebreak="al", 22311 unicodeslot=0xA05, 22312 }, 22313 [0xA06]={ 22314 category="lo", 22315 description="GURMUKHI LETTER AA", 22316 direction="l", 22317 indic="i", 22318 linebreak="al", 22319 unicodeslot=0xA06, 22320 }, 22321 [0xA07]={ 22322 category="lo", 22323 description="GURMUKHI LETTER I", 22324 direction="l", 22325 indic="i", 22326 linebreak="al", 22327 unicodeslot=0xA07, 22328 }, 22329 [0xA08]={ 22330 category="lo", 22331 description="GURMUKHI LETTER II", 22332 direction="l", 22333 indic="i", 22334 linebreak="al", 22335 unicodeslot=0xA08, 22336 }, 22337 [0xA09]={ 22338 category="lo", 22339 description="GURMUKHI LETTER U", 22340 direction="l", 22341 indic="i", 22342 linebreak="al", 22343 unicodeslot=0xA09, 22344 }, 22345 [0xA0A]={ 22346 category="lo", 22347 description="GURMUKHI LETTER UU", 22348 direction="l", 22349 indic="i", 22350 linebreak="al", 22351 unicodeslot=0xA0A, 22352 }, 22353 [0xA0F]={ 22354 category="lo", 22355 description="GURMUKHI LETTER EE", 22356 direction="l", 22357 indic="i", 22358 linebreak="al", 22359 unicodeslot=0xA0F, 22360 }, 22361 [0xA10]={ 22362 category="lo", 22363 description="GURMUKHI LETTER AI", 22364 direction="l", 22365 indic="i", 22366 linebreak="al", 22367 unicodeslot=0xA10, 22368 }, 22369 [0xA13]={ 22370 category="lo", 22371 description="GURMUKHI LETTER OO", 22372 direction="l", 22373 indic="i", 22374 linebreak="al", 22375 unicodeslot=0xA13, 22376 }, 22377 [0xA14]={ 22378 category="lo", 22379 description="GURMUKHI LETTER AU", 22380 direction="l", 22381 indic="i", 22382 linebreak="al", 22383 unicodeslot=0xA14, 22384 }, 22385 [0xA15]={ 22386 category="lo", 22387 description="GURMUKHI LETTER KA", 22388 direction="l", 22389 indic="c", 22390 linebreak="al", 22391 unicodeslot=0xA15, 22392 }, 22393 [0xA16]={ 22394 category="lo", 22395 description="GURMUKHI LETTER KHA", 22396 direction="l", 22397 indic="c", 22398 linebreak="al", 22399 unicodeslot=0xA16, 22400 }, 22401 [0xA17]={ 22402 category="lo", 22403 description="GURMUKHI LETTER GA", 22404 direction="l", 22405 indic="c", 22406 linebreak="al", 22407 unicodeslot=0xA17, 22408 }, 22409 [0xA18]={ 22410 category="lo", 22411 description="GURMUKHI LETTER GHA", 22412 direction="l", 22413 indic="c", 22414 linebreak="al", 22415 unicodeslot=0xA18, 22416 }, 22417 [0xA19]={ 22418 category="lo", 22419 description="GURMUKHI LETTER NGA", 22420 direction="l", 22421 indic="c", 22422 linebreak="al", 22423 unicodeslot=0xA19, 22424 }, 22425 [0xA1A]={ 22426 category="lo", 22427 description="GURMUKHI LETTER CA", 22428 direction="l", 22429 indic="c", 22430 linebreak="al", 22431 unicodeslot=0xA1A, 22432 }, 22433 [0xA1B]={ 22434 category="lo", 22435 description="GURMUKHI LETTER CHA", 22436 direction="l", 22437 indic="c", 22438 linebreak="al", 22439 unicodeslot=0xA1B, 22440 }, 22441 [0xA1C]={ 22442 category="lo", 22443 description="GURMUKHI LETTER JA", 22444 direction="l", 22445 indic="c", 22446 linebreak="al", 22447 unicodeslot=0xA1C, 22448 }, 22449 [0xA1D]={ 22450 category="lo", 22451 description="GURMUKHI LETTER JHA", 22452 direction="l", 22453 indic="c", 22454 linebreak="al", 22455 unicodeslot=0xA1D, 22456 }, 22457 [0xA1E]={ 22458 category="lo", 22459 description="GURMUKHI LETTER NYA", 22460 direction="l", 22461 indic="c", 22462 linebreak="al", 22463 unicodeslot=0xA1E, 22464 }, 22465 [0xA1F]={ 22466 category="lo", 22467 description="GURMUKHI LETTER TTA", 22468 direction="l", 22469 indic="c", 22470 linebreak="al", 22471 unicodeslot=0xA1F, 22472 }, 22473 [0xA20]={ 22474 category="lo", 22475 description="GURMUKHI LETTER TTHA", 22476 direction="l", 22477 indic="c", 22478 linebreak="al", 22479 unicodeslot=0xA20, 22480 }, 22481 [0xA21]={ 22482 category="lo", 22483 description="GURMUKHI LETTER DDA", 22484 direction="l", 22485 indic="c", 22486 linebreak="al", 22487 unicodeslot=0xA21, 22488 }, 22489 [0xA22]={ 22490 category="lo", 22491 description="GURMUKHI LETTER DDHA", 22492 direction="l", 22493 indic="c", 22494 linebreak="al", 22495 unicodeslot=0xA22, 22496 }, 22497 [0xA23]={ 22498 category="lo", 22499 description="GURMUKHI LETTER NNA", 22500 direction="l", 22501 indic="c", 22502 linebreak="al", 22503 unicodeslot=0xA23, 22504 }, 22505 [0xA24]={ 22506 category="lo", 22507 description="GURMUKHI LETTER TA", 22508 direction="l", 22509 indic="c", 22510 linebreak="al", 22511 unicodeslot=0xA24, 22512 }, 22513 [0xA25]={ 22514 category="lo", 22515 description="GURMUKHI LETTER THA", 22516 direction="l", 22517 indic="c", 22518 linebreak="al", 22519 unicodeslot=0xA25, 22520 }, 22521 [0xA26]={ 22522 category="lo", 22523 description="GURMUKHI LETTER DA", 22524 direction="l", 22525 indic="c", 22526 linebreak="al", 22527 unicodeslot=0xA26, 22528 }, 22529 [0xA27]={ 22530 category="lo", 22531 description="GURMUKHI LETTER DHA", 22532 direction="l", 22533 indic="c", 22534 linebreak="al", 22535 unicodeslot=0xA27, 22536 }, 22537 [0xA28]={ 22538 category="lo", 22539 description="GURMUKHI LETTER NA", 22540 direction="l", 22541 indic="c", 22542 linebreak="al", 22543 unicodeslot=0xA28, 22544 }, 22545 [0xA2A]={ 22546 category="lo", 22547 description="GURMUKHI LETTER PA", 22548 direction="l", 22549 indic="c", 22550 linebreak="al", 22551 unicodeslot=0xA2A, 22552 }, 22553 [0xA2B]={ 22554 category="lo", 22555 description="GURMUKHI LETTER PHA", 22556 direction="l", 22557 indic="c", 22558 linebreak="al", 22559 unicodeslot=0xA2B, 22560 }, 22561 [0xA2C]={ 22562 category="lo", 22563 description="GURMUKHI LETTER BA", 22564 direction="l", 22565 indic="c", 22566 linebreak="al", 22567 unicodeslot=0xA2C, 22568 }, 22569 [0xA2D]={ 22570 category="lo", 22571 description="GURMUKHI LETTER BHA", 22572 direction="l", 22573 indic="c", 22574 linebreak="al", 22575 unicodeslot=0xA2D, 22576 }, 22577 [0xA2E]={ 22578 category="lo", 22579 description="GURMUKHI LETTER MA", 22580 direction="l", 22581 indic="c", 22582 linebreak="al", 22583 unicodeslot=0xA2E, 22584 }, 22585 [0xA2F]={ 22586 category="lo", 22587 description="GURMUKHI LETTER YA", 22588 direction="l", 22589 indic="c", 22590 linebreak="al", 22591 unicodeslot=0xA2F, 22592 }, 22593 [0xA30]={ 22594 category="lo", 22595 description="GURMUKHI LETTER RA", 22596 direction="l", 22597 indic="c", 22598 indicclass="ra", 22599 indicorder="bs", 22600 linebreak="al", 22601 unicodeslot=0xA30, 22602 }, 22603 [0xA32]={ 22604 category="lo", 22605 description="GURMUKHI LETTER LA", 22606 direction="l", 22607 indic="c", 22608 linebreak="al", 22609 unicodeslot=0xA32, 22610 }, 22611 [0xA33]={ 22612 category="lo", 22613 description="GURMUKHI LETTER LLA", 22614 direction="l", 22615 indic="c", 22616 linebreak="al", 22617 specials={ "char", 0xA32, 0xA3C }, 22618 unicodeslot=0xA33, 22619 }, 22620 [0xA35]={ 22621 category="lo", 22622 description="GURMUKHI LETTER VA", 22623 direction="l", 22624 indic="c", 22625 linebreak="al", 22626 unicodeslot=0xA35, 22627 }, 22628 [0xA36]={ 22629 category="lo", 22630 description="GURMUKHI LETTER SHA", 22631 direction="l", 22632 indic="c", 22633 linebreak="al", 22634 specials={ "char", 0xA38, 0xA3C }, 22635 unicodeslot=0xA36, 22636 }, 22637 [0xA38]={ 22638 category="lo", 22639 description="GURMUKHI LETTER SA", 22640 direction="l", 22641 indic="c", 22642 linebreak="al", 22643 unicodeslot=0xA38, 22644 }, 22645 [0xA39]={ 22646 category="lo", 22647 description="GURMUKHI LETTER HA", 22648 direction="l", 22649 indic="c", 22650 linebreak="al", 22651 unicodeslot=0xA39, 22652 }, 22653 [0xA3C]={ 22654 category="mn", 22655 combining=0x7, 22656 description="GURMUKHI SIGN NUKTA", 22657 direction="nsm", 22658 indic="o", 22659 indicclass="nukta", 22660 indicmark="b", 22661 linebreak="cm", 22662 unicodeslot=0xA3C, 22663 }, 22664 [0xA3E]={ 22665 category="mc", 22666 description="GURMUKHI VOWEL SIGN AA", 22667 direction="l", 22668 indic="d", 22669 indicmark="r", 22670 indicorder="ap", 22671 linebreak="cm", 22672 unicodeslot=0xA3E, 22673 }, 22674 [0xA3F]={ 22675 category="mc", 22676 description="GURMUKHI VOWEL SIGN I", 22677 direction="l", 22678 indic="d", 22679 indicmark="l", 22680 indicorder="bh", 22681 linebreak="cm", 22682 unicodeslot=0xA3F, 22683 }, 22684 [0xA40]={ 22685 category="mc", 22686 description="GURMUKHI VOWEL SIGN II", 22687 direction="l", 22688 indic="d", 22689 indicmark="r", 22690 indicorder="ap", 22691 linebreak="cm", 22692 unicodeslot=0xA40, 22693 }, 22694 [0xA41]={ 22695 category="mn", 22696 description="GURMUKHI VOWEL SIGN U", 22697 direction="nsm", 22698 indic="d", 22699 indicmark="b", 22700 indicorder="ap", 22701 linebreak="cm", 22702 unicodeslot=0xA41, 22703 }, 22704 [0xA42]={ 22705 category="mn", 22706 description="GURMUKHI VOWEL SIGN UU", 22707 direction="nsm", 22708 indic="d", 22709 indicmark="b", 22710 indicorder="ap", 22711 linebreak="cm", 22712 unicodeslot=0xA42, 22713 }, 22714 [0xA47]={ 22715 category="mn", 22716 description="GURMUKHI VOWEL SIGN EE", 22717 direction="nsm", 22718 indic="d", 22719 indicmark="t", 22720 indicorder="as", 22721 linebreak="cm", 22722 unicodeslot=0xA47, 22723 }, 22724 [0xA48]={ 22725 category="mn", 22726 description="GURMUKHI VOWEL SIGN AI", 22727 direction="nsm", 22728 indic="d", 22729 indicmark="t", 22730 indicorder="as", 22731 linebreak="cm", 22732 unicodeslot=0xA48, 22733 }, 22734 [0xA4B]={ 22735 category="mn", 22736 description="GURMUKHI VOWEL SIGN OO", 22737 direction="nsm", 22738 indic="d", 22739 indicmark="t", 22740 indicorder="as", 22741 linebreak="cm", 22742 unicodeslot=0xA4B, 22743 }, 22744 [0xA4C]={ 22745 category="mn", 22746 description="GURMUKHI VOWEL SIGN AU", 22747 direction="nsm", 22748 indic="d", 22749 indicmark="t", 22750 indicorder="as", 22751 linebreak="cm", 22752 unicodeslot=0xA4C, 22753 }, 22754 [0xA4D]={ 22755 category="mn", 22756 combining=0x9, 22757 description="GURMUKHI SIGN VIRAMA", 22758 direction="nsm", 22759 indic="o", 22760 indicclass="halant", 22761 indicmark="b", 22762 linebreak="cm", 22763 unicodeslot=0xA4D, 22764 }, 22765 [0xA51]={ 22766 category="mn", 22767 description="GURMUKHI SIGN UDAAT", 22768 direction="nsm", 22769 indic="o", 22770 linebreak="cm", 22771 unicodeslot=0xA51, 22772 }, 22773 [0xA59]={ 22774 category="lo", 22775 description="GURMUKHI LETTER KHHA", 22776 direction="l", 22777 indic="c", 22778 linebreak="al", 22779 specials={ "char", 0xA16, 0xA3C }, 22780 unicodeslot=0xA59, 22781 }, 22782 [0xA5A]={ 22783 category="lo", 22784 description="GURMUKHI LETTER GHHA", 22785 direction="l", 22786 indic="c", 22787 linebreak="al", 22788 specials={ "char", 0xA17, 0xA3C }, 22789 unicodeslot=0xA5A, 22790 }, 22791 [0xA5B]={ 22792 category="lo", 22793 description="GURMUKHI LETTER ZA", 22794 direction="l", 22795 indic="c", 22796 linebreak="al", 22797 specials={ "char", 0xA1C, 0xA3C }, 22798 unicodeslot=0xA5B, 22799 }, 22800 [0xA5C]={ 22801 category="lo", 22802 description="GURMUKHI LETTER RRA", 22803 direction="l", 22804 indic="c", 22805 linebreak="al", 22806 unicodeslot=0xA5C, 22807 }, 22808 [0xA5E]={ 22809 category="lo", 22810 description="GURMUKHI LETTER FA", 22811 direction="l", 22812 indic="c", 22813 linebreak="al", 22814 specials={ "char", 0xA2B, 0xA3C }, 22815 unicodeslot=0xA5E, 22816 }, 22817 [0xA66]={ 22818 category="nd", 22819 description="GURMUKHI DIGIT ZERO", 22820 direction="l", 22821 indic="o", 22822 linebreak="nu", 22823 unicodeslot=0xA66, 22824 }, 22825 [0xA67]={ 22826 category="nd", 22827 description="GURMUKHI DIGIT ONE", 22828 direction="l", 22829 indic="o", 22830 linebreak="nu", 22831 unicodeslot=0xA67, 22832 }, 22833 [0xA68]={ 22834 category="nd", 22835 description="GURMUKHI DIGIT TWO", 22836 direction="l", 22837 indic="o", 22838 linebreak="nu", 22839 unicodeslot=0xA68, 22840 }, 22841 [0xA69]={ 22842 category="nd", 22843 description="GURMUKHI DIGIT THREE", 22844 direction="l", 22845 indic="o", 22846 linebreak="nu", 22847 unicodeslot=0xA69, 22848 }, 22849 [0xA6A]={ 22850 category="nd", 22851 description="GURMUKHI DIGIT FOUR", 22852 direction="l", 22853 indic="o", 22854 linebreak="nu", 22855 unicodeslot=0xA6A, 22856 }, 22857 [0xA6B]={ 22858 category="nd", 22859 description="GURMUKHI DIGIT FIVE", 22860 direction="l", 22861 indic="o", 22862 linebreak="nu", 22863 unicodeslot=0xA6B, 22864 }, 22865 [0xA6C]={ 22866 category="nd", 22867 description="GURMUKHI DIGIT SIX", 22868 direction="l", 22869 indic="o", 22870 linebreak="nu", 22871 unicodeslot=0xA6C, 22872 }, 22873 [0xA6D]={ 22874 category="nd", 22875 description="GURMUKHI DIGIT SEVEN", 22876 direction="l", 22877 indic="o", 22878 linebreak="nu", 22879 unicodeslot=0xA6D, 22880 }, 22881 [0xA6E]={ 22882 category="nd", 22883 description="GURMUKHI DIGIT EIGHT", 22884 direction="l", 22885 indic="o", 22886 linebreak="nu", 22887 unicodeslot=0xA6E, 22888 }, 22889 [0xA6F]={ 22890 category="nd", 22891 description="GURMUKHI DIGIT NINE", 22892 direction="l", 22893 indic="o", 22894 linebreak="nu", 22895 unicodeslot=0xA6F, 22896 }, 22897 [0xA70]={ 22898 category="mn", 22899 description="GURMUKHI TIPPI", 22900 direction="nsm", 22901 indic="o", 22902 indicorder="ap", 22903 linebreak="cm", 22904 unicodeslot=0xA70, 22905 }, 22906 [0xA71]={ 22907 category="mn", 22908 description="GURMUKHI ADDAK", 22909 direction="nsm", 22910 indic="o", 22911 indicorder="ap", 22912 linebreak="cm", 22913 unicodeslot=0xA71, 22914 }, 22915 [0xA72]={ 22916 category="lo", 22917 description="GURMUKHI IRI", 22918 direction="l", 22919 indic="o", 22920 linebreak="al", 22921 unicodeslot=0xA72, 22922 }, 22923 [0xA73]={ 22924 category="lo", 22925 description="GURMUKHI URA", 22926 direction="l", 22927 indic="o", 22928 linebreak="al", 22929 unicodeslot=0xA73, 22930 }, 22931 [0xA74]={ 22932 category="lo", 22933 description="GURMUKHI EK ONKAR", 22934 direction="l", 22935 indic="o", 22936 linebreak="al", 22937 unicodeslot=0xA74, 22938 }, 22939 [0xA75]={ 22940 category="mn", 22941 description="GURMUKHI SIGN YAKASH", 22942 direction="nsm", 22943 indic="o", 22944 linebreak="cm", 22945 unicodeslot=0xA75, 22946 }, 22947 [0xA76]={ 22948 category="po", 22949 description="GURMUKHI ABBREVIATION SIGN", 22950 direction="l", 22951 linebreak="al", 22952 unicodeslot=0xA76, 22953 }, 22954 [0xA81]={ 22955 category="mn", 22956 description="GUJARATI SIGN CANDRABINDU", 22957 direction="nsm", 22958 indic="o", 22959 linebreak="cm", 22960 unicodeslot=0xA81, 22961 }, 22962 [0xA82]={ 22963 category="mn", 22964 description="GUJARATI SIGN ANUSVARA", 22965 direction="nsm", 22966 indic="o", 22967 indicmark="t", 22968 linebreak="cm", 22969 unicodeslot=0xA82, 22970 }, 22971 [0xA83]={ 22972 category="mc", 22973 description="GUJARATI SIGN VISARGA", 22974 direction="l", 22975 indic="o", 22976 linebreak="cm", 22977 unicodeslot=0xA83, 22978 }, 22979 [0xA85]={ 22980 category="lo", 22981 description="GUJARATI LETTER A", 22982 direction="l", 22983 indic="i", 22984 linebreak="al", 22985 unicodeslot=0xA85, 22986 }, 22987 [0xA86]={ 22988 category="lo", 22989 description="GUJARATI LETTER AA", 22990 direction="l", 22991 indic="i", 22992 linebreak="al", 22993 unicodeslot=0xA86, 22994 }, 22995 [0xA87]={ 22996 category="lo", 22997 description="GUJARATI LETTER I", 22998 direction="l", 22999 indic="i", 23000 linebreak="al", 23001 unicodeslot=0xA87, 23002 }, 23003 [0xA88]={ 23004 category="lo", 23005 description="GUJARATI LETTER II", 23006 direction="l", 23007 indic="i", 23008 linebreak="al", 23009 unicodeslot=0xA88, 23010 }, 23011 [0xA89]={ 23012 category="lo", 23013 description="GUJARATI LETTER U", 23014 direction="l", 23015 indic="i", 23016 linebreak="al", 23017 unicodeslot=0xA89, 23018 }, 23019 [0xA8A]={ 23020 category="lo", 23021 description="GUJARATI LETTER UU", 23022 direction="l", 23023 indic="i", 23024 linebreak="al", 23025 unicodeslot=0xA8A, 23026 }, 23027 [0xA8B]={ 23028 category="lo", 23029 description="GUJARATI LETTER VOCALIC R", 23030 direction="l", 23031 indic="i", 23032 linebreak="al", 23033 unicodeslot=0xA8B, 23034 }, 23035 [0xA8C]={ 23036 category="lo", 23037 description="GUJARATI LETTER VOCALIC L", 23038 direction="l", 23039 indic="i", 23040 linebreak="al", 23041 unicodeslot=0xA8C, 23042 }, 23043 [0xA8D]={ 23044 category="lo", 23045 description="GUJARATI VOWEL CANDRA E", 23046 direction="l", 23047 indic="i", 23048 linebreak="al", 23049 unicodeslot=0xA8D, 23050 }, 23051 [0xA8F]={ 23052 category="lo", 23053 description="GUJARATI LETTER E", 23054 direction="l", 23055 indic="i", 23056 linebreak="al", 23057 unicodeslot=0xA8F, 23058 }, 23059 [0xA90]={ 23060 category="lo", 23061 description="GUJARATI LETTER AI", 23062 direction="l", 23063 indic="i", 23064 linebreak="al", 23065 unicodeslot=0xA90, 23066 }, 23067 [0xA91]={ 23068 category="lo", 23069 description="GUJARATI VOWEL CANDRA O", 23070 direction="l", 23071 indic="i", 23072 linebreak="al", 23073 unicodeslot=0xA91, 23074 }, 23075 [0xA93]={ 23076 category="lo", 23077 description="GUJARATI LETTER O", 23078 direction="l", 23079 indic="i", 23080 linebreak="al", 23081 unicodeslot=0xA93, 23082 }, 23083 [0xA94]={ 23084 category="lo", 23085 description="GUJARATI LETTER AU", 23086 direction="l", 23087 indic="i", 23088 linebreak="al", 23089 unicodeslot=0xA94, 23090 }, 23091 [0xA95]={ 23092 category="lo", 23093 description="GUJARATI LETTER KA", 23094 direction="l", 23095 indic="c", 23096 linebreak="al", 23097 unicodeslot=0xA95, 23098 }, 23099 [0xA96]={ 23100 category="lo", 23101 description="GUJARATI LETTER KHA", 23102 direction="l", 23103 indic="c", 23104 linebreak="al", 23105 unicodeslot=0xA96, 23106 }, 23107 [0xA97]={ 23108 category="lo", 23109 description="GUJARATI LETTER GA", 23110 direction="l", 23111 indic="c", 23112 linebreak="al", 23113 unicodeslot=0xA97, 23114 }, 23115 [0xA98]={ 23116 category="lo", 23117 description="GUJARATI LETTER GHA", 23118 direction="l", 23119 indic="c", 23120 linebreak="al", 23121 unicodeslot=0xA98, 23122 }, 23123 [0xA99]={ 23124 category="lo", 23125 description="GUJARATI LETTER NGA", 23126 direction="l", 23127 indic="c", 23128 linebreak="al", 23129 unicodeslot=0xA99, 23130 }, 23131 [0xA9A]={ 23132 category="lo", 23133 description="GUJARATI LETTER CA", 23134 direction="l", 23135 indic="c", 23136 linebreak="al", 23137 unicodeslot=0xA9A, 23138 }, 23139 [0xA9B]={ 23140 category="lo", 23141 description="GUJARATI LETTER CHA", 23142 direction="l", 23143 indic="c", 23144 linebreak="al", 23145 unicodeslot=0xA9B, 23146 }, 23147 [0xA9C]={ 23148 category="lo", 23149 description="GUJARATI LETTER JA", 23150 direction="l", 23151 indic="c", 23152 linebreak="al", 23153 unicodeslot=0xA9C, 23154 }, 23155 [0xA9D]={ 23156 category="lo", 23157 description="GUJARATI LETTER JHA", 23158 direction="l", 23159 indic="c", 23160 linebreak="al", 23161 unicodeslot=0xA9D, 23162 }, 23163 [0xA9E]={ 23164 category="lo", 23165 description="GUJARATI LETTER NYA", 23166 direction="l", 23167 indic="c", 23168 linebreak="al", 23169 unicodeslot=0xA9E, 23170 }, 23171 [0xA9F]={ 23172 category="lo", 23173 description="GUJARATI LETTER TTA", 23174 direction="l", 23175 indic="c", 23176 linebreak="al", 23177 unicodeslot=0xA9F, 23178 }, 23179 [0xAA0]={ 23180 category="lo", 23181 description="GUJARATI LETTER TTHA", 23182 direction="l", 23183 indic="c", 23184 linebreak="al", 23185 unicodeslot=0xAA0, 23186 }, 23187 [0xAA1]={ 23188 category="lo", 23189 description="GUJARATI LETTER DDA", 23190 direction="l", 23191 indic="c", 23192 linebreak="al", 23193 unicodeslot=0xAA1, 23194 }, 23195 [0xAA2]={ 23196 category="lo", 23197 description="GUJARATI LETTER DDHA", 23198 direction="l", 23199 indic="c", 23200 linebreak="al", 23201 unicodeslot=0xAA2, 23202 }, 23203 [0xAA3]={ 23204 category="lo", 23205 description="GUJARATI LETTER NNA", 23206 direction="l", 23207 indic="c", 23208 linebreak="al", 23209 unicodeslot=0xAA3, 23210 }, 23211 [0xAA4]={ 23212 category="lo", 23213 description="GUJARATI LETTER TA", 23214 direction="l", 23215 indic="c", 23216 linebreak="al", 23217 unicodeslot=0xAA4, 23218 }, 23219 [0xAA5]={ 23220 category="lo", 23221 description="GUJARATI LETTER THA", 23222 direction="l", 23223 indic="c", 23224 linebreak="al", 23225 unicodeslot=0xAA5, 23226 }, 23227 [0xAA6]={ 23228 category="lo", 23229 description="GUJARATI LETTER DA", 23230 direction="l", 23231 indic="c", 23232 linebreak="al", 23233 unicodeslot=0xAA6, 23234 }, 23235 [0xAA7]={ 23236 category="lo", 23237 description="GUJARATI LETTER DHA", 23238 direction="l", 23239 indic="c", 23240 linebreak="al", 23241 unicodeslot=0xAA7, 23242 }, 23243 [0xAA8]={ 23244 category="lo", 23245 description="GUJARATI LETTER NA", 23246 direction="l", 23247 indic="c", 23248 linebreak="al", 23249 unicodeslot=0xAA8, 23250 }, 23251 [0xAAA]={ 23252 category="lo", 23253 description="GUJARATI LETTER PA", 23254 direction="l", 23255 indic="c", 23256 linebreak="al", 23257 unicodeslot=0xAAA, 23258 }, 23259 [0xAAB]={ 23260 category="lo", 23261 description="GUJARATI LETTER PHA", 23262 direction="l", 23263 indic="c", 23264 linebreak="al", 23265 unicodeslot=0xAAB, 23266 }, 23267 [0xAAC]={ 23268 category="lo", 23269 description="GUJARATI LETTER BA", 23270 direction="l", 23271 indic="c", 23272 linebreak="al", 23273 unicodeslot=0xAAC, 23274 }, 23275 [0xAAD]={ 23276 category="lo", 23277 description="GUJARATI LETTER BHA", 23278 direction="l", 23279 indic="c", 23280 linebreak="al", 23281 unicodeslot=0xAAD, 23282 }, 23283 [0xAAE]={ 23284 category="lo", 23285 description="GUJARATI LETTER MA", 23286 direction="l", 23287 indic="c", 23288 linebreak="al", 23289 unicodeslot=0xAAE, 23290 }, 23291 [0xAAF]={ 23292 category="lo", 23293 description="GUJARATI LETTER YA", 23294 direction="l", 23295 indic="c", 23296 indicorder="ap", 23297 linebreak="al", 23298 unicodeslot=0xAAF, 23299 }, 23300 [0xAB0]={ 23301 category="lo", 23302 description="GUJARATI LETTER RA", 23303 direction="l", 23304 indic="c", 23305 indicclass="ra", 23306 indicorder="bp", 23307 linebreak="al", 23308 unicodeslot=0xAB0, 23309 }, 23310 [0xAB2]={ 23311 category="lo", 23312 description="GUJARATI LETTER LA", 23313 direction="l", 23314 indic="c", 23315 linebreak="al", 23316 unicodeslot=0xAB2, 23317 }, 23318 [0xAB3]={ 23319 category="lo", 23320 description="GUJARATI LETTER LLA", 23321 direction="l", 23322 indic="c", 23323 linebreak="al", 23324 unicodeslot=0xAB3, 23325 }, 23326 [0xAB5]={ 23327 category="lo", 23328 description="GUJARATI LETTER VA", 23329 direction="l", 23330 indic="c", 23331 linebreak="al", 23332 unicodeslot=0xAB5, 23333 }, 23334 [0xAB6]={ 23335 category="lo", 23336 description="GUJARATI LETTER SHA", 23337 direction="l", 23338 indic="c", 23339 linebreak="al", 23340 unicodeslot=0xAB6, 23341 }, 23342 [0xAB7]={ 23343 category="lo", 23344 description="GUJARATI LETTER SSA", 23345 direction="l", 23346 indic="c", 23347 linebreak="al", 23348 unicodeslot=0xAB7, 23349 }, 23350 [0xAB8]={ 23351 category="lo", 23352 description="GUJARATI LETTER SA", 23353 direction="l", 23354 indic="c", 23355 linebreak="al", 23356 unicodeslot=0xAB8, 23357 }, 23358 [0xAB9]={ 23359 category="lo", 23360 description="GUJARATI LETTER HA", 23361 direction="l", 23362 indic="c", 23363 linebreak="al", 23364 unicodeslot=0xAB9, 23365 }, 23366 [0xABC]={ 23367 category="mn", 23368 combining=0x7, 23369 description="GUJARATI SIGN NUKTA", 23370 direction="nsm", 23371 indic="o", 23372 indicclass="nukta", 23373 indicmark="b", 23374 linebreak="cm", 23375 unicodeslot=0xABC, 23376 }, 23377 [0xABD]={ 23378 category="lo", 23379 description="GUJARATI SIGN AVAGRAHA", 23380 direction="l", 23381 indic="o", 23382 linebreak="al", 23383 unicodeslot=0xABD, 23384 }, 23385 [0xABE]={ 23386 category="mc", 23387 description="GUJARATI VOWEL SIGN AA", 23388 direction="l", 23389 indic="d", 23390 indicmark="r", 23391 indicorder="ap", 23392 linebreak="cm", 23393 unicodeslot=0xABE, 23394 }, 23395 [0xABF]={ 23396 category="mc", 23397 description="GUJARATI VOWEL SIGN I", 23398 direction="l", 23399 indic="d", 23400 indicmark="l", 23401 indicorder="bh", 23402 linebreak="cm", 23403 unicodeslot=0xABF, 23404 }, 23405 [0xAC0]={ 23406 category="mc", 23407 description="GUJARATI VOWEL SIGN II", 23408 direction="l", 23409 indic="d", 23410 indicmark="r", 23411 indicorder="ap", 23412 linebreak="cm", 23413 unicodeslot=0xAC0, 23414 }, 23415 [0xAC1]={ 23416 category="mn", 23417 description="GUJARATI VOWEL SIGN U", 23418 direction="nsm", 23419 indic="d", 23420 indicmark="b", 23421 indicorder="ap", 23422 linebreak="cm", 23423 unicodeslot=0xAC1, 23424 }, 23425 [0xAC2]={ 23426 category="mn", 23427 description="GUJARATI VOWEL SIGN UU", 23428 direction="nsm", 23429 indic="d", 23430 indicmark="b", 23431 indicorder="ap", 23432 linebreak="cm", 23433 unicodeslot=0xAC2, 23434 }, 23435 [0xAC3]={ 23436 category="mn", 23437 description="GUJARATI VOWEL SIGN VOCALIC R", 23438 direction="nsm", 23439 indic="d", 23440 indicmark="b", 23441 indicorder="ap", 23442 linebreak="cm", 23443 unicodeslot=0xAC3, 23444 }, 23445 [0xAC4]={ 23446 category="mn", 23447 description="GUJARATI VOWEL SIGN VOCALIC RR", 23448 direction="nsm", 23449 indic="d", 23450 indicmark="b", 23451 indicorder="ap", 23452 linebreak="cm", 23453 unicodeslot=0xAC4, 23454 }, 23455 [0xAC5]={ 23456 category="mn", 23457 description="GUJARATI VOWEL SIGN CANDRA E", 23458 direction="nsm", 23459 indic="d", 23460 indicmark="t", 23461 indicorder="as", 23462 linebreak="cm", 23463 unicodeslot=0xAC5, 23464 }, 23465 [0xAC7]={ 23466 category="mn", 23467 description="GUJARATI VOWEL SIGN E", 23468 direction="nsm", 23469 indic="d", 23470 indicmark="t", 23471 indicorder="as", 23472 linebreak="cm", 23473 unicodeslot=0xAC7, 23474 }, 23475 [0xAC8]={ 23476 category="mn", 23477 description="GUJARATI VOWEL SIGN AI", 23478 direction="nsm", 23479 indic="d", 23480 indicmark="t", 23481 indicorder="as", 23482 linebreak="cm", 23483 unicodeslot=0xAC8, 23484 }, 23485 [0xAC9]={ 23486 category="mc", 23487 description="GUJARATI VOWEL SIGN CANDRA O", 23488 direction="l", 23489 indic="d", 23490 indicmark="r", 23491 indicorder="ap", 23492 linebreak="cm", 23493 unicodeslot=0xAC9, 23494 }, 23495 [0xACB]={ 23496 category="mc", 23497 description="GUJARATI VOWEL SIGN O", 23498 direction="l", 23499 indic="d", 23500 indicmark="r", 23501 indicorder="ap", 23502 linebreak="cm", 23503 unicodeslot=0xACB, 23504 }, 23505 [0xACC]={ 23506 category="mc", 23507 description="GUJARATI VOWEL SIGN AU", 23508 direction="l", 23509 indic="d", 23510 indicmark="r", 23511 indicorder="ap", 23512 linebreak="cm", 23513 unicodeslot=0xACC, 23514 }, 23515 [0xACD]={ 23516 category="mn", 23517 combining=0x9, 23518 description="GUJARATI SIGN VIRAMA", 23519 direction="nsm", 23520 indic="o", 23521 indicclass="halant", 23522 indicmark="b", 23523 linebreak="cm", 23524 unicodeslot=0xACD, 23525 }, 23526 [0xAD0]={ 23527 category="lo", 23528 description="GUJARATI OM", 23529 direction="l", 23530 indic="o", 23531 linebreak="al", 23532 unicodeslot=0xAD0, 23533 }, 23534 [0xAE0]={ 23535 category="lo", 23536 description="GUJARATI LETTER VOCALIC RR", 23537 direction="l", 23538 indic="i", 23539 linebreak="al", 23540 unicodeslot=0xAE0, 23541 }, 23542 [0xAE1]={ 23543 category="lo", 23544 description="GUJARATI LETTER VOCALIC LL", 23545 direction="l", 23546 indic="i", 23547 linebreak="al", 23548 unicodeslot=0xAE1, 23549 }, 23550 [0xAE2]={ 23551 category="mn", 23552 description="GUJARATI VOWEL SIGN VOCALIC L", 23553 direction="nsm", 23554 indic="i", 23555 indicorder="ap", 23556 linebreak="cm", 23557 unicodeslot=0xAE2, 23558 }, 23559 [0xAE3]={ 23560 category="mn", 23561 description="GUJARATI VOWEL SIGN VOCALIC LL", 23562 direction="nsm", 23563 indic="i", 23564 indicorder="ap", 23565 linebreak="cm", 23566 unicodeslot=0xAE3, 23567 }, 23568 [0xAE6]={ 23569 category="nd", 23570 description="GUJARATI DIGIT ZERO", 23571 direction="l", 23572 indic="o", 23573 linebreak="nu", 23574 unicodeslot=0xAE6, 23575 }, 23576 [0xAE7]={ 23577 category="nd", 23578 description="GUJARATI DIGIT ONE", 23579 direction="l", 23580 indic="o", 23581 linebreak="nu", 23582 unicodeslot=0xAE7, 23583 }, 23584 [0xAE8]={ 23585 category="nd", 23586 description="GUJARATI DIGIT TWO", 23587 direction="l", 23588 indic="o", 23589 linebreak="nu", 23590 unicodeslot=0xAE8, 23591 }, 23592 [0xAE9]={ 23593 category="nd", 23594 description="GUJARATI DIGIT THREE", 23595 direction="l", 23596 indic="o", 23597 linebreak="nu", 23598 unicodeslot=0xAE9, 23599 }, 23600 [0xAEA]={ 23601 category="nd", 23602 description="GUJARATI DIGIT FOUR", 23603 direction="l", 23604 indic="o", 23605 linebreak="nu", 23606 unicodeslot=0xAEA, 23607 }, 23608 [0xAEB]={ 23609 category="nd", 23610 description="GUJARATI DIGIT FIVE", 23611 direction="l", 23612 indic="o", 23613 linebreak="nu", 23614 unicodeslot=0xAEB, 23615 }, 23616 [0xAEC]={ 23617 category="nd", 23618 description="GUJARATI DIGIT SIX", 23619 direction="l", 23620 indic="o", 23621 linebreak="nu", 23622 unicodeslot=0xAEC, 23623 }, 23624 [0xAED]={ 23625 category="nd", 23626 description="GUJARATI DIGIT SEVEN", 23627 direction="l", 23628 indic="o", 23629 linebreak="nu", 23630 unicodeslot=0xAED, 23631 }, 23632 [0xAEE]={ 23633 category="nd", 23634 description="GUJARATI DIGIT EIGHT", 23635 direction="l", 23636 indic="o", 23637 linebreak="nu", 23638 unicodeslot=0xAEE, 23639 }, 23640 [0xAEF]={ 23641 category="nd", 23642 description="GUJARATI DIGIT NINE", 23643 direction="l", 23644 indic="o", 23645 linebreak="nu", 23646 unicodeslot=0xAEF, 23647 }, 23648 [0xAF0]={ 23649 category="po", 23650 description="GUJARATI ABBREVIATION SIGN", 23651 direction="l", 23652 indic="o", 23653 linebreak="al", 23654 unicodeslot=0xAF0, 23655 }, 23656 [0xAF1]={ 23657 category="sc", 23658 description="GUJARATI RUPEE SIGN", 23659 direction="et", 23660 indic="o", 23661 linebreak="pr", 23662 unicodeslot=0xAF1, 23663 }, 23664 [0xAF9]={ 23665 category="lo", 23666 description="GUJARATI LETTER ZHA", 23667 direction="l", 23668 indic="o", 23669 linebreak="al", 23670 unicodeslot=0xAF9, 23671 }, 23672 [0xAFA]={ 23673 category="mn", 23674 description="GUJARATI SIGN SUKUN", 23675 direction="nsm", 23676 indic="o", 23677 linebreak="cm", 23678 unicodeslot=0xAFA, 23679 }, 23680 [0xAFB]={ 23681 category="mn", 23682 description="GUJARATI SIGN SHADDA", 23683 direction="nsm", 23684 indic="o", 23685 linebreak="cm", 23686 unicodeslot=0xAFB, 23687 }, 23688 [0xAFC]={ 23689 category="mn", 23690 description="GUJARATI SIGN MADDAH", 23691 direction="nsm", 23692 indic="o", 23693 linebreak="cm", 23694 unicodeslot=0xAFC, 23695 }, 23696 [0xAFD]={ 23697 category="mn", 23698 description="GUJARATI SIGN THREE-DOT NUKTA ABOVE", 23699 direction="nsm", 23700 indic="o", 23701 linebreak="cm", 23702 unicodeslot=0xAFD, 23703 }, 23704 [0xAFE]={ 23705 category="mn", 23706 description="GUJARATI SIGN CIRCLE NUKTA ABOVE", 23707 direction="nsm", 23708 indic="o", 23709 linebreak="cm", 23710 unicodeslot=0xAFE, 23711 }, 23712 [0xAFF]={ 23713 category="mn", 23714 description="GUJARATI SIGN TWO-CIRCLE NUKTA ABOVE", 23715 direction="nsm", 23716 indic="o", 23717 linebreak="cm", 23718 unicodeslot=0xAFF, 23719 }, 23720 [0xB01]={ 23721 category="mn", 23722 description="ORIYA SIGN CANDRABINDU", 23723 direction="nsm", 23724 indic="o", 23725 indicorder="bs", 23726 linebreak="cm", 23727 unicodeslot=0xB01, 23728 }, 23729 [0xB02]={ 23730 category="mc", 23731 description="ORIYA SIGN ANUSVARA", 23732 direction="l", 23733 indic="o", 23734 linebreak="cm", 23735 unicodeslot=0xB02, 23736 }, 23737 [0xB03]={ 23738 category="mc", 23739 description="ORIYA SIGN VISARGA", 23740 direction="l", 23741 indic="o", 23742 linebreak="cm", 23743 unicodeslot=0xB03, 23744 }, 23745 [0xB05]={ 23746 category="lo", 23747 description="ORIYA LETTER A", 23748 direction="l", 23749 indic="i", 23750 linebreak="al", 23751 unicodeslot=0xB05, 23752 }, 23753 [0xB06]={ 23754 category="lo", 23755 description="ORIYA LETTER AA", 23756 direction="l", 23757 indic="i", 23758 linebreak="al", 23759 unicodeslot=0xB06, 23760 }, 23761 [0xB07]={ 23762 category="lo", 23763 description="ORIYA LETTER I", 23764 direction="l", 23765 indic="i", 23766 linebreak="al", 23767 unicodeslot=0xB07, 23768 }, 23769 [0xB08]={ 23770 category="lo", 23771 description="ORIYA LETTER II", 23772 direction="l", 23773 indic="i", 23774 linebreak="al", 23775 unicodeslot=0xB08, 23776 }, 23777 [0xB09]={ 23778 category="lo", 23779 description="ORIYA LETTER U", 23780 direction="l", 23781 indic="i", 23782 linebreak="al", 23783 unicodeslot=0xB09, 23784 }, 23785 [0xB0A]={ 23786 category="lo", 23787 description="ORIYA LETTER UU", 23788 direction="l", 23789 indic="i", 23790 linebreak="al", 23791 unicodeslot=0xB0A, 23792 }, 23793 [0xB0B]={ 23794 category="lo", 23795 description="ORIYA LETTER VOCALIC R", 23796 direction="l", 23797 indic="i", 23798 linebreak="al", 23799 unicodeslot=0xB0B, 23800 }, 23801 [0xB0C]={ 23802 category="lo", 23803 description="ORIYA LETTER VOCALIC L", 23804 direction="l", 23805 indic="i", 23806 linebreak="al", 23807 unicodeslot=0xB0C, 23808 }, 23809 [0xB0F]={ 23810 category="lo", 23811 description="ORIYA LETTER E", 23812 direction="l", 23813 indic="i", 23814 linebreak="al", 23815 unicodeslot=0xB0F, 23816 }, 23817 [0xB10]={ 23818 category="lo", 23819 description="ORIYA LETTER AI", 23820 direction="l", 23821 indic="i", 23822 linebreak="al", 23823 unicodeslot=0xB10, 23824 }, 23825 [0xB13]={ 23826 category="lo", 23827 description="ORIYA LETTER O", 23828 direction="l", 23829 indic="i", 23830 linebreak="al", 23831 unicodeslot=0xB13, 23832 }, 23833 [0xB14]={ 23834 category="lo", 23835 description="ORIYA LETTER AU", 23836 direction="l", 23837 indic="i", 23838 linebreak="al", 23839 unicodeslot=0xB14, 23840 }, 23841 [0xB15]={ 23842 category="lo", 23843 description="ORIYA LETTER KA", 23844 direction="l", 23845 indic="c", 23846 linebreak="al", 23847 unicodeslot=0xB15, 23848 }, 23849 [0xB16]={ 23850 category="lo", 23851 description="ORIYA LETTER KHA", 23852 direction="l", 23853 indic="c", 23854 linebreak="al", 23855 unicodeslot=0xB16, 23856 }, 23857 [0xB17]={ 23858 category="lo", 23859 description="ORIYA LETTER GA", 23860 direction="l", 23861 indic="c", 23862 linebreak="al", 23863 unicodeslot=0xB17, 23864 }, 23865 [0xB18]={ 23866 category="lo", 23867 description="ORIYA LETTER GHA", 23868 direction="l", 23869 indic="c", 23870 linebreak="al", 23871 unicodeslot=0xB18, 23872 }, 23873 [0xB19]={ 23874 category="lo", 23875 description="ORIYA LETTER NGA", 23876 direction="l", 23877 indic="c", 23878 linebreak="al", 23879 unicodeslot=0xB19, 23880 }, 23881 [0xB1A]={ 23882 category="lo", 23883 description="ORIYA LETTER CA", 23884 direction="l", 23885 indic="c", 23886 linebreak="al", 23887 unicodeslot=0xB1A, 23888 }, 23889 [0xB1B]={ 23890 category="lo", 23891 description="ORIYA LETTER CHA", 23892 direction="l", 23893 indic="c", 23894 linebreak="al", 23895 unicodeslot=0xB1B, 23896 }, 23897 [0xB1C]={ 23898 category="lo", 23899 description="ORIYA LETTER JA", 23900 direction="l", 23901 indic="c", 23902 linebreak="al", 23903 unicodeslot=0xB1C, 23904 }, 23905 [0xB1D]={ 23906 category="lo", 23907 description="ORIYA LETTER JHA", 23908 direction="l", 23909 indic="c", 23910 linebreak="al", 23911 unicodeslot=0xB1D, 23912 }, 23913 [0xB1E]={ 23914 category="lo", 23915 description="ORIYA LETTER NYA", 23916 direction="l", 23917 indic="c", 23918 linebreak="al", 23919 unicodeslot=0xB1E, 23920 }, 23921 [0xB1F]={ 23922 category="lo", 23923 description="ORIYA LETTER TTA", 23924 direction="l", 23925 indic="c", 23926 linebreak="al", 23927 unicodeslot=0xB1F, 23928 }, 23929 [0xB20]={ 23930 category="lo", 23931 description="ORIYA LETTER TTHA", 23932 direction="l", 23933 indic="c", 23934 linebreak="al", 23935 unicodeslot=0xB20, 23936 }, 23937 [0xB21]={ 23938 category="lo", 23939 description="ORIYA LETTER DDA", 23940 direction="l", 23941 indic="c", 23942 linebreak="al", 23943 unicodeslot=0xB21, 23944 }, 23945 [0xB22]={ 23946 category="lo", 23947 description="ORIYA LETTER DDHA", 23948 direction="l", 23949 indic="c", 23950 linebreak="al", 23951 unicodeslot=0xB22, 23952 }, 23953 [0xB23]={ 23954 category="lo", 23955 description="ORIYA LETTER NNA", 23956 direction="l", 23957 indic="c", 23958 linebreak="al", 23959 unicodeslot=0xB23, 23960 }, 23961 [0xB24]={ 23962 category="lo", 23963 description="ORIYA LETTER TA", 23964 direction="l", 23965 indic="c", 23966 linebreak="al", 23967 unicodeslot=0xB24, 23968 }, 23969 [0xB25]={ 23970 category="lo", 23971 description="ORIYA LETTER THA", 23972 direction="l", 23973 indic="c", 23974 linebreak="al", 23975 unicodeslot=0xB25, 23976 }, 23977 [0xB26]={ 23978 category="lo", 23979 description="ORIYA LETTER DA", 23980 direction="l", 23981 indic="c", 23982 linebreak="al", 23983 unicodeslot=0xB26, 23984 }, 23985 [0xB27]={ 23986 category="lo", 23987 description="ORIYA LETTER DHA", 23988 direction="l", 23989 indic="c", 23990 linebreak="al", 23991 unicodeslot=0xB27, 23992 }, 23993 [0xB28]={ 23994 category="lo", 23995 description="ORIYA LETTER NA", 23996 direction="l", 23997 indic="c", 23998 linebreak="al", 23999 unicodeslot=0xB28, 24000 }, 24001 [0xB2A]={ 24002 category="lo", 24003 description="ORIYA LETTER PA", 24004 direction="l", 24005 indic="c", 24006 linebreak="al", 24007 unicodeslot=0xB2A, 24008 }, 24009 [0xB2B]={ 24010 category="lo", 24011 description="ORIYA LETTER PHA", 24012 direction="l", 24013 indic="c", 24014 linebreak="al", 24015 unicodeslot=0xB2B, 24016 }, 24017 [0xB2C]={ 24018 category="lo", 24019 description="ORIYA LETTER BA", 24020 direction="l", 24021 indic="c", 24022 linebreak="al", 24023 unicodeslot=0xB2C, 24024 }, 24025 [0xB2D]={ 24026 category="lo", 24027 description="ORIYA LETTER BHA", 24028 direction="l", 24029 indic="c", 24030 linebreak="al", 24031 unicodeslot=0xB2D, 24032 }, 24033 [0xB2E]={ 24034 category="lo", 24035 description="ORIYA LETTER MA", 24036 direction="l", 24037 indic="c", 24038 linebreak="al", 24039 unicodeslot=0xB2E, 24040 }, 24041 [0xB2F]={ 24042 category="lo", 24043 description="ORIYA LETTER YA", 24044 direction="l", 24045 indic="c", 24046 linebreak="al", 24047 unicodeslot=0xB2F, 24048 }, 24049 [0xB30]={ 24050 category="lo", 24051 description="ORIYA LETTER RA", 24052 direction="l", 24053 indic="c", 24054 indicclass="ra", 24055 indicorder="am", 24056 linebreak="al", 24057 unicodeslot=0xB30, 24058 }, 24059 [0xB32]={ 24060 category="lo", 24061 description="ORIYA LETTER LA", 24062 direction="l", 24063 indic="c", 24064 linebreak="al", 24065 unicodeslot=0xB32, 24066 }, 24067 [0xB33]={ 24068 category="lo", 24069 description="ORIYA LETTER LLA", 24070 direction="l", 24071 indic="c", 24072 linebreak="al", 24073 unicodeslot=0xB33, 24074 }, 24075 [0xB35]={ 24076 category="lo", 24077 description="ORIYA LETTER VA", 24078 direction="l", 24079 indic="c", 24080 linebreak="al", 24081 unicodeslot=0xB35, 24082 }, 24083 [0xB36]={ 24084 category="lo", 24085 description="ORIYA LETTER SHA", 24086 direction="l", 24087 indic="c", 24088 linebreak="al", 24089 unicodeslot=0xB36, 24090 }, 24091 [0xB37]={ 24092 category="lo", 24093 description="ORIYA LETTER SSA", 24094 direction="l", 24095 indic="c", 24096 linebreak="al", 24097 unicodeslot=0xB37, 24098 }, 24099 [0xB38]={ 24100 category="lo", 24101 description="ORIYA LETTER SA", 24102 direction="l", 24103 indic="c", 24104 linebreak="al", 24105 unicodeslot=0xB38, 24106 }, 24107 [0xB39]={ 24108 category="lo", 24109 description="ORIYA LETTER HA", 24110 direction="l", 24111 indic="c", 24112 linebreak="al", 24113 unicodeslot=0xB39, 24114 }, 24115 [0xB3C]={ 24116 category="mn", 24117 combining=0x7, 24118 description="ORIYA SIGN NUKTA", 24119 direction="nsm", 24120 indic="o", 24121 indicclass="nukta", 24122 indicmark="b", 24123 linebreak="cm", 24124 unicodeslot=0xB3C, 24125 }, 24126 [0xB3D]={ 24127 category="lo", 24128 description="ORIYA SIGN AVAGRAHA", 24129 direction="l", 24130 indic="o", 24131 linebreak="al", 24132 unicodeslot=0xB3D, 24133 }, 24134 [0xB3E]={ 24135 category="mc", 24136 description="ORIYA VOWEL SIGN AA", 24137 direction="l", 24138 indic="d", 24139 indicmark="r", 24140 indicorder="ap", 24141 linebreak="cm", 24142 unicodeslot=0xB3E, 24143 }, 24144 [0xB3F]={ 24145 category="mn", 24146 description="ORIYA VOWEL SIGN I", 24147 direction="nsm", 24148 indic="d", 24149 indicmark="t", 24150 indicorder="am", 24151 linebreak="cm", 24152 unicodeslot=0xB3F, 24153 }, 24154 [0xB40]={ 24155 category="mc", 24156 description="ORIYA VOWEL SIGN II", 24157 direction="l", 24158 indic="d", 24159 indicmark="r", 24160 indicorder="ap", 24161 linebreak="cm", 24162 unicodeslot=0xB40, 24163 }, 24164 [0xB41]={ 24165 category="mn", 24166 description="ORIYA VOWEL SIGN U", 24167 direction="nsm", 24168 indic="d", 24169 indicmark="b", 24170 indicorder="as", 24171 linebreak="cm", 24172 unicodeslot=0xB41, 24173 }, 24174 [0xB42]={ 24175 category="mn", 24176 description="ORIYA VOWEL SIGN UU", 24177 direction="nsm", 24178 indic="d", 24179 indicmark="b", 24180 indicorder="as", 24181 linebreak="cm", 24182 unicodeslot=0xB42, 24183 }, 24184 [0xB43]={ 24185 category="mn", 24186 description="ORIYA VOWEL SIGN VOCALIC R", 24187 direction="nsm", 24188 indic="d", 24189 indicmark="b", 24190 indicorder="as", 24191 linebreak="cm", 24192 unicodeslot=0xB43, 24193 }, 24194 [0xB44]={ 24195 category="mn", 24196 description="ORIYA VOWEL SIGN VOCALIC RR", 24197 direction="nsm", 24198 indic="d", 24199 indicmark="b", 24200 linebreak="cm", 24201 unicodeslot=0xB44, 24202 }, 24203 [0xB47]={ 24204 category="mc", 24205 description="ORIYA VOWEL SIGN E", 24206 direction="l", 24207 indic="d", 24208 indicmark="l", 24209 indicorder="bh", 24210 linebreak="cm", 24211 unicodeslot=0xB47, 24212 }, 24213 [0xB48]={ 24214 category="mc", 24215 description="ORIYA VOWEL SIGN AI", 24216 direction="l", 24217 indic="d", 24218 indicmark="s", 24219 linebreak="cm", 24220 specials={ "char", 0xB47, 0xB56 }, 24221 unicodeslot=0xB48, 24222 }, 24223 [0xB4B]={ 24224 category="mc", 24225 description="ORIYA VOWEL SIGN O", 24226 direction="l", 24227 indic="d", 24228 indicmark="s", 24229 linebreak="cm", 24230 specials={ "char", 0xB47, 0xB3E }, 24231 unicodeslot=0xB4B, 24232 }, 24233 [0xB4C]={ 24234 category="mc", 24235 description="ORIYA VOWEL SIGN AU", 24236 direction="l", 24237 indic="d", 24238 indicmark="s", 24239 linebreak="cm", 24240 specials={ "char", 0xB47, 0xB57 }, 24241 unicodeslot=0xB4C, 24242 }, 24243 [0xB4D]={ 24244 category="mn", 24245 combining=0x9, 24246 description="ORIYA SIGN VIRAMA", 24247 direction="nsm", 24248 indic="o", 24249 indicclass="halant", 24250 indicmark="b", 24251 linebreak="cm", 24252 unicodeslot=0xB4D, 24253 }, 24254 [0xB55]={ 24255 category="mn", 24256 comment="todo: indic check", 24257 description="ORIYA SIGN OVERLINE", 24258 direction="nsm", 24259 linebreak="cm", 24260 unicodeslot=0xB55, 24261 }, 24262 [0xB56]={ 24263 category="mn", 24264 description="ORIYA AI LENGTH MARK", 24265 direction="nsm", 24266 indic="o", 24267 indicorder="am", 24268 linebreak="cm", 24269 unicodeslot=0xB56, 24270 }, 24271 [0xB57]={ 24272 category="mc", 24273 description="ORIYA AU LENGTH MARK", 24274 direction="l", 24275 indic="o", 24276 indicorder="ap", 24277 linebreak="cm", 24278 unicodeslot=0xB57, 24279 }, 24280 [0xB5C]={ 24281 category="lo", 24282 description="ORIYA LETTER RRA", 24283 direction="l", 24284 indic="c", 24285 linebreak="al", 24286 specials={ "char", 0xB21, 0xB3C }, 24287 unicodeslot=0xB5C, 24288 }, 24289 [0xB5D]={ 24290 category="lo", 24291 description="ORIYA LETTER RHA", 24292 direction="l", 24293 indic="c", 24294 linebreak="al", 24295 specials={ "char", 0xB22, 0xB3C }, 24296 unicodeslot=0xB5D, 24297 }, 24298 [0xB5F]={ 24299 category="lo", 24300 description="ORIYA LETTER YYA", 24301 direction="l", 24302 indic="o", 24303 linebreak="al", 24304 unicodeslot=0xB5F, 24305 }, 24306 [0xB60]={ 24307 category="lo", 24308 description="ORIYA LETTER VOCALIC RR", 24309 direction="l", 24310 indic="i", 24311 linebreak="al", 24312 unicodeslot=0xB60, 24313 }, 24314 [0xB61]={ 24315 category="lo", 24316 description="ORIYA LETTER VOCALIC LL", 24317 direction="l", 24318 indic="i", 24319 linebreak="al", 24320 unicodeslot=0xB61, 24321 }, 24322 [0xB62]={ 24323 category="mn", 24324 description="ORIYA VOWEL SIGN VOCALIC L", 24325 direction="nsm", 24326 indic="d", 24327 indicmark="b", 24328 linebreak="cm", 24329 unicodeslot=0xB62, 24330 }, 24331 [0xB63]={ 24332 category="mn", 24333 description="ORIYA VOWEL SIGN VOCALIC LL", 24334 direction="nsm", 24335 indic="d", 24336 indicmark="b", 24337 linebreak="cm", 24338 unicodeslot=0xB63, 24339 }, 24340 [0xB66]={ 24341 category="nd", 24342 description="ORIYA DIGIT ZERO", 24343 direction="l", 24344 indic="o", 24345 linebreak="nu", 24346 unicodeslot=0xB66, 24347 }, 24348 [0xB67]={ 24349 category="nd", 24350 description="ORIYA DIGIT ONE", 24351 direction="l", 24352 indic="o", 24353 linebreak="nu", 24354 unicodeslot=0xB67, 24355 }, 24356 [0xB68]={ 24357 category="nd", 24358 description="ORIYA DIGIT TWO", 24359 direction="l", 24360 indic="o", 24361 linebreak="nu", 24362 unicodeslot=0xB68, 24363 }, 24364 [0xB69]={ 24365 category="nd", 24366 description="ORIYA DIGIT THREE", 24367 direction="l", 24368 indic="o", 24369 linebreak="nu", 24370 unicodeslot=0xB69, 24371 }, 24372 [0xB6A]={ 24373 category="nd", 24374 description="ORIYA DIGIT FOUR", 24375 direction="l", 24376 indic="o", 24377 linebreak="nu", 24378 unicodeslot=0xB6A, 24379 }, 24380 [0xB6B]={ 24381 category="nd", 24382 description="ORIYA DIGIT FIVE", 24383 direction="l", 24384 indic="o", 24385 linebreak="nu", 24386 unicodeslot=0xB6B, 24387 }, 24388 [0xB6C]={ 24389 category="nd", 24390 description="ORIYA DIGIT SIX", 24391 direction="l", 24392 indic="o", 24393 linebreak="nu", 24394 unicodeslot=0xB6C, 24395 }, 24396 [0xB6D]={ 24397 category="nd", 24398 description="ORIYA DIGIT SEVEN", 24399 direction="l", 24400 indic="o", 24401 linebreak="nu", 24402 unicodeslot=0xB6D, 24403 }, 24404 [0xB6E]={ 24405 category="nd", 24406 description="ORIYA DIGIT EIGHT", 24407 direction="l", 24408 indic="o", 24409 linebreak="nu", 24410 unicodeslot=0xB6E, 24411 }, 24412 [0xB6F]={ 24413 category="nd", 24414 description="ORIYA DIGIT NINE", 24415 direction="l", 24416 indic="o", 24417 linebreak="nu", 24418 unicodeslot=0xB6F, 24419 }, 24420 [0xB70]={ 24421 category="so", 24422 description="ORIYA ISSHAR", 24423 direction="l", 24424 indic="o", 24425 linebreak="al", 24426 unicodeslot=0xB70, 24427 }, 24428 [0xB71]={ 24429 category="lo", 24430 description="ORIYA LETTER WA", 24431 direction="l", 24432 indic="c", 24433 linebreak="al", 24434 unicodeslot=0xB71, 24435 }, 24436 [0xB72]={ 24437 category="no", 24438 description="ORIYA FRACTION ONE QUARTER", 24439 direction="l", 24440 indic="o", 24441 linebreak="al", 24442 unicodeslot=0xB72, 24443 }, 24444 [0xB73]={ 24445 category="no", 24446 description="ORIYA FRACTION ONE HALF", 24447 direction="l", 24448 indic="o", 24449 linebreak="al", 24450 unicodeslot=0xB73, 24451 }, 24452 [0xB74]={ 24453 category="no", 24454 description="ORIYA FRACTION THREE QUARTERS", 24455 direction="l", 24456 indic="o", 24457 linebreak="al", 24458 unicodeslot=0xB74, 24459 }, 24460 [0xB75]={ 24461 category="no", 24462 description="ORIYA FRACTION ONE SIXTEENTH", 24463 direction="l", 24464 indic="o", 24465 linebreak="al", 24466 unicodeslot=0xB75, 24467 }, 24468 [0xB76]={ 24469 category="no", 24470 description="ORIYA FRACTION ONE EIGHTH", 24471 direction="l", 24472 indic="o", 24473 linebreak="al", 24474 unicodeslot=0xB76, 24475 }, 24476 [0xB77]={ 24477 category="no", 24478 description="ORIYA FRACTION THREE SIXTEENTHS", 24479 direction="l", 24480 indic="o", 24481 linebreak="al", 24482 unicodeslot=0xB77, 24483 }, 24484 [0xB82]={ 24485 category="mn", 24486 description="TAMIL SIGN ANUSVARA", 24487 direction="nsm", 24488 indic="o", 24489 linebreak="cm", 24490 unicodeslot=0xB82, 24491 }, 24492 [0xB83]={ 24493 category="lo", 24494 description="TAMIL SIGN VISARGA", 24495 direction="l", 24496 indic="o", 24497 linebreak="al", 24498 synonyms={ "tamil aytham" }, 24499 unicodeslot=0xB83, 24500 }, 24501 [0xB85]={ 24502 category="lo", 24503 description="TAMIL LETTER A", 24504 direction="l", 24505 indic="i", 24506 linebreak="al", 24507 unicodeslot=0xB85, 24508 }, 24509 [0xB86]={ 24510 category="lo", 24511 description="TAMIL LETTER AA", 24512 direction="l", 24513 indic="i", 24514 linebreak="al", 24515 unicodeslot=0xB86, 24516 }, 24517 [0xB87]={ 24518 category="lo", 24519 description="TAMIL LETTER I", 24520 direction="l", 24521 indic="i", 24522 linebreak="al", 24523 unicodeslot=0xB87, 24524 }, 24525 [0xB88]={ 24526 category="lo", 24527 description="TAMIL LETTER II", 24528 direction="l", 24529 indic="i", 24530 linebreak="al", 24531 unicodeslot=0xB88, 24532 }, 24533 [0xB89]={ 24534 category="lo", 24535 description="TAMIL LETTER U", 24536 direction="l", 24537 indic="i", 24538 linebreak="al", 24539 unicodeslot=0xB89, 24540 }, 24541 [0xB8A]={ 24542 category="lo", 24543 description="TAMIL LETTER UU", 24544 direction="l", 24545 indic="i", 24546 linebreak="al", 24547 unicodeslot=0xB8A, 24548 }, 24549 [0xB8E]={ 24550 category="lo", 24551 description="TAMIL LETTER E", 24552 direction="l", 24553 indic="i", 24554 linebreak="al", 24555 unicodeslot=0xB8E, 24556 }, 24557 [0xB8F]={ 24558 category="lo", 24559 description="TAMIL LETTER EE", 24560 direction="l", 24561 indic="i", 24562 linebreak="al", 24563 unicodeslot=0xB8F, 24564 }, 24565 [0xB90]={ 24566 category="lo", 24567 description="TAMIL LETTER AI", 24568 direction="l", 24569 indic="i", 24570 linebreak="al", 24571 unicodeslot=0xB90, 24572 }, 24573 [0xB92]={ 24574 category="lo", 24575 description="TAMIL LETTER O", 24576 direction="l", 24577 indic="i", 24578 linebreak="al", 24579 unicodeslot=0xB92, 24580 }, 24581 [0xB93]={ 24582 category="lo", 24583 description="TAMIL LETTER OO", 24584 direction="l", 24585 indic="i", 24586 linebreak="al", 24587 unicodeslot=0xB93, 24588 }, 24589 [0xB94]={ 24590 category="lo", 24591 description="TAMIL LETTER AU", 24592 direction="l", 24593 indic="i", 24594 linebreak="al", 24595 specials={ "char", 0xB92, 0xBD7 }, 24596 unicodeslot=0xB94, 24597 }, 24598 [0xB95]={ 24599 category="lo", 24600 description="TAMIL LETTER KA", 24601 direction="l", 24602 indic="c", 24603 linebreak="al", 24604 unicodeslot=0xB95, 24605 }, 24606 [0xB99]={ 24607 category="lo", 24608 description="TAMIL LETTER NGA", 24609 direction="l", 24610 indic="c", 24611 linebreak="al", 24612 unicodeslot=0xB99, 24613 }, 24614 [0xB9A]={ 24615 category="lo", 24616 description="TAMIL LETTER CA", 24617 direction="l", 24618 indic="c", 24619 linebreak="al", 24620 unicodeslot=0xB9A, 24621 }, 24622 [0xB9C]={ 24623 category="lo", 24624 description="TAMIL LETTER JA", 24625 direction="l", 24626 indic="c", 24627 linebreak="al", 24628 unicodeslot=0xB9C, 24629 }, 24630 [0xB9E]={ 24631 category="lo", 24632 description="TAMIL LETTER NYA", 24633 direction="l", 24634 indic="c", 24635 linebreak="al", 24636 unicodeslot=0xB9E, 24637 }, 24638 [0xB9F]={ 24639 category="lo", 24640 description="TAMIL LETTER TTA", 24641 direction="l", 24642 indic="c", 24643 linebreak="al", 24644 unicodeslot=0xB9F, 24645 }, 24646 [0xBA3]={ 24647 category="lo", 24648 description="TAMIL LETTER NNA", 24649 direction="l", 24650 indic="c", 24651 linebreak="al", 24652 unicodeslot=0xBA3, 24653 }, 24654 [0xBA4]={ 24655 category="lo", 24656 description="TAMIL LETTER TA", 24657 direction="l", 24658 indic="c", 24659 linebreak="al", 24660 unicodeslot=0xBA4, 24661 }, 24662 [0xBA8]={ 24663 category="lo", 24664 description="TAMIL LETTER NA", 24665 direction="l", 24666 indic="c", 24667 linebreak="al", 24668 unicodeslot=0xBA8, 24669 }, 24670 [0xBA9]={ 24671 category="lo", 24672 description="TAMIL LETTER NNNA", 24673 direction="l", 24674 indic="c", 24675 linebreak="al", 24676 unicodeslot=0xBA9, 24677 }, 24678 [0xBAA]={ 24679 category="lo", 24680 description="TAMIL LETTER PA", 24681 direction="l", 24682 indic="c", 24683 linebreak="al", 24684 unicodeslot=0xBAA, 24685 }, 24686 [0xBAE]={ 24687 category="lo", 24688 description="TAMIL LETTER MA", 24689 direction="l", 24690 indic="c", 24691 linebreak="al", 24692 unicodeslot=0xBAE, 24693 }, 24694 [0xBAF]={ 24695 category="lo", 24696 description="TAMIL LETTER YA", 24697 direction="l", 24698 indic="c", 24699 linebreak="al", 24700 unicodeslot=0xBAF, 24701 }, 24702 [0xBB0]={ 24703 category="lo", 24704 description="TAMIL LETTER RA", 24705 direction="l", 24706 indic="c", 24707 indicclass="ra", 24708 indicorder="ap", 24709 linebreak="al", 24710 unicodeslot=0xBB0, 24711 }, 24712 [0xBB1]={ 24713 category="lo", 24714 description="TAMIL LETTER RRA", 24715 direction="l", 24716 indic="c", 24717 linebreak="al", 24718 unicodeslot=0xBB1, 24719 }, 24720 [0xBB2]={ 24721 category="lo", 24722 description="TAMIL LETTER LA", 24723 direction="l", 24724 indic="c", 24725 linebreak="al", 24726 unicodeslot=0xBB2, 24727 }, 24728 [0xBB3]={ 24729 category="lo", 24730 description="TAMIL LETTER LLA", 24731 direction="l", 24732 indic="c", 24733 linebreak="al", 24734 unicodeslot=0xBB3, 24735 }, 24736 [0xBB4]={ 24737 category="lo", 24738 description="TAMIL LETTER LLLA", 24739 direction="l", 24740 indic="c", 24741 linebreak="al", 24742 unicodeslot=0xBB4, 24743 }, 24744 [0xBB5]={ 24745 category="lo", 24746 description="TAMIL LETTER VA", 24747 direction="l", 24748 indic="c", 24749 linebreak="al", 24750 unicodeslot=0xBB5, 24751 }, 24752 [0xBB6]={ 24753 category="lo", 24754 description="TAMIL LETTER SHA", 24755 direction="l", 24756 indic="c", 24757 linebreak="al", 24758 unicodeslot=0xBB6, 24759 }, 24760 [0xBB7]={ 24761 category="lo", 24762 description="TAMIL LETTER SSA", 24763 direction="l", 24764 indic="c", 24765 linebreak="al", 24766 unicodeslot=0xBB7, 24767 }, 24768 [0xBB8]={ 24769 category="lo", 24770 description="TAMIL LETTER SA", 24771 direction="l", 24772 indic="c", 24773 linebreak="al", 24774 unicodeslot=0xBB8, 24775 }, 24776 [0xBB9]={ 24777 category="lo", 24778 description="TAMIL LETTER HA", 24779 direction="l", 24780 indic="c", 24781 linebreak="al", 24782 unicodeslot=0xBB9, 24783 }, 24784 [0xBBE]={ 24785 category="mc", 24786 description="TAMIL VOWEL SIGN AA", 24787 direction="l", 24788 indic="d", 24789 indicmark="r", 24790 indicorder="ap", 24791 linebreak="cm", 24792 unicodeslot=0xBBE, 24793 }, 24794 [0xBBF]={ 24795 category="mc", 24796 description="TAMIL VOWEL SIGN I", 24797 direction="l", 24798 indic="d", 24799 indicmark="r", 24800 indicorder="ap", 24801 linebreak="cm", 24802 unicodeslot=0xBBF, 24803 }, 24804 [0xBC0]={ 24805 category="mn", 24806 description="TAMIL VOWEL SIGN II", 24807 direction="nsm", 24808 indic="d", 24809 indicmark="t", 24810 indicorder="as", 24811 linebreak="cm", 24812 unicodeslot=0xBC0, 24813 }, 24814 [0xBC1]={ 24815 category="mc", 24816 description="TAMIL VOWEL SIGN U", 24817 direction="l", 24818 indic="d", 24819 indicmark="b", 24820 indicorder="ap", 24821 linebreak="cm", 24822 unicodeslot=0xBC1, 24823 }, 24824 [0xBC2]={ 24825 category="mc", 24826 description="TAMIL VOWEL SIGN UU", 24827 direction="l", 24828 indic="d", 24829 indicmark="b", 24830 indicorder="ap", 24831 linebreak="cm", 24832 unicodeslot=0xBC2, 24833 }, 24834 [0xBC6]={ 24835 category="mc", 24836 description="TAMIL VOWEL SIGN E", 24837 direction="l", 24838 indic="d", 24839 indicmark="l", 24840 indicorder="bm", 24841 linebreak="cm", 24842 unicodeslot=0xBC6, 24843 }, 24844 [0xBC7]={ 24845 category="mc", 24846 description="TAMIL VOWEL SIGN EE", 24847 direction="l", 24848 indic="d", 24849 indicmark="l", 24850 indicorder="bm", 24851 linebreak="cm", 24852 unicodeslot=0xBC7, 24853 }, 24854 [0xBC8]={ 24855 category="mc", 24856 description="TAMIL VOWEL SIGN AI", 24857 direction="l", 24858 indic="d", 24859 indicmark="l", 24860 indicorder="bm", 24861 linebreak="cm", 24862 unicodeslot=0xBC8, 24863 }, 24864 [0xBCA]={ 24865 category="mc", 24866 description="TAMIL VOWEL SIGN O", 24867 direction="l", 24868 indic="d", 24869 indicmark="s", 24870 linebreak="cm", 24871 specials={ "char", 0xBC6, 0xBBE }, 24872 unicodeslot=0xBCA, 24873 }, 24874 [0xBCB]={ 24875 category="mc", 24876 description="TAMIL VOWEL SIGN OO", 24877 direction="l", 24878 indic="d", 24879 indicmark="s", 24880 linebreak="cm", 24881 specials={ "char", 0xBC7, 0xBBE }, 24882 unicodeslot=0xBCB, 24883 }, 24884 [0xBCC]={ 24885 category="mc", 24886 description="TAMIL VOWEL SIGN AU", 24887 direction="l", 24888 indic="d", 24889 indicmark="s", 24890 linebreak="cm", 24891 specials={ "char", 0xBC6, 0xBD7 }, 24892 unicodeslot=0xBCC, 24893 }, 24894 [0xBCD]={ 24895 category="mn", 24896 combining=0x9, 24897 description="TAMIL SIGN VIRAMA", 24898 direction="nsm", 24899 indic="o", 24900 indicclass="halant", 24901 indicmark="t", 24902 linebreak="cm", 24903 unicodeslot=0xBCD, 24904 }, 24905 [0xBD0]={ 24906 category="lo", 24907 description="TAMIL OM", 24908 direction="l", 24909 indic="o", 24910 linebreak="al", 24911 unicodeslot=0xBD0, 24912 }, 24913 [0xBD7]={ 24914 category="mc", 24915 description="TAMIL AU LENGTH MARK", 24916 direction="l", 24917 indic="o", 24918 indicorder="ap", 24919 linebreak="cm", 24920 unicodeslot=0xBD7, 24921 }, 24922 [0xBE6]={ 24923 category="nd", 24924 description="TAMIL DIGIT ZERO", 24925 direction="l", 24926 indic="o", 24927 linebreak="nu", 24928 unicodeslot=0xBE6, 24929 }, 24930 [0xBE7]={ 24931 category="nd", 24932 description="TAMIL DIGIT ONE", 24933 direction="l", 24934 indic="o", 24935 linebreak="nu", 24936 unicodeslot=0xBE7, 24937 }, 24938 [0xBE8]={ 24939 category="nd", 24940 description="TAMIL DIGIT TWO", 24941 direction="l", 24942 indic="o", 24943 linebreak="nu", 24944 unicodeslot=0xBE8, 24945 }, 24946 [0xBE9]={ 24947 category="nd", 24948 description="TAMIL DIGIT THREE", 24949 direction="l", 24950 indic="o", 24951 linebreak="nu", 24952 unicodeslot=0xBE9, 24953 }, 24954 [0xBEA]={ 24955 category="nd", 24956 description="TAMIL DIGIT FOUR", 24957 direction="l", 24958 indic="o", 24959 linebreak="nu", 24960 unicodeslot=0xBEA, 24961 }, 24962 [0xBEB]={ 24963 category="nd", 24964 description="TAMIL DIGIT FIVE", 24965 direction="l", 24966 indic="o", 24967 linebreak="nu", 24968 unicodeslot=0xBEB, 24969 }, 24970 [0xBEC]={ 24971 category="nd", 24972 description="TAMIL DIGIT SIX", 24973 direction="l", 24974 indic="o", 24975 linebreak="nu", 24976 unicodeslot=0xBEC, 24977 }, 24978 [0xBED]={ 24979 category="nd", 24980 description="TAMIL DIGIT SEVEN", 24981 direction="l", 24982 indic="o", 24983 linebreak="nu", 24984 unicodeslot=0xBED, 24985 }, 24986 [0xBEE]={ 24987 category="nd", 24988 description="TAMIL DIGIT EIGHT", 24989 direction="l", 24990 indic="o", 24991 linebreak="nu", 24992 unicodeslot=0xBEE, 24993 }, 24994 [0xBEF]={ 24995 category="nd", 24996 description="TAMIL DIGIT NINE", 24997 direction="l", 24998 indic="o", 24999 linebreak="nu", 25000 unicodeslot=0xBEF, 25001 }, 25002 [0xBF0]={ 25003 category="no", 25004 description="TAMIL NUMBER TEN", 25005 direction="l", 25006 indic="o", 25007 linebreak="al", 25008 unicodeslot=0xBF0, 25009 }, 25010 [0xBF1]={ 25011 category="no", 25012 description="TAMIL NUMBER ONE HUNDRED", 25013 direction="l", 25014 indic="o", 25015 linebreak="al", 25016 unicodeslot=0xBF1, 25017 }, 25018 [0xBF2]={ 25019 category="no", 25020 description="TAMIL NUMBER ONE THOUSAND", 25021 direction="l", 25022 indic="o", 25023 linebreak="al", 25024 unicodeslot=0xBF2, 25025 }, 25026 [0xBF3]={ 25027 category="so", 25028 description="TAMIL DAY SIGN", 25029 direction="on", 25030 indic="o", 25031 linebreak="al", 25032 synonyms={ "tamil naal" }, 25033 unicodeslot=0xBF3, 25034 }, 25035 [0xBF4]={ 25036 category="so", 25037 description="TAMIL MONTH SIGN", 25038 direction="on", 25039 indic="o", 25040 linebreak="al", 25041 synonyms={ "tamil maatham" }, 25042 unicodeslot=0xBF4, 25043 }, 25044 [0xBF5]={ 25045 category="so", 25046 description="TAMIL YEAR SIGN", 25047 direction="on", 25048 indic="o", 25049 linebreak="al", 25050 synonyms={ "tamil varudam" }, 25051 unicodeslot=0xBF5, 25052 }, 25053 [0xBF6]={ 25054 category="so", 25055 description="TAMIL DEBIT SIGN", 25056 direction="on", 25057 indic="o", 25058 linebreak="al", 25059 synonyms={ "tamil patru" }, 25060 unicodeslot=0xBF6, 25061 }, 25062 [0xBF7]={ 25063 category="so", 25064 description="TAMIL CREDIT SIGN", 25065 direction="on", 25066 indic="o", 25067 linebreak="al", 25068 synonyms={ "tamil varavu" }, 25069 unicodeslot=0xBF7, 25070 }, 25071 [0xBF8]={ 25072 category="so", 25073 description="TAMIL AS ABOVE SIGN", 25074 direction="on", 25075 indic="o", 25076 linebreak="al", 25077 synonyms={ "tamil merpadi" }, 25078 unicodeslot=0xBF8, 25079 }, 25080 [0xBF9]={ 25081 category="sc", 25082 description="TAMIL RUPEE SIGN", 25083 direction="et", 25084 indic="o", 25085 linebreak="pr", 25086 synonyms={ "tamil rupai" }, 25087 unicodeslot=0xBF9, 25088 }, 25089 [0xBFA]={ 25090 category="so", 25091 description="TAMIL NUMBER SIGN", 25092 direction="on", 25093 indic="o", 25094 linebreak="al", 25095 synonyms={ "tamil enn" }, 25096 unicodeslot=0xBFA, 25097 }, 25098 [0xC00]={ 25099 category="mn", 25100 description="TELUGU SIGN COMBINING CANDRABINDU ABOVE", 25101 direction="nsm", 25102 indic="o", 25103 linebreak="cm", 25104 unicodeslot=0xC00, 25105 }, 25106 [0xC01]={ 25107 category="mc", 25108 description="TELUGU SIGN CANDRABINDU", 25109 direction="l", 25110 indic="o", 25111 linebreak="cm", 25112 unicodeslot=0xC01, 25113 }, 25114 [0xC02]={ 25115 category="mc", 25116 description="TELUGU SIGN ANUSVARA", 25117 direction="l", 25118 indic="o", 25119 linebreak="cm", 25120 synonyms={ "telugu sunna" }, 25121 unicodeslot=0xC02, 25122 }, 25123 [0xC03]={ 25124 category="mc", 25125 description="TELUGU SIGN VISARGA", 25126 direction="l", 25127 indic="o", 25128 linebreak="cm", 25129 unicodeslot=0xC03, 25130 }, 25131 [0xC04]={ 25132 category="mn", 25133 description="TELUGU SIGN COMBINING ANUSVARA ABOVE", 25134 direction="nsm", 25135 linebreak="cm", 25136 unicodeslot=0xC04, 25137 }, 25138 [0xC05]={ 25139 category="lo", 25140 description="TELUGU LETTER A", 25141 direction="l", 25142 indic="i", 25143 linebreak="al", 25144 unicodeslot=0xC05, 25145 }, 25146 [0xC06]={ 25147 category="lo", 25148 description="TELUGU LETTER AA", 25149 direction="l", 25150 indic="i", 25151 linebreak="al", 25152 unicodeslot=0xC06, 25153 }, 25154 [0xC07]={ 25155 category="lo", 25156 description="TELUGU LETTER I", 25157 direction="l", 25158 indic="i", 25159 linebreak="al", 25160 unicodeslot=0xC07, 25161 }, 25162 [0xC08]={ 25163 category="lo", 25164 description="TELUGU LETTER II", 25165 direction="l", 25166 indic="i", 25167 linebreak="al", 25168 unicodeslot=0xC08, 25169 }, 25170 [0xC09]={ 25171 category="lo", 25172 description="TELUGU LETTER U", 25173 direction="l", 25174 indic="i", 25175 linebreak="al", 25176 unicodeslot=0xC09, 25177 }, 25178 [0xC0A]={ 25179 category="lo", 25180 description="TELUGU LETTER UU", 25181 direction="l", 25182 indic="i", 25183 linebreak="al", 25184 unicodeslot=0xC0A, 25185 }, 25186 [0xC0B]={ 25187 category="lo", 25188 description="TELUGU LETTER VOCALIC R", 25189 direction="l", 25190 indic="i", 25191 linebreak="al", 25192 unicodeslot=0xC0B, 25193 }, 25194 [0xC0C]={ 25195 category="lo", 25196 description="TELUGU LETTER VOCALIC L", 25197 direction="l", 25198 indic="i", 25199 linebreak="al", 25200 unicodeslot=0xC0C, 25201 }, 25202 [0xC0E]={ 25203 category="lo", 25204 description="TELUGU LETTER E", 25205 direction="l", 25206 indic="i", 25207 linebreak="al", 25208 unicodeslot=0xC0E, 25209 }, 25210 [0xC0F]={ 25211 category="lo", 25212 description="TELUGU LETTER EE", 25213 direction="l", 25214 indic="i", 25215 linebreak="al", 25216 unicodeslot=0xC0F, 25217 }, 25218 [0xC10]={ 25219 category="lo", 25220 description="TELUGU LETTER AI", 25221 direction="l", 25222 indic="i", 25223 linebreak="al", 25224 unicodeslot=0xC10, 25225 }, 25226 [0xC12]={ 25227 category="lo", 25228 description="TELUGU LETTER O", 25229 direction="l", 25230 indic="i", 25231 linebreak="al", 25232 unicodeslot=0xC12, 25233 }, 25234 [0xC13]={ 25235 category="lo", 25236 description="TELUGU LETTER OO", 25237 direction="l", 25238 indic="i", 25239 linebreak="al", 25240 unicodeslot=0xC13, 25241 }, 25242 [0xC14]={ 25243 category="lo", 25244 description="TELUGU LETTER AU", 25245 direction="l", 25246 indic="i", 25247 linebreak="al", 25248 unicodeslot=0xC14, 25249 }, 25250 [0xC15]={ 25251 category="lo", 25252 description="TELUGU LETTER KA", 25253 direction="l", 25254 indic="c", 25255 linebreak="al", 25256 unicodeslot=0xC15, 25257 }, 25258 [0xC16]={ 25259 category="lo", 25260 description="TELUGU LETTER KHA", 25261 direction="l", 25262 indic="c", 25263 linebreak="al", 25264 unicodeslot=0xC16, 25265 }, 25266 [0xC17]={ 25267 category="lo", 25268 description="TELUGU LETTER GA", 25269 direction="l", 25270 indic="c", 25271 linebreak="al", 25272 unicodeslot=0xC17, 25273 }, 25274 [0xC18]={ 25275 category="lo", 25276 description="TELUGU LETTER GHA", 25277 direction="l", 25278 indic="c", 25279 linebreak="al", 25280 unicodeslot=0xC18, 25281 }, 25282 [0xC19]={ 25283 category="lo", 25284 description="TELUGU LETTER NGA", 25285 direction="l", 25286 indic="c", 25287 linebreak="al", 25288 unicodeslot=0xC19, 25289 }, 25290 [0xC1A]={ 25291 category="lo", 25292 description="TELUGU LETTER CA", 25293 direction="l", 25294 indic="c", 25295 linebreak="al", 25296 unicodeslot=0xC1A, 25297 }, 25298 [0xC1B]={ 25299 category="lo", 25300 description="TELUGU LETTER CHA", 25301 direction="l", 25302 indic="c", 25303 linebreak="al", 25304 unicodeslot=0xC1B, 25305 }, 25306 [0xC1C]={ 25307 category="lo", 25308 description="TELUGU LETTER JA", 25309 direction="l", 25310 indic="c", 25311 linebreak="al", 25312 unicodeslot=0xC1C, 25313 }, 25314 [0xC1D]={ 25315 category="lo", 25316 description="TELUGU LETTER JHA", 25317 direction="l", 25318 indic="c", 25319 linebreak="al", 25320 unicodeslot=0xC1D, 25321 }, 25322 [0xC1E]={ 25323 category="lo", 25324 description="TELUGU LETTER NYA", 25325 direction="l", 25326 indic="c", 25327 linebreak="al", 25328 unicodeslot=0xC1E, 25329 }, 25330 [0xC1F]={ 25331 category="lo", 25332 description="TELUGU LETTER TTA", 25333 direction="l", 25334 indic="c", 25335 linebreak="al", 25336 unicodeslot=0xC1F, 25337 }, 25338 [0xC20]={ 25339 category="lo", 25340 description="TELUGU LETTER TTHA", 25341 direction="l", 25342 indic="c", 25343 linebreak="al", 25344 unicodeslot=0xC20, 25345 }, 25346 [0xC21]={ 25347 category="lo", 25348 description="TELUGU LETTER DDA", 25349 direction="l", 25350 indic="c", 25351 linebreak="al", 25352 unicodeslot=0xC21, 25353 }, 25354 [0xC22]={ 25355 category="lo", 25356 description="TELUGU LETTER DDHA", 25357 direction="l", 25358 indic="c", 25359 linebreak="al", 25360 unicodeslot=0xC22, 25361 }, 25362 [0xC23]={ 25363 category="lo", 25364 description="TELUGU LETTER NNA", 25365 direction="l", 25366 indic="c", 25367 linebreak="al", 25368 unicodeslot=0xC23, 25369 }, 25370 [0xC24]={ 25371 category="lo", 25372 description="TELUGU LETTER TA", 25373 direction="l", 25374 indic="c", 25375 linebreak="al", 25376 unicodeslot=0xC24, 25377 }, 25378 [0xC25]={ 25379 category="lo", 25380 description="TELUGU LETTER THA", 25381 direction="l", 25382 indic="c", 25383 linebreak="al", 25384 unicodeslot=0xC25, 25385 }, 25386 [0xC26]={ 25387 category="lo", 25388 description="TELUGU LETTER DA", 25389 direction="l", 25390 indic="c", 25391 linebreak="al", 25392 unicodeslot=0xC26, 25393 }, 25394 [0xC27]={ 25395 category="lo", 25396 description="TELUGU LETTER DHA", 25397 direction="l", 25398 indic="c", 25399 linebreak="al", 25400 unicodeslot=0xC27, 25401 }, 25402 [0xC28]={ 25403 category="lo", 25404 description="TELUGU LETTER NA", 25405 direction="l", 25406 indic="c", 25407 linebreak="al", 25408 unicodeslot=0xC28, 25409 }, 25410 [0xC2A]={ 25411 category="lo", 25412 description="TELUGU LETTER PA", 25413 direction="l", 25414 indic="c", 25415 linebreak="al", 25416 unicodeslot=0xC2A, 25417 }, 25418 [0xC2B]={ 25419 category="lo", 25420 description="TELUGU LETTER PHA", 25421 direction="l", 25422 indic="c", 25423 linebreak="al", 25424 unicodeslot=0xC2B, 25425 }, 25426 [0xC2C]={ 25427 category="lo", 25428 description="TELUGU LETTER BA", 25429 direction="l", 25430 indic="c", 25431 linebreak="al", 25432 unicodeslot=0xC2C, 25433 }, 25434 [0xC2D]={ 25435 category="lo", 25436 description="TELUGU LETTER BHA", 25437 direction="l", 25438 indic="c", 25439 linebreak="al", 25440 unicodeslot=0xC2D, 25441 }, 25442 [0xC2E]={ 25443 category="lo", 25444 description="TELUGU LETTER MA", 25445 direction="l", 25446 indic="c", 25447 linebreak="al", 25448 unicodeslot=0xC2E, 25449 }, 25450 [0xC2F]={ 25451 category="lo", 25452 description="TELUGU LETTER YA", 25453 direction="l", 25454 indic="c", 25455 linebreak="al", 25456 unicodeslot=0xC2F, 25457 }, 25458 [0xC30]={ 25459 category="lo", 25460 description="TELUGU LETTER RA", 25461 direction="l", 25462 indic="c", 25463 indicclass="ra", 25464 indicorder="ap", 25465 linebreak="al", 25466 unicodeslot=0xC30, 25467 }, 25468 [0xC31]={ 25469 category="lo", 25470 description="TELUGU LETTER RRA", 25471 direction="l", 25472 indic="c", 25473 linebreak="al", 25474 unicodeslot=0xC31, 25475 }, 25476 [0xC32]={ 25477 category="lo", 25478 description="TELUGU LETTER LA", 25479 direction="l", 25480 indic="c", 25481 linebreak="al", 25482 unicodeslot=0xC32, 25483 }, 25484 [0xC33]={ 25485 category="lo", 25486 description="TELUGU LETTER LLA", 25487 direction="l", 25488 indic="c", 25489 linebreak="al", 25490 unicodeslot=0xC33, 25491 }, 25492 [0xC34]={ 25493 category="lo", 25494 description="TELUGU LETTER LLLA", 25495 direction="l", 25496 indic="c", 25497 linebreak="al", 25498 unicodeslot=0xC34, 25499 }, 25500 [0xC35]={ 25501 category="lo", 25502 description="TELUGU LETTER VA", 25503 direction="l", 25504 indic="c", 25505 linebreak="al", 25506 unicodeslot=0xC35, 25507 }, 25508 [0xC36]={ 25509 category="lo", 25510 description="TELUGU LETTER SHA", 25511 direction="l", 25512 indic="c", 25513 linebreak="al", 25514 unicodeslot=0xC36, 25515 }, 25516 [0xC37]={ 25517 category="lo", 25518 description="TELUGU LETTER SSA", 25519 direction="l", 25520 indic="c", 25521 linebreak="al", 25522 unicodeslot=0xC37, 25523 }, 25524 [0xC38]={ 25525 category="lo", 25526 description="TELUGU LETTER SA", 25527 direction="l", 25528 indic="c", 25529 linebreak="al", 25530 unicodeslot=0xC38, 25531 }, 25532 [0xC39]={ 25533 category="lo", 25534 description="TELUGU LETTER HA", 25535 direction="l", 25536 indic="c", 25537 linebreak="al", 25538 unicodeslot=0xC39, 25539 }, 25540 [0xC3C]={ 25541 category="mn", 25542 combining=0x7, 25543 description="TELUGU SIGN NUKTA", 25544 direction="nsm", 25545 indic="o", 25546 indicclass="nukta", 25547 indicmark="b", 25548 linebreak="cm", 25549 unicodeslot=0xC3C, 25550 }, 25551 [0xC3D]={ 25552 category="lo", 25553 description="TELUGU SIGN AVAGRAHA", 25554 direction="l", 25555 indic="c", 25556 linebreak="al", 25557 unicodeslot=0xC3D, 25558 }, 25559 [0xC3E]={ 25560 category="mn", 25561 description="TELUGU VOWEL SIGN AA", 25562 direction="nsm", 25563 indic="d", 25564 indicmark="t", 25565 indicorder="bs", 25566 linebreak="cm", 25567 unicodeslot=0xC3E, 25568 }, 25569 [0xC3F]={ 25570 category="mn", 25571 description="TELUGU VOWEL SIGN I", 25572 direction="nsm", 25573 indic="d", 25574 indicmark="t", 25575 indicorder="bs", 25576 linebreak="cm", 25577 unicodeslot=0xC3F, 25578 }, 25579 [0xC40]={ 25580 category="mn", 25581 description="TELUGU VOWEL SIGN II", 25582 direction="nsm", 25583 indic="d", 25584 indicmark="t", 25585 indicorder="bs", 25586 linebreak="cm", 25587 unicodeslot=0xC40, 25588 }, 25589 [0xC41]={ 25590 category="mc", 25591 description="TELUGU VOWEL SIGN U", 25592 direction="l", 25593 indic="d", 25594 indicmark="r", 25595 indicorder="bs", 25596 linebreak="cm", 25597 unicodeslot=0xC41, 25598 }, 25599 [0xC42]={ 25600 category="mc", 25601 description="TELUGU VOWEL SIGN UU", 25602 direction="l", 25603 indic="d", 25604 indicmark="r", 25605 indicorder="bs", 25606 linebreak="cm", 25607 unicodeslot=0xC42, 25608 }, 25609 [0xC43]={ 25610 category="mc", 25611 description="TELUGU VOWEL SIGN VOCALIC R", 25612 direction="l", 25613 indic="d", 25614 indicmark="r", 25615 indicorder="as", 25616 linebreak="cm", 25617 unicodeslot=0xC43, 25618 }, 25619 [0xC44]={ 25620 category="mc", 25621 description="TELUGU VOWEL SIGN VOCALIC RR", 25622 direction="l", 25623 indic="d", 25624 indicmark="r", 25625 indicorder="as", 25626 linebreak="cm", 25627 unicodeslot=0xC44, 25628 }, 25629 [0xC46]={ 25630 category="mn", 25631 description="TELUGU VOWEL SIGN E", 25632 direction="nsm", 25633 indic="d", 25634 indicmark="t", 25635 indicorder="bs", 25636 linebreak="cm", 25637 unicodeslot=0xC46, 25638 }, 25639 [0xC47]={ 25640 category="mn", 25641 description="TELUGU VOWEL SIGN EE", 25642 direction="nsm", 25643 indic="d", 25644 indicmark="t", 25645 indicorder="bs", 25646 linebreak="cm", 25647 unicodeslot=0xC47, 25648 }, 25649 [0xC48]={ 25650 category="mn", 25651 description="TELUGU VOWEL SIGN AI", 25652 direction="nsm", 25653 indic="d", 25654 indicmark="s", 25655 linebreak="cm", 25656 specials={ "char", 0xC46, 0xC56 }, 25657 unicodeslot=0xC48, 25658 }, 25659 [0xC4A]={ 25660 category="mn", 25661 description="TELUGU VOWEL SIGN O", 25662 direction="nsm", 25663 indic="d", 25664 indicmark="t", 25665 indicorder="bs", 25666 linebreak="cm", 25667 unicodeslot=0xC4A, 25668 }, 25669 [0xC4B]={ 25670 category="mn", 25671 description="TELUGU VOWEL SIGN OO", 25672 direction="nsm", 25673 indic="d", 25674 indicmark="t", 25675 indicorder="bs", 25676 linebreak="cm", 25677 unicodeslot=0xC4B, 25678 }, 25679 [0xC4C]={ 25680 category="mn", 25681 description="TELUGU VOWEL SIGN AU", 25682 direction="nsm", 25683 indic="d", 25684 indicmark="t", 25685 indicorder="bs", 25686 linebreak="cm", 25687 unicodeslot=0xC4C, 25688 }, 25689 [0xC4D]={ 25690 category="mn", 25691 combining=0x9, 25692 description="TELUGU SIGN VIRAMA", 25693 direction="nsm", 25694 indic="o", 25695 indicclass="halant", 25696 indicmark="t", 25697 linebreak="cm", 25698 unicodeslot=0xC4D, 25699 }, 25700 [0xC55]={ 25701 category="mn", 25702 combining=0x54, 25703 description="TELUGU LENGTH MARK", 25704 direction="nsm", 25705 indic="o", 25706 indicorder="bs", 25707 linebreak="cm", 25708 unicodeslot=0xC55, 25709 }, 25710 [0xC56]={ 25711 category="mn", 25712 combining=0x5B, 25713 description="TELUGU AI LENGTH MARK", 25714 direction="nsm", 25715 indic="o", 25716 indicorder="bs", 25717 linebreak="cm", 25718 unicodeslot=0xC56, 25719 }, 25720 [0xC58]={ 25721 category="lo", 25722 description="TELUGU LETTER TSA", 25723 direction="l", 25724 indic="o", 25725 linebreak="al", 25726 unicodeslot=0xC58, 25727 }, 25728 [0xC59]={ 25729 category="lo", 25730 description="TELUGU LETTER DZA", 25731 direction="l", 25732 indic="o", 25733 linebreak="al", 25734 unicodeslot=0xC59, 25735 }, 25736 [0xC5A]={ 25737 category="lo", 25738 description="TELUGU LETTER RRRA", 25739 direction="l", 25740 indic="o", 25741 linebreak="al", 25742 unicodeslot=0xC5A, 25743 }, 25744 [0xC5D]={ 25745 category="lo", 25746 comment="check indic", 25747 description="TELUGU LETTER NAKAARA POLLU", 25748 direction="l", 25749 indic="i", 25750 linebreak="al", 25751 unicodeslot=0xC5D, 25752 }, 25753 [0xC60]={ 25754 category="lo", 25755 description="TELUGU LETTER VOCALIC RR", 25756 direction="l", 25757 indic="i", 25758 linebreak="al", 25759 unicodeslot=0xC60, 25760 }, 25761 [0xC61]={ 25762 category="lo", 25763 description="TELUGU LETTER VOCALIC LL", 25764 direction="l", 25765 indic="i", 25766 linebreak="al", 25767 unicodeslot=0xC61, 25768 }, 25769 [0xC62]={ 25770 category="mn", 25771 description="TELUGU VOWEL SIGN VOCALIC L", 25772 direction="nsm", 25773 indic="d", 25774 indicmark="b", 25775 linebreak="cm", 25776 unicodeslot=0xC62, 25777 }, 25778 [0xC63]={ 25779 category="mn", 25780 description="TELUGU VOWEL SIGN VOCALIC LL", 25781 direction="nsm", 25782 indic="d", 25783 indicmark="b", 25784 linebreak="cm", 25785 unicodeslot=0xC63, 25786 }, 25787 [0xC66]={ 25788 category="nd", 25789 description="TELUGU DIGIT ZERO", 25790 direction="l", 25791 indic="o", 25792 linebreak="nu", 25793 unicodeslot=0xC66, 25794 }, 25795 [0xC67]={ 25796 category="nd", 25797 description="TELUGU DIGIT ONE", 25798 direction="l", 25799 indic="o", 25800 linebreak="nu", 25801 unicodeslot=0xC67, 25802 }, 25803 [0xC68]={ 25804 category="nd", 25805 description="TELUGU DIGIT TWO", 25806 direction="l", 25807 indic="o", 25808 linebreak="nu", 25809 unicodeslot=0xC68, 25810 }, 25811 [0xC69]={ 25812 category="nd", 25813 description="TELUGU DIGIT THREE", 25814 direction="l", 25815 indic="o", 25816 linebreak="nu", 25817 unicodeslot=0xC69, 25818 }, 25819 [0xC6A]={ 25820 category="nd", 25821 description="TELUGU DIGIT FOUR", 25822 direction="l", 25823 indic="o", 25824 linebreak="nu", 25825 unicodeslot=0xC6A, 25826 }, 25827 [0xC6B]={ 25828 category="nd", 25829 description="TELUGU DIGIT FIVE", 25830 direction="l", 25831 indic="o", 25832 linebreak="nu", 25833 unicodeslot=0xC6B, 25834 }, 25835 [0xC6C]={ 25836 category="nd", 25837 description="TELUGU DIGIT SIX", 25838 direction="l", 25839 indic="o", 25840 linebreak="nu", 25841 unicodeslot=0xC6C, 25842 }, 25843 [0xC6D]={ 25844 category="nd", 25845 description="TELUGU DIGIT SEVEN", 25846 direction="l", 25847 indic="o", 25848 linebreak="nu", 25849 unicodeslot=0xC6D, 25850 }, 25851 [0xC6E]={ 25852 category="nd", 25853 description="TELUGU DIGIT EIGHT", 25854 direction="l", 25855 indic="o", 25856 linebreak="nu", 25857 unicodeslot=0xC6E, 25858 }, 25859 [0xC6F]={ 25860 category="nd", 25861 description="TELUGU DIGIT NINE", 25862 direction="l", 25863 indic="o", 25864 linebreak="nu", 25865 unicodeslot=0xC6F, 25866 }, 25867 [0xC77]={ 25868 category="po", 25869 description="TELUGU SIGN SIDDHAM", 25870 direction="l", 25871 linebreak="bb", 25872 unicodeslot=0xC77, 25873 }, 25874 [0xC78]={ 25875 category="no", 25876 description="TELUGU FRACTION DIGIT ZERO FOR ODD POWERS OF FOUR", 25877 direction="on", 25878 indic="o", 25879 linebreak="al", 25880 unicodeslot=0xC78, 25881 }, 25882 [0xC79]={ 25883 category="no", 25884 description="TELUGU FRACTION DIGIT ONE FOR ODD POWERS OF FOUR", 25885 direction="on", 25886 indic="o", 25887 linebreak="al", 25888 unicodeslot=0xC79, 25889 }, 25890 [0xC7A]={ 25891 category="no", 25892 description="TELUGU FRACTION DIGIT TWO FOR ODD POWERS OF FOUR", 25893 direction="on", 25894 indic="o", 25895 linebreak="al", 25896 unicodeslot=0xC7A, 25897 }, 25898 [0xC7B]={ 25899 category="no", 25900 description="TELUGU FRACTION DIGIT THREE FOR ODD POWERS OF FOUR", 25901 direction="on", 25902 indic="o", 25903 linebreak="al", 25904 unicodeslot=0xC7B, 25905 }, 25906 [0xC7C]={ 25907 category="no", 25908 description="TELUGU FRACTION DIGIT ONE FOR EVEN POWERS OF FOUR", 25909 direction="on", 25910 indic="o", 25911 linebreak="al", 25912 unicodeslot=0xC7C, 25913 }, 25914 [0xC7D]={ 25915 category="no", 25916 description="TELUGU FRACTION DIGIT TWO FOR EVEN POWERS OF FOUR", 25917 direction="on", 25918 indic="o", 25919 linebreak="al", 25920 unicodeslot=0xC7D, 25921 }, 25922 [0xC7E]={ 25923 category="no", 25924 description="TELUGU FRACTION DIGIT THREE FOR EVEN POWERS OF FOUR", 25925 direction="on", 25926 indic="o", 25927 linebreak="al", 25928 unicodeslot=0xC7E, 25929 }, 25930 [0xC7F]={ 25931 category="so", 25932 description="TELUGU SIGN TUUMU", 25933 direction="l", 25934 indic="o", 25935 linebreak="al", 25936 unicodeslot=0xC7F, 25937 }, 25938 [0xC80]={ 25939 category="lo", 25940 description="KANNADA SIGN SPACING CANDRABINDU", 25941 direction="l", 25942 indic="o", 25943 linebreak="al", 25944 unicodeslot=0xC80, 25945 }, 25946 [0xC81]={ 25947 category="mn", 25948 description="KANNADA SIGN CANDRABINDU", 25949 direction="nsm", 25950 indic="o", 25951 linebreak="cm", 25952 unicodeslot=0xC81, 25953 }, 25954 [0xC82]={ 25955 category="mc", 25956 description="KANNADA SIGN ANUSVARA", 25957 direction="l", 25958 indic="o", 25959 linebreak="cm", 25960 unicodeslot=0xC82, 25961 }, 25962 [0xC83]={ 25963 category="mc", 25964 description="KANNADA SIGN VISARGA", 25965 direction="l", 25966 indic="o", 25967 linebreak="cm", 25968 unicodeslot=0xC83, 25969 }, 25970 [0xC84]={ 25971 category="po", 25972 description="KANNADA SIGN SIDDHAM", 25973 direction="l", 25974 linebreak="bb", 25975 unicodeslot=0xC84, 25976 }, 25977 [0xC85]={ 25978 category="lo", 25979 description="KANNADA LETTER A", 25980 direction="l", 25981 indic="i", 25982 linebreak="al", 25983 unicodeslot=0xC85, 25984 }, 25985 [0xC86]={ 25986 category="lo", 25987 description="KANNADA LETTER AA", 25988 direction="l", 25989 indic="i", 25990 linebreak="al", 25991 unicodeslot=0xC86, 25992 }, 25993 [0xC87]={ 25994 category="lo", 25995 description="KANNADA LETTER I", 25996 direction="l", 25997 indic="i", 25998 linebreak="al", 25999 unicodeslot=0xC87, 26000 }, 26001 [0xC88]={ 26002 category="lo", 26003 description="KANNADA LETTER II", 26004 direction="l", 26005 indic="i", 26006 linebreak="al", 26007 unicodeslot=0xC88, 26008 }, 26009 [0xC89]={ 26010 category="lo", 26011 description="KANNADA LETTER U", 26012 direction="l", 26013 indic="i", 26014 linebreak="al", 26015 unicodeslot=0xC89, 26016 }, 26017 [0xC8A]={ 26018 category="lo", 26019 description="KANNADA LETTER UU", 26020 direction="l", 26021 indic="i", 26022 linebreak="al", 26023 unicodeslot=0xC8A, 26024 }, 26025 [0xC8B]={ 26026 category="lo", 26027 description="KANNADA LETTER VOCALIC R", 26028 direction="l", 26029 indic="i", 26030 linebreak="al", 26031 unicodeslot=0xC8B, 26032 }, 26033 [0xC8C]={ 26034 category="lo", 26035 description="KANNADA LETTER VOCALIC L", 26036 direction="l", 26037 indic="i", 26038 linebreak="al", 26039 unicodeslot=0xC8C, 26040 }, 26041 [0xC8E]={ 26042 category="lo", 26043 description="KANNADA LETTER E", 26044 direction="l", 26045 indic="i", 26046 linebreak="al", 26047 unicodeslot=0xC8E, 26048 }, 26049 [0xC8F]={ 26050 category="lo", 26051 description="KANNADA LETTER EE", 26052 direction="l", 26053 indic="i", 26054 linebreak="al", 26055 unicodeslot=0xC8F, 26056 }, 26057 [0xC90]={ 26058 category="lo", 26059 description="KANNADA LETTER AI", 26060 direction="l", 26061 indic="i", 26062 linebreak="al", 26063 unicodeslot=0xC90, 26064 }, 26065 [0xC92]={ 26066 category="lo", 26067 description="KANNADA LETTER O", 26068 direction="l", 26069 indic="i", 26070 linebreak="al", 26071 unicodeslot=0xC92, 26072 }, 26073 [0xC93]={ 26074 category="lo", 26075 description="KANNADA LETTER OO", 26076 direction="l", 26077 indic="i", 26078 linebreak="al", 26079 unicodeslot=0xC93, 26080 }, 26081 [0xC94]={ 26082 category="lo", 26083 description="KANNADA LETTER AU", 26084 direction="l", 26085 indic="i", 26086 linebreak="al", 26087 unicodeslot=0xC94, 26088 }, 26089 [0xC95]={ 26090 category="lo", 26091 description="KANNADA LETTER KA", 26092 direction="l", 26093 indic="c", 26094 linebreak="al", 26095 unicodeslot=0xC95, 26096 }, 26097 [0xC96]={ 26098 category="lo", 26099 description="KANNADA LETTER KHA", 26100 direction="l", 26101 indic="c", 26102 linebreak="al", 26103 unicodeslot=0xC96, 26104 }, 26105 [0xC97]={ 26106 category="lo", 26107 description="KANNADA LETTER GA", 26108 direction="l", 26109 indic="c", 26110 linebreak="al", 26111 unicodeslot=0xC97, 26112 }, 26113 [0xC98]={ 26114 category="lo", 26115 description="KANNADA LETTER GHA", 26116 direction="l", 26117 indic="c", 26118 linebreak="al", 26119 unicodeslot=0xC98, 26120 }, 26121 [0xC99]={ 26122 category="lo", 26123 description="KANNADA LETTER NGA", 26124 direction="l", 26125 indic="c", 26126 linebreak="al", 26127 unicodeslot=0xC99, 26128 }, 26129 [0xC9A]={ 26130 category="lo", 26131 description="KANNADA LETTER CA", 26132 direction="l", 26133 indic="c", 26134 linebreak="al", 26135 unicodeslot=0xC9A, 26136 }, 26137 [0xC9B]={ 26138 category="lo", 26139 description="KANNADA LETTER CHA", 26140 direction="l", 26141 indic="c", 26142 linebreak="al", 26143 unicodeslot=0xC9B, 26144 }, 26145 [0xC9C]={ 26146 category="lo", 26147 description="KANNADA LETTER JA", 26148 direction="l", 26149 indic="c", 26150 linebreak="al", 26151 unicodeslot=0xC9C, 26152 }, 26153 [0xC9D]={ 26154 category="lo", 26155 description="KANNADA LETTER JHA", 26156 direction="l", 26157 indic="c", 26158 linebreak="al", 26159 unicodeslot=0xC9D, 26160 }, 26161 [0xC9E]={ 26162 category="lo", 26163 description="KANNADA LETTER NYA", 26164 direction="l", 26165 indic="c", 26166 linebreak="al", 26167 unicodeslot=0xC9E, 26168 }, 26169 [0xC9F]={ 26170 category="lo", 26171 description="KANNADA LETTER TTA", 26172 direction="l", 26173 indic="c", 26174 linebreak="al", 26175 unicodeslot=0xC9F, 26176 }, 26177 [0xCA0]={ 26178 category="lo", 26179 description="KANNADA LETTER TTHA", 26180 direction="l", 26181 indic="c", 26182 linebreak="al", 26183 unicodeslot=0xCA0, 26184 }, 26185 [0xCA1]={ 26186 category="lo", 26187 description="KANNADA LETTER DDA", 26188 direction="l", 26189 indic="c", 26190 linebreak="al", 26191 unicodeslot=0xCA1, 26192 }, 26193 [0xCA2]={ 26194 category="lo", 26195 description="KANNADA LETTER DDHA", 26196 direction="l", 26197 indic="c", 26198 linebreak="al", 26199 unicodeslot=0xCA2, 26200 }, 26201 [0xCA3]={ 26202 category="lo", 26203 description="KANNADA LETTER NNA", 26204 direction="l", 26205 indic="c", 26206 linebreak="al", 26207 unicodeslot=0xCA3, 26208 }, 26209 [0xCA4]={ 26210 category="lo", 26211 description="KANNADA LETTER TA", 26212 direction="l", 26213 indic="c", 26214 linebreak="al", 26215 unicodeslot=0xCA4, 26216 }, 26217 [0xCA5]={ 26218 category="lo", 26219 description="KANNADA LETTER THA", 26220 direction="l", 26221 indic="c", 26222 linebreak="al", 26223 unicodeslot=0xCA5, 26224 }, 26225 [0xCA6]={ 26226 category="lo", 26227 description="KANNADA LETTER DA", 26228 direction="l", 26229 indic="c", 26230 linebreak="al", 26231 unicodeslot=0xCA6, 26232 }, 26233 [0xCA7]={ 26234 category="lo", 26235 description="KANNADA LETTER DHA", 26236 direction="l", 26237 indic="c", 26238 linebreak="al", 26239 unicodeslot=0xCA7, 26240 }, 26241 [0xCA8]={ 26242 category="lo", 26243 description="KANNADA LETTER NA", 26244 direction="l", 26245 indic="c", 26246 linebreak="al", 26247 unicodeslot=0xCA8, 26248 }, 26249 [0xCAA]={ 26250 category="lo", 26251 description="KANNADA LETTER PA", 26252 direction="l", 26253 indic="c", 26254 linebreak="al", 26255 unicodeslot=0xCAA, 26256 }, 26257 [0xCAB]={ 26258 category="lo", 26259 description="KANNADA LETTER PHA", 26260 direction="l", 26261 indic="c", 26262 linebreak="al", 26263 unicodeslot=0xCAB, 26264 }, 26265 [0xCAC]={ 26266 category="lo", 26267 description="KANNADA LETTER BA", 26268 direction="l", 26269 indic="c", 26270 linebreak="al", 26271 unicodeslot=0xCAC, 26272 }, 26273 [0xCAD]={ 26274 category="lo", 26275 description="KANNADA LETTER BHA", 26276 direction="l", 26277 indic="c", 26278 linebreak="al", 26279 unicodeslot=0xCAD, 26280 }, 26281 [0xCAE]={ 26282 category="lo", 26283 description="KANNADA LETTER MA", 26284 direction="l", 26285 indic="c", 26286 linebreak="al", 26287 unicodeslot=0xCAE, 26288 }, 26289 [0xCAF]={ 26290 category="lo", 26291 description="KANNADA LETTER YA", 26292 direction="l", 26293 indic="c", 26294 linebreak="al", 26295 unicodeslot=0xCAF, 26296 }, 26297 [0xCB0]={ 26298 category="lo", 26299 description="KANNADA LETTER RA", 26300 direction="l", 26301 indic="c", 26302 indicclass="ra", 26303 indicorder="ap", 26304 linebreak="al", 26305 unicodeslot=0xCB0, 26306 }, 26307 [0xCB1]={ 26308 category="lo", 26309 description="KANNADA LETTER RRA", 26310 direction="l", 26311 indic="c", 26312 linebreak="al", 26313 unicodeslot=0xCB1, 26314 }, 26315 [0xCB2]={ 26316 category="lo", 26317 description="KANNADA LETTER LA", 26318 direction="l", 26319 indic="c", 26320 linebreak="al", 26321 unicodeslot=0xCB2, 26322 }, 26323 [0xCB3]={ 26324 category="lo", 26325 description="KANNADA LETTER LLA", 26326 direction="l", 26327 indic="c", 26328 linebreak="al", 26329 unicodeslot=0xCB3, 26330 }, 26331 [0xCB5]={ 26332 category="lo", 26333 description="KANNADA LETTER VA", 26334 direction="l", 26335 indic="c", 26336 linebreak="al", 26337 unicodeslot=0xCB5, 26338 }, 26339 [0xCB6]={ 26340 category="lo", 26341 description="KANNADA LETTER SHA", 26342 direction="l", 26343 indic="c", 26344 linebreak="al", 26345 unicodeslot=0xCB6, 26346 }, 26347 [0xCB7]={ 26348 category="lo", 26349 description="KANNADA LETTER SSA", 26350 direction="l", 26351 indic="c", 26352 linebreak="al", 26353 unicodeslot=0xCB7, 26354 }, 26355 [0xCB8]={ 26356 category="lo", 26357 description="KANNADA LETTER SA", 26358 direction="l", 26359 indic="c", 26360 linebreak="al", 26361 unicodeslot=0xCB8, 26362 }, 26363 [0xCB9]={ 26364 category="lo", 26365 description="KANNADA LETTER HA", 26366 direction="l", 26367 indic="c", 26368 linebreak="al", 26369 unicodeslot=0xCB9, 26370 }, 26371 [0xCBC]={ 26372 category="mn", 26373 combining=0x7, 26374 description="KANNADA SIGN NUKTA", 26375 direction="nsm", 26376 indic="o", 26377 indicclass="nukta", 26378 indicmark="b", 26379 linebreak="cm", 26380 unicodeslot=0xCBC, 26381 }, 26382 [0xCBD]={ 26383 category="lo", 26384 description="KANNADA SIGN AVAGRAHA", 26385 direction="l", 26386 indic="o", 26387 linebreak="al", 26388 unicodeslot=0xCBD, 26389 }, 26390 [0xCBE]={ 26391 category="mc", 26392 description="KANNADA VOWEL SIGN AA", 26393 direction="l", 26394 indic="d", 26395 indicmark="r", 26396 indicorder="bs", 26397 linebreak="cm", 26398 unicodeslot=0xCBE, 26399 }, 26400 [0xCBF]={ 26401 category="mn", 26402 description="KANNADA VOWEL SIGN I", 26403 direction="l", 26404 indic="d", 26405 indicmark="t", 26406 indicorder="bs", 26407 linebreak="cm", 26408 unicodeslot=0xCBF, 26409 }, 26410 [0xCC0]={ 26411 category="mc", 26412 description="KANNADA VOWEL SIGN II", 26413 direction="l", 26414 indic="d", 26415 indicmark="s", 26416 linebreak="cm", 26417 specials={ "char", 0xCBF, 0xCD5 }, 26418 unicodeslot=0xCC0, 26419 }, 26420 [0xCC1]={ 26421 category="mc", 26422 description="KANNADA VOWEL SIGN U", 26423 direction="l", 26424 indic="d", 26425 indicmark="r", 26426 indicorder="bs", 26427 linebreak="cm", 26428 unicodeslot=0xCC1, 26429 }, 26430 [0xCC2]={ 26431 category="mc", 26432 description="KANNADA VOWEL SIGN UU", 26433 direction="l", 26434 indic="d", 26435 indicmark="r", 26436 indicorder="bs", 26437 linebreak="cm", 26438 unicodeslot=0xCC2, 26439 }, 26440 [0xCC3]={ 26441 category="mc", 26442 description="KANNADA VOWEL SIGN VOCALIC R", 26443 direction="l", 26444 indic="d", 26445 indicmark="r", 26446 indicorder="as", 26447 linebreak="cm", 26448 unicodeslot=0xCC3, 26449 }, 26450 [0xCC4]={ 26451 category="mc", 26452 description="KANNADA VOWEL SIGN VOCALIC RR", 26453 direction="l", 26454 indic="d", 26455 indicmark="r", 26456 indicorder="as", 26457 linebreak="cm", 26458 unicodeslot=0xCC4, 26459 }, 26460 [0xCC6]={ 26461 category="mn", 26462 description="KANNADA VOWEL SIGN E", 26463 direction="l", 26464 indic="d", 26465 indicmark="t", 26466 indicorder="bs", 26467 linebreak="cm", 26468 unicodeslot=0xCC6, 26469 }, 26470 [0xCC7]={ 26471 category="mc", 26472 description="KANNADA VOWEL SIGN EE", 26473 direction="l", 26474 indic="d", 26475 indicmark="s", 26476 linebreak="cm", 26477 specials={ "char", 0xCC6, 0xCD5 }, 26478 unicodeslot=0xCC7, 26479 }, 26480 [0xCC8]={ 26481 category="mc", 26482 description="KANNADA VOWEL SIGN AI", 26483 direction="l", 26484 indic="d", 26485 indicmark="s", 26486 linebreak="cm", 26487 specials={ "char", 0xCC6, 0xCD6 }, 26488 unicodeslot=0xCC8, 26489 }, 26490 [0xCCA]={ 26491 category="mc", 26492 description="KANNADA VOWEL SIGN O", 26493 direction="l", 26494 indic="d", 26495 indicmark="s", 26496 linebreak="cm", 26497 specials={ "char", 0xCC6, 0xCC2 }, 26498 unicodeslot=0xCCA, 26499 }, 26500 [0xCCB]={ 26501 category="mc", 26502 description="KANNADA VOWEL SIGN OO", 26503 direction="l", 26504 indic="d", 26505 indicmark="s", 26506 linebreak="cm", 26507 specials={ "char", 0xCCA, 0xCD5 }, 26508 unicodeslot=0xCCB, 26509 }, 26510 [0xCCC]={ 26511 category="mn", 26512 description="KANNADA VOWEL SIGN AU", 26513 direction="nsm", 26514 indic="d", 26515 indicmark="r", 26516 indicorder="bs", 26517 linebreak="cm", 26518 unicodeslot=0xCCC, 26519 }, 26520 [0xCCD]={ 26521 category="mn", 26522 combining=0x9, 26523 description="KANNADA SIGN VIRAMA", 26524 direction="nsm", 26525 indic="o", 26526 indicclass="halant", 26527 linebreak="cm", 26528 unicodeslot=0xCCD, 26529 }, 26530 [0xCD5]={ 26531 category="mc", 26532 description="KANNADA LENGTH MARK", 26533 direction="l", 26534 indic="d", 26535 indicmark="r", 26536 indicorder="as", 26537 linebreak="cm", 26538 unicodeslot=0xCD5, 26539 }, 26540 [0xCD6]={ 26541 category="mc", 26542 description="KANNADA AI LENGTH MARK", 26543 direction="l", 26544 indic="d", 26545 indicmark="b", 26546 indicorder="as", 26547 linebreak="cm", 26548 unicodeslot=0xCD6, 26549 }, 26550 [0xCDD]={ 26551 category="lo", 26552 comment="check indic", 26553 description="KANNADA LETTER NAKAARA POLLU", 26554 direction="l", 26555 indic="i", 26556 linebreak="al", 26557 unicodeslot=0xCDD, 26558 }, 26559 [0xCDE]={ 26560 category="lo", 26561 description="KANNADA LETTER FA", 26562 direction="l", 26563 indic="c", 26564 linebreak="al", 26565 unicodeslot=0xCDE, 26566 }, 26567 [0xCE0]={ 26568 category="lo", 26569 description="KANNADA LETTER VOCALIC RR", 26570 direction="l", 26571 indic="i", 26572 linebreak="al", 26573 unicodeslot=0xCE0, 26574 }, 26575 [0xCE1]={ 26576 category="lo", 26577 description="KANNADA LETTER VOCALIC LL", 26578 direction="l", 26579 indic="i", 26580 linebreak="al", 26581 unicodeslot=0xCE1, 26582 }, 26583 [0xCE2]={ 26584 category="mn", 26585 description="KANNADA VOWEL SIGN VOCALIC L", 26586 direction="nsm", 26587 indic="d", 26588 indicmark="b", 26589 indicorder="bs", 26590 linebreak="cm", 26591 unicodeslot=0xCE2, 26592 }, 26593 [0xCE3]={ 26594 category="mn", 26595 description="KANNADA VOWEL SIGN VOCALIC LL", 26596 direction="nsm", 26597 indic="d", 26598 indicmark="b", 26599 indicorder="bs", 26600 linebreak="cm", 26601 unicodeslot=0xCE3, 26602 }, 26603 [0xCE6]={ 26604 category="nd", 26605 description="KANNADA DIGIT ZERO", 26606 direction="l", 26607 indic="o", 26608 linebreak="nu", 26609 unicodeslot=0xCE6, 26610 }, 26611 [0xCE7]={ 26612 category="nd", 26613 description="KANNADA DIGIT ONE", 26614 direction="l", 26615 indic="o", 26616 linebreak="nu", 26617 unicodeslot=0xCE7, 26618 }, 26619 [0xCE8]={ 26620 category="nd", 26621 description="KANNADA DIGIT TWO", 26622 direction="l", 26623 indic="o", 26624 linebreak="nu", 26625 unicodeslot=0xCE8, 26626 }, 26627 [0xCE9]={ 26628 category="nd", 26629 description="KANNADA DIGIT THREE", 26630 direction="l", 26631 indic="o", 26632 linebreak="nu", 26633 unicodeslot=0xCE9, 26634 }, 26635 [0xCEA]={ 26636 category="nd", 26637 description="KANNADA DIGIT FOUR", 26638 direction="l", 26639 indic="o", 26640 linebreak="nu", 26641 unicodeslot=0xCEA, 26642 }, 26643 [0xCEB]={ 26644 category="nd", 26645 description="KANNADA DIGIT FIVE", 26646 direction="l", 26647 indic="o", 26648 linebreak="nu", 26649 unicodeslot=0xCEB, 26650 }, 26651 [0xCEC]={ 26652 category="nd", 26653 description="KANNADA DIGIT SIX", 26654 direction="l", 26655 indic="o", 26656 linebreak="nu", 26657 unicodeslot=0xCEC, 26658 }, 26659 [0xCED]={ 26660 category="nd", 26661 description="KANNADA DIGIT SEVEN", 26662 direction="l", 26663 indic="o", 26664 linebreak="nu", 26665 unicodeslot=0xCED, 26666 }, 26667 [0xCEE]={ 26668 category="nd", 26669 description="KANNADA DIGIT EIGHT", 26670 direction="l", 26671 indic="o", 26672 linebreak="nu", 26673 unicodeslot=0xCEE, 26674 }, 26675 [0xCEF]={ 26676 category="nd", 26677 description="KANNADA DIGIT NINE", 26678 direction="l", 26679 indic="o", 26680 linebreak="nu", 26681 unicodeslot=0xCEF, 26682 }, 26683 [0xCF1]={ 26684 category="so", 26685 description="KANNADA SIGN JIHVAMULIYA", 26686 direction="l", 26687 indic="o", 26688 linebreak="al", 26689 unicodeslot=0xCF1, 26690 }, 26691 [0xCF2]={ 26692 category="so", 26693 description="KANNADA SIGN UPADHMANIYA", 26694 direction="l", 26695 indic="o", 26696 linebreak="al", 26697 unicodeslot=0xCF2, 26698 }, 26699 [0xCF3]={ 26700 category="mc", 26701 description="KANNADA SIGN COMBINING ANUSVARA ABOVE RIGHT", 26702 direction="l", 26703 linebreak="cm", 26704 unicodeslot=0xCF3, 26705 }, 26706 [0xD00]={ 26707 category="mn", 26708 description="MALAYALAM SIGN COMBINING ANUSVARA ABOVE", 26709 direction="nsm", 26710 indic="o", 26711 linebreak="cm", 26712 unicodeslot=0xD00, 26713 }, 26714 [0xD01]={ 26715 category="mn", 26716 description="MALAYALAM SIGN CANDRABINDU", 26717 direction="nsm", 26718 indic="o", 26719 linebreak="cm", 26720 unicodeslot=0xD01, 26721 }, 26722 [0xD02]={ 26723 category="mc", 26724 description="MALAYALAM SIGN ANUSVARA", 26725 direction="l", 26726 indic="m", 26727 linebreak="cm", 26728 unicodeslot=0xD02, 26729 }, 26730 [0xD03]={ 26731 category="mc", 26732 description="MALAYALAM SIGN VISARGA", 26733 direction="l", 26734 indic="m", 26735 linebreak="cm", 26736 unicodeslot=0xD03, 26737 }, 26738 [0xD04]={ 26739 category="lo", 26740 comment="todo: indic check", 26741 description="MALAYALAM LETTER VEDIC ANUSVARA", 26742 direction="l", 26743 linebreak="al", 26744 unicodeslot=0xD04, 26745 }, 26746 [0xD05]={ 26747 category="lo", 26748 description="MALAYALAM LETTER A", 26749 direction="l", 26750 indic="i", 26751 linebreak="al", 26752 unicodeslot=0xD05, 26753 }, 26754 [0xD06]={ 26755 category="lo", 26756 description="MALAYALAM LETTER AA", 26757 direction="l", 26758 indic="i", 26759 linebreak="al", 26760 unicodeslot=0xD06, 26761 }, 26762 [0xD07]={ 26763 category="lo", 26764 description="MALAYALAM LETTER I", 26765 direction="l", 26766 indic="i", 26767 linebreak="al", 26768 unicodeslot=0xD07, 26769 }, 26770 [0xD08]={ 26771 category="lo", 26772 description="MALAYALAM LETTER II", 26773 direction="l", 26774 indic="i", 26775 linebreak="al", 26776 unicodeslot=0xD08, 26777 }, 26778 [0xD09]={ 26779 category="lo", 26780 description="MALAYALAM LETTER U", 26781 direction="l", 26782 indic="i", 26783 linebreak="al", 26784 unicodeslot=0xD09, 26785 }, 26786 [0xD0A]={ 26787 category="lo", 26788 description="MALAYALAM LETTER UU", 26789 direction="l", 26790 indic="i", 26791 linebreak="al", 26792 unicodeslot=0xD0A, 26793 }, 26794 [0xD0B]={ 26795 category="lo", 26796 description="MALAYALAM LETTER VOCALIC R", 26797 direction="l", 26798 indic="i", 26799 linebreak="al", 26800 unicodeslot=0xD0B, 26801 }, 26802 [0xD0C]={ 26803 category="lo", 26804 description="MALAYALAM LETTER VOCALIC L", 26805 direction="l", 26806 indic="i", 26807 linebreak="al", 26808 unicodeslot=0xD0C, 26809 }, 26810 [0xD0E]={ 26811 category="lo", 26812 description="MALAYALAM LETTER E", 26813 direction="l", 26814 indic="i", 26815 linebreak="al", 26816 unicodeslot=0xD0E, 26817 }, 26818 [0xD0F]={ 26819 category="lo", 26820 description="MALAYALAM LETTER EE", 26821 direction="l", 26822 indic="i", 26823 linebreak="al", 26824 unicodeslot=0xD0F, 26825 }, 26826 [0xD10]={ 26827 category="lo", 26828 description="MALAYALAM LETTER AI", 26829 direction="l", 26830 indic="i", 26831 linebreak="al", 26832 unicodeslot=0xD10, 26833 }, 26834 [0xD12]={ 26835 category="lo", 26836 description="MALAYALAM LETTER O", 26837 direction="l", 26838 indic="i", 26839 linebreak="al", 26840 unicodeslot=0xD12, 26841 }, 26842 [0xD13]={ 26843 category="lo", 26844 description="MALAYALAM LETTER OO", 26845 direction="l", 26846 indic="i", 26847 linebreak="al", 26848 unicodeslot=0xD13, 26849 }, 26850 [0xD14]={ 26851 category="lo", 26852 description="MALAYALAM LETTER AU", 26853 direction="l", 26854 indic="i", 26855 linebreak="al", 26856 unicodeslot=0xD14, 26857 }, 26858 [0xD15]={ 26859 category="lo", 26860 description="MALAYALAM LETTER KA", 26861 direction="l", 26862 indic="c", 26863 linebreak="al", 26864 unicodeslot=0xD15, 26865 }, 26866 [0xD16]={ 26867 category="lo", 26868 description="MALAYALAM LETTER KHA", 26869 direction="l", 26870 indic="c", 26871 linebreak="al", 26872 unicodeslot=0xD16, 26873 }, 26874 [0xD17]={ 26875 category="lo", 26876 description="MALAYALAM LETTER GA", 26877 direction="l", 26878 indic="c", 26879 linebreak="al", 26880 unicodeslot=0xD17, 26881 }, 26882 [0xD18]={ 26883 category="lo", 26884 description="MALAYALAM LETTER GHA", 26885 direction="l", 26886 indic="c", 26887 linebreak="al", 26888 unicodeslot=0xD18, 26889 }, 26890 [0xD19]={ 26891 category="lo", 26892 description="MALAYALAM LETTER NGA", 26893 direction="l", 26894 indic="c", 26895 linebreak="al", 26896 unicodeslot=0xD19, 26897 }, 26898 [0xD1A]={ 26899 category="lo", 26900 description="MALAYALAM LETTER CA", 26901 direction="l", 26902 indic="c", 26903 linebreak="al", 26904 unicodeslot=0xD1A, 26905 }, 26906 [0xD1B]={ 26907 category="lo", 26908 description="MALAYALAM LETTER CHA", 26909 direction="l", 26910 indic="c", 26911 linebreak="al", 26912 unicodeslot=0xD1B, 26913 }, 26914 [0xD1C]={ 26915 category="lo", 26916 description="MALAYALAM LETTER JA", 26917 direction="l", 26918 indic="c", 26919 linebreak="al", 26920 unicodeslot=0xD1C, 26921 }, 26922 [0xD1D]={ 26923 category="lo", 26924 description="MALAYALAM LETTER JHA", 26925 direction="l", 26926 indic="c", 26927 linebreak="al", 26928 unicodeslot=0xD1D, 26929 }, 26930 [0xD1E]={ 26931 category="lo", 26932 description="MALAYALAM LETTER NYA", 26933 direction="l", 26934 indic="c", 26935 linebreak="al", 26936 unicodeslot=0xD1E, 26937 }, 26938 [0xD1F]={ 26939 category="lo", 26940 description="MALAYALAM LETTER TTA", 26941 direction="l", 26942 indic="c", 26943 linebreak="al", 26944 unicodeslot=0xD1F, 26945 }, 26946 [0xD20]={ 26947 category="lo", 26948 description="MALAYALAM LETTER TTHA", 26949 direction="l", 26950 indic="c", 26951 linebreak="al", 26952 unicodeslot=0xD20, 26953 }, 26954 [0xD21]={ 26955 category="lo", 26956 description="MALAYALAM LETTER DDA", 26957 direction="l", 26958 indic="c", 26959 linebreak="al", 26960 unicodeslot=0xD21, 26961 }, 26962 [0xD22]={ 26963 category="lo", 26964 description="MALAYALAM LETTER DDHA", 26965 direction="l", 26966 indic="c", 26967 linebreak="al", 26968 unicodeslot=0xD22, 26969 }, 26970 [0xD23]={ 26971 category="lo", 26972 description="MALAYALAM LETTER NNA", 26973 direction="l", 26974 indic="c", 26975 linebreak="al", 26976 unicodeslot=0xD23, 26977 }, 26978 [0xD24]={ 26979 category="lo", 26980 description="MALAYALAM LETTER TA", 26981 direction="l", 26982 indic="c", 26983 linebreak="al", 26984 unicodeslot=0xD24, 26985 }, 26986 [0xD25]={ 26987 category="lo", 26988 description="MALAYALAM LETTER THA", 26989 direction="l", 26990 indic="c", 26991 linebreak="al", 26992 unicodeslot=0xD25, 26993 }, 26994 [0xD26]={ 26995 category="lo", 26996 description="MALAYALAM LETTER DA", 26997 direction="l", 26998 indic="c", 26999 linebreak="al", 27000 unicodeslot=0xD26, 27001 }, 27002 [0xD27]={ 27003 category="lo", 27004 description="MALAYALAM LETTER DHA", 27005 direction="l", 27006 indic="c", 27007 linebreak="al", 27008 unicodeslot=0xD27, 27009 }, 27010 [0xD28]={ 27011 category="lo", 27012 description="MALAYALAM LETTER NA", 27013 direction="l", 27014 indic="c", 27015 linebreak="al", 27016 unicodeslot=0xD28, 27017 }, 27018 [0xD29]={ 27019 category="lo", 27020 description="MALAYALAM LETTER NNNA", 27021 direction="l", 27022 indic="c", 27023 linebreak="al", 27024 unicodeslot=0xD29, 27025 }, 27026 [0xD2A]={ 27027 category="lo", 27028 description="MALAYALAM LETTER PA", 27029 direction="l", 27030 indic="c", 27031 linebreak="al", 27032 unicodeslot=0xD2A, 27033 }, 27034 [0xD2B]={ 27035 category="lo", 27036 description="MALAYALAM LETTER PHA", 27037 direction="l", 27038 indic="c", 27039 linebreak="al", 27040 unicodeslot=0xD2B, 27041 }, 27042 [0xD2C]={ 27043 category="lo", 27044 description="MALAYALAM LETTER BA", 27045 direction="l", 27046 indic="c", 27047 linebreak="al", 27048 unicodeslot=0xD2C, 27049 }, 27050 [0xD2D]={ 27051 category="lo", 27052 description="MALAYALAM LETTER BHA", 27053 direction="l", 27054 indic="c", 27055 linebreak="al", 27056 unicodeslot=0xD2D, 27057 }, 27058 [0xD2E]={ 27059 category="lo", 27060 description="MALAYALAM LETTER MA", 27061 direction="l", 27062 indic="c", 27063 linebreak="al", 27064 unicodeslot=0xD2E, 27065 }, 27066 [0xD2F]={ 27067 category="lo", 27068 description="MALAYALAM LETTER YA", 27069 direction="l", 27070 indic="c", 27071 linebreak="al", 27072 unicodeslot=0xD2F, 27073 }, 27074 [0xD30]={ 27075 category="lo", 27076 description="MALAYALAM LETTER RA", 27077 direction="l", 27078 indic="c", 27079 indicclass="ra", 27080 indicorder="am", 27081 linebreak="al", 27082 unicodeslot=0xD30, 27083 }, 27084 [0xD31]={ 27085 category="lo", 27086 description="MALAYALAM LETTER RRA", 27087 direction="l", 27088 indic="c", 27089 linebreak="al", 27090 unicodeslot=0xD31, 27091 }, 27092 [0xD32]={ 27093 category="lo", 27094 description="MALAYALAM LETTER LA", 27095 direction="l", 27096 indic="c", 27097 linebreak="al", 27098 unicodeslot=0xD32, 27099 }, 27100 [0xD33]={ 27101 category="lo", 27102 description="MALAYALAM LETTER LLA", 27103 direction="l", 27104 indic="c", 27105 linebreak="al", 27106 unicodeslot=0xD33, 27107 }, 27108 [0xD34]={ 27109 category="lo", 27110 description="MALAYALAM LETTER LLLA", 27111 direction="l", 27112 indic="c", 27113 linebreak="al", 27114 unicodeslot=0xD34, 27115 }, 27116 [0xD35]={ 27117 category="lo", 27118 description="MALAYALAM LETTER VA", 27119 direction="l", 27120 indic="c", 27121 linebreak="al", 27122 unicodeslot=0xD35, 27123 }, 27124 [0xD36]={ 27125 category="lo", 27126 description="MALAYALAM LETTER SHA", 27127 direction="l", 27128 indic="c", 27129 linebreak="al", 27130 unicodeslot=0xD36, 27131 }, 27132 [0xD37]={ 27133 category="lo", 27134 description="MALAYALAM LETTER SSA", 27135 direction="l", 27136 indic="c", 27137 linebreak="al", 27138 unicodeslot=0xD37, 27139 }, 27140 [0xD38]={ 27141 category="lo", 27142 description="MALAYALAM LETTER SA", 27143 direction="l", 27144 indic="c", 27145 linebreak="al", 27146 unicodeslot=0xD38, 27147 }, 27148 [0xD39]={ 27149 category="lo", 27150 description="MALAYALAM LETTER HA", 27151 direction="l", 27152 indic="c", 27153 linebreak="al", 27154 unicodeslot=0xD39, 27155 }, 27156 [0xD3A]={ 27157 category="lo", 27158 description="MALAYALAM LETTER TTTA", 27159 direction="l", 27160 indic="c", 27161 linebreak="al", 27162 unicodeslot=0xD3A, 27163 }, 27164 [0xD3B]={ 27165 category="mn", 27166 combining=0x9, 27167 description="MALAYALAM SIGN VERTICAL BAR VIRAMA", 27168 direction="nsm", 27169 indic="o", 27170 linebreak="cm", 27171 unicodeslot=0xD3B, 27172 }, 27173 [0xD3C]={ 27174 category="mn", 27175 combining=0x9, 27176 description="MALAYALAM SIGN CIRCULAR VIRAMA", 27177 direction="nsm", 27178 indic="o", 27179 linebreak="cm", 27180 unicodeslot=0xD3C, 27181 }, 27182 [0xD3D]={ 27183 category="lo", 27184 description="MALAYALAM SIGN AVAGRAHA", 27185 direction="l", 27186 indic="o", 27187 linebreak="al", 27188 unicodeslot=0xD3D, 27189 }, 27190 [0xD3E]={ 27191 category="mc", 27192 description="MALAYALAM VOWEL SIGN AA", 27193 direction="l", 27194 indic="d", 27195 indicmark="r", 27196 indicorder="ap", 27197 linebreak="cm", 27198 unicodeslot=0xD3E, 27199 }, 27200 [0xD3F]={ 27201 category="mc", 27202 description="MALAYALAM VOWEL SIGN I", 27203 direction="l", 27204 indic="d", 27205 indicmark="r", 27206 indicorder="ap", 27207 linebreak="cm", 27208 unicodeslot=0xD3F, 27209 }, 27210 [0xD40]={ 27211 category="mc", 27212 description="MALAYALAM VOWEL SIGN II", 27213 direction="l", 27214 indic="d", 27215 indicmark="r", 27216 indicorder="ap", 27217 linebreak="cm", 27218 unicodeslot=0xD40, 27219 }, 27220 [0xD41]={ 27221 category="mn", 27222 description="MALAYALAM VOWEL SIGN U", 27223 direction="nsm", 27224 indic="d", 27225 indicmark="r", 27226 indicorder="ap", 27227 linebreak="cm", 27228 unicodeslot=0xD41, 27229 }, 27230 [0xD42]={ 27231 category="mn", 27232 description="MALAYALAM VOWEL SIGN UU", 27233 direction="nsm", 27234 indic="d", 27235 indicmark="r", 27236 indicorder="ap", 27237 linebreak="cm", 27238 unicodeslot=0xD42, 27239 }, 27240 [0xD43]={ 27241 category="mn", 27242 description="MALAYALAM VOWEL SIGN VOCALIC R", 27243 direction="nsm", 27244 indic="d", 27245 indicmark="r", 27246 indicorder="ap", 27247 linebreak="cm", 27248 unicodeslot=0xD43, 27249 }, 27250 [0xD44]={ 27251 category="mn", 27252 description="MALAYALAM VOWEL SIGN VOCALIC RR", 27253 direction="nsm", 27254 indic="d", 27255 indicmark="r", 27256 linebreak="cm", 27257 unicodeslot=0xD44, 27258 }, 27259 [0xD46]={ 27260 category="mc", 27261 description="MALAYALAM VOWEL SIGN E", 27262 direction="l", 27263 indic="d", 27264 indicmark="l", 27265 indicorder="bm", 27266 linebreak="cm", 27267 unicodeslot=0xD46, 27268 }, 27269 [0xD47]={ 27270 category="mc", 27271 description="MALAYALAM VOWEL SIGN EE", 27272 direction="l", 27273 indic="d", 27274 indicmark="l", 27275 indicorder="bm", 27276 linebreak="cm", 27277 unicodeslot=0xD47, 27278 }, 27279 [0xD48]={ 27280 category="mc", 27281 description="MALAYALAM VOWEL SIGN AI", 27282 direction="l", 27283 indic="d", 27284 indicmark="l", 27285 indicorder="bm", 27286 linebreak="cm", 27287 unicodeslot=0xD48, 27288 }, 27289 [0xD4A]={ 27290 category="mc", 27291 description="MALAYALAM VOWEL SIGN O", 27292 direction="l", 27293 indic="d", 27294 indicmark="s", 27295 linebreak="cm", 27296 specials={ "char", 0xD46, 0xD3E }, 27297 unicodeslot=0xD4A, 27298 }, 27299 [0xD4B]={ 27300 category="mc", 27301 description="MALAYALAM VOWEL SIGN OO", 27302 direction="l", 27303 indic="d", 27304 indicmark="s", 27305 linebreak="cm", 27306 specials={ "char", 0xD47, 0xD3E }, 27307 unicodeslot=0xD4B, 27308 }, 27309 [0xD4C]={ 27310 category="mc", 27311 description="MALAYALAM VOWEL SIGN AU", 27312 direction="l", 27313 indic="d", 27314 indicmark="s", 27315 linebreak="cm", 27316 specials={ "char", 0xD46, 0xD57 }, 27317 unicodeslot=0xD4C, 27318 }, 27319 [0xD4D]={ 27320 category="mn", 27321 combining=0x9, 27322 description="MALAYALAM SIGN VIRAMA", 27323 direction="nsm", 27324 indic="o", 27325 indicclass="halant", 27326 indicmark="r", 27327 linebreak="cm", 27328 synonyms={ "malayalam chandrakkala", "malayalam vowel half-u" }, 27329 unicodeslot=0xD4D, 27330 }, 27331 [0xD4E]={ 27332 category="lo", 27333 description="MALAYALAM LETTER DOT REPH", 27334 direction="l", 27335 indic="o", 27336 indicmark="t", 27337 linebreak="al", 27338 unicodeslot=0xD4E, 27339 }, 27340 [0xD4F]={ 27341 category="so", 27342 description="MALAYALAM SIGN PARA", 27343 direction="l", 27344 indic="o", 27345 linebreak="al", 27346 unicodeslot=0xD4F, 27347 }, 27348 [0xD54]={ 27349 category="lo", 27350 description="MALAYALAM LETTER CHILLU M", 27351 direction="l", 27352 indic="o", 27353 linebreak="al", 27354 unicodeslot=0xD54, 27355 }, 27356 [0xD55]={ 27357 category="lo", 27358 description="MALAYALAM LETTER CHILLU Y", 27359 direction="l", 27360 indic="o", 27361 linebreak="al", 27362 unicodeslot=0xD55, 27363 }, 27364 [0xD56]={ 27365 category="lo", 27366 description="MALAYALAM LETTER CHILLU LLL", 27367 direction="l", 27368 indic="o", 27369 linebreak="al", 27370 unicodeslot=0xD56, 27371 }, 27372 [0xD57]={ 27373 category="mc", 27374 description="MALAYALAM AU LENGTH MARK", 27375 direction="l", 27376 indic="d", 27377 indicmark="r", 27378 indicorder="ap", 27379 linebreak="cm", 27380 unicodeslot=0xD57, 27381 }, 27382 [0xD58]={ 27383 category="no", 27384 description="MALAYALAM FRACTION ONE ONE-HUNDRED-AND-SIXTIETH", 27385 direction="l", 27386 indic="o", 27387 linebreak="al", 27388 unicodeslot=0xD58, 27389 }, 27390 [0xD59]={ 27391 category="no", 27392 description="MALAYALAM FRACTION ONE FORTIETH", 27393 direction="l", 27394 indic="o", 27395 linebreak="al", 27396 unicodeslot=0xD59, 27397 }, 27398 [0xD5A]={ 27399 category="no", 27400 description="MALAYALAM FRACTION THREE EIGHTIETHS", 27401 direction="l", 27402 indic="o", 27403 linebreak="al", 27404 unicodeslot=0xD5A, 27405 }, 27406 [0xD5B]={ 27407 category="no", 27408 description="MALAYALAM FRACTION ONE TWENTIETH", 27409 direction="l", 27410 indic="o", 27411 linebreak="al", 27412 unicodeslot=0xD5B, 27413 }, 27414 [0xD5C]={ 27415 category="no", 27416 description="MALAYALAM FRACTION ONE TENTH", 27417 direction="l", 27418 indic="o", 27419 linebreak="al", 27420 unicodeslot=0xD5C, 27421 }, 27422 [0xD5D]={ 27423 category="no", 27424 description="MALAYALAM FRACTION THREE TWENTIETHS", 27425 direction="l", 27426 indic="o", 27427 linebreak="al", 27428 unicodeslot=0xD5D, 27429 }, 27430 [0xD5E]={ 27431 category="no", 27432 description="MALAYALAM FRACTION ONE FIFTH", 27433 direction="l", 27434 indic="o", 27435 linebreak="al", 27436 unicodeslot=0xD5E, 27437 }, 27438 [0xD5F]={ 27439 category="lo", 27440 description="MALAYALAM LETTER ARCHAIC II", 27441 direction="l", 27442 indic="i", 27443 linebreak="al", 27444 unicodeslot=0xD5F, 27445 }, 27446 [0xD60]={ 27447 category="lo", 27448 description="MALAYALAM LETTER VOCALIC RR", 27449 direction="l", 27450 indic="i", 27451 linebreak="al", 27452 unicodeslot=0xD60, 27453 }, 27454 [0xD61]={ 27455 category="lo", 27456 description="MALAYALAM LETTER VOCALIC LL", 27457 direction="l", 27458 indic="i", 27459 linebreak="al", 27460 unicodeslot=0xD61, 27461 }, 27462 [0xD62]={ 27463 category="mn", 27464 description="MALAYALAM VOWEL SIGN VOCALIC L", 27465 direction="nsm", 27466 indic="d", 27467 indicmark="b", 27468 linebreak="cm", 27469 unicodeslot=0xD62, 27470 }, 27471 [0xD63]={ 27472 category="mn", 27473 description="MALAYALAM VOWEL SIGN VOCALIC LL", 27474 direction="nsm", 27475 indic="d", 27476 indicmark="b", 27477 linebreak="cm", 27478 unicodeslot=0xD63, 27479 }, 27480 [0xD66]={ 27481 category="nd", 27482 description="MALAYALAM DIGIT ZERO", 27483 direction="l", 27484 indic="o", 27485 linebreak="nu", 27486 unicodeslot=0xD66, 27487 }, 27488 [0xD67]={ 27489 category="nd", 27490 description="MALAYALAM DIGIT ONE", 27491 direction="l", 27492 indic="o", 27493 linebreak="nu", 27494 unicodeslot=0xD67, 27495 }, 27496 [0xD68]={ 27497 category="nd", 27498 description="MALAYALAM DIGIT TWO", 27499 direction="l", 27500 indic="o", 27501 linebreak="nu", 27502 unicodeslot=0xD68, 27503 }, 27504 [0xD69]={ 27505 category="nd", 27506 description="MALAYALAM DIGIT THREE", 27507 direction="l", 27508 indic="o", 27509 linebreak="nu", 27510 unicodeslot=0xD69, 27511 }, 27512 [0xD6A]={ 27513 category="nd", 27514 description="MALAYALAM DIGIT FOUR", 27515 direction="l", 27516 indic="o", 27517 linebreak="nu", 27518 unicodeslot=0xD6A, 27519 }, 27520 [0xD6B]={ 27521 category="nd", 27522 description="MALAYALAM DIGIT FIVE", 27523 direction="l", 27524 indic="o", 27525 linebreak="nu", 27526 unicodeslot=0xD6B, 27527 }, 27528 [0xD6C]={ 27529 category="nd", 27530 description="MALAYALAM DIGIT SIX", 27531 direction="l", 27532 indic="o", 27533 linebreak="nu", 27534 unicodeslot=0xD6C, 27535 }, 27536 [0xD6D]={ 27537 category="nd", 27538 description="MALAYALAM DIGIT SEVEN", 27539 direction="l", 27540 indic="o", 27541 linebreak="nu", 27542 unicodeslot=0xD6D, 27543 }, 27544 [0xD6E]={ 27545 category="nd", 27546 description="MALAYALAM DIGIT EIGHT", 27547 direction="l", 27548 indic="o", 27549 linebreak="nu", 27550 unicodeslot=0xD6E, 27551 }, 27552 [0xD6F]={ 27553 category="nd", 27554 description="MALAYALAM DIGIT NINE", 27555 direction="l", 27556 indic="o", 27557 linebreak="nu", 27558 unicodeslot=0xD6F, 27559 }, 27560 [0xD70]={ 27561 category="no", 27562 description="MALAYALAM NUMBER TEN", 27563 direction="l", 27564 indic="o", 27565 linebreak="al", 27566 unicodeslot=0xD70, 27567 }, 27568 [0xD71]={ 27569 category="no", 27570 description="MALAYALAM NUMBER ONE HUNDRED", 27571 direction="l", 27572 indic="o", 27573 linebreak="al", 27574 unicodeslot=0xD71, 27575 }, 27576 [0xD72]={ 27577 category="no", 27578 description="MALAYALAM NUMBER ONE THOUSAND", 27579 direction="l", 27580 indic="o", 27581 linebreak="al", 27582 unicodeslot=0xD72, 27583 }, 27584 [0xD73]={ 27585 category="no", 27586 description="MALAYALAM FRACTION ONE QUARTER", 27587 direction="l", 27588 indic="o", 27589 linebreak="al", 27590 unicodeslot=0xD73, 27591 }, 27592 [0xD74]={ 27593 category="no", 27594 description="MALAYALAM FRACTION ONE HALF", 27595 direction="l", 27596 indic="o", 27597 linebreak="al", 27598 unicodeslot=0xD74, 27599 }, 27600 [0xD75]={ 27601 category="no", 27602 description="MALAYALAM FRACTION THREE QUARTERS", 27603 direction="l", 27604 indic="o", 27605 linebreak="al", 27606 unicodeslot=0xD75, 27607 }, 27608 [0xD76]={ 27609 category="no", 27610 description="MALAYALAM FRACTION ONE SIXTEENTH", 27611 direction="l", 27612 indic="o", 27613 linebreak="al", 27614 unicodeslot=0xD76, 27615 }, 27616 [0xD77]={ 27617 category="no", 27618 description="MALAYALAM FRACTION ONE EIGHTH", 27619 direction="l", 27620 indic="o", 27621 linebreak="al", 27622 unicodeslot=0xD77, 27623 }, 27624 [0xD78]={ 27625 category="no", 27626 description="MALAYALAM FRACTION THREE SIXTEENTHS", 27627 direction="l", 27628 indic="o", 27629 linebreak="al", 27630 unicodeslot=0xD78, 27631 }, 27632 [0xD79]={ 27633 category="so", 27634 description="MALAYALAM DATE MARK", 27635 direction="l", 27636 indic="o", 27637 linebreak="po", 27638 unicodeslot=0xD79, 27639 }, 27640 [0xD7A]={ 27641 category="lo", 27642 description="MALAYALAM LETTER CHILLU NN", 27643 direction="l", 27644 indic="o", 27645 linebreak="al", 27646 unicodeslot=0xD7A, 27647 }, 27648 [0xD7B]={ 27649 category="lo", 27650 description="MALAYALAM LETTER CHILLU N", 27651 direction="l", 27652 indic="o", 27653 linebreak="al", 27654 unicodeslot=0xD7B, 27655 }, 27656 [0xD7C]={ 27657 category="lo", 27658 description="MALAYALAM LETTER CHILLU RR", 27659 direction="l", 27660 indic="o", 27661 linebreak="al", 27662 unicodeslot=0xD7C, 27663 }, 27664 [0xD7D]={ 27665 category="lo", 27666 description="MALAYALAM LETTER CHILLU L", 27667 direction="l", 27668 indic="o", 27669 linebreak="al", 27670 unicodeslot=0xD7D, 27671 }, 27672 [0xD7E]={ 27673 category="lo", 27674 description="MALAYALAM LETTER CHILLU LL", 27675 direction="l", 27676 indic="o", 27677 linebreak="al", 27678 unicodeslot=0xD7E, 27679 }, 27680 [0xD7F]={ 27681 category="lo", 27682 description="MALAYALAM LETTER CHILLU K", 27683 direction="l", 27684 indic="o", 27685 linebreak="al", 27686 unicodeslot=0xD7F, 27687 }, 27688 [0xD81]={ 27689 category="mn", 27690 description="SINHALA SIGN CANDRABINDU", 27691 direction="nsm", 27692 linebreak="cm", 27693 unicodeslot=0xD81, 27694 }, 27695 [0xD82]={ 27696 category="mc", 27697 description="SINHALA SIGN ANUSVARAYA", 27698 direction="l", 27699 linebreak="cm", 27700 unicodeslot=0xD82, 27701 }, 27702 [0xD83]={ 27703 category="mc", 27704 description="SINHALA SIGN VISARGAYA", 27705 direction="l", 27706 linebreak="cm", 27707 unicodeslot=0xD83, 27708 }, 27709 [0xD85]={ 27710 category="lo", 27711 description="SINHALA LETTER AYANNA", 27712 direction="l", 27713 linebreak="al", 27714 unicodeslot=0xD85, 27715 }, 27716 [0xD86]={ 27717 category="lo", 27718 description="SINHALA LETTER AAYANNA", 27719 direction="l", 27720 linebreak="al", 27721 unicodeslot=0xD86, 27722 }, 27723 [0xD87]={ 27724 category="lo", 27725 description="SINHALA LETTER AEYANNA", 27726 direction="l", 27727 linebreak="al", 27728 unicodeslot=0xD87, 27729 }, 27730 [0xD88]={ 27731 category="lo", 27732 description="SINHALA LETTER AEEYANNA", 27733 direction="l", 27734 linebreak="al", 27735 unicodeslot=0xD88, 27736 }, 27737 [0xD89]={ 27738 category="lo", 27739 description="SINHALA LETTER IYANNA", 27740 direction="l", 27741 linebreak="al", 27742 unicodeslot=0xD89, 27743 }, 27744 [0xD8A]={ 27745 category="lo", 27746 description="SINHALA LETTER IIYANNA", 27747 direction="l", 27748 linebreak="al", 27749 unicodeslot=0xD8A, 27750 }, 27751 [0xD8B]={ 27752 category="lo", 27753 description="SINHALA LETTER UYANNA", 27754 direction="l", 27755 linebreak="al", 27756 unicodeslot=0xD8B, 27757 }, 27758 [0xD8C]={ 27759 category="lo", 27760 description="SINHALA LETTER UUYANNA", 27761 direction="l", 27762 linebreak="al", 27763 unicodeslot=0xD8C, 27764 }, 27765 [0xD8D]={ 27766 category="lo", 27767 description="SINHALA LETTER IRUYANNA", 27768 direction="l", 27769 linebreak="al", 27770 unicodeslot=0xD8D, 27771 }, 27772 [0xD8E]={ 27773 category="lo", 27774 description="SINHALA LETTER IRUUYANNA", 27775 direction="l", 27776 linebreak="al", 27777 unicodeslot=0xD8E, 27778 }, 27779 [0xD8F]={ 27780 category="lo", 27781 description="SINHALA LETTER ILUYANNA", 27782 direction="l", 27783 linebreak="al", 27784 unicodeslot=0xD8F, 27785 }, 27786 [0xD90]={ 27787 category="lo", 27788 description="SINHALA LETTER ILUUYANNA", 27789 direction="l", 27790 linebreak="al", 27791 unicodeslot=0xD90, 27792 }, 27793 [0xD91]={ 27794 category="lo", 27795 description="SINHALA LETTER EYANNA", 27796 direction="l", 27797 linebreak="al", 27798 unicodeslot=0xD91, 27799 }, 27800 [0xD92]={ 27801 category="lo", 27802 description="SINHALA LETTER EEYANNA", 27803 direction="l", 27804 linebreak="al", 27805 unicodeslot=0xD92, 27806 }, 27807 [0xD93]={ 27808 category="lo", 27809 description="SINHALA LETTER AIYANNA", 27810 direction="l", 27811 linebreak="al", 27812 unicodeslot=0xD93, 27813 }, 27814 [0xD94]={ 27815 category="lo", 27816 description="SINHALA LETTER OYANNA", 27817 direction="l", 27818 linebreak="al", 27819 unicodeslot=0xD94, 27820 }, 27821 [0xD95]={ 27822 category="lo", 27823 description="SINHALA LETTER OOYANNA", 27824 direction="l", 27825 linebreak="al", 27826 unicodeslot=0xD95, 27827 }, 27828 [0xD96]={ 27829 category="lo", 27830 description="SINHALA LETTER AUYANNA", 27831 direction="l", 27832 linebreak="al", 27833 unicodeslot=0xD96, 27834 }, 27835 [0xD9A]={ 27836 category="lo", 27837 description="SINHALA LETTER ALPAPRAANA KAYANNA", 27838 direction="l", 27839 linebreak="al", 27840 unicodeslot=0xD9A, 27841 }, 27842 [0xD9B]={ 27843 category="lo", 27844 description="SINHALA LETTER MAHAAPRAANA KAYANNA", 27845 direction="l", 27846 linebreak="al", 27847 unicodeslot=0xD9B, 27848 }, 27849 [0xD9C]={ 27850 category="lo", 27851 description="SINHALA LETTER ALPAPRAANA GAYANNA", 27852 direction="l", 27853 linebreak="al", 27854 unicodeslot=0xD9C, 27855 }, 27856 [0xD9D]={ 27857 category="lo", 27858 description="SINHALA LETTER MAHAAPRAANA GAYANNA", 27859 direction="l", 27860 linebreak="al", 27861 unicodeslot=0xD9D, 27862 }, 27863 [0xD9E]={ 27864 category="lo", 27865 description="SINHALA LETTER KANTAJA NAASIKYAYA", 27866 direction="l", 27867 linebreak="al", 27868 unicodeslot=0xD9E, 27869 }, 27870 [0xD9F]={ 27871 category="lo", 27872 description="SINHALA LETTER SANYAKA GAYANNA", 27873 direction="l", 27874 linebreak="al", 27875 unicodeslot=0xD9F, 27876 }, 27877 [0xDA0]={ 27878 category="lo", 27879 description="SINHALA LETTER ALPAPRAANA CAYANNA", 27880 direction="l", 27881 linebreak="al", 27882 unicodeslot=0xDA0, 27883 }, 27884 [0xDA1]={ 27885 category="lo", 27886 description="SINHALA LETTER MAHAAPRAANA CAYANNA", 27887 direction="l", 27888 linebreak="al", 27889 unicodeslot=0xDA1, 27890 }, 27891 [0xDA2]={ 27892 category="lo", 27893 description="SINHALA LETTER ALPAPRAANA JAYANNA", 27894 direction="l", 27895 linebreak="al", 27896 unicodeslot=0xDA2, 27897 }, 27898 [0xDA3]={ 27899 category="lo", 27900 description="SINHALA LETTER MAHAAPRAANA JAYANNA", 27901 direction="l", 27902 linebreak="al", 27903 unicodeslot=0xDA3, 27904 }, 27905 [0xDA4]={ 27906 category="lo", 27907 description="SINHALA LETTER TAALUJA NAASIKYAYA", 27908 direction="l", 27909 linebreak="al", 27910 unicodeslot=0xDA4, 27911 }, 27912 [0xDA5]={ 27913 category="lo", 27914 description="SINHALA LETTER TAALUJA SANYOOGA NAAKSIKYAYA", 27915 direction="l", 27916 linebreak="al", 27917 unicodeslot=0xDA5, 27918 }, 27919 [0xDA6]={ 27920 category="lo", 27921 description="SINHALA LETTER SANYAKA JAYANNA", 27922 direction="l", 27923 linebreak="al", 27924 unicodeslot=0xDA6, 27925 }, 27926 [0xDA7]={ 27927 category="lo", 27928 description="SINHALA LETTER ALPAPRAANA TTAYANNA", 27929 direction="l", 27930 linebreak="al", 27931 unicodeslot=0xDA7, 27932 }, 27933 [0xDA8]={ 27934 category="lo", 27935 description="SINHALA LETTER MAHAAPRAANA TTAYANNA", 27936 direction="l", 27937 linebreak="al", 27938 unicodeslot=0xDA8, 27939 }, 27940 [0xDA9]={ 27941 category="lo", 27942 description="SINHALA LETTER ALPAPRAANA DDAYANNA", 27943 direction="l", 27944 linebreak="al", 27945 unicodeslot=0xDA9, 27946 }, 27947 [0xDAA]={ 27948 category="lo", 27949 description="SINHALA LETTER MAHAAPRAANA DDAYANNA", 27950 direction="l", 27951 linebreak="al", 27952 unicodeslot=0xDAA, 27953 }, 27954 [0xDAB]={ 27955 category="lo", 27956 description="SINHALA LETTER MUURDHAJA NAYANNA", 27957 direction="l", 27958 linebreak="al", 27959 unicodeslot=0xDAB, 27960 }, 27961 [0xDAC]={ 27962 category="lo", 27963 description="SINHALA LETTER SANYAKA DDAYANNA", 27964 direction="l", 27965 linebreak="al", 27966 unicodeslot=0xDAC, 27967 }, 27968 [0xDAD]={ 27969 category="lo", 27970 description="SINHALA LETTER ALPAPRAANA TAYANNA", 27971 direction="l", 27972 linebreak="al", 27973 unicodeslot=0xDAD, 27974 }, 27975 [0xDAE]={ 27976 category="lo", 27977 description="SINHALA LETTER MAHAAPRAANA TAYANNA", 27978 direction="l", 27979 linebreak="al", 27980 unicodeslot=0xDAE, 27981 }, 27982 [0xDAF]={ 27983 category="lo", 27984 description="SINHALA LETTER ALPAPRAANA DAYANNA", 27985 direction="l", 27986 linebreak="al", 27987 unicodeslot=0xDAF, 27988 }, 27989 [0xDB0]={ 27990 category="lo", 27991 description="SINHALA LETTER MAHAAPRAANA DAYANNA", 27992 direction="l", 27993 linebreak="al", 27994 unicodeslot=0xDB0, 27995 }, 27996 [0xDB1]={ 27997 category="lo", 27998 description="SINHALA LETTER DANTAJA NAYANNA", 27999 direction="l", 28000 linebreak="al", 28001 unicodeslot=0xDB1, 28002 }, 28003 [0xDB3]={ 28004 category="lo", 28005 description="SINHALA LETTER SANYAKA DAYANNA", 28006 direction="l", 28007 linebreak="al", 28008 unicodeslot=0xDB3, 28009 }, 28010 [0xDB4]={ 28011 category="lo", 28012 description="SINHALA LETTER ALPAPRAANA PAYANNA", 28013 direction="l", 28014 linebreak="al", 28015 unicodeslot=0xDB4, 28016 }, 28017 [0xDB5]={ 28018 category="lo", 28019 description="SINHALA LETTER MAHAAPRAANA PAYANNA", 28020 direction="l", 28021 linebreak="al", 28022 unicodeslot=0xDB5, 28023 }, 28024 [0xDB6]={ 28025 category="lo", 28026 description="SINHALA LETTER ALPAPRAANA BAYANNA", 28027 direction="l", 28028 linebreak="al", 28029 unicodeslot=0xDB6, 28030 }, 28031 [0xDB7]={ 28032 category="lo", 28033 description="SINHALA LETTER MAHAAPRAANA BAYANNA", 28034 direction="l", 28035 linebreak="al", 28036 unicodeslot=0xDB7, 28037 }, 28038 [0xDB8]={ 28039 category="lo", 28040 description="SINHALA LETTER MAYANNA", 28041 direction="l", 28042 linebreak="al", 28043 unicodeslot=0xDB8, 28044 }, 28045 [0xDB9]={ 28046 category="lo", 28047 description="SINHALA LETTER AMBA BAYANNA", 28048 direction="l", 28049 linebreak="al", 28050 unicodeslot=0xDB9, 28051 }, 28052 [0xDBA]={ 28053 category="lo", 28054 description="SINHALA LETTER YAYANNA", 28055 direction="l", 28056 linebreak="al", 28057 unicodeslot=0xDBA, 28058 }, 28059 [0xDBB]={ 28060 category="lo", 28061 description="SINHALA LETTER RAYANNA", 28062 direction="l", 28063 linebreak="al", 28064 unicodeslot=0xDBB, 28065 }, 28066 [0xDBD]={ 28067 category="lo", 28068 description="SINHALA LETTER DANTAJA LAYANNA", 28069 direction="l", 28070 linebreak="al", 28071 unicodeslot=0xDBD, 28072 }, 28073 [0xDC0]={ 28074 category="lo", 28075 description="SINHALA LETTER VAYANNA", 28076 direction="l", 28077 linebreak="al", 28078 unicodeslot=0xDC0, 28079 }, 28080 [0xDC1]={ 28081 category="lo", 28082 description="SINHALA LETTER TAALUJA SAYANNA", 28083 direction="l", 28084 linebreak="al", 28085 unicodeslot=0xDC1, 28086 }, 28087 [0xDC2]={ 28088 category="lo", 28089 description="SINHALA LETTER MUURDHAJA SAYANNA", 28090 direction="l", 28091 linebreak="al", 28092 unicodeslot=0xDC2, 28093 }, 28094 [0xDC3]={ 28095 category="lo", 28096 description="SINHALA LETTER DANTAJA SAYANNA", 28097 direction="l", 28098 linebreak="al", 28099 unicodeslot=0xDC3, 28100 }, 28101 [0xDC4]={ 28102 category="lo", 28103 description="SINHALA LETTER HAYANNA", 28104 direction="l", 28105 linebreak="al", 28106 unicodeslot=0xDC4, 28107 }, 28108 [0xDC5]={ 28109 category="lo", 28110 description="SINHALA LETTER MUURDHAJA LAYANNA", 28111 direction="l", 28112 linebreak="al", 28113 unicodeslot=0xDC5, 28114 }, 28115 [0xDC6]={ 28116 category="lo", 28117 description="SINHALA LETTER FAYANNA", 28118 direction="l", 28119 linebreak="al", 28120 unicodeslot=0xDC6, 28121 }, 28122 [0xDCA]={ 28123 category="mn", 28124 combining=0x9, 28125 description="SINHALA SIGN AL-LAKUNA", 28126 direction="nsm", 28127 linebreak="cm", 28128 synonyms={ "sinhala virama" }, 28129 unicodeslot=0xDCA, 28130 }, 28131 [0xDCF]={ 28132 category="mc", 28133 description="SINHALA VOWEL SIGN AELA-PILLA", 28134 direction="l", 28135 linebreak="cm", 28136 unicodeslot=0xDCF, 28137 }, 28138 [0xDD0]={ 28139 category="mc", 28140 description="SINHALA VOWEL SIGN KETTI AEDA-PILLA", 28141 direction="l", 28142 linebreak="cm", 28143 unicodeslot=0xDD0, 28144 }, 28145 [0xDD1]={ 28146 category="mc", 28147 description="SINHALA VOWEL SIGN DIGA AEDA-PILLA", 28148 direction="l", 28149 linebreak="cm", 28150 unicodeslot=0xDD1, 28151 }, 28152 [0xDD2]={ 28153 category="mn", 28154 description="SINHALA VOWEL SIGN KETTI IS-PILLA", 28155 direction="nsm", 28156 linebreak="cm", 28157 unicodeslot=0xDD2, 28158 }, 28159 [0xDD3]={ 28160 category="mn", 28161 description="SINHALA VOWEL SIGN DIGA IS-PILLA", 28162 direction="nsm", 28163 linebreak="cm", 28164 unicodeslot=0xDD3, 28165 }, 28166 [0xDD4]={ 28167 category="mn", 28168 description="SINHALA VOWEL SIGN KETTI PAA-PILLA", 28169 direction="nsm", 28170 linebreak="cm", 28171 unicodeslot=0xDD4, 28172 }, 28173 [0xDD6]={ 28174 category="mn", 28175 description="SINHALA VOWEL SIGN DIGA PAA-PILLA", 28176 direction="nsm", 28177 linebreak="cm", 28178 unicodeslot=0xDD6, 28179 }, 28180 [0xDD8]={ 28181 category="mc", 28182 description="SINHALA VOWEL SIGN GAETTA-PILLA", 28183 direction="l", 28184 linebreak="cm", 28185 unicodeslot=0xDD8, 28186 }, 28187 [0xDD9]={ 28188 category="mc", 28189 description="SINHALA VOWEL SIGN KOMBUVA", 28190 direction="l", 28191 linebreak="cm", 28192 unicodeslot=0xDD9, 28193 }, 28194 [0xDDA]={ 28195 category="mc", 28196 description="SINHALA VOWEL SIGN DIGA KOMBUVA", 28197 direction="l", 28198 linebreak="cm", 28199 specials={ "char", 0xDD9, 0xDCA }, 28200 unicodeslot=0xDDA, 28201 }, 28202 [0xDDB]={ 28203 category="mc", 28204 description="SINHALA VOWEL SIGN KOMBU DEKA", 28205 direction="l", 28206 linebreak="cm", 28207 unicodeslot=0xDDB, 28208 }, 28209 [0xDDC]={ 28210 category="mc", 28211 description="SINHALA VOWEL SIGN KOMBUVA HAA AELA-PILLA", 28212 direction="l", 28213 linebreak="cm", 28214 specials={ "char", 0xDD9, 0xDCF }, 28215 unicodeslot=0xDDC, 28216 }, 28217 [0xDDD]={ 28218 category="mc", 28219 description="SINHALA VOWEL SIGN KOMBUVA HAA DIGA AELA-PILLA", 28220 direction="l", 28221 linebreak="cm", 28222 specials={ "char", 0xDDC, 0xDCA }, 28223 unicodeslot=0xDDD, 28224 }, 28225 [0xDDE]={ 28226 category="mc", 28227 description="SINHALA VOWEL SIGN KOMBUVA HAA GAYANUKITTA", 28228 direction="l", 28229 linebreak="cm", 28230 specials={ "char", 0xDD9, 0xDDF }, 28231 unicodeslot=0xDDE, 28232 }, 28233 [0xDDF]={ 28234 category="mc", 28235 description="SINHALA VOWEL SIGN GAYANUKITTA", 28236 direction="l", 28237 linebreak="cm", 28238 unicodeslot=0xDDF, 28239 }, 28240 [0xDE6]={ 28241 category="nd", 28242 description="SINHALA LITH DIGIT ZERO", 28243 direction="l", 28244 linebreak="nu", 28245 unicodeslot=0xDE6, 28246 }, 28247 [0xDE7]={ 28248 category="nd", 28249 description="SINHALA LITH DIGIT ONE", 28250 direction="l", 28251 linebreak="nu", 28252 unicodeslot=0xDE7, 28253 }, 28254 [0xDE8]={ 28255 category="nd", 28256 description="SINHALA LITH DIGIT TWO", 28257 direction="l", 28258 linebreak="nu", 28259 unicodeslot=0xDE8, 28260 }, 28261 [0xDE9]={ 28262 category="nd", 28263 description="SINHALA LITH DIGIT THREE", 28264 direction="l", 28265 linebreak="nu", 28266 unicodeslot=0xDE9, 28267 }, 28268 [0xDEA]={ 28269 category="nd", 28270 description="SINHALA LITH DIGIT FOUR", 28271 direction="l", 28272 linebreak="nu", 28273 unicodeslot=0xDEA, 28274 }, 28275 [0xDEB]={ 28276 category="nd", 28277 description="SINHALA LITH DIGIT FIVE", 28278 direction="l", 28279 linebreak="nu", 28280 unicodeslot=0xDEB, 28281 }, 28282 [0xDEC]={ 28283 category="nd", 28284 description="SINHALA LITH DIGIT SIX", 28285 direction="l", 28286 linebreak="nu", 28287 unicodeslot=0xDEC, 28288 }, 28289 [0xDED]={ 28290 category="nd", 28291 description="SINHALA LITH DIGIT SEVEN", 28292 direction="l", 28293 linebreak="nu", 28294 unicodeslot=0xDED, 28295 }, 28296 [0xDEE]={ 28297 category="nd", 28298 description="SINHALA LITH DIGIT EIGHT", 28299 direction="l", 28300 linebreak="nu", 28301 unicodeslot=0xDEE, 28302 }, 28303 [0xDEF]={ 28304 category="nd", 28305 description="SINHALA LITH DIGIT NINE", 28306 direction="l", 28307 linebreak="nu", 28308 unicodeslot=0xDEF, 28309 }, 28310 [0xDF2]={ 28311 category="mc", 28312 description="SINHALA VOWEL SIGN DIGA GAETTA-PILLA", 28313 direction="l", 28314 linebreak="cm", 28315 unicodeslot=0xDF2, 28316 }, 28317 [0xDF3]={ 28318 category="mc", 28319 description="SINHALA VOWEL SIGN DIGA GAYANUKITTA", 28320 direction="l", 28321 linebreak="cm", 28322 unicodeslot=0xDF3, 28323 }, 28324 [0xDF4]={ 28325 category="po", 28326 description="SINHALA PUNCTUATION KUNDDALIYA", 28327 direction="l", 28328 linebreak="al", 28329 unicodeslot=0xDF4, 28330 }, 28331 [0xE01]={ 28332 category="lo", 28333 description="THAI CHARACTER KO KAI", 28334 direction="l", 28335 linebreak="sa", 28336 unicodeslot=0xE01, 28337 }, 28338 [0xE02]={ 28339 category="lo", 28340 description="THAI CHARACTER KHO KHAI", 28341 direction="l", 28342 linebreak="sa", 28343 unicodeslot=0xE02, 28344 }, 28345 [0xE03]={ 28346 category="lo", 28347 description="THAI CHARACTER KHO KHUAT", 28348 direction="l", 28349 linebreak="sa", 28350 unicodeslot=0xE03, 28351 }, 28352 [0xE04]={ 28353 category="lo", 28354 description="THAI CHARACTER KHO KHWAI", 28355 direction="l", 28356 linebreak="sa", 28357 unicodeslot=0xE04, 28358 }, 28359 [0xE05]={ 28360 category="lo", 28361 description="THAI CHARACTER KHO KHON", 28362 direction="l", 28363 linebreak="sa", 28364 unicodeslot=0xE05, 28365 }, 28366 [0xE06]={ 28367 category="lo", 28368 description="THAI CHARACTER KHO RAKHANG", 28369 direction="l", 28370 linebreak="sa", 28371 unicodeslot=0xE06, 28372 }, 28373 [0xE07]={ 28374 category="lo", 28375 description="THAI CHARACTER NGO NGU", 28376 direction="l", 28377 linebreak="sa", 28378 unicodeslot=0xE07, 28379 }, 28380 [0xE08]={ 28381 category="lo", 28382 description="THAI CHARACTER CHO CHAN", 28383 direction="l", 28384 linebreak="sa", 28385 unicodeslot=0xE08, 28386 }, 28387 [0xE09]={ 28388 category="lo", 28389 description="THAI CHARACTER CHO CHING", 28390 direction="l", 28391 linebreak="sa", 28392 unicodeslot=0xE09, 28393 }, 28394 [0xE0A]={ 28395 category="lo", 28396 description="THAI CHARACTER CHO CHANG", 28397 direction="l", 28398 linebreak="sa", 28399 unicodeslot=0xE0A, 28400 }, 28401 [0xE0B]={ 28402 category="lo", 28403 description="THAI CHARACTER SO SO", 28404 direction="l", 28405 linebreak="sa", 28406 unicodeslot=0xE0B, 28407 }, 28408 [0xE0C]={ 28409 category="lo", 28410 description="THAI CHARACTER CHO CHOE", 28411 direction="l", 28412 linebreak="sa", 28413 unicodeslot=0xE0C, 28414 }, 28415 [0xE0D]={ 28416 category="lo", 28417 description="THAI CHARACTER YO YING", 28418 direction="l", 28419 linebreak="sa", 28420 unicodeslot=0xE0D, 28421 }, 28422 [0xE0E]={ 28423 category="lo", 28424 description="THAI CHARACTER DO CHADA", 28425 direction="l", 28426 linebreak="sa", 28427 unicodeslot=0xE0E, 28428 }, 28429 [0xE0F]={ 28430 category="lo", 28431 description="THAI CHARACTER TO PATAK", 28432 direction="l", 28433 linebreak="sa", 28434 unicodeslot=0xE0F, 28435 }, 28436 [0xE10]={ 28437 category="lo", 28438 description="THAI CHARACTER THO THAN", 28439 direction="l", 28440 linebreak="sa", 28441 unicodeslot=0xE10, 28442 }, 28443 [0xE11]={ 28444 category="lo", 28445 description="THAI CHARACTER THO NANGMONTHO", 28446 direction="l", 28447 linebreak="sa", 28448 unicodeslot=0xE11, 28449 }, 28450 [0xE12]={ 28451 category="lo", 28452 description="THAI CHARACTER THO PHUTHAO", 28453 direction="l", 28454 linebreak="sa", 28455 unicodeslot=0xE12, 28456 }, 28457 [0xE13]={ 28458 category="lo", 28459 description="THAI CHARACTER NO NEN", 28460 direction="l", 28461 linebreak="sa", 28462 unicodeslot=0xE13, 28463 }, 28464 [0xE14]={ 28465 category="lo", 28466 description="THAI CHARACTER DO DEK", 28467 direction="l", 28468 linebreak="sa", 28469 unicodeslot=0xE14, 28470 }, 28471 [0xE15]={ 28472 category="lo", 28473 description="THAI CHARACTER TO TAO", 28474 direction="l", 28475 linebreak="sa", 28476 unicodeslot=0xE15, 28477 }, 28478 [0xE16]={ 28479 category="lo", 28480 description="THAI CHARACTER THO THUNG", 28481 direction="l", 28482 linebreak="sa", 28483 unicodeslot=0xE16, 28484 }, 28485 [0xE17]={ 28486 category="lo", 28487 description="THAI CHARACTER THO THAHAN", 28488 direction="l", 28489 linebreak="sa", 28490 unicodeslot=0xE17, 28491 }, 28492 [0xE18]={ 28493 category="lo", 28494 description="THAI CHARACTER THO THONG", 28495 direction="l", 28496 linebreak="sa", 28497 unicodeslot=0xE18, 28498 }, 28499 [0xE19]={ 28500 category="lo", 28501 description="THAI CHARACTER NO NU", 28502 direction="l", 28503 linebreak="sa", 28504 unicodeslot=0xE19, 28505 }, 28506 [0xE1A]={ 28507 category="lo", 28508 description="THAI CHARACTER BO BAIMAI", 28509 direction="l", 28510 linebreak="sa", 28511 unicodeslot=0xE1A, 28512 }, 28513 [0xE1B]={ 28514 category="lo", 28515 description="THAI CHARACTER PO PLA", 28516 direction="l", 28517 linebreak="sa", 28518 unicodeslot=0xE1B, 28519 }, 28520 [0xE1C]={ 28521 category="lo", 28522 description="THAI CHARACTER PHO PHUNG", 28523 direction="l", 28524 linebreak="sa", 28525 unicodeslot=0xE1C, 28526 }, 28527 [0xE1D]={ 28528 category="lo", 28529 description="THAI CHARACTER FO FA", 28530 direction="l", 28531 linebreak="sa", 28532 unicodeslot=0xE1D, 28533 }, 28534 [0xE1E]={ 28535 category="lo", 28536 description="THAI CHARACTER PHO PHAN", 28537 direction="l", 28538 linebreak="sa", 28539 unicodeslot=0xE1E, 28540 }, 28541 [0xE1F]={ 28542 category="lo", 28543 description="THAI CHARACTER FO FAN", 28544 direction="l", 28545 linebreak="sa", 28546 unicodeslot=0xE1F, 28547 }, 28548 [0xE20]={ 28549 category="lo", 28550 description="THAI CHARACTER PHO SAMPHAO", 28551 direction="l", 28552 linebreak="sa", 28553 unicodeslot=0xE20, 28554 }, 28555 [0xE21]={ 28556 category="lo", 28557 description="THAI CHARACTER MO MA", 28558 direction="l", 28559 linebreak="sa", 28560 unicodeslot=0xE21, 28561 }, 28562 [0xE22]={ 28563 category="lo", 28564 description="THAI CHARACTER YO YAK", 28565 direction="l", 28566 linebreak="sa", 28567 unicodeslot=0xE22, 28568 }, 28569 [0xE23]={ 28570 category="lo", 28571 description="THAI CHARACTER RO RUA", 28572 direction="l", 28573 linebreak="sa", 28574 unicodeslot=0xE23, 28575 }, 28576 [0xE24]={ 28577 category="lo", 28578 description="THAI CHARACTER RU", 28579 direction="l", 28580 linebreak="sa", 28581 unicodeslot=0xE24, 28582 }, 28583 [0xE25]={ 28584 category="lo", 28585 description="THAI CHARACTER LO LING", 28586 direction="l", 28587 linebreak="sa", 28588 unicodeslot=0xE25, 28589 }, 28590 [0xE26]={ 28591 category="lo", 28592 description="THAI CHARACTER LU", 28593 direction="l", 28594 linebreak="sa", 28595 unicodeslot=0xE26, 28596 }, 28597 [0xE27]={ 28598 category="lo", 28599 description="THAI CHARACTER WO WAEN", 28600 direction="l", 28601 linebreak="sa", 28602 unicodeslot=0xE27, 28603 }, 28604 [0xE28]={ 28605 category="lo", 28606 description="THAI CHARACTER SO SALA", 28607 direction="l", 28608 linebreak="sa", 28609 unicodeslot=0xE28, 28610 }, 28611 [0xE29]={ 28612 category="lo", 28613 description="THAI CHARACTER SO RUSI", 28614 direction="l", 28615 linebreak="sa", 28616 unicodeslot=0xE29, 28617 }, 28618 [0xE2A]={ 28619 category="lo", 28620 description="THAI CHARACTER SO SUA", 28621 direction="l", 28622 linebreak="sa", 28623 unicodeslot=0xE2A, 28624 }, 28625 [0xE2B]={ 28626 category="lo", 28627 description="THAI CHARACTER HO HIP", 28628 direction="l", 28629 linebreak="sa", 28630 unicodeslot=0xE2B, 28631 }, 28632 [0xE2C]={ 28633 category="lo", 28634 description="THAI CHARACTER LO CHULA", 28635 direction="l", 28636 linebreak="sa", 28637 unicodeslot=0xE2C, 28638 }, 28639 [0xE2D]={ 28640 category="lo", 28641 description="THAI CHARACTER O ANG", 28642 direction="l", 28643 linebreak="sa", 28644 unicodeslot=0xE2D, 28645 }, 28646 [0xE2E]={ 28647 category="lo", 28648 description="THAI CHARACTER HO NOKHUK", 28649 direction="l", 28650 linebreak="sa", 28651 unicodeslot=0xE2E, 28652 }, 28653 [0xE2F]={ 28654 category="lo", 28655 description="THAI CHARACTER PAIYANNOI", 28656 direction="l", 28657 linebreak="sa", 28658 unicodeslot=0xE2F, 28659 }, 28660 [0xE30]={ 28661 category="lo", 28662 description="THAI CHARACTER SARA A", 28663 direction="l", 28664 linebreak="sa", 28665 unicodeslot=0xE30, 28666 }, 28667 [0xE31]={ 28668 category="mn", 28669 description="THAI CHARACTER MAI HAN-AKAT", 28670 direction="nsm", 28671 linebreak="sa", 28672 unicodeslot=0xE31, 28673 }, 28674 [0xE32]={ 28675 category="lo", 28676 description="THAI CHARACTER SARA AA", 28677 direction="l", 28678 linebreak="sa", 28679 unicodeslot=0xE32, 28680 }, 28681 [0xE33]={ 28682 category="lo", 28683 description="THAI CHARACTER SARA AM", 28684 direction="l", 28685 linebreak="sa", 28686 specials={ "compat", 0xE4D, 0xE32 }, 28687 unicodeslot=0xE33, 28688 }, 28689 [0xE34]={ 28690 category="mn", 28691 description="THAI CHARACTER SARA I", 28692 direction="nsm", 28693 linebreak="sa", 28694 unicodeslot=0xE34, 28695 }, 28696 [0xE35]={ 28697 category="mn", 28698 description="THAI CHARACTER SARA II", 28699 direction="nsm", 28700 linebreak="sa", 28701 unicodeslot=0xE35, 28702 }, 28703 [0xE36]={ 28704 category="mn", 28705 description="THAI CHARACTER SARA UE", 28706 direction="nsm", 28707 linebreak="sa", 28708 unicodeslot=0xE36, 28709 }, 28710 [0xE37]={ 28711 category="mn", 28712 description="THAI CHARACTER SARA UEE", 28713 direction="nsm", 28714 linebreak="sa", 28715 unicodeslot=0xE37, 28716 }, 28717 [0xE38]={ 28718 category="mn", 28719 combining=0x67, 28720 description="THAI CHARACTER SARA U", 28721 direction="nsm", 28722 linebreak="sa", 28723 unicodeslot=0xE38, 28724 }, 28725 [0xE39]={ 28726 category="mn", 28727 combining=0x67, 28728 description="THAI CHARACTER SARA UU", 28729 direction="nsm", 28730 linebreak="sa", 28731 unicodeslot=0xE39, 28732 }, 28733 [0xE3A]={ 28734 category="mn", 28735 combining=0x9, 28736 description="THAI CHARACTER PHINTHU", 28737 direction="nsm", 28738 linebreak="sa", 28739 unicodeslot=0xE3A, 28740 }, 28741 [0xE3F]={ 28742 category="sc", 28743 description="THAI CURRENCY SYMBOL BAHT", 28744 direction="et", 28745 linebreak="pr", 28746 unicodeslot=0xE3F, 28747 }, 28748 [0xE40]={ 28749 category="lo", 28750 description="THAI CHARACTER SARA E", 28751 direction="l", 28752 linebreak="sa", 28753 unicodeslot=0xE40, 28754 }, 28755 [0xE41]={ 28756 category="lo", 28757 description="THAI CHARACTER SARA AE", 28758 direction="l", 28759 linebreak="sa", 28760 unicodeslot=0xE41, 28761 }, 28762 [0xE42]={ 28763 category="lo", 28764 description="THAI CHARACTER SARA O", 28765 direction="l", 28766 linebreak="sa", 28767 unicodeslot=0xE42, 28768 }, 28769 [0xE43]={ 28770 category="lo", 28771 description="THAI CHARACTER SARA AI MAIMUAN", 28772 direction="l", 28773 linebreak="sa", 28774 unicodeslot=0xE43, 28775 }, 28776 [0xE44]={ 28777 category="lo", 28778 description="THAI CHARACTER SARA AI MAIMALAI", 28779 direction="l", 28780 linebreak="sa", 28781 unicodeslot=0xE44, 28782 }, 28783 [0xE45]={ 28784 category="lo", 28785 description="THAI CHARACTER LAKKHANGYAO", 28786 direction="l", 28787 linebreak="sa", 28788 unicodeslot=0xE45, 28789 }, 28790 [0xE46]={ 28791 category="lm", 28792 description="THAI CHARACTER MAIYAMOK", 28793 direction="l", 28794 linebreak="sa", 28795 unicodeslot=0xE46, 28796 }, 28797 [0xE47]={ 28798 category="mn", 28799 description="THAI CHARACTER MAITAIKHU", 28800 direction="nsm", 28801 linebreak="sa", 28802 unicodeslot=0xE47, 28803 }, 28804 [0xE48]={ 28805 category="mn", 28806 combining=0x6B, 28807 description="THAI CHARACTER MAI EK", 28808 direction="nsm", 28809 linebreak="sa", 28810 unicodeslot=0xE48, 28811 }, 28812 [0xE49]={ 28813 category="mn", 28814 combining=0x6B, 28815 description="THAI CHARACTER MAI THO", 28816 direction="nsm", 28817 linebreak="sa", 28818 unicodeslot=0xE49, 28819 }, 28820 [0xE4A]={ 28821 category="mn", 28822 combining=0x6B, 28823 description="THAI CHARACTER MAI TRI", 28824 direction="nsm", 28825 linebreak="sa", 28826 unicodeslot=0xE4A, 28827 }, 28828 [0xE4B]={ 28829 category="mn", 28830 combining=0x6B, 28831 description="THAI CHARACTER MAI CHATTAWA", 28832 direction="nsm", 28833 linebreak="sa", 28834 unicodeslot=0xE4B, 28835 }, 28836 [0xE4C]={ 28837 category="mn", 28838 description="THAI CHARACTER THANTHAKHAT", 28839 direction="nsm", 28840 linebreak="sa", 28841 unicodeslot=0xE4C, 28842 }, 28843 [0xE4D]={ 28844 category="mn", 28845 description="THAI CHARACTER NIKHAHIT", 28846 direction="nsm", 28847 linebreak="sa", 28848 unicodeslot=0xE4D, 28849 }, 28850 [0xE4E]={ 28851 category="mn", 28852 description="THAI CHARACTER YAMAKKAN", 28853 direction="nsm", 28854 linebreak="sa", 28855 unicodeslot=0xE4E, 28856 }, 28857 [0xE4F]={ 28858 category="po", 28859 description="THAI CHARACTER FONGMAN", 28860 direction="l", 28861 linebreak="al", 28862 unicodeslot=0xE4F, 28863 }, 28864 [0xE50]={ 28865 category="nd", 28866 description="THAI DIGIT ZERO", 28867 direction="l", 28868 linebreak="nu", 28869 unicodeslot=0xE50, 28870 }, 28871 [0xE51]={ 28872 category="nd", 28873 description="THAI DIGIT ONE", 28874 direction="l", 28875 linebreak="nu", 28876 unicodeslot=0xE51, 28877 }, 28878 [0xE52]={ 28879 category="nd", 28880 description="THAI DIGIT TWO", 28881 direction="l", 28882 linebreak="nu", 28883 unicodeslot=0xE52, 28884 }, 28885 [0xE53]={ 28886 category="nd", 28887 description="THAI DIGIT THREE", 28888 direction="l", 28889 linebreak="nu", 28890 unicodeslot=0xE53, 28891 }, 28892 [0xE54]={ 28893 category="nd", 28894 description="THAI DIGIT FOUR", 28895 direction="l", 28896 linebreak="nu", 28897 unicodeslot=0xE54, 28898 }, 28899 [0xE55]={ 28900 category="nd", 28901 description="THAI DIGIT FIVE", 28902 direction="l", 28903 linebreak="nu", 28904 unicodeslot=0xE55, 28905 }, 28906 [0xE56]={ 28907 category="nd", 28908 description="THAI DIGIT SIX", 28909 direction="l", 28910 linebreak="nu", 28911 unicodeslot=0xE56, 28912 }, 28913 [0xE57]={ 28914 category="nd", 28915 description="THAI DIGIT SEVEN", 28916 direction="l", 28917 linebreak="nu", 28918 unicodeslot=0xE57, 28919 }, 28920 [0xE58]={ 28921 category="nd", 28922 description="THAI DIGIT EIGHT", 28923 direction="l", 28924 linebreak="nu", 28925 unicodeslot=0xE58, 28926 }, 28927 [0xE59]={ 28928 category="nd", 28929 description="THAI DIGIT NINE", 28930 direction="l", 28931 linebreak="nu", 28932 unicodeslot=0xE59, 28933 }, 28934 [0xE5A]={ 28935 category="po", 28936 description="THAI CHARACTER ANGKHANKHU", 28937 direction="l", 28938 linebreak="ba", 28939 unicodeslot=0xE5A, 28940 }, 28941 [0xE5B]={ 28942 category="po", 28943 description="THAI CHARACTER KHOMUT", 28944 direction="l", 28945 linebreak="ba", 28946 unicodeslot=0xE5B, 28947 }, 28948 [0xE81]={ 28949 category="lo", 28950 description="LAO LETTER KO", 28951 direction="l", 28952 linebreak="sa", 28953 unicodeslot=0xE81, 28954 }, 28955 [0xE82]={ 28956 category="lo", 28957 description="LAO LETTER KHO SUNG", 28958 direction="l", 28959 linebreak="sa", 28960 unicodeslot=0xE82, 28961 }, 28962 [0xE84]={ 28963 category="lo", 28964 description="LAO LETTER KHO TAM", 28965 direction="l", 28966 linebreak="sa", 28967 unicodeslot=0xE84, 28968 }, 28969 [0xE86]={ 28970 category="lo", 28971 description="LAO LETTER PALI GHA", 28972 direction="l", 28973 linebreak="sa", 28974 unicodeslot=0xE86, 28975 }, 28976 [0xE87]={ 28977 category="lo", 28978 description="LAO LETTER NGO", 28979 direction="l", 28980 linebreak="sa", 28981 unicodeslot=0xE87, 28982 }, 28983 [0xE88]={ 28984 category="lo", 28985 description="LAO LETTER CO", 28986 direction="l", 28987 linebreak="sa", 28988 unicodeslot=0xE88, 28989 }, 28990 [0xE89]={ 28991 category="lo", 28992 description="LAO LETTER PALI CHA", 28993 direction="l", 28994 linebreak="sa", 28995 unicodeslot=0xE89, 28996 }, 28997 [0xE8A]={ 28998 category="lo", 28999 description="LAO LETTER SO TAM", 29000 direction="l", 29001 linebreak="sa", 29002 unicodeslot=0xE8A, 29003 }, 29004 [0xE8C]={ 29005 category="lo", 29006 description="LAO LETTER PALI JHA", 29007 direction="l", 29008 linebreak="sa", 29009 unicodeslot=0xE8C, 29010 }, 29011 [0xE8D]={ 29012 category="lo", 29013 description="LAO LETTER NYO", 29014 direction="l", 29015 linebreak="sa", 29016 unicodeslot=0xE8D, 29017 }, 29018 [0xE8E]={ 29019 category="lo", 29020 description="LAO LETTER PALI NYA", 29021 direction="l", 29022 linebreak="sa", 29023 unicodeslot=0xE8E, 29024 }, 29025 [0xE8F]={ 29026 category="lo", 29027 description="LAO LETTER PALI TTA", 29028 direction="l", 29029 linebreak="sa", 29030 unicodeslot=0xE8F, 29031 }, 29032 [0xE90]={ 29033 category="lo", 29034 description="LAO LETTER PALI TTHA", 29035 direction="l", 29036 linebreak="sa", 29037 unicodeslot=0xE90, 29038 }, 29039 [0xE91]={ 29040 category="lo", 29041 description="LAO LETTER PALI DDA", 29042 direction="l", 29043 linebreak="sa", 29044 unicodeslot=0xE91, 29045 }, 29046 [0xE92]={ 29047 category="lo", 29048 description="LAO LETTER PALI DDHA", 29049 direction="l", 29050 linebreak="sa", 29051 unicodeslot=0xE92, 29052 }, 29053 [0xE93]={ 29054 category="lo", 29055 description="LAO LETTER PALI NNA", 29056 direction="l", 29057 linebreak="sa", 29058 unicodeslot=0xE93, 29059 }, 29060 [0xE94]={ 29061 category="lo", 29062 description="LAO LETTER DO", 29063 direction="l", 29064 linebreak="sa", 29065 unicodeslot=0xE94, 29066 }, 29067 [0xE95]={ 29068 category="lo", 29069 description="LAO LETTER TO", 29070 direction="l", 29071 linebreak="sa", 29072 unicodeslot=0xE95, 29073 }, 29074 [0xE96]={ 29075 category="lo", 29076 description="LAO LETTER THO SUNG", 29077 direction="l", 29078 linebreak="sa", 29079 unicodeslot=0xE96, 29080 }, 29081 [0xE97]={ 29082 category="lo", 29083 description="LAO LETTER THO TAM", 29084 direction="l", 29085 linebreak="sa", 29086 unicodeslot=0xE97, 29087 }, 29088 [0xE98]={ 29089 category="lo", 29090 description="LAO LETTER PALI DHA", 29091 direction="l", 29092 linebreak="sa", 29093 unicodeslot=0xE98, 29094 }, 29095 [0xE99]={ 29096 category="lo", 29097 description="LAO LETTER NO", 29098 direction="l", 29099 linebreak="sa", 29100 unicodeslot=0xE99, 29101 }, 29102 [0xE9A]={ 29103 category="lo", 29104 description="LAO LETTER BO", 29105 direction="l", 29106 linebreak="sa", 29107 unicodeslot=0xE9A, 29108 }, 29109 [0xE9B]={ 29110 category="lo", 29111 description="LAO LETTER PO", 29112 direction="l", 29113 linebreak="sa", 29114 unicodeslot=0xE9B, 29115 }, 29116 [0xE9C]={ 29117 category="lo", 29118 description="LAO LETTER PHO SUNG", 29119 direction="l", 29120 linebreak="sa", 29121 unicodeslot=0xE9C, 29122 }, 29123 [0xE9D]={ 29124 category="lo", 29125 description="LAO LETTER FO TAM", 29126 direction="l", 29127 linebreak="sa", 29128 unicodeslot=0xE9D, 29129 }, 29130 [0xE9E]={ 29131 category="lo", 29132 description="LAO LETTER PHO TAM", 29133 direction="l", 29134 linebreak="sa", 29135 unicodeslot=0xE9E, 29136 }, 29137 [0xE9F]={ 29138 category="lo", 29139 description="LAO LETTER FO SUNG", 29140 direction="l", 29141 linebreak="sa", 29142 unicodeslot=0xE9F, 29143 }, 29144 [0xEA0]={ 29145 category="lo", 29146 description="LAO LETTER PALI BHA", 29147 direction="l", 29148 linebreak="sa", 29149 unicodeslot=0xEA0, 29150 }, 29151 [0xEA1]={ 29152 category="lo", 29153 description="LAO LETTER MO", 29154 direction="l", 29155 linebreak="sa", 29156 unicodeslot=0xEA1, 29157 }, 29158 [0xEA2]={ 29159 category="lo", 29160 description="LAO LETTER YO", 29161 direction="l", 29162 linebreak="sa", 29163 unicodeslot=0xEA2, 29164 }, 29165 [0xEA3]={ 29166 category="lo", 29167 description="LAO LETTER LO LING", 29168 direction="l", 29169 linebreak="sa", 29170 unicodeslot=0xEA3, 29171 }, 29172 [0xEA5]={ 29173 category="lo", 29174 description="LAO LETTER LO LOOT", 29175 direction="l", 29176 linebreak="sa", 29177 unicodeslot=0xEA5, 29178 }, 29179 [0xEA7]={ 29180 category="lo", 29181 description="LAO LETTER WO", 29182 direction="l", 29183 linebreak="sa", 29184 unicodeslot=0xEA7, 29185 }, 29186 [0xEA8]={ 29187 category="lo", 29188 description="LAO LETTER SANSKRIT SHA", 29189 direction="l", 29190 linebreak="sa", 29191 unicodeslot=0xEA8, 29192 }, 29193 [0xEA9]={ 29194 category="lo", 29195 description="LAO LETTER SANSKRIT SSA", 29196 direction="l", 29197 linebreak="sa", 29198 unicodeslot=0xEA9, 29199 }, 29200 [0xEAA]={ 29201 category="lo", 29202 description="LAO LETTER SO SUNG", 29203 direction="l", 29204 linebreak="sa", 29205 unicodeslot=0xEAA, 29206 }, 29207 [0xEAB]={ 29208 category="lo", 29209 description="LAO LETTER HO SUNG", 29210 direction="l", 29211 linebreak="sa", 29212 unicodeslot=0xEAB, 29213 }, 29214 [0xEAC]={ 29215 category="lo", 29216 description="LAO LETTER PALI LLA", 29217 direction="l", 29218 linebreak="sa", 29219 unicodeslot=0xEAC, 29220 }, 29221 [0xEAD]={ 29222 category="lo", 29223 description="LAO LETTER O", 29224 direction="l", 29225 linebreak="sa", 29226 unicodeslot=0xEAD, 29227 }, 29228 [0xEAE]={ 29229 category="lo", 29230 description="LAO LETTER HO TAM", 29231 direction="l", 29232 linebreak="sa", 29233 unicodeslot=0xEAE, 29234 }, 29235 [0xEAF]={ 29236 category="lo", 29237 description="LAO ELLIPSIS", 29238 direction="l", 29239 linebreak="sa", 29240 unicodeslot=0xEAF, 29241 }, 29242 [0xEB0]={ 29243 category="lo", 29244 description="LAO VOWEL SIGN A", 29245 direction="l", 29246 linebreak="sa", 29247 unicodeslot=0xEB0, 29248 }, 29249 [0xEB1]={ 29250 category="mn", 29251 description="LAO VOWEL SIGN MAI KAN", 29252 direction="nsm", 29253 linebreak="sa", 29254 unicodeslot=0xEB1, 29255 }, 29256 [0xEB2]={ 29257 category="lo", 29258 description="LAO VOWEL SIGN AA", 29259 direction="l", 29260 linebreak="sa", 29261 unicodeslot=0xEB2, 29262 }, 29263 [0xEB3]={ 29264 category="lo", 29265 description="LAO VOWEL SIGN AM", 29266 direction="l", 29267 linebreak="sa", 29268 specials={ "compat", 0xECD, 0xEB2 }, 29269 unicodeslot=0xEB3, 29270 }, 29271 [0xEB4]={ 29272 category="mn", 29273 description="LAO VOWEL SIGN I", 29274 direction="nsm", 29275 linebreak="sa", 29276 unicodeslot=0xEB4, 29277 }, 29278 [0xEB5]={ 29279 category="mn", 29280 description="LAO VOWEL SIGN II", 29281 direction="nsm", 29282 linebreak="sa", 29283 unicodeslot=0xEB5, 29284 }, 29285 [0xEB6]={ 29286 category="mn", 29287 description="LAO VOWEL SIGN Y", 29288 direction="nsm", 29289 linebreak="sa", 29290 unicodeslot=0xEB6, 29291 }, 29292 [0xEB7]={ 29293 category="mn", 29294 description="LAO VOWEL SIGN YY", 29295 direction="nsm", 29296 linebreak="sa", 29297 unicodeslot=0xEB7, 29298 }, 29299 [0xEB8]={ 29300 category="mn", 29301 combining=0x76, 29302 description="LAO VOWEL SIGN U", 29303 direction="nsm", 29304 linebreak="sa", 29305 unicodeslot=0xEB8, 29306 }, 29307 [0xEB9]={ 29308 category="mn", 29309 combining=0x76, 29310 description="LAO VOWEL SIGN UU", 29311 direction="nsm", 29312 linebreak="sa", 29313 unicodeslot=0xEB9, 29314 }, 29315 [0xEBA]={ 29316 category="mn", 29317 combining=0x9, 29318 description="LAO SIGN PALI VIRAMA", 29319 direction="nsm", 29320 linebreak="sa", 29321 unicodeslot=0xEBA, 29322 }, 29323 [0xEBB]={ 29324 category="mn", 29325 description="LAO VOWEL SIGN MAI KON", 29326 direction="nsm", 29327 linebreak="sa", 29328 unicodeslot=0xEBB, 29329 }, 29330 [0xEBC]={ 29331 category="mn", 29332 description="LAO SEMIVOWEL SIGN LO", 29333 direction="nsm", 29334 linebreak="sa", 29335 unicodeslot=0xEBC, 29336 }, 29337 [0xEBD]={ 29338 category="lo", 29339 description="LAO SEMIVOWEL SIGN NYO", 29340 direction="l", 29341 linebreak="sa", 29342 unicodeslot=0xEBD, 29343 }, 29344 [0xEC0]={ 29345 category="lo", 29346 description="LAO VOWEL SIGN E", 29347 direction="l", 29348 linebreak="sa", 29349 unicodeslot=0xEC0, 29350 }, 29351 [0xEC1]={ 29352 category="lo", 29353 description="LAO VOWEL SIGN EI", 29354 direction="l", 29355 linebreak="sa", 29356 unicodeslot=0xEC1, 29357 }, 29358 [0xEC2]={ 29359 category="lo", 29360 description="LAO VOWEL SIGN O", 29361 direction="l", 29362 linebreak="sa", 29363 unicodeslot=0xEC2, 29364 }, 29365 [0xEC3]={ 29366 category="lo", 29367 description="LAO VOWEL SIGN AY", 29368 direction="l", 29369 linebreak="sa", 29370 unicodeslot=0xEC3, 29371 }, 29372 [0xEC4]={ 29373 category="lo", 29374 description="LAO VOWEL SIGN AI", 29375 direction="l", 29376 linebreak="sa", 29377 unicodeslot=0xEC4, 29378 }, 29379 [0xEC6]={ 29380 category="lm", 29381 description="LAO KO LA", 29382 direction="l", 29383 linebreak="sa", 29384 unicodeslot=0xEC6, 29385 }, 29386 [0xEC8]={ 29387 category="mn", 29388 combining=0x7A, 29389 description="LAO TONE MAI EK", 29390 direction="nsm", 29391 linebreak="sa", 29392 unicodeslot=0xEC8, 29393 }, 29394 [0xEC9]={ 29395 category="mn", 29396 combining=0x7A, 29397 description="LAO TONE MAI THO", 29398 direction="nsm", 29399 linebreak="sa", 29400 unicodeslot=0xEC9, 29401 }, 29402 [0xECA]={ 29403 category="mn", 29404 combining=0x7A, 29405 description="LAO TONE MAI TI", 29406 direction="nsm", 29407 linebreak="sa", 29408 unicodeslot=0xECA, 29409 }, 29410 [0xECB]={ 29411 category="mn", 29412 combining=0x7A, 29413 description="LAO TONE MAI CATAWA", 29414 direction="nsm", 29415 linebreak="sa", 29416 unicodeslot=0xECB, 29417 }, 29418 [0xECC]={ 29419 category="mn", 29420 description="LAO CANCELLATION MARK", 29421 direction="nsm", 29422 linebreak="sa", 29423 unicodeslot=0xECC, 29424 }, 29425 [0xECD]={ 29426 category="mn", 29427 description="LAO NIGGAHITA", 29428 direction="nsm", 29429 linebreak="sa", 29430 unicodeslot=0xECD, 29431 }, 29432 [0xECE]={ 29433 category="mn", 29434 description="LAO YAMAKKAN", 29435 direction="nsm", 29436 linebreak="sa", 29437 unicodeslot=0xECE, 29438 }, 29439 [0xED0]={ 29440 category="nd", 29441 description="LAO DIGIT ZERO", 29442 direction="l", 29443 linebreak="nu", 29444 unicodeslot=0xED0, 29445 }, 29446 [0xED1]={ 29447 category="nd", 29448 description="LAO DIGIT ONE", 29449 direction="l", 29450 linebreak="nu", 29451 unicodeslot=0xED1, 29452 }, 29453 [0xED2]={ 29454 category="nd", 29455 description="LAO DIGIT TWO", 29456 direction="l", 29457 linebreak="nu", 29458 unicodeslot=0xED2, 29459 }, 29460 [0xED3]={ 29461 category="nd", 29462 description="LAO DIGIT THREE", 29463 direction="l", 29464 linebreak="nu", 29465 unicodeslot=0xED3, 29466 }, 29467 [0xED4]={ 29468 category="nd", 29469 description="LAO DIGIT FOUR", 29470 direction="l", 29471 linebreak="nu", 29472 unicodeslot=0xED4, 29473 }, 29474 [0xED5]={ 29475 category="nd", 29476 description="LAO DIGIT FIVE", 29477 direction="l", 29478 linebreak="nu", 29479 unicodeslot=0xED5, 29480 }, 29481 [0xED6]={ 29482 category="nd", 29483 description="LAO DIGIT SIX", 29484 direction="l", 29485 linebreak="nu", 29486 unicodeslot=0xED6, 29487 }, 29488 [0xED7]={ 29489 category="nd", 29490 description="LAO DIGIT SEVEN", 29491 direction="l", 29492 linebreak="nu", 29493 unicodeslot=0xED7, 29494 }, 29495 [0xED8]={ 29496 category="nd", 29497 description="LAO DIGIT EIGHT", 29498 direction="l", 29499 linebreak="nu", 29500 unicodeslot=0xED8, 29501 }, 29502 [0xED9]={ 29503 category="nd", 29504 description="LAO DIGIT NINE", 29505 direction="l", 29506 linebreak="nu", 29507 unicodeslot=0xED9, 29508 }, 29509 [0xEDC]={ 29510 category="lo", 29511 description="LAO HO NO", 29512 direction="l", 29513 linebreak="sa", 29514 specials={ "compat", 0xEAB, 0xE99 }, 29515 unicodeslot=0xEDC, 29516 }, 29517 [0xEDD]={ 29518 category="lo", 29519 description="LAO HO MO", 29520 direction="l", 29521 linebreak="sa", 29522 specials={ "compat", 0xEAB, 0xEA1 }, 29523 unicodeslot=0xEDD, 29524 }, 29525 [0xEDE]={ 29526 category="lo", 29527 description="LAO LETTER KHMU GO", 29528 direction="l", 29529 linebreak="sa", 29530 unicodeslot=0xEDE, 29531 }, 29532 [0xEDF]={ 29533 category="lo", 29534 description="LAO LETTER KHMU NYO", 29535 direction="l", 29536 linebreak="sa", 29537 unicodeslot=0xEDF, 29538 }, 29539 [0xF00]={ 29540 category="lo", 29541 description="TIBETAN SYLLABLE OM", 29542 direction="l", 29543 linebreak="al", 29544 unicodeslot=0xF00, 29545 }, 29546 [0xF01]={ 29547 category="so", 29548 description="TIBETAN MARK GTER YIG MGO TRUNCATED A", 29549 direction="l", 29550 linebreak="bb", 29551 unicodeslot=0xF01, 29552 }, 29553 [0xF02]={ 29554 category="so", 29555 description="TIBETAN MARK GTER YIG MGO -UM RNAM BCAD MA", 29556 direction="l", 29557 linebreak="bb", 29558 unicodeslot=0xF02, 29559 }, 29560 [0xF03]={ 29561 category="so", 29562 description="TIBETAN MARK GTER YIG MGO -UM GTER TSHEG MA", 29563 direction="l", 29564 linebreak="bb", 29565 unicodeslot=0xF03, 29566 }, 29567 [0xF04]={ 29568 category="po", 29569 description="TIBETAN MARK INITIAL YIG MGO MDUN MA", 29570 direction="l", 29571 linebreak="bb", 29572 unicodeslot=0xF04, 29573 }, 29574 [0xF05]={ 29575 category="po", 29576 description="TIBETAN MARK CLOSING YIG MGO SGAB MA", 29577 direction="l", 29578 linebreak="al", 29579 unicodeslot=0xF05, 29580 }, 29581 [0xF06]={ 29582 category="po", 29583 description="TIBETAN MARK CARET YIG MGO PHUR SHAD MA", 29584 direction="l", 29585 linebreak="bb", 29586 unicodeslot=0xF06, 29587 }, 29588 [0xF07]={ 29589 category="po", 29590 description="TIBETAN MARK YIG MGO TSHEG SHAD MA", 29591 direction="l", 29592 linebreak="bb", 29593 unicodeslot=0xF07, 29594 }, 29595 [0xF08]={ 29596 category="po", 29597 description="TIBETAN MARK SBRUL SHAD", 29598 direction="l", 29599 linebreak="gl", 29600 unicodeslot=0xF08, 29601 }, 29602 [0xF09]={ 29603 category="po", 29604 description="TIBETAN MARK BSKUR YIG MGO", 29605 direction="l", 29606 linebreak="bb", 29607 unicodeslot=0xF09, 29608 }, 29609 [0xF0A]={ 29610 category="po", 29611 description="TIBETAN MARK BKA- SHOG YIG MGO", 29612 direction="l", 29613 linebreak="bb", 29614 unicodeslot=0xF0A, 29615 }, 29616 [0xF0B]={ 29617 category="po", 29618 description="TIBETAN MARK INTERSYLLABIC TSHEG", 29619 direction="l", 29620 linebreak="ba", 29621 unicodeslot=0xF0B, 29622 }, 29623 [0xF0C]={ 29624 category="po", 29625 description="TIBETAN MARK DELIMITER TSHEG BSTAR", 29626 direction="l", 29627 linebreak="gl", 29628 specials={ "nobreak", 0xF0B }, 29629 unicodeslot=0xF0C, 29630 }, 29631 [0xF0D]={ 29632 category="po", 29633 description="TIBETAN MARK SHAD", 29634 direction="l", 29635 linebreak="ex", 29636 unicodeslot=0xF0D, 29637 }, 29638 [0xF0E]={ 29639 category="po", 29640 description="TIBETAN MARK NYIS SHAD", 29641 direction="l", 29642 linebreak="ex", 29643 unicodeslot=0xF0E, 29644 }, 29645 [0xF0F]={ 29646 category="po", 29647 description="TIBETAN MARK TSHEG SHAD", 29648 direction="l", 29649 linebreak="ex", 29650 unicodeslot=0xF0F, 29651 }, 29652 [0xF10]={ 29653 category="po", 29654 description="TIBETAN MARK NYIS TSHEG SHAD", 29655 direction="l", 29656 linebreak="ex", 29657 unicodeslot=0xF10, 29658 }, 29659 [0xF11]={ 29660 category="po", 29661 description="TIBETAN MARK RIN CHEN SPUNGS SHAD", 29662 direction="l", 29663 linebreak="ex", 29664 unicodeslot=0xF11, 29665 }, 29666 [0xF12]={ 29667 category="po", 29668 description="TIBETAN MARK RGYA GRAM SHAD", 29669 direction="l", 29670 linebreak="gl", 29671 unicodeslot=0xF12, 29672 }, 29673 [0xF13]={ 29674 category="so", 29675 description="TIBETAN MARK CARET -DZUD RTAGS ME LONG CAN", 29676 direction="l", 29677 linebreak="al", 29678 unicodeslot=0xF13, 29679 }, 29680 [0xF14]={ 29681 category="so", 29682 description="TIBETAN MARK GTER TSHEG", 29683 direction="l", 29684 linebreak="ex", 29685 unicodeslot=0xF14, 29686 }, 29687 [0xF15]={ 29688 category="so", 29689 description="TIBETAN LOGOTYPE SIGN CHAD RTAGS", 29690 direction="l", 29691 linebreak="al", 29692 unicodeslot=0xF15, 29693 }, 29694 [0xF16]={ 29695 category="so", 29696 description="TIBETAN LOGOTYPE SIGN LHAG RTAGS", 29697 direction="l", 29698 linebreak="al", 29699 unicodeslot=0xF16, 29700 }, 29701 [0xF17]={ 29702 category="so", 29703 description="TIBETAN ASTROLOGICAL SIGN SGRA GCAN -CHAR RTAGS", 29704 direction="l", 29705 linebreak="al", 29706 unicodeslot=0xF17, 29707 }, 29708 [0xF18]={ 29709 category="mn", 29710 combining=0xDC, 29711 description="TIBETAN ASTROLOGICAL SIGN -KHYUD PA", 29712 direction="nsm", 29713 linebreak="cm", 29714 unicodeslot=0xF18, 29715 }, 29716 [0xF19]={ 29717 category="mn", 29718 combining=0xDC, 29719 description="TIBETAN ASTROLOGICAL SIGN SDONG TSHUGS", 29720 direction="nsm", 29721 linebreak="cm", 29722 unicodeslot=0xF19, 29723 }, 29724 [0xF1A]={ 29725 category="so", 29726 description="TIBETAN SIGN RDEL DKAR GCIG", 29727 direction="l", 29728 linebreak="al", 29729 unicodeslot=0xF1A, 29730 }, 29731 [0xF1B]={ 29732 category="so", 29733 description="TIBETAN SIGN RDEL DKAR GNYIS", 29734 direction="l", 29735 linebreak="al", 29736 unicodeslot=0xF1B, 29737 }, 29738 [0xF1C]={ 29739 category="so", 29740 description="TIBETAN SIGN RDEL DKAR GSUM", 29741 direction="l", 29742 linebreak="al", 29743 unicodeslot=0xF1C, 29744 }, 29745 [0xF1D]={ 29746 category="so", 29747 description="TIBETAN SIGN RDEL NAG GCIG", 29748 direction="l", 29749 linebreak="al", 29750 unicodeslot=0xF1D, 29751 }, 29752 [0xF1E]={ 29753 category="so", 29754 description="TIBETAN SIGN RDEL NAG GNYIS", 29755 direction="l", 29756 linebreak="al", 29757 unicodeslot=0xF1E, 29758 }, 29759 [0xF1F]={ 29760 category="so", 29761 description="TIBETAN SIGN RDEL DKAR RDEL NAG", 29762 direction="l", 29763 linebreak="al", 29764 unicodeslot=0xF1F, 29765 }, 29766 [0xF20]={ 29767 category="nd", 29768 description="TIBETAN DIGIT ZERO", 29769 direction="l", 29770 linebreak="nu", 29771 unicodeslot=0xF20, 29772 }, 29773 [0xF21]={ 29774 category="nd", 29775 description="TIBETAN DIGIT ONE", 29776 direction="l", 29777 linebreak="nu", 29778 unicodeslot=0xF21, 29779 }, 29780 [0xF22]={ 29781 category="nd", 29782 description="TIBETAN DIGIT TWO", 29783 direction="l", 29784 linebreak="nu", 29785 unicodeslot=0xF22, 29786 }, 29787 [0xF23]={ 29788 category="nd", 29789 description="TIBETAN DIGIT THREE", 29790 direction="l", 29791 linebreak="nu", 29792 unicodeslot=0xF23, 29793 }, 29794 [0xF24]={ 29795 category="nd", 29796 description="TIBETAN DIGIT FOUR", 29797 direction="l", 29798 linebreak="nu", 29799 unicodeslot=0xF24, 29800 }, 29801 [0xF25]={ 29802 category="nd", 29803 description="TIBETAN DIGIT FIVE", 29804 direction="l", 29805 linebreak="nu", 29806 unicodeslot=0xF25, 29807 }, 29808 [0xF26]={ 29809 category="nd", 29810 description="TIBETAN DIGIT SIX", 29811 direction="l", 29812 linebreak="nu", 29813 unicodeslot=0xF26, 29814 }, 29815 [0xF27]={ 29816 category="nd", 29817 description="TIBETAN DIGIT SEVEN", 29818 direction="l", 29819 linebreak="nu", 29820 unicodeslot=0xF27, 29821 }, 29822 [0xF28]={ 29823 category="nd", 29824 description="TIBETAN DIGIT EIGHT", 29825 direction="l", 29826 linebreak="nu", 29827 unicodeslot=0xF28, 29828 }, 29829 [0xF29]={ 29830 category="nd", 29831 description="TIBETAN DIGIT NINE", 29832 direction="l", 29833 linebreak="nu", 29834 unicodeslot=0xF29, 29835 }, 29836 [0xF2A]={ 29837 category="no", 29838 description="TIBETAN DIGIT HALF ONE", 29839 direction="l", 29840 linebreak="al", 29841 unicodeslot=0xF2A, 29842 }, 29843 [0xF2B]={ 29844 category="no", 29845 description="TIBETAN DIGIT HALF TWO", 29846 direction="l", 29847 linebreak="al", 29848 unicodeslot=0xF2B, 29849 }, 29850 [0xF2C]={ 29851 category="no", 29852 description="TIBETAN DIGIT HALF THREE", 29853 direction="l", 29854 linebreak="al", 29855 unicodeslot=0xF2C, 29856 }, 29857 [0xF2D]={ 29858 category="no", 29859 description="TIBETAN DIGIT HALF FOUR", 29860 direction="l", 29861 linebreak="al", 29862 unicodeslot=0xF2D, 29863 }, 29864 [0xF2E]={ 29865 category="no", 29866 description="TIBETAN DIGIT HALF FIVE", 29867 direction="l", 29868 linebreak="al", 29869 unicodeslot=0xF2E, 29870 }, 29871 [0xF2F]={ 29872 category="no", 29873 description="TIBETAN DIGIT HALF SIX", 29874 direction="l", 29875 linebreak="al", 29876 unicodeslot=0xF2F, 29877 }, 29878 [0xF30]={ 29879 category="no", 29880 description="TIBETAN DIGIT HALF SEVEN", 29881 direction="l", 29882 linebreak="al", 29883 unicodeslot=0xF30, 29884 }, 29885 [0xF31]={ 29886 category="no", 29887 description="TIBETAN DIGIT HALF EIGHT", 29888 direction="l", 29889 linebreak="al", 29890 unicodeslot=0xF31, 29891 }, 29892 [0xF32]={ 29893 category="no", 29894 description="TIBETAN DIGIT HALF NINE", 29895 direction="l", 29896 linebreak="al", 29897 unicodeslot=0xF32, 29898 }, 29899 [0xF33]={ 29900 category="no", 29901 description="TIBETAN DIGIT HALF ZERO", 29902 direction="l", 29903 linebreak="al", 29904 unicodeslot=0xF33, 29905 }, 29906 [0xF34]={ 29907 category="so", 29908 description="TIBETAN MARK BSDUS RTAGS", 29909 direction="l", 29910 linebreak="ba", 29911 unicodeslot=0xF34, 29912 }, 29913 [0xF35]={ 29914 category="mn", 29915 combining=0xDC, 29916 description="TIBETAN MARK NGAS BZUNG NYI ZLA", 29917 direction="nsm", 29918 linebreak="cm", 29919 unicodeslot=0xF35, 29920 }, 29921 [0xF36]={ 29922 category="so", 29923 description="TIBETAN MARK CARET -DZUD RTAGS BZHI MIG CAN", 29924 direction="l", 29925 linebreak="al", 29926 unicodeslot=0xF36, 29927 }, 29928 [0xF37]={ 29929 category="mn", 29930 combining=0xDC, 29931 description="TIBETAN MARK NGAS BZUNG SGOR RTAGS", 29932 direction="nsm", 29933 linebreak="cm", 29934 unicodeslot=0xF37, 29935 }, 29936 [0xF38]={ 29937 category="so", 29938 description="TIBETAN MARK CHE MGO", 29939 direction="l", 29940 linebreak="al", 29941 unicodeslot=0xF38, 29942 }, 29943 [0xF39]={ 29944 category="mn", 29945 combining=0xD8, 29946 description="TIBETAN MARK TSA -PHRU", 29947 direction="nsm", 29948 linebreak="cm", 29949 unicodeslot=0xF39, 29950 }, 29951 [0xF3A]={ 29952 category="ps", 29953 description="TIBETAN MARK GUG RTAGS GYON", 29954 direction="on", 29955 linebreak="op", 29956 mirror=0xF3B, 29957 unicodeslot=0xF3A, 29958 }, 29959 [0xF3B]={ 29960 category="pe", 29961 description="TIBETAN MARK GUG RTAGS GYAS", 29962 direction="on", 29963 linebreak="cl", 29964 mirror=0xF3A, 29965 unicodeslot=0xF3B, 29966 }, 29967 [0xF3C]={ 29968 category="ps", 29969 description="TIBETAN MARK ANG KHANG GYON", 29970 direction="on", 29971 linebreak="op", 29972 mirror=0xF3D, 29973 unicodeslot=0xF3C, 29974 }, 29975 [0xF3D]={ 29976 category="pe", 29977 description="TIBETAN MARK ANG KHANG GYAS", 29978 direction="on", 29979 linebreak="cl", 29980 mirror=0xF3C, 29981 unicodeslot=0xF3D, 29982 }, 29983 [0xF3E]={ 29984 category="mc", 29985 description="TIBETAN SIGN YAR TSHES", 29986 direction="l", 29987 linebreak="cm", 29988 unicodeslot=0xF3E, 29989 }, 29990 [0xF3F]={ 29991 category="mc", 29992 description="TIBETAN SIGN MAR TSHES", 29993 direction="l", 29994 linebreak="cm", 29995 unicodeslot=0xF3F, 29996 }, 29997 [0xF40]={ 29998 category="lo", 29999 description="TIBETAN LETTER KA", 30000 direction="l", 30001 linebreak="al", 30002 unicodeslot=0xF40, 30003 }, 30004 [0xF41]={ 30005 category="lo", 30006 description="TIBETAN LETTER KHA", 30007 direction="l", 30008 linebreak="al", 30009 unicodeslot=0xF41, 30010 }, 30011 [0xF42]={ 30012 category="lo", 30013 description="TIBETAN LETTER GA", 30014 direction="l", 30015 linebreak="al", 30016 unicodeslot=0xF42, 30017 }, 30018 [0xF43]={ 30019 category="lo", 30020 description="TIBETAN LETTER GHA", 30021 direction="l", 30022 linebreak="al", 30023 specials={ "char", 0xF42, 0xFB7 }, 30024 unicodeslot=0xF43, 30025 }, 30026 [0xF44]={ 30027 category="lo", 30028 description="TIBETAN LETTER NGA", 30029 direction="l", 30030 linebreak="al", 30031 unicodeslot=0xF44, 30032 }, 30033 [0xF45]={ 30034 category="lo", 30035 description="TIBETAN LETTER CA", 30036 direction="l", 30037 linebreak="al", 30038 unicodeslot=0xF45, 30039 }, 30040 [0xF46]={ 30041 category="lo", 30042 description="TIBETAN LETTER CHA", 30043 direction="l", 30044 linebreak="al", 30045 unicodeslot=0xF46, 30046 }, 30047 [0xF47]={ 30048 category="lo", 30049 description="TIBETAN LETTER JA", 30050 direction="l", 30051 linebreak="al", 30052 unicodeslot=0xF47, 30053 }, 30054 [0xF49]={ 30055 category="lo", 30056 description="TIBETAN LETTER NYA", 30057 direction="l", 30058 linebreak="al", 30059 unicodeslot=0xF49, 30060 }, 30061 [0xF4A]={ 30062 category="lo", 30063 description="TIBETAN LETTER TTA", 30064 direction="l", 30065 linebreak="al", 30066 unicodeslot=0xF4A, 30067 }, 30068 [0xF4B]={ 30069 category="lo", 30070 description="TIBETAN LETTER TTHA", 30071 direction="l", 30072 linebreak="al", 30073 unicodeslot=0xF4B, 30074 }, 30075 [0xF4C]={ 30076 category="lo", 30077 description="TIBETAN LETTER DDA", 30078 direction="l", 30079 linebreak="al", 30080 unicodeslot=0xF4C, 30081 }, 30082 [0xF4D]={ 30083 category="lo", 30084 description="TIBETAN LETTER DDHA", 30085 direction="l", 30086 linebreak="al", 30087 specials={ "char", 0xF4C, 0xFB7 }, 30088 unicodeslot=0xF4D, 30089 }, 30090 [0xF4E]={ 30091 category="lo", 30092 description="TIBETAN LETTER NNA", 30093 direction="l", 30094 linebreak="al", 30095 unicodeslot=0xF4E, 30096 }, 30097 [0xF4F]={ 30098 category="lo", 30099 description="TIBETAN LETTER TA", 30100 direction="l", 30101 linebreak="al", 30102 unicodeslot=0xF4F, 30103 }, 30104 [0xF50]={ 30105 category="lo", 30106 description="TIBETAN LETTER THA", 30107 direction="l", 30108 linebreak="al", 30109 unicodeslot=0xF50, 30110 }, 30111 [0xF51]={ 30112 category="lo", 30113 description="TIBETAN LETTER DA", 30114 direction="l", 30115 linebreak="al", 30116 unicodeslot=0xF51, 30117 }, 30118 [0xF52]={ 30119 category="lo", 30120 description="TIBETAN LETTER DHA", 30121 direction="l", 30122 linebreak="al", 30123 specials={ "char", 0xF51, 0xFB7 }, 30124 unicodeslot=0xF52, 30125 }, 30126 [0xF53]={ 30127 category="lo", 30128 description="TIBETAN LETTER NA", 30129 direction="l", 30130 linebreak="al", 30131 unicodeslot=0xF53, 30132 }, 30133 [0xF54]={ 30134 category="lo", 30135 description="TIBETAN LETTER PA", 30136 direction="l", 30137 linebreak="al", 30138 unicodeslot=0xF54, 30139 }, 30140 [0xF55]={ 30141 category="lo", 30142 description="TIBETAN LETTER PHA", 30143 direction="l", 30144 linebreak="al", 30145 unicodeslot=0xF55, 30146 }, 30147 [0xF56]={ 30148 category="lo", 30149 description="TIBETAN LETTER BA", 30150 direction="l", 30151 linebreak="al", 30152 unicodeslot=0xF56, 30153 }, 30154 [0xF57]={ 30155 category="lo", 30156 description="TIBETAN LETTER BHA", 30157 direction="l", 30158 linebreak="al", 30159 specials={ "char", 0xF56, 0xFB7 }, 30160 unicodeslot=0xF57, 30161 }, 30162 [0xF58]={ 30163 category="lo", 30164 description="TIBETAN LETTER MA", 30165 direction="l", 30166 linebreak="al", 30167 unicodeslot=0xF58, 30168 }, 30169 [0xF59]={ 30170 category="lo", 30171 description="TIBETAN LETTER TSA", 30172 direction="l", 30173 linebreak="al", 30174 unicodeslot=0xF59, 30175 }, 30176 [0xF5A]={ 30177 category="lo", 30178 description="TIBETAN LETTER TSHA", 30179 direction="l", 30180 linebreak="al", 30181 unicodeslot=0xF5A, 30182 }, 30183 [0xF5B]={ 30184 category="lo", 30185 description="TIBETAN LETTER DZA", 30186 direction="l", 30187 linebreak="al", 30188 unicodeslot=0xF5B, 30189 }, 30190 [0xF5C]={ 30191 category="lo", 30192 description="TIBETAN LETTER DZHA", 30193 direction="l", 30194 linebreak="al", 30195 specials={ "char", 0xF5B, 0xFB7 }, 30196 unicodeslot=0xF5C, 30197 }, 30198 [0xF5D]={ 30199 category="lo", 30200 description="TIBETAN LETTER WA", 30201 direction="l", 30202 linebreak="al", 30203 unicodeslot=0xF5D, 30204 }, 30205 [0xF5E]={ 30206 category="lo", 30207 description="TIBETAN LETTER ZHA", 30208 direction="l", 30209 linebreak="al", 30210 unicodeslot=0xF5E, 30211 }, 30212 [0xF5F]={ 30213 category="lo", 30214 description="TIBETAN LETTER ZA", 30215 direction="l", 30216 linebreak="al", 30217 unicodeslot=0xF5F, 30218 }, 30219 [0xF60]={ 30220 category="lo", 30221 description="TIBETAN LETTER -A", 30222 direction="l", 30223 linebreak="al", 30224 unicodeslot=0xF60, 30225 }, 30226 [0xF61]={ 30227 category="lo", 30228 description="TIBETAN LETTER YA", 30229 direction="l", 30230 linebreak="al", 30231 unicodeslot=0xF61, 30232 }, 30233 [0xF62]={ 30234 category="lo", 30235 description="TIBETAN LETTER RA", 30236 direction="l", 30237 linebreak="al", 30238 unicodeslot=0xF62, 30239 }, 30240 [0xF63]={ 30241 category="lo", 30242 description="TIBETAN LETTER LA", 30243 direction="l", 30244 linebreak="al", 30245 unicodeslot=0xF63, 30246 }, 30247 [0xF64]={ 30248 category="lo", 30249 description="TIBETAN LETTER SHA", 30250 direction="l", 30251 linebreak="al", 30252 unicodeslot=0xF64, 30253 }, 30254 [0xF65]={ 30255 category="lo", 30256 description="TIBETAN LETTER SSA", 30257 direction="l", 30258 linebreak="al", 30259 unicodeslot=0xF65, 30260 }, 30261 [0xF66]={ 30262 category="lo", 30263 description="TIBETAN LETTER SA", 30264 direction="l", 30265 linebreak="al", 30266 unicodeslot=0xF66, 30267 }, 30268 [0xF67]={ 30269 category="lo", 30270 description="TIBETAN LETTER HA", 30271 direction="l", 30272 linebreak="al", 30273 unicodeslot=0xF67, 30274 }, 30275 [0xF68]={ 30276 category="lo", 30277 description="TIBETAN LETTER A", 30278 direction="l", 30279 linebreak="al", 30280 unicodeslot=0xF68, 30281 }, 30282 [0xF69]={ 30283 category="lo", 30284 description="TIBETAN LETTER KSSA", 30285 direction="l", 30286 linebreak="al", 30287 specials={ "char", 0xF40, 0xFB5 }, 30288 unicodeslot=0xF69, 30289 }, 30290 [0xF6A]={ 30291 category="lo", 30292 description="TIBETAN LETTER FIXED-FORM RA", 30293 direction="l", 30294 linebreak="al", 30295 unicodeslot=0xF6A, 30296 }, 30297 [0xF6B]={ 30298 category="lo", 30299 description="TIBETAN LETTER KKA", 30300 direction="l", 30301 linebreak="al", 30302 unicodeslot=0xF6B, 30303 }, 30304 [0xF6C]={ 30305 category="lo", 30306 description="TIBETAN LETTER RRA", 30307 direction="l", 30308 linebreak="al", 30309 unicodeslot=0xF6C, 30310 }, 30311 [0xF71]={ 30312 category="mn", 30313 combining=0x81, 30314 description="TIBETAN VOWEL SIGN AA", 30315 direction="nsm", 30316 linebreak="cm", 30317 unicodeslot=0xF71, 30318 }, 30319 [0xF72]={ 30320 category="mn", 30321 combining=0x82, 30322 description="TIBETAN VOWEL SIGN I", 30323 direction="nsm", 30324 linebreak="cm", 30325 unicodeslot=0xF72, 30326 }, 30327 [0xF73]={ 30328 category="mn", 30329 description="TIBETAN VOWEL SIGN II", 30330 direction="nsm", 30331 linebreak="cm", 30332 specials={ "char", 0xF71, 0xF72 }, 30333 unicodeslot=0xF73, 30334 }, 30335 [0xF74]={ 30336 category="mn", 30337 combining=0x84, 30338 description="TIBETAN VOWEL SIGN U", 30339 direction="nsm", 30340 linebreak="cm", 30341 unicodeslot=0xF74, 30342 }, 30343 [0xF75]={ 30344 category="mn", 30345 description="TIBETAN VOWEL SIGN UU", 30346 direction="nsm", 30347 linebreak="cm", 30348 specials={ "char", 0xF71, 0xF74 }, 30349 unicodeslot=0xF75, 30350 }, 30351 [0xF76]={ 30352 category="mn", 30353 description="TIBETAN VOWEL SIGN VOCALIC R", 30354 direction="nsm", 30355 linebreak="cm", 30356 specials={ "char", 0xFB2, 0xF80 }, 30357 unicodeslot=0xF76, 30358 }, 30359 [0xF77]={ 30360 category="mn", 30361 description="TIBETAN VOWEL SIGN VOCALIC RR", 30362 direction="nsm", 30363 linebreak="cm", 30364 specials={ "compat", 0xFB2, 0xF81 }, 30365 unicodeslot=0xF77, 30366 }, 30367 [0xF78]={ 30368 category="mn", 30369 description="TIBETAN VOWEL SIGN VOCALIC L", 30370 direction="nsm", 30371 linebreak="cm", 30372 specials={ "char", 0xFB3, 0xF80 }, 30373 unicodeslot=0xF78, 30374 }, 30375 [0xF79]={ 30376 category="mn", 30377 description="TIBETAN VOWEL SIGN VOCALIC LL", 30378 direction="nsm", 30379 linebreak="cm", 30380 specials={ "compat", 0xFB3, 0xF81 }, 30381 unicodeslot=0xF79, 30382 }, 30383 [0xF7A]={ 30384 category="mn", 30385 combining=0x82, 30386 description="TIBETAN VOWEL SIGN E", 30387 direction="nsm", 30388 linebreak="cm", 30389 unicodeslot=0xF7A, 30390 }, 30391 [0xF7B]={ 30392 category="mn", 30393 combining=0x82, 30394 description="TIBETAN VOWEL SIGN EE", 30395 direction="nsm", 30396 linebreak="cm", 30397 unicodeslot=0xF7B, 30398 }, 30399 [0xF7C]={ 30400 category="mn", 30401 combining=0x82, 30402 description="TIBETAN VOWEL SIGN O", 30403 direction="nsm", 30404 linebreak="cm", 30405 unicodeslot=0xF7C, 30406 }, 30407 [0xF7D]={ 30408 category="mn", 30409 combining=0x82, 30410 description="TIBETAN VOWEL SIGN OO", 30411 direction="nsm", 30412 linebreak="cm", 30413 unicodeslot=0xF7D, 30414 }, 30415 [0xF7E]={ 30416 category="mn", 30417 description="TIBETAN SIGN RJES SU NGA RO", 30418 direction="nsm", 30419 linebreak="cm", 30420 synonyms={ "tibetan anusvara" }, 30421 unicodeslot=0xF7E, 30422 }, 30423 [0xF7F]={ 30424 category="mc", 30425 description="TIBETAN SIGN RNAM BCAD", 30426 direction="l", 30427 linebreak="ba", 30428 synonyms={ "tibetan visarga" }, 30429 unicodeslot=0xF7F, 30430 }, 30431 [0xF80]={ 30432 category="mn", 30433 combining=0x82, 30434 description="TIBETAN VOWEL SIGN REVERSED I", 30435 direction="nsm", 30436 linebreak="cm", 30437 unicodeslot=0xF80, 30438 }, 30439 [0xF81]={ 30440 category="mn", 30441 description="TIBETAN VOWEL SIGN REVERSED II", 30442 direction="nsm", 30443 linebreak="cm", 30444 specials={ "char", 0xF71, 0xF80 }, 30445 unicodeslot=0xF81, 30446 }, 30447 [0xF82]={ 30448 category="mn", 30449 combining=0xE6, 30450 description="TIBETAN SIGN NYI ZLA NAA DA", 30451 direction="nsm", 30452 linebreak="cm", 30453 unicodeslot=0xF82, 30454 }, 30455 [0xF83]={ 30456 category="mn", 30457 combining=0xE6, 30458 description="TIBETAN SIGN SNA LDAN", 30459 direction="nsm", 30460 linebreak="cm", 30461 unicodeslot=0xF83, 30462 }, 30463 [0xF84]={ 30464 category="mn", 30465 combining=0x9, 30466 description="TIBETAN MARK HALANTA", 30467 direction="nsm", 30468 linebreak="cm", 30469 synonyms={ "tibetan srog med" }, 30470 unicodeslot=0xF84, 30471 }, 30472 [0xF85]={ 30473 category="po", 30474 description="TIBETAN MARK PALUTA", 30475 direction="l", 30476 linebreak="ba", 30477 unicodeslot=0xF85, 30478 }, 30479 [0xF86]={ 30480 category="mn", 30481 combining=0xE6, 30482 description="TIBETAN SIGN LCI RTAGS", 30483 direction="nsm", 30484 linebreak="cm", 30485 unicodeslot=0xF86, 30486 }, 30487 [0xF87]={ 30488 category="mn", 30489 combining=0xE6, 30490 description="TIBETAN SIGN YANG RTAGS", 30491 direction="nsm", 30492 linebreak="cm", 30493 unicodeslot=0xF87, 30494 }, 30495 [0xF88]={ 30496 category="lo", 30497 description="TIBETAN SIGN LCE TSA CAN", 30498 direction="l", 30499 linebreak="al", 30500 unicodeslot=0xF88, 30501 }, 30502 [0xF89]={ 30503 category="lo", 30504 description="TIBETAN SIGN MCHU CAN", 30505 direction="l", 30506 linebreak="al", 30507 unicodeslot=0xF89, 30508 }, 30509 [0xF8A]={ 30510 category="lo", 30511 description="TIBETAN SIGN GRU CAN RGYINGS", 30512 direction="l", 30513 linebreak="al", 30514 unicodeslot=0xF8A, 30515 }, 30516 [0xF8B]={ 30517 category="lo", 30518 description="TIBETAN SIGN GRU MED RGYINGS", 30519 direction="l", 30520 linebreak="al", 30521 unicodeslot=0xF8B, 30522 }, 30523 [0xF8C]={ 30524 category="lo", 30525 description="TIBETAN SIGN INVERTED MCHU CAN", 30526 direction="l", 30527 linebreak="al", 30528 unicodeslot=0xF8C, 30529 }, 30530 [0xF8D]={ 30531 category="mn", 30532 description="TIBETAN SUBJOINED SIGN LCE TSA CAN", 30533 direction="nsm", 30534 linebreak="cm", 30535 unicodeslot=0xF8D, 30536 }, 30537 [0xF8E]={ 30538 category="mn", 30539 description="TIBETAN SUBJOINED SIGN MCHU CAN", 30540 direction="nsm", 30541 linebreak="cm", 30542 unicodeslot=0xF8E, 30543 }, 30544 [0xF8F]={ 30545 category="mn", 30546 description="TIBETAN SUBJOINED SIGN INVERTED MCHU CAN", 30547 direction="nsm", 30548 linebreak="cm", 30549 unicodeslot=0xF8F, 30550 }, 30551 [0xF90]={ 30552 category="mn", 30553 description="TIBETAN SUBJOINED LETTER KA", 30554 direction="nsm", 30555 linebreak="cm", 30556 unicodeslot=0xF90, 30557 }, 30558 [0xF91]={ 30559 category="mn", 30560 description="TIBETAN SUBJOINED LETTER KHA", 30561 direction="nsm", 30562 linebreak="cm", 30563 unicodeslot=0xF91, 30564 }, 30565 [0xF92]={ 30566 category="mn", 30567 description="TIBETAN SUBJOINED LETTER GA", 30568 direction="nsm", 30569 linebreak="cm", 30570 unicodeslot=0xF92, 30571 }, 30572 [0xF93]={ 30573 category="mn", 30574 description="TIBETAN SUBJOINED LETTER GHA", 30575 direction="nsm", 30576 linebreak="cm", 30577 specials={ "char", 0xF92, 0xFB7 }, 30578 unicodeslot=0xF93, 30579 }, 30580 [0xF94]={ 30581 category="mn", 30582 description="TIBETAN SUBJOINED LETTER NGA", 30583 direction="nsm", 30584 linebreak="cm", 30585 unicodeslot=0xF94, 30586 }, 30587 [0xF95]={ 30588 category="mn", 30589 description="TIBETAN SUBJOINED LETTER CA", 30590 direction="nsm", 30591 linebreak="cm", 30592 unicodeslot=0xF95, 30593 }, 30594 [0xF96]={ 30595 category="mn", 30596 description="TIBETAN SUBJOINED LETTER CHA", 30597 direction="nsm", 30598 linebreak="cm", 30599 unicodeslot=0xF96, 30600 }, 30601 [0xF97]={ 30602 category="mn", 30603 description="TIBETAN SUBJOINED LETTER JA", 30604 direction="nsm", 30605 linebreak="cm", 30606 unicodeslot=0xF97, 30607 }, 30608 [0xF99]={ 30609 category="mn", 30610 description="TIBETAN SUBJOINED LETTER NYA", 30611 direction="nsm", 30612 linebreak="cm", 30613 unicodeslot=0xF99, 30614 }, 30615 [0xF9A]={ 30616 category="mn", 30617 description="TIBETAN SUBJOINED LETTER TTA", 30618 direction="nsm", 30619 linebreak="cm", 30620 unicodeslot=0xF9A, 30621 }, 30622 [0xF9B]={ 30623 category="mn", 30624 description="TIBETAN SUBJOINED LETTER TTHA", 30625 direction="nsm", 30626 linebreak="cm", 30627 unicodeslot=0xF9B, 30628 }, 30629 [0xF9C]={ 30630 category="mn", 30631 description="TIBETAN SUBJOINED LETTER DDA", 30632 direction="nsm", 30633 linebreak="cm", 30634 unicodeslot=0xF9C, 30635 }, 30636 [0xF9D]={ 30637 category="mn", 30638 description="TIBETAN SUBJOINED LETTER DDHA", 30639 direction="nsm", 30640 linebreak="cm", 30641 specials={ "char", 0xF9C, 0xFB7 }, 30642 unicodeslot=0xF9D, 30643 }, 30644 [0xF9E]={ 30645 category="mn", 30646 description="TIBETAN SUBJOINED LETTER NNA", 30647 direction="nsm", 30648 linebreak="cm", 30649 unicodeslot=0xF9E, 30650 }, 30651 [0xF9F]={ 30652 category="mn", 30653 description="TIBETAN SUBJOINED LETTER TA", 30654 direction="nsm", 30655 linebreak="cm", 30656 unicodeslot=0xF9F, 30657 }, 30658 [0xFA0]={ 30659 category="mn", 30660 description="TIBETAN SUBJOINED LETTER THA", 30661 direction="nsm", 30662 linebreak="cm", 30663 unicodeslot=0xFA0, 30664 }, 30665 [0xFA1]={ 30666 category="mn", 30667 description="TIBETAN SUBJOINED LETTER DA", 30668 direction="nsm", 30669 linebreak="cm", 30670 unicodeslot=0xFA1, 30671 }, 30672 [0xFA2]={ 30673 category="mn", 30674 description="TIBETAN SUBJOINED LETTER DHA", 30675 direction="nsm", 30676 linebreak="cm", 30677 specials={ "char", 0xFA1, 0xFB7 }, 30678 unicodeslot=0xFA2, 30679 }, 30680 [0xFA3]={ 30681 category="mn", 30682 description="TIBETAN SUBJOINED LETTER NA", 30683 direction="nsm", 30684 linebreak="cm", 30685 unicodeslot=0xFA3, 30686 }, 30687 [0xFA4]={ 30688 category="mn", 30689 description="TIBETAN SUBJOINED LETTER PA", 30690 direction="nsm", 30691 linebreak="cm", 30692 unicodeslot=0xFA4, 30693 }, 30694 [0xFA5]={ 30695 category="mn", 30696 description="TIBETAN SUBJOINED LETTER PHA", 30697 direction="nsm", 30698 linebreak="cm", 30699 unicodeslot=0xFA5, 30700 }, 30701 [0xFA6]={ 30702 category="mn", 30703 description="TIBETAN SUBJOINED LETTER BA", 30704 direction="nsm", 30705 linebreak="cm", 30706 unicodeslot=0xFA6, 30707 }, 30708 [0xFA7]={ 30709 category="mn", 30710 description="TIBETAN SUBJOINED LETTER BHA", 30711 direction="nsm", 30712 linebreak="cm", 30713 specials={ "char", 0xFA6, 0xFB7 }, 30714 unicodeslot=0xFA7, 30715 }, 30716 [0xFA8]={ 30717 category="mn", 30718 description="TIBETAN SUBJOINED LETTER MA", 30719 direction="nsm", 30720 linebreak="cm", 30721 unicodeslot=0xFA8, 30722 }, 30723 [0xFA9]={ 30724 category="mn", 30725 description="TIBETAN SUBJOINED LETTER TSA", 30726 direction="nsm", 30727 linebreak="cm", 30728 unicodeslot=0xFA9, 30729 }, 30730 [0xFAA]={ 30731 category="mn", 30732 description="TIBETAN SUBJOINED LETTER TSHA", 30733 direction="nsm", 30734 linebreak="cm", 30735 unicodeslot=0xFAA, 30736 }, 30737 [0xFAB]={ 30738 category="mn", 30739 description="TIBETAN SUBJOINED LETTER DZA", 30740 direction="nsm", 30741 linebreak="cm", 30742 unicodeslot=0xFAB, 30743 }, 30744 [0xFAC]={ 30745 category="mn", 30746 description="TIBETAN SUBJOINED LETTER DZHA", 30747 direction="nsm", 30748 linebreak="cm", 30749 specials={ "char", 0xFAB, 0xFB7 }, 30750 unicodeslot=0xFAC, 30751 }, 30752 [0xFAD]={ 30753 category="mn", 30754 description="TIBETAN SUBJOINED LETTER WA", 30755 direction="nsm", 30756 linebreak="cm", 30757 unicodeslot=0xFAD, 30758 }, 30759 [0xFAE]={ 30760 category="mn", 30761 description="TIBETAN SUBJOINED LETTER ZHA", 30762 direction="nsm", 30763 linebreak="cm", 30764 unicodeslot=0xFAE, 30765 }, 30766 [0xFAF]={ 30767 category="mn", 30768 description="TIBETAN SUBJOINED LETTER ZA", 30769 direction="nsm", 30770 linebreak="cm", 30771 unicodeslot=0xFAF, 30772 }, 30773 [0xFB0]={ 30774 category="mn", 30775 description="TIBETAN SUBJOINED LETTER -A", 30776 direction="nsm", 30777 linebreak="cm", 30778 unicodeslot=0xFB0, 30779 }, 30780 [0xFB1]={ 30781 category="mn", 30782 description="TIBETAN SUBJOINED LETTER YA", 30783 direction="nsm", 30784 linebreak="cm", 30785 unicodeslot=0xFB1, 30786 }, 30787 [0xFB2]={ 30788 category="mn", 30789 description="TIBETAN SUBJOINED LETTER RA", 30790 direction="nsm", 30791 linebreak="cm", 30792 unicodeslot=0xFB2, 30793 }, 30794 [0xFB3]={ 30795 category="mn", 30796 description="TIBETAN SUBJOINED LETTER LA", 30797 direction="nsm", 30798 linebreak="cm", 30799 unicodeslot=0xFB3, 30800 }, 30801 [0xFB4]={ 30802 category="mn", 30803 description="TIBETAN SUBJOINED LETTER SHA", 30804 direction="nsm", 30805 linebreak="cm", 30806 unicodeslot=0xFB4, 30807 }, 30808 [0xFB5]={ 30809 category="mn", 30810 description="TIBETAN SUBJOINED LETTER SSA", 30811 direction="nsm", 30812 linebreak="cm", 30813 unicodeslot=0xFB5, 30814 }, 30815 [0xFB6]={ 30816 category="mn", 30817 description="TIBETAN SUBJOINED LETTER SA", 30818 direction="nsm", 30819 linebreak="cm", 30820 unicodeslot=0xFB6, 30821 }, 30822 [0xFB7]={ 30823 category="mn", 30824 description="TIBETAN SUBJOINED LETTER HA", 30825 direction="nsm", 30826 linebreak="cm", 30827 unicodeslot=0xFB7, 30828 }, 30829 [0xFB8]={ 30830 category="mn", 30831 description="TIBETAN SUBJOINED LETTER A", 30832 direction="nsm", 30833 linebreak="cm", 30834 unicodeslot=0xFB8, 30835 }, 30836 [0xFB9]={ 30837 category="mn", 30838 description="TIBETAN SUBJOINED LETTER KSSA", 30839 direction="nsm", 30840 linebreak="cm", 30841 specials={ "char", 0xF90, 0xFB5 }, 30842 unicodeslot=0xFB9, 30843 }, 30844 [0xFBA]={ 30845 category="mn", 30846 description="TIBETAN SUBJOINED LETTER FIXED-FORM WA", 30847 direction="nsm", 30848 linebreak="cm", 30849 unicodeslot=0xFBA, 30850 }, 30851 [0xFBB]={ 30852 category="mn", 30853 description="TIBETAN SUBJOINED LETTER FIXED-FORM YA", 30854 direction="nsm", 30855 linebreak="cm", 30856 unicodeslot=0xFBB, 30857 }, 30858 [0xFBC]={ 30859 category="mn", 30860 description="TIBETAN SUBJOINED LETTER FIXED-FORM RA", 30861 direction="nsm", 30862 linebreak="cm", 30863 unicodeslot=0xFBC, 30864 }, 30865 [0xFBE]={ 30866 category="so", 30867 description="TIBETAN KU RU KHA", 30868 direction="l", 30869 linebreak="ba", 30870 unicodeslot=0xFBE, 30871 }, 30872 [0xFBF]={ 30873 category="so", 30874 description="TIBETAN KU RU KHA BZHI MIG CAN", 30875 direction="l", 30876 linebreak="ba", 30877 unicodeslot=0xFBF, 30878 }, 30879 [0xFC0]={ 30880 category="so", 30881 description="TIBETAN CANTILLATION SIGN HEAVY BEAT", 30882 direction="l", 30883 linebreak="al", 30884 unicodeslot=0xFC0, 30885 }, 30886 [0xFC1]={ 30887 category="so", 30888 description="TIBETAN CANTILLATION SIGN LIGHT BEAT", 30889 direction="l", 30890 linebreak="al", 30891 unicodeslot=0xFC1, 30892 }, 30893 [0xFC2]={ 30894 category="so", 30895 description="TIBETAN CANTILLATION SIGN CANG TE-U", 30896 direction="l", 30897 linebreak="al", 30898 unicodeslot=0xFC2, 30899 }, 30900 [0xFC3]={ 30901 category="so", 30902 description="TIBETAN CANTILLATION SIGN SBUB -CHAL", 30903 direction="l", 30904 linebreak="al", 30905 unicodeslot=0xFC3, 30906 }, 30907 [0xFC4]={ 30908 category="so", 30909 description="TIBETAN SYMBOL DRIL BU", 30910 direction="l", 30911 linebreak="al", 30912 unicodeslot=0xFC4, 30913 }, 30914 [0xFC5]={ 30915 category="so", 30916 description="TIBETAN SYMBOL RDO RJE", 30917 direction="l", 30918 linebreak="al", 30919 unicodeslot=0xFC5, 30920 }, 30921 [0xFC6]={ 30922 category="mn", 30923 combining=0xDC, 30924 description="TIBETAN SYMBOL PADMA GDAN", 30925 direction="nsm", 30926 linebreak="cm", 30927 unicodeslot=0xFC6, 30928 }, 30929 [0xFC7]={ 30930 category="so", 30931 description="TIBETAN SYMBOL RDO RJE RGYA GRAM", 30932 direction="l", 30933 linebreak="al", 30934 unicodeslot=0xFC7, 30935 }, 30936 [0xFC8]={ 30937 category="so", 30938 description="TIBETAN SYMBOL PHUR PA", 30939 direction="l", 30940 linebreak="al", 30941 unicodeslot=0xFC8, 30942 }, 30943 [0xFC9]={ 30944 category="so", 30945 description="TIBETAN SYMBOL NOR BU", 30946 direction="l", 30947 linebreak="al", 30948 unicodeslot=0xFC9, 30949 }, 30950 [0xFCA]={ 30951 category="so", 30952 description="TIBETAN SYMBOL NOR BU NYIS -KHYIL", 30953 direction="l", 30954 linebreak="al", 30955 unicodeslot=0xFCA, 30956 }, 30957 [0xFCB]={ 30958 category="so", 30959 description="TIBETAN SYMBOL NOR BU GSUM -KHYIL", 30960 direction="l", 30961 linebreak="al", 30962 unicodeslot=0xFCB, 30963 }, 30964 [0xFCC]={ 30965 category="so", 30966 description="TIBETAN SYMBOL NOR BU BZHI -KHYIL", 30967 direction="l", 30968 linebreak="al", 30969 unicodeslot=0xFCC, 30970 }, 30971 [0xFCE]={ 30972 category="so", 30973 description="TIBETAN SIGN RDEL NAG RDEL DKAR", 30974 direction="l", 30975 linebreak="al", 30976 unicodeslot=0xFCE, 30977 }, 30978 [0xFCF]={ 30979 category="so", 30980 description="TIBETAN SIGN RDEL NAG GSUM", 30981 direction="l", 30982 linebreak="al", 30983 unicodeslot=0xFCF, 30984 }, 30985 [0xFD0]={ 30986 category="po", 30987 description="TIBETAN MARK BSKA- SHOG GI MGO RGYAN", 30988 direction="l", 30989 linebreak="bb", 30990 unicodeslot=0xFD0, 30991 }, 30992 [0xFD1]={ 30993 category="po", 30994 description="TIBETAN MARK MNYAM YIG GI MGO RGYAN", 30995 direction="l", 30996 linebreak="bb", 30997 unicodeslot=0xFD1, 30998 }, 30999 [0xFD2]={ 31000 category="po", 31001 description="TIBETAN MARK NYIS TSHEG", 31002 direction="l", 31003 linebreak="ba", 31004 unicodeslot=0xFD2, 31005 }, 31006 [0xFD3]={ 31007 category="po", 31008 description="TIBETAN MARK INITIAL BRDA RNYING YIG MGO MDUN MA", 31009 direction="l", 31010 linebreak="bb", 31011 unicodeslot=0xFD3, 31012 }, 31013 [0xFD4]={ 31014 category="po", 31015 description="TIBETAN MARK CLOSING BRDA RNYING YIG MGO SGAB MA", 31016 direction="l", 31017 linebreak="al", 31018 unicodeslot=0xFD4, 31019 }, 31020 [0xFD5]={ 31021 category="so", 31022 description="RIGHT-FACING SVASTI SIGN", 31023 direction="l", 31024 linebreak="al", 31025 unicodeslot=0xFD5, 31026 }, 31027 [0xFD6]={ 31028 category="so", 31029 description="LEFT-FACING SVASTI SIGN", 31030 direction="l", 31031 linebreak="al", 31032 unicodeslot=0xFD6, 31033 }, 31034 [0xFD7]={ 31035 category="so", 31036 description="RIGHT-FACING SVASTI SIGN WITH DOTS", 31037 direction="l", 31038 linebreak="al", 31039 unicodeslot=0xFD7, 31040 }, 31041 [0xFD8]={ 31042 category="so", 31043 description="LEFT-FACING SVASTI SIGN WITH DOTS", 31044 direction="l", 31045 linebreak="al", 31046 unicodeslot=0xFD8, 31047 }, 31048 [0xFD9]={ 31049 category="po", 31050 description="TIBETAN MARK LEADING MCHAN RTAGS", 31051 direction="l", 31052 linebreak="gl", 31053 unicodeslot=0xFD9, 31054 }, 31055 [0xFDA]={ 31056 category="po", 31057 description="TIBETAN MARK TRAILING MCHAN RTAGS", 31058 direction="l", 31059 linebreak="gl", 31060 unicodeslot=0xFDA, 31061 }, 31062 [0x1000]={ 31063 category="lo", 31064 description="MYANMAR LETTER KA", 31065 direction="l", 31066 indic="c", 31067 linebreak="sa", 31068 unicodeslot=0x1000, 31069 variants=variants_dotted, 31070 }, 31071 [0x1001]={ 31072 category="lo", 31073 description="MYANMAR LETTER KHA", 31074 direction="l", 31075 indic="c", 31076 linebreak="sa", 31077 unicodeslot=0x1001, 31078 }, 31079 [0x1002]={ 31080 category="lo", 31081 description="MYANMAR LETTER GA", 31082 direction="l", 31083 indic="c", 31084 linebreak="sa", 31085 unicodeslot=0x1002, 31086 variants=variants_dotted, 31087 }, 31088 [0x1003]={ 31089 category="lo", 31090 description="MYANMAR LETTER GHA", 31091 direction="l", 31092 indic="c", 31093 linebreak="sa", 31094 unicodeslot=0x1003, 31095 }, 31096 [0x1004]={ 31097 category="lo", 31098 description="MYANMAR LETTER NGA", 31099 direction="l", 31100 indic="c", 31101 linebreak="sa", 31102 unicodeslot=0x1004, 31103 variants=variants_dotted, 31104 }, 31105 [0x1005]={ 31106 category="lo", 31107 description="MYANMAR LETTER CA", 31108 direction="l", 31109 indic="c", 31110 linebreak="sa", 31111 unicodeslot=0x1005, 31112 }, 31113 [0x1006]={ 31114 category="lo", 31115 description="MYANMAR LETTER CHA", 31116 direction="l", 31117 indic="c", 31118 linebreak="sa", 31119 unicodeslot=0x1006, 31120 }, 31121 [0x1007]={ 31122 category="lo", 31123 description="MYANMAR LETTER JA", 31124 direction="l", 31125 indic="c", 31126 linebreak="sa", 31127 unicodeslot=0x1007, 31128 }, 31129 [0x1008]={ 31130 category="lo", 31131 description="MYANMAR LETTER JHA", 31132 direction="l", 31133 indic="c", 31134 linebreak="sa", 31135 unicodeslot=0x1008, 31136 }, 31137 [0x1009]={ 31138 category="lo", 31139 description="MYANMAR LETTER NYA", 31140 direction="l", 31141 indic="c", 31142 linebreak="sa", 31143 unicodeslot=0x1009, 31144 }, 31145 [0x100A]={ 31146 category="lo", 31147 description="MYANMAR LETTER NNYA", 31148 direction="l", 31149 indic="c", 31150 linebreak="sa", 31151 unicodeslot=0x100A, 31152 }, 31153 [0x100B]={ 31154 category="lo", 31155 description="MYANMAR LETTER TTA", 31156 direction="l", 31157 indic="c", 31158 linebreak="sa", 31159 unicodeslot=0x100B, 31160 }, 31161 [0x100C]={ 31162 category="lo", 31163 description="MYANMAR LETTER TTHA", 31164 direction="l", 31165 indic="c", 31166 linebreak="sa", 31167 unicodeslot=0x100C, 31168 }, 31169 [0x100D]={ 31170 category="lo", 31171 description="MYANMAR LETTER DDA", 31172 direction="l", 31173 indic="c", 31174 linebreak="sa", 31175 unicodeslot=0x100D, 31176 }, 31177 [0x100E]={ 31178 category="lo", 31179 description="MYANMAR LETTER DDHA", 31180 direction="l", 31181 indic="c", 31182 linebreak="sa", 31183 unicodeslot=0x100E, 31184 }, 31185 [0x100F]={ 31186 category="lo", 31187 description="MYANMAR LETTER NNA", 31188 direction="l", 31189 indic="c", 31190 linebreak="sa", 31191 unicodeslot=0x100F, 31192 }, 31193 [0x1010]={ 31194 category="lo", 31195 description="MYANMAR LETTER TA", 31196 direction="l", 31197 indic="c", 31198 linebreak="sa", 31199 unicodeslot=0x1010, 31200 variants=variants_dotted, 31201 }, 31202 [0x1011]={ 31203 category="lo", 31204 description="MYANMAR LETTER THA", 31205 direction="l", 31206 indic="c", 31207 linebreak="sa", 31208 unicodeslot=0x1011, 31209 variants=variants_dotted, 31210 }, 31211 [0x1012]={ 31212 category="lo", 31213 description="MYANMAR LETTER DA", 31214 direction="l", 31215 indic="c", 31216 linebreak="sa", 31217 unicodeslot=0x1012, 31218 }, 31219 [0x1013]={ 31220 category="lo", 31221 description="MYANMAR LETTER DHA", 31222 direction="l", 31223 indic="c", 31224 linebreak="sa", 31225 unicodeslot=0x1013, 31226 }, 31227 [0x1014]={ 31228 category="lo", 31229 description="MYANMAR LETTER NA", 31230 direction="l", 31231 indic="c", 31232 linebreak="sa", 31233 unicodeslot=0x1014, 31234 }, 31235 [0x1015]={ 31236 category="lo", 31237 description="MYANMAR LETTER PA", 31238 direction="l", 31239 indic="c", 31240 linebreak="sa", 31241 unicodeslot=0x1015, 31242 variants=variants_dotted, 31243 }, 31244 [0x1016]={ 31245 category="lo", 31246 description="MYANMAR LETTER PHA", 31247 direction="l", 31248 indic="c", 31249 linebreak="sa", 31250 unicodeslot=0x1016, 31251 }, 31252 [0x1017]={ 31253 category="lo", 31254 description="MYANMAR LETTER BA", 31255 direction="l", 31256 indic="c", 31257 linebreak="sa", 31258 unicodeslot=0x1017, 31259 }, 31260 [0x1018]={ 31261 category="lo", 31262 description="MYANMAR LETTER BHA", 31263 direction="l", 31264 indic="c", 31265 linebreak="sa", 31266 unicodeslot=0x1018, 31267 }, 31268 [0x1019]={ 31269 category="lo", 31270 description="MYANMAR LETTER MA", 31271 direction="l", 31272 indic="c", 31273 linebreak="sa", 31274 unicodeslot=0x1019, 31275 variants=variants_dotted, 31276 }, 31277 [0x101A]={ 31278 category="lo", 31279 description="MYANMAR LETTER YA", 31280 direction="l", 31281 indic="c", 31282 linebreak="sa", 31283 unicodeslot=0x101A, 31284 variants=variants_dotted, 31285 }, 31286 [0x101B]={ 31287 category="lo", 31288 description="MYANMAR LETTER RA", 31289 direction="l", 31290 indic="c", 31291 linebreak="sa", 31292 unicodeslot=0x101B, 31293 }, 31294 [0x101C]={ 31295 category="lo", 31296 description="MYANMAR LETTER LA", 31297 direction="l", 31298 indic="c", 31299 linebreak="sa", 31300 unicodeslot=0x101C, 31301 variants=variants_dotted, 31302 }, 31303 [0x101D]={ 31304 category="lo", 31305 description="MYANMAR LETTER WA", 31306 direction="l", 31307 indic="c", 31308 linebreak="sa", 31309 unicodeslot=0x101D, 31310 variants=variants_dotted, 31311 }, 31312 [0x101E]={ 31313 category="lo", 31314 description="MYANMAR LETTER SA", 31315 direction="l", 31316 indic="c", 31317 linebreak="sa", 31318 unicodeslot=0x101E, 31319 }, 31320 [0x101F]={ 31321 category="lo", 31322 description="MYANMAR LETTER HA", 31323 direction="l", 31324 indic="c", 31325 linebreak="sa", 31326 unicodeslot=0x101F, 31327 }, 31328 [0x1020]={ 31329 category="lo", 31330 description="MYANMAR LETTER LLA", 31331 direction="l", 31332 indic="c", 31333 linebreak="sa", 31334 unicodeslot=0x1020, 31335 }, 31336 [0x1021]={ 31337 category="lo", 31338 description="MYANMAR LETTER A", 31339 direction="l", 31340 indic="i", 31341 linebreak="sa", 31342 unicodeslot=0x1021, 31343 }, 31344 [0x1022]={ 31345 category="lo", 31346 description="MYANMAR LETTER SHAN A", 31347 direction="l", 31348 indic="i", 31349 linebreak="sa", 31350 unicodeslot=0x1022, 31351 variants=variants_dotted, 31352 }, 31353 [0x1023]={ 31354 category="lo", 31355 description="MYANMAR LETTER I", 31356 direction="l", 31357 indic="i", 31358 linebreak="sa", 31359 unicodeslot=0x1023, 31360 }, 31361 [0x1024]={ 31362 category="lo", 31363 description="MYANMAR LETTER II", 31364 direction="l", 31365 indic="i", 31366 linebreak="sa", 31367 unicodeslot=0x1024, 31368 }, 31369 [0x1025]={ 31370 category="lo", 31371 description="MYANMAR LETTER U", 31372 direction="l", 31373 indic="i", 31374 linebreak="sa", 31375 unicodeslot=0x1025, 31376 }, 31377 [0x1026]={ 31378 category="lo", 31379 description="MYANMAR LETTER UU", 31380 direction="l", 31381 indic="i", 31382 linebreak="sa", 31383 specials={ "char", 0x1025, 0x102E }, 31384 unicodeslot=0x1026, 31385 }, 31386 [0x1027]={ 31387 category="lo", 31388 description="MYANMAR LETTER E", 31389 direction="l", 31390 indic="i", 31391 linebreak="sa", 31392 unicodeslot=0x1027, 31393 }, 31394 [0x1028]={ 31395 category="lo", 31396 description="MYANMAR LETTER MON E", 31397 direction="l", 31398 indic="i", 31399 linebreak="sa", 31400 unicodeslot=0x1028, 31401 }, 31402 [0x1029]={ 31403 category="lo", 31404 description="MYANMAR LETTER O", 31405 direction="l", 31406 indic="i", 31407 linebreak="sa", 31408 unicodeslot=0x1029, 31409 }, 31410 [0x102A]={ 31411 category="lo", 31412 description="MYANMAR LETTER AU", 31413 direction="l", 31414 indic="i", 31415 linebreak="sa", 31416 unicodeslot=0x102A, 31417 }, 31418 [0x102B]={ 31419 category="mc", 31420 description="MYANMAR VOWEL SIGN TALL AA", 31421 direction="l", 31422 indic="d", 31423 indicmark="r", 31424 linebreak="sa", 31425 unicodeslot=0x102B, 31426 }, 31427 [0x102C]={ 31428 category="mc", 31429 description="MYANMAR VOWEL SIGN AA", 31430 direction="l", 31431 indic="d", 31432 indicmark="r", 31433 linebreak="sa", 31434 unicodeslot=0x102C, 31435 }, 31436 [0x102D]={ 31437 category="mn", 31438 description="MYANMAR VOWEL SIGN I", 31439 direction="nsm", 31440 indic="d", 31441 indicmark="t", 31442 linebreak="sa", 31443 unicodeslot=0x102D, 31444 }, 31445 [0x102E]={ 31446 category="mn", 31447 description="MYANMAR VOWEL SIGN II", 31448 direction="nsm", 31449 indic="d", 31450 indicmark="t", 31451 linebreak="sa", 31452 unicodeslot=0x102E, 31453 }, 31454 [0x102F]={ 31455 category="mn", 31456 description="MYANMAR VOWEL SIGN U", 31457 direction="nsm", 31458 indic="d", 31459 indicmark="b", 31460 linebreak="sa", 31461 unicodeslot=0x102F, 31462 }, 31463 [0x1030]={ 31464 category="mn", 31465 description="MYANMAR VOWEL SIGN UU", 31466 direction="nsm", 31467 indic="d", 31468 indicmark="b", 31469 linebreak="sa", 31470 unicodeslot=0x1030, 31471 }, 31472 [0x1031]={ 31473 category="mc", 31474 description="MYANMAR VOWEL SIGN E", 31475 direction="l", 31476 indic="d", 31477 indicmark="l", 31478 linebreak="sa", 31479 unicodeslot=0x1031, 31480 variants=variants_dotted, 31481 }, 31482 [0x1032]={ 31483 category="mn", 31484 description="MYANMAR VOWEL SIGN AI", 31485 direction="nsm", 31486 indic="d", 31487 indicmark="t", 31488 linebreak="sa", 31489 unicodeslot=0x1032, 31490 }, 31491 [0x1033]={ 31492 category="mn", 31493 description="MYANMAR VOWEL SIGN MON II", 31494 direction="nsm", 31495 indic="d", 31496 indicmark="t", 31497 linebreak="sa", 31498 unicodeslot=0x1033, 31499 }, 31500 [0x1034]={ 31501 category="mn", 31502 description="MYANMAR VOWEL SIGN MON O", 31503 direction="nsm", 31504 indic="d", 31505 indicmark="t", 31506 linebreak="sa", 31507 unicodeslot=0x1034, 31508 }, 31509 [0x1035]={ 31510 category="mn", 31511 description="MYANMAR VOWEL SIGN E ABOVE", 31512 direction="nsm", 31513 indic="d", 31514 indicmark="t", 31515 linebreak="sa", 31516 unicodeslot=0x1035, 31517 }, 31518 [0x1036]={ 31519 category="mn", 31520 description="MYANMAR SIGN ANUSVARA", 31521 direction="nsm", 31522 indic="m", 31523 indicmark="t", 31524 linebreak="sa", 31525 unicodeslot=0x1036, 31526 }, 31527 [0x1037]={ 31528 category="mn", 31529 combining=0x7, 31530 description="MYANMAR SIGN DOT BELOW", 31531 direction="nsm", 31532 indic="s", 31533 indicmark="b", 31534 linebreak="sa", 31535 unicodeslot=0x1037, 31536 }, 31537 [0x1038]={ 31538 category="mc", 31539 description="MYANMAR SIGN VISARGA", 31540 direction="l", 31541 indic="m", 31542 indicmark="r", 31543 linebreak="sa", 31544 unicodeslot=0x1038, 31545 }, 31546 [0x1039]={ 31547 category="mn", 31548 combining=0x9, 31549 description="MYANMAR SIGN VIRAMA", 31550 direction="nsm", 31551 indic="m", 31552 indicmark="b", 31553 linebreak="sa", 31554 synonyms={ "myanmar killer" }, 31555 unicodeslot=0x1039, 31556 }, 31557 [0x103A]={ 31558 category="mn", 31559 combining=0x9, 31560 description="MYANMAR SIGN ASAT", 31561 direction="nsm", 31562 indic="m", 31563 indicmark="t", 31564 linebreak="sa", 31565 unicodeslot=0x103A, 31566 }, 31567 [0x103B]={ 31568 category="mc", 31569 description="MYANMAR CONSONANT SIGN MEDIAL YA", 31570 direction="l", 31571 indic="c", 31572 indicmark="r", 31573 linebreak="sa", 31574 unicodeslot=0x103B, 31575 }, 31576 [0x103C]={ 31577 category="mc", 31578 description="MYANMAR CONSONANT SIGN MEDIAL RA", 31579 direction="l", 31580 indic="c", 31581 linebreak="sa", 31582 unicodeslot=0x103C, 31583 }, 31584 [0x103D]={ 31585 category="mn", 31586 description="MYANMAR CONSONANT SIGN MEDIAL WA", 31587 direction="nsm", 31588 indic="c", 31589 indicmark="b", 31590 linebreak="sa", 31591 unicodeslot=0x103D, 31592 }, 31593 [0x103E]={ 31594 category="mn", 31595 description="MYANMAR CONSONANT SIGN MEDIAL HA", 31596 direction="nsm", 31597 indic="c", 31598 indicmark="b", 31599 linebreak="sa", 31600 unicodeslot=0x103E, 31601 }, 31602 [0x103F]={ 31603 category="lo", 31604 description="MYANMAR LETTER GREAT SA", 31605 direction="l", 31606 indic="c", 31607 linebreak="sa", 31608 unicodeslot=0x103F, 31609 }, 31610 [0x1040]={ 31611 category="nd", 31612 description="MYANMAR DIGIT ZERO", 31613 direction="l", 31614 indic="o", 31615 linebreak="nu", 31616 unicodeslot=0x1040, 31617 }, 31618 [0x1041]={ 31619 category="nd", 31620 description="MYANMAR DIGIT ONE", 31621 direction="l", 31622 indic="o", 31623 linebreak="nu", 31624 unicodeslot=0x1041, 31625 }, 31626 [0x1042]={ 31627 category="nd", 31628 description="MYANMAR DIGIT TWO", 31629 direction="l", 31630 indic="o", 31631 linebreak="nu", 31632 unicodeslot=0x1042, 31633 }, 31634 [0x1043]={ 31635 category="nd", 31636 description="MYANMAR DIGIT THREE", 31637 direction="l", 31638 indic="o", 31639 linebreak="nu", 31640 unicodeslot=0x1043, 31641 }, 31642 [0x1044]={ 31643 category="nd", 31644 description="MYANMAR DIGIT FOUR", 31645 direction="l", 31646 indic="o", 31647 linebreak="nu", 31648 unicodeslot=0x1044, 31649 }, 31650 [0x1045]={ 31651 category="nd", 31652 description="MYANMAR DIGIT FIVE", 31653 direction="l", 31654 indic="o", 31655 linebreak="nu", 31656 unicodeslot=0x1045, 31657 }, 31658 [0x1046]={ 31659 category="nd", 31660 description="MYANMAR DIGIT SIX", 31661 direction="l", 31662 indic="o", 31663 linebreak="nu", 31664 unicodeslot=0x1046, 31665 }, 31666 [0x1047]={ 31667 category="nd", 31668 description="MYANMAR DIGIT SEVEN", 31669 direction="l", 31670 indic="o", 31671 linebreak="nu", 31672 unicodeslot=0x1047, 31673 }, 31674 [0x1048]={ 31675 category="nd", 31676 description="MYANMAR DIGIT EIGHT", 31677 direction="l", 31678 indic="o", 31679 linebreak="nu", 31680 unicodeslot=0x1048, 31681 }, 31682 [0x1049]={ 31683 category="nd", 31684 description="MYANMAR DIGIT NINE", 31685 direction="l", 31686 indic="o", 31687 linebreak="nu", 31688 unicodeslot=0x1049, 31689 }, 31690 [0x104A]={ 31691 category="po", 31692 description="MYANMAR SIGN LITTLE SECTION", 31693 direction="l", 31694 indic="o", 31695 linebreak="ba", 31696 unicodeslot=0x104A, 31697 }, 31698 [0x104B]={ 31699 category="po", 31700 description="MYANMAR SIGN SECTION", 31701 direction="l", 31702 indic="o", 31703 linebreak="ba", 31704 unicodeslot=0x104B, 31705 }, 31706 [0x104C]={ 31707 category="po", 31708 description="MYANMAR SYMBOL LOCATIVE", 31709 direction="l", 31710 indic="o", 31711 linebreak="al", 31712 unicodeslot=0x104C, 31713 }, 31714 [0x104D]={ 31715 category="po", 31716 description="MYANMAR SYMBOL COMPLETED", 31717 direction="l", 31718 indic="o", 31719 linebreak="al", 31720 unicodeslot=0x104D, 31721 }, 31722 [0x104E]={ 31723 category="po", 31724 description="MYANMAR SYMBOL AFOREMENTIONED", 31725 direction="l", 31726 indic="o", 31727 linebreak="al", 31728 unicodeslot=0x104E, 31729 }, 31730 [0x104F]={ 31731 category="po", 31732 description="MYANMAR SYMBOL GENITIVE", 31733 direction="l", 31734 indic="o", 31735 linebreak="al", 31736 unicodeslot=0x104F, 31737 }, 31738 [0x1050]={ 31739 category="lo", 31740 description="MYANMAR LETTER SHA", 31741 direction="l", 31742 indic="c", 31743 linebreak="sa", 31744 unicodeslot=0x1050, 31745 }, 31746 [0x1051]={ 31747 category="lo", 31748 description="MYANMAR LETTER SSA", 31749 direction="l", 31750 indic="c", 31751 linebreak="sa", 31752 unicodeslot=0x1051, 31753 }, 31754 [0x1052]={ 31755 category="lo", 31756 description="MYANMAR LETTER VOCALIC R", 31757 direction="l", 31758 indic="i", 31759 linebreak="sa", 31760 unicodeslot=0x1052, 31761 }, 31762 [0x1053]={ 31763 category="lo", 31764 description="MYANMAR LETTER VOCALIC RR", 31765 direction="l", 31766 indic="i", 31767 linebreak="sa", 31768 unicodeslot=0x1053, 31769 }, 31770 [0x1054]={ 31771 category="lo", 31772 description="MYANMAR LETTER VOCALIC L", 31773 direction="l", 31774 indic="i", 31775 linebreak="sa", 31776 unicodeslot=0x1054, 31777 }, 31778 [0x1055]={ 31779 category="lo", 31780 description="MYANMAR LETTER VOCALIC LL", 31781 direction="l", 31782 indic="i", 31783 linebreak="sa", 31784 unicodeslot=0x1055, 31785 }, 31786 [0x1056]={ 31787 category="mc", 31788 description="MYANMAR VOWEL SIGN VOCALIC R", 31789 direction="l", 31790 indic="d", 31791 indicmark="r", 31792 linebreak="sa", 31793 unicodeslot=0x1056, 31794 }, 31795 [0x1057]={ 31796 category="mc", 31797 description="MYANMAR VOWEL SIGN VOCALIC RR", 31798 direction="l", 31799 indic="d", 31800 indicmark="r", 31801 linebreak="sa", 31802 unicodeslot=0x1057, 31803 }, 31804 [0x1058]={ 31805 category="mn", 31806 description="MYANMAR VOWEL SIGN VOCALIC L", 31807 direction="nsm", 31808 indic="d", 31809 indicmark="b", 31810 linebreak="sa", 31811 unicodeslot=0x1058, 31812 }, 31813 [0x1059]={ 31814 category="mn", 31815 description="MYANMAR VOWEL SIGN VOCALIC LL", 31816 direction="nsm", 31817 indic="d", 31818 indicmark="b", 31819 linebreak="sa", 31820 unicodeslot=0x1059, 31821 }, 31822 [0x105A]={ 31823 category="lo", 31824 description="MYANMAR LETTER MON NGA", 31825 direction="l", 31826 indic="c", 31827 linebreak="sa", 31828 unicodeslot=0x105A, 31829 }, 31830 [0x105B]={ 31831 category="lo", 31832 description="MYANMAR LETTER MON JHA", 31833 direction="l", 31834 indic="c", 31835 linebreak="sa", 31836 unicodeslot=0x105B, 31837 }, 31838 [0x105C]={ 31839 category="lo", 31840 description="MYANMAR LETTER MON BBA", 31841 direction="l", 31842 indic="c", 31843 linebreak="sa", 31844 unicodeslot=0x105C, 31845 }, 31846 [0x105D]={ 31847 category="lo", 31848 description="MYANMAR LETTER MON BBE", 31849 direction="l", 31850 indic="c", 31851 linebreak="sa", 31852 unicodeslot=0x105D, 31853 }, 31854 [0x105E]={ 31855 category="mn", 31856 description="MYANMAR CONSONANT SIGN MON MEDIAL NA", 31857 direction="nsm", 31858 indic="c", 31859 indicmark="b", 31860 linebreak="sa", 31861 unicodeslot=0x105E, 31862 }, 31863 [0x105F]={ 31864 category="mn", 31865 description="MYANMAR CONSONANT SIGN MON MEDIAL MA", 31866 direction="nsm", 31867 indic="c", 31868 indicmark="b", 31869 linebreak="sa", 31870 unicodeslot=0x105F, 31871 }, 31872 [0x1060]={ 31873 category="mn", 31874 description="MYANMAR CONSONANT SIGN MON MEDIAL LA", 31875 direction="nsm", 31876 indic="c", 31877 indicmark="b", 31878 linebreak="sa", 31879 unicodeslot=0x1060, 31880 }, 31881 [0x1061]={ 31882 category="lo", 31883 description="MYANMAR LETTER SGAW KAREN SHA", 31884 direction="l", 31885 indic="c", 31886 linebreak="sa", 31887 unicodeslot=0x1061, 31888 }, 31889 [0x1062]={ 31890 category="mc", 31891 description="MYANMAR VOWEL SIGN SGAW KAREN EU", 31892 direction="l", 31893 indic="d", 31894 indicmark="r", 31895 linebreak="sa", 31896 unicodeslot=0x1062, 31897 }, 31898 [0x1063]={ 31899 category="mc", 31900 description="MYANMAR TONE MARK SGAW KAREN HATHI", 31901 direction="l", 31902 indic="s", 31903 indicmark="r", 31904 linebreak="sa", 31905 unicodeslot=0x1063, 31906 }, 31907 [0x1064]={ 31908 category="mc", 31909 description="MYANMAR TONE MARK SGAW KAREN KE PHO", 31910 direction="l", 31911 indic="s", 31912 indicmark="r", 31913 linebreak="sa", 31914 unicodeslot=0x1064, 31915 }, 31916 [0x1065]={ 31917 category="lo", 31918 description="MYANMAR LETTER WESTERN PWO KAREN THA", 31919 direction="l", 31920 indic="c", 31921 linebreak="sa", 31922 unicodeslot=0x1065, 31923 }, 31924 [0x1066]={ 31925 category="lo", 31926 description="MYANMAR LETTER WESTERN PWO KAREN PWA", 31927 direction="l", 31928 indic="c", 31929 linebreak="sa", 31930 unicodeslot=0x1066, 31931 }, 31932 [0x1067]={ 31933 category="mc", 31934 description="MYANMAR VOWEL SIGN WESTERN PWO KAREN EU", 31935 direction="l", 31936 indic="d", 31937 indicmark="r", 31938 linebreak="sa", 31939 unicodeslot=0x1067, 31940 }, 31941 [0x1068]={ 31942 category="mc", 31943 description="MYANMAR VOWEL SIGN WESTERN PWO KAREN UE", 31944 direction="l", 31945 indic="d", 31946 indicmark="r", 31947 linebreak="sa", 31948 unicodeslot=0x1068, 31949 }, 31950 [0x1069]={ 31951 category="mc", 31952 description="MYANMAR SIGN WESTERN PWO KAREN TONE-1", 31953 direction="l", 31954 indic="s", 31955 indicmark="r", 31956 linebreak="sa", 31957 unicodeslot=0x1069, 31958 }, 31959 [0x106A]={ 31960 category="mc", 31961 description="MYANMAR SIGN WESTERN PWO KAREN TONE-2", 31962 direction="l", 31963 indic="s", 31964 indicmark="r", 31965 linebreak="sa", 31966 unicodeslot=0x106A, 31967 }, 31968 [0x106B]={ 31969 category="mc", 31970 description="MYANMAR SIGN WESTERN PWO KAREN TONE-3", 31971 direction="l", 31972 indic="s", 31973 indicmark="r", 31974 linebreak="sa", 31975 unicodeslot=0x106B, 31976 }, 31977 [0x106C]={ 31978 category="mc", 31979 description="MYANMAR SIGN WESTERN PWO KAREN TONE-4", 31980 direction="l", 31981 indic="s", 31982 indicmark="r", 31983 linebreak="sa", 31984 unicodeslot=0x106C, 31985 }, 31986 [0x106D]={ 31987 category="mc", 31988 description="MYANMAR SIGN WESTERN PWO KAREN TONE-5", 31989 direction="l", 31990 indic="s", 31991 indicmark="r", 31992 linebreak="sa", 31993 unicodeslot=0x106D, 31994 }, 31995 [0x106E]={ 31996 category="lo", 31997 description="MYANMAR LETTER EASTERN PWO KAREN NNA", 31998 direction="l", 31999 indic="c", 32000 linebreak="sa", 32001 unicodeslot=0x106E, 32002 }, 32003 [0x106F]={ 32004 category="lo", 32005 description="MYANMAR LETTER EASTERN PWO KAREN YWA", 32006 direction="l", 32007 indic="c", 32008 linebreak="sa", 32009 unicodeslot=0x106F, 32010 }, 32011 [0x1070]={ 32012 category="lo", 32013 description="MYANMAR LETTER EASTERN PWO KAREN GHWA", 32014 direction="l", 32015 indic="c", 32016 linebreak="sa", 32017 unicodeslot=0x1070, 32018 }, 32019 [0x1071]={ 32020 category="mn", 32021 description="MYANMAR VOWEL SIGN GEBA KAREN I", 32022 direction="nsm", 32023 indic="d", 32024 indicmark="t", 32025 linebreak="sa", 32026 unicodeslot=0x1071, 32027 }, 32028 [0x1072]={ 32029 category="mn", 32030 description="MYANMAR VOWEL SIGN KAYAH OE", 32031 direction="nsm", 32032 indic="d", 32033 indicmark="t", 32034 linebreak="sa", 32035 unicodeslot=0x1072, 32036 }, 32037 [0x1073]={ 32038 category="mn", 32039 description="MYANMAR VOWEL SIGN KAYAH U", 32040 direction="nsm", 32041 indic="d", 32042 indicmark="t", 32043 linebreak="sa", 32044 unicodeslot=0x1073, 32045 }, 32046 [0x1074]={ 32047 category="mn", 32048 description="MYANMAR VOWEL SIGN KAYAH EE", 32049 direction="nsm", 32050 indic="d", 32051 indicmark="t", 32052 linebreak="sa", 32053 unicodeslot=0x1074, 32054 }, 32055 [0x1075]={ 32056 category="lo", 32057 description="MYANMAR LETTER SHAN KA", 32058 direction="l", 32059 indic="c", 32060 linebreak="sa", 32061 unicodeslot=0x1075, 32062 variants=variants_dotted, 32063 }, 32064 [0x1076]={ 32065 category="lo", 32066 description="MYANMAR LETTER SHAN KHA", 32067 direction="l", 32068 indic="c", 32069 linebreak="sa", 32070 unicodeslot=0x1076, 32071 }, 32072 [0x1077]={ 32073 category="lo", 32074 description="MYANMAR LETTER SHAN GA", 32075 direction="l", 32076 indic="c", 32077 linebreak="sa", 32078 unicodeslot=0x1077, 32079 }, 32080 [0x1078]={ 32081 category="lo", 32082 description="MYANMAR LETTER SHAN CA", 32083 direction="l", 32084 indic="c", 32085 linebreak="sa", 32086 unicodeslot=0x1078, 32087 variants=variants_dotted, 32088 }, 32089 [0x1079]={ 32090 category="lo", 32091 description="MYANMAR LETTER SHAN ZA", 32092 direction="l", 32093 indic="c", 32094 linebreak="sa", 32095 unicodeslot=0x1079, 32096 }, 32097 [0x107A]={ 32098 category="lo", 32099 description="MYANMAR LETTER SHAN NYA", 32100 direction="l", 32101 indic="c", 32102 linebreak="sa", 32103 unicodeslot=0x107A, 32104 variants=variants_dotted, 32105 }, 32106 [0x107B]={ 32107 category="lo", 32108 description="MYANMAR LETTER SHAN DA", 32109 direction="l", 32110 indic="c", 32111 linebreak="sa", 32112 unicodeslot=0x107B, 32113 }, 32114 [0x107C]={ 32115 category="lo", 32116 description="MYANMAR LETTER SHAN NA", 32117 direction="l", 32118 indic="c", 32119 linebreak="sa", 32120 unicodeslot=0x107C, 32121 }, 32122 [0x107D]={ 32123 category="lo", 32124 description="MYANMAR LETTER SHAN PHA", 32125 direction="l", 32126 indic="c", 32127 linebreak="sa", 32128 unicodeslot=0x107D, 32129 }, 32130 [0x107E]={ 32131 category="lo", 32132 description="MYANMAR LETTER SHAN FA", 32133 direction="l", 32134 indic="c", 32135 linebreak="sa", 32136 unicodeslot=0x107E, 32137 }, 32138 [0x107F]={ 32139 category="lo", 32140 description="MYANMAR LETTER SHAN BA", 32141 direction="l", 32142 indic="c", 32143 linebreak="sa", 32144 unicodeslot=0x107F, 32145 }, 32146 [0x1080]={ 32147 category="lo", 32148 description="MYANMAR LETTER SHAN THA", 32149 direction="l", 32150 indic="c", 32151 linebreak="sa", 32152 unicodeslot=0x1080, 32153 variants=variants_dotted, 32154 }, 32155 [0x1081]={ 32156 category="lo", 32157 description="MYANMAR LETTER SHAN HA", 32158 direction="l", 32159 indic="c", 32160 linebreak="sa", 32161 unicodeslot=0x1081, 32162 }, 32163 [0x1082]={ 32164 category="mn", 32165 description="MYANMAR CONSONANT SIGN SHAN MEDIAL WA", 32166 direction="nsm", 32167 indic="c", 32168 indicmark="b", 32169 linebreak="sa", 32170 unicodeslot=0x1082, 32171 }, 32172 [0x1083]={ 32173 category="mc", 32174 description="MYANMAR VOWEL SIGN SHAN AA", 32175 direction="l", 32176 indic="d", 32177 indicmark="r", 32178 linebreak="sa", 32179 unicodeslot=0x1083, 32180 }, 32181 [0x1084]={ 32182 category="mc", 32183 description="MYANMAR VOWEL SIGN SHAN E", 32184 direction="l", 32185 indic="d", 32186 indicmark="l", 32187 linebreak="sa", 32188 unicodeslot=0x1084, 32189 }, 32190 [0x1085]={ 32191 category="mn", 32192 description="MYANMAR VOWEL SIGN SHAN E ABOVE", 32193 direction="nsm", 32194 indic="d", 32195 indicmark="t", 32196 linebreak="sa", 32197 unicodeslot=0x1085, 32198 }, 32199 [0x1086]={ 32200 category="mn", 32201 description="MYANMAR VOWEL SIGN SHAN FINAL Y", 32202 direction="nsm", 32203 indic="d", 32204 indicmark="t", 32205 linebreak="sa", 32206 unicodeslot=0x1086, 32207 }, 32208 [0x1087]={ 32209 category="mc", 32210 description="MYANMAR SIGN SHAN TONE-2", 32211 direction="l", 32212 indic="s", 32213 indicmark="r", 32214 linebreak="sa", 32215 unicodeslot=0x1087, 32216 }, 32217 [0x1088]={ 32218 category="mc", 32219 description="MYANMAR SIGN SHAN TONE-3", 32220 direction="l", 32221 indic="s", 32222 indicmark="r", 32223 linebreak="sa", 32224 unicodeslot=0x1088, 32225 }, 32226 [0x1089]={ 32227 category="mc", 32228 description="MYANMAR SIGN SHAN TONE-5", 32229 direction="l", 32230 indic="s", 32231 indicmark="r", 32232 linebreak="sa", 32233 unicodeslot=0x1089, 32234 }, 32235 [0x108A]={ 32236 category="mc", 32237 description="MYANMAR SIGN SHAN TONE-6", 32238 direction="l", 32239 indic="s", 32240 indicmark="r", 32241 linebreak="sa", 32242 unicodeslot=0x108A, 32243 }, 32244 [0x108B]={ 32245 category="mc", 32246 description="MYANMAR SIGN SHAN COUNCIL TONE-2", 32247 direction="l", 32248 indic="s", 32249 indicmark="r", 32250 linebreak="sa", 32251 unicodeslot=0x108B, 32252 }, 32253 [0x108C]={ 32254 category="mc", 32255 description="MYANMAR SIGN SHAN COUNCIL TONE-3", 32256 direction="l", 32257 indic="s", 32258 indicmark="r", 32259 linebreak="sa", 32260 unicodeslot=0x108C, 32261 }, 32262 [0x108D]={ 32263 category="mn", 32264 combining=0xDC, 32265 description="MYANMAR SIGN SHAN COUNCIL EMPHATIC TONE", 32266 direction="nsm", 32267 indic="s", 32268 indicmark="b", 32269 linebreak="sa", 32270 unicodeslot=0x108D, 32271 }, 32272 [0x108E]={ 32273 category="lo", 32274 description="MYANMAR LETTER RUMAI PALAUNG FA", 32275 direction="l", 32276 indic="c", 32277 linebreak="sa", 32278 unicodeslot=0x108E, 32279 }, 32280 [0x108F]={ 32281 category="mc", 32282 description="MYANMAR SIGN RUMAI PALAUNG TONE-5", 32283 direction="l", 32284 indic="s", 32285 indicmark="r", 32286 linebreak="sa", 32287 unicodeslot=0x108F, 32288 }, 32289 [0x1090]={ 32290 category="nd", 32291 description="MYANMAR SHAN DIGIT ZERO", 32292 direction="l", 32293 indic="o", 32294 linebreak="nu", 32295 unicodeslot=0x1090, 32296 }, 32297 [0x1091]={ 32298 category="nd", 32299 description="MYANMAR SHAN DIGIT ONE", 32300 direction="l", 32301 indic="o", 32302 linebreak="nu", 32303 unicodeslot=0x1091, 32304 }, 32305 [0x1092]={ 32306 category="nd", 32307 description="MYANMAR SHAN DIGIT TWO", 32308 direction="l", 32309 indic="o", 32310 linebreak="nu", 32311 unicodeslot=0x1092, 32312 }, 32313 [0x1093]={ 32314 category="nd", 32315 description="MYANMAR SHAN DIGIT THREE", 32316 direction="l", 32317 indic="o", 32318 linebreak="nu", 32319 unicodeslot=0x1093, 32320 }, 32321 [0x1094]={ 32322 category="nd", 32323 description="MYANMAR SHAN DIGIT FOUR", 32324 direction="l", 32325 indic="o", 32326 linebreak="nu", 32327 unicodeslot=0x1094, 32328 }, 32329 [0x1095]={ 32330 category="nd", 32331 description="MYANMAR SHAN DIGIT FIVE", 32332 direction="l", 32333 indic="o", 32334 linebreak="nu", 32335 unicodeslot=0x1095, 32336 }, 32337 [0x1096]={ 32338 category="nd", 32339 description="MYANMAR SHAN DIGIT SIX", 32340 direction="l", 32341 indic="o", 32342 linebreak="nu", 32343 unicodeslot=0x1096, 32344 }, 32345 [0x1097]={ 32346 category="nd", 32347 description="MYANMAR SHAN DIGIT SEVEN", 32348 direction="l", 32349 indic="o", 32350 linebreak="nu", 32351 unicodeslot=0x1097, 32352 }, 32353 [0x1098]={ 32354 category="nd", 32355 description="MYANMAR SHAN DIGIT EIGHT", 32356 direction="l", 32357 indic="o", 32358 linebreak="nu", 32359 unicodeslot=0x1098, 32360 }, 32361 [0x1099]={ 32362 category="nd", 32363 description="MYANMAR SHAN DIGIT NINE", 32364 direction="l", 32365 indic="o", 32366 linebreak="nu", 32367 unicodeslot=0x1099, 32368 }, 32369 [0x109A]={ 32370 category="mc", 32371 description="MYANMAR SIGN KHAMTI TONE-1", 32372 direction="l", 32373 indic="s", 32374 indicmark="r", 32375 linebreak="sa", 32376 unicodeslot=0x109A, 32377 }, 32378 [0x109B]={ 32379 category="mc", 32380 description="MYANMAR SIGN KHAMTI TONE-3", 32381 direction="l", 32382 indic="s", 32383 indicmark="r", 32384 linebreak="sa", 32385 unicodeslot=0x109B, 32386 }, 32387 [0x109C]={ 32388 category="mc", 32389 description="MYANMAR VOWEL SIGN AITON A", 32390 direction="l", 32391 indic="d", 32392 indicmark="r", 32393 linebreak="sa", 32394 unicodeslot=0x109C, 32395 }, 32396 [0x109D]={ 32397 category="mn", 32398 description="MYANMAR VOWEL SIGN AITON AI", 32399 direction="nsm", 32400 indic="d", 32401 indicmark="t", 32402 linebreak="sa", 32403 unicodeslot=0x109D, 32404 }, 32405 [0x109E]={ 32406 category="so", 32407 description="MYANMAR SYMBOL SHAN ONE", 32408 direction="l", 32409 indic="o", 32410 linebreak="sa", 32411 unicodeslot=0x109E, 32412 }, 32413 [0x109F]={ 32414 category="so", 32415 description="MYANMAR SYMBOL SHAN EXCLAMATION", 32416 direction="l", 32417 indic="o", 32418 linebreak="sa", 32419 unicodeslot=0x109F, 32420 }, 32421 [0x10A0]={ 32422 category="lu", 32423 description="GEORGIAN CAPITAL LETTER AN", 32424 direction="l", 32425 lccode=0x2D00, 32426 linebreak="al", 32427 unicodeslot=0x10A0, 32428 }, 32429 [0x10A1]={ 32430 category="lu", 32431 description="GEORGIAN CAPITAL LETTER BAN", 32432 direction="l", 32433 lccode=0x2D01, 32434 linebreak="al", 32435 unicodeslot=0x10A1, 32436 }, 32437 [0x10A2]={ 32438 category="lu", 32439 description="GEORGIAN CAPITAL LETTER GAN", 32440 direction="l", 32441 lccode=0x2D02, 32442 linebreak="al", 32443 unicodeslot=0x10A2, 32444 }, 32445 [0x10A3]={ 32446 category="lu", 32447 description="GEORGIAN CAPITAL LETTER DON", 32448 direction="l", 32449 lccode=0x2D03, 32450 linebreak="al", 32451 unicodeslot=0x10A3, 32452 }, 32453 [0x10A4]={ 32454 category="lu", 32455 description="GEORGIAN CAPITAL LETTER EN", 32456 direction="l", 32457 lccode=0x2D04, 32458 linebreak="al", 32459 unicodeslot=0x10A4, 32460 }, 32461 [0x10A5]={ 32462 category="lu", 32463 description="GEORGIAN CAPITAL LETTER VIN", 32464 direction="l", 32465 lccode=0x2D05, 32466 linebreak="al", 32467 unicodeslot=0x10A5, 32468 }, 32469 [0x10A6]={ 32470 category="lu", 32471 description="GEORGIAN CAPITAL LETTER ZEN", 32472 direction="l", 32473 lccode=0x2D06, 32474 linebreak="al", 32475 unicodeslot=0x10A6, 32476 }, 32477 [0x10A7]={ 32478 category="lu", 32479 description="GEORGIAN CAPITAL LETTER TAN", 32480 direction="l", 32481 lccode=0x2D07, 32482 linebreak="al", 32483 unicodeslot=0x10A7, 32484 }, 32485 [0x10A8]={ 32486 category="lu", 32487 description="GEORGIAN CAPITAL LETTER IN", 32488 direction="l", 32489 lccode=0x2D08, 32490 linebreak="al", 32491 unicodeslot=0x10A8, 32492 }, 32493 [0x10A9]={ 32494 category="lu", 32495 description="GEORGIAN CAPITAL LETTER KAN", 32496 direction="l", 32497 lccode=0x2D09, 32498 linebreak="al", 32499 unicodeslot=0x10A9, 32500 }, 32501 [0x10AA]={ 32502 category="lu", 32503 description="GEORGIAN CAPITAL LETTER LAS", 32504 direction="l", 32505 lccode=0x2D0A, 32506 linebreak="al", 32507 unicodeslot=0x10AA, 32508 }, 32509 [0x10AB]={ 32510 category="lu", 32511 description="GEORGIAN CAPITAL LETTER MAN", 32512 direction="l", 32513 lccode=0x2D0B, 32514 linebreak="al", 32515 unicodeslot=0x10AB, 32516 }, 32517 [0x10AC]={ 32518 category="lu", 32519 description="GEORGIAN CAPITAL LETTER NAR", 32520 direction="l", 32521 lccode=0x2D0C, 32522 linebreak="al", 32523 unicodeslot=0x10AC, 32524 }, 32525 [0x10AD]={ 32526 category="lu", 32527 description="GEORGIAN CAPITAL LETTER ON", 32528 direction="l", 32529 lccode=0x2D0D, 32530 linebreak="al", 32531 unicodeslot=0x10AD, 32532 }, 32533 [0x10AE]={ 32534 category="lu", 32535 description="GEORGIAN CAPITAL LETTER PAR", 32536 direction="l", 32537 lccode=0x2D0E, 32538 linebreak="al", 32539 unicodeslot=0x10AE, 32540 }, 32541 [0x10AF]={ 32542 category="lu", 32543 description="GEORGIAN CAPITAL LETTER ZHAR", 32544 direction="l", 32545 lccode=0x2D0F, 32546 linebreak="al", 32547 unicodeslot=0x10AF, 32548 }, 32549 [0x10B0]={ 32550 category="lu", 32551 description="GEORGIAN CAPITAL LETTER RAE", 32552 direction="l", 32553 lccode=0x2D10, 32554 linebreak="al", 32555 unicodeslot=0x10B0, 32556 }, 32557 [0x10B1]={ 32558 category="lu", 32559 description="GEORGIAN CAPITAL LETTER SAN", 32560 direction="l", 32561 lccode=0x2D11, 32562 linebreak="al", 32563 unicodeslot=0x10B1, 32564 }, 32565 [0x10B2]={ 32566 category="lu", 32567 description="GEORGIAN CAPITAL LETTER TAR", 32568 direction="l", 32569 lccode=0x2D12, 32570 linebreak="al", 32571 unicodeslot=0x10B2, 32572 }, 32573 [0x10B3]={ 32574 category="lu", 32575 description="GEORGIAN CAPITAL LETTER UN", 32576 direction="l", 32577 lccode=0x2D13, 32578 linebreak="al", 32579 unicodeslot=0x10B3, 32580 }, 32581 [0x10B4]={ 32582 category="lu", 32583 description="GEORGIAN CAPITAL LETTER PHAR", 32584 direction="l", 32585 lccode=0x2D14, 32586 linebreak="al", 32587 unicodeslot=0x10B4, 32588 }, 32589 [0x10B5]={ 32590 category="lu", 32591 description="GEORGIAN CAPITAL LETTER KHAR", 32592 direction="l", 32593 lccode=0x2D15, 32594 linebreak="al", 32595 unicodeslot=0x10B5, 32596 }, 32597 [0x10B6]={ 32598 category="lu", 32599 description="GEORGIAN CAPITAL LETTER GHAN", 32600 direction="l", 32601 lccode=0x2D16, 32602 linebreak="al", 32603 unicodeslot=0x10B6, 32604 }, 32605 [0x10B7]={ 32606 category="lu", 32607 description="GEORGIAN CAPITAL LETTER QAR", 32608 direction="l", 32609 lccode=0x2D17, 32610 linebreak="al", 32611 unicodeslot=0x10B7, 32612 }, 32613 [0x10B8]={ 32614 category="lu", 32615 description="GEORGIAN CAPITAL LETTER SHIN", 32616 direction="l", 32617 lccode=0x2D18, 32618 linebreak="al", 32619 unicodeslot=0x10B8, 32620 }, 32621 [0x10B9]={ 32622 category="lu", 32623 description="GEORGIAN CAPITAL LETTER CHIN", 32624 direction="l", 32625 lccode=0x2D19, 32626 linebreak="al", 32627 unicodeslot=0x10B9, 32628 }, 32629 [0x10BA]={ 32630 category="lu", 32631 description="GEORGIAN CAPITAL LETTER CAN", 32632 direction="l", 32633 lccode=0x2D1A, 32634 linebreak="al", 32635 unicodeslot=0x10BA, 32636 }, 32637 [0x10BB]={ 32638 category="lu", 32639 description="GEORGIAN CAPITAL LETTER JIL", 32640 direction="l", 32641 lccode=0x2D1B, 32642 linebreak="al", 32643 unicodeslot=0x10BB, 32644 }, 32645 [0x10BC]={ 32646 category="lu", 32647 description="GEORGIAN CAPITAL LETTER CIL", 32648 direction="l", 32649 lccode=0x2D1C, 32650 linebreak="al", 32651 unicodeslot=0x10BC, 32652 }, 32653 [0x10BD]={ 32654 category="lu", 32655 description="GEORGIAN CAPITAL LETTER CHAR", 32656 direction="l", 32657 lccode=0x2D1D, 32658 linebreak="al", 32659 unicodeslot=0x10BD, 32660 }, 32661 [0x10BE]={ 32662 category="lu", 32663 description="GEORGIAN CAPITAL LETTER XAN", 32664 direction="l", 32665 lccode=0x2D1E, 32666 linebreak="al", 32667 unicodeslot=0x10BE, 32668 }, 32669 [0x10BF]={ 32670 category="lu", 32671 description="GEORGIAN CAPITAL LETTER JHAN", 32672 direction="l", 32673 lccode=0x2D1F, 32674 linebreak="al", 32675 unicodeslot=0x10BF, 32676 }, 32677 [0x10C0]={ 32678 category="lu", 32679 description="GEORGIAN CAPITAL LETTER HAE", 32680 direction="l", 32681 lccode=0x2D20, 32682 linebreak="al", 32683 unicodeslot=0x10C0, 32684 }, 32685 [0x10C1]={ 32686 category="lu", 32687 description="GEORGIAN CAPITAL LETTER HE", 32688 direction="l", 32689 lccode=0x2D21, 32690 linebreak="al", 32691 unicodeslot=0x10C1, 32692 }, 32693 [0x10C2]={ 32694 category="lu", 32695 description="GEORGIAN CAPITAL LETTER HIE", 32696 direction="l", 32697 lccode=0x2D22, 32698 linebreak="al", 32699 unicodeslot=0x10C2, 32700 }, 32701 [0x10C3]={ 32702 category="lu", 32703 description="GEORGIAN CAPITAL LETTER WE", 32704 direction="l", 32705 lccode=0x2D23, 32706 linebreak="al", 32707 unicodeslot=0x10C3, 32708 }, 32709 [0x10C4]={ 32710 category="lu", 32711 description="GEORGIAN CAPITAL LETTER HAR", 32712 direction="l", 32713 lccode=0x2D24, 32714 linebreak="al", 32715 unicodeslot=0x10C4, 32716 }, 32717 [0x10C5]={ 32718 category="lu", 32719 description="GEORGIAN CAPITAL LETTER HOE", 32720 direction="l", 32721 lccode=0x2D25, 32722 linebreak="al", 32723 unicodeslot=0x10C5, 32724 }, 32725 [0x10C7]={ 32726 category="lu", 32727 description="GEORGIAN CAPITAL LETTER YN", 32728 direction="l", 32729 lccode=0x2D27, 32730 linebreak="al", 32731 unicodeslot=0x10C7, 32732 }, 32733 [0x10CD]={ 32734 category="lu", 32735 description="GEORGIAN CAPITAL LETTER AEN", 32736 direction="l", 32737 lccode=0x2D2D, 32738 linebreak="al", 32739 unicodeslot=0x10CD, 32740 }, 32741 [0x10D0]={ 32742 category="lo", 32743 description="GEORGIAN LETTER AN", 32744 direction="l", 32745 linebreak="al", 32746 unicodeslot=0x10D0, 32747 }, 32748 [0x10D1]={ 32749 category="lo", 32750 description="GEORGIAN LETTER BAN", 32751 direction="l", 32752 linebreak="al", 32753 unicodeslot=0x10D1, 32754 }, 32755 [0x10D2]={ 32756 category="lo", 32757 description="GEORGIAN LETTER GAN", 32758 direction="l", 32759 linebreak="al", 32760 unicodeslot=0x10D2, 32761 }, 32762 [0x10D3]={ 32763 category="lo", 32764 description="GEORGIAN LETTER DON", 32765 direction="l", 32766 linebreak="al", 32767 unicodeslot=0x10D3, 32768 }, 32769 [0x10D4]={ 32770 category="lo", 32771 description="GEORGIAN LETTER EN", 32772 direction="l", 32773 linebreak="al", 32774 unicodeslot=0x10D4, 32775 }, 32776 [0x10D5]={ 32777 category="lo", 32778 description="GEORGIAN LETTER VIN", 32779 direction="l", 32780 linebreak="al", 32781 unicodeslot=0x10D5, 32782 }, 32783 [0x10D6]={ 32784 category="lo", 32785 description="GEORGIAN LETTER ZEN", 32786 direction="l", 32787 linebreak="al", 32788 unicodeslot=0x10D6, 32789 }, 32790 [0x10D7]={ 32791 category="lo", 32792 description="GEORGIAN LETTER TAN", 32793 direction="l", 32794 linebreak="al", 32795 unicodeslot=0x10D7, 32796 }, 32797 [0x10D8]={ 32798 category="lo", 32799 description="GEORGIAN LETTER IN", 32800 direction="l", 32801 linebreak="al", 32802 unicodeslot=0x10D8, 32803 }, 32804 [0x10D9]={ 32805 category="lo", 32806 description="GEORGIAN LETTER KAN", 32807 direction="l", 32808 linebreak="al", 32809 unicodeslot=0x10D9, 32810 }, 32811 [0x10DA]={ 32812 category="lo", 32813 description="GEORGIAN LETTER LAS", 32814 direction="l", 32815 linebreak="al", 32816 unicodeslot=0x10DA, 32817 }, 32818 [0x10DB]={ 32819 category="lo", 32820 description="GEORGIAN LETTER MAN", 32821 direction="l", 32822 linebreak="al", 32823 unicodeslot=0x10DB, 32824 }, 32825 [0x10DC]={ 32826 category="lo", 32827 description="GEORGIAN LETTER NAR", 32828 direction="l", 32829 linebreak="al", 32830 unicodeslot=0x10DC, 32831 }, 32832 [0x10DD]={ 32833 category="lo", 32834 description="GEORGIAN LETTER ON", 32835 direction="l", 32836 linebreak="al", 32837 unicodeslot=0x10DD, 32838 }, 32839 [0x10DE]={ 32840 category="lo", 32841 description="GEORGIAN LETTER PAR", 32842 direction="l", 32843 linebreak="al", 32844 unicodeslot=0x10DE, 32845 }, 32846 [0x10DF]={ 32847 category="lo", 32848 description="GEORGIAN LETTER ZHAR", 32849 direction="l", 32850 linebreak="al", 32851 unicodeslot=0x10DF, 32852 }, 32853 [0x10E0]={ 32854 category="lo", 32855 description="GEORGIAN LETTER RAE", 32856 direction="l", 32857 linebreak="al", 32858 unicodeslot=0x10E0, 32859 }, 32860 [0x10E1]={ 32861 category="lo", 32862 description="GEORGIAN LETTER SAN", 32863 direction="l", 32864 linebreak="al", 32865 unicodeslot=0x10E1, 32866 }, 32867 [0x10E2]={ 32868 category="lo", 32869 description="GEORGIAN LETTER TAR", 32870 direction="l", 32871 linebreak="al", 32872 unicodeslot=0x10E2, 32873 }, 32874 [0x10E3]={ 32875 category="lo", 32876 description="GEORGIAN LETTER UN", 32877 direction="l", 32878 linebreak="al", 32879 unicodeslot=0x10E3, 32880 }, 32881 [0x10E4]={ 32882 category="lo", 32883 description="GEORGIAN LETTER PHAR", 32884 direction="l", 32885 linebreak="al", 32886 unicodeslot=0x10E4, 32887 }, 32888 [0x10E5]={ 32889 category="lo", 32890 description="GEORGIAN LETTER KHAR", 32891 direction="l", 32892 linebreak="al", 32893 unicodeslot=0x10E5, 32894 }, 32895 [0x10E6]={ 32896 category="lo", 32897 description="GEORGIAN LETTER GHAN", 32898 direction="l", 32899 linebreak="al", 32900 unicodeslot=0x10E6, 32901 }, 32902 [0x10E7]={ 32903 category="lo", 32904 description="GEORGIAN LETTER QAR", 32905 direction="l", 32906 linebreak="al", 32907 unicodeslot=0x10E7, 32908 }, 32909 [0x10E8]={ 32910 category="lo", 32911 description="GEORGIAN LETTER SHIN", 32912 direction="l", 32913 linebreak="al", 32914 unicodeslot=0x10E8, 32915 }, 32916 [0x10E9]={ 32917 category="lo", 32918 description="GEORGIAN LETTER CHIN", 32919 direction="l", 32920 linebreak="al", 32921 unicodeslot=0x10E9, 32922 }, 32923 [0x10EA]={ 32924 category="lo", 32925 description="GEORGIAN LETTER CAN", 32926 direction="l", 32927 linebreak="al", 32928 unicodeslot=0x10EA, 32929 }, 32930 [0x10EB]={ 32931 category="lo", 32932 description="GEORGIAN LETTER JIL", 32933 direction="l", 32934 linebreak="al", 32935 unicodeslot=0x10EB, 32936 }, 32937 [0x10EC]={ 32938 category="lo", 32939 description="GEORGIAN LETTER CIL", 32940 direction="l", 32941 linebreak="al", 32942 unicodeslot=0x10EC, 32943 }, 32944 [0x10ED]={ 32945 category="lo", 32946 description="GEORGIAN LETTER CHAR", 32947 direction="l", 32948 linebreak="al", 32949 unicodeslot=0x10ED, 32950 }, 32951 [0x10EE]={ 32952 category="lo", 32953 description="GEORGIAN LETTER XAN", 32954 direction="l", 32955 linebreak="al", 32956 unicodeslot=0x10EE, 32957 }, 32958 [0x10EF]={ 32959 category="lo", 32960 description="GEORGIAN LETTER JHAN", 32961 direction="l", 32962 linebreak="al", 32963 unicodeslot=0x10EF, 32964 }, 32965 [0x10F0]={ 32966 category="lo", 32967 description="GEORGIAN LETTER HAE", 32968 direction="l", 32969 linebreak="al", 32970 unicodeslot=0x10F0, 32971 }, 32972 [0x10F1]={ 32973 category="lo", 32974 description="GEORGIAN LETTER HE", 32975 direction="l", 32976 linebreak="al", 32977 unicodeslot=0x10F1, 32978 }, 32979 [0x10F2]={ 32980 category="lo", 32981 description="GEORGIAN LETTER HIE", 32982 direction="l", 32983 linebreak="al", 32984 unicodeslot=0x10F2, 32985 }, 32986 [0x10F3]={ 32987 category="lo", 32988 description="GEORGIAN LETTER WE", 32989 direction="l", 32990 linebreak="al", 32991 unicodeslot=0x10F3, 32992 }, 32993 [0x10F4]={ 32994 category="lo", 32995 description="GEORGIAN LETTER HAR", 32996 direction="l", 32997 linebreak="al", 32998 unicodeslot=0x10F4, 32999 }, 33000 [0x10F5]={ 33001 category="lo", 33002 description="GEORGIAN LETTER HOE", 33003 direction="l", 33004 linebreak="al", 33005 unicodeslot=0x10F5, 33006 }, 33007 [0x10F6]={ 33008 category="lo", 33009 description="GEORGIAN LETTER FI", 33010 direction="l", 33011 linebreak="al", 33012 unicodeslot=0x10F6, 33013 }, 33014 [0x10F7]={ 33015 category="lo", 33016 description="GEORGIAN LETTER YN", 33017 direction="l", 33018 linebreak="al", 33019 unicodeslot=0x10F7, 33020 }, 33021 [0x10F8]={ 33022 category="lo", 33023 description="GEORGIAN LETTER ELIFI", 33024 direction="l", 33025 linebreak="al", 33026 unicodeslot=0x10F8, 33027 }, 33028 [0x10F9]={ 33029 category="lo", 33030 description="GEORGIAN LETTER TURNED GAN", 33031 direction="l", 33032 linebreak="al", 33033 unicodeslot=0x10F9, 33034 }, 33035 [0x10FA]={ 33036 category="lo", 33037 description="GEORGIAN LETTER AIN", 33038 direction="l", 33039 linebreak="al", 33040 unicodeslot=0x10FA, 33041 }, 33042 [0x10FB]={ 33043 category="po", 33044 description="GEORGIAN PARAGRAPH SEPARATOR", 33045 direction="l", 33046 linebreak="al", 33047 unicodeslot=0x10FB, 33048 }, 33049 [0x10FC]={ 33050 category="lm", 33051 description="MODIFIER LETTER GEORGIAN NAR", 33052 direction="l", 33053 linebreak="al", 33054 specials={ "super", 0x10DC }, 33055 unicodeslot=0x10FC, 33056 }, 33057 [0x10FD]={ 33058 category="lo", 33059 description="GEORGIAN LETTER AEN", 33060 direction="l", 33061 linebreak="al", 33062 unicodeslot=0x10FD, 33063 }, 33064 [0x10FE]={ 33065 category="lo", 33066 description="GEORGIAN LETTER HARD SIGN", 33067 direction="l", 33068 linebreak="al", 33069 unicodeslot=0x10FE, 33070 }, 33071 [0x10FF]={ 33072 category="lo", 33073 description="GEORGIAN LETTER LABIAL SIGN", 33074 direction="l", 33075 linebreak="al", 33076 unicodeslot=0x10FF, 33077 }, 33078 [0x1100]={ 33079 category="lo", 33080 cjkwd="w", 33081 description="HANGUL CHOSEONG KIYEOK", 33082 direction="l", 33083 linebreak="jl", 33084 unicodeslot=0x1100, 33085 }, 33086 [0x1101]={ 33087 category="lo", 33088 cjkwd="w", 33089 description="HANGUL CHOSEONG SSANGKIYEOK", 33090 direction="l", 33091 linebreak="jl", 33092 unicodeslot=0x1101, 33093 }, 33094 [0x1102]={ 33095 category="lo", 33096 cjkwd="w", 33097 description="HANGUL CHOSEONG NIEUN", 33098 direction="l", 33099 linebreak="jl", 33100 unicodeslot=0x1102, 33101 }, 33102 [0x1103]={ 33103 category="lo", 33104 cjkwd="w", 33105 description="HANGUL CHOSEONG TIKEUT", 33106 direction="l", 33107 linebreak="jl", 33108 unicodeslot=0x1103, 33109 }, 33110 [0x1104]={ 33111 category="lo", 33112 cjkwd="w", 33113 description="HANGUL CHOSEONG SSANGTIKEUT", 33114 direction="l", 33115 linebreak="jl", 33116 unicodeslot=0x1104, 33117 }, 33118 [0x1105]={ 33119 category="lo", 33120 cjkwd="w", 33121 description="HANGUL CHOSEONG RIEUL", 33122 direction="l", 33123 linebreak="jl", 33124 unicodeslot=0x1105, 33125 }, 33126 [0x1106]={ 33127 category="lo", 33128 cjkwd="w", 33129 description="HANGUL CHOSEONG MIEUM", 33130 direction="l", 33131 linebreak="jl", 33132 unicodeslot=0x1106, 33133 }, 33134 [0x1107]={ 33135 category="lo", 33136 cjkwd="w", 33137 description="HANGUL CHOSEONG PIEUP", 33138 direction="l", 33139 linebreak="jl", 33140 unicodeslot=0x1107, 33141 }, 33142 [0x1108]={ 33143 category="lo", 33144 cjkwd="w", 33145 description="HANGUL CHOSEONG SSANGPIEUP", 33146 direction="l", 33147 linebreak="jl", 33148 unicodeslot=0x1108, 33149 }, 33150 [0x1109]={ 33151 category="lo", 33152 cjkwd="w", 33153 description="HANGUL CHOSEONG SIOS", 33154 direction="l", 33155 linebreak="jl", 33156 unicodeslot=0x1109, 33157 }, 33158 [0x110A]={ 33159 category="lo", 33160 cjkwd="w", 33161 description="HANGUL CHOSEONG SSANGSIOS", 33162 direction="l", 33163 linebreak="jl", 33164 unicodeslot=0x110A, 33165 }, 33166 [0x110B]={ 33167 category="lo", 33168 cjkwd="w", 33169 description="HANGUL CHOSEONG IEUNG", 33170 direction="l", 33171 linebreak="jl", 33172 unicodeslot=0x110B, 33173 }, 33174 [0x110C]={ 33175 category="lo", 33176 cjkwd="w", 33177 description="HANGUL CHOSEONG CIEUC", 33178 direction="l", 33179 linebreak="jl", 33180 unicodeslot=0x110C, 33181 }, 33182 [0x110D]={ 33183 category="lo", 33184 cjkwd="w", 33185 description="HANGUL CHOSEONG SSANGCIEUC", 33186 direction="l", 33187 linebreak="jl", 33188 unicodeslot=0x110D, 33189 }, 33190 [0x110E]={ 33191 category="lo", 33192 cjkwd="w", 33193 description="HANGUL CHOSEONG CHIEUCH", 33194 direction="l", 33195 linebreak="jl", 33196 unicodeslot=0x110E, 33197 }, 33198 [0x110F]={ 33199 category="lo", 33200 cjkwd="w", 33201 description="HANGUL CHOSEONG KHIEUKH", 33202 direction="l", 33203 linebreak="jl", 33204 unicodeslot=0x110F, 33205 }, 33206 [0x1110]={ 33207 category="lo", 33208 cjkwd="w", 33209 description="HANGUL CHOSEONG THIEUTH", 33210 direction="l", 33211 linebreak="jl", 33212 unicodeslot=0x1110, 33213 }, 33214 [0x1111]={ 33215 category="lo", 33216 cjkwd="w", 33217 description="HANGUL CHOSEONG PHIEUPH", 33218 direction="l", 33219 linebreak="jl", 33220 unicodeslot=0x1111, 33221 }, 33222 [0x1112]={ 33223 category="lo", 33224 cjkwd="w", 33225 description="HANGUL CHOSEONG HIEUH", 33226 direction="l", 33227 linebreak="jl", 33228 unicodeslot=0x1112, 33229 }, 33230 [0x1113]={ 33231 category="lo", 33232 cjkwd="w", 33233 description="HANGUL CHOSEONG NIEUN-KIYEOK", 33234 direction="l", 33235 linebreak="jl", 33236 unicodeslot=0x1113, 33237 }, 33238 [0x1114]={ 33239 category="lo", 33240 cjkwd="w", 33241 description="HANGUL CHOSEONG SSANGNIEUN", 33242 direction="l", 33243 linebreak="jl", 33244 unicodeslot=0x1114, 33245 }, 33246 [0x1115]={ 33247 category="lo", 33248 cjkwd="w", 33249 description="HANGUL CHOSEONG NIEUN-TIKEUT", 33250 direction="l", 33251 linebreak="jl", 33252 unicodeslot=0x1115, 33253 }, 33254 [0x1116]={ 33255 category="lo", 33256 cjkwd="w", 33257 description="HANGUL CHOSEONG NIEUN-PIEUP", 33258 direction="l", 33259 linebreak="jl", 33260 unicodeslot=0x1116, 33261 }, 33262 [0x1117]={ 33263 category="lo", 33264 cjkwd="w", 33265 description="HANGUL CHOSEONG TIKEUT-KIYEOK", 33266 direction="l", 33267 linebreak="jl", 33268 unicodeslot=0x1117, 33269 }, 33270 [0x1118]={ 33271 category="lo", 33272 cjkwd="w", 33273 description="HANGUL CHOSEONG RIEUL-NIEUN", 33274 direction="l", 33275 linebreak="jl", 33276 unicodeslot=0x1118, 33277 }, 33278 [0x1119]={ 33279 category="lo", 33280 cjkwd="w", 33281 description="HANGUL CHOSEONG SSANGRIEUL", 33282 direction="l", 33283 linebreak="jl", 33284 unicodeslot=0x1119, 33285 }, 33286 [0x111A]={ 33287 category="lo", 33288 cjkwd="w", 33289 description="HANGUL CHOSEONG RIEUL-HIEUH", 33290 direction="l", 33291 linebreak="jl", 33292 unicodeslot=0x111A, 33293 }, 33294 [0x111B]={ 33295 category="lo", 33296 cjkwd="w", 33297 description="HANGUL CHOSEONG KAPYEOUNRIEUL", 33298 direction="l", 33299 linebreak="jl", 33300 unicodeslot=0x111B, 33301 }, 33302 [0x111C]={ 33303 category="lo", 33304 cjkwd="w", 33305 description="HANGUL CHOSEONG MIEUM-PIEUP", 33306 direction="l", 33307 linebreak="jl", 33308 unicodeslot=0x111C, 33309 }, 33310 [0x111D]={ 33311 category="lo", 33312 cjkwd="w", 33313 description="HANGUL CHOSEONG KAPYEOUNMIEUM", 33314 direction="l", 33315 linebreak="jl", 33316 unicodeslot=0x111D, 33317 }, 33318 [0x111E]={ 33319 category="lo", 33320 cjkwd="w", 33321 description="HANGUL CHOSEONG PIEUP-KIYEOK", 33322 direction="l", 33323 linebreak="jl", 33324 unicodeslot=0x111E, 33325 }, 33326 [0x111F]={ 33327 category="lo", 33328 cjkwd="w", 33329 description="HANGUL CHOSEONG PIEUP-NIEUN", 33330 direction="l", 33331 linebreak="jl", 33332 unicodeslot=0x111F, 33333 }, 33334 [0x1120]={ 33335 category="lo", 33336 cjkwd="w", 33337 description="HANGUL CHOSEONG PIEUP-TIKEUT", 33338 direction="l", 33339 linebreak="jl", 33340 unicodeslot=0x1120, 33341 }, 33342 [0x1121]={ 33343 category="lo", 33344 cjkwd="w", 33345 description="HANGUL CHOSEONG PIEUP-SIOS", 33346 direction="l", 33347 linebreak="jl", 33348 unicodeslot=0x1121, 33349 }, 33350 [0x1122]={ 33351 category="lo", 33352 cjkwd="w", 33353 description="HANGUL CHOSEONG PIEUP-SIOS-KIYEOK", 33354 direction="l", 33355 linebreak="jl", 33356 unicodeslot=0x1122, 33357 }, 33358 [0x1123]={ 33359 category="lo", 33360 cjkwd="w", 33361 description="HANGUL CHOSEONG PIEUP-SIOS-TIKEUT", 33362 direction="l", 33363 linebreak="jl", 33364 unicodeslot=0x1123, 33365 }, 33366 [0x1124]={ 33367 category="lo", 33368 cjkwd="w", 33369 description="HANGUL CHOSEONG PIEUP-SIOS-PIEUP", 33370 direction="l", 33371 linebreak="jl", 33372 unicodeslot=0x1124, 33373 }, 33374 [0x1125]={ 33375 category="lo", 33376 cjkwd="w", 33377 description="HANGUL CHOSEONG PIEUP-SSANGSIOS", 33378 direction="l", 33379 linebreak="jl", 33380 unicodeslot=0x1125, 33381 }, 33382 [0x1126]={ 33383 category="lo", 33384 cjkwd="w", 33385 description="HANGUL CHOSEONG PIEUP-SIOS-CIEUC", 33386 direction="l", 33387 linebreak="jl", 33388 unicodeslot=0x1126, 33389 }, 33390 [0x1127]={ 33391 category="lo", 33392 cjkwd="w", 33393 description="HANGUL CHOSEONG PIEUP-CIEUC", 33394 direction="l", 33395 linebreak="jl", 33396 unicodeslot=0x1127, 33397 }, 33398 [0x1128]={ 33399 category="lo", 33400 cjkwd="w", 33401 description="HANGUL CHOSEONG PIEUP-CHIEUCH", 33402 direction="l", 33403 linebreak="jl", 33404 unicodeslot=0x1128, 33405 }, 33406 [0x1129]={ 33407 category="lo", 33408 cjkwd="w", 33409 description="HANGUL CHOSEONG PIEUP-THIEUTH", 33410 direction="l", 33411 linebreak="jl", 33412 unicodeslot=0x1129, 33413 }, 33414 [0x112A]={ 33415 category="lo", 33416 cjkwd="w", 33417 description="HANGUL CHOSEONG PIEUP-PHIEUPH", 33418 direction="l", 33419 linebreak="jl", 33420 unicodeslot=0x112A, 33421 }, 33422 [0x112B]={ 33423 category="lo", 33424 cjkwd="w", 33425 description="HANGUL CHOSEONG KAPYEOUNPIEUP", 33426 direction="l", 33427 linebreak="jl", 33428 unicodeslot=0x112B, 33429 }, 33430 [0x112C]={ 33431 category="lo", 33432 cjkwd="w", 33433 description="HANGUL CHOSEONG KAPYEOUNSSANGPIEUP", 33434 direction="l", 33435 linebreak="jl", 33436 unicodeslot=0x112C, 33437 }, 33438 [0x112D]={ 33439 category="lo", 33440 cjkwd="w", 33441 description="HANGUL CHOSEONG SIOS-KIYEOK", 33442 direction="l", 33443 linebreak="jl", 33444 unicodeslot=0x112D, 33445 }, 33446 [0x112E]={ 33447 category="lo", 33448 cjkwd="w", 33449 description="HANGUL CHOSEONG SIOS-NIEUN", 33450 direction="l", 33451 linebreak="jl", 33452 unicodeslot=0x112E, 33453 }, 33454 [0x112F]={ 33455 category="lo", 33456 cjkwd="w", 33457 description="HANGUL CHOSEONG SIOS-TIKEUT", 33458 direction="l", 33459 linebreak="jl", 33460 unicodeslot=0x112F, 33461 }, 33462 [0x1130]={ 33463 category="lo", 33464 cjkwd="w", 33465 description="HANGUL CHOSEONG SIOS-RIEUL", 33466 direction="l", 33467 linebreak="jl", 33468 unicodeslot=0x1130, 33469 }, 33470 [0x1131]={ 33471 category="lo", 33472 cjkwd="w", 33473 description="HANGUL CHOSEONG SIOS-MIEUM", 33474 direction="l", 33475 linebreak="jl", 33476 unicodeslot=0x1131, 33477 }, 33478 [0x1132]={ 33479 category="lo", 33480 cjkwd="w", 33481 description="HANGUL CHOSEONG SIOS-PIEUP", 33482 direction="l", 33483 linebreak="jl", 33484 unicodeslot=0x1132, 33485 }, 33486 [0x1133]={ 33487 category="lo", 33488 cjkwd="w", 33489 description="HANGUL CHOSEONG SIOS-PIEUP-KIYEOK", 33490 direction="l", 33491 linebreak="jl", 33492 unicodeslot=0x1133, 33493 }, 33494 [0x1134]={ 33495 category="lo", 33496 cjkwd="w", 33497 description="HANGUL CHOSEONG SIOS-SSANGSIOS", 33498 direction="l", 33499 linebreak="jl", 33500 unicodeslot=0x1134, 33501 }, 33502 [0x1135]={ 33503 category="lo", 33504 cjkwd="w", 33505 description="HANGUL CHOSEONG SIOS-IEUNG", 33506 direction="l", 33507 linebreak="jl", 33508 unicodeslot=0x1135, 33509 }, 33510 [0x1136]={ 33511 category="lo", 33512 cjkwd="w", 33513 description="HANGUL CHOSEONG SIOS-CIEUC", 33514 direction="l", 33515 linebreak="jl", 33516 unicodeslot=0x1136, 33517 }, 33518 [0x1137]={ 33519 category="lo", 33520 cjkwd="w", 33521 description="HANGUL CHOSEONG SIOS-CHIEUCH", 33522 direction="l", 33523 linebreak="jl", 33524 unicodeslot=0x1137, 33525 }, 33526 [0x1138]={ 33527 category="lo", 33528 cjkwd="w", 33529 description="HANGUL CHOSEONG SIOS-KHIEUKH", 33530 direction="l", 33531 linebreak="jl", 33532 unicodeslot=0x1138, 33533 }, 33534 [0x1139]={ 33535 category="lo", 33536 cjkwd="w", 33537 description="HANGUL CHOSEONG SIOS-THIEUTH", 33538 direction="l", 33539 linebreak="jl", 33540 unicodeslot=0x1139, 33541 }, 33542 [0x113A]={ 33543 category="lo", 33544 cjkwd="w", 33545 description="HANGUL CHOSEONG SIOS-PHIEUPH", 33546 direction="l", 33547 linebreak="jl", 33548 unicodeslot=0x113A, 33549 }, 33550 [0x113B]={ 33551 category="lo", 33552 cjkwd="w", 33553 description="HANGUL CHOSEONG SIOS-HIEUH", 33554 direction="l", 33555 linebreak="jl", 33556 unicodeslot=0x113B, 33557 }, 33558 [0x113C]={ 33559 category="lo", 33560 cjkwd="w", 33561 description="HANGUL CHOSEONG CHITUEUMSIOS", 33562 direction="l", 33563 linebreak="jl", 33564 unicodeslot=0x113C, 33565 }, 33566 [0x113D]={ 33567 category="lo", 33568 cjkwd="w", 33569 description="HANGUL CHOSEONG CHITUEUMSSANGSIOS", 33570 direction="l", 33571 linebreak="jl", 33572 unicodeslot=0x113D, 33573 }, 33574 [0x113E]={ 33575 category="lo", 33576 cjkwd="w", 33577 description="HANGUL CHOSEONG CEONGCHIEUMSIOS", 33578 direction="l", 33579 linebreak="jl", 33580 unicodeslot=0x113E, 33581 }, 33582 [0x113F]={ 33583 category="lo", 33584 cjkwd="w", 33585 description="HANGUL CHOSEONG CEONGCHIEUMSSANGSIOS", 33586 direction="l", 33587 linebreak="jl", 33588 unicodeslot=0x113F, 33589 }, 33590 [0x1140]={ 33591 category="lo", 33592 cjkwd="w", 33593 description="HANGUL CHOSEONG PANSIOS", 33594 direction="l", 33595 linebreak="jl", 33596 unicodeslot=0x1140, 33597 }, 33598 [0x1141]={ 33599 category="lo", 33600 cjkwd="w", 33601 description="HANGUL CHOSEONG IEUNG-KIYEOK", 33602 direction="l", 33603 linebreak="jl", 33604 unicodeslot=0x1141, 33605 }, 33606 [0x1142]={ 33607 category="lo", 33608 cjkwd="w", 33609 description="HANGUL CHOSEONG IEUNG-TIKEUT", 33610 direction="l", 33611 linebreak="jl", 33612 unicodeslot=0x1142, 33613 }, 33614 [0x1143]={ 33615 category="lo", 33616 cjkwd="w", 33617 description="HANGUL CHOSEONG IEUNG-MIEUM", 33618 direction="l", 33619 linebreak="jl", 33620 unicodeslot=0x1143, 33621 }, 33622 [0x1144]={ 33623 category="lo", 33624 cjkwd="w", 33625 description="HANGUL CHOSEONG IEUNG-PIEUP", 33626 direction="l", 33627 linebreak="jl", 33628 unicodeslot=0x1144, 33629 }, 33630 [0x1145]={ 33631 category="lo", 33632 cjkwd="w", 33633 description="HANGUL CHOSEONG IEUNG-SIOS", 33634 direction="l", 33635 linebreak="jl", 33636 unicodeslot=0x1145, 33637 }, 33638 [0x1146]={ 33639 category="lo", 33640 cjkwd="w", 33641 description="HANGUL CHOSEONG IEUNG-PANSIOS", 33642 direction="l", 33643 linebreak="jl", 33644 unicodeslot=0x1146, 33645 }, 33646 [0x1147]={ 33647 category="lo", 33648 cjkwd="w", 33649 description="HANGUL CHOSEONG SSANGIEUNG", 33650 direction="l", 33651 linebreak="jl", 33652 unicodeslot=0x1147, 33653 }, 33654 [0x1148]={ 33655 category="lo", 33656 cjkwd="w", 33657 description="HANGUL CHOSEONG IEUNG-CIEUC", 33658 direction="l", 33659 linebreak="jl", 33660 unicodeslot=0x1148, 33661 }, 33662 [0x1149]={ 33663 category="lo", 33664 cjkwd="w", 33665 description="HANGUL CHOSEONG IEUNG-CHIEUCH", 33666 direction="l", 33667 linebreak="jl", 33668 unicodeslot=0x1149, 33669 }, 33670 [0x114A]={ 33671 category="lo", 33672 cjkwd="w", 33673 description="HANGUL CHOSEONG IEUNG-THIEUTH", 33674 direction="l", 33675 linebreak="jl", 33676 unicodeslot=0x114A, 33677 }, 33678 [0x114B]={ 33679 category="lo", 33680 cjkwd="w", 33681 description="HANGUL CHOSEONG IEUNG-PHIEUPH", 33682 direction="l", 33683 linebreak="jl", 33684 unicodeslot=0x114B, 33685 }, 33686 [0x114C]={ 33687 category="lo", 33688 cjkwd="w", 33689 description="HANGUL CHOSEONG YESIEUNG", 33690 direction="l", 33691 linebreak="jl", 33692 unicodeslot=0x114C, 33693 }, 33694 [0x114D]={ 33695 category="lo", 33696 cjkwd="w", 33697 description="HANGUL CHOSEONG CIEUC-IEUNG", 33698 direction="l", 33699 linebreak="jl", 33700 unicodeslot=0x114D, 33701 }, 33702 [0x114E]={ 33703 category="lo", 33704 cjkwd="w", 33705 description="HANGUL CHOSEONG CHITUEUMCIEUC", 33706 direction="l", 33707 linebreak="jl", 33708 unicodeslot=0x114E, 33709 }, 33710 [0x114F]={ 33711 category="lo", 33712 cjkwd="w", 33713 description="HANGUL CHOSEONG CHITUEUMSSANGCIEUC", 33714 direction="l", 33715 linebreak="jl", 33716 unicodeslot=0x114F, 33717 }, 33718 [0x1150]={ 33719 category="lo", 33720 cjkwd="w", 33721 description="HANGUL CHOSEONG CEONGCHIEUMCIEUC", 33722 direction="l", 33723 linebreak="jl", 33724 unicodeslot=0x1150, 33725 }, 33726 [0x1151]={ 33727 category="lo", 33728 cjkwd="w", 33729 description="HANGUL CHOSEONG CEONGCHIEUMSSANGCIEUC", 33730 direction="l", 33731 linebreak="jl", 33732 unicodeslot=0x1151, 33733 }, 33734 [0x1152]={ 33735 category="lo", 33736 cjkwd="w", 33737 description="HANGUL CHOSEONG CHIEUCH-KHIEUKH", 33738 direction="l", 33739 linebreak="jl", 33740 unicodeslot=0x1152, 33741 }, 33742 [0x1153]={ 33743 category="lo", 33744 cjkwd="w", 33745 description="HANGUL CHOSEONG CHIEUCH-HIEUH", 33746 direction="l", 33747 linebreak="jl", 33748 unicodeslot=0x1153, 33749 }, 33750 [0x1154]={ 33751 category="lo", 33752 cjkwd="w", 33753 description="HANGUL CHOSEONG CHITUEUMCHIEUCH", 33754 direction="l", 33755 linebreak="jl", 33756 unicodeslot=0x1154, 33757 }, 33758 [0x1155]={ 33759 category="lo", 33760 cjkwd="w", 33761 description="HANGUL CHOSEONG CEONGCHIEUMCHIEUCH", 33762 direction="l", 33763 linebreak="jl", 33764 unicodeslot=0x1155, 33765 }, 33766 [0x1156]={ 33767 category="lo", 33768 cjkwd="w", 33769 description="HANGUL CHOSEONG PHIEUPH-PIEUP", 33770 direction="l", 33771 linebreak="jl", 33772 unicodeslot=0x1156, 33773 }, 33774 [0x1157]={ 33775 category="lo", 33776 cjkwd="w", 33777 description="HANGUL CHOSEONG KAPYEOUNPHIEUPH", 33778 direction="l", 33779 linebreak="jl", 33780 unicodeslot=0x1157, 33781 }, 33782 [0x1158]={ 33783 category="lo", 33784 cjkwd="w", 33785 description="HANGUL CHOSEONG SSANGHIEUH", 33786 direction="l", 33787 linebreak="jl", 33788 unicodeslot=0x1158, 33789 }, 33790 [0x1159]={ 33791 category="lo", 33792 cjkwd="w", 33793 description="HANGUL CHOSEONG YEORINHIEUH", 33794 direction="l", 33795 linebreak="jl", 33796 unicodeslot=0x1159, 33797 }, 33798 [0x115A]={ 33799 category="lo", 33800 cjkwd="w", 33801 description="HANGUL CHOSEONG KIYEOK-TIKEUT", 33802 direction="l", 33803 linebreak="jl", 33804 unicodeslot=0x115A, 33805 }, 33806 [0x115B]={ 33807 category="lo", 33808 cjkwd="w", 33809 description="HANGUL CHOSEONG NIEUN-SIOS", 33810 direction="l", 33811 linebreak="jl", 33812 unicodeslot=0x115B, 33813 }, 33814 [0x115C]={ 33815 category="lo", 33816 cjkwd="w", 33817 description="HANGUL CHOSEONG NIEUN-CIEUC", 33818 direction="l", 33819 linebreak="jl", 33820 unicodeslot=0x115C, 33821 }, 33822 [0x115D]={ 33823 category="lo", 33824 cjkwd="w", 33825 description="HANGUL CHOSEONG NIEUN-HIEUH", 33826 direction="l", 33827 linebreak="jl", 33828 unicodeslot=0x115D, 33829 }, 33830 [0x115E]={ 33831 category="lo", 33832 cjkwd="w", 33833 description="HANGUL CHOSEONG TIKEUT-RIEUL", 33834 direction="l", 33835 linebreak="jl", 33836 unicodeslot=0x115E, 33837 }, 33838 [0x115F]={ 33839 category="lo", 33840 cjkwd="w", 33841 description="HANGUL CHOSEONG FILLER", 33842 direction="l", 33843 linebreak="jl", 33844 unicodeslot=0x115F, 33845 }, 33846 [0x1160]={ 33847 category="lo", 33848 description="HANGUL JUNGSEONG FILLER", 33849 direction="l", 33850 linebreak="jv", 33851 unicodeslot=0x1160, 33852 }, 33853 [0x1161]={ 33854 category="lo", 33855 description="HANGUL JUNGSEONG A", 33856 direction="l", 33857 linebreak="jv", 33858 unicodeslot=0x1161, 33859 }, 33860 [0x1162]={ 33861 category="lo", 33862 description="HANGUL JUNGSEONG AE", 33863 direction="l", 33864 linebreak="jv", 33865 unicodeslot=0x1162, 33866 }, 33867 [0x1163]={ 33868 category="lo", 33869 description="HANGUL JUNGSEONG YA", 33870 direction="l", 33871 linebreak="jv", 33872 unicodeslot=0x1163, 33873 }, 33874 [0x1164]={ 33875 category="lo", 33876 description="HANGUL JUNGSEONG YAE", 33877 direction="l", 33878 linebreak="jv", 33879 unicodeslot=0x1164, 33880 }, 33881 [0x1165]={ 33882 category="lo", 33883 description="HANGUL JUNGSEONG EO", 33884 direction="l", 33885 linebreak="jv", 33886 unicodeslot=0x1165, 33887 }, 33888 [0x1166]={ 33889 category="lo", 33890 description="HANGUL JUNGSEONG E", 33891 direction="l", 33892 linebreak="jv", 33893 unicodeslot=0x1166, 33894 }, 33895 [0x1167]={ 33896 category="lo", 33897 description="HANGUL JUNGSEONG YEO", 33898 direction="l", 33899 linebreak="jv", 33900 unicodeslot=0x1167, 33901 }, 33902 [0x1168]={ 33903 category="lo", 33904 description="HANGUL JUNGSEONG YE", 33905 direction="l", 33906 linebreak="jv", 33907 unicodeslot=0x1168, 33908 }, 33909 [0x1169]={ 33910 category="lo", 33911 description="HANGUL JUNGSEONG O", 33912 direction="l", 33913 linebreak="jv", 33914 unicodeslot=0x1169, 33915 }, 33916 [0x116A]={ 33917 category="lo", 33918 description="HANGUL JUNGSEONG WA", 33919 direction="l", 33920 linebreak="jv", 33921 unicodeslot=0x116A, 33922 }, 33923 [0x116B]={ 33924 category="lo", 33925 description="HANGUL JUNGSEONG WAE", 33926 direction="l", 33927 linebreak="jv", 33928 unicodeslot=0x116B, 33929 }, 33930 [0x116C]={ 33931 category="lo", 33932 description="HANGUL JUNGSEONG OE", 33933 direction="l", 33934 linebreak="jv", 33935 unicodeslot=0x116C, 33936 }, 33937 [0x116D]={ 33938 category="lo", 33939 description="HANGUL JUNGSEONG YO", 33940 direction="l", 33941 linebreak="jv", 33942 unicodeslot=0x116D, 33943 }, 33944 [0x116E]={ 33945 category="lo", 33946 description="HANGUL JUNGSEONG U", 33947 direction="l", 33948 linebreak="jv", 33949 unicodeslot=0x116E, 33950 }, 33951 [0x116F]={ 33952 category="lo", 33953 description="HANGUL JUNGSEONG WEO", 33954 direction="l", 33955 linebreak="jv", 33956 unicodeslot=0x116F, 33957 }, 33958 [0x1170]={ 33959 category="lo", 33960 description="HANGUL JUNGSEONG WE", 33961 direction="l", 33962 linebreak="jv", 33963 unicodeslot=0x1170, 33964 }, 33965 [0x1171]={ 33966 category="lo", 33967 description="HANGUL JUNGSEONG WI", 33968 direction="l", 33969 linebreak="jv", 33970 unicodeslot=0x1171, 33971 }, 33972 [0x1172]={ 33973 category="lo", 33974 description="HANGUL JUNGSEONG YU", 33975 direction="l", 33976 linebreak="jv", 33977 unicodeslot=0x1172, 33978 }, 33979 [0x1173]={ 33980 category="lo", 33981 description="HANGUL JUNGSEONG EU", 33982 direction="l", 33983 linebreak="jv", 33984 unicodeslot=0x1173, 33985 }, 33986 [0x1174]={ 33987 category="lo", 33988 description="HANGUL JUNGSEONG YI", 33989 direction="l", 33990 linebreak="jv", 33991 unicodeslot=0x1174, 33992 }, 33993 [0x1175]={ 33994 category="lo", 33995 description="HANGUL JUNGSEONG I", 33996 direction="l", 33997 linebreak="jv", 33998 unicodeslot=0x1175, 33999 }, 34000 [0x1176]={ 34001 category="lo", 34002 description="HANGUL JUNGSEONG A-O", 34003 direction="l", 34004 linebreak="jv", 34005 unicodeslot=0x1176, 34006 }, 34007 [0x1177]={ 34008 category="lo", 34009 description="HANGUL JUNGSEONG A-U", 34010 direction="l", 34011 linebreak="jv", 34012 unicodeslot=0x1177, 34013 }, 34014 [0x1178]={ 34015 category="lo", 34016 description="HANGUL JUNGSEONG YA-O", 34017 direction="l", 34018 linebreak="jv", 34019 unicodeslot=0x1178, 34020 }, 34021 [0x1179]={ 34022 category="lo", 34023 description="HANGUL JUNGSEONG YA-YO", 34024 direction="l", 34025 linebreak="jv", 34026 unicodeslot=0x1179, 34027 }, 34028 [0x117A]={ 34029 category="lo", 34030 description="HANGUL JUNGSEONG EO-O", 34031 direction="l", 34032 linebreak="jv", 34033 unicodeslot=0x117A, 34034 }, 34035 [0x117B]={ 34036 category="lo", 34037 description="HANGUL JUNGSEONG EO-U", 34038 direction="l", 34039 linebreak="jv", 34040 unicodeslot=0x117B, 34041 }, 34042 [0x117C]={ 34043 category="lo", 34044 description="HANGUL JUNGSEONG EO-EU", 34045 direction="l", 34046 linebreak="jv", 34047 unicodeslot=0x117C, 34048 }, 34049 [0x117D]={ 34050 category="lo", 34051 description="HANGUL JUNGSEONG YEO-O", 34052 direction="l", 34053 linebreak="jv", 34054 unicodeslot=0x117D, 34055 }, 34056 [0x117E]={ 34057 category="lo", 34058 description="HANGUL JUNGSEONG YEO-U", 34059 direction="l", 34060 linebreak="jv", 34061 unicodeslot=0x117E, 34062 }, 34063 [0x117F]={ 34064 category="lo", 34065 description="HANGUL JUNGSEONG O-EO", 34066 direction="l", 34067 linebreak="jv", 34068 unicodeslot=0x117F, 34069 }, 34070 [0x1180]={ 34071 category="lo", 34072 description="HANGUL JUNGSEONG O-E", 34073 direction="l", 34074 linebreak="jv", 34075 unicodeslot=0x1180, 34076 }, 34077 [0x1181]={ 34078 category="lo", 34079 description="HANGUL JUNGSEONG O-YE", 34080 direction="l", 34081 linebreak="jv", 34082 unicodeslot=0x1181, 34083 }, 34084 [0x1182]={ 34085 category="lo", 34086 description="HANGUL JUNGSEONG O-O", 34087 direction="l", 34088 linebreak="jv", 34089 unicodeslot=0x1182, 34090 }, 34091 [0x1183]={ 34092 category="lo", 34093 description="HANGUL JUNGSEONG O-U", 34094 direction="l", 34095 linebreak="jv", 34096 unicodeslot=0x1183, 34097 }, 34098 [0x1184]={ 34099 category="lo", 34100 description="HANGUL JUNGSEONG YO-YA", 34101 direction="l", 34102 linebreak="jv", 34103 unicodeslot=0x1184, 34104 }, 34105 [0x1185]={ 34106 category="lo", 34107 description="HANGUL JUNGSEONG YO-YAE", 34108 direction="l", 34109 linebreak="jv", 34110 unicodeslot=0x1185, 34111 }, 34112 [0x1186]={ 34113 category="lo", 34114 description="HANGUL JUNGSEONG YO-YEO", 34115 direction="l", 34116 linebreak="jv", 34117 unicodeslot=0x1186, 34118 }, 34119 [0x1187]={ 34120 category="lo", 34121 description="HANGUL JUNGSEONG YO-O", 34122 direction="l", 34123 linebreak="jv", 34124 unicodeslot=0x1187, 34125 }, 34126 [0x1188]={ 34127 category="lo", 34128 description="HANGUL JUNGSEONG YO-I", 34129 direction="l", 34130 linebreak="jv", 34131 unicodeslot=0x1188, 34132 }, 34133 [0x1189]={ 34134 category="lo", 34135 description="HANGUL JUNGSEONG U-A", 34136 direction="l", 34137 linebreak="jv", 34138 unicodeslot=0x1189, 34139 }, 34140 [0x118A]={ 34141 category="lo", 34142 description="HANGUL JUNGSEONG U-AE", 34143 direction="l", 34144 linebreak="jv", 34145 unicodeslot=0x118A, 34146 }, 34147 [0x118B]={ 34148 category="lo", 34149 description="HANGUL JUNGSEONG U-EO-EU", 34150 direction="l", 34151 linebreak="jv", 34152 unicodeslot=0x118B, 34153 }, 34154 [0x118C]={ 34155 category="lo", 34156 description="HANGUL JUNGSEONG U-YE", 34157 direction="l", 34158 linebreak="jv", 34159 unicodeslot=0x118C, 34160 }, 34161 [0x118D]={ 34162 category="lo", 34163 description="HANGUL JUNGSEONG U-U", 34164 direction="l", 34165 linebreak="jv", 34166 unicodeslot=0x118D, 34167 }, 34168 [0x118E]={ 34169 category="lo", 34170 description="HANGUL JUNGSEONG YU-A", 34171 direction="l", 34172 linebreak="jv", 34173 unicodeslot=0x118E, 34174 }, 34175 [0x118F]={ 34176 category="lo", 34177 description="HANGUL JUNGSEONG YU-EO", 34178 direction="l", 34179 linebreak="jv", 34180 unicodeslot=0x118F, 34181 }, 34182 [0x1190]={ 34183 category="lo", 34184 description="HANGUL JUNGSEONG YU-E", 34185 direction="l", 34186 linebreak="jv", 34187 unicodeslot=0x1190, 34188 }, 34189 [0x1191]={ 34190 category="lo", 34191 description="HANGUL JUNGSEONG YU-YEO", 34192 direction="l", 34193 linebreak="jv", 34194 unicodeslot=0x1191, 34195 }, 34196 [0x1192]={ 34197 category="lo", 34198 description="HANGUL JUNGSEONG YU-YE", 34199 direction="l", 34200 linebreak="jv", 34201 unicodeslot=0x1192, 34202 }, 34203 [0x1193]={ 34204 category="lo", 34205 description="HANGUL JUNGSEONG YU-U", 34206 direction="l", 34207 linebreak="jv", 34208 unicodeslot=0x1193, 34209 }, 34210 [0x1194]={ 34211 category="lo", 34212 description="HANGUL JUNGSEONG YU-I", 34213 direction="l", 34214 linebreak="jv", 34215 unicodeslot=0x1194, 34216 }, 34217 [0x1195]={ 34218 category="lo", 34219 description="HANGUL JUNGSEONG EU-U", 34220 direction="l", 34221 linebreak="jv", 34222 unicodeslot=0x1195, 34223 }, 34224 [0x1196]={ 34225 category="lo", 34226 description="HANGUL JUNGSEONG EU-EU", 34227 direction="l", 34228 linebreak="jv", 34229 unicodeslot=0x1196, 34230 }, 34231 [0x1197]={ 34232 category="lo", 34233 description="HANGUL JUNGSEONG YI-U", 34234 direction="l", 34235 linebreak="jv", 34236 unicodeslot=0x1197, 34237 }, 34238 [0x1198]={ 34239 category="lo", 34240 description="HANGUL JUNGSEONG I-A", 34241 direction="l", 34242 linebreak="jv", 34243 unicodeslot=0x1198, 34244 }, 34245 [0x1199]={ 34246 category="lo", 34247 description="HANGUL JUNGSEONG I-YA", 34248 direction="l", 34249 linebreak="jv", 34250 unicodeslot=0x1199, 34251 }, 34252 [0x119A]={ 34253 category="lo", 34254 description="HANGUL JUNGSEONG I-O", 34255 direction="l", 34256 linebreak="jv", 34257 unicodeslot=0x119A, 34258 }, 34259 [0x119B]={ 34260 category="lo", 34261 description="HANGUL JUNGSEONG I-U", 34262 direction="l", 34263 linebreak="jv", 34264 unicodeslot=0x119B, 34265 }, 34266 [0x119C]={ 34267 category="lo", 34268 description="HANGUL JUNGSEONG I-EU", 34269 direction="l", 34270 linebreak="jv", 34271 unicodeslot=0x119C, 34272 }, 34273 [0x119D]={ 34274 category="lo", 34275 description="HANGUL JUNGSEONG I-ARAEA", 34276 direction="l", 34277 linebreak="jv", 34278 unicodeslot=0x119D, 34279 }, 34280 [0x119E]={ 34281 category="lo", 34282 description="HANGUL JUNGSEONG ARAEA", 34283 direction="l", 34284 linebreak="jv", 34285 unicodeslot=0x119E, 34286 }, 34287 [0x119F]={ 34288 category="lo", 34289 description="HANGUL JUNGSEONG ARAEA-EO", 34290 direction="l", 34291 linebreak="jv", 34292 unicodeslot=0x119F, 34293 }, 34294 [0x11A0]={ 34295 category="lo", 34296 description="HANGUL JUNGSEONG ARAEA-U", 34297 direction="l", 34298 linebreak="jv", 34299 unicodeslot=0x11A0, 34300 }, 34301 [0x11A1]={ 34302 category="lo", 34303 description="HANGUL JUNGSEONG ARAEA-I", 34304 direction="l", 34305 linebreak="jv", 34306 unicodeslot=0x11A1, 34307 }, 34308 [0x11A2]={ 34309 category="lo", 34310 description="HANGUL JUNGSEONG SSANGARAEA", 34311 direction="l", 34312 linebreak="jv", 34313 unicodeslot=0x11A2, 34314 }, 34315 [0x11A3]={ 34316 category="lo", 34317 description="HANGUL JUNGSEONG A-EU", 34318 direction="l", 34319 linebreak="jv", 34320 unicodeslot=0x11A3, 34321 }, 34322 [0x11A4]={ 34323 category="lo", 34324 description="HANGUL JUNGSEONG YA-U", 34325 direction="l", 34326 linebreak="jv", 34327 unicodeslot=0x11A4, 34328 }, 34329 [0x11A5]={ 34330 category="lo", 34331 description="HANGUL JUNGSEONG YEO-YA", 34332 direction="l", 34333 linebreak="jv", 34334 unicodeslot=0x11A5, 34335 }, 34336 [0x11A6]={ 34337 category="lo", 34338 description="HANGUL JUNGSEONG O-YA", 34339 direction="l", 34340 linebreak="jv", 34341 unicodeslot=0x11A6, 34342 }, 34343 [0x11A7]={ 34344 category="lo", 34345 description="HANGUL JUNGSEONG O-YAE", 34346 direction="l", 34347 linebreak="jv", 34348 unicodeslot=0x11A7, 34349 }, 34350 [0x11A8]={ 34351 category="lo", 34352 description="HANGUL JONGSEONG KIYEOK", 34353 direction="l", 34354 linebreak="jt", 34355 unicodeslot=0x11A8, 34356 }, 34357 [0x11A9]={ 34358 category="lo", 34359 description="HANGUL JONGSEONG SSANGKIYEOK", 34360 direction="l", 34361 linebreak="jt", 34362 unicodeslot=0x11A9, 34363 }, 34364 [0x11AA]={ 34365 category="lo", 34366 description="HANGUL JONGSEONG KIYEOK-SIOS", 34367 direction="l", 34368 linebreak="jt", 34369 unicodeslot=0x11AA, 34370 }, 34371 [0x11AB]={ 34372 category="lo", 34373 description="HANGUL JONGSEONG NIEUN", 34374 direction="l", 34375 linebreak="jt", 34376 unicodeslot=0x11AB, 34377 }, 34378 [0x11AC]={ 34379 category="lo", 34380 description="HANGUL JONGSEONG NIEUN-CIEUC", 34381 direction="l", 34382 linebreak="jt", 34383 unicodeslot=0x11AC, 34384 }, 34385 [0x11AD]={ 34386 category="lo", 34387 description="HANGUL JONGSEONG NIEUN-HIEUH", 34388 direction="l", 34389 linebreak="jt", 34390 unicodeslot=0x11AD, 34391 }, 34392 [0x11AE]={ 34393 category="lo", 34394 description="HANGUL JONGSEONG TIKEUT", 34395 direction="l", 34396 linebreak="jt", 34397 unicodeslot=0x11AE, 34398 }, 34399 [0x11AF]={ 34400 category="lo", 34401 description="HANGUL JONGSEONG RIEUL", 34402 direction="l", 34403 linebreak="jt", 34404 unicodeslot=0x11AF, 34405 }, 34406 [0x11B0]={ 34407 category="lo", 34408 description="HANGUL JONGSEONG RIEUL-KIYEOK", 34409 direction="l", 34410 linebreak="jt", 34411 unicodeslot=0x11B0, 34412 }, 34413 [0x11B1]={ 34414 category="lo", 34415 description="HANGUL JONGSEONG RIEUL-MIEUM", 34416 direction="l", 34417 linebreak="jt", 34418 unicodeslot=0x11B1, 34419 }, 34420 [0x11B2]={ 34421 category="lo", 34422 description="HANGUL JONGSEONG RIEUL-PIEUP", 34423 direction="l", 34424 linebreak="jt", 34425 unicodeslot=0x11B2, 34426 }, 34427 [0x11B3]={ 34428 category="lo", 34429 description="HANGUL JONGSEONG RIEUL-SIOS", 34430 direction="l", 34431 linebreak="jt", 34432 unicodeslot=0x11B3, 34433 }, 34434 [0x11B4]={ 34435 category="lo", 34436 description="HANGUL JONGSEONG RIEUL-THIEUTH", 34437 direction="l", 34438 linebreak="jt", 34439 unicodeslot=0x11B4, 34440 }, 34441 [0x11B5]={ 34442 category="lo", 34443 description="HANGUL JONGSEONG RIEUL-PHIEUPH", 34444 direction="l", 34445 linebreak="jt", 34446 unicodeslot=0x11B5, 34447 }, 34448 [0x11B6]={ 34449 category="lo", 34450 description="HANGUL JONGSEONG RIEUL-HIEUH", 34451 direction="l", 34452 linebreak="jt", 34453 unicodeslot=0x11B6, 34454 }, 34455 [0x11B7]={ 34456 category="lo", 34457 description="HANGUL JONGSEONG MIEUM", 34458 direction="l", 34459 linebreak="jt", 34460 unicodeslot=0x11B7, 34461 }, 34462 [0x11B8]={ 34463 category="lo", 34464 description="HANGUL JONGSEONG PIEUP", 34465 direction="l", 34466 linebreak="jt", 34467 unicodeslot=0x11B8, 34468 }, 34469 [0x11B9]={ 34470 category="lo", 34471 description="HANGUL JONGSEONG PIEUP-SIOS", 34472 direction="l", 34473 linebreak="jt", 34474 unicodeslot=0x11B9, 34475 }, 34476 [0x11BA]={ 34477 category="lo", 34478 description="HANGUL JONGSEONG SIOS", 34479 direction="l", 34480 linebreak="jt", 34481 unicodeslot=0x11BA, 34482 }, 34483 [0x11BB]={ 34484 category="lo", 34485 description="HANGUL JONGSEONG SSANGSIOS", 34486 direction="l", 34487 linebreak="jt", 34488 unicodeslot=0x11BB, 34489 }, 34490 [0x11BC]={ 34491 category="lo", 34492 description="HANGUL JONGSEONG IEUNG", 34493 direction="l", 34494 linebreak="jt", 34495 unicodeslot=0x11BC, 34496 }, 34497 [0x11BD]={ 34498 category="lo", 34499 description="HANGUL JONGSEONG CIEUC", 34500 direction="l", 34501 linebreak="jt", 34502 unicodeslot=0x11BD, 34503 }, 34504 [0x11BE]={ 34505 category="lo", 34506 description="HANGUL JONGSEONG CHIEUCH", 34507 direction="l", 34508 linebreak="jt", 34509 unicodeslot=0x11BE, 34510 }, 34511 [0x11BF]={ 34512 category="lo", 34513 description="HANGUL JONGSEONG KHIEUKH", 34514 direction="l", 34515 linebreak="jt", 34516 unicodeslot=0x11BF, 34517 }, 34518 [0x11C0]={ 34519 category="lo", 34520 description="HANGUL JONGSEONG THIEUTH", 34521 direction="l", 34522 linebreak="jt", 34523 unicodeslot=0x11C0, 34524 }, 34525 [0x11C1]={ 34526 category="lo", 34527 description="HANGUL JONGSEONG PHIEUPH", 34528 direction="l", 34529 linebreak="jt", 34530 unicodeslot=0x11C1, 34531 }, 34532 [0x11C2]={ 34533 category="lo", 34534 description="HANGUL JONGSEONG HIEUH", 34535 direction="l", 34536 linebreak="jt", 34537 unicodeslot=0x11C2, 34538 }, 34539 [0x11C3]={ 34540 category="lo", 34541 description="HANGUL JONGSEONG KIYEOK-RIEUL", 34542 direction="l", 34543 linebreak="jt", 34544 unicodeslot=0x11C3, 34545 }, 34546 [0x11C4]={ 34547 category="lo", 34548 description="HANGUL JONGSEONG KIYEOK-SIOS-KIYEOK", 34549 direction="l", 34550 linebreak="jt", 34551 unicodeslot=0x11C4, 34552 }, 34553 [0x11C5]={ 34554 category="lo", 34555 description="HANGUL JONGSEONG NIEUN-KIYEOK", 34556 direction="l", 34557 linebreak="jt", 34558 unicodeslot=0x11C5, 34559 }, 34560 [0x11C6]={ 34561 category="lo", 34562 description="HANGUL JONGSEONG NIEUN-TIKEUT", 34563 direction="l", 34564 linebreak="jt", 34565 unicodeslot=0x11C6, 34566 }, 34567 [0x11C7]={ 34568 category="lo", 34569 description="HANGUL JONGSEONG NIEUN-SIOS", 34570 direction="l", 34571 linebreak="jt", 34572 unicodeslot=0x11C7, 34573 }, 34574 [0x11C8]={ 34575 category="lo", 34576 description="HANGUL JONGSEONG NIEUN-PANSIOS", 34577 direction="l", 34578 linebreak="jt", 34579 unicodeslot=0x11C8, 34580 }, 34581 [0x11C9]={ 34582 category="lo", 34583 description="HANGUL JONGSEONG NIEUN-THIEUTH", 34584 direction="l", 34585 linebreak="jt", 34586 unicodeslot=0x11C9, 34587 }, 34588 [0x11CA]={ 34589 category="lo", 34590 description="HANGUL JONGSEONG TIKEUT-KIYEOK", 34591 direction="l", 34592 linebreak="jt", 34593 unicodeslot=0x11CA, 34594 }, 34595 [0x11CB]={ 34596 category="lo", 34597 description="HANGUL JONGSEONG TIKEUT-RIEUL", 34598 direction="l", 34599 linebreak="jt", 34600 unicodeslot=0x11CB, 34601 }, 34602 [0x11CC]={ 34603 category="lo", 34604 description="HANGUL JONGSEONG RIEUL-KIYEOK-SIOS", 34605 direction="l", 34606 linebreak="jt", 34607 unicodeslot=0x11CC, 34608 }, 34609 [0x11CD]={ 34610 category="lo", 34611 description="HANGUL JONGSEONG RIEUL-NIEUN", 34612 direction="l", 34613 linebreak="jt", 34614 unicodeslot=0x11CD, 34615 }, 34616 [0x11CE]={ 34617 category="lo", 34618 description="HANGUL JONGSEONG RIEUL-TIKEUT", 34619 direction="l", 34620 linebreak="jt", 34621 unicodeslot=0x11CE, 34622 }, 34623 [0x11CF]={ 34624 category="lo", 34625 description="HANGUL JONGSEONG RIEUL-TIKEUT-HIEUH", 34626 direction="l", 34627 linebreak="jt", 34628 unicodeslot=0x11CF, 34629 }, 34630 [0x11D0]={ 34631 category="lo", 34632 description="HANGUL JONGSEONG SSANGRIEUL", 34633 direction="l", 34634 linebreak="jt", 34635 unicodeslot=0x11D0, 34636 }, 34637 [0x11D1]={ 34638 category="lo", 34639 description="HANGUL JONGSEONG RIEUL-MIEUM-KIYEOK", 34640 direction="l", 34641 linebreak="jt", 34642 unicodeslot=0x11D1, 34643 }, 34644 [0x11D2]={ 34645 category="lo", 34646 description="HANGUL JONGSEONG RIEUL-MIEUM-SIOS", 34647 direction="l", 34648 linebreak="jt", 34649 unicodeslot=0x11D2, 34650 }, 34651 [0x11D3]={ 34652 category="lo", 34653 description="HANGUL JONGSEONG RIEUL-PIEUP-SIOS", 34654 direction="l", 34655 linebreak="jt", 34656 unicodeslot=0x11D3, 34657 }, 34658 [0x11D4]={ 34659 category="lo", 34660 description="HANGUL JONGSEONG RIEUL-PIEUP-HIEUH", 34661 direction="l", 34662 linebreak="jt", 34663 unicodeslot=0x11D4, 34664 }, 34665 [0x11D5]={ 34666 category="lo", 34667 description="HANGUL JONGSEONG RIEUL-KAPYEOUNPIEUP", 34668 direction="l", 34669 linebreak="jt", 34670 unicodeslot=0x11D5, 34671 }, 34672 [0x11D6]={ 34673 category="lo", 34674 description="HANGUL JONGSEONG RIEUL-SSANGSIOS", 34675 direction="l", 34676 linebreak="jt", 34677 unicodeslot=0x11D6, 34678 }, 34679 [0x11D7]={ 34680 category="lo", 34681 description="HANGUL JONGSEONG RIEUL-PANSIOS", 34682 direction="l", 34683 linebreak="jt", 34684 unicodeslot=0x11D7, 34685 }, 34686 [0x11D8]={ 34687 category="lo", 34688 description="HANGUL JONGSEONG RIEUL-KHIEUKH", 34689 direction="l", 34690 linebreak="jt", 34691 unicodeslot=0x11D8, 34692 }, 34693 [0x11D9]={ 34694 category="lo", 34695 description="HANGUL JONGSEONG RIEUL-YEORINHIEUH", 34696 direction="l", 34697 linebreak="jt", 34698 unicodeslot=0x11D9, 34699 }, 34700 [0x11DA]={ 34701 category="lo", 34702 description="HANGUL JONGSEONG MIEUM-KIYEOK", 34703 direction="l", 34704 linebreak="jt", 34705 unicodeslot=0x11DA, 34706 }, 34707 [0x11DB]={ 34708 category="lo", 34709 description="HANGUL JONGSEONG MIEUM-RIEUL", 34710 direction="l", 34711 linebreak="jt", 34712 unicodeslot=0x11DB, 34713 }, 34714 [0x11DC]={ 34715 category="lo", 34716 description="HANGUL JONGSEONG MIEUM-PIEUP", 34717 direction="l", 34718 linebreak="jt", 34719 unicodeslot=0x11DC, 34720 }, 34721 [0x11DD]={ 34722 category="lo", 34723 description="HANGUL JONGSEONG MIEUM-SIOS", 34724 direction="l", 34725 linebreak="jt", 34726 unicodeslot=0x11DD, 34727 }, 34728 [0x11DE]={ 34729 category="lo", 34730 description="HANGUL JONGSEONG MIEUM-SSANGSIOS", 34731 direction="l", 34732 linebreak="jt", 34733 unicodeslot=0x11DE, 34734 }, 34735 [0x11DF]={ 34736 category="lo", 34737 description="HANGUL JONGSEONG MIEUM-PANSIOS", 34738 direction="l", 34739 linebreak="jt", 34740 unicodeslot=0x11DF, 34741 }, 34742 [0x11E0]={ 34743 category="lo", 34744 description="HANGUL JONGSEONG MIEUM-CHIEUCH", 34745 direction="l", 34746 linebreak="jt", 34747 unicodeslot=0x11E0, 34748 }, 34749 [0x11E1]={ 34750 category="lo", 34751 description="HANGUL JONGSEONG MIEUM-HIEUH", 34752 direction="l", 34753 linebreak="jt", 34754 unicodeslot=0x11E1, 34755 }, 34756 [0x11E2]={ 34757 category="lo", 34758 description="HANGUL JONGSEONG KAPYEOUNMIEUM", 34759 direction="l", 34760 linebreak="jt", 34761 unicodeslot=0x11E2, 34762 }, 34763 [0x11E3]={ 34764 category="lo", 34765 description="HANGUL JONGSEONG PIEUP-RIEUL", 34766 direction="l", 34767 linebreak="jt", 34768 unicodeslot=0x11E3, 34769 }, 34770 [0x11E4]={ 34771 category="lo", 34772 description="HANGUL JONGSEONG PIEUP-PHIEUPH", 34773 direction="l", 34774 linebreak="jt", 34775 unicodeslot=0x11E4, 34776 }, 34777 [0x11E5]={ 34778 category="lo", 34779 description="HANGUL JONGSEONG PIEUP-HIEUH", 34780 direction="l", 34781 linebreak="jt", 34782 unicodeslot=0x11E5, 34783 }, 34784 [0x11E6]={ 34785 category="lo", 34786 description="HANGUL JONGSEONG KAPYEOUNPIEUP", 34787 direction="l", 34788 linebreak="jt", 34789 unicodeslot=0x11E6, 34790 }, 34791 [0x11E7]={ 34792 category="lo", 34793 description="HANGUL JONGSEONG SIOS-KIYEOK", 34794 direction="l", 34795 linebreak="jt", 34796 unicodeslot=0x11E7, 34797 }, 34798 [0x11E8]={ 34799 category="lo", 34800 description="HANGUL JONGSEONG SIOS-TIKEUT", 34801 direction="l", 34802 linebreak="jt", 34803 unicodeslot=0x11E8, 34804 }, 34805 [0x11E9]={ 34806 category="lo", 34807 description="HANGUL JONGSEONG SIOS-RIEUL", 34808 direction="l", 34809 linebreak="jt", 34810 unicodeslot=0x11E9, 34811 }, 34812 [0x11EA]={ 34813 category="lo", 34814 description="HANGUL JONGSEONG SIOS-PIEUP", 34815 direction="l", 34816 linebreak="jt", 34817 unicodeslot=0x11EA, 34818 }, 34819 [0x11EB]={ 34820 category="lo", 34821 description="HANGUL JONGSEONG PANSIOS", 34822 direction="l", 34823 linebreak="jt", 34824 unicodeslot=0x11EB, 34825 }, 34826 [0x11EC]={ 34827 category="lo", 34828 description="HANGUL JONGSEONG IEUNG-KIYEOK", 34829 direction="l", 34830 linebreak="jt", 34831 unicodeslot=0x11EC, 34832 }, 34833 [0x11ED]={ 34834 category="lo", 34835 description="HANGUL JONGSEONG IEUNG-SSANGKIYEOK", 34836 direction="l", 34837 linebreak="jt", 34838 unicodeslot=0x11ED, 34839 }, 34840 [0x11EE]={ 34841 category="lo", 34842 description="HANGUL JONGSEONG SSANGIEUNG", 34843 direction="l", 34844 linebreak="jt", 34845 unicodeslot=0x11EE, 34846 }, 34847 [0x11EF]={ 34848 category="lo", 34849 description="HANGUL JONGSEONG IEUNG-KHIEUKH", 34850 direction="l", 34851 linebreak="jt", 34852 unicodeslot=0x11EF, 34853 }, 34854 [0x11F0]={ 34855 category="lo", 34856 description="HANGUL JONGSEONG YESIEUNG", 34857 direction="l", 34858 linebreak="jt", 34859 unicodeslot=0x11F0, 34860 }, 34861 [0x11F1]={ 34862 category="lo", 34863 description="HANGUL JONGSEONG YESIEUNG-SIOS", 34864 direction="l", 34865 linebreak="jt", 34866 unicodeslot=0x11F1, 34867 }, 34868 [0x11F2]={ 34869 category="lo", 34870 description="HANGUL JONGSEONG YESIEUNG-PANSIOS", 34871 direction="l", 34872 linebreak="jt", 34873 unicodeslot=0x11F2, 34874 }, 34875 [0x11F3]={ 34876 category="lo", 34877 description="HANGUL JONGSEONG PHIEUPH-PIEUP", 34878 direction="l", 34879 linebreak="jt", 34880 unicodeslot=0x11F3, 34881 }, 34882 [0x11F4]={ 34883 category="lo", 34884 description="HANGUL JONGSEONG KAPYEOUNPHIEUPH", 34885 direction="l", 34886 linebreak="jt", 34887 unicodeslot=0x11F4, 34888 }, 34889 [0x11F5]={ 34890 category="lo", 34891 description="HANGUL JONGSEONG HIEUH-NIEUN", 34892 direction="l", 34893 linebreak="jt", 34894 unicodeslot=0x11F5, 34895 }, 34896 [0x11F6]={ 34897 category="lo", 34898 description="HANGUL JONGSEONG HIEUH-RIEUL", 34899 direction="l", 34900 linebreak="jt", 34901 unicodeslot=0x11F6, 34902 }, 34903 [0x11F7]={ 34904 category="lo", 34905 description="HANGUL JONGSEONG HIEUH-MIEUM", 34906 direction="l", 34907 linebreak="jt", 34908 unicodeslot=0x11F7, 34909 }, 34910 [0x11F8]={ 34911 category="lo", 34912 description="HANGUL JONGSEONG HIEUH-PIEUP", 34913 direction="l", 34914 linebreak="jt", 34915 unicodeslot=0x11F8, 34916 }, 34917 [0x11F9]={ 34918 category="lo", 34919 description="HANGUL JONGSEONG YEORINHIEUH", 34920 direction="l", 34921 linebreak="jt", 34922 unicodeslot=0x11F9, 34923 }, 34924 [0x11FA]={ 34925 category="lo", 34926 description="HANGUL JONGSEONG KIYEOK-NIEUN", 34927 direction="l", 34928 linebreak="jt", 34929 unicodeslot=0x11FA, 34930 }, 34931 [0x11FB]={ 34932 category="lo", 34933 description="HANGUL JONGSEONG KIYEOK-PIEUP", 34934 direction="l", 34935 linebreak="jt", 34936 unicodeslot=0x11FB, 34937 }, 34938 [0x11FC]={ 34939 category="lo", 34940 description="HANGUL JONGSEONG KIYEOK-CHIEUCH", 34941 direction="l", 34942 linebreak="jt", 34943 unicodeslot=0x11FC, 34944 }, 34945 [0x11FD]={ 34946 category="lo", 34947 description="HANGUL JONGSEONG KIYEOK-KHIEUKH", 34948 direction="l", 34949 linebreak="jt", 34950 unicodeslot=0x11FD, 34951 }, 34952 [0x11FE]={ 34953 category="lo", 34954 description="HANGUL JONGSEONG KIYEOK-HIEUH", 34955 direction="l", 34956 linebreak="jt", 34957 unicodeslot=0x11FE, 34958 }, 34959 [0x11FF]={ 34960 category="lo", 34961 description="HANGUL JONGSEONG SSANGNIEUN", 34962 direction="l", 34963 linebreak="jt", 34964 unicodeslot=0x11FF, 34965 }, 34966 [0x1200]={ 34967 category="lo", 34968 description="ETHIOPIC SYLLABLE HA", 34969 direction="l", 34970 linebreak="al", 34971 unicodeslot=0x1200, 34972 }, 34973 [0x1201]={ 34974 category="lo", 34975 description="ETHIOPIC SYLLABLE HU", 34976 direction="l", 34977 linebreak="al", 34978 unicodeslot=0x1201, 34979 }, 34980 [0x1202]={ 34981 category="lo", 34982 description="ETHIOPIC SYLLABLE HI", 34983 direction="l", 34984 linebreak="al", 34985 unicodeslot=0x1202, 34986 }, 34987 [0x1203]={ 34988 category="lo", 34989 description="ETHIOPIC SYLLABLE HAA", 34990 direction="l", 34991 linebreak="al", 34992 unicodeslot=0x1203, 34993 }, 34994 [0x1204]={ 34995 category="lo", 34996 description="ETHIOPIC SYLLABLE HEE", 34997 direction="l", 34998 linebreak="al", 34999 unicodeslot=0x1204, 35000 }, 35001 [0x1205]={ 35002 category="lo", 35003 description="ETHIOPIC SYLLABLE HE", 35004 direction="l", 35005 linebreak="al", 35006 unicodeslot=0x1205, 35007 }, 35008 [0x1206]={ 35009 category="lo", 35010 description="ETHIOPIC SYLLABLE HO", 35011 direction="l", 35012 linebreak="al", 35013 unicodeslot=0x1206, 35014 }, 35015 [0x1207]={ 35016 category="lo", 35017 description="ETHIOPIC SYLLABLE HOA", 35018 direction="l", 35019 linebreak="al", 35020 unicodeslot=0x1207, 35021 }, 35022 [0x1208]={ 35023 category="lo", 35024 description="ETHIOPIC SYLLABLE LA", 35025 direction="l", 35026 linebreak="al", 35027 unicodeslot=0x1208, 35028 }, 35029 [0x1209]={ 35030 category="lo", 35031 description="ETHIOPIC SYLLABLE LU", 35032 direction="l", 35033 linebreak="al", 35034 unicodeslot=0x1209, 35035 }, 35036 [0x120A]={ 35037 category="lo", 35038 description="ETHIOPIC SYLLABLE LI", 35039 direction="l", 35040 linebreak="al", 35041 unicodeslot=0x120A, 35042 }, 35043 [0x120B]={ 35044 category="lo", 35045 description="ETHIOPIC SYLLABLE LAA", 35046 direction="l", 35047 linebreak="al", 35048 unicodeslot=0x120B, 35049 }, 35050 [0x120C]={ 35051 category="lo", 35052 description="ETHIOPIC SYLLABLE LEE", 35053 direction="l", 35054 linebreak="al", 35055 unicodeslot=0x120C, 35056 }, 35057 [0x120D]={ 35058 category="lo", 35059 description="ETHIOPIC SYLLABLE LE", 35060 direction="l", 35061 linebreak="al", 35062 unicodeslot=0x120D, 35063 }, 35064 [0x120E]={ 35065 category="lo", 35066 description="ETHIOPIC SYLLABLE LO", 35067 direction="l", 35068 linebreak="al", 35069 unicodeslot=0x120E, 35070 }, 35071 [0x120F]={ 35072 category="lo", 35073 description="ETHIOPIC SYLLABLE LWA", 35074 direction="l", 35075 linebreak="al", 35076 unicodeslot=0x120F, 35077 }, 35078 [0x1210]={ 35079 category="lo", 35080 description="ETHIOPIC SYLLABLE HHA", 35081 direction="l", 35082 linebreak="al", 35083 unicodeslot=0x1210, 35084 }, 35085 [0x1211]={ 35086 category="lo", 35087 description="ETHIOPIC SYLLABLE HHU", 35088 direction="l", 35089 linebreak="al", 35090 unicodeslot=0x1211, 35091 }, 35092 [0x1212]={ 35093 category="lo", 35094 description="ETHIOPIC SYLLABLE HHI", 35095 direction="l", 35096 linebreak="al", 35097 unicodeslot=0x1212, 35098 }, 35099 [0x1213]={ 35100 category="lo", 35101 description="ETHIOPIC SYLLABLE HHAA", 35102 direction="l", 35103 linebreak="al", 35104 unicodeslot=0x1213, 35105 }, 35106 [0x1214]={ 35107 category="lo", 35108 description="ETHIOPIC SYLLABLE HHEE", 35109 direction="l", 35110 linebreak="al", 35111 unicodeslot=0x1214, 35112 }, 35113 [0x1215]={ 35114 category="lo", 35115 description="ETHIOPIC SYLLABLE HHE", 35116 direction="l", 35117 linebreak="al", 35118 unicodeslot=0x1215, 35119 }, 35120 [0x1216]={ 35121 category="lo", 35122 description="ETHIOPIC SYLLABLE HHO", 35123 direction="l", 35124 linebreak="al", 35125 unicodeslot=0x1216, 35126 }, 35127 [0x1217]={ 35128 category="lo", 35129 description="ETHIOPIC SYLLABLE HHWA", 35130 direction="l", 35131 linebreak="al", 35132 unicodeslot=0x1217, 35133 }, 35134 [0x1218]={ 35135 category="lo", 35136 description="ETHIOPIC SYLLABLE MA", 35137 direction="l", 35138 linebreak="al", 35139 unicodeslot=0x1218, 35140 }, 35141 [0x1219]={ 35142 category="lo", 35143 description="ETHIOPIC SYLLABLE MU", 35144 direction="l", 35145 linebreak="al", 35146 unicodeslot=0x1219, 35147 }, 35148 [0x121A]={ 35149 category="lo", 35150 description="ETHIOPIC SYLLABLE MI", 35151 direction="l", 35152 linebreak="al", 35153 unicodeslot=0x121A, 35154 }, 35155 [0x121B]={ 35156 category="lo", 35157 description="ETHIOPIC SYLLABLE MAA", 35158 direction="l", 35159 linebreak="al", 35160 unicodeslot=0x121B, 35161 }, 35162 [0x121C]={ 35163 category="lo", 35164 description="ETHIOPIC SYLLABLE MEE", 35165 direction="l", 35166 linebreak="al", 35167 unicodeslot=0x121C, 35168 }, 35169 [0x121D]={ 35170 category="lo", 35171 description="ETHIOPIC SYLLABLE ME", 35172 direction="l", 35173 linebreak="al", 35174 unicodeslot=0x121D, 35175 }, 35176 [0x121E]={ 35177 category="lo", 35178 description="ETHIOPIC SYLLABLE MO", 35179 direction="l", 35180 linebreak="al", 35181 unicodeslot=0x121E, 35182 }, 35183 [0x121F]={ 35184 category="lo", 35185 description="ETHIOPIC SYLLABLE MWA", 35186 direction="l", 35187 linebreak="al", 35188 unicodeslot=0x121F, 35189 }, 35190 [0x1220]={ 35191 category="lo", 35192 description="ETHIOPIC SYLLABLE SZA", 35193 direction="l", 35194 linebreak="al", 35195 unicodeslot=0x1220, 35196 }, 35197 [0x1221]={ 35198 category="lo", 35199 description="ETHIOPIC SYLLABLE SZU", 35200 direction="l", 35201 linebreak="al", 35202 unicodeslot=0x1221, 35203 }, 35204 [0x1222]={ 35205 category="lo", 35206 description="ETHIOPIC SYLLABLE SZI", 35207 direction="l", 35208 linebreak="al", 35209 unicodeslot=0x1222, 35210 }, 35211 [0x1223]={ 35212 category="lo", 35213 description="ETHIOPIC SYLLABLE SZAA", 35214 direction="l", 35215 linebreak="al", 35216 unicodeslot=0x1223, 35217 }, 35218 [0x1224]={ 35219 category="lo", 35220 description="ETHIOPIC SYLLABLE SZEE", 35221 direction="l", 35222 linebreak="al", 35223 unicodeslot=0x1224, 35224 }, 35225 [0x1225]={ 35226 category="lo", 35227 description="ETHIOPIC SYLLABLE SZE", 35228 direction="l", 35229 linebreak="al", 35230 unicodeslot=0x1225, 35231 }, 35232 [0x1226]={ 35233 category="lo", 35234 description="ETHIOPIC SYLLABLE SZO", 35235 direction="l", 35236 linebreak="al", 35237 unicodeslot=0x1226, 35238 }, 35239 [0x1227]={ 35240 category="lo", 35241 description="ETHIOPIC SYLLABLE SZWA", 35242 direction="l", 35243 linebreak="al", 35244 unicodeslot=0x1227, 35245 }, 35246 [0x1228]={ 35247 category="lo", 35248 description="ETHIOPIC SYLLABLE RA", 35249 direction="l", 35250 linebreak="al", 35251 unicodeslot=0x1228, 35252 }, 35253 [0x1229]={ 35254 category="lo", 35255 description="ETHIOPIC SYLLABLE RU", 35256 direction="l", 35257 linebreak="al", 35258 unicodeslot=0x1229, 35259 }, 35260 [0x122A]={ 35261 category="lo", 35262 description="ETHIOPIC SYLLABLE RI", 35263 direction="l", 35264 linebreak="al", 35265 unicodeslot=0x122A, 35266 }, 35267 [0x122B]={ 35268 category="lo", 35269 description="ETHIOPIC SYLLABLE RAA", 35270 direction="l", 35271 linebreak="al", 35272 unicodeslot=0x122B, 35273 }, 35274 [0x122C]={ 35275 category="lo", 35276 description="ETHIOPIC SYLLABLE REE", 35277 direction="l", 35278 linebreak="al", 35279 unicodeslot=0x122C, 35280 }, 35281 [0x122D]={ 35282 category="lo", 35283 description="ETHIOPIC SYLLABLE RE", 35284 direction="l", 35285 linebreak="al", 35286 unicodeslot=0x122D, 35287 }, 35288 [0x122E]={ 35289 category="lo", 35290 description="ETHIOPIC SYLLABLE RO", 35291 direction="l", 35292 linebreak="al", 35293 unicodeslot=0x122E, 35294 }, 35295 [0x122F]={ 35296 category="lo", 35297 description="ETHIOPIC SYLLABLE RWA", 35298 direction="l", 35299 linebreak="al", 35300 unicodeslot=0x122F, 35301 }, 35302 [0x1230]={ 35303 category="lo", 35304 description="ETHIOPIC SYLLABLE SA", 35305 direction="l", 35306 linebreak="al", 35307 unicodeslot=0x1230, 35308 }, 35309 [0x1231]={ 35310 category="lo", 35311 description="ETHIOPIC SYLLABLE SU", 35312 direction="l", 35313 linebreak="al", 35314 unicodeslot=0x1231, 35315 }, 35316 [0x1232]={ 35317 category="lo", 35318 description="ETHIOPIC SYLLABLE SI", 35319 direction="l", 35320 linebreak="al", 35321 unicodeslot=0x1232, 35322 }, 35323 [0x1233]={ 35324 category="lo", 35325 description="ETHIOPIC SYLLABLE SAA", 35326 direction="l", 35327 linebreak="al", 35328 unicodeslot=0x1233, 35329 }, 35330 [0x1234]={ 35331 category="lo", 35332 description="ETHIOPIC SYLLABLE SEE", 35333 direction="l", 35334 linebreak="al", 35335 unicodeslot=0x1234, 35336 }, 35337 [0x1235]={ 35338 category="lo", 35339 description="ETHIOPIC SYLLABLE SE", 35340 direction="l", 35341 linebreak="al", 35342 unicodeslot=0x1235, 35343 }, 35344 [0x1236]={ 35345 category="lo", 35346 description="ETHIOPIC SYLLABLE SO", 35347 direction="l", 35348 linebreak="al", 35349 unicodeslot=0x1236, 35350 }, 35351 [0x1237]={ 35352 category="lo", 35353 description="ETHIOPIC SYLLABLE SWA", 35354 direction="l", 35355 linebreak="al", 35356 unicodeslot=0x1237, 35357 }, 35358 [0x1238]={ 35359 category="lo", 35360 description="ETHIOPIC SYLLABLE SHA", 35361 direction="l", 35362 linebreak="al", 35363 unicodeslot=0x1238, 35364 }, 35365 [0x1239]={ 35366 category="lo", 35367 description="ETHIOPIC SYLLABLE SHU", 35368 direction="l", 35369 linebreak="al", 35370 unicodeslot=0x1239, 35371 }, 35372 [0x123A]={ 35373 category="lo", 35374 description="ETHIOPIC SYLLABLE SHI", 35375 direction="l", 35376 linebreak="al", 35377 unicodeslot=0x123A, 35378 }, 35379 [0x123B]={ 35380 category="lo", 35381 description="ETHIOPIC SYLLABLE SHAA", 35382 direction="l", 35383 linebreak="al", 35384 unicodeslot=0x123B, 35385 }, 35386 [0x123C]={ 35387 category="lo", 35388 description="ETHIOPIC SYLLABLE SHEE", 35389 direction="l", 35390 linebreak="al", 35391 unicodeslot=0x123C, 35392 }, 35393 [0x123D]={ 35394 category="lo", 35395 description="ETHIOPIC SYLLABLE SHE", 35396 direction="l", 35397 linebreak="al", 35398 unicodeslot=0x123D, 35399 }, 35400 [0x123E]={ 35401 category="lo", 35402 description="ETHIOPIC SYLLABLE SHO", 35403 direction="l", 35404 linebreak="al", 35405 unicodeslot=0x123E, 35406 }, 35407 [0x123F]={ 35408 category="lo", 35409 description="ETHIOPIC SYLLABLE SHWA", 35410 direction="l", 35411 linebreak="al", 35412 unicodeslot=0x123F, 35413 }, 35414 [0x1240]={ 35415 category="lo", 35416 description="ETHIOPIC SYLLABLE QA", 35417 direction="l", 35418 linebreak="al", 35419 unicodeslot=0x1240, 35420 }, 35421 [0x1241]={ 35422 category="lo", 35423 description="ETHIOPIC SYLLABLE QU", 35424 direction="l", 35425 linebreak="al", 35426 unicodeslot=0x1241, 35427 }, 35428 [0x1242]={ 35429 category="lo", 35430 description="ETHIOPIC SYLLABLE QI", 35431 direction="l", 35432 linebreak="al", 35433 unicodeslot=0x1242, 35434 }, 35435 [0x1243]={ 35436 category="lo", 35437 description="ETHIOPIC SYLLABLE QAA", 35438 direction="l", 35439 linebreak="al", 35440 unicodeslot=0x1243, 35441 }, 35442 [0x1244]={ 35443 category="lo", 35444 description="ETHIOPIC SYLLABLE QEE", 35445 direction="l", 35446 linebreak="al", 35447 unicodeslot=0x1244, 35448 }, 35449 [0x1245]={ 35450 category="lo", 35451 description="ETHIOPIC SYLLABLE QE", 35452 direction="l", 35453 linebreak="al", 35454 unicodeslot=0x1245, 35455 }, 35456 [0x1246]={ 35457 category="lo", 35458 description="ETHIOPIC SYLLABLE QO", 35459 direction="l", 35460 linebreak="al", 35461 unicodeslot=0x1246, 35462 }, 35463 [0x1247]={ 35464 category="lo", 35465 description="ETHIOPIC SYLLABLE QOA", 35466 direction="l", 35467 linebreak="al", 35468 unicodeslot=0x1247, 35469 }, 35470 [0x1248]={ 35471 category="lo", 35472 description="ETHIOPIC SYLLABLE QWA", 35473 direction="l", 35474 linebreak="al", 35475 unicodeslot=0x1248, 35476 }, 35477 [0x124A]={ 35478 category="lo", 35479 description="ETHIOPIC SYLLABLE QWI", 35480 direction="l", 35481 linebreak="al", 35482 unicodeslot=0x124A, 35483 }, 35484 [0x124B]={ 35485 category="lo", 35486 description="ETHIOPIC SYLLABLE QWAA", 35487 direction="l", 35488 linebreak="al", 35489 unicodeslot=0x124B, 35490 }, 35491 [0x124C]={ 35492 category="lo", 35493 description="ETHIOPIC SYLLABLE QWEE", 35494 direction="l", 35495 linebreak="al", 35496 unicodeslot=0x124C, 35497 }, 35498 [0x124D]={ 35499 category="lo", 35500 description="ETHIOPIC SYLLABLE QWE", 35501 direction="l", 35502 linebreak="al", 35503 unicodeslot=0x124D, 35504 }, 35505 [0x1250]={ 35506 category="lo", 35507 description="ETHIOPIC SYLLABLE QHA", 35508 direction="l", 35509 linebreak="al", 35510 unicodeslot=0x1250, 35511 }, 35512 [0x1251]={ 35513 category="lo", 35514 description="ETHIOPIC SYLLABLE QHU", 35515 direction="l", 35516 linebreak="al", 35517 unicodeslot=0x1251, 35518 }, 35519 [0x1252]={ 35520 category="lo", 35521 description="ETHIOPIC SYLLABLE QHI", 35522 direction="l", 35523 linebreak="al", 35524 unicodeslot=0x1252, 35525 }, 35526 [0x1253]={ 35527 category="lo", 35528 description="ETHIOPIC SYLLABLE QHAA", 35529 direction="l", 35530 linebreak="al", 35531 unicodeslot=0x1253, 35532 }, 35533 [0x1254]={ 35534 category="lo", 35535 description="ETHIOPIC SYLLABLE QHEE", 35536 direction="l", 35537 linebreak="al", 35538 unicodeslot=0x1254, 35539 }, 35540 [0x1255]={ 35541 category="lo", 35542 description="ETHIOPIC SYLLABLE QHE", 35543 direction="l", 35544 linebreak="al", 35545 unicodeslot=0x1255, 35546 }, 35547 [0x1256]={ 35548 category="lo", 35549 description="ETHIOPIC SYLLABLE QHO", 35550 direction="l", 35551 linebreak="al", 35552 unicodeslot=0x1256, 35553 }, 35554 [0x1258]={ 35555 category="lo", 35556 description="ETHIOPIC SYLLABLE QHWA", 35557 direction="l", 35558 linebreak="al", 35559 unicodeslot=0x1258, 35560 }, 35561 [0x125A]={ 35562 category="lo", 35563 description="ETHIOPIC SYLLABLE QHWI", 35564 direction="l", 35565 linebreak="al", 35566 unicodeslot=0x125A, 35567 }, 35568 [0x125B]={ 35569 category="lo", 35570 description="ETHIOPIC SYLLABLE QHWAA", 35571 direction="l", 35572 linebreak="al", 35573 unicodeslot=0x125B, 35574 }, 35575 [0x125C]={ 35576 category="lo", 35577 description="ETHIOPIC SYLLABLE QHWEE", 35578 direction="l", 35579 linebreak="al", 35580 unicodeslot=0x125C, 35581 }, 35582 [0x125D]={ 35583 category="lo", 35584 description="ETHIOPIC SYLLABLE QHWE", 35585 direction="l", 35586 linebreak="al", 35587 unicodeslot=0x125D, 35588 }, 35589 [0x1260]={ 35590 category="lo", 35591 description="ETHIOPIC SYLLABLE BA", 35592 direction="l", 35593 linebreak="al", 35594 unicodeslot=0x1260, 35595 }, 35596 [0x1261]={ 35597 category="lo", 35598 description="ETHIOPIC SYLLABLE BU", 35599 direction="l", 35600 linebreak="al", 35601 unicodeslot=0x1261, 35602 }, 35603 [0x1262]={ 35604 category="lo", 35605 description="ETHIOPIC SYLLABLE BI", 35606 direction="l", 35607 linebreak="al", 35608 unicodeslot=0x1262, 35609 }, 35610 [0x1263]={ 35611 category="lo", 35612 description="ETHIOPIC SYLLABLE BAA", 35613 direction="l", 35614 linebreak="al", 35615 unicodeslot=0x1263, 35616 }, 35617 [0x1264]={ 35618 category="lo", 35619 description="ETHIOPIC SYLLABLE BEE", 35620 direction="l", 35621 linebreak="al", 35622 unicodeslot=0x1264, 35623 }, 35624 [0x1265]={ 35625 category="lo", 35626 description="ETHIOPIC SYLLABLE BE", 35627 direction="l", 35628 linebreak="al", 35629 unicodeslot=0x1265, 35630 }, 35631 [0x1266]={ 35632 category="lo", 35633 description="ETHIOPIC SYLLABLE BO", 35634 direction="l", 35635 linebreak="al", 35636 unicodeslot=0x1266, 35637 }, 35638 [0x1267]={ 35639 category="lo", 35640 description="ETHIOPIC SYLLABLE BWA", 35641 direction="l", 35642 linebreak="al", 35643 unicodeslot=0x1267, 35644 }, 35645 [0x1268]={ 35646 category="lo", 35647 description="ETHIOPIC SYLLABLE VA", 35648 direction="l", 35649 linebreak="al", 35650 unicodeslot=0x1268, 35651 }, 35652 [0x1269]={ 35653 category="lo", 35654 description="ETHIOPIC SYLLABLE VU", 35655 direction="l", 35656 linebreak="al", 35657 unicodeslot=0x1269, 35658 }, 35659 [0x126A]={ 35660 category="lo", 35661 description="ETHIOPIC SYLLABLE VI", 35662 direction="l", 35663 linebreak="al", 35664 unicodeslot=0x126A, 35665 }, 35666 [0x126B]={ 35667 category="lo", 35668 description="ETHIOPIC SYLLABLE VAA", 35669 direction="l", 35670 linebreak="al", 35671 unicodeslot=0x126B, 35672 }, 35673 [0x126C]={ 35674 category="lo", 35675 description="ETHIOPIC SYLLABLE VEE", 35676 direction="l", 35677 linebreak="al", 35678 unicodeslot=0x126C, 35679 }, 35680 [0x126D]={ 35681 category="lo", 35682 description="ETHIOPIC SYLLABLE VE", 35683 direction="l", 35684 linebreak="al", 35685 unicodeslot=0x126D, 35686 }, 35687 [0x126E]={ 35688 category="lo", 35689 description="ETHIOPIC SYLLABLE VO", 35690 direction="l", 35691 linebreak="al", 35692 unicodeslot=0x126E, 35693 }, 35694 [0x126F]={ 35695 category="lo", 35696 description="ETHIOPIC SYLLABLE VWA", 35697 direction="l", 35698 linebreak="al", 35699 unicodeslot=0x126F, 35700 }, 35701 [0x1270]={ 35702 category="lo", 35703 description="ETHIOPIC SYLLABLE TA", 35704 direction="l", 35705 linebreak="al", 35706 unicodeslot=0x1270, 35707 }, 35708 [0x1271]={ 35709 category="lo", 35710 description="ETHIOPIC SYLLABLE TU", 35711 direction="l", 35712 linebreak="al", 35713 unicodeslot=0x1271, 35714 }, 35715 [0x1272]={ 35716 category="lo", 35717 description="ETHIOPIC SYLLABLE TI", 35718 direction="l", 35719 linebreak="al", 35720 unicodeslot=0x1272, 35721 }, 35722 [0x1273]={ 35723 category="lo", 35724 description="ETHIOPIC SYLLABLE TAA", 35725 direction="l", 35726 linebreak="al", 35727 unicodeslot=0x1273, 35728 }, 35729 [0x1274]={ 35730 category="lo", 35731 description="ETHIOPIC SYLLABLE TEE", 35732 direction="l", 35733 linebreak="al", 35734 unicodeslot=0x1274, 35735 }, 35736 [0x1275]={ 35737 category="lo", 35738 description="ETHIOPIC SYLLABLE TE", 35739 direction="l", 35740 linebreak="al", 35741 unicodeslot=0x1275, 35742 }, 35743 [0x1276]={ 35744 category="lo", 35745 description="ETHIOPIC SYLLABLE TO", 35746 direction="l", 35747 linebreak="al", 35748 unicodeslot=0x1276, 35749 }, 35750 [0x1277]={ 35751 category="lo", 35752 description="ETHIOPIC SYLLABLE TWA", 35753 direction="l", 35754 linebreak="al", 35755 unicodeslot=0x1277, 35756 }, 35757 [0x1278]={ 35758 category="lo", 35759 description="ETHIOPIC SYLLABLE CA", 35760 direction="l", 35761 linebreak="al", 35762 unicodeslot=0x1278, 35763 }, 35764 [0x1279]={ 35765 category="lo", 35766 description="ETHIOPIC SYLLABLE CU", 35767 direction="l", 35768 linebreak="al", 35769 unicodeslot=0x1279, 35770 }, 35771 [0x127A]={ 35772 category="lo", 35773 description="ETHIOPIC SYLLABLE CI", 35774 direction="l", 35775 linebreak="al", 35776 unicodeslot=0x127A, 35777 }, 35778 [0x127B]={ 35779 category="lo", 35780 description="ETHIOPIC SYLLABLE CAA", 35781 direction="l", 35782 linebreak="al", 35783 unicodeslot=0x127B, 35784 }, 35785 [0x127C]={ 35786 category="lo", 35787 description="ETHIOPIC SYLLABLE CEE", 35788 direction="l", 35789 linebreak="al", 35790 unicodeslot=0x127C, 35791 }, 35792 [0x127D]={ 35793 category="lo", 35794 description="ETHIOPIC SYLLABLE CE", 35795 direction="l", 35796 linebreak="al", 35797 unicodeslot=0x127D, 35798 }, 35799 [0x127E]={ 35800 category="lo", 35801 description="ETHIOPIC SYLLABLE CO", 35802 direction="l", 35803 linebreak="al", 35804 unicodeslot=0x127E, 35805 }, 35806 [0x127F]={ 35807 category="lo", 35808 description="ETHIOPIC SYLLABLE CWA", 35809 direction="l", 35810 linebreak="al", 35811 unicodeslot=0x127F, 35812 }, 35813 [0x1280]={ 35814 category="lo", 35815 description="ETHIOPIC SYLLABLE XA", 35816 direction="l", 35817 linebreak="al", 35818 unicodeslot=0x1280, 35819 }, 35820 [0x1281]={ 35821 category="lo", 35822 description="ETHIOPIC SYLLABLE XU", 35823 direction="l", 35824 linebreak="al", 35825 unicodeslot=0x1281, 35826 }, 35827 [0x1282]={ 35828 category="lo", 35829 description="ETHIOPIC SYLLABLE XI", 35830 direction="l", 35831 linebreak="al", 35832 unicodeslot=0x1282, 35833 }, 35834 [0x1283]={ 35835 category="lo", 35836 description="ETHIOPIC SYLLABLE XAA", 35837 direction="l", 35838 linebreak="al", 35839 unicodeslot=0x1283, 35840 }, 35841 [0x1284]={ 35842 category="lo", 35843 description="ETHIOPIC SYLLABLE XEE", 35844 direction="l", 35845 linebreak="al", 35846 unicodeslot=0x1284, 35847 }, 35848 [0x1285]={ 35849 category="lo", 35850 description="ETHIOPIC SYLLABLE XE", 35851 direction="l", 35852 linebreak="al", 35853 unicodeslot=0x1285, 35854 }, 35855 [0x1286]={ 35856 category="lo", 35857 description="ETHIOPIC SYLLABLE XO", 35858 direction="l", 35859 linebreak="al", 35860 unicodeslot=0x1286, 35861 }, 35862 [0x1287]={ 35863 category="lo", 35864 description="ETHIOPIC SYLLABLE XOA", 35865 direction="l", 35866 linebreak="al", 35867 unicodeslot=0x1287, 35868 }, 35869 [0x1288]={ 35870 category="lo", 35871 description="ETHIOPIC SYLLABLE XWA", 35872 direction="l", 35873 linebreak="al", 35874 unicodeslot=0x1288, 35875 }, 35876 [0x128A]={ 35877 category="lo", 35878 description="ETHIOPIC SYLLABLE XWI", 35879 direction="l", 35880 linebreak="al", 35881 unicodeslot=0x128A, 35882 }, 35883 [0x128B]={ 35884 category="lo", 35885 description="ETHIOPIC SYLLABLE XWAA", 35886 direction="l", 35887 linebreak="al", 35888 unicodeslot=0x128B, 35889 }, 35890 [0x128C]={ 35891 category="lo", 35892 description="ETHIOPIC SYLLABLE XWEE", 35893 direction="l", 35894 linebreak="al", 35895 unicodeslot=0x128C, 35896 }, 35897 [0x128D]={ 35898 category="lo", 35899 description="ETHIOPIC SYLLABLE XWE", 35900 direction="l", 35901 linebreak="al", 35902 unicodeslot=0x128D, 35903 }, 35904 [0x1290]={ 35905 category="lo", 35906 description="ETHIOPIC SYLLABLE NA", 35907 direction="l", 35908 linebreak="al", 35909 unicodeslot=0x1290, 35910 }, 35911 [0x1291]={ 35912 category="lo", 35913 description="ETHIOPIC SYLLABLE NU", 35914 direction="l", 35915 linebreak="al", 35916 unicodeslot=0x1291, 35917 }, 35918 [0x1292]={ 35919 category="lo", 35920 description="ETHIOPIC SYLLABLE NI", 35921 direction="l", 35922 linebreak="al", 35923 unicodeslot=0x1292, 35924 }, 35925 [0x1293]={ 35926 category="lo", 35927 description="ETHIOPIC SYLLABLE NAA", 35928 direction="l", 35929 linebreak="al", 35930 unicodeslot=0x1293, 35931 }, 35932 [0x1294]={ 35933 category="lo", 35934 description="ETHIOPIC SYLLABLE NEE", 35935 direction="l", 35936 linebreak="al", 35937 unicodeslot=0x1294, 35938 }, 35939 [0x1295]={ 35940 category="lo", 35941 description="ETHIOPIC SYLLABLE NE", 35942 direction="l", 35943 linebreak="al", 35944 unicodeslot=0x1295, 35945 }, 35946 [0x1296]={ 35947 category="lo", 35948 description="ETHIOPIC SYLLABLE NO", 35949 direction="l", 35950 linebreak="al", 35951 unicodeslot=0x1296, 35952 }, 35953 [0x1297]={ 35954 category="lo", 35955 description="ETHIOPIC SYLLABLE NWA", 35956 direction="l", 35957 linebreak="al", 35958 unicodeslot=0x1297, 35959 }, 35960 [0x1298]={ 35961 category="lo", 35962 description="ETHIOPIC SYLLABLE NYA", 35963 direction="l", 35964 linebreak="al", 35965 unicodeslot=0x1298, 35966 }, 35967 [0x1299]={ 35968 category="lo", 35969 description="ETHIOPIC SYLLABLE NYU", 35970 direction="l", 35971 linebreak="al", 35972 unicodeslot=0x1299, 35973 }, 35974 [0x129A]={ 35975 category="lo", 35976 description="ETHIOPIC SYLLABLE NYI", 35977 direction="l", 35978 linebreak="al", 35979 unicodeslot=0x129A, 35980 }, 35981 [0x129B]={ 35982 category="lo", 35983 description="ETHIOPIC SYLLABLE NYAA", 35984 direction="l", 35985 linebreak="al", 35986 unicodeslot=0x129B, 35987 }, 35988 [0x129C]={ 35989 category="lo", 35990 description="ETHIOPIC SYLLABLE NYEE", 35991 direction="l", 35992 linebreak="al", 35993 unicodeslot=0x129C, 35994 }, 35995 [0x129D]={ 35996 category="lo", 35997 description="ETHIOPIC SYLLABLE NYE", 35998 direction="l", 35999 linebreak="al", 36000 unicodeslot=0x129D, 36001 }, 36002 [0x129E]={ 36003 category="lo", 36004 description="ETHIOPIC SYLLABLE NYO", 36005 direction="l", 36006 linebreak="al", 36007 unicodeslot=0x129E, 36008 }, 36009 [0x129F]={ 36010 category="lo", 36011 description="ETHIOPIC SYLLABLE NYWA", 36012 direction="l", 36013 linebreak="al", 36014 unicodeslot=0x129F, 36015 }, 36016 [0x12A0]={ 36017 category="lo", 36018 description="ETHIOPIC SYLLABLE GLOTTAL A", 36019 direction="l", 36020 linebreak="al", 36021 unicodeslot=0x12A0, 36022 }, 36023 [0x12A1]={ 36024 category="lo", 36025 description="ETHIOPIC SYLLABLE GLOTTAL U", 36026 direction="l", 36027 linebreak="al", 36028 unicodeslot=0x12A1, 36029 }, 36030 [0x12A2]={ 36031 category="lo", 36032 description="ETHIOPIC SYLLABLE GLOTTAL I", 36033 direction="l", 36034 linebreak="al", 36035 unicodeslot=0x12A2, 36036 }, 36037 [0x12A3]={ 36038 category="lo", 36039 description="ETHIOPIC SYLLABLE GLOTTAL AA", 36040 direction="l", 36041 linebreak="al", 36042 unicodeslot=0x12A3, 36043 }, 36044 [0x12A4]={ 36045 category="lo", 36046 description="ETHIOPIC SYLLABLE GLOTTAL EE", 36047 direction="l", 36048 linebreak="al", 36049 unicodeslot=0x12A4, 36050 }, 36051 [0x12A5]={ 36052 category="lo", 36053 description="ETHIOPIC SYLLABLE GLOTTAL E", 36054 direction="l", 36055 linebreak="al", 36056 unicodeslot=0x12A5, 36057 }, 36058 [0x12A6]={ 36059 category="lo", 36060 description="ETHIOPIC SYLLABLE GLOTTAL O", 36061 direction="l", 36062 linebreak="al", 36063 unicodeslot=0x12A6, 36064 }, 36065 [0x12A7]={ 36066 category="lo", 36067 description="ETHIOPIC SYLLABLE GLOTTAL WA", 36068 direction="l", 36069 linebreak="al", 36070 unicodeslot=0x12A7, 36071 }, 36072 [0x12A8]={ 36073 category="lo", 36074 description="ETHIOPIC SYLLABLE KA", 36075 direction="l", 36076 linebreak="al", 36077 unicodeslot=0x12A8, 36078 }, 36079 [0x12A9]={ 36080 category="lo", 36081 description="ETHIOPIC SYLLABLE KU", 36082 direction="l", 36083 linebreak="al", 36084 unicodeslot=0x12A9, 36085 }, 36086 [0x12AA]={ 36087 category="lo", 36088 description="ETHIOPIC SYLLABLE KI", 36089 direction="l", 36090 linebreak="al", 36091 unicodeslot=0x12AA, 36092 }, 36093 [0x12AB]={ 36094 category="lo", 36095 description="ETHIOPIC SYLLABLE KAA", 36096 direction="l", 36097 linebreak="al", 36098 unicodeslot=0x12AB, 36099 }, 36100 [0x12AC]={ 36101 category="lo", 36102 description="ETHIOPIC SYLLABLE KEE", 36103 direction="l", 36104 linebreak="al", 36105 unicodeslot=0x12AC, 36106 }, 36107 [0x12AD]={ 36108 category="lo", 36109 description="ETHIOPIC SYLLABLE KE", 36110 direction="l", 36111 linebreak="al", 36112 unicodeslot=0x12AD, 36113 }, 36114 [0x12AE]={ 36115 category="lo", 36116 description="ETHIOPIC SYLLABLE KO", 36117 direction="l", 36118 linebreak="al", 36119 unicodeslot=0x12AE, 36120 }, 36121 [0x12AF]={ 36122 category="lo", 36123 description="ETHIOPIC SYLLABLE KOA", 36124 direction="l", 36125 linebreak="al", 36126 unicodeslot=0x12AF, 36127 }, 36128 [0x12B0]={ 36129 category="lo", 36130 description="ETHIOPIC SYLLABLE KWA", 36131 direction="l", 36132 linebreak="al", 36133 unicodeslot=0x12B0, 36134 }, 36135 [0x12B2]={ 36136 category="lo", 36137 description="ETHIOPIC SYLLABLE KWI", 36138 direction="l", 36139 linebreak="al", 36140 unicodeslot=0x12B2, 36141 }, 36142 [0x12B3]={ 36143 category="lo", 36144 description="ETHIOPIC SYLLABLE KWAA", 36145 direction="l", 36146 linebreak="al", 36147 unicodeslot=0x12B3, 36148 }, 36149 [0x12B4]={ 36150 category="lo", 36151 description="ETHIOPIC SYLLABLE KWEE", 36152 direction="l", 36153 linebreak="al", 36154 unicodeslot=0x12B4, 36155 }, 36156 [0x12B5]={ 36157 category="lo", 36158 description="ETHIOPIC SYLLABLE KWE", 36159 direction="l", 36160 linebreak="al", 36161 unicodeslot=0x12B5, 36162 }, 36163 [0x12B8]={ 36164 category="lo", 36165 description="ETHIOPIC SYLLABLE KXA", 36166 direction="l", 36167 linebreak="al", 36168 unicodeslot=0x12B8, 36169 }, 36170 [0x12B9]={ 36171 category="lo", 36172 description="ETHIOPIC SYLLABLE KXU", 36173 direction="l", 36174 linebreak="al", 36175 unicodeslot=0x12B9, 36176 }, 36177 [0x12BA]={ 36178 category="lo", 36179 description="ETHIOPIC SYLLABLE KXI", 36180 direction="l", 36181 linebreak="al", 36182 unicodeslot=0x12BA, 36183 }, 36184 [0x12BB]={ 36185 category="lo", 36186 description="ETHIOPIC SYLLABLE KXAA", 36187 direction="l", 36188 linebreak="al", 36189 unicodeslot=0x12BB, 36190 }, 36191 [0x12BC]={ 36192 category="lo", 36193 description="ETHIOPIC SYLLABLE KXEE", 36194 direction="l", 36195 linebreak="al", 36196 unicodeslot=0x12BC, 36197 }, 36198 [0x12BD]={ 36199 category="lo", 36200 description="ETHIOPIC SYLLABLE KXE", 36201 direction="l", 36202 linebreak="al", 36203 unicodeslot=0x12BD, 36204 }, 36205 [0x12BE]={ 36206 category="lo", 36207 description="ETHIOPIC SYLLABLE KXO", 36208 direction="l", 36209 linebreak="al", 36210 unicodeslot=0x12BE, 36211 }, 36212 [0x12C0]={ 36213 category="lo", 36214 description="ETHIOPIC SYLLABLE KXWA", 36215 direction="l", 36216 linebreak="al", 36217 unicodeslot=0x12C0, 36218 }, 36219 [0x12C2]={ 36220 category="lo", 36221 description="ETHIOPIC SYLLABLE KXWI", 36222 direction="l", 36223 linebreak="al", 36224 unicodeslot=0x12C2, 36225 }, 36226 [0x12C3]={ 36227 category="lo", 36228 description="ETHIOPIC SYLLABLE KXWAA", 36229 direction="l", 36230 linebreak="al", 36231 unicodeslot=0x12C3, 36232 }, 36233 [0x12C4]={ 36234 category="lo", 36235 description="ETHIOPIC SYLLABLE KXWEE", 36236 direction="l", 36237 linebreak="al", 36238 unicodeslot=0x12C4, 36239 }, 36240 [0x12C5]={ 36241 category="lo", 36242 description="ETHIOPIC SYLLABLE KXWE", 36243 direction="l", 36244 linebreak="al", 36245 unicodeslot=0x12C5, 36246 }, 36247 [0x12C8]={ 36248 category="lo", 36249 description="ETHIOPIC SYLLABLE WA", 36250 direction="l", 36251 linebreak="al", 36252 unicodeslot=0x12C8, 36253 }, 36254 [0x12C9]={ 36255 category="lo", 36256 description="ETHIOPIC SYLLABLE WU", 36257 direction="l", 36258 linebreak="al", 36259 unicodeslot=0x12C9, 36260 }, 36261 [0x12CA]={ 36262 category="lo", 36263 description="ETHIOPIC SYLLABLE WI", 36264 direction="l", 36265 linebreak="al", 36266 unicodeslot=0x12CA, 36267 }, 36268 [0x12CB]={ 36269 category="lo", 36270 description="ETHIOPIC SYLLABLE WAA", 36271 direction="l", 36272 linebreak="al", 36273 unicodeslot=0x12CB, 36274 }, 36275 [0x12CC]={ 36276 category="lo", 36277 description="ETHIOPIC SYLLABLE WEE", 36278 direction="l", 36279 linebreak="al", 36280 unicodeslot=0x12CC, 36281 }, 36282 [0x12CD]={ 36283 category="lo", 36284 description="ETHIOPIC SYLLABLE WE", 36285 direction="l", 36286 linebreak="al", 36287 unicodeslot=0x12CD, 36288 }, 36289 [0x12CE]={ 36290 category="lo", 36291 description="ETHIOPIC SYLLABLE WO", 36292 direction="l", 36293 linebreak="al", 36294 unicodeslot=0x12CE, 36295 }, 36296 [0x12CF]={ 36297 category="lo", 36298 description="ETHIOPIC SYLLABLE WOA", 36299 direction="l", 36300 linebreak="al", 36301 unicodeslot=0x12CF, 36302 }, 36303 [0x12D0]={ 36304 category="lo", 36305 description="ETHIOPIC SYLLABLE PHARYNGEAL A", 36306 direction="l", 36307 linebreak="al", 36308 unicodeslot=0x12D0, 36309 }, 36310 [0x12D1]={ 36311 category="lo", 36312 description="ETHIOPIC SYLLABLE PHARYNGEAL U", 36313 direction="l", 36314 linebreak="al", 36315 unicodeslot=0x12D1, 36316 }, 36317 [0x12D2]={ 36318 category="lo", 36319 description="ETHIOPIC SYLLABLE PHARYNGEAL I", 36320 direction="l", 36321 linebreak="al", 36322 unicodeslot=0x12D2, 36323 }, 36324 [0x12D3]={ 36325 category="lo", 36326 description="ETHIOPIC SYLLABLE PHARYNGEAL AA", 36327 direction="l", 36328 linebreak="al", 36329 unicodeslot=0x12D3, 36330 }, 36331 [0x12D4]={ 36332 category="lo", 36333 description="ETHIOPIC SYLLABLE PHARYNGEAL EE", 36334 direction="l", 36335 linebreak="al", 36336 unicodeslot=0x12D4, 36337 }, 36338 [0x12D5]={ 36339 category="lo", 36340 description="ETHIOPIC SYLLABLE PHARYNGEAL E", 36341 direction="l", 36342 linebreak="al", 36343 unicodeslot=0x12D5, 36344 }, 36345 [0x12D6]={ 36346 category="lo", 36347 description="ETHIOPIC SYLLABLE PHARYNGEAL O", 36348 direction="l", 36349 linebreak="al", 36350 unicodeslot=0x12D6, 36351 }, 36352 [0x12D8]={ 36353 category="lo", 36354 description="ETHIOPIC SYLLABLE ZA", 36355 direction="l", 36356 linebreak="al", 36357 unicodeslot=0x12D8, 36358 }, 36359 [0x12D9]={ 36360 category="lo", 36361 description="ETHIOPIC SYLLABLE ZU", 36362 direction="l", 36363 linebreak="al", 36364 unicodeslot=0x12D9, 36365 }, 36366 [0x12DA]={ 36367 category="lo", 36368 description="ETHIOPIC SYLLABLE ZI", 36369 direction="l", 36370 linebreak="al", 36371 unicodeslot=0x12DA, 36372 }, 36373 [0x12DB]={ 36374 category="lo", 36375 description="ETHIOPIC SYLLABLE ZAA", 36376 direction="l", 36377 linebreak="al", 36378 unicodeslot=0x12DB, 36379 }, 36380 [0x12DC]={ 36381 category="lo", 36382 description="ETHIOPIC SYLLABLE ZEE", 36383 direction="l", 36384 linebreak="al", 36385 unicodeslot=0x12DC, 36386 }, 36387 [0x12DD]={ 36388 category="lo", 36389 description="ETHIOPIC SYLLABLE ZE", 36390 direction="l", 36391 linebreak="al", 36392 unicodeslot=0x12DD, 36393 }, 36394 [0x12DE]={ 36395 category="lo", 36396 description="ETHIOPIC SYLLABLE ZO", 36397 direction="l", 36398 linebreak="al", 36399 unicodeslot=0x12DE, 36400 }, 36401 [0x12DF]={ 36402 category="lo", 36403 description="ETHIOPIC SYLLABLE ZWA", 36404 direction="l", 36405 linebreak="al", 36406 unicodeslot=0x12DF, 36407 }, 36408 [0x12E0]={ 36409 category="lo", 36410 description="ETHIOPIC SYLLABLE ZHA", 36411 direction="l", 36412 linebreak="al", 36413 unicodeslot=0x12E0, 36414 }, 36415 [0x12E1]={ 36416 category="lo", 36417 description="ETHIOPIC SYLLABLE ZHU", 36418 direction="l", 36419 linebreak="al", 36420 unicodeslot=0x12E1, 36421 }, 36422 [0x12E2]={ 36423 category="lo", 36424 description="ETHIOPIC SYLLABLE ZHI", 36425 direction="l", 36426 linebreak="al", 36427 unicodeslot=0x12E2, 36428 }, 36429 [0x12E3]={ 36430 category="lo", 36431 description="ETHIOPIC SYLLABLE ZHAA", 36432 direction="l", 36433 linebreak="al", 36434 unicodeslot=0x12E3, 36435 }, 36436 [0x12E4]={ 36437 category="lo", 36438 description="ETHIOPIC SYLLABLE ZHEE", 36439 direction="l", 36440 linebreak="al", 36441 unicodeslot=0x12E4, 36442 }, 36443 [0x12E5]={ 36444 category="lo", 36445 description="ETHIOPIC SYLLABLE ZHE", 36446 direction="l", 36447 linebreak="al", 36448 unicodeslot=0x12E5, 36449 }, 36450 [0x12E6]={ 36451 category="lo", 36452 description="ETHIOPIC SYLLABLE ZHO", 36453 direction="l", 36454 linebreak="al", 36455 unicodeslot=0x12E6, 36456 }, 36457 [0x12E7]={ 36458 category="lo", 36459 description="ETHIOPIC SYLLABLE ZHWA", 36460 direction="l", 36461 linebreak="al", 36462 unicodeslot=0x12E7, 36463 }, 36464 [0x12E8]={ 36465 category="lo", 36466 description="ETHIOPIC SYLLABLE YA", 36467 direction="l", 36468 linebreak="al", 36469 unicodeslot=0x12E8, 36470 }, 36471 [0x12E9]={ 36472 category="lo", 36473 description="ETHIOPIC SYLLABLE YU", 36474 direction="l", 36475 linebreak="al", 36476 unicodeslot=0x12E9, 36477 }, 36478 [0x12EA]={ 36479 category="lo", 36480 description="ETHIOPIC SYLLABLE YI", 36481 direction="l", 36482 linebreak="al", 36483 unicodeslot=0x12EA, 36484 }, 36485 [0x12EB]={ 36486 category="lo", 36487 description="ETHIOPIC SYLLABLE YAA", 36488 direction="l", 36489 linebreak="al", 36490 unicodeslot=0x12EB, 36491 }, 36492 [0x12EC]={ 36493 category="lo", 36494 description="ETHIOPIC SYLLABLE YEE", 36495 direction="l", 36496 linebreak="al", 36497 unicodeslot=0x12EC, 36498 }, 36499 [0x12ED]={ 36500 category="lo", 36501 description="ETHIOPIC SYLLABLE YE", 36502 direction="l", 36503 linebreak="al", 36504 unicodeslot=0x12ED, 36505 }, 36506 [0x12EE]={ 36507 category="lo", 36508 description="ETHIOPIC SYLLABLE YO", 36509 direction="l", 36510 linebreak="al", 36511 unicodeslot=0x12EE, 36512 }, 36513 [0x12EF]={ 36514 category="lo", 36515 description="ETHIOPIC SYLLABLE YOA", 36516 direction="l", 36517 linebreak="al", 36518 unicodeslot=0x12EF, 36519 }, 36520 [0x12F0]={ 36521 category="lo", 36522 description="ETHIOPIC SYLLABLE DA", 36523 direction="l", 36524 linebreak="al", 36525 unicodeslot=0x12F0, 36526 }, 36527 [0x12F1]={ 36528 category="lo", 36529 description="ETHIOPIC SYLLABLE DU", 36530 direction="l", 36531 linebreak="al", 36532 unicodeslot=0x12F1, 36533 }, 36534 [0x12F2]={ 36535 category="lo", 36536 description="ETHIOPIC SYLLABLE DI", 36537 direction="l", 36538 linebreak="al", 36539 unicodeslot=0x12F2, 36540 }, 36541 [0x12F3]={ 36542 category="lo", 36543 description="ETHIOPIC SYLLABLE DAA", 36544 direction="l", 36545 linebreak="al", 36546 unicodeslot=0x12F3, 36547 }, 36548 [0x12F4]={ 36549 category="lo", 36550 description="ETHIOPIC SYLLABLE DEE", 36551 direction="l", 36552 linebreak="al", 36553 unicodeslot=0x12F4, 36554 }, 36555 [0x12F5]={ 36556 category="lo", 36557 description="ETHIOPIC SYLLABLE DE", 36558 direction="l", 36559 linebreak="al", 36560 unicodeslot=0x12F5, 36561 }, 36562 [0x12F6]={ 36563 category="lo", 36564 description="ETHIOPIC SYLLABLE DO", 36565 direction="l", 36566 linebreak="al", 36567 unicodeslot=0x12F6, 36568 }, 36569 [0x12F7]={ 36570 category="lo", 36571 description="ETHIOPIC SYLLABLE DWA", 36572 direction="l", 36573 linebreak="al", 36574 unicodeslot=0x12F7, 36575 }, 36576 [0x12F8]={ 36577 category="lo", 36578 description="ETHIOPIC SYLLABLE DDA", 36579 direction="l", 36580 linebreak="al", 36581 unicodeslot=0x12F8, 36582 }, 36583 [0x12F9]={ 36584 category="lo", 36585 description="ETHIOPIC SYLLABLE DDU", 36586 direction="l", 36587 linebreak="al", 36588 unicodeslot=0x12F9, 36589 }, 36590 [0x12FA]={ 36591 category="lo", 36592 description="ETHIOPIC SYLLABLE DDI", 36593 direction="l", 36594 linebreak="al", 36595 unicodeslot=0x12FA, 36596 }, 36597 [0x12FB]={ 36598 category="lo", 36599 description="ETHIOPIC SYLLABLE DDAA", 36600 direction="l", 36601 linebreak="al", 36602 unicodeslot=0x12FB, 36603 }, 36604 [0x12FC]={ 36605 category="lo", 36606 description="ETHIOPIC SYLLABLE DDEE", 36607 direction="l", 36608 linebreak="al", 36609 unicodeslot=0x12FC, 36610 }, 36611 [0x12FD]={ 36612 category="lo", 36613 description="ETHIOPIC SYLLABLE DDE", 36614 direction="l", 36615 linebreak="al", 36616 unicodeslot=0x12FD, 36617 }, 36618 [0x12FE]={ 36619 category="lo", 36620 description="ETHIOPIC SYLLABLE DDO", 36621 direction="l", 36622 linebreak="al", 36623 unicodeslot=0x12FE, 36624 }, 36625 [0x12FF]={ 36626 category="lo", 36627 description="ETHIOPIC SYLLABLE DDWA", 36628 direction="l", 36629 linebreak="al", 36630 unicodeslot=0x12FF, 36631 }, 36632 [0x1300]={ 36633 category="lo", 36634 description="ETHIOPIC SYLLABLE JA", 36635 direction="l", 36636 linebreak="al", 36637 unicodeslot=0x1300, 36638 }, 36639 [0x1301]={ 36640 category="lo", 36641 description="ETHIOPIC SYLLABLE JU", 36642 direction="l", 36643 linebreak="al", 36644 unicodeslot=0x1301, 36645 }, 36646 [0x1302]={ 36647 category="lo", 36648 description="ETHIOPIC SYLLABLE JI", 36649 direction="l", 36650 linebreak="al", 36651 unicodeslot=0x1302, 36652 }, 36653 [0x1303]={ 36654 category="lo", 36655 description="ETHIOPIC SYLLABLE JAA", 36656 direction="l", 36657 linebreak="al", 36658 unicodeslot=0x1303, 36659 }, 36660 [0x1304]={ 36661 category="lo", 36662 description="ETHIOPIC SYLLABLE JEE", 36663 direction="l", 36664 linebreak="al", 36665 unicodeslot=0x1304, 36666 }, 36667 [0x1305]={ 36668 category="lo", 36669 description="ETHIOPIC SYLLABLE JE", 36670 direction="l", 36671 linebreak="al", 36672 unicodeslot=0x1305, 36673 }, 36674 [0x1306]={ 36675 category="lo", 36676 description="ETHIOPIC SYLLABLE JO", 36677 direction="l", 36678 linebreak="al", 36679 unicodeslot=0x1306, 36680 }, 36681 [0x1307]={ 36682 category="lo", 36683 description="ETHIOPIC SYLLABLE JWA", 36684 direction="l", 36685 linebreak="al", 36686 unicodeslot=0x1307, 36687 }, 36688 [0x1308]={ 36689 category="lo", 36690 description="ETHIOPIC SYLLABLE GA", 36691 direction="l", 36692 linebreak="al", 36693 unicodeslot=0x1308, 36694 }, 36695 [0x1309]={ 36696 category="lo", 36697 description="ETHIOPIC SYLLABLE GU", 36698 direction="l", 36699 linebreak="al", 36700 unicodeslot=0x1309, 36701 }, 36702 [0x130A]={ 36703 category="lo", 36704 description="ETHIOPIC SYLLABLE GI", 36705 direction="l", 36706 linebreak="al", 36707 unicodeslot=0x130A, 36708 }, 36709 [0x130B]={ 36710 category="lo", 36711 description="ETHIOPIC SYLLABLE GAA", 36712 direction="l", 36713 linebreak="al", 36714 unicodeslot=0x130B, 36715 }, 36716 [0x130C]={ 36717 category="lo", 36718 description="ETHIOPIC SYLLABLE GEE", 36719 direction="l", 36720 linebreak="al", 36721 unicodeslot=0x130C, 36722 }, 36723 [0x130D]={ 36724 category="lo", 36725 description="ETHIOPIC SYLLABLE GE", 36726 direction="l", 36727 linebreak="al", 36728 unicodeslot=0x130D, 36729 }, 36730 [0x130E]={ 36731 category="lo", 36732 description="ETHIOPIC SYLLABLE GO", 36733 direction="l", 36734 linebreak="al", 36735 unicodeslot=0x130E, 36736 }, 36737 [0x130F]={ 36738 category="lo", 36739 description="ETHIOPIC SYLLABLE GOA", 36740 direction="l", 36741 linebreak="al", 36742 unicodeslot=0x130F, 36743 }, 36744 [0x1310]={ 36745 category="lo", 36746 description="ETHIOPIC SYLLABLE GWA", 36747 direction="l", 36748 linebreak="al", 36749 unicodeslot=0x1310, 36750 }, 36751 [0x1312]={ 36752 category="lo", 36753 description="ETHIOPIC SYLLABLE GWI", 36754 direction="l", 36755 linebreak="al", 36756 unicodeslot=0x1312, 36757 }, 36758 [0x1313]={ 36759 category="lo", 36760 description="ETHIOPIC SYLLABLE GWAA", 36761 direction="l", 36762 linebreak="al", 36763 unicodeslot=0x1313, 36764 }, 36765 [0x1314]={ 36766 category="lo", 36767 description="ETHIOPIC SYLLABLE GWEE", 36768 direction="l", 36769 linebreak="al", 36770 unicodeslot=0x1314, 36771 }, 36772 [0x1315]={ 36773 category="lo", 36774 description="ETHIOPIC SYLLABLE GWE", 36775 direction="l", 36776 linebreak="al", 36777 unicodeslot=0x1315, 36778 }, 36779 [0x1318]={ 36780 category="lo", 36781 description="ETHIOPIC SYLLABLE GGA", 36782 direction="l", 36783 linebreak="al", 36784 unicodeslot=0x1318, 36785 }, 36786 [0x1319]={ 36787 category="lo", 36788 description="ETHIOPIC SYLLABLE GGU", 36789 direction="l", 36790 linebreak="al", 36791 unicodeslot=0x1319, 36792 }, 36793 [0x131A]={ 36794 category="lo", 36795 description="ETHIOPIC SYLLABLE GGI", 36796 direction="l", 36797 linebreak="al", 36798 unicodeslot=0x131A, 36799 }, 36800 [0x131B]={ 36801 category="lo", 36802 description="ETHIOPIC SYLLABLE GGAA", 36803 direction="l", 36804 linebreak="al", 36805 unicodeslot=0x131B, 36806 }, 36807 [0x131C]={ 36808 category="lo", 36809 description="ETHIOPIC SYLLABLE GGEE", 36810 direction="l", 36811 linebreak="al", 36812 unicodeslot=0x131C, 36813 }, 36814 [0x131D]={ 36815 category="lo", 36816 description="ETHIOPIC SYLLABLE GGE", 36817 direction="l", 36818 linebreak="al", 36819 unicodeslot=0x131D, 36820 }, 36821 [0x131E]={ 36822 category="lo", 36823 description="ETHIOPIC SYLLABLE GGO", 36824 direction="l", 36825 linebreak="al", 36826 unicodeslot=0x131E, 36827 }, 36828 [0x131F]={ 36829 category="lo", 36830 description="ETHIOPIC SYLLABLE GGWAA", 36831 direction="l", 36832 linebreak="al", 36833 unicodeslot=0x131F, 36834 }, 36835 [0x1320]={ 36836 category="lo", 36837 description="ETHIOPIC SYLLABLE THA", 36838 direction="l", 36839 linebreak="al", 36840 unicodeslot=0x1320, 36841 }, 36842 [0x1321]={ 36843 category="lo", 36844 description="ETHIOPIC SYLLABLE THU", 36845 direction="l", 36846 linebreak="al", 36847 unicodeslot=0x1321, 36848 }, 36849 [0x1322]={ 36850 category="lo", 36851 description="ETHIOPIC SYLLABLE THI", 36852 direction="l", 36853 linebreak="al", 36854 unicodeslot=0x1322, 36855 }, 36856 [0x1323]={ 36857 category="lo", 36858 description="ETHIOPIC SYLLABLE THAA", 36859 direction="l", 36860 linebreak="al", 36861 unicodeslot=0x1323, 36862 }, 36863 [0x1324]={ 36864 category="lo", 36865 description="ETHIOPIC SYLLABLE THEE", 36866 direction="l", 36867 linebreak="al", 36868 unicodeslot=0x1324, 36869 }, 36870 [0x1325]={ 36871 category="lo", 36872 description="ETHIOPIC SYLLABLE THE", 36873 direction="l", 36874 linebreak="al", 36875 unicodeslot=0x1325, 36876 }, 36877 [0x1326]={ 36878 category="lo", 36879 description="ETHIOPIC SYLLABLE THO", 36880 direction="l", 36881 linebreak="al", 36882 unicodeslot=0x1326, 36883 }, 36884 [0x1327]={ 36885 category="lo", 36886 description="ETHIOPIC SYLLABLE THWA", 36887 direction="l", 36888 linebreak="al", 36889 unicodeslot=0x1327, 36890 }, 36891 [0x1328]={ 36892 category="lo", 36893 description="ETHIOPIC SYLLABLE CHA", 36894 direction="l", 36895 linebreak="al", 36896 unicodeslot=0x1328, 36897 }, 36898 [0x1329]={ 36899 category="lo", 36900 description="ETHIOPIC SYLLABLE CHU", 36901 direction="l", 36902 linebreak="al", 36903 unicodeslot=0x1329, 36904 }, 36905 [0x132A]={ 36906 category="lo", 36907 description="ETHIOPIC SYLLABLE CHI", 36908 direction="l", 36909 linebreak="al", 36910 unicodeslot=0x132A, 36911 }, 36912 [0x132B]={ 36913 category="lo", 36914 description="ETHIOPIC SYLLABLE CHAA", 36915 direction="l", 36916 linebreak="al", 36917 unicodeslot=0x132B, 36918 }, 36919 [0x132C]={ 36920 category="lo", 36921 description="ETHIOPIC SYLLABLE CHEE", 36922 direction="l", 36923 linebreak="al", 36924 unicodeslot=0x132C, 36925 }, 36926 [0x132D]={ 36927 category="lo", 36928 description="ETHIOPIC SYLLABLE CHE", 36929 direction="l", 36930 linebreak="al", 36931 unicodeslot=0x132D, 36932 }, 36933 [0x132E]={ 36934 category="lo", 36935 description="ETHIOPIC SYLLABLE CHO", 36936 direction="l", 36937 linebreak="al", 36938 unicodeslot=0x132E, 36939 }, 36940 [0x132F]={ 36941 category="lo", 36942 description="ETHIOPIC SYLLABLE CHWA", 36943 direction="l", 36944 linebreak="al", 36945 unicodeslot=0x132F, 36946 }, 36947 [0x1330]={ 36948 category="lo", 36949 description="ETHIOPIC SYLLABLE PHA", 36950 direction="l", 36951 linebreak="al", 36952 unicodeslot=0x1330, 36953 }, 36954 [0x1331]={ 36955 category="lo", 36956 description="ETHIOPIC SYLLABLE PHU", 36957 direction="l", 36958 linebreak="al", 36959 unicodeslot=0x1331, 36960 }, 36961 [0x1332]={ 36962 category="lo", 36963 description="ETHIOPIC SYLLABLE PHI", 36964 direction="l", 36965 linebreak="al", 36966 unicodeslot=0x1332, 36967 }, 36968 [0x1333]={ 36969 category="lo", 36970 description="ETHIOPIC SYLLABLE PHAA", 36971 direction="l", 36972 linebreak="al", 36973 unicodeslot=0x1333, 36974 }, 36975 [0x1334]={ 36976 category="lo", 36977 description="ETHIOPIC SYLLABLE PHEE", 36978 direction="l", 36979 linebreak="al", 36980 unicodeslot=0x1334, 36981 }, 36982 [0x1335]={ 36983 category="lo", 36984 description="ETHIOPIC SYLLABLE PHE", 36985 direction="l", 36986 linebreak="al", 36987 unicodeslot=0x1335, 36988 }, 36989 [0x1336]={ 36990 category="lo", 36991 description="ETHIOPIC SYLLABLE PHO", 36992 direction="l", 36993 linebreak="al", 36994 unicodeslot=0x1336, 36995 }, 36996 [0x1337]={ 36997 category="lo", 36998 description="ETHIOPIC SYLLABLE PHWA", 36999 direction="l", 37000 linebreak="al", 37001 unicodeslot=0x1337, 37002 }, 37003 [0x1338]={ 37004 category="lo", 37005 description="ETHIOPIC SYLLABLE TSA", 37006 direction="l", 37007 linebreak="al", 37008 unicodeslot=0x1338, 37009 }, 37010 [0x1339]={ 37011 category="lo", 37012 description="ETHIOPIC SYLLABLE TSU", 37013 direction="l", 37014 linebreak="al", 37015 unicodeslot=0x1339, 37016 }, 37017 [0x133A]={ 37018 category="lo", 37019 description="ETHIOPIC SYLLABLE TSI", 37020 direction="l", 37021 linebreak="al", 37022 unicodeslot=0x133A, 37023 }, 37024 [0x133B]={ 37025 category="lo", 37026 description="ETHIOPIC SYLLABLE TSAA", 37027 direction="l", 37028 linebreak="al", 37029 unicodeslot=0x133B, 37030 }, 37031 [0x133C]={ 37032 category="lo", 37033 description="ETHIOPIC SYLLABLE TSEE", 37034 direction="l", 37035 linebreak="al", 37036 unicodeslot=0x133C, 37037 }, 37038 [0x133D]={ 37039 category="lo", 37040 description="ETHIOPIC SYLLABLE TSE", 37041 direction="l", 37042 linebreak="al", 37043 unicodeslot=0x133D, 37044 }, 37045 [0x133E]={ 37046 category="lo", 37047 description="ETHIOPIC SYLLABLE TSO", 37048 direction="l", 37049 linebreak="al", 37050 unicodeslot=0x133E, 37051 }, 37052 [0x133F]={ 37053 category="lo", 37054 description="ETHIOPIC SYLLABLE TSWA", 37055 direction="l", 37056 linebreak="al", 37057 unicodeslot=0x133F, 37058 }, 37059 [0x1340]={ 37060 category="lo", 37061 description="ETHIOPIC SYLLABLE TZA", 37062 direction="l", 37063 linebreak="al", 37064 unicodeslot=0x1340, 37065 }, 37066 [0x1341]={ 37067 category="lo", 37068 description="ETHIOPIC SYLLABLE TZU", 37069 direction="l", 37070 linebreak="al", 37071 unicodeslot=0x1341, 37072 }, 37073 [0x1342]={ 37074 category="lo", 37075 description="ETHIOPIC SYLLABLE TZI", 37076 direction="l", 37077 linebreak="al", 37078 unicodeslot=0x1342, 37079 }, 37080 [0x1343]={ 37081 category="lo", 37082 description="ETHIOPIC SYLLABLE TZAA", 37083 direction="l", 37084 linebreak="al", 37085 unicodeslot=0x1343, 37086 }, 37087 [0x1344]={ 37088 category="lo", 37089 description="ETHIOPIC SYLLABLE TZEE", 37090 direction="l", 37091 linebreak="al", 37092 unicodeslot=0x1344, 37093 }, 37094 [0x1345]={ 37095 category="lo", 37096 description="ETHIOPIC SYLLABLE TZE", 37097 direction="l", 37098 linebreak="al", 37099 unicodeslot=0x1345, 37100 }, 37101 [0x1346]={ 37102 category="lo", 37103 description="ETHIOPIC SYLLABLE TZO", 37104 direction="l", 37105 linebreak="al", 37106 unicodeslot=0x1346, 37107 }, 37108 [0x1347]={ 37109 category="lo", 37110 description="ETHIOPIC SYLLABLE TZOA", 37111 direction="l", 37112 linebreak="al", 37113 unicodeslot=0x1347, 37114 }, 37115 [0x1348]={ 37116 category="lo", 37117 description="ETHIOPIC SYLLABLE FA", 37118 direction="l", 37119 linebreak="al", 37120 unicodeslot=0x1348, 37121 }, 37122 [0x1349]={ 37123 category="lo", 37124 description="ETHIOPIC SYLLABLE FU", 37125 direction="l", 37126 linebreak="al", 37127 unicodeslot=0x1349, 37128 }, 37129 [0x134A]={ 37130 category="lo", 37131 description="ETHIOPIC SYLLABLE FI", 37132 direction="l", 37133 linebreak="al", 37134 unicodeslot=0x134A, 37135 }, 37136 [0x134B]={ 37137 category="lo", 37138 description="ETHIOPIC SYLLABLE FAA", 37139 direction="l", 37140 linebreak="al", 37141 unicodeslot=0x134B, 37142 }, 37143 [0x134C]={ 37144 category="lo", 37145 description="ETHIOPIC SYLLABLE FEE", 37146 direction="l", 37147 linebreak="al", 37148 unicodeslot=0x134C, 37149 }, 37150 [0x134D]={ 37151 category="lo", 37152 description="ETHIOPIC SYLLABLE FE", 37153 direction="l", 37154 linebreak="al", 37155 unicodeslot=0x134D, 37156 }, 37157 [0x134E]={ 37158 category="lo", 37159 description="ETHIOPIC SYLLABLE FO", 37160 direction="l", 37161 linebreak="al", 37162 unicodeslot=0x134E, 37163 }, 37164 [0x134F]={ 37165 category="lo", 37166 description="ETHIOPIC SYLLABLE FWA", 37167 direction="l", 37168 linebreak="al", 37169 unicodeslot=0x134F, 37170 }, 37171 [0x1350]={ 37172 category="lo", 37173 description="ETHIOPIC SYLLABLE PA", 37174 direction="l", 37175 linebreak="al", 37176 unicodeslot=0x1350, 37177 }, 37178 [0x1351]={ 37179 category="lo", 37180 description="ETHIOPIC SYLLABLE PU", 37181 direction="l", 37182 linebreak="al", 37183 unicodeslot=0x1351, 37184 }, 37185 [0x1352]={ 37186 category="lo", 37187 description="ETHIOPIC SYLLABLE PI", 37188 direction="l", 37189 linebreak="al", 37190 unicodeslot=0x1352, 37191 }, 37192 [0x1353]={ 37193 category="lo", 37194 description="ETHIOPIC SYLLABLE PAA", 37195 direction="l", 37196 linebreak="al", 37197 unicodeslot=0x1353, 37198 }, 37199 [0x1354]={ 37200 category="lo", 37201 description="ETHIOPIC SYLLABLE PEE", 37202 direction="l", 37203 linebreak="al", 37204 unicodeslot=0x1354, 37205 }, 37206 [0x1355]={ 37207 category="lo", 37208 description="ETHIOPIC SYLLABLE PE", 37209 direction="l", 37210 linebreak="al", 37211 unicodeslot=0x1355, 37212 }, 37213 [0x1356]={ 37214 category="lo", 37215 description="ETHIOPIC SYLLABLE PO", 37216 direction="l", 37217 linebreak="al", 37218 unicodeslot=0x1356, 37219 }, 37220 [0x1357]={ 37221 category="lo", 37222 description="ETHIOPIC SYLLABLE PWA", 37223 direction="l", 37224 linebreak="al", 37225 unicodeslot=0x1357, 37226 }, 37227 [0x1358]={ 37228 category="lo", 37229 description="ETHIOPIC SYLLABLE RYA", 37230 direction="l", 37231 linebreak="al", 37232 unicodeslot=0x1358, 37233 }, 37234 [0x1359]={ 37235 category="lo", 37236 description="ETHIOPIC SYLLABLE MYA", 37237 direction="l", 37238 linebreak="al", 37239 unicodeslot=0x1359, 37240 }, 37241 [0x135A]={ 37242 category="lo", 37243 description="ETHIOPIC SYLLABLE FYA", 37244 direction="l", 37245 linebreak="al", 37246 unicodeslot=0x135A, 37247 }, 37248 [0x135D]={ 37249 category="mn", 37250 combining=0xE6, 37251 description="ETHIOPIC COMBINING GEMINATION AND VOWEL LENGTH MARK", 37252 direction="nsm", 37253 linebreak="cm", 37254 unicodeslot=0x135D, 37255 }, 37256 [0x135E]={ 37257 category="mn", 37258 combining=0xE6, 37259 description="ETHIOPIC COMBINING VOWEL LENGTH MARK", 37260 direction="nsm", 37261 linebreak="cm", 37262 unicodeslot=0x135E, 37263 }, 37264 [0x135F]={ 37265 category="mn", 37266 combining=0xE6, 37267 description="ETHIOPIC COMBINING GEMINATION MARK", 37268 direction="nsm", 37269 linebreak="cm", 37270 unicodeslot=0x135F, 37271 }, 37272 [0x1360]={ 37273 category="so", 37274 description="ETHIOPIC SECTION MARK", 37275 direction="l", 37276 linebreak="al", 37277 unicodeslot=0x1360, 37278 }, 37279 [0x1361]={ 37280 category="po", 37281 description="ETHIOPIC WORDSPACE", 37282 direction="l", 37283 linebreak="ba", 37284 unicodeslot=0x1361, 37285 }, 37286 [0x1362]={ 37287 category="po", 37288 description="ETHIOPIC FULL STOP", 37289 direction="l", 37290 linebreak="al", 37291 unicodeslot=0x1362, 37292 }, 37293 [0x1363]={ 37294 category="po", 37295 description="ETHIOPIC COMMA", 37296 direction="l", 37297 linebreak="al", 37298 unicodeslot=0x1363, 37299 }, 37300 [0x1364]={ 37301 category="po", 37302 description="ETHIOPIC SEMICOLON", 37303 direction="l", 37304 linebreak="al", 37305 unicodeslot=0x1364, 37306 }, 37307 [0x1365]={ 37308 category="po", 37309 description="ETHIOPIC COLON", 37310 direction="l", 37311 linebreak="al", 37312 unicodeslot=0x1365, 37313 }, 37314 [0x1366]={ 37315 category="po", 37316 description="ETHIOPIC PREFACE COLON", 37317 direction="l", 37318 linebreak="al", 37319 unicodeslot=0x1366, 37320 }, 37321 [0x1367]={ 37322 category="po", 37323 description="ETHIOPIC QUESTION MARK", 37324 direction="l", 37325 linebreak="al", 37326 unicodeslot=0x1367, 37327 }, 37328 [0x1368]={ 37329 category="po", 37330 description="ETHIOPIC PARAGRAPH SEPARATOR", 37331 direction="l", 37332 linebreak="al", 37333 unicodeslot=0x1368, 37334 }, 37335 [0x1369]={ 37336 category="no", 37337 description="ETHIOPIC DIGIT ONE", 37338 direction="l", 37339 linebreak="al", 37340 unicodeslot=0x1369, 37341 }, 37342 [0x136A]={ 37343 category="no", 37344 description="ETHIOPIC DIGIT TWO", 37345 direction="l", 37346 linebreak="al", 37347 unicodeslot=0x136A, 37348 }, 37349 [0x136B]={ 37350 category="no", 37351 description="ETHIOPIC DIGIT THREE", 37352 direction="l", 37353 linebreak="al", 37354 unicodeslot=0x136B, 37355 }, 37356 [0x136C]={ 37357 category="no", 37358 description="ETHIOPIC DIGIT FOUR", 37359 direction="l", 37360 linebreak="al", 37361 unicodeslot=0x136C, 37362 }, 37363 [0x136D]={ 37364 category="no", 37365 description="ETHIOPIC DIGIT FIVE", 37366 direction="l", 37367 linebreak="al", 37368 unicodeslot=0x136D, 37369 }, 37370 [0x136E]={ 37371 category="no", 37372 description="ETHIOPIC DIGIT SIX", 37373 direction="l", 37374 linebreak="al", 37375 unicodeslot=0x136E, 37376 }, 37377 [0x136F]={ 37378 category="no", 37379 description="ETHIOPIC DIGIT SEVEN", 37380 direction="l", 37381 linebreak="al", 37382 unicodeslot=0x136F, 37383 }, 37384 [0x1370]={ 37385 category="no", 37386 description="ETHIOPIC DIGIT EIGHT", 37387 direction="l", 37388 linebreak="al", 37389 unicodeslot=0x1370, 37390 }, 37391 [0x1371]={ 37392 category="no", 37393 description="ETHIOPIC DIGIT NINE", 37394 direction="l", 37395 linebreak="al", 37396 unicodeslot=0x1371, 37397 }, 37398 [0x1372]={ 37399 category="no", 37400 description="ETHIOPIC NUMBER TEN", 37401 direction="l", 37402 linebreak="al", 37403 unicodeslot=0x1372, 37404 }, 37405 [0x1373]={ 37406 category="no", 37407 description="ETHIOPIC NUMBER TWENTY", 37408 direction="l", 37409 linebreak="al", 37410 unicodeslot=0x1373, 37411 }, 37412 [0x1374]={ 37413 category="no", 37414 description="ETHIOPIC NUMBER THIRTY", 37415 direction="l", 37416 linebreak="al", 37417 unicodeslot=0x1374, 37418 }, 37419 [0x1375]={ 37420 category="no", 37421 description="ETHIOPIC NUMBER FORTY", 37422 direction="l", 37423 linebreak="al", 37424 unicodeslot=0x1375, 37425 }, 37426 [0x1376]={ 37427 category="no", 37428 description="ETHIOPIC NUMBER FIFTY", 37429 direction="l", 37430 linebreak="al", 37431 unicodeslot=0x1376, 37432 }, 37433 [0x1377]={ 37434 category="no", 37435 description="ETHIOPIC NUMBER SIXTY", 37436 direction="l", 37437 linebreak="al", 37438 unicodeslot=0x1377, 37439 }, 37440 [0x1378]={ 37441 category="no", 37442 description="ETHIOPIC NUMBER SEVENTY", 37443 direction="l", 37444 linebreak="al", 37445 unicodeslot=0x1378, 37446 }, 37447 [0x1379]={ 37448 category="no", 37449 description="ETHIOPIC NUMBER EIGHTY", 37450 direction="l", 37451 linebreak="al", 37452 unicodeslot=0x1379, 37453 }, 37454 [0x137A]={ 37455 category="no", 37456 description="ETHIOPIC NUMBER NINETY", 37457 direction="l", 37458 linebreak="al", 37459 unicodeslot=0x137A, 37460 }, 37461 [0x137B]={ 37462 category="no", 37463 description="ETHIOPIC NUMBER HUNDRED", 37464 direction="l", 37465 linebreak="al", 37466 unicodeslot=0x137B, 37467 }, 37468 [0x137C]={ 37469 category="no", 37470 description="ETHIOPIC NUMBER TEN THOUSAND", 37471 direction="l", 37472 linebreak="al", 37473 unicodeslot=0x137C, 37474 }, 37475 [0x1380]={ 37476 category="lo", 37477 description="ETHIOPIC SYLLABLE SEBATBEIT MWA", 37478 direction="l", 37479 linebreak="al", 37480 unicodeslot=0x1380, 37481 }, 37482 [0x1381]={ 37483 category="lo", 37484 description="ETHIOPIC SYLLABLE MWI", 37485 direction="l", 37486 linebreak="al", 37487 unicodeslot=0x1381, 37488 }, 37489 [0x1382]={ 37490 category="lo", 37491 description="ETHIOPIC SYLLABLE MWEE", 37492 direction="l", 37493 linebreak="al", 37494 unicodeslot=0x1382, 37495 }, 37496 [0x1383]={ 37497 category="lo", 37498 description="ETHIOPIC SYLLABLE MWE", 37499 direction="l", 37500 linebreak="al", 37501 unicodeslot=0x1383, 37502 }, 37503 [0x1384]={ 37504 category="lo", 37505 description="ETHIOPIC SYLLABLE SEBATBEIT BWA", 37506 direction="l", 37507 linebreak="al", 37508 unicodeslot=0x1384, 37509 }, 37510 [0x1385]={ 37511 category="lo", 37512 description="ETHIOPIC SYLLABLE BWI", 37513 direction="l", 37514 linebreak="al", 37515 unicodeslot=0x1385, 37516 }, 37517 [0x1386]={ 37518 category="lo", 37519 description="ETHIOPIC SYLLABLE BWEE", 37520 direction="l", 37521 linebreak="al", 37522 unicodeslot=0x1386, 37523 }, 37524 [0x1387]={ 37525 category="lo", 37526 description="ETHIOPIC SYLLABLE BWE", 37527 direction="l", 37528 linebreak="al", 37529 unicodeslot=0x1387, 37530 }, 37531 [0x1388]={ 37532 category="lo", 37533 description="ETHIOPIC SYLLABLE SEBATBEIT FWA", 37534 direction="l", 37535 linebreak="al", 37536 unicodeslot=0x1388, 37537 }, 37538 [0x1389]={ 37539 category="lo", 37540 description="ETHIOPIC SYLLABLE FWI", 37541 direction="l", 37542 linebreak="al", 37543 unicodeslot=0x1389, 37544 }, 37545 [0x138A]={ 37546 category="lo", 37547 description="ETHIOPIC SYLLABLE FWEE", 37548 direction="l", 37549 linebreak="al", 37550 unicodeslot=0x138A, 37551 }, 37552 [0x138B]={ 37553 category="lo", 37554 description="ETHIOPIC SYLLABLE FWE", 37555 direction="l", 37556 linebreak="al", 37557 unicodeslot=0x138B, 37558 }, 37559 [0x138C]={ 37560 category="lo", 37561 description="ETHIOPIC SYLLABLE SEBATBEIT PWA", 37562 direction="l", 37563 linebreak="al", 37564 unicodeslot=0x138C, 37565 }, 37566 [0x138D]={ 37567 category="lo", 37568 description="ETHIOPIC SYLLABLE PWI", 37569 direction="l", 37570 linebreak="al", 37571 unicodeslot=0x138D, 37572 }, 37573 [0x138E]={ 37574 category="lo", 37575 description="ETHIOPIC SYLLABLE PWEE", 37576 direction="l", 37577 linebreak="al", 37578 unicodeslot=0x138E, 37579 }, 37580 [0x138F]={ 37581 category="lo", 37582 description="ETHIOPIC SYLLABLE PWE", 37583 direction="l", 37584 linebreak="al", 37585 unicodeslot=0x138F, 37586 }, 37587 [0x1390]={ 37588 category="so", 37589 description="ETHIOPIC TONAL MARK YIZET", 37590 direction="on", 37591 linebreak="al", 37592 unicodeslot=0x1390, 37593 }, 37594 [0x1391]={ 37595 category="so", 37596 description="ETHIOPIC TONAL MARK DERET", 37597 direction="on", 37598 linebreak="al", 37599 unicodeslot=0x1391, 37600 }, 37601 [0x1392]={ 37602 category="so", 37603 description="ETHIOPIC TONAL MARK RIKRIK", 37604 direction="on", 37605 linebreak="al", 37606 unicodeslot=0x1392, 37607 }, 37608 [0x1393]={ 37609 category="so", 37610 description="ETHIOPIC TONAL MARK SHORT RIKRIK", 37611 direction="on", 37612 linebreak="al", 37613 unicodeslot=0x1393, 37614 }, 37615 [0x1394]={ 37616 category="so", 37617 description="ETHIOPIC TONAL MARK DIFAT", 37618 direction="on", 37619 linebreak="al", 37620 unicodeslot=0x1394, 37621 }, 37622 [0x1395]={ 37623 category="so", 37624 description="ETHIOPIC TONAL MARK KENAT", 37625 direction="on", 37626 linebreak="al", 37627 unicodeslot=0x1395, 37628 }, 37629 [0x1396]={ 37630 category="so", 37631 description="ETHIOPIC TONAL MARK CHIRET", 37632 direction="on", 37633 linebreak="al", 37634 unicodeslot=0x1396, 37635 }, 37636 [0x1397]={ 37637 category="so", 37638 description="ETHIOPIC TONAL MARK HIDET", 37639 direction="on", 37640 linebreak="al", 37641 unicodeslot=0x1397, 37642 }, 37643 [0x1398]={ 37644 category="so", 37645 description="ETHIOPIC TONAL MARK DERET-HIDET", 37646 direction="on", 37647 linebreak="al", 37648 unicodeslot=0x1398, 37649 }, 37650 [0x1399]={ 37651 category="so", 37652 description="ETHIOPIC TONAL MARK KURT", 37653 direction="on", 37654 linebreak="al", 37655 unicodeslot=0x1399, 37656 }, 37657 [0x13A0]={ 37658 category="lo", 37659 description="CHEROKEE LETTER A", 37660 direction="l", 37661 linebreak="al", 37662 unicodeslot=0x13A0, 37663 }, 37664 [0x13A1]={ 37665 category="lo", 37666 description="CHEROKEE LETTER E", 37667 direction="l", 37668 linebreak="al", 37669 unicodeslot=0x13A1, 37670 }, 37671 [0x13A2]={ 37672 category="lo", 37673 description="CHEROKEE LETTER I", 37674 direction="l", 37675 linebreak="al", 37676 unicodeslot=0x13A2, 37677 }, 37678 [0x13A3]={ 37679 category="lo", 37680 description="CHEROKEE LETTER O", 37681 direction="l", 37682 linebreak="al", 37683 unicodeslot=0x13A3, 37684 }, 37685 [0x13A4]={ 37686 category="lo", 37687 description="CHEROKEE LETTER U", 37688 direction="l", 37689 linebreak="al", 37690 unicodeslot=0x13A4, 37691 }, 37692 [0x13A5]={ 37693 category="lo", 37694 description="CHEROKEE LETTER V", 37695 direction="l", 37696 linebreak="al", 37697 unicodeslot=0x13A5, 37698 }, 37699 [0x13A6]={ 37700 category="lo", 37701 description="CHEROKEE LETTER GA", 37702 direction="l", 37703 linebreak="al", 37704 unicodeslot=0x13A6, 37705 }, 37706 [0x13A7]={ 37707 category="lo", 37708 description="CHEROKEE LETTER KA", 37709 direction="l", 37710 linebreak="al", 37711 unicodeslot=0x13A7, 37712 }, 37713 [0x13A8]={ 37714 category="lo", 37715 description="CHEROKEE LETTER GE", 37716 direction="l", 37717 linebreak="al", 37718 unicodeslot=0x13A8, 37719 }, 37720 [0x13A9]={ 37721 category="lo", 37722 description="CHEROKEE LETTER GI", 37723 direction="l", 37724 linebreak="al", 37725 unicodeslot=0x13A9, 37726 }, 37727 [0x13AA]={ 37728 category="lo", 37729 description="CHEROKEE LETTER GO", 37730 direction="l", 37731 linebreak="al", 37732 unicodeslot=0x13AA, 37733 }, 37734 [0x13AB]={ 37735 category="lo", 37736 description="CHEROKEE LETTER GU", 37737 direction="l", 37738 linebreak="al", 37739 unicodeslot=0x13AB, 37740 }, 37741 [0x13AC]={ 37742 category="lo", 37743 description="CHEROKEE LETTER GV", 37744 direction="l", 37745 linebreak="al", 37746 unicodeslot=0x13AC, 37747 }, 37748 [0x13AD]={ 37749 category="lo", 37750 description="CHEROKEE LETTER HA", 37751 direction="l", 37752 linebreak="al", 37753 unicodeslot=0x13AD, 37754 }, 37755 [0x13AE]={ 37756 category="lo", 37757 description="CHEROKEE LETTER HE", 37758 direction="l", 37759 linebreak="al", 37760 unicodeslot=0x13AE, 37761 }, 37762 [0x13AF]={ 37763 category="lo", 37764 description="CHEROKEE LETTER HI", 37765 direction="l", 37766 linebreak="al", 37767 unicodeslot=0x13AF, 37768 }, 37769 [0x13B0]={ 37770 category="lo", 37771 description="CHEROKEE LETTER HO", 37772 direction="l", 37773 linebreak="al", 37774 unicodeslot=0x13B0, 37775 }, 37776 [0x13B1]={ 37777 category="lo", 37778 description="CHEROKEE LETTER HU", 37779 direction="l", 37780 linebreak="al", 37781 unicodeslot=0x13B1, 37782 }, 37783 [0x13B2]={ 37784 category="lo", 37785 description="CHEROKEE LETTER HV", 37786 direction="l", 37787 linebreak="al", 37788 unicodeslot=0x13B2, 37789 }, 37790 [0x13B3]={ 37791 category="lo", 37792 description="CHEROKEE LETTER LA", 37793 direction="l", 37794 linebreak="al", 37795 unicodeslot=0x13B3, 37796 }, 37797 [0x13B4]={ 37798 category="lo", 37799 description="CHEROKEE LETTER LE", 37800 direction="l", 37801 linebreak="al", 37802 unicodeslot=0x13B4, 37803 }, 37804 [0x13B5]={ 37805 category="lo", 37806 description="CHEROKEE LETTER LI", 37807 direction="l", 37808 linebreak="al", 37809 unicodeslot=0x13B5, 37810 }, 37811 [0x13B6]={ 37812 category="lo", 37813 description="CHEROKEE LETTER LO", 37814 direction="l", 37815 linebreak="al", 37816 unicodeslot=0x13B6, 37817 }, 37818 [0x13B7]={ 37819 category="lo", 37820 description="CHEROKEE LETTER LU", 37821 direction="l", 37822 linebreak="al", 37823 unicodeslot=0x13B7, 37824 }, 37825 [0x13B8]={ 37826 category="lo", 37827 description="CHEROKEE LETTER LV", 37828 direction="l", 37829 linebreak="al", 37830 unicodeslot=0x13B8, 37831 }, 37832 [0x13B9]={ 37833 category="lo", 37834 description="CHEROKEE LETTER MA", 37835 direction="l", 37836 linebreak="al", 37837 unicodeslot=0x13B9, 37838 }, 37839 [0x13BA]={ 37840 category="lo", 37841 description="CHEROKEE LETTER ME", 37842 direction="l", 37843 linebreak="al", 37844 unicodeslot=0x13BA, 37845 }, 37846 [0x13BB]={ 37847 category="lo", 37848 description="CHEROKEE LETTER MI", 37849 direction="l", 37850 linebreak="al", 37851 unicodeslot=0x13BB, 37852 }, 37853 [0x13BC]={ 37854 category="lo", 37855 description="CHEROKEE LETTER MO", 37856 direction="l", 37857 linebreak="al", 37858 unicodeslot=0x13BC, 37859 }, 37860 [0x13BD]={ 37861 category="lo", 37862 description="CHEROKEE LETTER MU", 37863 direction="l", 37864 linebreak="al", 37865 unicodeslot=0x13BD, 37866 }, 37867 [0x13BE]={ 37868 category="lo", 37869 description="CHEROKEE LETTER NA", 37870 direction="l", 37871 linebreak="al", 37872 unicodeslot=0x13BE, 37873 }, 37874 [0x13BF]={ 37875 category="lo", 37876 description="CHEROKEE LETTER HNA", 37877 direction="l", 37878 linebreak="al", 37879 unicodeslot=0x13BF, 37880 }, 37881 [0x13C0]={ 37882 category="lo", 37883 description="CHEROKEE LETTER NAH", 37884 direction="l", 37885 linebreak="al", 37886 unicodeslot=0x13C0, 37887 }, 37888 [0x13C1]={ 37889 category="lo", 37890 description="CHEROKEE LETTER NE", 37891 direction="l", 37892 linebreak="al", 37893 unicodeslot=0x13C1, 37894 }, 37895 [0x13C2]={ 37896 category="lo", 37897 description="CHEROKEE LETTER NI", 37898 direction="l", 37899 linebreak="al", 37900 unicodeslot=0x13C2, 37901 }, 37902 [0x13C3]={ 37903 category="lo", 37904 description="CHEROKEE LETTER NO", 37905 direction="l", 37906 linebreak="al", 37907 unicodeslot=0x13C3, 37908 }, 37909 [0x13C4]={ 37910 category="lo", 37911 description="CHEROKEE LETTER NU", 37912 direction="l", 37913 linebreak="al", 37914 unicodeslot=0x13C4, 37915 }, 37916 [0x13C5]={ 37917 category="lo", 37918 description="CHEROKEE LETTER NV", 37919 direction="l", 37920 linebreak="al", 37921 unicodeslot=0x13C5, 37922 }, 37923 [0x13C6]={ 37924 category="lo", 37925 description="CHEROKEE LETTER QUA", 37926 direction="l", 37927 linebreak="al", 37928 unicodeslot=0x13C6, 37929 }, 37930 [0x13C7]={ 37931 category="lo", 37932 description="CHEROKEE LETTER QUE", 37933 direction="l", 37934 linebreak="al", 37935 unicodeslot=0x13C7, 37936 }, 37937 [0x13C8]={ 37938 category="lo", 37939 description="CHEROKEE LETTER QUI", 37940 direction="l", 37941 linebreak="al", 37942 unicodeslot=0x13C8, 37943 }, 37944 [0x13C9]={ 37945 category="lo", 37946 description="CHEROKEE LETTER QUO", 37947 direction="l", 37948 linebreak="al", 37949 unicodeslot=0x13C9, 37950 }, 37951 [0x13CA]={ 37952 category="lo", 37953 description="CHEROKEE LETTER QUU", 37954 direction="l", 37955 linebreak="al", 37956 unicodeslot=0x13CA, 37957 }, 37958 [0x13CB]={ 37959 category="lo", 37960 description="CHEROKEE LETTER QUV", 37961 direction="l", 37962 linebreak="al", 37963 unicodeslot=0x13CB, 37964 }, 37965 [0x13CC]={ 37966 category="lo", 37967 description="CHEROKEE LETTER SA", 37968 direction="l", 37969 linebreak="al", 37970 unicodeslot=0x13CC, 37971 }, 37972 [0x13CD]={ 37973 category="lo", 37974 description="CHEROKEE LETTER S", 37975 direction="l", 37976 linebreak="al", 37977 unicodeslot=0x13CD, 37978 }, 37979 [0x13CE]={ 37980 category="lo", 37981 description="CHEROKEE LETTER SE", 37982 direction="l", 37983 linebreak="al", 37984 unicodeslot=0x13CE, 37985 }, 37986 [0x13CF]={ 37987 category="lo", 37988 description="CHEROKEE LETTER SI", 37989 direction="l", 37990 linebreak="al", 37991 unicodeslot=0x13CF, 37992 }, 37993 [0x13D0]={ 37994 category="lo", 37995 description="CHEROKEE LETTER SO", 37996 direction="l", 37997 linebreak="al", 37998 unicodeslot=0x13D0, 37999 }, 38000 [0x13D1]={ 38001 category="lo", 38002 description="CHEROKEE LETTER SU", 38003 direction="l", 38004 linebreak="al", 38005 unicodeslot=0x13D1, 38006 }, 38007 [0x13D2]={ 38008 category="lo", 38009 description="CHEROKEE LETTER SV", 38010 direction="l", 38011 linebreak="al", 38012 unicodeslot=0x13D2, 38013 }, 38014 [0x13D3]={ 38015 category="lo", 38016 description="CHEROKEE LETTER DA", 38017 direction="l", 38018 linebreak="al", 38019 unicodeslot=0x13D3, 38020 }, 38021 [0x13D4]={ 38022 category="lo", 38023 description="CHEROKEE LETTER TA", 38024 direction="l", 38025 linebreak="al", 38026 unicodeslot=0x13D4, 38027 }, 38028 [0x13D5]={ 38029 category="lo", 38030 description="CHEROKEE LETTER DE", 38031 direction="l", 38032 linebreak="al", 38033 unicodeslot=0x13D5, 38034 }, 38035 [0x13D6]={ 38036 category="lo", 38037 description="CHEROKEE LETTER TE", 38038 direction="l", 38039 linebreak="al", 38040 unicodeslot=0x13D6, 38041 }, 38042 [0x13D7]={ 38043 category="lo", 38044 description="CHEROKEE LETTER DI", 38045 direction="l", 38046 linebreak="al", 38047 unicodeslot=0x13D7, 38048 }, 38049 [0x13D8]={ 38050 category="lo", 38051 description="CHEROKEE LETTER TI", 38052 direction="l", 38053 linebreak="al", 38054 unicodeslot=0x13D8, 38055 }, 38056 [0x13D9]={ 38057 category="lo", 38058 description="CHEROKEE LETTER DO", 38059 direction="l", 38060 linebreak="al", 38061 unicodeslot=0x13D9, 38062 }, 38063 [0x13DA]={ 38064 category="lo", 38065 description="CHEROKEE LETTER DU", 38066 direction="l", 38067 linebreak="al", 38068 unicodeslot=0x13DA, 38069 }, 38070 [0x13DB]={ 38071 category="lo", 38072 description="CHEROKEE LETTER DV", 38073 direction="l", 38074 linebreak="al", 38075 unicodeslot=0x13DB, 38076 }, 38077 [0x13DC]={ 38078 category="lo", 38079 description="CHEROKEE LETTER DLA", 38080 direction="l", 38081 linebreak="al", 38082 unicodeslot=0x13DC, 38083 }, 38084 [0x13DD]={ 38085 category="lo", 38086 description="CHEROKEE LETTER TLA", 38087 direction="l", 38088 linebreak="al", 38089 unicodeslot=0x13DD, 38090 }, 38091 [0x13DE]={ 38092 category="lo", 38093 description="CHEROKEE LETTER TLE", 38094 direction="l", 38095 linebreak="al", 38096 unicodeslot=0x13DE, 38097 }, 38098 [0x13DF]={ 38099 category="lo", 38100 description="CHEROKEE LETTER TLI", 38101 direction="l", 38102 linebreak="al", 38103 unicodeslot=0x13DF, 38104 }, 38105 [0x13E0]={ 38106 category="lo", 38107 description="CHEROKEE LETTER TLO", 38108 direction="l", 38109 linebreak="al", 38110 unicodeslot=0x13E0, 38111 }, 38112 [0x13E1]={ 38113 category="lo", 38114 description="CHEROKEE LETTER TLU", 38115 direction="l", 38116 linebreak="al", 38117 unicodeslot=0x13E1, 38118 }, 38119 [0x13E2]={ 38120 category="lo", 38121 description="CHEROKEE LETTER TLV", 38122 direction="l", 38123 linebreak="al", 38124 unicodeslot=0x13E2, 38125 }, 38126 [0x13E3]={ 38127 category="lo", 38128 description="CHEROKEE LETTER TSA", 38129 direction="l", 38130 linebreak="al", 38131 unicodeslot=0x13E3, 38132 }, 38133 [0x13E4]={ 38134 category="lo", 38135 description="CHEROKEE LETTER TSE", 38136 direction="l", 38137 linebreak="al", 38138 unicodeslot=0x13E4, 38139 }, 38140 [0x13E5]={ 38141 category="lo", 38142 description="CHEROKEE LETTER TSI", 38143 direction="l", 38144 linebreak="al", 38145 unicodeslot=0x13E5, 38146 }, 38147 [0x13E6]={ 38148 category="lo", 38149 description="CHEROKEE LETTER TSO", 38150 direction="l", 38151 linebreak="al", 38152 unicodeslot=0x13E6, 38153 }, 38154 [0x13E7]={ 38155 category="lo", 38156 description="CHEROKEE LETTER TSU", 38157 direction="l", 38158 linebreak="al", 38159 unicodeslot=0x13E7, 38160 }, 38161 [0x13E8]={ 38162 category="lo", 38163 description="CHEROKEE LETTER TSV", 38164 direction="l", 38165 linebreak="al", 38166 unicodeslot=0x13E8, 38167 }, 38168 [0x13E9]={ 38169 category="lo", 38170 description="CHEROKEE LETTER WA", 38171 direction="l", 38172 linebreak="al", 38173 unicodeslot=0x13E9, 38174 }, 38175 [0x13EA]={ 38176 category="lo", 38177 description="CHEROKEE LETTER WE", 38178 direction="l", 38179 linebreak="al", 38180 unicodeslot=0x13EA, 38181 }, 38182 [0x13EB]={ 38183 category="lo", 38184 description="CHEROKEE LETTER WI", 38185 direction="l", 38186 linebreak="al", 38187 unicodeslot=0x13EB, 38188 }, 38189 [0x13EC]={ 38190 category="lo", 38191 description="CHEROKEE LETTER WO", 38192 direction="l", 38193 linebreak="al", 38194 unicodeslot=0x13EC, 38195 }, 38196 [0x13ED]={ 38197 category="lo", 38198 description="CHEROKEE LETTER WU", 38199 direction="l", 38200 linebreak="al", 38201 unicodeslot=0x13ED, 38202 }, 38203 [0x13EE]={ 38204 category="lo", 38205 description="CHEROKEE LETTER WV", 38206 direction="l", 38207 linebreak="al", 38208 unicodeslot=0x13EE, 38209 }, 38210 [0x13EF]={ 38211 category="lo", 38212 description="CHEROKEE LETTER YA", 38213 direction="l", 38214 linebreak="al", 38215 unicodeslot=0x13EF, 38216 }, 38217 [0x13F0]={ 38218 category="lo", 38219 description="CHEROKEE LETTER YE", 38220 direction="l", 38221 linebreak="al", 38222 unicodeslot=0x13F0, 38223 }, 38224 [0x13F1]={ 38225 category="lo", 38226 description="CHEROKEE LETTER YI", 38227 direction="l", 38228 linebreak="al", 38229 unicodeslot=0x13F1, 38230 }, 38231 [0x13F2]={ 38232 category="lo", 38233 description="CHEROKEE LETTER YO", 38234 direction="l", 38235 linebreak="al", 38236 unicodeslot=0x13F2, 38237 }, 38238 [0x13F3]={ 38239 category="lo", 38240 description="CHEROKEE LETTER YU", 38241 direction="l", 38242 linebreak="al", 38243 unicodeslot=0x13F3, 38244 }, 38245 [0x13F4]={ 38246 category="lo", 38247 description="CHEROKEE LETTER YV", 38248 direction="l", 38249 linebreak="al", 38250 unicodeslot=0x13F4, 38251 }, 38252 [0x13F5]={ 38253 category="lu", 38254 description="CHEROKEE LETTER MV", 38255 direction="l", 38256 linebreak="al", 38257 unicodeslot=0x13F5, 38258 }, 38259 [0x13F8]={ 38260 category="ll", 38261 description="CHEROKEE SMALL LETTER YE", 38262 direction="l", 38263 linebreak="al", 38264 uccode=0x13F0, 38265 unicodeslot=0x13F8, 38266 }, 38267 [0x13F9]={ 38268 category="ll", 38269 description="CHEROKEE SMALL LETTER YI", 38270 direction="l", 38271 linebreak="al", 38272 uccode=0x13F1, 38273 unicodeslot=0x13F9, 38274 }, 38275 [0x13FA]={ 38276 category="ll", 38277 description="CHEROKEE SMALL LETTER YO", 38278 direction="l", 38279 linebreak="al", 38280 uccode=0x13F2, 38281 unicodeslot=0x13FA, 38282 }, 38283 [0x13FB]={ 38284 category="ll", 38285 description="CHEROKEE SMALL LETTER YU", 38286 direction="l", 38287 linebreak="al", 38288 uccode=0x13F3, 38289 unicodeslot=0x13FB, 38290 }, 38291 [0x13FC]={ 38292 category="ll", 38293 description="CHEROKEE SMALL LETTER YV", 38294 direction="l", 38295 linebreak="al", 38296 uccode=0x13F4, 38297 unicodeslot=0x13FC, 38298 }, 38299 [0x13FD]={ 38300 category="ll", 38301 description="CHEROKEE SMALL LETTER MV", 38302 direction="l", 38303 linebreak="al", 38304 uccode=0x13F5, 38305 unicodeslot=0x13FD, 38306 }, 38307 [0x1400]={ 38308 category="pd", 38309 description="CANADIAN SYLLABICS HYPHEN", 38310 direction="on", 38311 linebreak="ba", 38312 unicodeslot=0x1400, 38313 }, 38314 [0x1401]={ 38315 category="lo", 38316 description="CANADIAN SYLLABICS E", 38317 direction="l", 38318 linebreak="al", 38319 unicodeslot=0x1401, 38320 }, 38321 [0x1402]={ 38322 category="lo", 38323 description="CANADIAN SYLLABICS AAI", 38324 direction="l", 38325 linebreak="al", 38326 unicodeslot=0x1402, 38327 }, 38328 [0x1403]={ 38329 category="lo", 38330 description="CANADIAN SYLLABICS I", 38331 direction="l", 38332 linebreak="al", 38333 unicodeslot=0x1403, 38334 }, 38335 [0x1404]={ 38336 category="lo", 38337 description="CANADIAN SYLLABICS II", 38338 direction="l", 38339 linebreak="al", 38340 unicodeslot=0x1404, 38341 }, 38342 [0x1405]={ 38343 category="lo", 38344 description="CANADIAN SYLLABICS O", 38345 direction="l", 38346 linebreak="al", 38347 unicodeslot=0x1405, 38348 }, 38349 [0x1406]={ 38350 category="lo", 38351 description="CANADIAN SYLLABICS OO", 38352 direction="l", 38353 linebreak="al", 38354 unicodeslot=0x1406, 38355 }, 38356 [0x1407]={ 38357 category="lo", 38358 description="CANADIAN SYLLABICS Y-CREE OO", 38359 direction="l", 38360 linebreak="al", 38361 unicodeslot=0x1407, 38362 }, 38363 [0x1408]={ 38364 category="lo", 38365 description="CANADIAN SYLLABICS CARRIER EE", 38366 direction="l", 38367 linebreak="al", 38368 unicodeslot=0x1408, 38369 }, 38370 [0x1409]={ 38371 category="lo", 38372 description="CANADIAN SYLLABICS CARRIER I", 38373 direction="l", 38374 linebreak="al", 38375 unicodeslot=0x1409, 38376 }, 38377 [0x140A]={ 38378 category="lo", 38379 description="CANADIAN SYLLABICS A", 38380 direction="l", 38381 linebreak="al", 38382 unicodeslot=0x140A, 38383 }, 38384 [0x140B]={ 38385 category="lo", 38386 description="CANADIAN SYLLABICS AA", 38387 direction="l", 38388 linebreak="al", 38389 unicodeslot=0x140B, 38390 }, 38391 [0x140C]={ 38392 category="lo", 38393 description="CANADIAN SYLLABICS WE", 38394 direction="l", 38395 linebreak="al", 38396 unicodeslot=0x140C, 38397 }, 38398 [0x140D]={ 38399 category="lo", 38400 description="CANADIAN SYLLABICS WEST-CREE WE", 38401 direction="l", 38402 linebreak="al", 38403 unicodeslot=0x140D, 38404 }, 38405 [0x140E]={ 38406 category="lo", 38407 description="CANADIAN SYLLABICS WI", 38408 direction="l", 38409 linebreak="al", 38410 unicodeslot=0x140E, 38411 }, 38412 [0x140F]={ 38413 category="lo", 38414 description="CANADIAN SYLLABICS WEST-CREE WI", 38415 direction="l", 38416 linebreak="al", 38417 unicodeslot=0x140F, 38418 }, 38419 [0x1410]={ 38420 category="lo", 38421 description="CANADIAN SYLLABICS WII", 38422 direction="l", 38423 linebreak="al", 38424 unicodeslot=0x1410, 38425 }, 38426 [0x1411]={ 38427 category="lo", 38428 description="CANADIAN SYLLABICS WEST-CREE WII", 38429 direction="l", 38430 linebreak="al", 38431 unicodeslot=0x1411, 38432 }, 38433 [0x1412]={ 38434 category="lo", 38435 description="CANADIAN SYLLABICS WO", 38436 direction="l", 38437 linebreak="al", 38438 unicodeslot=0x1412, 38439 }, 38440 [0x1413]={ 38441 category="lo", 38442 description="CANADIAN SYLLABICS WEST-CREE WO", 38443 direction="l", 38444 linebreak="al", 38445 unicodeslot=0x1413, 38446 }, 38447 [0x1414]={ 38448 category="lo", 38449 description="CANADIAN SYLLABICS WOO", 38450 direction="l", 38451 linebreak="al", 38452 unicodeslot=0x1414, 38453 }, 38454 [0x1415]={ 38455 category="lo", 38456 description="CANADIAN SYLLABICS WEST-CREE WOO", 38457 direction="l", 38458 linebreak="al", 38459 unicodeslot=0x1415, 38460 }, 38461 [0x1416]={ 38462 category="lo", 38463 description="CANADIAN SYLLABICS NASKAPI WOO", 38464 direction="l", 38465 linebreak="al", 38466 unicodeslot=0x1416, 38467 }, 38468 [0x1417]={ 38469 category="lo", 38470 description="CANADIAN SYLLABICS WA", 38471 direction="l", 38472 linebreak="al", 38473 unicodeslot=0x1417, 38474 }, 38475 [0x1418]={ 38476 category="lo", 38477 description="CANADIAN SYLLABICS WEST-CREE WA", 38478 direction="l", 38479 linebreak="al", 38480 unicodeslot=0x1418, 38481 }, 38482 [0x1419]={ 38483 category="lo", 38484 description="CANADIAN SYLLABICS WAA", 38485 direction="l", 38486 linebreak="al", 38487 unicodeslot=0x1419, 38488 }, 38489 [0x141A]={ 38490 category="lo", 38491 description="CANADIAN SYLLABICS WEST-CREE WAA", 38492 direction="l", 38493 linebreak="al", 38494 unicodeslot=0x141A, 38495 }, 38496 [0x141B]={ 38497 category="lo", 38498 description="CANADIAN SYLLABICS NASKAPI WAA", 38499 direction="l", 38500 linebreak="al", 38501 unicodeslot=0x141B, 38502 }, 38503 [0x141C]={ 38504 category="lo", 38505 description="CANADIAN SYLLABICS AI", 38506 direction="l", 38507 linebreak="al", 38508 unicodeslot=0x141C, 38509 }, 38510 [0x141D]={ 38511 category="lo", 38512 description="CANADIAN SYLLABICS Y-CREE W", 38513 direction="l", 38514 linebreak="al", 38515 unicodeslot=0x141D, 38516 }, 38517 [0x141E]={ 38518 category="lo", 38519 description="CANADIAN SYLLABICS GLOTTAL STOP", 38520 direction="l", 38521 linebreak="al", 38522 unicodeslot=0x141E, 38523 }, 38524 [0x141F]={ 38525 category="lo", 38526 description="CANADIAN SYLLABICS FINAL ACUTE", 38527 direction="l", 38528 linebreak="al", 38529 unicodeslot=0x141F, 38530 }, 38531 [0x1420]={ 38532 category="lo", 38533 description="CANADIAN SYLLABICS FINAL GRAVE", 38534 direction="l", 38535 linebreak="al", 38536 unicodeslot=0x1420, 38537 }, 38538 [0x1421]={ 38539 category="lo", 38540 description="CANADIAN SYLLABICS FINAL BOTTOM HALF RING", 38541 direction="l", 38542 linebreak="al", 38543 unicodeslot=0x1421, 38544 }, 38545 [0x1422]={ 38546 category="lo", 38547 description="CANADIAN SYLLABICS FINAL TOP HALF RING", 38548 direction="l", 38549 linebreak="al", 38550 unicodeslot=0x1422, 38551 }, 38552 [0x1423]={ 38553 category="lo", 38554 description="CANADIAN SYLLABICS FINAL RIGHT HALF RING", 38555 direction="l", 38556 linebreak="al", 38557 unicodeslot=0x1423, 38558 }, 38559 [0x1424]={ 38560 category="lo", 38561 description="CANADIAN SYLLABICS FINAL RING", 38562 direction="l", 38563 linebreak="al", 38564 unicodeslot=0x1424, 38565 }, 38566 [0x1425]={ 38567 category="lo", 38568 description="CANADIAN SYLLABICS FINAL DOUBLE ACUTE", 38569 direction="l", 38570 linebreak="al", 38571 unicodeslot=0x1425, 38572 }, 38573 [0x1426]={ 38574 category="lo", 38575 description="CANADIAN SYLLABICS FINAL DOUBLE SHORT VERTICAL STROKES", 38576 direction="l", 38577 linebreak="al", 38578 unicodeslot=0x1426, 38579 }, 38580 [0x1427]={ 38581 category="lo", 38582 description="CANADIAN SYLLABICS FINAL MIDDLE DOT", 38583 direction="l", 38584 linebreak="al", 38585 unicodeslot=0x1427, 38586 }, 38587 [0x1428]={ 38588 category="lo", 38589 description="CANADIAN SYLLABICS FINAL SHORT HORIZONTAL STROKE", 38590 direction="l", 38591 linebreak="al", 38592 unicodeslot=0x1428, 38593 }, 38594 [0x1429]={ 38595 category="lo", 38596 description="CANADIAN SYLLABICS FINAL PLUS", 38597 direction="l", 38598 linebreak="al", 38599 unicodeslot=0x1429, 38600 }, 38601 [0x142A]={ 38602 category="lo", 38603 description="CANADIAN SYLLABICS FINAL DOWN TACK", 38604 direction="l", 38605 linebreak="al", 38606 unicodeslot=0x142A, 38607 }, 38608 [0x142B]={ 38609 category="lo", 38610 description="CANADIAN SYLLABICS EN", 38611 direction="l", 38612 linebreak="al", 38613 unicodeslot=0x142B, 38614 }, 38615 [0x142C]={ 38616 category="lo", 38617 description="CANADIAN SYLLABICS IN", 38618 direction="l", 38619 linebreak="al", 38620 unicodeslot=0x142C, 38621 }, 38622 [0x142D]={ 38623 category="lo", 38624 description="CANADIAN SYLLABICS ON", 38625 direction="l", 38626 linebreak="al", 38627 unicodeslot=0x142D, 38628 }, 38629 [0x142E]={ 38630 category="lo", 38631 description="CANADIAN SYLLABICS AN", 38632 direction="l", 38633 linebreak="al", 38634 unicodeslot=0x142E, 38635 }, 38636 [0x142F]={ 38637 category="lo", 38638 description="CANADIAN SYLLABICS PE", 38639 direction="l", 38640 linebreak="al", 38641 unicodeslot=0x142F, 38642 }, 38643 [0x1430]={ 38644 category="lo", 38645 description="CANADIAN SYLLABICS PAAI", 38646 direction="l", 38647 linebreak="al", 38648 unicodeslot=0x1430, 38649 }, 38650 [0x1431]={ 38651 category="lo", 38652 description="CANADIAN SYLLABICS PI", 38653 direction="l", 38654 linebreak="al", 38655 unicodeslot=0x1431, 38656 }, 38657 [0x1432]={ 38658 category="lo", 38659 description="CANADIAN SYLLABICS PII", 38660 direction="l", 38661 linebreak="al", 38662 unicodeslot=0x1432, 38663 }, 38664 [0x1433]={ 38665 category="lo", 38666 description="CANADIAN SYLLABICS PO", 38667 direction="l", 38668 linebreak="al", 38669 unicodeslot=0x1433, 38670 }, 38671 [0x1434]={ 38672 category="lo", 38673 description="CANADIAN SYLLABICS POO", 38674 direction="l", 38675 linebreak="al", 38676 unicodeslot=0x1434, 38677 }, 38678 [0x1435]={ 38679 category="lo", 38680 description="CANADIAN SYLLABICS Y-CREE POO", 38681 direction="l", 38682 linebreak="al", 38683 unicodeslot=0x1435, 38684 }, 38685 [0x1436]={ 38686 category="lo", 38687 description="CANADIAN SYLLABICS CARRIER HEE", 38688 direction="l", 38689 linebreak="al", 38690 unicodeslot=0x1436, 38691 }, 38692 [0x1437]={ 38693 category="lo", 38694 description="CANADIAN SYLLABICS CARRIER HI", 38695 direction="l", 38696 linebreak="al", 38697 unicodeslot=0x1437, 38698 }, 38699 [0x1438]={ 38700 category="lo", 38701 description="CANADIAN SYLLABICS PA", 38702 direction="l", 38703 linebreak="al", 38704 unicodeslot=0x1438, 38705 }, 38706 [0x1439]={ 38707 category="lo", 38708 description="CANADIAN SYLLABICS PAA", 38709 direction="l", 38710 linebreak="al", 38711 unicodeslot=0x1439, 38712 }, 38713 [0x143A]={ 38714 category="lo", 38715 description="CANADIAN SYLLABICS PWE", 38716 direction="l", 38717 linebreak="al", 38718 unicodeslot=0x143A, 38719 }, 38720 [0x143B]={ 38721 category="lo", 38722 description="CANADIAN SYLLABICS WEST-CREE PWE", 38723 direction="l", 38724 linebreak="al", 38725 unicodeslot=0x143B, 38726 }, 38727 [0x143C]={ 38728 category="lo", 38729 description="CANADIAN SYLLABICS PWI", 38730 direction="l", 38731 linebreak="al", 38732 unicodeslot=0x143C, 38733 }, 38734 [0x143D]={ 38735 category="lo", 38736 description="CANADIAN SYLLABICS WEST-CREE PWI", 38737 direction="l", 38738 linebreak="al", 38739 unicodeslot=0x143D, 38740 }, 38741 [0x143E]={ 38742 category="lo", 38743 description="CANADIAN SYLLABICS PWII", 38744 direction="l", 38745 linebreak="al", 38746 unicodeslot=0x143E, 38747 }, 38748 [0x143F]={ 38749 category="lo", 38750 description="CANADIAN SYLLABICS WEST-CREE PWII", 38751 direction="l", 38752 linebreak="al", 38753 unicodeslot=0x143F, 38754 }, 38755 [0x1440]={ 38756 category="lo", 38757 description="CANADIAN SYLLABICS PWO", 38758 direction="l", 38759 linebreak="al", 38760 unicodeslot=0x1440, 38761 }, 38762 [0x1441]={ 38763 category="lo", 38764 description="CANADIAN SYLLABICS WEST-CREE PWO", 38765 direction="l", 38766 linebreak="al", 38767 unicodeslot=0x1441, 38768 }, 38769 [0x1442]={ 38770 category="lo", 38771 description="CANADIAN SYLLABICS PWOO", 38772 direction="l", 38773 linebreak="al", 38774 unicodeslot=0x1442, 38775 }, 38776 [0x1443]={ 38777 category="lo", 38778 description="CANADIAN SYLLABICS WEST-CREE PWOO", 38779 direction="l", 38780 linebreak="al", 38781 unicodeslot=0x1443, 38782 }, 38783 [0x1444]={ 38784 category="lo", 38785 description="CANADIAN SYLLABICS PWA", 38786 direction="l", 38787 linebreak="al", 38788 unicodeslot=0x1444, 38789 }, 38790 [0x1445]={ 38791 category="lo", 38792 description="CANADIAN SYLLABICS WEST-CREE PWA", 38793 direction="l", 38794 linebreak="al", 38795 unicodeslot=0x1445, 38796 }, 38797 [0x1446]={ 38798 category="lo", 38799 description="CANADIAN SYLLABICS PWAA", 38800 direction="l", 38801 linebreak="al", 38802 unicodeslot=0x1446, 38803 }, 38804 [0x1447]={ 38805 category="lo", 38806 description="CANADIAN SYLLABICS WEST-CREE PWAA", 38807 direction="l", 38808 linebreak="al", 38809 unicodeslot=0x1447, 38810 }, 38811 [0x1448]={ 38812 category="lo", 38813 description="CANADIAN SYLLABICS Y-CREE PWAA", 38814 direction="l", 38815 linebreak="al", 38816 unicodeslot=0x1448, 38817 }, 38818 [0x1449]={ 38819 category="lo", 38820 description="CANADIAN SYLLABICS P", 38821 direction="l", 38822 linebreak="al", 38823 unicodeslot=0x1449, 38824 }, 38825 [0x144A]={ 38826 category="lo", 38827 description="CANADIAN SYLLABICS WEST-CREE P", 38828 direction="l", 38829 linebreak="al", 38830 unicodeslot=0x144A, 38831 }, 38832 [0x144B]={ 38833 category="lo", 38834 description="CANADIAN SYLLABICS CARRIER H", 38835 direction="l", 38836 linebreak="al", 38837 unicodeslot=0x144B, 38838 }, 38839 [0x144C]={ 38840 category="lo", 38841 description="CANADIAN SYLLABICS TE", 38842 direction="l", 38843 linebreak="al", 38844 unicodeslot=0x144C, 38845 }, 38846 [0x144D]={ 38847 category="lo", 38848 description="CANADIAN SYLLABICS TAAI", 38849 direction="l", 38850 linebreak="al", 38851 unicodeslot=0x144D, 38852 }, 38853 [0x144E]={ 38854 category="lo", 38855 description="CANADIAN SYLLABICS TI", 38856 direction="l", 38857 linebreak="al", 38858 unicodeslot=0x144E, 38859 }, 38860 [0x144F]={ 38861 category="lo", 38862 description="CANADIAN SYLLABICS TII", 38863 direction="l", 38864 linebreak="al", 38865 unicodeslot=0x144F, 38866 }, 38867 [0x1450]={ 38868 category="lo", 38869 description="CANADIAN SYLLABICS TO", 38870 direction="l", 38871 linebreak="al", 38872 unicodeslot=0x1450, 38873 }, 38874 [0x1451]={ 38875 category="lo", 38876 description="CANADIAN SYLLABICS TOO", 38877 direction="l", 38878 linebreak="al", 38879 unicodeslot=0x1451, 38880 }, 38881 [0x1452]={ 38882 category="lo", 38883 description="CANADIAN SYLLABICS Y-CREE TOO", 38884 direction="l", 38885 linebreak="al", 38886 unicodeslot=0x1452, 38887 }, 38888 [0x1453]={ 38889 category="lo", 38890 description="CANADIAN SYLLABICS CARRIER DEE", 38891 direction="l", 38892 linebreak="al", 38893 unicodeslot=0x1453, 38894 }, 38895 [0x1454]={ 38896 category="lo", 38897 description="CANADIAN SYLLABICS CARRIER DI", 38898 direction="l", 38899 linebreak="al", 38900 unicodeslot=0x1454, 38901 }, 38902 [0x1455]={ 38903 category="lo", 38904 description="CANADIAN SYLLABICS TA", 38905 direction="l", 38906 linebreak="al", 38907 unicodeslot=0x1455, 38908 }, 38909 [0x1456]={ 38910 category="lo", 38911 description="CANADIAN SYLLABICS TAA", 38912 direction="l", 38913 linebreak="al", 38914 unicodeslot=0x1456, 38915 }, 38916 [0x1457]={ 38917 category="lo", 38918 description="CANADIAN SYLLABICS TWE", 38919 direction="l", 38920 linebreak="al", 38921 unicodeslot=0x1457, 38922 }, 38923 [0x1458]={ 38924 category="lo", 38925 description="CANADIAN SYLLABICS WEST-CREE TWE", 38926 direction="l", 38927 linebreak="al", 38928 unicodeslot=0x1458, 38929 }, 38930 [0x1459]={ 38931 category="lo", 38932 description="CANADIAN SYLLABICS TWI", 38933 direction="l", 38934 linebreak="al", 38935 unicodeslot=0x1459, 38936 }, 38937 [0x145A]={ 38938 category="lo", 38939 description="CANADIAN SYLLABICS WEST-CREE TWI", 38940 direction="l", 38941 linebreak="al", 38942 unicodeslot=0x145A, 38943 }, 38944 [0x145B]={ 38945 category="lo", 38946 description="CANADIAN SYLLABICS TWII", 38947 direction="l", 38948 linebreak="al", 38949 unicodeslot=0x145B, 38950 }, 38951 [0x145C]={ 38952 category="lo", 38953 description="CANADIAN SYLLABICS WEST-CREE TWII", 38954 direction="l", 38955 linebreak="al", 38956 unicodeslot=0x145C, 38957 }, 38958 [0x145D]={ 38959 category="lo", 38960 description="CANADIAN SYLLABICS TWO", 38961 direction="l", 38962 linebreak="al", 38963 unicodeslot=0x145D, 38964 }, 38965 [0x145E]={ 38966 category="lo", 38967 description="CANADIAN SYLLABICS WEST-CREE TWO", 38968 direction="l", 38969 linebreak="al", 38970 unicodeslot=0x145E, 38971 }, 38972 [0x145F]={ 38973 category="lo", 38974 description="CANADIAN SYLLABICS TWOO", 38975 direction="l", 38976 linebreak="al", 38977 unicodeslot=0x145F, 38978 }, 38979 [0x1460]={ 38980 category="lo", 38981 description="CANADIAN SYLLABICS WEST-CREE TWOO", 38982 direction="l", 38983 linebreak="al", 38984 unicodeslot=0x1460, 38985 }, 38986 [0x1461]={ 38987 category="lo", 38988 description="CANADIAN SYLLABICS TWA", 38989 direction="l", 38990 linebreak="al", 38991 unicodeslot=0x1461, 38992 }, 38993 [0x1462]={ 38994 category="lo", 38995 description="CANADIAN SYLLABICS WEST-CREE TWA", 38996 direction="l", 38997 linebreak="al", 38998 unicodeslot=0x1462, 38999 }, 39000 [0x1463]={ 39001 category="lo", 39002 description="CANADIAN SYLLABICS TWAA", 39003 direction="l", 39004 linebreak="al", 39005 unicodeslot=0x1463, 39006 }, 39007 [0x1464]={ 39008 category="lo", 39009 description="CANADIAN SYLLABICS WEST-CREE TWAA", 39010 direction="l", 39011 linebreak="al", 39012 unicodeslot=0x1464, 39013 }, 39014 [0x1465]={ 39015 category="lo", 39016 description="CANADIAN SYLLABICS NASKAPI TWAA", 39017 direction="l", 39018 linebreak="al", 39019 unicodeslot=0x1465, 39020 }, 39021 [0x1466]={ 39022 category="lo", 39023 description="CANADIAN SYLLABICS T", 39024 direction="l", 39025 linebreak="al", 39026 unicodeslot=0x1466, 39027 }, 39028 [0x1467]={ 39029 category="lo", 39030 description="CANADIAN SYLLABICS TTE", 39031 direction="l", 39032 linebreak="al", 39033 unicodeslot=0x1467, 39034 }, 39035 [0x1468]={ 39036 category="lo", 39037 description="CANADIAN SYLLABICS TTI", 39038 direction="l", 39039 linebreak="al", 39040 unicodeslot=0x1468, 39041 }, 39042 [0x1469]={ 39043 category="lo", 39044 description="CANADIAN SYLLABICS TTO", 39045 direction="l", 39046 linebreak="al", 39047 unicodeslot=0x1469, 39048 }, 39049 [0x146A]={ 39050 category="lo", 39051 description="CANADIAN SYLLABICS TTA", 39052 direction="l", 39053 linebreak="al", 39054 unicodeslot=0x146A, 39055 }, 39056 [0x146B]={ 39057 category="lo", 39058 description="CANADIAN SYLLABICS KE", 39059 direction="l", 39060 linebreak="al", 39061 unicodeslot=0x146B, 39062 }, 39063 [0x146C]={ 39064 category="lo", 39065 description="CANADIAN SYLLABICS KAAI", 39066 direction="l", 39067 linebreak="al", 39068 unicodeslot=0x146C, 39069 }, 39070 [0x146D]={ 39071 category="lo", 39072 description="CANADIAN SYLLABICS KI", 39073 direction="l", 39074 linebreak="al", 39075 unicodeslot=0x146D, 39076 }, 39077 [0x146E]={ 39078 category="lo", 39079 description="CANADIAN SYLLABICS KII", 39080 direction="l", 39081 linebreak="al", 39082 unicodeslot=0x146E, 39083 }, 39084 [0x146F]={ 39085 category="lo", 39086 description="CANADIAN SYLLABICS KO", 39087 direction="l", 39088 linebreak="al", 39089 unicodeslot=0x146F, 39090 }, 39091 [0x1470]={ 39092 category="lo", 39093 description="CANADIAN SYLLABICS KOO", 39094 direction="l", 39095 linebreak="al", 39096 unicodeslot=0x1470, 39097 }, 39098 [0x1471]={ 39099 category="lo", 39100 description="CANADIAN SYLLABICS Y-CREE KOO", 39101 direction="l", 39102 linebreak="al", 39103 unicodeslot=0x1471, 39104 }, 39105 [0x1472]={ 39106 category="lo", 39107 description="CANADIAN SYLLABICS KA", 39108 direction="l", 39109 linebreak="al", 39110 unicodeslot=0x1472, 39111 }, 39112 [0x1473]={ 39113 category="lo", 39114 description="CANADIAN SYLLABICS KAA", 39115 direction="l", 39116 linebreak="al", 39117 unicodeslot=0x1473, 39118 }, 39119 [0x1474]={ 39120 category="lo", 39121 description="CANADIAN SYLLABICS KWE", 39122 direction="l", 39123 linebreak="al", 39124 unicodeslot=0x1474, 39125 }, 39126 [0x1475]={ 39127 category="lo", 39128 description="CANADIAN SYLLABICS WEST-CREE KWE", 39129 direction="l", 39130 linebreak="al", 39131 unicodeslot=0x1475, 39132 }, 39133 [0x1476]={ 39134 category="lo", 39135 description="CANADIAN SYLLABICS KWI", 39136 direction="l", 39137 linebreak="al", 39138 unicodeslot=0x1476, 39139 }, 39140 [0x1477]={ 39141 category="lo", 39142 description="CANADIAN SYLLABICS WEST-CREE KWI", 39143 direction="l", 39144 linebreak="al", 39145 unicodeslot=0x1477, 39146 }, 39147 [0x1478]={ 39148 category="lo", 39149 description="CANADIAN SYLLABICS KWII", 39150 direction="l", 39151 linebreak="al", 39152 unicodeslot=0x1478, 39153 }, 39154 [0x1479]={ 39155 category="lo", 39156 description="CANADIAN SYLLABICS WEST-CREE KWII", 39157 direction="l", 39158 linebreak="al", 39159 unicodeslot=0x1479, 39160 }, 39161 [0x147A]={ 39162 category="lo", 39163 description="CANADIAN SYLLABICS KWO", 39164 direction="l", 39165 linebreak="al", 39166 unicodeslot=0x147A, 39167 }, 39168 [0x147B]={ 39169 category="lo", 39170 description="CANADIAN SYLLABICS WEST-CREE KWO", 39171 direction="l", 39172 linebreak="al", 39173 unicodeslot=0x147B, 39174 }, 39175 [0x147C]={ 39176 category="lo", 39177 description="CANADIAN SYLLABICS KWOO", 39178 direction="l", 39179 linebreak="al", 39180 unicodeslot=0x147C, 39181 }, 39182 [0x147D]={ 39183 category="lo", 39184 description="CANADIAN SYLLABICS WEST-CREE KWOO", 39185 direction="l", 39186 linebreak="al", 39187 unicodeslot=0x147D, 39188 }, 39189 [0x147E]={ 39190 category="lo", 39191 description="CANADIAN SYLLABICS KWA", 39192 direction="l", 39193 linebreak="al", 39194 unicodeslot=0x147E, 39195 }, 39196 [0x147F]={ 39197 category="lo", 39198 description="CANADIAN SYLLABICS WEST-CREE KWA", 39199 direction="l", 39200 linebreak="al", 39201 unicodeslot=0x147F, 39202 }, 39203 [0x1480]={ 39204 category="lo", 39205 description="CANADIAN SYLLABICS KWAA", 39206 direction="l", 39207 linebreak="al", 39208 unicodeslot=0x1480, 39209 }, 39210 [0x1481]={ 39211 category="lo", 39212 description="CANADIAN SYLLABICS WEST-CREE KWAA", 39213 direction="l", 39214 linebreak="al", 39215 unicodeslot=0x1481, 39216 }, 39217 [0x1482]={ 39218 category="lo", 39219 description="CANADIAN SYLLABICS NASKAPI KWAA", 39220 direction="l", 39221 linebreak="al", 39222 unicodeslot=0x1482, 39223 }, 39224 [0x1483]={ 39225 category="lo", 39226 description="CANADIAN SYLLABICS K", 39227 direction="l", 39228 linebreak="al", 39229 unicodeslot=0x1483, 39230 }, 39231 [0x1484]={ 39232 category="lo", 39233 description="CANADIAN SYLLABICS KW", 39234 direction="l", 39235 linebreak="al", 39236 unicodeslot=0x1484, 39237 }, 39238 [0x1485]={ 39239 category="lo", 39240 description="CANADIAN SYLLABICS SOUTH-SLAVEY KEH", 39241 direction="l", 39242 linebreak="al", 39243 unicodeslot=0x1485, 39244 }, 39245 [0x1486]={ 39246 category="lo", 39247 description="CANADIAN SYLLABICS SOUTH-SLAVEY KIH", 39248 direction="l", 39249 linebreak="al", 39250 unicodeslot=0x1486, 39251 }, 39252 [0x1487]={ 39253 category="lo", 39254 description="CANADIAN SYLLABICS SOUTH-SLAVEY KOH", 39255 direction="l", 39256 linebreak="al", 39257 unicodeslot=0x1487, 39258 }, 39259 [0x1488]={ 39260 category="lo", 39261 description="CANADIAN SYLLABICS SOUTH-SLAVEY KAH", 39262 direction="l", 39263 linebreak="al", 39264 unicodeslot=0x1488, 39265 }, 39266 [0x1489]={ 39267 category="lo", 39268 description="CANADIAN SYLLABICS CE", 39269 direction="l", 39270 linebreak="al", 39271 unicodeslot=0x1489, 39272 }, 39273 [0x148A]={ 39274 category="lo", 39275 description="CANADIAN SYLLABICS CAAI", 39276 direction="l", 39277 linebreak="al", 39278 unicodeslot=0x148A, 39279 }, 39280 [0x148B]={ 39281 category="lo", 39282 description="CANADIAN SYLLABICS CI", 39283 direction="l", 39284 linebreak="al", 39285 unicodeslot=0x148B, 39286 }, 39287 [0x148C]={ 39288 category="lo", 39289 description="CANADIAN SYLLABICS CII", 39290 direction="l", 39291 linebreak="al", 39292 unicodeslot=0x148C, 39293 }, 39294 [0x148D]={ 39295 category="lo", 39296 description="CANADIAN SYLLABICS CO", 39297 direction="l", 39298 linebreak="al", 39299 unicodeslot=0x148D, 39300 }, 39301 [0x148E]={ 39302 category="lo", 39303 description="CANADIAN SYLLABICS COO", 39304 direction="l", 39305 linebreak="al", 39306 unicodeslot=0x148E, 39307 }, 39308 [0x148F]={ 39309 category="lo", 39310 description="CANADIAN SYLLABICS Y-CREE COO", 39311 direction="l", 39312 linebreak="al", 39313 unicodeslot=0x148F, 39314 }, 39315 [0x1490]={ 39316 category="lo", 39317 description="CANADIAN SYLLABICS CA", 39318 direction="l", 39319 linebreak="al", 39320 unicodeslot=0x1490, 39321 }, 39322 [0x1491]={ 39323 category="lo", 39324 description="CANADIAN SYLLABICS CAA", 39325 direction="l", 39326 linebreak="al", 39327 unicodeslot=0x1491, 39328 }, 39329 [0x1492]={ 39330 category="lo", 39331 description="CANADIAN SYLLABICS CWE", 39332 direction="l", 39333 linebreak="al", 39334 unicodeslot=0x1492, 39335 }, 39336 [0x1493]={ 39337 category="lo", 39338 description="CANADIAN SYLLABICS WEST-CREE CWE", 39339 direction="l", 39340 linebreak="al", 39341 unicodeslot=0x1493, 39342 }, 39343 [0x1494]={ 39344 category="lo", 39345 description="CANADIAN SYLLABICS CWI", 39346 direction="l", 39347 linebreak="al", 39348 unicodeslot=0x1494, 39349 }, 39350 [0x1495]={ 39351 category="lo", 39352 description="CANADIAN SYLLABICS WEST-CREE CWI", 39353 direction="l", 39354 linebreak="al", 39355 unicodeslot=0x1495, 39356 }, 39357 [0x1496]={ 39358 category="lo", 39359 description="CANADIAN SYLLABICS CWII", 39360 direction="l", 39361 linebreak="al", 39362 unicodeslot=0x1496, 39363 }, 39364 [0x1497]={ 39365 category="lo", 39366 description="CANADIAN SYLLABICS WEST-CREE CWII", 39367 direction="l", 39368 linebreak="al", 39369 unicodeslot=0x1497, 39370 }, 39371 [0x1498]={ 39372 category="lo", 39373 description="CANADIAN SYLLABICS CWO", 39374 direction="l", 39375 linebreak="al", 39376 unicodeslot=0x1498, 39377 }, 39378 [0x1499]={ 39379 category="lo", 39380 description="CANADIAN SYLLABICS WEST-CREE CWO", 39381 direction="l", 39382 linebreak="al", 39383 unicodeslot=0x1499, 39384 }, 39385 [0x149A]={ 39386 category="lo", 39387 description="CANADIAN SYLLABICS CWOO", 39388 direction="l", 39389 linebreak="al", 39390 unicodeslot=0x149A, 39391 }, 39392 [0x149B]={ 39393 category="lo", 39394 description="CANADIAN SYLLABICS WEST-CREE CWOO", 39395 direction="l", 39396 linebreak="al", 39397 unicodeslot=0x149B, 39398 }, 39399 [0x149C]={ 39400 category="lo", 39401 description="CANADIAN SYLLABICS CWA", 39402 direction="l", 39403 linebreak="al", 39404 unicodeslot=0x149C, 39405 }, 39406 [0x149D]={ 39407 category="lo", 39408 description="CANADIAN SYLLABICS WEST-CREE CWA", 39409 direction="l", 39410 linebreak="al", 39411 unicodeslot=0x149D, 39412 }, 39413 [0x149E]={ 39414 category="lo", 39415 description="CANADIAN SYLLABICS CWAA", 39416 direction="l", 39417 linebreak="al", 39418 unicodeslot=0x149E, 39419 }, 39420 [0x149F]={ 39421 category="lo", 39422 description="CANADIAN SYLLABICS WEST-CREE CWAA", 39423 direction="l", 39424 linebreak="al", 39425 unicodeslot=0x149F, 39426 }, 39427 [0x14A0]={ 39428 category="lo", 39429 description="CANADIAN SYLLABICS NASKAPI CWAA", 39430 direction="l", 39431 linebreak="al", 39432 unicodeslot=0x14A0, 39433 }, 39434 [0x14A1]={ 39435 category="lo", 39436 description="CANADIAN SYLLABICS C", 39437 direction="l", 39438 linebreak="al", 39439 unicodeslot=0x14A1, 39440 }, 39441 [0x14A2]={ 39442 category="lo", 39443 description="CANADIAN SYLLABICS SAYISI TH", 39444 direction="l", 39445 linebreak="al", 39446 unicodeslot=0x14A2, 39447 }, 39448 [0x14A3]={ 39449 category="lo", 39450 description="CANADIAN SYLLABICS ME", 39451 direction="l", 39452 linebreak="al", 39453 unicodeslot=0x14A3, 39454 }, 39455 [0x14A4]={ 39456 category="lo", 39457 description="CANADIAN SYLLABICS MAAI", 39458 direction="l", 39459 linebreak="al", 39460 unicodeslot=0x14A4, 39461 }, 39462 [0x14A5]={ 39463 category="lo", 39464 description="CANADIAN SYLLABICS MI", 39465 direction="l", 39466 linebreak="al", 39467 unicodeslot=0x14A5, 39468 }, 39469 [0x14A6]={ 39470 category="lo", 39471 description="CANADIAN SYLLABICS MII", 39472 direction="l", 39473 linebreak="al", 39474 unicodeslot=0x14A6, 39475 }, 39476 [0x14A7]={ 39477 category="lo", 39478 description="CANADIAN SYLLABICS MO", 39479 direction="l", 39480 linebreak="al", 39481 unicodeslot=0x14A7, 39482 }, 39483 [0x14A8]={ 39484 category="lo", 39485 description="CANADIAN SYLLABICS MOO", 39486 direction="l", 39487 linebreak="al", 39488 unicodeslot=0x14A8, 39489 }, 39490 [0x14A9]={ 39491 category="lo", 39492 description="CANADIAN SYLLABICS Y-CREE MOO", 39493 direction="l", 39494 linebreak="al", 39495 unicodeslot=0x14A9, 39496 }, 39497 [0x14AA]={ 39498 category="lo", 39499 description="CANADIAN SYLLABICS MA", 39500 direction="l", 39501 linebreak="al", 39502 unicodeslot=0x14AA, 39503 }, 39504 [0x14AB]={ 39505 category="lo", 39506 description="CANADIAN SYLLABICS MAA", 39507 direction="l", 39508 linebreak="al", 39509 unicodeslot=0x14AB, 39510 }, 39511 [0x14AC]={ 39512 category="lo", 39513 description="CANADIAN SYLLABICS MWE", 39514 direction="l", 39515 linebreak="al", 39516 unicodeslot=0x14AC, 39517 }, 39518 [0x14AD]={ 39519 category="lo", 39520 description="CANADIAN SYLLABICS WEST-CREE MWE", 39521 direction="l", 39522 linebreak="al", 39523 unicodeslot=0x14AD, 39524 }, 39525 [0x14AE]={ 39526 category="lo", 39527 description="CANADIAN SYLLABICS MWI", 39528 direction="l", 39529 linebreak="al", 39530 unicodeslot=0x14AE, 39531 }, 39532 [0x14AF]={ 39533 category="lo", 39534 description="CANADIAN SYLLABICS WEST-CREE MWI", 39535 direction="l", 39536 linebreak="al", 39537 unicodeslot=0x14AF, 39538 }, 39539 [0x14B0]={ 39540 category="lo", 39541 description="CANADIAN SYLLABICS MWII", 39542 direction="l", 39543 linebreak="al", 39544 unicodeslot=0x14B0, 39545 }, 39546 [0x14B1]={ 39547 category="lo", 39548 description="CANADIAN SYLLABICS WEST-CREE MWII", 39549 direction="l", 39550 linebreak="al", 39551 unicodeslot=0x14B1, 39552 }, 39553 [0x14B2]={ 39554 category="lo", 39555 description="CANADIAN SYLLABICS MWO", 39556 direction="l", 39557 linebreak="al", 39558 unicodeslot=0x14B2, 39559 }, 39560 [0x14B3]={ 39561 category="lo", 39562 description="CANADIAN SYLLABICS WEST-CREE MWO", 39563 direction="l", 39564 linebreak="al", 39565 unicodeslot=0x14B3, 39566 }, 39567 [0x14B4]={ 39568 category="lo", 39569 description="CANADIAN SYLLABICS MWOO", 39570 direction="l", 39571 linebreak="al", 39572 unicodeslot=0x14B4, 39573 }, 39574 [0x14B5]={ 39575 category="lo", 39576 description="CANADIAN SYLLABICS WEST-CREE MWOO", 39577 direction="l", 39578 linebreak="al", 39579 unicodeslot=0x14B5, 39580 }, 39581 [0x14B6]={ 39582 category="lo", 39583 description="CANADIAN SYLLABICS MWA", 39584 direction="l", 39585 linebreak="al", 39586 unicodeslot=0x14B6, 39587 }, 39588 [0x14B7]={ 39589 category="lo", 39590 description="CANADIAN SYLLABICS WEST-CREE MWA", 39591 direction="l", 39592 linebreak="al", 39593 unicodeslot=0x14B7, 39594 }, 39595 [0x14B8]={ 39596 category="lo", 39597 description="CANADIAN SYLLABICS MWAA", 39598 direction="l", 39599 linebreak="al", 39600 unicodeslot=0x14B8, 39601 }, 39602 [0x14B9]={ 39603 category="lo", 39604 description="CANADIAN SYLLABICS WEST-CREE MWAA", 39605 direction="l", 39606 linebreak="al", 39607 unicodeslot=0x14B9, 39608 }, 39609 [0x14BA]={ 39610 category="lo", 39611 description="CANADIAN SYLLABICS NASKAPI MWAA", 39612 direction="l", 39613 linebreak="al", 39614 unicodeslot=0x14BA, 39615 }, 39616 [0x14BB]={ 39617 category="lo", 39618 description="CANADIAN SYLLABICS M", 39619 direction="l", 39620 linebreak="al", 39621 unicodeslot=0x14BB, 39622 }, 39623 [0x14BC]={ 39624 category="lo", 39625 description="CANADIAN SYLLABICS WEST-CREE M", 39626 direction="l", 39627 linebreak="al", 39628 unicodeslot=0x14BC, 39629 }, 39630 [0x14BD]={ 39631 category="lo", 39632 description="CANADIAN SYLLABICS MH", 39633 direction="l", 39634 linebreak="al", 39635 unicodeslot=0x14BD, 39636 }, 39637 [0x14BE]={ 39638 category="lo", 39639 description="CANADIAN SYLLABICS ATHAPASCAN M", 39640 direction="l", 39641 linebreak="al", 39642 unicodeslot=0x14BE, 39643 }, 39644 [0x14BF]={ 39645 category="lo", 39646 description="CANADIAN SYLLABICS SAYISI M", 39647 direction="l", 39648 linebreak="al", 39649 unicodeslot=0x14BF, 39650 }, 39651 [0x14C0]={ 39652 category="lo", 39653 description="CANADIAN SYLLABICS NE", 39654 direction="l", 39655 linebreak="al", 39656 unicodeslot=0x14C0, 39657 }, 39658 [0x14C1]={ 39659 category="lo", 39660 description="CANADIAN SYLLABICS NAAI", 39661 direction="l", 39662 linebreak="al", 39663 unicodeslot=0x14C1, 39664 }, 39665 [0x14C2]={ 39666 category="lo", 39667 description="CANADIAN SYLLABICS NI", 39668 direction="l", 39669 linebreak="al", 39670 unicodeslot=0x14C2, 39671 }, 39672 [0x14C3]={ 39673 category="lo", 39674 description="CANADIAN SYLLABICS NII", 39675 direction="l", 39676 linebreak="al", 39677 unicodeslot=0x14C3, 39678 }, 39679 [0x14C4]={ 39680 category="lo", 39681 description="CANADIAN SYLLABICS NO", 39682 direction="l", 39683 linebreak="al", 39684 unicodeslot=0x14C4, 39685 }, 39686 [0x14C5]={ 39687 category="lo", 39688 description="CANADIAN SYLLABICS NOO", 39689 direction="l", 39690 linebreak="al", 39691 unicodeslot=0x14C5, 39692 }, 39693 [0x14C6]={ 39694 category="lo", 39695 description="CANADIAN SYLLABICS Y-CREE NOO", 39696 direction="l", 39697 linebreak="al", 39698 unicodeslot=0x14C6, 39699 }, 39700 [0x14C7]={ 39701 category="lo", 39702 description="CANADIAN SYLLABICS NA", 39703 direction="l", 39704 linebreak="al", 39705 unicodeslot=0x14C7, 39706 }, 39707 [0x14C8]={ 39708 category="lo", 39709 description="CANADIAN SYLLABICS NAA", 39710 direction="l", 39711 linebreak="al", 39712 unicodeslot=0x14C8, 39713 }, 39714 [0x14C9]={ 39715 category="lo", 39716 description="CANADIAN SYLLABICS NWE", 39717 direction="l", 39718 linebreak="al", 39719 unicodeslot=0x14C9, 39720 }, 39721 [0x14CA]={ 39722 category="lo", 39723 description="CANADIAN SYLLABICS WEST-CREE NWE", 39724 direction="l", 39725 linebreak="al", 39726 unicodeslot=0x14CA, 39727 }, 39728 [0x14CB]={ 39729 category="lo", 39730 description="CANADIAN SYLLABICS NWA", 39731 direction="l", 39732 linebreak="al", 39733 unicodeslot=0x14CB, 39734 }, 39735 [0x14CC]={ 39736 category="lo", 39737 description="CANADIAN SYLLABICS WEST-CREE NWA", 39738 direction="l", 39739 linebreak="al", 39740 unicodeslot=0x14CC, 39741 }, 39742 [0x14CD]={ 39743 category="lo", 39744 description="CANADIAN SYLLABICS NWAA", 39745 direction="l", 39746 linebreak="al", 39747 unicodeslot=0x14CD, 39748 }, 39749 [0x14CE]={ 39750 category="lo", 39751 description="CANADIAN SYLLABICS WEST-CREE NWAA", 39752 direction="l", 39753 linebreak="al", 39754 unicodeslot=0x14CE, 39755 }, 39756 [0x14CF]={ 39757 category="lo", 39758 description="CANADIAN SYLLABICS NASKAPI NWAA", 39759 direction="l", 39760 linebreak="al", 39761 unicodeslot=0x14CF, 39762 }, 39763 [0x14D0]={ 39764 category="lo", 39765 description="CANADIAN SYLLABICS N", 39766 direction="l", 39767 linebreak="al", 39768 unicodeslot=0x14D0, 39769 }, 39770 [0x14D1]={ 39771 category="lo", 39772 description="CANADIAN SYLLABICS CARRIER NG", 39773 direction="l", 39774 linebreak="al", 39775 unicodeslot=0x14D1, 39776 }, 39777 [0x14D2]={ 39778 category="lo", 39779 description="CANADIAN SYLLABICS NH", 39780 direction="l", 39781 linebreak="al", 39782 unicodeslot=0x14D2, 39783 }, 39784 [0x14D3]={ 39785 category="lo", 39786 description="CANADIAN SYLLABICS LE", 39787 direction="l", 39788 linebreak="al", 39789 unicodeslot=0x14D3, 39790 }, 39791 [0x14D4]={ 39792 category="lo", 39793 description="CANADIAN SYLLABICS LAAI", 39794 direction="l", 39795 linebreak="al", 39796 unicodeslot=0x14D4, 39797 }, 39798 [0x14D5]={ 39799 category="lo", 39800 description="CANADIAN SYLLABICS LI", 39801 direction="l", 39802 linebreak="al", 39803 unicodeslot=0x14D5, 39804 }, 39805 [0x14D6]={ 39806 category="lo", 39807 description="CANADIAN SYLLABICS LII", 39808 direction="l", 39809 linebreak="al", 39810 unicodeslot=0x14D6, 39811 }, 39812 [0x14D7]={ 39813 category="lo", 39814 description="CANADIAN SYLLABICS LO", 39815 direction="l", 39816 linebreak="al", 39817 unicodeslot=0x14D7, 39818 }, 39819 [0x14D8]={ 39820 category="lo", 39821 description="CANADIAN SYLLABICS LOO", 39822 direction="l", 39823 linebreak="al", 39824 unicodeslot=0x14D8, 39825 }, 39826 [0x14D9]={ 39827 category="lo", 39828 description="CANADIAN SYLLABICS Y-CREE LOO", 39829 direction="l", 39830 linebreak="al", 39831 unicodeslot=0x14D9, 39832 }, 39833 [0x14DA]={ 39834 category="lo", 39835 description="CANADIAN SYLLABICS LA", 39836 direction="l", 39837 linebreak="al", 39838 unicodeslot=0x14DA, 39839 }, 39840 [0x14DB]={ 39841 category="lo", 39842 description="CANADIAN SYLLABICS LAA", 39843 direction="l", 39844 linebreak="al", 39845 unicodeslot=0x14DB, 39846 }, 39847 [0x14DC]={ 39848 category="lo", 39849 description="CANADIAN SYLLABICS LWE", 39850 direction="l", 39851 linebreak="al", 39852 unicodeslot=0x14DC, 39853 }, 39854 [0x14DD]={ 39855 category="lo", 39856 description="CANADIAN SYLLABICS WEST-CREE LWE", 39857 direction="l", 39858 linebreak="al", 39859 unicodeslot=0x14DD, 39860 }, 39861 [0x14DE]={ 39862 category="lo", 39863 description="CANADIAN SYLLABICS LWI", 39864 direction="l", 39865 linebreak="al", 39866 unicodeslot=0x14DE, 39867 }, 39868 [0x14DF]={ 39869 category="lo", 39870 description="CANADIAN SYLLABICS WEST-CREE LWI", 39871 direction="l", 39872 linebreak="al", 39873 unicodeslot=0x14DF, 39874 }, 39875 [0x14E0]={ 39876 category="lo", 39877 description="CANADIAN SYLLABICS LWII", 39878 direction="l", 39879 linebreak="al", 39880 unicodeslot=0x14E0, 39881 }, 39882 [0x14E1]={ 39883 category="lo", 39884 description="CANADIAN SYLLABICS WEST-CREE LWII", 39885 direction="l", 39886 linebreak="al", 39887 unicodeslot=0x14E1, 39888 }, 39889 [0x14E2]={ 39890 category="lo", 39891 description="CANADIAN SYLLABICS LWO", 39892 direction="l", 39893 linebreak="al", 39894 unicodeslot=0x14E2, 39895 }, 39896 [0x14E3]={ 39897 category="lo", 39898 description="CANADIAN SYLLABICS WEST-CREE LWO", 39899 direction="l", 39900 linebreak="al", 39901 unicodeslot=0x14E3, 39902 }, 39903 [0x14E4]={ 39904 category="lo", 39905 description="CANADIAN SYLLABICS LWOO", 39906 direction="l", 39907 linebreak="al", 39908 unicodeslot=0x14E4, 39909 }, 39910 [0x14E5]={ 39911 category="lo", 39912 description="CANADIAN SYLLABICS WEST-CREE LWOO", 39913 direction="l", 39914 linebreak="al", 39915 unicodeslot=0x14E5, 39916 }, 39917 [0x14E6]={ 39918 category="lo", 39919 description="CANADIAN SYLLABICS LWA", 39920 direction="l", 39921 linebreak="al", 39922 unicodeslot=0x14E6, 39923 }, 39924 [0x14E7]={ 39925 category="lo", 39926 description="CANADIAN SYLLABICS WEST-CREE LWA", 39927 direction="l", 39928 linebreak="al", 39929 unicodeslot=0x14E7, 39930 }, 39931 [0x14E8]={ 39932 category="lo", 39933 description="CANADIAN SYLLABICS LWAA", 39934 direction="l", 39935 linebreak="al", 39936 unicodeslot=0x14E8, 39937 }, 39938 [0x14E9]={ 39939 category="lo", 39940 description="CANADIAN SYLLABICS WEST-CREE LWAA", 39941 direction="l", 39942 linebreak="al", 39943 unicodeslot=0x14E9, 39944 }, 39945 [0x14EA]={ 39946 category="lo", 39947 description="CANADIAN SYLLABICS L", 39948 direction="l", 39949 linebreak="al", 39950 unicodeslot=0x14EA, 39951 }, 39952 [0x14EB]={ 39953 category="lo", 39954 description="CANADIAN SYLLABICS WEST-CREE L", 39955 direction="l", 39956 linebreak="al", 39957 unicodeslot=0x14EB, 39958 }, 39959 [0x14EC]={ 39960 category="lo", 39961 description="CANADIAN SYLLABICS MEDIAL L", 39962 direction="l", 39963 linebreak="al", 39964 unicodeslot=0x14EC, 39965 }, 39966 [0x14ED]={ 39967 category="lo", 39968 description="CANADIAN SYLLABICS SE", 39969 direction="l", 39970 linebreak="al", 39971 unicodeslot=0x14ED, 39972 }, 39973 [0x14EE]={ 39974 category="lo", 39975 description="CANADIAN SYLLABICS SAAI", 39976 direction="l", 39977 linebreak="al", 39978 unicodeslot=0x14EE, 39979 }, 39980 [0x14EF]={ 39981 category="lo", 39982 description="CANADIAN SYLLABICS SI", 39983 direction="l", 39984 linebreak="al", 39985 unicodeslot=0x14EF, 39986 }, 39987 [0x14F0]={ 39988 category="lo", 39989 description="CANADIAN SYLLABICS SII", 39990 direction="l", 39991 linebreak="al", 39992 unicodeslot=0x14F0, 39993 }, 39994 [0x14F1]={ 39995 category="lo", 39996 description="CANADIAN SYLLABICS SO", 39997 direction="l", 39998 linebreak="al", 39999 unicodeslot=0x14F1, 40000 }, 40001 [0x14F2]={ 40002 category="lo", 40003 description="CANADIAN SYLLABICS SOO", 40004 direction="l", 40005 linebreak="al", 40006 unicodeslot=0x14F2, 40007 }, 40008 [0x14F3]={ 40009 category="lo", 40010 description="CANADIAN SYLLABICS Y-CREE SOO", 40011 direction="l", 40012 linebreak="al", 40013 unicodeslot=0x14F3, 40014 }, 40015 [0x14F4]={ 40016 category="lo", 40017 description="CANADIAN SYLLABICS SA", 40018 direction="l", 40019 linebreak="al", 40020 unicodeslot=0x14F4, 40021 }, 40022 [0x14F5]={ 40023 category="lo", 40024 description="CANADIAN SYLLABICS SAA", 40025 direction="l", 40026 linebreak="al", 40027 unicodeslot=0x14F5, 40028 }, 40029 [0x14F6]={ 40030 category="lo", 40031 description="CANADIAN SYLLABICS SWE", 40032 direction="l", 40033 linebreak="al", 40034 unicodeslot=0x14F6, 40035 }, 40036 [0x14F7]={ 40037 category="lo", 40038 description="CANADIAN SYLLABICS WEST-CREE SWE", 40039 direction="l", 40040 linebreak="al", 40041 unicodeslot=0x14F7, 40042 }, 40043 [0x14F8]={ 40044 category="lo", 40045 description="CANADIAN SYLLABICS SWI", 40046 direction="l", 40047 linebreak="al", 40048 unicodeslot=0x14F8, 40049 }, 40050 [0x14F9]={ 40051 category="lo", 40052 description="CANADIAN SYLLABICS WEST-CREE SWI", 40053 direction="l", 40054 linebreak="al", 40055 unicodeslot=0x14F9, 40056 }, 40057 [0x14FA]={ 40058 category="lo", 40059 description="CANADIAN SYLLABICS SWII", 40060 direction="l", 40061 linebreak="al", 40062 unicodeslot=0x14FA, 40063 }, 40064 [0x14FB]={ 40065 category="lo", 40066 description="CANADIAN SYLLABICS WEST-CREE SWII", 40067 direction="l", 40068 linebreak="al", 40069 unicodeslot=0x14FB, 40070 }, 40071 [0x14FC]={ 40072 category="lo", 40073 description="CANADIAN SYLLABICS SWO", 40074 direction="l", 40075 linebreak="al", 40076 unicodeslot=0x14FC, 40077 }, 40078 [0x14FD]={ 40079 category="lo", 40080 description="CANADIAN SYLLABICS WEST-CREE SWO", 40081 direction="l", 40082 linebreak="al", 40083 unicodeslot=0x14FD, 40084 }, 40085 [0x14FE]={ 40086 category="lo", 40087 description="CANADIAN SYLLABICS SWOO", 40088 direction="l", 40089 linebreak="al", 40090 unicodeslot=0x14FE, 40091 }, 40092 [0x14FF]={ 40093 category="lo", 40094 description="CANADIAN SYLLABICS WEST-CREE SWOO", 40095 direction="l", 40096 linebreak="al", 40097 unicodeslot=0x14FF, 40098 }, 40099 [0x1500]={ 40100 category="lo", 40101 description="CANADIAN SYLLABICS SWA", 40102 direction="l", 40103 linebreak="al", 40104 unicodeslot=0x1500, 40105 }, 40106 [0x1501]={ 40107 category="lo", 40108 description="CANADIAN SYLLABICS WEST-CREE SWA", 40109 direction="l", 40110 linebreak="al", 40111 unicodeslot=0x1501, 40112 }, 40113 [0x1502]={ 40114 category="lo", 40115 description="CANADIAN SYLLABICS SWAA", 40116 direction="l", 40117 linebreak="al", 40118 unicodeslot=0x1502, 40119 }, 40120 [0x1503]={ 40121 category="lo", 40122 description="CANADIAN SYLLABICS WEST-CREE SWAA", 40123 direction="l", 40124 linebreak="al", 40125 unicodeslot=0x1503, 40126 }, 40127 [0x1504]={ 40128 category="lo", 40129 description="CANADIAN SYLLABICS NASKAPI SWAA", 40130 direction="l", 40131 linebreak="al", 40132 unicodeslot=0x1504, 40133 }, 40134 [0x1505]={ 40135 category="lo", 40136 description="CANADIAN SYLLABICS S", 40137 direction="l", 40138 linebreak="al", 40139 unicodeslot=0x1505, 40140 }, 40141 [0x1506]={ 40142 category="lo", 40143 description="CANADIAN SYLLABICS ATHAPASCAN S", 40144 direction="l", 40145 linebreak="al", 40146 unicodeslot=0x1506, 40147 }, 40148 [0x1507]={ 40149 category="lo", 40150 description="CANADIAN SYLLABICS SW", 40151 direction="l", 40152 linebreak="al", 40153 unicodeslot=0x1507, 40154 }, 40155 [0x1508]={ 40156 category="lo", 40157 description="CANADIAN SYLLABICS BLACKFOOT S", 40158 direction="l", 40159 linebreak="al", 40160 unicodeslot=0x1508, 40161 }, 40162 [0x1509]={ 40163 category="lo", 40164 description="CANADIAN SYLLABICS MOOSE-CREE SK", 40165 direction="l", 40166 linebreak="al", 40167 unicodeslot=0x1509, 40168 }, 40169 [0x150A]={ 40170 category="lo", 40171 description="CANADIAN SYLLABICS NASKAPI SKW", 40172 direction="l", 40173 linebreak="al", 40174 unicodeslot=0x150A, 40175 }, 40176 [0x150B]={ 40177 category="lo", 40178 description="CANADIAN SYLLABICS NASKAPI S-W", 40179 direction="l", 40180 linebreak="al", 40181 unicodeslot=0x150B, 40182 }, 40183 [0x150C]={ 40184 category="lo", 40185 description="CANADIAN SYLLABICS NASKAPI SPWA", 40186 direction="l", 40187 linebreak="al", 40188 unicodeslot=0x150C, 40189 }, 40190 [0x150D]={ 40191 category="lo", 40192 description="CANADIAN SYLLABICS NASKAPI STWA", 40193 direction="l", 40194 linebreak="al", 40195 unicodeslot=0x150D, 40196 }, 40197 [0x150E]={ 40198 category="lo", 40199 description="CANADIAN SYLLABICS NASKAPI SKWA", 40200 direction="l", 40201 linebreak="al", 40202 unicodeslot=0x150E, 40203 }, 40204 [0x150F]={ 40205 category="lo", 40206 description="CANADIAN SYLLABICS NASKAPI SCWA", 40207 direction="l", 40208 linebreak="al", 40209 unicodeslot=0x150F, 40210 }, 40211 [0x1510]={ 40212 category="lo", 40213 description="CANADIAN SYLLABICS SHE", 40214 direction="l", 40215 linebreak="al", 40216 unicodeslot=0x1510, 40217 }, 40218 [0x1511]={ 40219 category="lo", 40220 description="CANADIAN SYLLABICS SHI", 40221 direction="l", 40222 linebreak="al", 40223 unicodeslot=0x1511, 40224 }, 40225 [0x1512]={ 40226 category="lo", 40227 description="CANADIAN SYLLABICS SHII", 40228 direction="l", 40229 linebreak="al", 40230 unicodeslot=0x1512, 40231 }, 40232 [0x1513]={ 40233 category="lo", 40234 description="CANADIAN SYLLABICS SHO", 40235 direction="l", 40236 linebreak="al", 40237 unicodeslot=0x1513, 40238 }, 40239 [0x1514]={ 40240 category="lo", 40241 description="CANADIAN SYLLABICS SHOO", 40242 direction="l", 40243 linebreak="al", 40244 unicodeslot=0x1514, 40245 }, 40246 [0x1515]={ 40247 category="lo", 40248 description="CANADIAN SYLLABICS SHA", 40249 direction="l", 40250 linebreak="al", 40251 unicodeslot=0x1515, 40252 }, 40253 [0x1516]={ 40254 category="lo", 40255 description="CANADIAN SYLLABICS SHAA", 40256 direction="l", 40257 linebreak="al", 40258 unicodeslot=0x1516, 40259 }, 40260 [0x1517]={ 40261 category="lo", 40262 description="CANADIAN SYLLABICS SHWE", 40263 direction="l", 40264 linebreak="al", 40265 unicodeslot=0x1517, 40266 }, 40267 [0x1518]={ 40268 category="lo", 40269 description="CANADIAN SYLLABICS WEST-CREE SHWE", 40270 direction="l", 40271 linebreak="al", 40272 unicodeslot=0x1518, 40273 }, 40274 [0x1519]={ 40275 category="lo", 40276 description="CANADIAN SYLLABICS SHWI", 40277 direction="l", 40278 linebreak="al", 40279 unicodeslot=0x1519, 40280 }, 40281 [0x151A]={ 40282 category="lo", 40283 description="CANADIAN SYLLABICS WEST-CREE SHWI", 40284 direction="l", 40285 linebreak="al", 40286 unicodeslot=0x151A, 40287 }, 40288 [0x151B]={ 40289 category="lo", 40290 description="CANADIAN SYLLABICS SHWII", 40291 direction="l", 40292 linebreak="al", 40293 unicodeslot=0x151B, 40294 }, 40295 [0x151C]={ 40296 category="lo", 40297 description="CANADIAN SYLLABICS WEST-CREE SHWII", 40298 direction="l", 40299 linebreak="al", 40300 unicodeslot=0x151C, 40301 }, 40302 [0x151D]={ 40303 category="lo", 40304 description="CANADIAN SYLLABICS SHWO", 40305 direction="l", 40306 linebreak="al", 40307 unicodeslot=0x151D, 40308 }, 40309 [0x151E]={ 40310 category="lo", 40311 description="CANADIAN SYLLABICS WEST-CREE SHWO", 40312 direction="l", 40313 linebreak="al", 40314 unicodeslot=0x151E, 40315 }, 40316 [0x151F]={ 40317 category="lo", 40318 description="CANADIAN SYLLABICS SHWOO", 40319 direction="l", 40320 linebreak="al", 40321 unicodeslot=0x151F, 40322 }, 40323 [0x1520]={ 40324 category="lo", 40325 description="CANADIAN SYLLABICS WEST-CREE SHWOO", 40326 direction="l", 40327 linebreak="al", 40328 unicodeslot=0x1520, 40329 }, 40330 [0x1521]={ 40331 category="lo", 40332 description="CANADIAN SYLLABICS SHWA", 40333 direction="l", 40334 linebreak="al", 40335 unicodeslot=0x1521, 40336 }, 40337 [0x1522]={ 40338 category="lo", 40339 description="CANADIAN SYLLABICS WEST-CREE SHWA", 40340 direction="l", 40341 linebreak="al", 40342 unicodeslot=0x1522, 40343 }, 40344 [0x1523]={ 40345 category="lo", 40346 description="CANADIAN SYLLABICS SHWAA", 40347 direction="l", 40348 linebreak="al", 40349 unicodeslot=0x1523, 40350 }, 40351 [0x1524]={ 40352 category="lo", 40353 description="CANADIAN SYLLABICS WEST-CREE SHWAA", 40354 direction="l", 40355 linebreak="al", 40356 unicodeslot=0x1524, 40357 }, 40358 [0x1525]={ 40359 category="lo", 40360 description="CANADIAN SYLLABICS SH", 40361 direction="l", 40362 linebreak="al", 40363 unicodeslot=0x1525, 40364 }, 40365 [0x1526]={ 40366 category="lo", 40367 description="CANADIAN SYLLABICS YE", 40368 direction="l", 40369 linebreak="al", 40370 unicodeslot=0x1526, 40371 }, 40372 [0x1527]={ 40373 category="lo", 40374 description="CANADIAN SYLLABICS YAAI", 40375 direction="l", 40376 linebreak="al", 40377 unicodeslot=0x1527, 40378 }, 40379 [0x1528]={ 40380 category="lo", 40381 description="CANADIAN SYLLABICS YI", 40382 direction="l", 40383 linebreak="al", 40384 unicodeslot=0x1528, 40385 }, 40386 [0x1529]={ 40387 category="lo", 40388 description="CANADIAN SYLLABICS YII", 40389 direction="l", 40390 linebreak="al", 40391 unicodeslot=0x1529, 40392 }, 40393 [0x152A]={ 40394 category="lo", 40395 description="CANADIAN SYLLABICS YO", 40396 direction="l", 40397 linebreak="al", 40398 unicodeslot=0x152A, 40399 }, 40400 [0x152B]={ 40401 category="lo", 40402 description="CANADIAN SYLLABICS YOO", 40403 direction="l", 40404 linebreak="al", 40405 unicodeslot=0x152B, 40406 }, 40407 [0x152C]={ 40408 category="lo", 40409 description="CANADIAN SYLLABICS Y-CREE YOO", 40410 direction="l", 40411 linebreak="al", 40412 unicodeslot=0x152C, 40413 }, 40414 [0x152D]={ 40415 category="lo", 40416 description="CANADIAN SYLLABICS YA", 40417 direction="l", 40418 linebreak="al", 40419 unicodeslot=0x152D, 40420 }, 40421 [0x152E]={ 40422 category="lo", 40423 description="CANADIAN SYLLABICS YAA", 40424 direction="l", 40425 linebreak="al", 40426 unicodeslot=0x152E, 40427 }, 40428 [0x152F]={ 40429 category="lo", 40430 description="CANADIAN SYLLABICS YWE", 40431 direction="l", 40432 linebreak="al", 40433 unicodeslot=0x152F, 40434 }, 40435 [0x1530]={ 40436 category="lo", 40437 description="CANADIAN SYLLABICS WEST-CREE YWE", 40438 direction="l", 40439 linebreak="al", 40440 unicodeslot=0x1530, 40441 }, 40442 [0x1531]={ 40443 category="lo", 40444 description="CANADIAN SYLLABICS YWI", 40445 direction="l", 40446 linebreak="al", 40447 unicodeslot=0x1531, 40448 }, 40449 [0x1532]={ 40450 category="lo", 40451 description="CANADIAN SYLLABICS WEST-CREE YWI", 40452 direction="l", 40453 linebreak="al", 40454 unicodeslot=0x1532, 40455 }, 40456 [0x1533]={ 40457 category="lo", 40458 description="CANADIAN SYLLABICS YWII", 40459 direction="l", 40460 linebreak="al", 40461 unicodeslot=0x1533, 40462 }, 40463 [0x1534]={ 40464 category="lo", 40465 description="CANADIAN SYLLABICS WEST-CREE YWII", 40466 direction="l", 40467 linebreak="al", 40468 unicodeslot=0x1534, 40469 }, 40470 [0x1535]={ 40471 category="lo", 40472 description="CANADIAN SYLLABICS YWO", 40473 direction="l", 40474 linebreak="al", 40475 unicodeslot=0x1535, 40476 }, 40477 [0x1536]={ 40478 category="lo", 40479 description="CANADIAN SYLLABICS WEST-CREE YWO", 40480 direction="l", 40481 linebreak="al", 40482 unicodeslot=0x1536, 40483 }, 40484 [0x1537]={ 40485 category="lo", 40486 description="CANADIAN SYLLABICS YWOO", 40487 direction="l", 40488 linebreak="al", 40489 unicodeslot=0x1537, 40490 }, 40491 [0x1538]={ 40492 category="lo", 40493 description="CANADIAN SYLLABICS WEST-CREE YWOO", 40494 direction="l", 40495 linebreak="al", 40496 unicodeslot=0x1538, 40497 }, 40498 [0x1539]={ 40499 category="lo", 40500 description="CANADIAN SYLLABICS YWA", 40501 direction="l", 40502 linebreak="al", 40503 unicodeslot=0x1539, 40504 }, 40505 [0x153A]={ 40506 category="lo", 40507 description="CANADIAN SYLLABICS WEST-CREE YWA", 40508 direction="l", 40509 linebreak="al", 40510 unicodeslot=0x153A, 40511 }, 40512 [0x153B]={ 40513 category="lo", 40514 description="CANADIAN SYLLABICS YWAA", 40515 direction="l", 40516 linebreak="al", 40517 unicodeslot=0x153B, 40518 }, 40519 [0x153C]={ 40520 category="lo", 40521 description="CANADIAN SYLLABICS WEST-CREE YWAA", 40522 direction="l", 40523 linebreak="al", 40524 unicodeslot=0x153C, 40525 }, 40526 [0x153D]={ 40527 category="lo", 40528 description="CANADIAN SYLLABICS NASKAPI YWAA", 40529 direction="l", 40530 linebreak="al", 40531 unicodeslot=0x153D, 40532 }, 40533 [0x153E]={ 40534 category="lo", 40535 description="CANADIAN SYLLABICS Y", 40536 direction="l", 40537 linebreak="al", 40538 unicodeslot=0x153E, 40539 }, 40540 [0x153F]={ 40541 category="lo", 40542 description="CANADIAN SYLLABICS BIBLE-CREE Y", 40543 direction="l", 40544 linebreak="al", 40545 unicodeslot=0x153F, 40546 }, 40547 [0x1540]={ 40548 category="lo", 40549 description="CANADIAN SYLLABICS WEST-CREE Y", 40550 direction="l", 40551 linebreak="al", 40552 unicodeslot=0x1540, 40553 }, 40554 [0x1541]={ 40555 category="lo", 40556 description="CANADIAN SYLLABICS SAYISI YI", 40557 direction="l", 40558 linebreak="al", 40559 unicodeslot=0x1541, 40560 }, 40561 [0x1542]={ 40562 category="lo", 40563 description="CANADIAN SYLLABICS RE", 40564 direction="l", 40565 linebreak="al", 40566 unicodeslot=0x1542, 40567 }, 40568 [0x1543]={ 40569 category="lo", 40570 description="CANADIAN SYLLABICS R-CREE RE", 40571 direction="l", 40572 linebreak="al", 40573 unicodeslot=0x1543, 40574 }, 40575 [0x1544]={ 40576 category="lo", 40577 description="CANADIAN SYLLABICS WEST-CREE LE", 40578 direction="l", 40579 linebreak="al", 40580 unicodeslot=0x1544, 40581 }, 40582 [0x1545]={ 40583 category="lo", 40584 description="CANADIAN SYLLABICS RAAI", 40585 direction="l", 40586 linebreak="al", 40587 unicodeslot=0x1545, 40588 }, 40589 [0x1546]={ 40590 category="lo", 40591 description="CANADIAN SYLLABICS RI", 40592 direction="l", 40593 linebreak="al", 40594 unicodeslot=0x1546, 40595 }, 40596 [0x1547]={ 40597 category="lo", 40598 description="CANADIAN SYLLABICS RII", 40599 direction="l", 40600 linebreak="al", 40601 unicodeslot=0x1547, 40602 }, 40603 [0x1548]={ 40604 category="lo", 40605 description="CANADIAN SYLLABICS RO", 40606 direction="l", 40607 linebreak="al", 40608 unicodeslot=0x1548, 40609 }, 40610 [0x1549]={ 40611 category="lo", 40612 description="CANADIAN SYLLABICS ROO", 40613 direction="l", 40614 linebreak="al", 40615 unicodeslot=0x1549, 40616 }, 40617 [0x154A]={ 40618 category="lo", 40619 description="CANADIAN SYLLABICS WEST-CREE LO", 40620 direction="l", 40621 linebreak="al", 40622 unicodeslot=0x154A, 40623 }, 40624 [0x154B]={ 40625 category="lo", 40626 description="CANADIAN SYLLABICS RA", 40627 direction="l", 40628 linebreak="al", 40629 unicodeslot=0x154B, 40630 }, 40631 [0x154C]={ 40632 category="lo", 40633 description="CANADIAN SYLLABICS RAA", 40634 direction="l", 40635 linebreak="al", 40636 unicodeslot=0x154C, 40637 }, 40638 [0x154D]={ 40639 category="lo", 40640 description="CANADIAN SYLLABICS WEST-CREE LA", 40641 direction="l", 40642 linebreak="al", 40643 unicodeslot=0x154D, 40644 }, 40645 [0x154E]={ 40646 category="lo", 40647 description="CANADIAN SYLLABICS RWAA", 40648 direction="l", 40649 linebreak="al", 40650 unicodeslot=0x154E, 40651 }, 40652 [0x154F]={ 40653 category="lo", 40654 description="CANADIAN SYLLABICS WEST-CREE RWAA", 40655 direction="l", 40656 linebreak="al", 40657 unicodeslot=0x154F, 40658 }, 40659 [0x1550]={ 40660 category="lo", 40661 description="CANADIAN SYLLABICS R", 40662 direction="l", 40663 linebreak="al", 40664 unicodeslot=0x1550, 40665 }, 40666 [0x1551]={ 40667 category="lo", 40668 description="CANADIAN SYLLABICS WEST-CREE R", 40669 direction="l", 40670 linebreak="al", 40671 unicodeslot=0x1551, 40672 }, 40673 [0x1552]={ 40674 category="lo", 40675 description="CANADIAN SYLLABICS MEDIAL R", 40676 direction="l", 40677 linebreak="al", 40678 unicodeslot=0x1552, 40679 }, 40680 [0x1553]={ 40681 category="lo", 40682 description="CANADIAN SYLLABICS FE", 40683 direction="l", 40684 linebreak="al", 40685 unicodeslot=0x1553, 40686 }, 40687 [0x1554]={ 40688 category="lo", 40689 description="CANADIAN SYLLABICS FAAI", 40690 direction="l", 40691 linebreak="al", 40692 unicodeslot=0x1554, 40693 }, 40694 [0x1555]={ 40695 category="lo", 40696 description="CANADIAN SYLLABICS FI", 40697 direction="l", 40698 linebreak="al", 40699 unicodeslot=0x1555, 40700 }, 40701 [0x1556]={ 40702 category="lo", 40703 description="CANADIAN SYLLABICS FII", 40704 direction="l", 40705 linebreak="al", 40706 unicodeslot=0x1556, 40707 }, 40708 [0x1557]={ 40709 category="lo", 40710 description="CANADIAN SYLLABICS FO", 40711 direction="l", 40712 linebreak="al", 40713 unicodeslot=0x1557, 40714 }, 40715 [0x1558]={ 40716 category="lo", 40717 description="CANADIAN SYLLABICS FOO", 40718 direction="l", 40719 linebreak="al", 40720 unicodeslot=0x1558, 40721 }, 40722 [0x1559]={ 40723 category="lo", 40724 description="CANADIAN SYLLABICS FA", 40725 direction="l", 40726 linebreak="al", 40727 unicodeslot=0x1559, 40728 }, 40729 [0x155A]={ 40730 category="lo", 40731 description="CANADIAN SYLLABICS FAA", 40732 direction="l", 40733 linebreak="al", 40734 unicodeslot=0x155A, 40735 }, 40736 [0x155B]={ 40737 category="lo", 40738 description="CANADIAN SYLLABICS FWAA", 40739 direction="l", 40740 linebreak="al", 40741 unicodeslot=0x155B, 40742 }, 40743 [0x155C]={ 40744 category="lo", 40745 description="CANADIAN SYLLABICS WEST-CREE FWAA", 40746 direction="l", 40747 linebreak="al", 40748 unicodeslot=0x155C, 40749 }, 40750 [0x155D]={ 40751 category="lo", 40752 description="CANADIAN SYLLABICS F", 40753 direction="l", 40754 linebreak="al", 40755 unicodeslot=0x155D, 40756 }, 40757 [0x155E]={ 40758 category="lo", 40759 description="CANADIAN SYLLABICS THE", 40760 direction="l", 40761 linebreak="al", 40762 unicodeslot=0x155E, 40763 }, 40764 [0x155F]={ 40765 category="lo", 40766 description="CANADIAN SYLLABICS N-CREE THE", 40767 direction="l", 40768 linebreak="al", 40769 unicodeslot=0x155F, 40770 }, 40771 [0x1560]={ 40772 category="lo", 40773 description="CANADIAN SYLLABICS THI", 40774 direction="l", 40775 linebreak="al", 40776 unicodeslot=0x1560, 40777 }, 40778 [0x1561]={ 40779 category="lo", 40780 description="CANADIAN SYLLABICS N-CREE THI", 40781 direction="l", 40782 linebreak="al", 40783 unicodeslot=0x1561, 40784 }, 40785 [0x1562]={ 40786 category="lo", 40787 description="CANADIAN SYLLABICS THII", 40788 direction="l", 40789 linebreak="al", 40790 unicodeslot=0x1562, 40791 }, 40792 [0x1563]={ 40793 category="lo", 40794 description="CANADIAN SYLLABICS N-CREE THII", 40795 direction="l", 40796 linebreak="al", 40797 unicodeslot=0x1563, 40798 }, 40799 [0x1564]={ 40800 category="lo", 40801 description="CANADIAN SYLLABICS THO", 40802 direction="l", 40803 linebreak="al", 40804 unicodeslot=0x1564, 40805 }, 40806 [0x1565]={ 40807 category="lo", 40808 description="CANADIAN SYLLABICS THOO", 40809 direction="l", 40810 linebreak="al", 40811 unicodeslot=0x1565, 40812 }, 40813 [0x1566]={ 40814 category="lo", 40815 description="CANADIAN SYLLABICS THA", 40816 direction="l", 40817 linebreak="al", 40818 unicodeslot=0x1566, 40819 }, 40820 [0x1567]={ 40821 category="lo", 40822 description="CANADIAN SYLLABICS THAA", 40823 direction="l", 40824 linebreak="al", 40825 unicodeslot=0x1567, 40826 }, 40827 [0x1568]={ 40828 category="lo", 40829 description="CANADIAN SYLLABICS THWAA", 40830 direction="l", 40831 linebreak="al", 40832 unicodeslot=0x1568, 40833 }, 40834 [0x1569]={ 40835 category="lo", 40836 description="CANADIAN SYLLABICS WEST-CREE THWAA", 40837 direction="l", 40838 linebreak="al", 40839 unicodeslot=0x1569, 40840 }, 40841 [0x156A]={ 40842 category="lo", 40843 description="CANADIAN SYLLABICS TH", 40844 direction="l", 40845 linebreak="al", 40846 unicodeslot=0x156A, 40847 }, 40848 [0x156B]={ 40849 category="lo", 40850 description="CANADIAN SYLLABICS TTHE", 40851 direction="l", 40852 linebreak="al", 40853 unicodeslot=0x156B, 40854 }, 40855 [0x156C]={ 40856 category="lo", 40857 description="CANADIAN SYLLABICS TTHI", 40858 direction="l", 40859 linebreak="al", 40860 unicodeslot=0x156C, 40861 }, 40862 [0x156D]={ 40863 category="lo", 40864 description="CANADIAN SYLLABICS TTHO", 40865 direction="l", 40866 linebreak="al", 40867 unicodeslot=0x156D, 40868 }, 40869 [0x156E]={ 40870 category="lo", 40871 description="CANADIAN SYLLABICS TTHA", 40872 direction="l", 40873 linebreak="al", 40874 unicodeslot=0x156E, 40875 }, 40876 [0x156F]={ 40877 category="lo", 40878 description="CANADIAN SYLLABICS TTH", 40879 direction="l", 40880 linebreak="al", 40881 unicodeslot=0x156F, 40882 }, 40883 [0x1570]={ 40884 category="lo", 40885 description="CANADIAN SYLLABICS TYE", 40886 direction="l", 40887 linebreak="al", 40888 unicodeslot=0x1570, 40889 }, 40890 [0x1571]={ 40891 category="lo", 40892 description="CANADIAN SYLLABICS TYI", 40893 direction="l", 40894 linebreak="al", 40895 unicodeslot=0x1571, 40896 }, 40897 [0x1572]={ 40898 category="lo", 40899 description="CANADIAN SYLLABICS TYO", 40900 direction="l", 40901 linebreak="al", 40902 unicodeslot=0x1572, 40903 }, 40904 [0x1573]={ 40905 category="lo", 40906 description="CANADIAN SYLLABICS TYA", 40907 direction="l", 40908 linebreak="al", 40909 unicodeslot=0x1573, 40910 }, 40911 [0x1574]={ 40912 category="lo", 40913 description="CANADIAN SYLLABICS NUNAVIK HE", 40914 direction="l", 40915 linebreak="al", 40916 unicodeslot=0x1574, 40917 }, 40918 [0x1575]={ 40919 category="lo", 40920 description="CANADIAN SYLLABICS NUNAVIK HI", 40921 direction="l", 40922 linebreak="al", 40923 unicodeslot=0x1575, 40924 }, 40925 [0x1576]={ 40926 category="lo", 40927 description="CANADIAN SYLLABICS NUNAVIK HII", 40928 direction="l", 40929 linebreak="al", 40930 unicodeslot=0x1576, 40931 }, 40932 [0x1577]={ 40933 category="lo", 40934 description="CANADIAN SYLLABICS NUNAVIK HO", 40935 direction="l", 40936 linebreak="al", 40937 unicodeslot=0x1577, 40938 }, 40939 [0x1578]={ 40940 category="lo", 40941 description="CANADIAN SYLLABICS NUNAVIK HOO", 40942 direction="l", 40943 linebreak="al", 40944 unicodeslot=0x1578, 40945 }, 40946 [0x1579]={ 40947 category="lo", 40948 description="CANADIAN SYLLABICS NUNAVIK HA", 40949 direction="l", 40950 linebreak="al", 40951 unicodeslot=0x1579, 40952 }, 40953 [0x157A]={ 40954 category="lo", 40955 description="CANADIAN SYLLABICS NUNAVIK HAA", 40956 direction="l", 40957 linebreak="al", 40958 unicodeslot=0x157A, 40959 }, 40960 [0x157B]={ 40961 category="lo", 40962 description="CANADIAN SYLLABICS NUNAVIK H", 40963 direction="l", 40964 linebreak="al", 40965 unicodeslot=0x157B, 40966 }, 40967 [0x157C]={ 40968 category="lo", 40969 description="CANADIAN SYLLABICS NUNAVUT H", 40970 direction="l", 40971 linebreak="al", 40972 unicodeslot=0x157C, 40973 }, 40974 [0x157D]={ 40975 category="lo", 40976 description="CANADIAN SYLLABICS HK", 40977 direction="l", 40978 linebreak="al", 40979 unicodeslot=0x157D, 40980 }, 40981 [0x157E]={ 40982 category="lo", 40983 description="CANADIAN SYLLABICS QAAI", 40984 direction="l", 40985 linebreak="al", 40986 unicodeslot=0x157E, 40987 }, 40988 [0x157F]={ 40989 category="lo", 40990 description="CANADIAN SYLLABICS QI", 40991 direction="l", 40992 linebreak="al", 40993 unicodeslot=0x157F, 40994 }, 40995 [0x1580]={ 40996 category="lo", 40997 description="CANADIAN SYLLABICS QII", 40998 direction="l", 40999 linebreak="al", 41000 unicodeslot=0x1580, 41001 }, 41002 [0x1581]={ 41003 category="lo", 41004 description="CANADIAN SYLLABICS QO", 41005 direction="l", 41006 linebreak="al", 41007 unicodeslot=0x1581, 41008 }, 41009 [0x1582]={ 41010 category="lo", 41011 description="CANADIAN SYLLABICS QOO", 41012 direction="l", 41013 linebreak="al", 41014 unicodeslot=0x1582, 41015 }, 41016 [0x1583]={ 41017 category="lo", 41018 description="CANADIAN SYLLABICS QA", 41019 direction="l", 41020 linebreak="al", 41021 unicodeslot=0x1583, 41022 }, 41023 [0x1584]={ 41024 category="lo", 41025 description="CANADIAN SYLLABICS QAA", 41026 direction="l", 41027 linebreak="al", 41028 unicodeslot=0x1584, 41029 }, 41030 [0x1585]={ 41031 category="lo", 41032 description="CANADIAN SYLLABICS Q", 41033 direction="l", 41034 linebreak="al", 41035 unicodeslot=0x1585, 41036 }, 41037 [0x1586]={ 41038 category="lo", 41039 description="CANADIAN SYLLABICS TLHE", 41040 direction="l", 41041 linebreak="al", 41042 unicodeslot=0x1586, 41043 }, 41044 [0x1587]={ 41045 category="lo", 41046 description="CANADIAN SYLLABICS TLHI", 41047 direction="l", 41048 linebreak="al", 41049 unicodeslot=0x1587, 41050 }, 41051 [0x1588]={ 41052 category="lo", 41053 description="CANADIAN SYLLABICS TLHO", 41054 direction="l", 41055 linebreak="al", 41056 unicodeslot=0x1588, 41057 }, 41058 [0x1589]={ 41059 category="lo", 41060 description="CANADIAN SYLLABICS TLHA", 41061 direction="l", 41062 linebreak="al", 41063 unicodeslot=0x1589, 41064 }, 41065 [0x158A]={ 41066 category="lo", 41067 description="CANADIAN SYLLABICS WEST-CREE RE", 41068 direction="l", 41069 linebreak="al", 41070 unicodeslot=0x158A, 41071 }, 41072 [0x158B]={ 41073 category="lo", 41074 description="CANADIAN SYLLABICS WEST-CREE RI", 41075 direction="l", 41076 linebreak="al", 41077 unicodeslot=0x158B, 41078 }, 41079 [0x158C]={ 41080 category="lo", 41081 description="CANADIAN SYLLABICS WEST-CREE RO", 41082 direction="l", 41083 linebreak="al", 41084 unicodeslot=0x158C, 41085 }, 41086 [0x158D]={ 41087 category="lo", 41088 description="CANADIAN SYLLABICS WEST-CREE RA", 41089 direction="l", 41090 linebreak="al", 41091 unicodeslot=0x158D, 41092 }, 41093 [0x158E]={ 41094 category="lo", 41095 description="CANADIAN SYLLABICS NGAAI", 41096 direction="l", 41097 linebreak="al", 41098 unicodeslot=0x158E, 41099 }, 41100 [0x158F]={ 41101 category="lo", 41102 description="CANADIAN SYLLABICS NGI", 41103 direction="l", 41104 linebreak="al", 41105 unicodeslot=0x158F, 41106 }, 41107 [0x1590]={ 41108 category="lo", 41109 description="CANADIAN SYLLABICS NGII", 41110 direction="l", 41111 linebreak="al", 41112 unicodeslot=0x1590, 41113 }, 41114 [0x1591]={ 41115 category="lo", 41116 description="CANADIAN SYLLABICS NGO", 41117 direction="l", 41118 linebreak="al", 41119 unicodeslot=0x1591, 41120 }, 41121 [0x1592]={ 41122 category="lo", 41123 description="CANADIAN SYLLABICS NGOO", 41124 direction="l", 41125 linebreak="al", 41126 unicodeslot=0x1592, 41127 }, 41128 [0x1593]={ 41129 category="lo", 41130 description="CANADIAN SYLLABICS NGA", 41131 direction="l", 41132 linebreak="al", 41133 unicodeslot=0x1593, 41134 }, 41135 [0x1594]={ 41136 category="lo", 41137 description="CANADIAN SYLLABICS NGAA", 41138 direction="l", 41139 linebreak="al", 41140 unicodeslot=0x1594, 41141 }, 41142 [0x1595]={ 41143 category="lo", 41144 description="CANADIAN SYLLABICS NG", 41145 direction="l", 41146 linebreak="al", 41147 unicodeslot=0x1595, 41148 }, 41149 [0x1596]={ 41150 category="lo", 41151 description="CANADIAN SYLLABICS NNG", 41152 direction="l", 41153 linebreak="al", 41154 unicodeslot=0x1596, 41155 }, 41156 [0x1597]={ 41157 category="lo", 41158 description="CANADIAN SYLLABICS SAYISI SHE", 41159 direction="l", 41160 linebreak="al", 41161 unicodeslot=0x1597, 41162 }, 41163 [0x1598]={ 41164 category="lo", 41165 description="CANADIAN SYLLABICS SAYISI SHI", 41166 direction="l", 41167 linebreak="al", 41168 unicodeslot=0x1598, 41169 }, 41170 [0x1599]={ 41171 category="lo", 41172 description="CANADIAN SYLLABICS SAYISI SHO", 41173 direction="l", 41174 linebreak="al", 41175 unicodeslot=0x1599, 41176 }, 41177 [0x159A]={ 41178 category="lo", 41179 description="CANADIAN SYLLABICS SAYISI SHA", 41180 direction="l", 41181 linebreak="al", 41182 unicodeslot=0x159A, 41183 }, 41184 [0x159B]={ 41185 category="lo", 41186 description="CANADIAN SYLLABICS WOODS-CREE THE", 41187 direction="l", 41188 linebreak="al", 41189 unicodeslot=0x159B, 41190 }, 41191 [0x159C]={ 41192 category="lo", 41193 description="CANADIAN SYLLABICS WOODS-CREE THI", 41194 direction="l", 41195 linebreak="al", 41196 unicodeslot=0x159C, 41197 }, 41198 [0x159D]={ 41199 category="lo", 41200 description="CANADIAN SYLLABICS WOODS-CREE THO", 41201 direction="l", 41202 linebreak="al", 41203 unicodeslot=0x159D, 41204 }, 41205 [0x159E]={ 41206 category="lo", 41207 description="CANADIAN SYLLABICS WOODS-CREE THA", 41208 direction="l", 41209 linebreak="al", 41210 unicodeslot=0x159E, 41211 }, 41212 [0x159F]={ 41213 category="lo", 41214 description="CANADIAN SYLLABICS WOODS-CREE TH", 41215 direction="l", 41216 linebreak="al", 41217 unicodeslot=0x159F, 41218 }, 41219 [0x15A0]={ 41220 category="lo", 41221 description="CANADIAN SYLLABICS LHI", 41222 direction="l", 41223 linebreak="al", 41224 unicodeslot=0x15A0, 41225 }, 41226 [0x15A1]={ 41227 category="lo", 41228 description="CANADIAN SYLLABICS LHII", 41229 direction="l", 41230 linebreak="al", 41231 unicodeslot=0x15A1, 41232 }, 41233 [0x15A2]={ 41234 category="lo", 41235 description="CANADIAN SYLLABICS LHO", 41236 direction="l", 41237 linebreak="al", 41238 unicodeslot=0x15A2, 41239 }, 41240 [0x15A3]={ 41241 category="lo", 41242 description="CANADIAN SYLLABICS LHOO", 41243 direction="l", 41244 linebreak="al", 41245 unicodeslot=0x15A3, 41246 }, 41247 [0x15A4]={ 41248 category="lo", 41249 description="CANADIAN SYLLABICS LHA", 41250 direction="l", 41251 linebreak="al", 41252 unicodeslot=0x15A4, 41253 }, 41254 [0x15A5]={ 41255 category="lo", 41256 description="CANADIAN SYLLABICS LHAA", 41257 direction="l", 41258 linebreak="al", 41259 unicodeslot=0x15A5, 41260 }, 41261 [0x15A6]={ 41262 category="lo", 41263 description="CANADIAN SYLLABICS LH", 41264 direction="l", 41265 linebreak="al", 41266 unicodeslot=0x15A6, 41267 }, 41268 [0x15A7]={ 41269 category="lo", 41270 description="CANADIAN SYLLABICS TH-CREE THE", 41271 direction="l", 41272 linebreak="al", 41273 unicodeslot=0x15A7, 41274 }, 41275 [0x15A8]={ 41276 category="lo", 41277 description="CANADIAN SYLLABICS TH-CREE THI", 41278 direction="l", 41279 linebreak="al", 41280 unicodeslot=0x15A8, 41281 }, 41282 [0x15A9]={ 41283 category="lo", 41284 description="CANADIAN SYLLABICS TH-CREE THII", 41285 direction="l", 41286 linebreak="al", 41287 unicodeslot=0x15A9, 41288 }, 41289 [0x15AA]={ 41290 category="lo", 41291 description="CANADIAN SYLLABICS TH-CREE THO", 41292 direction="l", 41293 linebreak="al", 41294 unicodeslot=0x15AA, 41295 }, 41296 [0x15AB]={ 41297 category="lo", 41298 description="CANADIAN SYLLABICS TH-CREE THOO", 41299 direction="l", 41300 linebreak="al", 41301 unicodeslot=0x15AB, 41302 }, 41303 [0x15AC]={ 41304 category="lo", 41305 description="CANADIAN SYLLABICS TH-CREE THA", 41306 direction="l", 41307 linebreak="al", 41308 unicodeslot=0x15AC, 41309 }, 41310 [0x15AD]={ 41311 category="lo", 41312 description="CANADIAN SYLLABICS TH-CREE THAA", 41313 direction="l", 41314 linebreak="al", 41315 unicodeslot=0x15AD, 41316 }, 41317 [0x15AE]={ 41318 category="lo", 41319 description="CANADIAN SYLLABICS TH-CREE TH", 41320 direction="l", 41321 linebreak="al", 41322 unicodeslot=0x15AE, 41323 }, 41324 [0x15AF]={ 41325 category="lo", 41326 description="CANADIAN SYLLABICS AIVILIK B", 41327 direction="l", 41328 linebreak="al", 41329 unicodeslot=0x15AF, 41330 }, 41331 [0x15B0]={ 41332 category="lo", 41333 description="CANADIAN SYLLABICS BLACKFOOT E", 41334 direction="l", 41335 linebreak="al", 41336 unicodeslot=0x15B0, 41337 }, 41338 [0x15B1]={ 41339 category="lo", 41340 description="CANADIAN SYLLABICS BLACKFOOT I", 41341 direction="l", 41342 linebreak="al", 41343 unicodeslot=0x15B1, 41344 }, 41345 [0x15B2]={ 41346 category="lo", 41347 description="CANADIAN SYLLABICS BLACKFOOT O", 41348 direction="l", 41349 linebreak="al", 41350 unicodeslot=0x15B2, 41351 }, 41352 [0x15B3]={ 41353 category="lo", 41354 description="CANADIAN SYLLABICS BLACKFOOT A", 41355 direction="l", 41356 linebreak="al", 41357 unicodeslot=0x15B3, 41358 }, 41359 [0x15B4]={ 41360 category="lo", 41361 description="CANADIAN SYLLABICS BLACKFOOT WE", 41362 direction="l", 41363 linebreak="al", 41364 unicodeslot=0x15B4, 41365 }, 41366 [0x15B5]={ 41367 category="lo", 41368 description="CANADIAN SYLLABICS BLACKFOOT WI", 41369 direction="l", 41370 linebreak="al", 41371 unicodeslot=0x15B5, 41372 }, 41373 [0x15B6]={ 41374 category="lo", 41375 description="CANADIAN SYLLABICS BLACKFOOT WO", 41376 direction="l", 41377 linebreak="al", 41378 unicodeslot=0x15B6, 41379 }, 41380 [0x15B7]={ 41381 category="lo", 41382 description="CANADIAN SYLLABICS BLACKFOOT WA", 41383 direction="l", 41384 linebreak="al", 41385 unicodeslot=0x15B7, 41386 }, 41387 [0x15B8]={ 41388 category="lo", 41389 description="CANADIAN SYLLABICS BLACKFOOT NE", 41390 direction="l", 41391 linebreak="al", 41392 unicodeslot=0x15B8, 41393 }, 41394 [0x15B9]={ 41395 category="lo", 41396 description="CANADIAN SYLLABICS BLACKFOOT NI", 41397 direction="l", 41398 linebreak="al", 41399 unicodeslot=0x15B9, 41400 }, 41401 [0x15BA]={ 41402 category="lo", 41403 description="CANADIAN SYLLABICS BLACKFOOT NO", 41404 direction="l", 41405 linebreak="al", 41406 unicodeslot=0x15BA, 41407 }, 41408 [0x15BB]={ 41409 category="lo", 41410 description="CANADIAN SYLLABICS BLACKFOOT NA", 41411 direction="l", 41412 linebreak="al", 41413 unicodeslot=0x15BB, 41414 }, 41415 [0x15BC]={ 41416 category="lo", 41417 description="CANADIAN SYLLABICS BLACKFOOT KE", 41418 direction="l", 41419 linebreak="al", 41420 unicodeslot=0x15BC, 41421 }, 41422 [0x15BD]={ 41423 category="lo", 41424 description="CANADIAN SYLLABICS BLACKFOOT KI", 41425 direction="l", 41426 linebreak="al", 41427 unicodeslot=0x15BD, 41428 }, 41429 [0x15BE]={ 41430 category="lo", 41431 description="CANADIAN SYLLABICS BLACKFOOT KO", 41432 direction="l", 41433 linebreak="al", 41434 unicodeslot=0x15BE, 41435 }, 41436 [0x15BF]={ 41437 category="lo", 41438 description="CANADIAN SYLLABICS BLACKFOOT KA", 41439 direction="l", 41440 linebreak="al", 41441 unicodeslot=0x15BF, 41442 }, 41443 [0x15C0]={ 41444 category="lo", 41445 description="CANADIAN SYLLABICS SAYISI HE", 41446 direction="l", 41447 linebreak="al", 41448 unicodeslot=0x15C0, 41449 }, 41450 [0x15C1]={ 41451 category="lo", 41452 description="CANADIAN SYLLABICS SAYISI HI", 41453 direction="l", 41454 linebreak="al", 41455 unicodeslot=0x15C1, 41456 }, 41457 [0x15C2]={ 41458 category="lo", 41459 description="CANADIAN SYLLABICS SAYISI HO", 41460 direction="l", 41461 linebreak="al", 41462 unicodeslot=0x15C2, 41463 }, 41464 [0x15C3]={ 41465 category="lo", 41466 description="CANADIAN SYLLABICS SAYISI HA", 41467 direction="l", 41468 linebreak="al", 41469 unicodeslot=0x15C3, 41470 }, 41471 [0x15C4]={ 41472 category="lo", 41473 description="CANADIAN SYLLABICS CARRIER GHU", 41474 direction="l", 41475 linebreak="al", 41476 unicodeslot=0x15C4, 41477 }, 41478 [0x15C5]={ 41479 category="lo", 41480 description="CANADIAN SYLLABICS CARRIER GHO", 41481 direction="l", 41482 linebreak="al", 41483 unicodeslot=0x15C5, 41484 }, 41485 [0x15C6]={ 41486 category="lo", 41487 description="CANADIAN SYLLABICS CARRIER GHE", 41488 direction="l", 41489 linebreak="al", 41490 unicodeslot=0x15C6, 41491 }, 41492 [0x15C7]={ 41493 category="lo", 41494 description="CANADIAN SYLLABICS CARRIER GHEE", 41495 direction="l", 41496 linebreak="al", 41497 unicodeslot=0x15C7, 41498 }, 41499 [0x15C8]={ 41500 category="lo", 41501 description="CANADIAN SYLLABICS CARRIER GHI", 41502 direction="l", 41503 linebreak="al", 41504 unicodeslot=0x15C8, 41505 }, 41506 [0x15C9]={ 41507 category="lo", 41508 description="CANADIAN SYLLABICS CARRIER GHA", 41509 direction="l", 41510 linebreak="al", 41511 unicodeslot=0x15C9, 41512 }, 41513 [0x15CA]={ 41514 category="lo", 41515 description="CANADIAN SYLLABICS CARRIER RU", 41516 direction="l", 41517 linebreak="al", 41518 unicodeslot=0x15CA, 41519 }, 41520 [0x15CB]={ 41521 category="lo", 41522 description="CANADIAN SYLLABICS CARRIER RO", 41523 direction="l", 41524 linebreak="al", 41525 unicodeslot=0x15CB, 41526 }, 41527 [0x15CC]={ 41528 category="lo", 41529 description="CANADIAN SYLLABICS CARRIER RE", 41530 direction="l", 41531 linebreak="al", 41532 unicodeslot=0x15CC, 41533 }, 41534 [0x15CD]={ 41535 category="lo", 41536 description="CANADIAN SYLLABICS CARRIER REE", 41537 direction="l", 41538 linebreak="al", 41539 unicodeslot=0x15CD, 41540 }, 41541 [0x15CE]={ 41542 category="lo", 41543 description="CANADIAN SYLLABICS CARRIER RI", 41544 direction="l", 41545 linebreak="al", 41546 unicodeslot=0x15CE, 41547 }, 41548 [0x15CF]={ 41549 category="lo", 41550 description="CANADIAN SYLLABICS CARRIER RA", 41551 direction="l", 41552 linebreak="al", 41553 unicodeslot=0x15CF, 41554 }, 41555 [0x15D0]={ 41556 category="lo", 41557 description="CANADIAN SYLLABICS CARRIER WU", 41558 direction="l", 41559 linebreak="al", 41560 unicodeslot=0x15D0, 41561 }, 41562 [0x15D1]={ 41563 category="lo", 41564 description="CANADIAN SYLLABICS CARRIER WO", 41565 direction="l", 41566 linebreak="al", 41567 unicodeslot=0x15D1, 41568 }, 41569 [0x15D2]={ 41570 category="lo", 41571 description="CANADIAN SYLLABICS CARRIER WE", 41572 direction="l", 41573 linebreak="al", 41574 unicodeslot=0x15D2, 41575 }, 41576 [0x15D3]={ 41577 category="lo", 41578 description="CANADIAN SYLLABICS CARRIER WEE", 41579 direction="l", 41580 linebreak="al", 41581 unicodeslot=0x15D3, 41582 }, 41583 [0x15D4]={ 41584 category="lo", 41585 description="CANADIAN SYLLABICS CARRIER WI", 41586 direction="l", 41587 linebreak="al", 41588 unicodeslot=0x15D4, 41589 }, 41590 [0x15D5]={ 41591 category="lo", 41592 description="CANADIAN SYLLABICS CARRIER WA", 41593 direction="l", 41594 linebreak="al", 41595 unicodeslot=0x15D5, 41596 }, 41597 [0x15D6]={ 41598 category="lo", 41599 description="CANADIAN SYLLABICS CARRIER HWU", 41600 direction="l", 41601 linebreak="al", 41602 unicodeslot=0x15D6, 41603 }, 41604 [0x15D7]={ 41605 category="lo", 41606 description="CANADIAN SYLLABICS CARRIER HWO", 41607 direction="l", 41608 linebreak="al", 41609 unicodeslot=0x15D7, 41610 }, 41611 [0x15D8]={ 41612 category="lo", 41613 description="CANADIAN SYLLABICS CARRIER HWE", 41614 direction="l", 41615 linebreak="al", 41616 unicodeslot=0x15D8, 41617 }, 41618 [0x15D9]={ 41619 category="lo", 41620 description="CANADIAN SYLLABICS CARRIER HWEE", 41621 direction="l", 41622 linebreak="al", 41623 unicodeslot=0x15D9, 41624 }, 41625 [0x15DA]={ 41626 category="lo", 41627 description="CANADIAN SYLLABICS CARRIER HWI", 41628 direction="l", 41629 linebreak="al", 41630 unicodeslot=0x15DA, 41631 }, 41632 [0x15DB]={ 41633 category="lo", 41634 description="CANADIAN SYLLABICS CARRIER HWA", 41635 direction="l", 41636 linebreak="al", 41637 unicodeslot=0x15DB, 41638 }, 41639 [0x15DC]={ 41640 category="lo", 41641 description="CANADIAN SYLLABICS CARRIER THU", 41642 direction="l", 41643 linebreak="al", 41644 unicodeslot=0x15DC, 41645 }, 41646 [0x15DD]={ 41647 category="lo", 41648 description="CANADIAN SYLLABICS CARRIER THO", 41649 direction="l", 41650 linebreak="al", 41651 unicodeslot=0x15DD, 41652 }, 41653 [0x15DE]={ 41654 category="lo", 41655 description="CANADIAN SYLLABICS CARRIER THE", 41656 direction="l", 41657 linebreak="al", 41658 unicodeslot=0x15DE, 41659 }, 41660 [0x15DF]={ 41661 category="lo", 41662 description="CANADIAN SYLLABICS CARRIER THEE", 41663 direction="l", 41664 linebreak="al", 41665 unicodeslot=0x15DF, 41666 }, 41667 [0x15E0]={ 41668 category="lo", 41669 description="CANADIAN SYLLABICS CARRIER THI", 41670 direction="l", 41671 linebreak="al", 41672 unicodeslot=0x15E0, 41673 }, 41674 [0x15E1]={ 41675 category="lo", 41676 description="CANADIAN SYLLABICS CARRIER THA", 41677 direction="l", 41678 linebreak="al", 41679 unicodeslot=0x15E1, 41680 }, 41681 [0x15E2]={ 41682 category="lo", 41683 description="CANADIAN SYLLABICS CARRIER TTU", 41684 direction="l", 41685 linebreak="al", 41686 unicodeslot=0x15E2, 41687 }, 41688 [0x15E3]={ 41689 category="lo", 41690 description="CANADIAN SYLLABICS CARRIER TTO", 41691 direction="l", 41692 linebreak="al", 41693 unicodeslot=0x15E3, 41694 }, 41695 [0x15E4]={ 41696 category="lo", 41697 description="CANADIAN SYLLABICS CARRIER TTE", 41698 direction="l", 41699 linebreak="al", 41700 unicodeslot=0x15E4, 41701 }, 41702 [0x15E5]={ 41703 category="lo", 41704 description="CANADIAN SYLLABICS CARRIER TTEE", 41705 direction="l", 41706 linebreak="al", 41707 unicodeslot=0x15E5, 41708 }, 41709 [0x15E6]={ 41710 category="lo", 41711 description="CANADIAN SYLLABICS CARRIER TTI", 41712 direction="l", 41713 linebreak="al", 41714 unicodeslot=0x15E6, 41715 }, 41716 [0x15E7]={ 41717 category="lo", 41718 description="CANADIAN SYLLABICS CARRIER TTA", 41719 direction="l", 41720 linebreak="al", 41721 unicodeslot=0x15E7, 41722 }, 41723 [0x15E8]={ 41724 category="lo", 41725 description="CANADIAN SYLLABICS CARRIER PU", 41726 direction="l", 41727 linebreak="al", 41728 unicodeslot=0x15E8, 41729 }, 41730 [0x15E9]={ 41731 category="lo", 41732 description="CANADIAN SYLLABICS CARRIER PO", 41733 direction="l", 41734 linebreak="al", 41735 unicodeslot=0x15E9, 41736 }, 41737 [0x15EA]={ 41738 category="lo", 41739 description="CANADIAN SYLLABICS CARRIER PE", 41740 direction="l", 41741 linebreak="al", 41742 unicodeslot=0x15EA, 41743 }, 41744 [0x15EB]={ 41745 category="lo", 41746 description="CANADIAN SYLLABICS CARRIER PEE", 41747 direction="l", 41748 linebreak="al", 41749 unicodeslot=0x15EB, 41750 }, 41751 [0x15EC]={ 41752 category="lo", 41753 description="CANADIAN SYLLABICS CARRIER PI", 41754 direction="l", 41755 linebreak="al", 41756 unicodeslot=0x15EC, 41757 }, 41758 [0x15ED]={ 41759 category="lo", 41760 description="CANADIAN SYLLABICS CARRIER PA", 41761 direction="l", 41762 linebreak="al", 41763 unicodeslot=0x15ED, 41764 }, 41765 [0x15EE]={ 41766 category="lo", 41767 description="CANADIAN SYLLABICS CARRIER P", 41768 direction="l", 41769 linebreak="al", 41770 unicodeslot=0x15EE, 41771 }, 41772 [0x15EF]={ 41773 category="lo", 41774 description="CANADIAN SYLLABICS CARRIER GU", 41775 direction="l", 41776 linebreak="al", 41777 unicodeslot=0x15EF, 41778 }, 41779 [0x15F0]={ 41780 category="lo", 41781 description="CANADIAN SYLLABICS CARRIER GO", 41782 direction="l", 41783 linebreak="al", 41784 unicodeslot=0x15F0, 41785 }, 41786 [0x15F1]={ 41787 category="lo", 41788 description="CANADIAN SYLLABICS CARRIER GE", 41789 direction="l", 41790 linebreak="al", 41791 unicodeslot=0x15F1, 41792 }, 41793 [0x15F2]={ 41794 category="lo", 41795 description="CANADIAN SYLLABICS CARRIER GEE", 41796 direction="l", 41797 linebreak="al", 41798 unicodeslot=0x15F2, 41799 }, 41800 [0x15F3]={ 41801 category="lo", 41802 description="CANADIAN SYLLABICS CARRIER GI", 41803 direction="l", 41804 linebreak="al", 41805 unicodeslot=0x15F3, 41806 }, 41807 [0x15F4]={ 41808 category="lo", 41809 description="CANADIAN SYLLABICS CARRIER GA", 41810 direction="l", 41811 linebreak="al", 41812 unicodeslot=0x15F4, 41813 }, 41814 [0x15F5]={ 41815 category="lo", 41816 description="CANADIAN SYLLABICS CARRIER KHU", 41817 direction="l", 41818 linebreak="al", 41819 unicodeslot=0x15F5, 41820 }, 41821 [0x15F6]={ 41822 category="lo", 41823 description="CANADIAN SYLLABICS CARRIER KHO", 41824 direction="l", 41825 linebreak="al", 41826 unicodeslot=0x15F6, 41827 }, 41828 [0x15F7]={ 41829 category="lo", 41830 description="CANADIAN SYLLABICS CARRIER KHE", 41831 direction="l", 41832 linebreak="al", 41833 unicodeslot=0x15F7, 41834 }, 41835 [0x15F8]={ 41836 category="lo", 41837 description="CANADIAN SYLLABICS CARRIER KHEE", 41838 direction="l", 41839 linebreak="al", 41840 unicodeslot=0x15F8, 41841 }, 41842 [0x15F9]={ 41843 category="lo", 41844 description="CANADIAN SYLLABICS CARRIER KHI", 41845 direction="l", 41846 linebreak="al", 41847 unicodeslot=0x15F9, 41848 }, 41849 [0x15FA]={ 41850 category="lo", 41851 description="CANADIAN SYLLABICS CARRIER KHA", 41852 direction="l", 41853 linebreak="al", 41854 unicodeslot=0x15FA, 41855 }, 41856 [0x15FB]={ 41857 category="lo", 41858 description="CANADIAN SYLLABICS CARRIER KKU", 41859 direction="l", 41860 linebreak="al", 41861 unicodeslot=0x15FB, 41862 }, 41863 [0x15FC]={ 41864 category="lo", 41865 description="CANADIAN SYLLABICS CARRIER KKO", 41866 direction="l", 41867 linebreak="al", 41868 unicodeslot=0x15FC, 41869 }, 41870 [0x15FD]={ 41871 category="lo", 41872 description="CANADIAN SYLLABICS CARRIER KKE", 41873 direction="l", 41874 linebreak="al", 41875 unicodeslot=0x15FD, 41876 }, 41877 [0x15FE]={ 41878 category="lo", 41879 description="CANADIAN SYLLABICS CARRIER KKEE", 41880 direction="l", 41881 linebreak="al", 41882 unicodeslot=0x15FE, 41883 }, 41884 [0x15FF]={ 41885 category="lo", 41886 description="CANADIAN SYLLABICS CARRIER KKI", 41887 direction="l", 41888 linebreak="al", 41889 unicodeslot=0x15FF, 41890 }, 41891 [0x1600]={ 41892 category="lo", 41893 description="CANADIAN SYLLABICS CARRIER KKA", 41894 direction="l", 41895 linebreak="al", 41896 unicodeslot=0x1600, 41897 }, 41898 [0x1601]={ 41899 category="lo", 41900 description="CANADIAN SYLLABICS CARRIER KK", 41901 direction="l", 41902 linebreak="al", 41903 unicodeslot=0x1601, 41904 }, 41905 [0x1602]={ 41906 category="lo", 41907 description="CANADIAN SYLLABICS CARRIER NU", 41908 direction="l", 41909 linebreak="al", 41910 unicodeslot=0x1602, 41911 }, 41912 [0x1603]={ 41913 category="lo", 41914 description="CANADIAN SYLLABICS CARRIER NO", 41915 direction="l", 41916 linebreak="al", 41917 unicodeslot=0x1603, 41918 }, 41919 [0x1604]={ 41920 category="lo", 41921 description="CANADIAN SYLLABICS CARRIER NE", 41922 direction="l", 41923 linebreak="al", 41924 unicodeslot=0x1604, 41925 }, 41926 [0x1605]={ 41927 category="lo", 41928 description="CANADIAN SYLLABICS CARRIER NEE", 41929 direction="l", 41930 linebreak="al", 41931 unicodeslot=0x1605, 41932 }, 41933 [0x1606]={ 41934 category="lo", 41935 description="CANADIAN SYLLABICS CARRIER NI", 41936 direction="l", 41937 linebreak="al", 41938 unicodeslot=0x1606, 41939 }, 41940 [0x1607]={ 41941 category="lo", 41942 description="CANADIAN SYLLABICS CARRIER NA", 41943 direction="l", 41944 linebreak="al", 41945 unicodeslot=0x1607, 41946 }, 41947 [0x1608]={ 41948 category="lo", 41949 description="CANADIAN SYLLABICS CARRIER MU", 41950 direction="l", 41951 linebreak="al", 41952 unicodeslot=0x1608, 41953 }, 41954 [0x1609]={ 41955 category="lo", 41956 description="CANADIAN SYLLABICS CARRIER MO", 41957 direction="l", 41958 linebreak="al", 41959 unicodeslot=0x1609, 41960 }, 41961 [0x160A]={ 41962 category="lo", 41963 description="CANADIAN SYLLABICS CARRIER ME", 41964 direction="l", 41965 linebreak="al", 41966 unicodeslot=0x160A, 41967 }, 41968 [0x160B]={ 41969 category="lo", 41970 description="CANADIAN SYLLABICS CARRIER MEE", 41971 direction="l", 41972 linebreak="al", 41973 unicodeslot=0x160B, 41974 }, 41975 [0x160C]={ 41976 category="lo", 41977 description="CANADIAN SYLLABICS CARRIER MI", 41978 direction="l", 41979 linebreak="al", 41980 unicodeslot=0x160C, 41981 }, 41982 [0x160D]={ 41983 category="lo", 41984 description="CANADIAN SYLLABICS CARRIER MA", 41985 direction="l", 41986 linebreak="al", 41987 unicodeslot=0x160D, 41988 }, 41989 [0x160E]={ 41990 category="lo", 41991 description="CANADIAN SYLLABICS CARRIER YU", 41992 direction="l", 41993 linebreak="al", 41994 unicodeslot=0x160E, 41995 }, 41996 [0x160F]={ 41997 category="lo", 41998 description="CANADIAN SYLLABICS CARRIER YO", 41999 direction="l", 42000 linebreak="al", 42001 unicodeslot=0x160F, 42002 }, 42003 [0x1610]={ 42004 category="lo", 42005 description="CANADIAN SYLLABICS CARRIER YE", 42006 direction="l", 42007 linebreak="al", 42008 unicodeslot=0x1610, 42009 }, 42010 [0x1611]={ 42011 category="lo", 42012 description="CANADIAN SYLLABICS CARRIER YEE", 42013 direction="l", 42014 linebreak="al", 42015 unicodeslot=0x1611, 42016 }, 42017 [0x1612]={ 42018 category="lo", 42019 description="CANADIAN SYLLABICS CARRIER YI", 42020 direction="l", 42021 linebreak="al", 42022 unicodeslot=0x1612, 42023 }, 42024 [0x1613]={ 42025 category="lo", 42026 description="CANADIAN SYLLABICS CARRIER YA", 42027 direction="l", 42028 linebreak="al", 42029 unicodeslot=0x1613, 42030 }, 42031 [0x1614]={ 42032 category="lo", 42033 description="CANADIAN SYLLABICS CARRIER JU", 42034 direction="l", 42035 linebreak="al", 42036 unicodeslot=0x1614, 42037 }, 42038 [0x1615]={ 42039 category="lo", 42040 description="CANADIAN SYLLABICS SAYISI JU", 42041 direction="l", 42042 linebreak="al", 42043 unicodeslot=0x1615, 42044 }, 42045 [0x1616]={ 42046 category="lo", 42047 description="CANADIAN SYLLABICS CARRIER JO", 42048 direction="l", 42049 linebreak="al", 42050 unicodeslot=0x1616, 42051 }, 42052 [0x1617]={ 42053 category="lo", 42054 description="CANADIAN SYLLABICS CARRIER JE", 42055 direction="l", 42056 linebreak="al", 42057 unicodeslot=0x1617, 42058 }, 42059 [0x1618]={ 42060 category="lo", 42061 description="CANADIAN SYLLABICS CARRIER JEE", 42062 direction="l", 42063 linebreak="al", 42064 unicodeslot=0x1618, 42065 }, 42066 [0x1619]={ 42067 category="lo", 42068 description="CANADIAN SYLLABICS CARRIER JI", 42069 direction="l", 42070 linebreak="al", 42071 unicodeslot=0x1619, 42072 }, 42073 [0x161A]={ 42074 category="lo", 42075 description="CANADIAN SYLLABICS SAYISI JI", 42076 direction="l", 42077 linebreak="al", 42078 unicodeslot=0x161A, 42079 }, 42080 [0x161B]={ 42081 category="lo", 42082 description="CANADIAN SYLLABICS CARRIER JA", 42083 direction="l", 42084 linebreak="al", 42085 unicodeslot=0x161B, 42086 }, 42087 [0x161C]={ 42088 category="lo", 42089 description="CANADIAN SYLLABICS CARRIER JJU", 42090 direction="l", 42091 linebreak="al", 42092 unicodeslot=0x161C, 42093 }, 42094 [0x161D]={ 42095 category="lo", 42096 description="CANADIAN SYLLABICS CARRIER JJO", 42097 direction="l", 42098 linebreak="al", 42099 unicodeslot=0x161D, 42100 }, 42101 [0x161E]={ 42102 category="lo", 42103 description="CANADIAN SYLLABICS CARRIER JJE", 42104 direction="l", 42105 linebreak="al", 42106 unicodeslot=0x161E, 42107 }, 42108 [0x161F]={ 42109 category="lo", 42110 description="CANADIAN SYLLABICS CARRIER JJEE", 42111 direction="l", 42112 linebreak="al", 42113 unicodeslot=0x161F, 42114 }, 42115 [0x1620]={ 42116 category="lo", 42117 description="CANADIAN SYLLABICS CARRIER JJI", 42118 direction="l", 42119 linebreak="al", 42120 unicodeslot=0x1620, 42121 }, 42122 [0x1621]={ 42123 category="lo", 42124 description="CANADIAN SYLLABICS CARRIER JJA", 42125 direction="l", 42126 linebreak="al", 42127 unicodeslot=0x1621, 42128 }, 42129 [0x1622]={ 42130 category="lo", 42131 description="CANADIAN SYLLABICS CARRIER LU", 42132 direction="l", 42133 linebreak="al", 42134 unicodeslot=0x1622, 42135 }, 42136 [0x1623]={ 42137 category="lo", 42138 description="CANADIAN SYLLABICS CARRIER LO", 42139 direction="l", 42140 linebreak="al", 42141 unicodeslot=0x1623, 42142 }, 42143 [0x1624]={ 42144 category="lo", 42145 description="CANADIAN SYLLABICS CARRIER LE", 42146 direction="l", 42147 linebreak="al", 42148 unicodeslot=0x1624, 42149 }, 42150 [0x1625]={ 42151 category="lo", 42152 description="CANADIAN SYLLABICS CARRIER LEE", 42153 direction="l", 42154 linebreak="al", 42155 unicodeslot=0x1625, 42156 }, 42157 [0x1626]={ 42158 category="lo", 42159 description="CANADIAN SYLLABICS CARRIER LI", 42160 direction="l", 42161 linebreak="al", 42162 unicodeslot=0x1626, 42163 }, 42164 [0x1627]={ 42165 category="lo", 42166 description="CANADIAN SYLLABICS CARRIER LA", 42167 direction="l", 42168 linebreak="al", 42169 unicodeslot=0x1627, 42170 }, 42171 [0x1628]={ 42172 category="lo", 42173 description="CANADIAN SYLLABICS CARRIER DLU", 42174 direction="l", 42175 linebreak="al", 42176 unicodeslot=0x1628, 42177 }, 42178 [0x1629]={ 42179 category="lo", 42180 description="CANADIAN SYLLABICS CARRIER DLO", 42181 direction="l", 42182 linebreak="al", 42183 unicodeslot=0x1629, 42184 }, 42185 [0x162A]={ 42186 category="lo", 42187 description="CANADIAN SYLLABICS CARRIER DLE", 42188 direction="l", 42189 linebreak="al", 42190 unicodeslot=0x162A, 42191 }, 42192 [0x162B]={ 42193 category="lo", 42194 description="CANADIAN SYLLABICS CARRIER DLEE", 42195 direction="l", 42196 linebreak="al", 42197 unicodeslot=0x162B, 42198 }, 42199 [0x162C]={ 42200 category="lo", 42201 description="CANADIAN SYLLABICS CARRIER DLI", 42202 direction="l", 42203 linebreak="al", 42204 unicodeslot=0x162C, 42205 }, 42206 [0x162D]={ 42207 category="lo", 42208 description="CANADIAN SYLLABICS CARRIER DLA", 42209 direction="l", 42210 linebreak="al", 42211 unicodeslot=0x162D, 42212 }, 42213 [0x162E]={ 42214 category="lo", 42215 description="CANADIAN SYLLABICS CARRIER LHU", 42216 direction="l", 42217 linebreak="al", 42218 unicodeslot=0x162E, 42219 }, 42220 [0x162F]={ 42221 category="lo", 42222 description="CANADIAN SYLLABICS CARRIER LHO", 42223 direction="l", 42224 linebreak="al", 42225 unicodeslot=0x162F, 42226 }, 42227 [0x1630]={ 42228 category="lo", 42229 description="CANADIAN SYLLABICS CARRIER LHE", 42230 direction="l", 42231 linebreak="al", 42232 unicodeslot=0x1630, 42233 }, 42234 [0x1631]={ 42235 category="lo", 42236 description="CANADIAN SYLLABICS CARRIER LHEE", 42237 direction="l", 42238 linebreak="al", 42239 unicodeslot=0x1631, 42240 }, 42241 [0x1632]={ 42242 category="lo", 42243 description="CANADIAN SYLLABICS CARRIER LHI", 42244 direction="l", 42245 linebreak="al", 42246 unicodeslot=0x1632, 42247 }, 42248 [0x1633]={ 42249 category="lo", 42250 description="CANADIAN SYLLABICS CARRIER LHA", 42251 direction="l", 42252 linebreak="al", 42253 unicodeslot=0x1633, 42254 }, 42255 [0x1634]={ 42256 category="lo", 42257 description="CANADIAN SYLLABICS CARRIER TLHU", 42258 direction="l", 42259 linebreak="al", 42260 unicodeslot=0x1634, 42261 }, 42262 [0x1635]={ 42263 category="lo", 42264 description="CANADIAN SYLLABICS CARRIER TLHO", 42265 direction="l", 42266 linebreak="al", 42267 unicodeslot=0x1635, 42268 }, 42269 [0x1636]={ 42270 category="lo", 42271 description="CANADIAN SYLLABICS CARRIER TLHE", 42272 direction="l", 42273 linebreak="al", 42274 unicodeslot=0x1636, 42275 }, 42276 [0x1637]={ 42277 category="lo", 42278 description="CANADIAN SYLLABICS CARRIER TLHEE", 42279 direction="l", 42280 linebreak="al", 42281 unicodeslot=0x1637, 42282 }, 42283 [0x1638]={ 42284 category="lo", 42285 description="CANADIAN SYLLABICS CARRIER TLHI", 42286 direction="l", 42287 linebreak="al", 42288 unicodeslot=0x1638, 42289 }, 42290 [0x1639]={ 42291 category="lo", 42292 description="CANADIAN SYLLABICS CARRIER TLHA", 42293 direction="l", 42294 linebreak="al", 42295 unicodeslot=0x1639, 42296 }, 42297 [0x163A]={ 42298 category="lo", 42299 description="CANADIAN SYLLABICS CARRIER TLU", 42300 direction="l", 42301 linebreak="al", 42302 unicodeslot=0x163A, 42303 }, 42304 [0x163B]={ 42305 category="lo", 42306 description="CANADIAN SYLLABICS CARRIER TLO", 42307 direction="l", 42308 linebreak="al", 42309 unicodeslot=0x163B, 42310 }, 42311 [0x163C]={ 42312 category="lo", 42313 description="CANADIAN SYLLABICS CARRIER TLE", 42314 direction="l", 42315 linebreak="al", 42316 unicodeslot=0x163C, 42317 }, 42318 [0x163D]={ 42319 category="lo", 42320 description="CANADIAN SYLLABICS CARRIER TLEE", 42321 direction="l", 42322 linebreak="al", 42323 unicodeslot=0x163D, 42324 }, 42325 [0x163E]={ 42326 category="lo", 42327 description="CANADIAN SYLLABICS CARRIER TLI", 42328 direction="l", 42329 linebreak="al", 42330 unicodeslot=0x163E, 42331 }, 42332 [0x163F]={ 42333 category="lo", 42334 description="CANADIAN SYLLABICS CARRIER TLA", 42335 direction="l", 42336 linebreak="al", 42337 unicodeslot=0x163F, 42338 }, 42339 [0x1640]={ 42340 category="lo", 42341 description="CANADIAN SYLLABICS CARRIER ZU", 42342 direction="l", 42343 linebreak="al", 42344 unicodeslot=0x1640, 42345 }, 42346 [0x1641]={ 42347 category="lo", 42348 description="CANADIAN SYLLABICS CARRIER ZO", 42349 direction="l", 42350 linebreak="al", 42351 unicodeslot=0x1641, 42352 }, 42353 [0x1642]={ 42354 category="lo", 42355 description="CANADIAN SYLLABICS CARRIER ZE", 42356 direction="l", 42357 linebreak="al", 42358 unicodeslot=0x1642, 42359 }, 42360 [0x1643]={ 42361 category="lo", 42362 description="CANADIAN SYLLABICS CARRIER ZEE", 42363 direction="l", 42364 linebreak="al", 42365 unicodeslot=0x1643, 42366 }, 42367 [0x1644]={ 42368 category="lo", 42369 description="CANADIAN SYLLABICS CARRIER ZI", 42370 direction="l", 42371 linebreak="al", 42372 unicodeslot=0x1644, 42373 }, 42374 [0x1645]={ 42375 category="lo", 42376 description="CANADIAN SYLLABICS CARRIER ZA", 42377 direction="l", 42378 linebreak="al", 42379 unicodeslot=0x1645, 42380 }, 42381 [0x1646]={ 42382 category="lo", 42383 description="CANADIAN SYLLABICS CARRIER Z", 42384 direction="l", 42385 linebreak="al", 42386 unicodeslot=0x1646, 42387 }, 42388 [0x1647]={ 42389 category="lo", 42390 description="CANADIAN SYLLABICS CARRIER INITIAL Z", 42391 direction="l", 42392 linebreak="al", 42393 unicodeslot=0x1647, 42394 }, 42395 [0x1648]={ 42396 category="lo", 42397 description="CANADIAN SYLLABICS CARRIER DZU", 42398 direction="l", 42399 linebreak="al", 42400 unicodeslot=0x1648, 42401 }, 42402 [0x1649]={ 42403 category="lo", 42404 description="CANADIAN SYLLABICS CARRIER DZO", 42405 direction="l", 42406 linebreak="al", 42407 unicodeslot=0x1649, 42408 }, 42409 [0x164A]={ 42410 category="lo", 42411 description="CANADIAN SYLLABICS CARRIER DZE", 42412 direction="l", 42413 linebreak="al", 42414 unicodeslot=0x164A, 42415 }, 42416 [0x164B]={ 42417 category="lo", 42418 description="CANADIAN SYLLABICS CARRIER DZEE", 42419 direction="l", 42420 linebreak="al", 42421 unicodeslot=0x164B, 42422 }, 42423 [0x164C]={ 42424 category="lo", 42425 description="CANADIAN SYLLABICS CARRIER DZI", 42426 direction="l", 42427 linebreak="al", 42428 unicodeslot=0x164C, 42429 }, 42430 [0x164D]={ 42431 category="lo", 42432 description="CANADIAN SYLLABICS CARRIER DZA", 42433 direction="l", 42434 linebreak="al", 42435 unicodeslot=0x164D, 42436 }, 42437 [0x164E]={ 42438 category="lo", 42439 description="CANADIAN SYLLABICS CARRIER SU", 42440 direction="l", 42441 linebreak="al", 42442 unicodeslot=0x164E, 42443 }, 42444 [0x164F]={ 42445 category="lo", 42446 description="CANADIAN SYLLABICS CARRIER SO", 42447 direction="l", 42448 linebreak="al", 42449 unicodeslot=0x164F, 42450 }, 42451 [0x1650]={ 42452 category="lo", 42453 description="CANADIAN SYLLABICS CARRIER SE", 42454 direction="l", 42455 linebreak="al", 42456 unicodeslot=0x1650, 42457 }, 42458 [0x1651]={ 42459 category="lo", 42460 description="CANADIAN SYLLABICS CARRIER SEE", 42461 direction="l", 42462 linebreak="al", 42463 unicodeslot=0x1651, 42464 }, 42465 [0x1652]={ 42466 category="lo", 42467 description="CANADIAN SYLLABICS CARRIER SI", 42468 direction="l", 42469 linebreak="al", 42470 unicodeslot=0x1652, 42471 }, 42472 [0x1653]={ 42473 category="lo", 42474 description="CANADIAN SYLLABICS CARRIER SA", 42475 direction="l", 42476 linebreak="al", 42477 unicodeslot=0x1653, 42478 }, 42479 [0x1654]={ 42480 category="lo", 42481 description="CANADIAN SYLLABICS CARRIER SHU", 42482 direction="l", 42483 linebreak="al", 42484 unicodeslot=0x1654, 42485 }, 42486 [0x1655]={ 42487 category="lo", 42488 description="CANADIAN SYLLABICS CARRIER SHO", 42489 direction="l", 42490 linebreak="al", 42491 unicodeslot=0x1655, 42492 }, 42493 [0x1656]={ 42494 category="lo", 42495 description="CANADIAN SYLLABICS CARRIER SHE", 42496 direction="l", 42497 linebreak="al", 42498 unicodeslot=0x1656, 42499 }, 42500 [0x1657]={ 42501 category="lo", 42502 description="CANADIAN SYLLABICS CARRIER SHEE", 42503 direction="l", 42504 linebreak="al", 42505 unicodeslot=0x1657, 42506 }, 42507 [0x1658]={ 42508 category="lo", 42509 description="CANADIAN SYLLABICS CARRIER SHI", 42510 direction="l", 42511 linebreak="al", 42512 unicodeslot=0x1658, 42513 }, 42514 [0x1659]={ 42515 category="lo", 42516 description="CANADIAN SYLLABICS CARRIER SHA", 42517 direction="l", 42518 linebreak="al", 42519 unicodeslot=0x1659, 42520 }, 42521 [0x165A]={ 42522 category="lo", 42523 description="CANADIAN SYLLABICS CARRIER SH", 42524 direction="l", 42525 linebreak="al", 42526 unicodeslot=0x165A, 42527 }, 42528 [0x165B]={ 42529 category="lo", 42530 description="CANADIAN SYLLABICS CARRIER TSU", 42531 direction="l", 42532 linebreak="al", 42533 unicodeslot=0x165B, 42534 }, 42535 [0x165C]={ 42536 category="lo", 42537 description="CANADIAN SYLLABICS CARRIER TSO", 42538 direction="l", 42539 linebreak="al", 42540 unicodeslot=0x165C, 42541 }, 42542 [0x165D]={ 42543 category="lo", 42544 description="CANADIAN SYLLABICS CARRIER TSE", 42545 direction="l", 42546 linebreak="al", 42547 unicodeslot=0x165D, 42548 }, 42549 [0x165E]={ 42550 category="lo", 42551 description="CANADIAN SYLLABICS CARRIER TSEE", 42552 direction="l", 42553 linebreak="al", 42554 unicodeslot=0x165E, 42555 }, 42556 [0x165F]={ 42557 category="lo", 42558 description="CANADIAN SYLLABICS CARRIER TSI", 42559 direction="l", 42560 linebreak="al", 42561 unicodeslot=0x165F, 42562 }, 42563 [0x1660]={ 42564 category="lo", 42565 description="CANADIAN SYLLABICS CARRIER TSA", 42566 direction="l", 42567 linebreak="al", 42568 unicodeslot=0x1660, 42569 }, 42570 [0x1661]={ 42571 category="lo", 42572 description="CANADIAN SYLLABICS CARRIER CHU", 42573 direction="l", 42574 linebreak="al", 42575 unicodeslot=0x1661, 42576 }, 42577 [0x1662]={ 42578 category="lo", 42579 description="CANADIAN SYLLABICS CARRIER CHO", 42580 direction="l", 42581 linebreak="al", 42582 unicodeslot=0x1662, 42583 }, 42584 [0x1663]={ 42585 category="lo", 42586 description="CANADIAN SYLLABICS CARRIER CHE", 42587 direction="l", 42588 linebreak="al", 42589 unicodeslot=0x1663, 42590 }, 42591 [0x1664]={ 42592 category="lo", 42593 description="CANADIAN SYLLABICS CARRIER CHEE", 42594 direction="l", 42595 linebreak="al", 42596 unicodeslot=0x1664, 42597 }, 42598 [0x1665]={ 42599 category="lo", 42600 description="CANADIAN SYLLABICS CARRIER CHI", 42601 direction="l", 42602 linebreak="al", 42603 unicodeslot=0x1665, 42604 }, 42605 [0x1666]={ 42606 category="lo", 42607 description="CANADIAN SYLLABICS CARRIER CHA", 42608 direction="l", 42609 linebreak="al", 42610 unicodeslot=0x1666, 42611 }, 42612 [0x1667]={ 42613 category="lo", 42614 description="CANADIAN SYLLABICS CARRIER TTSU", 42615 direction="l", 42616 linebreak="al", 42617 unicodeslot=0x1667, 42618 }, 42619 [0x1668]={ 42620 category="lo", 42621 description="CANADIAN SYLLABICS CARRIER TTSO", 42622 direction="l", 42623 linebreak="al", 42624 unicodeslot=0x1668, 42625 }, 42626 [0x1669]={ 42627 category="lo", 42628 description="CANADIAN SYLLABICS CARRIER TTSE", 42629 direction="l", 42630 linebreak="al", 42631 unicodeslot=0x1669, 42632 }, 42633 [0x166A]={ 42634 category="lo", 42635 description="CANADIAN SYLLABICS CARRIER TTSEE", 42636 direction="l", 42637 linebreak="al", 42638 unicodeslot=0x166A, 42639 }, 42640 [0x166B]={ 42641 category="lo", 42642 description="CANADIAN SYLLABICS CARRIER TTSI", 42643 direction="l", 42644 linebreak="al", 42645 unicodeslot=0x166B, 42646 }, 42647 [0x166C]={ 42648 category="lo", 42649 description="CANADIAN SYLLABICS CARRIER TTSA", 42650 direction="l", 42651 linebreak="al", 42652 unicodeslot=0x166C, 42653 }, 42654 [0x166D]={ 42655 category="po", 42656 description="CANADIAN SYLLABICS CHI SIGN", 42657 direction="l", 42658 linebreak="al", 42659 unicodeslot=0x166D, 42660 }, 42661 [0x166E]={ 42662 category="po", 42663 description="CANADIAN SYLLABICS FULL STOP", 42664 direction="l", 42665 linebreak="al", 42666 unicodeslot=0x166E, 42667 }, 42668 [0x166F]={ 42669 category="lo", 42670 description="CANADIAN SYLLABICS QAI", 42671 direction="l", 42672 linebreak="al", 42673 unicodeslot=0x166F, 42674 }, 42675 [0x1670]={ 42676 category="lo", 42677 description="CANADIAN SYLLABICS NGAI", 42678 direction="l", 42679 linebreak="al", 42680 unicodeslot=0x1670, 42681 }, 42682 [0x1671]={ 42683 category="lo", 42684 description="CANADIAN SYLLABICS NNGI", 42685 direction="l", 42686 linebreak="al", 42687 unicodeslot=0x1671, 42688 }, 42689 [0x1672]={ 42690 category="lo", 42691 description="CANADIAN SYLLABICS NNGII", 42692 direction="l", 42693 linebreak="al", 42694 unicodeslot=0x1672, 42695 }, 42696 [0x1673]={ 42697 category="lo", 42698 description="CANADIAN SYLLABICS NNGO", 42699 direction="l", 42700 linebreak="al", 42701 unicodeslot=0x1673, 42702 }, 42703 [0x1674]={ 42704 category="lo", 42705 description="CANADIAN SYLLABICS NNGOO", 42706 direction="l", 42707 linebreak="al", 42708 unicodeslot=0x1674, 42709 }, 42710 [0x1675]={ 42711 category="lo", 42712 description="CANADIAN SYLLABICS NNGA", 42713 direction="l", 42714 linebreak="al", 42715 unicodeslot=0x1675, 42716 }, 42717 [0x1676]={ 42718 category="lo", 42719 description="CANADIAN SYLLABICS NNGAA", 42720 direction="l", 42721 linebreak="al", 42722 unicodeslot=0x1676, 42723 }, 42724 [0x1677]={ 42725 category="lo", 42726 description="CANADIAN SYLLABICS WOODS-CREE THWEE", 42727 direction="l", 42728 linebreak="al", 42729 unicodeslot=0x1677, 42730 }, 42731 [0x1678]={ 42732 category="lo", 42733 description="CANADIAN SYLLABICS WOODS-CREE THWI", 42734 direction="l", 42735 linebreak="al", 42736 unicodeslot=0x1678, 42737 }, 42738 [0x1679]={ 42739 category="lo", 42740 description="CANADIAN SYLLABICS WOODS-CREE THWII", 42741 direction="l", 42742 linebreak="al", 42743 unicodeslot=0x1679, 42744 }, 42745 [0x167A]={ 42746 category="lo", 42747 description="CANADIAN SYLLABICS WOODS-CREE THWO", 42748 direction="l", 42749 linebreak="al", 42750 unicodeslot=0x167A, 42751 }, 42752 [0x167B]={ 42753 category="lo", 42754 description="CANADIAN SYLLABICS WOODS-CREE THWOO", 42755 direction="l", 42756 linebreak="al", 42757 unicodeslot=0x167B, 42758 }, 42759 [0x167C]={ 42760 category="lo", 42761 description="CANADIAN SYLLABICS WOODS-CREE THWA", 42762 direction="l", 42763 linebreak="al", 42764 unicodeslot=0x167C, 42765 }, 42766 [0x167D]={ 42767 category="lo", 42768 description="CANADIAN SYLLABICS WOODS-CREE THWAA", 42769 direction="l", 42770 linebreak="al", 42771 unicodeslot=0x167D, 42772 }, 42773 [0x167E]={ 42774 category="lo", 42775 description="CANADIAN SYLLABICS WOODS-CREE FINAL TH", 42776 direction="l", 42777 linebreak="al", 42778 unicodeslot=0x167E, 42779 }, 42780 [0x167F]={ 42781 category="lo", 42782 description="CANADIAN SYLLABICS BLACKFOOT W", 42783 direction="l", 42784 linebreak="al", 42785 unicodeslot=0x167F, 42786 }, 42787 [0x1680]={ 42788 category="zs", 42789 description="OGHAM SPACE MARK", 42790 direction="ws", 42791 linebreak="ba", 42792 unicodeslot=0x1680, 42793 }, 42794 [0x1681]={ 42795 category="lo", 42796 description="OGHAM LETTER BEITH", 42797 direction="l", 42798 linebreak="al", 42799 unicodeslot=0x1681, 42800 }, 42801 [0x1682]={ 42802 category="lo", 42803 description="OGHAM LETTER LUIS", 42804 direction="l", 42805 linebreak="al", 42806 unicodeslot=0x1682, 42807 }, 42808 [0x1683]={ 42809 category="lo", 42810 description="OGHAM LETTER FEARN", 42811 direction="l", 42812 linebreak="al", 42813 unicodeslot=0x1683, 42814 }, 42815 [0x1684]={ 42816 category="lo", 42817 description="OGHAM LETTER SAIL", 42818 direction="l", 42819 linebreak="al", 42820 unicodeslot=0x1684, 42821 }, 42822 [0x1685]={ 42823 category="lo", 42824 description="OGHAM LETTER NION", 42825 direction="l", 42826 linebreak="al", 42827 unicodeslot=0x1685, 42828 }, 42829 [0x1686]={ 42830 category="lo", 42831 description="OGHAM LETTER UATH", 42832 direction="l", 42833 linebreak="al", 42834 unicodeslot=0x1686, 42835 }, 42836 [0x1687]={ 42837 category="lo", 42838 description="OGHAM LETTER DAIR", 42839 direction="l", 42840 linebreak="al", 42841 unicodeslot=0x1687, 42842 }, 42843 [0x1688]={ 42844 category="lo", 42845 description="OGHAM LETTER TINNE", 42846 direction="l", 42847 linebreak="al", 42848 unicodeslot=0x1688, 42849 }, 42850 [0x1689]={ 42851 category="lo", 42852 description="OGHAM LETTER COLL", 42853 direction="l", 42854 linebreak="al", 42855 unicodeslot=0x1689, 42856 }, 42857 [0x168A]={ 42858 category="lo", 42859 description="OGHAM LETTER CEIRT", 42860 direction="l", 42861 linebreak="al", 42862 unicodeslot=0x168A, 42863 }, 42864 [0x168B]={ 42865 category="lo", 42866 description="OGHAM LETTER MUIN", 42867 direction="l", 42868 linebreak="al", 42869 unicodeslot=0x168B, 42870 }, 42871 [0x168C]={ 42872 category="lo", 42873 description="OGHAM LETTER GORT", 42874 direction="l", 42875 linebreak="al", 42876 unicodeslot=0x168C, 42877 }, 42878 [0x168D]={ 42879 category="lo", 42880 description="OGHAM LETTER NGEADAL", 42881 direction="l", 42882 linebreak="al", 42883 unicodeslot=0x168D, 42884 }, 42885 [0x168E]={ 42886 category="lo", 42887 description="OGHAM LETTER STRAIF", 42888 direction="l", 42889 linebreak="al", 42890 unicodeslot=0x168E, 42891 }, 42892 [0x168F]={ 42893 category="lo", 42894 description="OGHAM LETTER RUIS", 42895 direction="l", 42896 linebreak="al", 42897 unicodeslot=0x168F, 42898 }, 42899 [0x1690]={ 42900 category="lo", 42901 description="OGHAM LETTER AILM", 42902 direction="l", 42903 linebreak="al", 42904 unicodeslot=0x1690, 42905 }, 42906 [0x1691]={ 42907 category="lo", 42908 description="OGHAM LETTER ONN", 42909 direction="l", 42910 linebreak="al", 42911 unicodeslot=0x1691, 42912 }, 42913 [0x1692]={ 42914 category="lo", 42915 description="OGHAM LETTER UR", 42916 direction="l", 42917 linebreak="al", 42918 unicodeslot=0x1692, 42919 }, 42920 [0x1693]={ 42921 category="lo", 42922 description="OGHAM LETTER EADHADH", 42923 direction="l", 42924 linebreak="al", 42925 unicodeslot=0x1693, 42926 }, 42927 [0x1694]={ 42928 category="lo", 42929 description="OGHAM LETTER IODHADH", 42930 direction="l", 42931 linebreak="al", 42932 unicodeslot=0x1694, 42933 }, 42934 [0x1695]={ 42935 category="lo", 42936 description="OGHAM LETTER EABHADH", 42937 direction="l", 42938 linebreak="al", 42939 unicodeslot=0x1695, 42940 }, 42941 [0x1696]={ 42942 category="lo", 42943 description="OGHAM LETTER OR", 42944 direction="l", 42945 linebreak="al", 42946 unicodeslot=0x1696, 42947 }, 42948 [0x1697]={ 42949 category="lo", 42950 description="OGHAM LETTER UILLEANN", 42951 direction="l", 42952 linebreak="al", 42953 unicodeslot=0x1697, 42954 }, 42955 [0x1698]={ 42956 category="lo", 42957 description="OGHAM LETTER IFIN", 42958 direction="l", 42959 linebreak="al", 42960 unicodeslot=0x1698, 42961 }, 42962 [0x1699]={ 42963 category="lo", 42964 description="OGHAM LETTER EAMHANCHOLL", 42965 direction="l", 42966 linebreak="al", 42967 unicodeslot=0x1699, 42968 }, 42969 [0x169A]={ 42970 category="lo", 42971 description="OGHAM LETTER PEITH", 42972 direction="l", 42973 linebreak="al", 42974 unicodeslot=0x169A, 42975 }, 42976 [0x169B]={ 42977 category="ps", 42978 description="OGHAM FEATHER MARK", 42979 direction="on", 42980 linebreak="op", 42981 mirror=0x169C, 42982 unicodeslot=0x169B, 42983 }, 42984 [0x169C]={ 42985 category="pe", 42986 description="OGHAM REVERSED FEATHER MARK", 42987 direction="on", 42988 linebreak="cl", 42989 mirror=0x169B, 42990 unicodeslot=0x169C, 42991 }, 42992 [0x16A0]={ 42993 category="lo", 42994 description="RUNIC LETTER FEHU FEOH FE F", 42995 direction="l", 42996 linebreak="al", 42997 unicodeslot=0x16A0, 42998 }, 42999 [0x16A1]={ 43000 category="lo", 43001 description="RUNIC LETTER V", 43002 direction="l", 43003 linebreak="al", 43004 unicodeslot=0x16A1, 43005 }, 43006 [0x16A2]={ 43007 category="lo", 43008 description="RUNIC LETTER URUZ UR U", 43009 direction="l", 43010 linebreak="al", 43011 unicodeslot=0x16A2, 43012 }, 43013 [0x16A3]={ 43014 category="lo", 43015 description="RUNIC LETTER YR", 43016 direction="l", 43017 linebreak="al", 43018 unicodeslot=0x16A3, 43019 }, 43020 [0x16A4]={ 43021 category="lo", 43022 description="RUNIC LETTER Y", 43023 direction="l", 43024 linebreak="al", 43025 unicodeslot=0x16A4, 43026 }, 43027 [0x16A5]={ 43028 category="lo", 43029 description="RUNIC LETTER W", 43030 direction="l", 43031 linebreak="al", 43032 unicodeslot=0x16A5, 43033 }, 43034 [0x16A6]={ 43035 category="lo", 43036 description="RUNIC LETTER THURISAZ THURS THORN", 43037 direction="l", 43038 linebreak="al", 43039 unicodeslot=0x16A6, 43040 }, 43041 [0x16A7]={ 43042 category="lo", 43043 description="RUNIC LETTER ETH", 43044 direction="l", 43045 linebreak="al", 43046 unicodeslot=0x16A7, 43047 }, 43048 [0x16A8]={ 43049 category="lo", 43050 description="RUNIC LETTER ANSUZ A", 43051 direction="l", 43052 linebreak="al", 43053 unicodeslot=0x16A8, 43054 }, 43055 [0x16A9]={ 43056 category="lo", 43057 description="RUNIC LETTER OS O", 43058 direction="l", 43059 linebreak="al", 43060 unicodeslot=0x16A9, 43061 }, 43062 [0x16AA]={ 43063 category="lo", 43064 description="RUNIC LETTER AC A", 43065 direction="l", 43066 linebreak="al", 43067 unicodeslot=0x16AA, 43068 }, 43069 [0x16AB]={ 43070 category="lo", 43071 description="RUNIC LETTER AESC", 43072 direction="l", 43073 linebreak="al", 43074 unicodeslot=0x16AB, 43075 }, 43076 [0x16AC]={ 43077 category="lo", 43078 description="RUNIC LETTER LONG-BRANCH-OSS O", 43079 direction="l", 43080 linebreak="al", 43081 unicodeslot=0x16AC, 43082 }, 43083 [0x16AD]={ 43084 category="lo", 43085 description="RUNIC LETTER SHORT-TWIG-OSS O", 43086 direction="l", 43087 linebreak="al", 43088 unicodeslot=0x16AD, 43089 }, 43090 [0x16AE]={ 43091 category="lo", 43092 description="RUNIC LETTER O", 43093 direction="l", 43094 linebreak="al", 43095 unicodeslot=0x16AE, 43096 }, 43097 [0x16AF]={ 43098 category="lo", 43099 description="RUNIC LETTER OE", 43100 direction="l", 43101 linebreak="al", 43102 unicodeslot=0x16AF, 43103 }, 43104 [0x16B0]={ 43105 category="lo", 43106 description="RUNIC LETTER ON", 43107 direction="l", 43108 linebreak="al", 43109 unicodeslot=0x16B0, 43110 }, 43111 [0x16B1]={ 43112 category="lo", 43113 description="RUNIC LETTER RAIDO RAD REID R", 43114 direction="l", 43115 linebreak="al", 43116 unicodeslot=0x16B1, 43117 }, 43118 [0x16B2]={ 43119 category="lo", 43120 description="RUNIC LETTER KAUNA", 43121 direction="l", 43122 linebreak="al", 43123 unicodeslot=0x16B2, 43124 }, 43125 [0x16B3]={ 43126 category="lo", 43127 description="RUNIC LETTER CEN", 43128 direction="l", 43129 linebreak="al", 43130 unicodeslot=0x16B3, 43131 }, 43132 [0x16B4]={ 43133 category="lo", 43134 description="RUNIC LETTER KAUN K", 43135 direction="l", 43136 linebreak="al", 43137 unicodeslot=0x16B4, 43138 }, 43139 [0x16B5]={ 43140 category="lo", 43141 description="RUNIC LETTER G", 43142 direction="l", 43143 linebreak="al", 43144 unicodeslot=0x16B5, 43145 }, 43146 [0x16B6]={ 43147 category="lo", 43148 description="RUNIC LETTER ENG", 43149 direction="l", 43150 linebreak="al", 43151 unicodeslot=0x16B6, 43152 }, 43153 [0x16B7]={ 43154 category="lo", 43155 description="RUNIC LETTER GEBO GYFU G", 43156 direction="l", 43157 linebreak="al", 43158 unicodeslot=0x16B7, 43159 }, 43160 [0x16B8]={ 43161 category="lo", 43162 description="RUNIC LETTER GAR", 43163 direction="l", 43164 linebreak="al", 43165 unicodeslot=0x16B8, 43166 }, 43167 [0x16B9]={ 43168 category="lo", 43169 description="RUNIC LETTER WUNJO WYNN W", 43170 direction="l", 43171 linebreak="al", 43172 unicodeslot=0x16B9, 43173 }, 43174 [0x16BA]={ 43175 category="lo", 43176 description="RUNIC LETTER HAGLAZ H", 43177 direction="l", 43178 linebreak="al", 43179 unicodeslot=0x16BA, 43180 }, 43181 [0x16BB]={ 43182 category="lo", 43183 description="RUNIC LETTER HAEGL H", 43184 direction="l", 43185 linebreak="al", 43186 unicodeslot=0x16BB, 43187 }, 43188 [0x16BC]={ 43189 category="lo", 43190 description="RUNIC LETTER LONG-BRANCH-HAGALL H", 43191 direction="l", 43192 linebreak="al", 43193 unicodeslot=0x16BC, 43194 }, 43195 [0x16BD]={ 43196 category="lo", 43197 description="RUNIC LETTER SHORT-TWIG-HAGALL H", 43198 direction="l", 43199 linebreak="al", 43200 unicodeslot=0x16BD, 43201 }, 43202 [0x16BE]={ 43203 category="lo", 43204 description="RUNIC LETTER NAUDIZ NYD NAUD N", 43205 direction="l", 43206 linebreak="al", 43207 unicodeslot=0x16BE, 43208 }, 43209 [0x16BF]={ 43210 category="lo", 43211 description="RUNIC LETTER SHORT-TWIG-NAUD N", 43212 direction="l", 43213 linebreak="al", 43214 unicodeslot=0x16BF, 43215 }, 43216 [0x16C0]={ 43217 category="lo", 43218 description="RUNIC LETTER DOTTED-N", 43219 direction="l", 43220 linebreak="al", 43221 unicodeslot=0x16C0, 43222 }, 43223 [0x16C1]={ 43224 category="lo", 43225 description="RUNIC LETTER ISAZ IS ISS I", 43226 direction="l", 43227 linebreak="al", 43228 unicodeslot=0x16C1, 43229 }, 43230 [0x16C2]={ 43231 category="lo", 43232 description="RUNIC LETTER E", 43233 direction="l", 43234 linebreak="al", 43235 unicodeslot=0x16C2, 43236 }, 43237 [0x16C3]={ 43238 category="lo", 43239 description="RUNIC LETTER JERAN J", 43240 direction="l", 43241 linebreak="al", 43242 unicodeslot=0x16C3, 43243 }, 43244 [0x16C4]={ 43245 category="lo", 43246 description="RUNIC LETTER GER", 43247 direction="l", 43248 linebreak="al", 43249 unicodeslot=0x16C4, 43250 }, 43251 [0x16C5]={ 43252 category="lo", 43253 description="RUNIC LETTER LONG-BRANCH-AR AE", 43254 direction="l", 43255 linebreak="al", 43256 unicodeslot=0x16C5, 43257 }, 43258 [0x16C6]={ 43259 category="lo", 43260 description="RUNIC LETTER SHORT-TWIG-AR A", 43261 direction="l", 43262 linebreak="al", 43263 unicodeslot=0x16C6, 43264 }, 43265 [0x16C7]={ 43266 category="lo", 43267 description="RUNIC LETTER IWAZ EOH", 43268 direction="l", 43269 linebreak="al", 43270 unicodeslot=0x16C7, 43271 }, 43272 [0x16C8]={ 43273 category="lo", 43274 description="RUNIC LETTER PERTHO PEORTH P", 43275 direction="l", 43276 linebreak="al", 43277 unicodeslot=0x16C8, 43278 }, 43279 [0x16C9]={ 43280 category="lo", 43281 description="RUNIC LETTER ALGIZ EOLHX", 43282 direction="l", 43283 linebreak="al", 43284 unicodeslot=0x16C9, 43285 }, 43286 [0x16CA]={ 43287 category="lo", 43288 description="RUNIC LETTER SOWILO S", 43289 direction="l", 43290 linebreak="al", 43291 unicodeslot=0x16CA, 43292 }, 43293 [0x16CB]={ 43294 category="lo", 43295 description="RUNIC LETTER SIGEL LONG-BRANCH-SOL S", 43296 direction="l", 43297 linebreak="al", 43298 unicodeslot=0x16CB, 43299 }, 43300 [0x16CC]={ 43301 category="lo", 43302 description="RUNIC LETTER SHORT-TWIG-SOL S", 43303 direction="l", 43304 linebreak="al", 43305 unicodeslot=0x16CC, 43306 }, 43307 [0x16CD]={ 43308 category="lo", 43309 description="RUNIC LETTER C", 43310 direction="l", 43311 linebreak="al", 43312 unicodeslot=0x16CD, 43313 }, 43314 [0x16CE]={ 43315 category="lo", 43316 description="RUNIC LETTER Z", 43317 direction="l", 43318 linebreak="al", 43319 unicodeslot=0x16CE, 43320 }, 43321 [0x16CF]={ 43322 category="lo", 43323 description="RUNIC LETTER TIWAZ TIR TYR T", 43324 direction="l", 43325 linebreak="al", 43326 unicodeslot=0x16CF, 43327 }, 43328 [0x16D0]={ 43329 category="lo", 43330 description="RUNIC LETTER SHORT-TWIG-TYR T", 43331 direction="l", 43332 linebreak="al", 43333 unicodeslot=0x16D0, 43334 }, 43335 [0x16D1]={ 43336 category="lo", 43337 description="RUNIC LETTER D", 43338 direction="l", 43339 linebreak="al", 43340 unicodeslot=0x16D1, 43341 }, 43342 [0x16D2]={ 43343 category="lo", 43344 description="RUNIC LETTER BERKANAN BEORC BJARKAN B", 43345 direction="l", 43346 linebreak="al", 43347 unicodeslot=0x16D2, 43348 }, 43349 [0x16D3]={ 43350 category="lo", 43351 description="RUNIC LETTER SHORT-TWIG-BJARKAN B", 43352 direction="l", 43353 linebreak="al", 43354 unicodeslot=0x16D3, 43355 }, 43356 [0x16D4]={ 43357 category="lo", 43358 description="RUNIC LETTER DOTTED-P", 43359 direction="l", 43360 linebreak="al", 43361 unicodeslot=0x16D4, 43362 }, 43363 [0x16D5]={ 43364 category="lo", 43365 description="RUNIC LETTER OPEN-P", 43366 direction="l", 43367 linebreak="al", 43368 unicodeslot=0x16D5, 43369 }, 43370 [0x16D6]={ 43371 category="lo", 43372 description="RUNIC LETTER EHWAZ EH E", 43373 direction="l", 43374 linebreak="al", 43375 unicodeslot=0x16D6, 43376 }, 43377 [0x16D7]={ 43378 category="lo", 43379 description="RUNIC LETTER MANNAZ MAN M", 43380 direction="l", 43381 linebreak="al", 43382 unicodeslot=0x16D7, 43383 }, 43384 [0x16D8]={ 43385 category="lo", 43386 description="RUNIC LETTER LONG-BRANCH-MADR M", 43387 direction="l", 43388 linebreak="al", 43389 unicodeslot=0x16D8, 43390 }, 43391 [0x16D9]={ 43392 category="lo", 43393 description="RUNIC LETTER SHORT-TWIG-MADR M", 43394 direction="l", 43395 linebreak="al", 43396 unicodeslot=0x16D9, 43397 }, 43398 [0x16DA]={ 43399 category="lo", 43400 description="RUNIC LETTER LAUKAZ LAGU LOGR L", 43401 direction="l", 43402 linebreak="al", 43403 unicodeslot=0x16DA, 43404 }, 43405 [0x16DB]={ 43406 category="lo", 43407 description="RUNIC LETTER DOTTED-L", 43408 direction="l", 43409 linebreak="al", 43410 unicodeslot=0x16DB, 43411 }, 43412 [0x16DC]={ 43413 category="lo", 43414 description="RUNIC LETTER INGWAZ", 43415 direction="l", 43416 linebreak="al", 43417 unicodeslot=0x16DC, 43418 }, 43419 [0x16DD]={ 43420 category="lo", 43421 description="RUNIC LETTER ING", 43422 direction="l", 43423 linebreak="al", 43424 unicodeslot=0x16DD, 43425 }, 43426 [0x16DE]={ 43427 category="lo", 43428 description="RUNIC LETTER DAGAZ DAEG D", 43429 direction="l", 43430 linebreak="al", 43431 unicodeslot=0x16DE, 43432 }, 43433 [0x16DF]={ 43434 category="lo", 43435 description="RUNIC LETTER OTHALAN ETHEL O", 43436 direction="l", 43437 linebreak="al", 43438 unicodeslot=0x16DF, 43439 }, 43440 [0x16E0]={ 43441 category="lo", 43442 description="RUNIC LETTER EAR", 43443 direction="l", 43444 linebreak="al", 43445 unicodeslot=0x16E0, 43446 }, 43447 [0x16E1]={ 43448 category="lo", 43449 description="RUNIC LETTER IOR", 43450 direction="l", 43451 linebreak="al", 43452 unicodeslot=0x16E1, 43453 }, 43454 [0x16E2]={ 43455 category="lo", 43456 description="RUNIC LETTER CWEORTH", 43457 direction="l", 43458 linebreak="al", 43459 unicodeslot=0x16E2, 43460 }, 43461 [0x16E3]={ 43462 category="lo", 43463 description="RUNIC LETTER CALC", 43464 direction="l", 43465 linebreak="al", 43466 unicodeslot=0x16E3, 43467 }, 43468 [0x16E4]={ 43469 category="lo", 43470 description="RUNIC LETTER CEALC", 43471 direction="l", 43472 linebreak="al", 43473 unicodeslot=0x16E4, 43474 }, 43475 [0x16E5]={ 43476 category="lo", 43477 description="RUNIC LETTER STAN", 43478 direction="l", 43479 linebreak="al", 43480 unicodeslot=0x16E5, 43481 }, 43482 [0x16E6]={ 43483 category="lo", 43484 description="RUNIC LETTER LONG-BRANCH-YR", 43485 direction="l", 43486 linebreak="al", 43487 unicodeslot=0x16E6, 43488 }, 43489 [0x16E7]={ 43490 category="lo", 43491 description="RUNIC LETTER SHORT-TWIG-YR", 43492 direction="l", 43493 linebreak="al", 43494 unicodeslot=0x16E7, 43495 }, 43496 [0x16E8]={ 43497 category="lo", 43498 description="RUNIC LETTER ICELANDIC-YR", 43499 direction="l", 43500 linebreak="al", 43501 unicodeslot=0x16E8, 43502 }, 43503 [0x16E9]={ 43504 category="lo", 43505 description="RUNIC LETTER Q", 43506 direction="l", 43507 linebreak="al", 43508 unicodeslot=0x16E9, 43509 }, 43510 [0x16EA]={ 43511 category="lo", 43512 description="RUNIC LETTER X", 43513 direction="l", 43514 linebreak="al", 43515 unicodeslot=0x16EA, 43516 }, 43517 [0x16EB]={ 43518 category="po", 43519 description="RUNIC SINGLE PUNCTUATION", 43520 direction="l", 43521 linebreak="ba", 43522 unicodeslot=0x16EB, 43523 }, 43524 [0x16EC]={ 43525 category="po", 43526 description="RUNIC MULTIPLE PUNCTUATION", 43527 direction="l", 43528 linebreak="ba", 43529 unicodeslot=0x16EC, 43530 }, 43531 [0x16ED]={ 43532 category="po", 43533 description="RUNIC CROSS PUNCTUATION", 43534 direction="l", 43535 linebreak="ba", 43536 unicodeslot=0x16ED, 43537 }, 43538 [0x16EE]={ 43539 category="nl", 43540 description="RUNIC ARLAUG SYMBOL", 43541 direction="l", 43542 linebreak="al", 43543 unicodeslot=0x16EE, 43544 }, 43545 [0x16EF]={ 43546 category="nl", 43547 description="RUNIC TVIMADUR SYMBOL", 43548 direction="l", 43549 linebreak="al", 43550 unicodeslot=0x16EF, 43551 }, 43552 [0x16F0]={ 43553 category="nl", 43554 description="RUNIC BELGTHOR SYMBOL", 43555 direction="l", 43556 linebreak="al", 43557 unicodeslot=0x16F0, 43558 }, 43559 [0x16F1]={ 43560 category="lo", 43561 description="RUNIC LETTER K", 43562 direction="l", 43563 linebreak="al", 43564 unicodeslot=0x16F1, 43565 }, 43566 [0x16F2]={ 43567 category="lo", 43568 description="RUNIC LETTER SH", 43569 direction="l", 43570 linebreak="al", 43571 unicodeslot=0x16F2, 43572 }, 43573 [0x16F3]={ 43574 category="lo", 43575 description="RUNIC LETTER OO", 43576 direction="l", 43577 linebreak="al", 43578 unicodeslot=0x16F3, 43579 }, 43580 [0x16F4]={ 43581 category="lo", 43582 description="RUNIC LETTER FRANKS CASKET OS", 43583 direction="l", 43584 linebreak="al", 43585 unicodeslot=0x16F4, 43586 }, 43587 [0x16F5]={ 43588 category="lo", 43589 description="RUNIC LETTER FRANKS CASKET IS", 43590 direction="l", 43591 linebreak="al", 43592 unicodeslot=0x16F5, 43593 }, 43594 [0x16F6]={ 43595 category="lo", 43596 description="RUNIC LETTER FRANKS CASKET EH", 43597 direction="l", 43598 linebreak="al", 43599 unicodeslot=0x16F6, 43600 }, 43601 [0x16F7]={ 43602 category="lo", 43603 description="RUNIC LETTER FRANKS CASKET AC", 43604 direction="l", 43605 linebreak="al", 43606 unicodeslot=0x16F7, 43607 }, 43608 [0x16F8]={ 43609 category="lo", 43610 description="RUNIC LETTER FRANKS CASKET AESC", 43611 direction="l", 43612 linebreak="al", 43613 unicodeslot=0x16F8, 43614 }, 43615 [0x1700]={ 43616 category="lo", 43617 description="TAGALOG LETTER A", 43618 direction="l", 43619 linebreak="al", 43620 unicodeslot=0x1700, 43621 }, 43622 [0x1701]={ 43623 category="lo", 43624 description="TAGALOG LETTER I", 43625 direction="l", 43626 linebreak="al", 43627 unicodeslot=0x1701, 43628 }, 43629 [0x1702]={ 43630 category="lo", 43631 description="TAGALOG LETTER U", 43632 direction="l", 43633 linebreak="al", 43634 unicodeslot=0x1702, 43635 }, 43636 [0x1703]={ 43637 category="lo", 43638 description="TAGALOG LETTER KA", 43639 direction="l", 43640 linebreak="al", 43641 unicodeslot=0x1703, 43642 }, 43643 [0x1704]={ 43644 category="lo", 43645 description="TAGALOG LETTER GA", 43646 direction="l", 43647 linebreak="al", 43648 unicodeslot=0x1704, 43649 }, 43650 [0x1705]={ 43651 category="lo", 43652 description="TAGALOG LETTER NGA", 43653 direction="l", 43654 linebreak="al", 43655 unicodeslot=0x1705, 43656 }, 43657 [0x1706]={ 43658 category="lo", 43659 description="TAGALOG LETTER TA", 43660 direction="l", 43661 linebreak="al", 43662 unicodeslot=0x1706, 43663 }, 43664 [0x1707]={ 43665 category="lo", 43666 description="TAGALOG LETTER DA", 43667 direction="l", 43668 linebreak="al", 43669 unicodeslot=0x1707, 43670 }, 43671 [0x1708]={ 43672 category="lo", 43673 description="TAGALOG LETTER NA", 43674 direction="l", 43675 linebreak="al", 43676 unicodeslot=0x1708, 43677 }, 43678 [0x1709]={ 43679 category="lo", 43680 description="TAGALOG LETTER PA", 43681 direction="l", 43682 linebreak="al", 43683 unicodeslot=0x1709, 43684 }, 43685 [0x170A]={ 43686 category="lo", 43687 description="TAGALOG LETTER BA", 43688 direction="l", 43689 linebreak="al", 43690 unicodeslot=0x170A, 43691 }, 43692 [0x170B]={ 43693 category="lo", 43694 description="TAGALOG LETTER MA", 43695 direction="l", 43696 linebreak="al", 43697 unicodeslot=0x170B, 43698 }, 43699 [0x170C]={ 43700 category="lo", 43701 description="TAGALOG LETTER YA", 43702 direction="l", 43703 linebreak="al", 43704 unicodeslot=0x170C, 43705 }, 43706 [0x170D]={ 43707 category="lo", 43708 comment="check indic", 43709 description="TAGALOG LETTER RA", 43710 direction="l", 43711 indic="c", 43712 indicclass="ra", 43713 indicorder="am", 43714 linebreak="al", 43715 unicodeslot=0x170D, 43716 }, 43717 [0x170E]={ 43718 category="lo", 43719 description="TAGALOG LETTER LA", 43720 direction="l", 43721 linebreak="al", 43722 unicodeslot=0x170E, 43723 }, 43724 [0x170F]={ 43725 category="lo", 43726 description="TAGALOG LETTER WA", 43727 direction="l", 43728 linebreak="al", 43729 unicodeslot=0x170F, 43730 }, 43731 [0x1710]={ 43732 category="lo", 43733 description="TAGALOG LETTER SA", 43734 direction="l", 43735 linebreak="al", 43736 unicodeslot=0x1710, 43737 }, 43738 [0x1711]={ 43739 category="lo", 43740 description="TAGALOG LETTER HA", 43741 direction="l", 43742 linebreak="al", 43743 unicodeslot=0x1711, 43744 }, 43745 [0x1712]={ 43746 category="mn", 43747 description="TAGALOG VOWEL SIGN I", 43748 direction="nsm", 43749 linebreak="cm", 43750 unicodeslot=0x1712, 43751 }, 43752 [0x1713]={ 43753 category="mn", 43754 description="TAGALOG VOWEL SIGN U", 43755 direction="nsm", 43756 linebreak="cm", 43757 unicodeslot=0x1713, 43758 }, 43759 [0x1714]={ 43760 category="mn", 43761 combining=0x9, 43762 description="TAGALOG SIGN VIRAMA", 43763 direction="nsm", 43764 linebreak="cm", 43765 unicodeslot=0x1714, 43766 }, 43767 [0x1715]={ 43768 category="mc", 43769 combining=0x9, 43770 description="TAGALOG SIGN PAMUDPOD", 43771 direction="l", 43772 linebreak="cm", 43773 unicodeslot=0x1715, 43774 }, 43775 [0x171F]={ 43776 category="lo", 43777 description="TAGALOG LETTER ARCHAIC RA", 43778 direction="l", 43779 linebreak="al", 43780 unicodeslot=0x171F, 43781 }, 43782 [0x1720]={ 43783 category="lo", 43784 description="HANUNOO LETTER A", 43785 direction="l", 43786 linebreak="al", 43787 unicodeslot=0x1720, 43788 }, 43789 [0x1721]={ 43790 category="lo", 43791 description="HANUNOO LETTER I", 43792 direction="l", 43793 linebreak="al", 43794 unicodeslot=0x1721, 43795 }, 43796 [0x1722]={ 43797 category="lo", 43798 description="HANUNOO LETTER U", 43799 direction="l", 43800 linebreak="al", 43801 unicodeslot=0x1722, 43802 }, 43803 [0x1723]={ 43804 category="lo", 43805 description="HANUNOO LETTER KA", 43806 direction="l", 43807 linebreak="al", 43808 unicodeslot=0x1723, 43809 }, 43810 [0x1724]={ 43811 category="lo", 43812 description="HANUNOO LETTER GA", 43813 direction="l", 43814 linebreak="al", 43815 unicodeslot=0x1724, 43816 }, 43817 [0x1725]={ 43818 category="lo", 43819 description="HANUNOO LETTER NGA", 43820 direction="l", 43821 linebreak="al", 43822 unicodeslot=0x1725, 43823 }, 43824 [0x1726]={ 43825 category="lo", 43826 description="HANUNOO LETTER TA", 43827 direction="l", 43828 linebreak="al", 43829 unicodeslot=0x1726, 43830 }, 43831 [0x1727]={ 43832 category="lo", 43833 description="HANUNOO LETTER DA", 43834 direction="l", 43835 linebreak="al", 43836 unicodeslot=0x1727, 43837 }, 43838 [0x1728]={ 43839 category="lo", 43840 description="HANUNOO LETTER NA", 43841 direction="l", 43842 linebreak="al", 43843 unicodeslot=0x1728, 43844 }, 43845 [0x1729]={ 43846 category="lo", 43847 description="HANUNOO LETTER PA", 43848 direction="l", 43849 linebreak="al", 43850 unicodeslot=0x1729, 43851 }, 43852 [0x172A]={ 43853 category="lo", 43854 description="HANUNOO LETTER BA", 43855 direction="l", 43856 linebreak="al", 43857 unicodeslot=0x172A, 43858 }, 43859 [0x172B]={ 43860 category="lo", 43861 description="HANUNOO LETTER MA", 43862 direction="l", 43863 linebreak="al", 43864 unicodeslot=0x172B, 43865 }, 43866 [0x172C]={ 43867 category="lo", 43868 description="HANUNOO LETTER YA", 43869 direction="l", 43870 linebreak="al", 43871 unicodeslot=0x172C, 43872 }, 43873 [0x172D]={ 43874 category="lo", 43875 description="HANUNOO LETTER RA", 43876 direction="l", 43877 linebreak="al", 43878 unicodeslot=0x172D, 43879 }, 43880 [0x172E]={ 43881 category="lo", 43882 description="HANUNOO LETTER LA", 43883 direction="l", 43884 linebreak="al", 43885 unicodeslot=0x172E, 43886 }, 43887 [0x172F]={ 43888 category="lo", 43889 description="HANUNOO LETTER WA", 43890 direction="l", 43891 linebreak="al", 43892 unicodeslot=0x172F, 43893 }, 43894 [0x1730]={ 43895 category="lo", 43896 description="HANUNOO LETTER SA", 43897 direction="l", 43898 linebreak="al", 43899 unicodeslot=0x1730, 43900 }, 43901 [0x1731]={ 43902 category="lo", 43903 description="HANUNOO LETTER HA", 43904 direction="l", 43905 linebreak="al", 43906 unicodeslot=0x1731, 43907 }, 43908 [0x1732]={ 43909 category="mn", 43910 description="HANUNOO VOWEL SIGN I", 43911 direction="nsm", 43912 linebreak="cm", 43913 unicodeslot=0x1732, 43914 }, 43915 [0x1733]={ 43916 category="mn", 43917 description="HANUNOO VOWEL SIGN U", 43918 direction="nsm", 43919 linebreak="cm", 43920 unicodeslot=0x1733, 43921 }, 43922 [0x1734]={ 43923 category="mn", 43924 combining=0x9, 43925 description="HANUNOO SIGN PAMUDPOD", 43926 direction="l", 43927 linebreak="cm", 43928 unicodeslot=0x1734, 43929 }, 43930 [0x1735]={ 43931 category="po", 43932 description="PHILIPPINE SINGLE PUNCTUATION", 43933 direction="l", 43934 linebreak="ba", 43935 unicodeslot=0x1735, 43936 }, 43937 [0x1736]={ 43938 category="po", 43939 description="PHILIPPINE DOUBLE PUNCTUATION", 43940 direction="l", 43941 linebreak="ba", 43942 unicodeslot=0x1736, 43943 }, 43944 [0x1740]={ 43945 category="lo", 43946 description="BUHID LETTER A", 43947 direction="l", 43948 linebreak="al", 43949 unicodeslot=0x1740, 43950 }, 43951 [0x1741]={ 43952 category="lo", 43953 description="BUHID LETTER I", 43954 direction="l", 43955 linebreak="al", 43956 unicodeslot=0x1741, 43957 }, 43958 [0x1742]={ 43959 category="lo", 43960 description="BUHID LETTER U", 43961 direction="l", 43962 linebreak="al", 43963 unicodeslot=0x1742, 43964 }, 43965 [0x1743]={ 43966 category="lo", 43967 description="BUHID LETTER KA", 43968 direction="l", 43969 linebreak="al", 43970 unicodeslot=0x1743, 43971 }, 43972 [0x1744]={ 43973 category="lo", 43974 description="BUHID LETTER GA", 43975 direction="l", 43976 linebreak="al", 43977 unicodeslot=0x1744, 43978 }, 43979 [0x1745]={ 43980 category="lo", 43981 description="BUHID LETTER NGA", 43982 direction="l", 43983 linebreak="al", 43984 unicodeslot=0x1745, 43985 }, 43986 [0x1746]={ 43987 category="lo", 43988 description="BUHID LETTER TA", 43989 direction="l", 43990 linebreak="al", 43991 unicodeslot=0x1746, 43992 }, 43993 [0x1747]={ 43994 category="lo", 43995 description="BUHID LETTER DA", 43996 direction="l", 43997 linebreak="al", 43998 unicodeslot=0x1747, 43999 }, 44000 [0x1748]={ 44001 category="lo", 44002 description="BUHID LETTER NA", 44003 direction="l", 44004 linebreak="al", 44005 unicodeslot=0x1748, 44006 }, 44007 [0x1749]={ 44008 category="lo", 44009 description="BUHID LETTER PA", 44010 direction="l", 44011 linebreak="al", 44012 unicodeslot=0x1749, 44013 }, 44014 [0x174A]={ 44015 category="lo", 44016 description="BUHID LETTER BA", 44017 direction="l", 44018 linebreak="al", 44019 unicodeslot=0x174A, 44020 }, 44021 [0x174B]={ 44022 category="lo", 44023 description="BUHID LETTER MA", 44024 direction="l", 44025 linebreak="al", 44026 unicodeslot=0x174B, 44027 }, 44028 [0x174C]={ 44029 category="lo", 44030 description="BUHID LETTER YA", 44031 direction="l", 44032 linebreak="al", 44033 unicodeslot=0x174C, 44034 }, 44035 [0x174D]={ 44036 category="lo", 44037 description="BUHID LETTER RA", 44038 direction="l", 44039 linebreak="al", 44040 unicodeslot=0x174D, 44041 }, 44042 [0x174E]={ 44043 category="lo", 44044 description="BUHID LETTER LA", 44045 direction="l", 44046 linebreak="al", 44047 unicodeslot=0x174E, 44048 }, 44049 [0x174F]={ 44050 category="lo", 44051 description="BUHID LETTER WA", 44052 direction="l", 44053 linebreak="al", 44054 unicodeslot=0x174F, 44055 }, 44056 [0x1750]={ 44057 category="lo", 44058 description="BUHID LETTER SA", 44059 direction="l", 44060 linebreak="al", 44061 unicodeslot=0x1750, 44062 }, 44063 [0x1751]={ 44064 category="lo", 44065 description="BUHID LETTER HA", 44066 direction="l", 44067 linebreak="al", 44068 unicodeslot=0x1751, 44069 }, 44070 [0x1752]={ 44071 category="mn", 44072 description="BUHID VOWEL SIGN I", 44073 direction="nsm", 44074 linebreak="cm", 44075 unicodeslot=0x1752, 44076 }, 44077 [0x1753]={ 44078 category="mn", 44079 description="BUHID VOWEL SIGN U", 44080 direction="nsm", 44081 linebreak="cm", 44082 unicodeslot=0x1753, 44083 }, 44084 [0x1760]={ 44085 category="lo", 44086 description="TAGBANWA LETTER A", 44087 direction="l", 44088 linebreak="al", 44089 unicodeslot=0x1760, 44090 }, 44091 [0x1761]={ 44092 category="lo", 44093 description="TAGBANWA LETTER I", 44094 direction="l", 44095 linebreak="al", 44096 unicodeslot=0x1761, 44097 }, 44098 [0x1762]={ 44099 category="lo", 44100 description="TAGBANWA LETTER U", 44101 direction="l", 44102 linebreak="al", 44103 unicodeslot=0x1762, 44104 }, 44105 [0x1763]={ 44106 category="lo", 44107 description="TAGBANWA LETTER KA", 44108 direction="l", 44109 linebreak="al", 44110 unicodeslot=0x1763, 44111 }, 44112 [0x1764]={ 44113 category="lo", 44114 description="TAGBANWA LETTER GA", 44115 direction="l", 44116 linebreak="al", 44117 unicodeslot=0x1764, 44118 }, 44119 [0x1765]={ 44120 category="lo", 44121 description="TAGBANWA LETTER NGA", 44122 direction="l", 44123 linebreak="al", 44124 unicodeslot=0x1765, 44125 }, 44126 [0x1766]={ 44127 category="lo", 44128 description="TAGBANWA LETTER TA", 44129 direction="l", 44130 linebreak="al", 44131 unicodeslot=0x1766, 44132 }, 44133 [0x1767]={ 44134 category="lo", 44135 description="TAGBANWA LETTER DA", 44136 direction="l", 44137 linebreak="al", 44138 unicodeslot=0x1767, 44139 }, 44140 [0x1768]={ 44141 category="lo", 44142 description="TAGBANWA LETTER NA", 44143 direction="l", 44144 linebreak="al", 44145 unicodeslot=0x1768, 44146 }, 44147 [0x1769]={ 44148 category="lo", 44149 description="TAGBANWA LETTER PA", 44150 direction="l", 44151 linebreak="al", 44152 unicodeslot=0x1769, 44153 }, 44154 [0x176A]={ 44155 category="lo", 44156 description="TAGBANWA LETTER BA", 44157 direction="l", 44158 linebreak="al", 44159 unicodeslot=0x176A, 44160 }, 44161 [0x176B]={ 44162 category="lo", 44163 description="TAGBANWA LETTER MA", 44164 direction="l", 44165 linebreak="al", 44166 unicodeslot=0x176B, 44167 }, 44168 [0x176C]={ 44169 category="lo", 44170 description="TAGBANWA LETTER YA", 44171 direction="l", 44172 linebreak="al", 44173 unicodeslot=0x176C, 44174 }, 44175 [0x176E]={ 44176 category="lo", 44177 description="TAGBANWA LETTER LA", 44178 direction="l", 44179 linebreak="al", 44180 unicodeslot=0x176E, 44181 }, 44182 [0x176F]={ 44183 category="lo", 44184 description="TAGBANWA LETTER WA", 44185 direction="l", 44186 linebreak="al", 44187 unicodeslot=0x176F, 44188 }, 44189 [0x1770]={ 44190 category="lo", 44191 description="TAGBANWA LETTER SA", 44192 direction="l", 44193 linebreak="al", 44194 unicodeslot=0x1770, 44195 }, 44196 [0x1772]={ 44197 category="mn", 44198 description="TAGBANWA VOWEL SIGN I", 44199 direction="nsm", 44200 linebreak="cm", 44201 unicodeslot=0x1772, 44202 }, 44203 [0x1773]={ 44204 category="mn", 44205 description="TAGBANWA VOWEL SIGN U", 44206 direction="nsm", 44207 linebreak="cm", 44208 unicodeslot=0x1773, 44209 }, 44210 [0x1780]={ 44211 category="lo", 44212 description="KHMER LETTER KA", 44213 direction="l", 44214 linebreak="sa", 44215 unicodeslot=0x1780, 44216 }, 44217 [0x1781]={ 44218 category="lo", 44219 description="KHMER LETTER KHA", 44220 direction="l", 44221 linebreak="sa", 44222 unicodeslot=0x1781, 44223 }, 44224 [0x1782]={ 44225 category="lo", 44226 description="KHMER LETTER KO", 44227 direction="l", 44228 linebreak="sa", 44229 unicodeslot=0x1782, 44230 }, 44231 [0x1783]={ 44232 category="lo", 44233 description="KHMER LETTER KHO", 44234 direction="l", 44235 linebreak="sa", 44236 unicodeslot=0x1783, 44237 }, 44238 [0x1784]={ 44239 category="lo", 44240 description="KHMER LETTER NGO", 44241 direction="l", 44242 linebreak="sa", 44243 unicodeslot=0x1784, 44244 }, 44245 [0x1785]={ 44246 category="lo", 44247 description="KHMER LETTER CA", 44248 direction="l", 44249 linebreak="sa", 44250 unicodeslot=0x1785, 44251 }, 44252 [0x1786]={ 44253 category="lo", 44254 description="KHMER LETTER CHA", 44255 direction="l", 44256 linebreak="sa", 44257 unicodeslot=0x1786, 44258 }, 44259 [0x1787]={ 44260 category="lo", 44261 description="KHMER LETTER CO", 44262 direction="l", 44263 linebreak="sa", 44264 unicodeslot=0x1787, 44265 }, 44266 [0x1788]={ 44267 category="lo", 44268 description="KHMER LETTER CHO", 44269 direction="l", 44270 linebreak="sa", 44271 unicodeslot=0x1788, 44272 }, 44273 [0x1789]={ 44274 category="lo", 44275 description="KHMER LETTER NYO", 44276 direction="l", 44277 linebreak="sa", 44278 unicodeslot=0x1789, 44279 }, 44280 [0x178A]={ 44281 category="lo", 44282 description="KHMER LETTER DA", 44283 direction="l", 44284 linebreak="sa", 44285 unicodeslot=0x178A, 44286 }, 44287 [0x178B]={ 44288 category="lo", 44289 description="KHMER LETTER TTHA", 44290 direction="l", 44291 linebreak="sa", 44292 unicodeslot=0x178B, 44293 }, 44294 [0x178C]={ 44295 category="lo", 44296 description="KHMER LETTER DO", 44297 direction="l", 44298 linebreak="sa", 44299 unicodeslot=0x178C, 44300 }, 44301 [0x178D]={ 44302 category="lo", 44303 description="KHMER LETTER TTHO", 44304 direction="l", 44305 linebreak="sa", 44306 unicodeslot=0x178D, 44307 }, 44308 [0x178E]={ 44309 category="lo", 44310 description="KHMER LETTER NNO", 44311 direction="l", 44312 linebreak="sa", 44313 unicodeslot=0x178E, 44314 }, 44315 [0x178F]={ 44316 category="lo", 44317 description="KHMER LETTER TA", 44318 direction="l", 44319 linebreak="sa", 44320 unicodeslot=0x178F, 44321 }, 44322 [0x1790]={ 44323 category="lo", 44324 description="KHMER LETTER THA", 44325 direction="l", 44326 linebreak="sa", 44327 unicodeslot=0x1790, 44328 }, 44329 [0x1791]={ 44330 category="lo", 44331 description="KHMER LETTER TO", 44332 direction="l", 44333 linebreak="sa", 44334 unicodeslot=0x1791, 44335 }, 44336 [0x1792]={ 44337 category="lo", 44338 description="KHMER LETTER THO", 44339 direction="l", 44340 linebreak="sa", 44341 unicodeslot=0x1792, 44342 }, 44343 [0x1793]={ 44344 category="lo", 44345 description="KHMER LETTER NO", 44346 direction="l", 44347 linebreak="sa", 44348 unicodeslot=0x1793, 44349 }, 44350 [0x1794]={ 44351 category="lo", 44352 description="KHMER LETTER BA", 44353 direction="l", 44354 linebreak="sa", 44355 unicodeslot=0x1794, 44356 }, 44357 [0x1795]={ 44358 category="lo", 44359 description="KHMER LETTER PHA", 44360 direction="l", 44361 linebreak="sa", 44362 unicodeslot=0x1795, 44363 }, 44364 [0x1796]={ 44365 category="lo", 44366 description="KHMER LETTER PO", 44367 direction="l", 44368 linebreak="sa", 44369 unicodeslot=0x1796, 44370 }, 44371 [0x1797]={ 44372 category="lo", 44373 description="KHMER LETTER PHO", 44374 direction="l", 44375 linebreak="sa", 44376 unicodeslot=0x1797, 44377 }, 44378 [0x1798]={ 44379 category="lo", 44380 description="KHMER LETTER MO", 44381 direction="l", 44382 linebreak="sa", 44383 unicodeslot=0x1798, 44384 }, 44385 [0x1799]={ 44386 category="lo", 44387 description="KHMER LETTER YO", 44388 direction="l", 44389 linebreak="sa", 44390 unicodeslot=0x1799, 44391 }, 44392 [0x179A]={ 44393 category="lo", 44394 description="KHMER LETTER RO", 44395 direction="l", 44396 linebreak="sa", 44397 unicodeslot=0x179A, 44398 }, 44399 [0x179B]={ 44400 category="lo", 44401 description="KHMER LETTER LO", 44402 direction="l", 44403 linebreak="sa", 44404 unicodeslot=0x179B, 44405 }, 44406 [0x179C]={ 44407 category="lo", 44408 description="KHMER LETTER VO", 44409 direction="l", 44410 linebreak="sa", 44411 unicodeslot=0x179C, 44412 }, 44413 [0x179D]={ 44414 category="lo", 44415 description="KHMER LETTER SHA", 44416 direction="l", 44417 linebreak="sa", 44418 unicodeslot=0x179D, 44419 }, 44420 [0x179E]={ 44421 category="lo", 44422 description="KHMER LETTER SSO", 44423 direction="l", 44424 linebreak="sa", 44425 unicodeslot=0x179E, 44426 }, 44427 [0x179F]={ 44428 category="lo", 44429 description="KHMER LETTER SA", 44430 direction="l", 44431 linebreak="sa", 44432 unicodeslot=0x179F, 44433 }, 44434 [0x17A0]={ 44435 category="lo", 44436 description="KHMER LETTER HA", 44437 direction="l", 44438 linebreak="sa", 44439 unicodeslot=0x17A0, 44440 }, 44441 [0x17A1]={ 44442 category="lo", 44443 description="KHMER LETTER LA", 44444 direction="l", 44445 linebreak="sa", 44446 unicodeslot=0x17A1, 44447 }, 44448 [0x17A2]={ 44449 category="lo", 44450 description="KHMER LETTER QA", 44451 direction="l", 44452 linebreak="sa", 44453 unicodeslot=0x17A2, 44454 }, 44455 [0x17A3]={ 44456 category="lo", 44457 description="KHMER INDEPENDENT VOWEL QAQ", 44458 direction="l", 44459 linebreak="sa", 44460 unicodeslot=0x17A3, 44461 }, 44462 [0x17A4]={ 44463 category="lo", 44464 description="KHMER INDEPENDENT VOWEL QAA", 44465 direction="l", 44466 linebreak="sa", 44467 unicodeslot=0x17A4, 44468 }, 44469 [0x17A5]={ 44470 category="lo", 44471 description="KHMER INDEPENDENT VOWEL QI", 44472 direction="l", 44473 linebreak="sa", 44474 unicodeslot=0x17A5, 44475 }, 44476 [0x17A6]={ 44477 category="lo", 44478 description="KHMER INDEPENDENT VOWEL QII", 44479 direction="l", 44480 linebreak="sa", 44481 unicodeslot=0x17A6, 44482 }, 44483 [0x17A7]={ 44484 category="lo", 44485 description="KHMER INDEPENDENT VOWEL QU", 44486 direction="l", 44487 linebreak="sa", 44488 unicodeslot=0x17A7, 44489 }, 44490 [0x17A8]={ 44491 category="lo", 44492 description="KHMER INDEPENDENT VOWEL QUK", 44493 direction="l", 44494 linebreak="sa", 44495 unicodeslot=0x17A8, 44496 }, 44497 [0x17A9]={ 44498 category="lo", 44499 description="KHMER INDEPENDENT VOWEL QUU", 44500 direction="l", 44501 linebreak="sa", 44502 unicodeslot=0x17A9, 44503 }, 44504 [0x17AA]={ 44505 category="lo", 44506 description="KHMER INDEPENDENT VOWEL QUUV", 44507 direction="l", 44508 linebreak="sa", 44509 unicodeslot=0x17AA, 44510 }, 44511 [0x17AB]={ 44512 category="lo", 44513 description="KHMER INDEPENDENT VOWEL RY", 44514 direction="l", 44515 linebreak="sa", 44516 unicodeslot=0x17AB, 44517 }, 44518 [0x17AC]={ 44519 category="lo", 44520 description="KHMER INDEPENDENT VOWEL RYY", 44521 direction="l", 44522 linebreak="sa", 44523 unicodeslot=0x17AC, 44524 }, 44525 [0x17AD]={ 44526 category="lo", 44527 description="KHMER INDEPENDENT VOWEL LY", 44528 direction="l", 44529 linebreak="sa", 44530 unicodeslot=0x17AD, 44531 }, 44532 [0x17AE]={ 44533 category="lo", 44534 description="KHMER INDEPENDENT VOWEL LYY", 44535 direction="l", 44536 linebreak="sa", 44537 unicodeslot=0x17AE, 44538 }, 44539 [0x17AF]={ 44540 category="lo", 44541 description="KHMER INDEPENDENT VOWEL QE", 44542 direction="l", 44543 linebreak="sa", 44544 unicodeslot=0x17AF, 44545 }, 44546 [0x17B0]={ 44547 category="lo", 44548 description="KHMER INDEPENDENT VOWEL QAI", 44549 direction="l", 44550 linebreak="sa", 44551 unicodeslot=0x17B0, 44552 }, 44553 [0x17B1]={ 44554 category="lo", 44555 description="KHMER INDEPENDENT VOWEL QOO TYPE ONE", 44556 direction="l", 44557 linebreak="sa", 44558 unicodeslot=0x17B1, 44559 }, 44560 [0x17B2]={ 44561 category="lo", 44562 description="KHMER INDEPENDENT VOWEL QOO TYPE TWO", 44563 direction="l", 44564 linebreak="sa", 44565 unicodeslot=0x17B2, 44566 }, 44567 [0x17B3]={ 44568 category="lo", 44569 description="KHMER INDEPENDENT VOWEL QAU", 44570 direction="l", 44571 linebreak="sa", 44572 unicodeslot=0x17B3, 44573 }, 44574 [0x17B4]={ 44575 category="cf", 44576 description="KHMER VOWEL INHERENT AQ", 44577 direction="nsm", 44578 linebreak="sa", 44579 unicodeslot=0x17B4, 44580 }, 44581 [0x17B5]={ 44582 category="cf", 44583 description="KHMER VOWEL INHERENT AA", 44584 direction="nsm", 44585 linebreak="sa", 44586 unicodeslot=0x17B5, 44587 }, 44588 [0x17B6]={ 44589 category="mc", 44590 description="KHMER VOWEL SIGN AA", 44591 direction="l", 44592 linebreak="sa", 44593 unicodeslot=0x17B6, 44594 }, 44595 [0x17B7]={ 44596 category="mn", 44597 description="KHMER VOWEL SIGN I", 44598 direction="nsm", 44599 linebreak="sa", 44600 unicodeslot=0x17B7, 44601 }, 44602 [0x17B8]={ 44603 category="mn", 44604 description="KHMER VOWEL SIGN II", 44605 direction="nsm", 44606 linebreak="sa", 44607 unicodeslot=0x17B8, 44608 }, 44609 [0x17B9]={ 44610 category="mn", 44611 description="KHMER VOWEL SIGN Y", 44612 direction="nsm", 44613 linebreak="sa", 44614 unicodeslot=0x17B9, 44615 }, 44616 [0x17BA]={ 44617 category="mn", 44618 description="KHMER VOWEL SIGN YY", 44619 direction="nsm", 44620 linebreak="sa", 44621 unicodeslot=0x17BA, 44622 }, 44623 [0x17BB]={ 44624 category="mn", 44625 description="KHMER VOWEL SIGN U", 44626 direction="nsm", 44627 linebreak="sa", 44628 unicodeslot=0x17BB, 44629 }, 44630 [0x17BC]={ 44631 category="mn", 44632 description="KHMER VOWEL SIGN UU", 44633 direction="nsm", 44634 linebreak="sa", 44635 unicodeslot=0x17BC, 44636 }, 44637 [0x17BD]={ 44638 category="mn", 44639 description="KHMER VOWEL SIGN UA", 44640 direction="nsm", 44641 linebreak="sa", 44642 unicodeslot=0x17BD, 44643 }, 44644 [0x17BE]={ 44645 category="mc", 44646 description="KHMER VOWEL SIGN OE", 44647 direction="l", 44648 linebreak="sa", 44649 unicodeslot=0x17BE, 44650 }, 44651 [0x17BF]={ 44652 category="mc", 44653 description="KHMER VOWEL SIGN YA", 44654 direction="l", 44655 linebreak="sa", 44656 unicodeslot=0x17BF, 44657 }, 44658 [0x17C0]={ 44659 category="mc", 44660 description="KHMER VOWEL SIGN IE", 44661 direction="l", 44662 linebreak="sa", 44663 unicodeslot=0x17C0, 44664 }, 44665 [0x17C1]={ 44666 category="mc", 44667 description="KHMER VOWEL SIGN E", 44668 direction="l", 44669 linebreak="sa", 44670 unicodeslot=0x17C1, 44671 }, 44672 [0x17C2]={ 44673 category="mc", 44674 description="KHMER VOWEL SIGN AE", 44675 direction="l", 44676 linebreak="sa", 44677 unicodeslot=0x17C2, 44678 }, 44679 [0x17C3]={ 44680 category="mc", 44681 description="KHMER VOWEL SIGN AI", 44682 direction="l", 44683 linebreak="sa", 44684 unicodeslot=0x17C3, 44685 }, 44686 [0x17C4]={ 44687 category="mc", 44688 description="KHMER VOWEL SIGN OO", 44689 direction="l", 44690 linebreak="sa", 44691 unicodeslot=0x17C4, 44692 }, 44693 [0x17C5]={ 44694 category="mc", 44695 description="KHMER VOWEL SIGN AU", 44696 direction="l", 44697 linebreak="sa", 44698 unicodeslot=0x17C5, 44699 }, 44700 [0x17C6]={ 44701 category="mn", 44702 description="KHMER SIGN NIKAHIT", 44703 direction="nsm", 44704 linebreak="sa", 44705 synonyms={ "khmer anusvara", "khmer srak am" }, 44706 unicodeslot=0x17C6, 44707 }, 44708 [0x17C7]={ 44709 category="mc", 44710 description="KHMER SIGN REAHMUK", 44711 direction="l", 44712 linebreak="sa", 44713 synonyms={ "khmer srak ah", "khmer visarga" }, 44714 unicodeslot=0x17C7, 44715 }, 44716 [0x17C8]={ 44717 category="mc", 44718 description="KHMER SIGN YUUKALEAPINTU", 44719 direction="l", 44720 linebreak="sa", 44721 unicodeslot=0x17C8, 44722 }, 44723 [0x17C9]={ 44724 category="mn", 44725 description="KHMER SIGN MUUSIKATOAN", 44726 direction="nsm", 44727 linebreak="sa", 44728 unicodeslot=0x17C9, 44729 }, 44730 [0x17CA]={ 44731 category="mn", 44732 description="KHMER SIGN TRIISAP", 44733 direction="nsm", 44734 linebreak="sa", 44735 unicodeslot=0x17CA, 44736 }, 44737 [0x17CB]={ 44738 category="mn", 44739 description="KHMER SIGN BANTOC", 44740 direction="nsm", 44741 linebreak="sa", 44742 unicodeslot=0x17CB, 44743 }, 44744 [0x17CC]={ 44745 category="mn", 44746 description="KHMER SIGN ROBAT", 44747 direction="nsm", 44748 linebreak="sa", 44749 unicodeslot=0x17CC, 44750 }, 44751 [0x17CD]={ 44752 category="mn", 44753 description="KHMER SIGN TOANDAKHIAT", 44754 direction="nsm", 44755 linebreak="sa", 44756 unicodeslot=0x17CD, 44757 }, 44758 [0x17CE]={ 44759 category="mn", 44760 description="KHMER SIGN KAKABAT", 44761 direction="nsm", 44762 linebreak="sa", 44763 unicodeslot=0x17CE, 44764 }, 44765 [0x17CF]={ 44766 category="mn", 44767 description="KHMER SIGN AHSDA", 44768 direction="nsm", 44769 linebreak="sa", 44770 unicodeslot=0x17CF, 44771 }, 44772 [0x17D0]={ 44773 category="mn", 44774 description="KHMER SIGN SAMYOK SANNYA", 44775 direction="nsm", 44776 linebreak="sa", 44777 unicodeslot=0x17D0, 44778 }, 44779 [0x17D1]={ 44780 category="mn", 44781 description="KHMER SIGN VIRIAM", 44782 direction="nsm", 44783 linebreak="sa", 44784 unicodeslot=0x17D1, 44785 }, 44786 [0x17D2]={ 44787 category="mn", 44788 combining=0x9, 44789 description="KHMER SIGN COENG", 44790 direction="nsm", 44791 linebreak="sa", 44792 unicodeslot=0x17D2, 44793 }, 44794 [0x17D3]={ 44795 category="mn", 44796 description="KHMER SIGN BATHAMASAT", 44797 direction="nsm", 44798 linebreak="sa", 44799 unicodeslot=0x17D3, 44800 }, 44801 [0x17D4]={ 44802 category="po", 44803 description="KHMER SIGN KHAN", 44804 direction="l", 44805 linebreak="ba", 44806 unicodeslot=0x17D4, 44807 }, 44808 [0x17D5]={ 44809 category="po", 44810 description="KHMER SIGN BARIYOOSAN", 44811 direction="l", 44812 linebreak="ba", 44813 unicodeslot=0x17D5, 44814 }, 44815 [0x17D6]={ 44816 category="po", 44817 description="KHMER SIGN CAMNUC PII KUUH", 44818 direction="l", 44819 linebreak="ns", 44820 unicodeslot=0x17D6, 44821 }, 44822 [0x17D7]={ 44823 category="lm", 44824 description="KHMER SIGN LEK TOO", 44825 direction="l", 44826 linebreak="sa", 44827 unicodeslot=0x17D7, 44828 }, 44829 [0x17D8]={ 44830 category="po", 44831 description="KHMER SIGN BEYYAL", 44832 direction="l", 44833 linebreak="ba", 44834 unicodeslot=0x17D8, 44835 }, 44836 [0x17D9]={ 44837 category="po", 44838 description="KHMER SIGN PHNAEK MUAN", 44839 direction="l", 44840 linebreak="al", 44841 unicodeslot=0x17D9, 44842 }, 44843 [0x17DA]={ 44844 category="po", 44845 description="KHMER SIGN KOOMUUT", 44846 direction="l", 44847 linebreak="ba", 44848 unicodeslot=0x17DA, 44849 }, 44850 [0x17DB]={ 44851 category="sc", 44852 description="KHMER CURRENCY SYMBOL RIEL", 44853 direction="et", 44854 linebreak="pr", 44855 unicodeslot=0x17DB, 44856 }, 44857 [0x17DC]={ 44858 category="lo", 44859 description="KHMER SIGN AVAKRAHASANYA", 44860 direction="l", 44861 linebreak="sa", 44862 unicodeslot=0x17DC, 44863 }, 44864 [0x17DD]={ 44865 category="mn", 44866 combining=0xE6, 44867 description="KHMER SIGN ATTHACAN", 44868 direction="nsm", 44869 linebreak="sa", 44870 unicodeslot=0x17DD, 44871 }, 44872 [0x17E0]={ 44873 category="nd", 44874 description="KHMER DIGIT ZERO", 44875 direction="l", 44876 linebreak="nu", 44877 unicodeslot=0x17E0, 44878 }, 44879 [0x17E1]={ 44880 category="nd", 44881 description="KHMER DIGIT ONE", 44882 direction="l", 44883 linebreak="nu", 44884 unicodeslot=0x17E1, 44885 }, 44886 [0x17E2]={ 44887 category="nd", 44888 description="KHMER DIGIT TWO", 44889 direction="l", 44890 linebreak="nu", 44891 unicodeslot=0x17E2, 44892 }, 44893 [0x17E3]={ 44894 category="nd", 44895 description="KHMER DIGIT THREE", 44896 direction="l", 44897 linebreak="nu", 44898 unicodeslot=0x17E3, 44899 }, 44900 [0x17E4]={ 44901 category="nd", 44902 description="KHMER DIGIT FOUR", 44903 direction="l", 44904 linebreak="nu", 44905 unicodeslot=0x17E4, 44906 }, 44907 [0x17E5]={ 44908 category="nd", 44909 description="KHMER DIGIT FIVE", 44910 direction="l", 44911 linebreak="nu", 44912 unicodeslot=0x17E5, 44913 }, 44914 [0x17E6]={ 44915 category="nd", 44916 description="KHMER DIGIT SIX", 44917 direction="l", 44918 linebreak="nu", 44919 unicodeslot=0x17E6, 44920 }, 44921 [0x17E7]={ 44922 category="nd", 44923 description="KHMER DIGIT SEVEN", 44924 direction="l", 44925 linebreak="nu", 44926 unicodeslot=0x17E7, 44927 }, 44928 [0x17E8]={ 44929 category="nd", 44930 description="KHMER DIGIT EIGHT", 44931 direction="l", 44932 linebreak="nu", 44933 unicodeslot=0x17E8, 44934 }, 44935 [0x17E9]={ 44936 category="nd", 44937 description="KHMER DIGIT NINE", 44938 direction="l", 44939 linebreak="nu", 44940 unicodeslot=0x17E9, 44941 }, 44942 [0x17F0]={ 44943 category="no", 44944 description="KHMER SYMBOL LEK ATTAK SON", 44945 direction="on", 44946 linebreak="al", 44947 unicodeslot=0x17F0, 44948 }, 44949 [0x17F1]={ 44950 category="no", 44951 description="KHMER SYMBOL LEK ATTAK MUOY", 44952 direction="on", 44953 linebreak="al", 44954 unicodeslot=0x17F1, 44955 }, 44956 [0x17F2]={ 44957 category="no", 44958 description="KHMER SYMBOL LEK ATTAK PII", 44959 direction="on", 44960 linebreak="al", 44961 unicodeslot=0x17F2, 44962 }, 44963 [0x17F3]={ 44964 category="no", 44965 description="KHMER SYMBOL LEK ATTAK BEI", 44966 direction="on", 44967 linebreak="al", 44968 unicodeslot=0x17F3, 44969 }, 44970 [0x17F4]={ 44971 category="no", 44972 description="KHMER SYMBOL LEK ATTAK BUON", 44973 direction="on", 44974 linebreak="al", 44975 unicodeslot=0x17F4, 44976 }, 44977 [0x17F5]={ 44978 category="no", 44979 description="KHMER SYMBOL LEK ATTAK PRAM", 44980 direction="on", 44981 linebreak="al", 44982 unicodeslot=0x17F5, 44983 }, 44984 [0x17F6]={ 44985 category="no", 44986 description="KHMER SYMBOL LEK ATTAK PRAM-MUOY", 44987 direction="on", 44988 linebreak="al", 44989 unicodeslot=0x17F6, 44990 }, 44991 [0x17F7]={ 44992 category="no", 44993 description="KHMER SYMBOL LEK ATTAK PRAM-PII", 44994 direction="on", 44995 linebreak="al", 44996 unicodeslot=0x17F7, 44997 }, 44998 [0x17F8]={ 44999 category="no", 45000 description="KHMER SYMBOL LEK ATTAK PRAM-BEI", 45001 direction="on", 45002 linebreak="al", 45003 unicodeslot=0x17F8, 45004 }, 45005 [0x17F9]={ 45006 category="no", 45007 description="KHMER SYMBOL LEK ATTAK PRAM-BUON", 45008 direction="on", 45009 linebreak="al", 45010 unicodeslot=0x17F9, 45011 }, 45012 [0x1800]={ 45013 category="po", 45014 description="MONGOLIAN BIRGA", 45015 direction="on", 45016 linebreak="al", 45017 mongolian="nj", 45018 unicodeslot=0x1800, 45019 }, 45020 [0x1801]={ 45021 category="po", 45022 description="MONGOLIAN ELLIPSIS", 45023 direction="on", 45024 linebreak="al", 45025 mongolian="nj", 45026 unicodeslot=0x1801, 45027 }, 45028 [0x1802]={ 45029 category="po", 45030 description="MONGOLIAN COMMA", 45031 direction="on", 45032 linebreak="ex", 45033 mongolian="nj", 45034 unicodeslot=0x1802, 45035 }, 45036 [0x1803]={ 45037 category="po", 45038 description="MONGOLIAN FULL STOP", 45039 direction="on", 45040 linebreak="ex", 45041 mongolian="nj", 45042 unicodeslot=0x1803, 45043 }, 45044 [0x1804]={ 45045 category="po", 45046 description="MONGOLIAN COLON", 45047 direction="on", 45048 linebreak="ba", 45049 mongolian="nj", 45050 unicodeslot=0x1804, 45051 }, 45052 [0x1805]={ 45053 category="po", 45054 description="MONGOLIAN FOUR DOTS", 45055 direction="on", 45056 linebreak="ba", 45057 mongolian="nj", 45058 unicodeslot=0x1805, 45059 }, 45060 [0x1806]={ 45061 arabic="u", 45062 category="pd", 45063 description="MONGOLIAN TODO SOFT HYPHEN", 45064 direction="on", 45065 linebreak="bb", 45066 mongolian="nj", 45067 unicodeslot=0x1806, 45068 }, 45069 [0x1807]={ 45070 arabic="d", 45071 category="po", 45072 description="MONGOLIAN SIBE SYLLABLE BOUNDARY MARKER", 45073 direction="on", 45074 linebreak="al", 45075 mongolian="d", 45076 unicodeslot=0x1807, 45077 }, 45078 [0x1808]={ 45079 category="po", 45080 description="MONGOLIAN MANCHU COMMA", 45081 direction="on", 45082 linebreak="ex", 45083 mongolian="nj", 45084 unicodeslot=0x1808, 45085 }, 45086 [0x1809]={ 45087 category="po", 45088 description="MONGOLIAN MANCHU FULL STOP", 45089 direction="on", 45090 linebreak="ex", 45091 mongolian="nj", 45092 unicodeslot=0x1809, 45093 }, 45094 [0x180A]={ 45095 arabic="c", 45096 category="po", 45097 description="MONGOLIAN NIRUGU", 45098 direction="on", 45099 linebreak="al", 45100 mongolian="jc", 45101 unicodeslot=0x180A, 45102 }, 45103 [0x180B]={ 45104 category="mn", 45105 description="MONGOLIAN FREE VARIATION SELECTOR ONE", 45106 direction="nsm", 45107 linebreak="cm", 45108 mongolian="t", 45109 synonyms={ "fvs1" }, 45110 unicodeslot=0x180B, 45111 }, 45112 [0x180C]={ 45113 category="mn", 45114 description="MONGOLIAN FREE VARIATION SELECTOR TWO", 45115 direction="nsm", 45116 linebreak="cm", 45117 mongolian="t", 45118 unicodeslot=0x180C, 45119 }, 45120 [0x180D]={ 45121 category="mn", 45122 description="MONGOLIAN FREE VARIATION SELECTOR THREE", 45123 direction="nsm", 45124 linebreak="cm", 45125 mongolian="t", 45126 unicodeslot=0x180D, 45127 }, 45128 [0x180E]={ 45129 arabic="u", 45130 category="zs", 45131 description="MONGOLIAN VOWEL SEPARATOR", 45132 direction="bn", 45133 linebreak="gl", 45134 mongolian="nj", 45135 unicodeslot=0x180E, 45136 }, 45137 [0x180F]={ 45138 category="mn", 45139 description="MONGOLIAN FREE VARIATION SELECTOR FOUR", 45140 direction="nsm", 45141 linebreak="cm", 45142 unicodeslot=0x180F, 45143 }, 45144 [0x1810]={ 45145 category="nd", 45146 description="MONGOLIAN DIGIT ZERO", 45147 direction="l", 45148 linebreak="nu", 45149 mongolian="nj", 45150 unicodeslot=0x1810, 45151 }, 45152 [0x1811]={ 45153 category="nd", 45154 description="MONGOLIAN DIGIT ONE", 45155 direction="l", 45156 linebreak="nu", 45157 mongolian="nj", 45158 unicodeslot=0x1811, 45159 }, 45160 [0x1812]={ 45161 category="nd", 45162 description="MONGOLIAN DIGIT TWO", 45163 direction="l", 45164 linebreak="nu", 45165 mongolian="nj", 45166 unicodeslot=0x1812, 45167 }, 45168 [0x1813]={ 45169 category="nd", 45170 description="MONGOLIAN DIGIT THREE", 45171 direction="l", 45172 linebreak="nu", 45173 mongolian="nj", 45174 unicodeslot=0x1813, 45175 }, 45176 [0x1814]={ 45177 category="nd", 45178 description="MONGOLIAN DIGIT FOUR", 45179 direction="l", 45180 linebreak="nu", 45181 mongolian="nj", 45182 unicodeslot=0x1814, 45183 }, 45184 [0x1815]={ 45185 category="nd", 45186 description="MONGOLIAN DIGIT FIVE", 45187 direction="l", 45188 linebreak="nu", 45189 mongolian="nj", 45190 unicodeslot=0x1815, 45191 }, 45192 [0x1816]={ 45193 category="nd", 45194 description="MONGOLIAN DIGIT SIX", 45195 direction="l", 45196 linebreak="nu", 45197 mongolian="nj", 45198 unicodeslot=0x1816, 45199 }, 45200 [0x1817]={ 45201 category="nd", 45202 description="MONGOLIAN DIGIT SEVEN", 45203 direction="l", 45204 linebreak="nu", 45205 mongolian="nj", 45206 unicodeslot=0x1817, 45207 }, 45208 [0x1818]={ 45209 category="nd", 45210 description="MONGOLIAN DIGIT EIGHT", 45211 direction="l", 45212 linebreak="nu", 45213 mongolian="nj", 45214 unicodeslot=0x1818, 45215 }, 45216 [0x1819]={ 45217 category="nd", 45218 description="MONGOLIAN DIGIT NINE", 45219 direction="l", 45220 linebreak="nu", 45221 mongolian="nj", 45222 unicodeslot=0x1819, 45223 }, 45224 [0x1820]={ 45225 arabic="d", 45226 category="lo", 45227 description="MONGOLIAN LETTER A", 45228 direction="l", 45229 linebreak="al", 45230 mongolian="d", 45231 unicodeslot=0x1820, 45232 variants={ 45233 [0x180B]="second form", 45234 [0x180C]="third form", 45235 }, 45236 }, 45237 [0x1821]={ 45238 arabic="d", 45239 category="lo", 45240 description="MONGOLIAN LETTER E", 45241 direction="l", 45242 linebreak="al", 45243 mongolian="d", 45244 unicodeslot=0x1821, 45245 variants={ 45246 [0x180B]="second form", 45247 }, 45248 }, 45249 [0x1822]={ 45250 arabic="d", 45251 category="lo", 45252 description="MONGOLIAN LETTER I", 45253 direction="l", 45254 linebreak="al", 45255 mongolian="d", 45256 unicodeslot=0x1822, 45257 variants={ 45258 [0x180B]="second form", 45259 }, 45260 }, 45261 [0x1823]={ 45262 arabic="d", 45263 category="lo", 45264 description="MONGOLIAN LETTER O", 45265 direction="l", 45266 linebreak="al", 45267 mongolian="d", 45268 unicodeslot=0x1823, 45269 variants={ 45270 [0x180B]="second form", 45271 }, 45272 }, 45273 [0x1824]={ 45274 arabic="d", 45275 category="lo", 45276 description="MONGOLIAN LETTER U", 45277 direction="l", 45278 linebreak="al", 45279 mongolian="d", 45280 unicodeslot=0x1824, 45281 variants={ 45282 [0x180B]="second form", 45283 }, 45284 }, 45285 [0x1825]={ 45286 arabic="d", 45287 category="lo", 45288 description="MONGOLIAN LETTER OE", 45289 direction="l", 45290 linebreak="al", 45291 mongolian="d", 45292 unicodeslot=0x1825, 45293 variants={ 45294 [0x180B]="second form", 45295 [0x180C]="third form", 45296 }, 45297 }, 45298 [0x1826]={ 45299 arabic="d", 45300 category="lo", 45301 description="MONGOLIAN LETTER UE", 45302 direction="l", 45303 linebreak="al", 45304 mongolian="d", 45305 unicodeslot=0x1826, 45306 variants={ 45307 [0x180B]="second form", 45308 [0x180C]="third form", 45309 }, 45310 }, 45311 [0x1827]={ 45312 arabic="d", 45313 category="lo", 45314 description="MONGOLIAN LETTER EE", 45315 direction="l", 45316 linebreak="al", 45317 mongolian="d", 45318 unicodeslot=0x1827, 45319 }, 45320 [0x1828]={ 45321 arabic="d", 45322 category="lo", 45323 description="MONGOLIAN LETTER NA", 45324 direction="l", 45325 linebreak="al", 45326 mongolian="d", 45327 unicodeslot=0x1828, 45328 variants={ 45329 [0x180B]="second form", 45330 [0x180C]="third form", 45331 [0x180D]="separate form", 45332 }, 45333 }, 45334 [0x1829]={ 45335 arabic="d", 45336 category="lo", 45337 description="MONGOLIAN LETTER ANG", 45338 direction="l", 45339 linebreak="al", 45340 mongolian="d", 45341 unicodeslot=0x1829, 45342 }, 45343 [0x182A]={ 45344 arabic="d", 45345 category="lo", 45346 description="MONGOLIAN LETTER BA", 45347 direction="l", 45348 linebreak="al", 45349 mongolian="d", 45350 unicodeslot=0x182A, 45351 variants={ 45352 [0x180B]="alternative form", 45353 }, 45354 }, 45355 [0x182B]={ 45356 arabic="d", 45357 category="lo", 45358 description="MONGOLIAN LETTER PA", 45359 direction="l", 45360 linebreak="al", 45361 mongolian="d", 45362 unicodeslot=0x182B, 45363 }, 45364 [0x182C]={ 45365 arabic="d", 45366 category="lo", 45367 description="MONGOLIAN LETTER QA", 45368 direction="l", 45369 linebreak="al", 45370 mongolian="d", 45371 unicodeslot=0x182C, 45372 variants={ 45373 [0x180B]="second form", 45374 [0x180C]="third form", 45375 [0x180D]="fourth form", 45376 }, 45377 }, 45378 [0x182D]={ 45379 arabic="d", 45380 category="lo", 45381 description="MONGOLIAN LETTER GA", 45382 direction="l", 45383 linebreak="al", 45384 mongolian="d", 45385 unicodeslot=0x182D, 45386 variants={ 45387 [0x180B]="second form", 45388 [0x180C]="third form", 45389 [0x180D]="feminine form", 45390 }, 45391 }, 45392 [0x182E]={ 45393 arabic="d", 45394 category="lo", 45395 description="MONGOLIAN LETTER MA", 45396 direction="l", 45397 linebreak="al", 45398 mongolian="d", 45399 unicodeslot=0x182E, 45400 }, 45401 [0x182F]={ 45402 arabic="d", 45403 category="lo", 45404 description="MONGOLIAN LETTER LA", 45405 direction="l", 45406 linebreak="al", 45407 mongolian="d", 45408 unicodeslot=0x182F, 45409 }, 45410 [0x1830]={ 45411 arabic="d", 45412 category="lo", 45413 description="MONGOLIAN LETTER SA", 45414 direction="l", 45415 linebreak="al", 45416 mongolian="d", 45417 unicodeslot=0x1830, 45418 variants={ 45419 [0x180B]="second form", 45420 [0x180C]="third form", 45421 }, 45422 }, 45423 [0x1831]={ 45424 arabic="d", 45425 category="lo", 45426 description="MONGOLIAN LETTER SHA", 45427 direction="l", 45428 linebreak="al", 45429 mongolian="d", 45430 unicodeslot=0x1831, 45431 }, 45432 [0x1832]={ 45433 arabic="d", 45434 category="lo", 45435 description="MONGOLIAN LETTER TA", 45436 direction="l", 45437 linebreak="al", 45438 mongolian="d", 45439 unicodeslot=0x1832, 45440 variants={ 45441 [0x180B]="second form", 45442 }, 45443 }, 45444 [0x1833]={ 45445 arabic="d", 45446 category="lo", 45447 description="MONGOLIAN LETTER DA", 45448 direction="l", 45449 linebreak="al", 45450 mongolian="d", 45451 unicodeslot=0x1833, 45452 variants={ 45453 [0x180B]="second form", 45454 }, 45455 }, 45456 [0x1834]={ 45457 arabic="d", 45458 category="lo", 45459 description="MONGOLIAN LETTER CHA", 45460 direction="l", 45461 linebreak="al", 45462 mongolian="d", 45463 unicodeslot=0x1834, 45464 }, 45465 [0x1835]={ 45466 arabic="d", 45467 category="lo", 45468 description="MONGOLIAN LETTER JA", 45469 direction="l", 45470 linebreak="al", 45471 mongolian="d", 45472 unicodeslot=0x1835, 45473 variants={ 45474 [0x180B]="second form", 45475 }, 45476 }, 45477 [0x1836]={ 45478 arabic="d", 45479 category="lo", 45480 description="MONGOLIAN LETTER YA", 45481 direction="l", 45482 linebreak="al", 45483 mongolian="d", 45484 unicodeslot=0x1836, 45485 variants={ 45486 [0x180B]="second form", 45487 [0x180C]="third form", 45488 }, 45489 }, 45490 [0x1837]={ 45491 arabic="d", 45492 category="lo", 45493 description="MONGOLIAN LETTER RA", 45494 direction="l", 45495 linebreak="al", 45496 mongolian="d", 45497 unicodeslot=0x1837, 45498 }, 45499 [0x1838]={ 45500 arabic="d", 45501 category="lo", 45502 description="MONGOLIAN LETTER WA", 45503 direction="l", 45504 linebreak="al", 45505 mongolian="d", 45506 unicodeslot=0x1838, 45507 variants={ 45508 [0x180B]="second form", 45509 }, 45510 }, 45511 [0x1839]={ 45512 arabic="d", 45513 category="lo", 45514 description="MONGOLIAN LETTER FA", 45515 direction="l", 45516 linebreak="al", 45517 mongolian="d", 45518 unicodeslot=0x1839, 45519 }, 45520 [0x183A]={ 45521 arabic="d", 45522 category="lo", 45523 description="MONGOLIAN LETTER KA", 45524 direction="l", 45525 linebreak="al", 45526 mongolian="d", 45527 unicodeslot=0x183A, 45528 }, 45529 [0x183B]={ 45530 arabic="d", 45531 category="lo", 45532 description="MONGOLIAN LETTER KHA", 45533 direction="l", 45534 linebreak="al", 45535 mongolian="d", 45536 unicodeslot=0x183B, 45537 }, 45538 [0x183C]={ 45539 arabic="d", 45540 category="lo", 45541 description="MONGOLIAN LETTER TSA", 45542 direction="l", 45543 linebreak="al", 45544 mongolian="d", 45545 unicodeslot=0x183C, 45546 }, 45547 [0x183D]={ 45548 arabic="d", 45549 category="lo", 45550 description="MONGOLIAN LETTER ZA", 45551 direction="l", 45552 linebreak="al", 45553 mongolian="d", 45554 unicodeslot=0x183D, 45555 }, 45556 [0x183E]={ 45557 arabic="d", 45558 category="lo", 45559 description="MONGOLIAN LETTER HAA", 45560 direction="l", 45561 linebreak="al", 45562 mongolian="d", 45563 unicodeslot=0x183E, 45564 }, 45565 [0x183F]={ 45566 arabic="d", 45567 category="lo", 45568 description="MONGOLIAN LETTER ZRA", 45569 direction="l", 45570 linebreak="al", 45571 mongolian="d", 45572 unicodeslot=0x183F, 45573 }, 45574 [0x1840]={ 45575 arabic="d", 45576 category="lo", 45577 description="MONGOLIAN LETTER LHA", 45578 direction="l", 45579 linebreak="al", 45580 mongolian="d", 45581 unicodeslot=0x1840, 45582 }, 45583 [0x1841]={ 45584 arabic="d", 45585 category="lo", 45586 description="MONGOLIAN LETTER ZHI", 45587 direction="l", 45588 linebreak="al", 45589 mongolian="d", 45590 unicodeslot=0x1841, 45591 }, 45592 [0x1842]={ 45593 arabic="d", 45594 category="lo", 45595 description="MONGOLIAN LETTER CHI", 45596 direction="l", 45597 linebreak="al", 45598 mongolian="d", 45599 unicodeslot=0x1842, 45600 }, 45601 [0x1843]={ 45602 arabic="d", 45603 category="lm", 45604 description="MONGOLIAN LETTER TODO LONG VOWEL SIGN", 45605 direction="l", 45606 linebreak="al", 45607 mongolian="d", 45608 unicodeslot=0x1843, 45609 }, 45610 [0x1844]={ 45611 arabic="d", 45612 category="lo", 45613 description="MONGOLIAN LETTER TODO E", 45614 direction="l", 45615 linebreak="al", 45616 mongolian="d", 45617 unicodeslot=0x1844, 45618 variants={ 45619 [0x180B]="second form", 45620 }, 45621 }, 45622 [0x1845]={ 45623 arabic="d", 45624 category="lo", 45625 description="MONGOLIAN LETTER TODO I", 45626 direction="l", 45627 linebreak="al", 45628 mongolian="d", 45629 unicodeslot=0x1845, 45630 variants={ 45631 [0x180B]="second form", 45632 }, 45633 }, 45634 [0x1846]={ 45635 arabic="d", 45636 category="lo", 45637 description="MONGOLIAN LETTER TODO O", 45638 direction="l", 45639 linebreak="al", 45640 mongolian="d", 45641 unicodeslot=0x1846, 45642 variants={ 45643 [0x180B]="second form", 45644 }, 45645 }, 45646 [0x1847]={ 45647 arabic="d", 45648 category="lo", 45649 description="MONGOLIAN LETTER TODO U", 45650 direction="l", 45651 linebreak="al", 45652 mongolian="d", 45653 unicodeslot=0x1847, 45654 variants={ 45655 [0x180B]="second form", 45656 [0x180C]="third form", 45657 }, 45658 }, 45659 [0x1848]={ 45660 arabic="d", 45661 category="lo", 45662 description="MONGOLIAN LETTER TODO OE", 45663 direction="l", 45664 linebreak="al", 45665 mongolian="d", 45666 unicodeslot=0x1848, 45667 variants={ 45668 [0x180B]="second form", 45669 }, 45670 }, 45671 [0x1849]={ 45672 arabic="d", 45673 category="lo", 45674 description="MONGOLIAN LETTER TODO UE", 45675 direction="l", 45676 linebreak="al", 45677 mongolian="d", 45678 unicodeslot=0x1849, 45679 variants={ 45680 [0x180B]="second form", 45681 }, 45682 }, 45683 [0x184A]={ 45684 arabic="d", 45685 category="lo", 45686 description="MONGOLIAN LETTER TODO ANG", 45687 direction="l", 45688 linebreak="al", 45689 mongolian="d", 45690 unicodeslot=0x184A, 45691 }, 45692 [0x184B]={ 45693 arabic="d", 45694 category="lo", 45695 description="MONGOLIAN LETTER TODO BA", 45696 direction="l", 45697 linebreak="al", 45698 mongolian="d", 45699 unicodeslot=0x184B, 45700 }, 45701 [0x184C]={ 45702 arabic="d", 45703 category="lo", 45704 description="MONGOLIAN LETTER TODO PA", 45705 direction="l", 45706 linebreak="al", 45707 mongolian="d", 45708 unicodeslot=0x184C, 45709 }, 45710 [0x184D]={ 45711 arabic="d", 45712 category="lo", 45713 description="MONGOLIAN LETTER TODO QA", 45714 direction="l", 45715 linebreak="al", 45716 mongolian="d", 45717 unicodeslot=0x184D, 45718 variants={ 45719 [0x180B]="feminine form", 45720 }, 45721 }, 45722 [0x184E]={ 45723 arabic="d", 45724 category="lo", 45725 description="MONGOLIAN LETTER TODO GA", 45726 direction="l", 45727 linebreak="al", 45728 mongolian="d", 45729 unicodeslot=0x184E, 45730 variants={ 45731 [0x180B]="second form", 45732 }, 45733 }, 45734 [0x184F]={ 45735 arabic="d", 45736 category="lo", 45737 description="MONGOLIAN LETTER TODO MA", 45738 direction="l", 45739 linebreak="al", 45740 mongolian="d", 45741 unicodeslot=0x184F, 45742 }, 45743 [0x1850]={ 45744 arabic="d", 45745 category="lo", 45746 description="MONGOLIAN LETTER TODO TA", 45747 direction="l", 45748 linebreak="al", 45749 mongolian="d", 45750 unicodeslot=0x1850, 45751 }, 45752 [0x1851]={ 45753 arabic="d", 45754 category="lo", 45755 description="MONGOLIAN LETTER TODO DA", 45756 direction="l", 45757 linebreak="al", 45758 mongolian="d", 45759 unicodeslot=0x1851, 45760 }, 45761 [0x1852]={ 45762 arabic="d", 45763 category="lo", 45764 description="MONGOLIAN LETTER TODO CHA", 45765 direction="l", 45766 linebreak="al", 45767 mongolian="d", 45768 unicodeslot=0x1852, 45769 }, 45770 [0x1853]={ 45771 arabic="d", 45772 category="lo", 45773 description="MONGOLIAN LETTER TODO JA", 45774 direction="l", 45775 linebreak="al", 45776 mongolian="d", 45777 unicodeslot=0x1853, 45778 }, 45779 [0x1854]={ 45780 arabic="d", 45781 category="lo", 45782 description="MONGOLIAN LETTER TODO TSA", 45783 direction="l", 45784 linebreak="al", 45785 mongolian="d", 45786 unicodeslot=0x1854, 45787 }, 45788 [0x1855]={ 45789 arabic="d", 45790 category="lo", 45791 description="MONGOLIAN LETTER TODO YA", 45792 direction="l", 45793 linebreak="al", 45794 mongolian="d", 45795 unicodeslot=0x1855, 45796 }, 45797 [0x1856]={ 45798 arabic="d", 45799 category="lo", 45800 description="MONGOLIAN LETTER TODO WA", 45801 direction="l", 45802 linebreak="al", 45803 mongolian="d", 45804 unicodeslot=0x1856, 45805 }, 45806 [0x1857]={ 45807 arabic="d", 45808 category="lo", 45809 description="MONGOLIAN LETTER TODO KA", 45810 direction="l", 45811 linebreak="al", 45812 mongolian="d", 45813 unicodeslot=0x1857, 45814 }, 45815 [0x1858]={ 45816 arabic="d", 45817 category="lo", 45818 description="MONGOLIAN LETTER TODO GAA", 45819 direction="l", 45820 linebreak="al", 45821 mongolian="d", 45822 unicodeslot=0x1858, 45823 }, 45824 [0x1859]={ 45825 arabic="d", 45826 category="lo", 45827 description="MONGOLIAN LETTER TODO HAA", 45828 direction="l", 45829 linebreak="al", 45830 mongolian="d", 45831 unicodeslot=0x1859, 45832 }, 45833 [0x185A]={ 45834 arabic="d", 45835 category="lo", 45836 description="MONGOLIAN LETTER TODO JIA", 45837 direction="l", 45838 linebreak="al", 45839 mongolian="d", 45840 unicodeslot=0x185A, 45841 }, 45842 [0x185B]={ 45843 arabic="d", 45844 category="lo", 45845 description="MONGOLIAN LETTER TODO NIA", 45846 direction="l", 45847 linebreak="al", 45848 mongolian="d", 45849 unicodeslot=0x185B, 45850 }, 45851 [0x185C]={ 45852 arabic="d", 45853 category="lo", 45854 description="MONGOLIAN LETTER TODO DZA", 45855 direction="l", 45856 linebreak="al", 45857 mongolian="d", 45858 unicodeslot=0x185C, 45859 }, 45860 [0x185D]={ 45861 arabic="d", 45862 category="lo", 45863 description="MONGOLIAN LETTER SIBE E", 45864 direction="l", 45865 linebreak="al", 45866 mongolian="d", 45867 unicodeslot=0x185D, 45868 variants={ 45869 [0x180B]="second form", 45870 }, 45871 }, 45872 [0x185E]={ 45873 arabic="d", 45874 category="lo", 45875 description="MONGOLIAN LETTER SIBE I", 45876 direction="l", 45877 linebreak="al", 45878 mongolian="d", 45879 unicodeslot=0x185E, 45880 variants={ 45881 [0x180B]="second form", 45882 [0x180C]="third form", 45883 }, 45884 }, 45885 [0x185F]={ 45886 arabic="d", 45887 category="lo", 45888 description="MONGOLIAN LETTER SIBE IY", 45889 direction="l", 45890 linebreak="al", 45891 mongolian="d", 45892 unicodeslot=0x185F, 45893 }, 45894 [0x1860]={ 45895 arabic="d", 45896 category="lo", 45897 description="MONGOLIAN LETTER SIBE UE", 45898 direction="l", 45899 linebreak="al", 45900 mongolian="d", 45901 unicodeslot=0x1860, 45902 variants={ 45903 [0x180B]="second form", 45904 }, 45905 }, 45906 [0x1861]={ 45907 arabic="d", 45908 category="lo", 45909 description="MONGOLIAN LETTER SIBE U", 45910 direction="l", 45911 linebreak="al", 45912 mongolian="d", 45913 unicodeslot=0x1861, 45914 }, 45915 [0x1862]={ 45916 arabic="d", 45917 category="lo", 45918 description="MONGOLIAN LETTER SIBE ANG", 45919 direction="l", 45920 linebreak="al", 45921 mongolian="d", 45922 unicodeslot=0x1862, 45923 }, 45924 [0x1863]={ 45925 arabic="d", 45926 category="lo", 45927 description="MONGOLIAN LETTER SIBE KA", 45928 direction="l", 45929 linebreak="al", 45930 mongolian="d", 45931 unicodeslot=0x1863, 45932 variants={ 45933 [0x180B]="second form", 45934 }, 45935 }, 45936 [0x1864]={ 45937 arabic="d", 45938 category="lo", 45939 description="MONGOLIAN LETTER SIBE GA", 45940 direction="l", 45941 linebreak="al", 45942 mongolian="d", 45943 unicodeslot=0x1864, 45944 }, 45945 [0x1865]={ 45946 arabic="d", 45947 category="lo", 45948 description="MONGOLIAN LETTER SIBE HA", 45949 direction="l", 45950 linebreak="al", 45951 mongolian="d", 45952 unicodeslot=0x1865, 45953 }, 45954 [0x1866]={ 45955 arabic="d", 45956 category="lo", 45957 description="MONGOLIAN LETTER SIBE PA", 45958 direction="l", 45959 linebreak="al", 45960 mongolian="d", 45961 unicodeslot=0x1866, 45962 }, 45963 [0x1867]={ 45964 arabic="d", 45965 category="lo", 45966 description="MONGOLIAN LETTER SIBE SHA", 45967 direction="l", 45968 linebreak="al", 45969 mongolian="d", 45970 unicodeslot=0x1867, 45971 }, 45972 [0x1868]={ 45973 arabic="d", 45974 category="lo", 45975 description="MONGOLIAN LETTER SIBE TA", 45976 direction="l", 45977 linebreak="al", 45978 mongolian="d", 45979 unicodeslot=0x1868, 45980 variants={ 45981 [0x180B]="second form", 45982 [0x180C]="third form", 45983 }, 45984 }, 45985 [0x1869]={ 45986 arabic="d", 45987 category="lo", 45988 description="MONGOLIAN LETTER SIBE DA", 45989 direction="l", 45990 linebreak="al", 45991 mongolian="d", 45992 unicodeslot=0x1869, 45993 variants={ 45994 [0x180B]="second form", 45995 }, 45996 }, 45997 [0x186A]={ 45998 arabic="d", 45999 category="lo", 46000 description="MONGOLIAN LETTER SIBE JA", 46001 direction="l", 46002 linebreak="al", 46003 mongolian="d", 46004 unicodeslot=0x186A, 46005 }, 46006 [0x186B]={ 46007 arabic="d", 46008 category="lo", 46009 description="MONGOLIAN LETTER SIBE FA", 46010 direction="l", 46011 linebreak="al", 46012 mongolian="d", 46013 unicodeslot=0x186B, 46014 }, 46015 [0x186C]={ 46016 arabic="d", 46017 category="lo", 46018 description="MONGOLIAN LETTER SIBE GAA", 46019 direction="l", 46020 linebreak="al", 46021 mongolian="d", 46022 unicodeslot=0x186C, 46023 }, 46024 [0x186D]={ 46025 arabic="d", 46026 category="lo", 46027 description="MONGOLIAN LETTER SIBE HAA", 46028 direction="l", 46029 linebreak="al", 46030 mongolian="d", 46031 unicodeslot=0x186D, 46032 }, 46033 [0x186E]={ 46034 arabic="d", 46035 category="lo", 46036 description="MONGOLIAN LETTER SIBE TSA", 46037 direction="l", 46038 linebreak="al", 46039 mongolian="d", 46040 unicodeslot=0x186E, 46041 }, 46042 [0x186F]={ 46043 arabic="d", 46044 category="lo", 46045 description="MONGOLIAN LETTER SIBE ZA", 46046 direction="l", 46047 linebreak="al", 46048 mongolian="d", 46049 unicodeslot=0x186F, 46050 variants={ 46051 [0x180B]="second form", 46052 }, 46053 }, 46054 [0x1870]={ 46055 arabic="d", 46056 category="lo", 46057 description="MONGOLIAN LETTER SIBE RAA", 46058 direction="l", 46059 linebreak="al", 46060 mongolian="d", 46061 unicodeslot=0x1870, 46062 }, 46063 [0x1871]={ 46064 arabic="d", 46065 category="lo", 46066 description="MONGOLIAN LETTER SIBE CHA", 46067 direction="l", 46068 linebreak="al", 46069 mongolian="d", 46070 unicodeslot=0x1871, 46071 }, 46072 [0x1872]={ 46073 arabic="d", 46074 category="lo", 46075 description="MONGOLIAN LETTER SIBE ZHA", 46076 direction="l", 46077 linebreak="al", 46078 mongolian="d", 46079 unicodeslot=0x1872, 46080 }, 46081 [0x1873]={ 46082 arabic="d", 46083 category="lo", 46084 description="MONGOLIAN LETTER MANCHU I", 46085 direction="l", 46086 linebreak="al", 46087 mongolian="d", 46088 unicodeslot=0x1873, 46089 variants={ 46090 [0x180B]="second form", 46091 [0x180C]="third form", 46092 [0x180D]="fourth form", 46093 }, 46094 }, 46095 [0x1874]={ 46096 arabic="d", 46097 category="lo", 46098 description="MONGOLIAN LETTER MANCHU KA", 46099 direction="l", 46100 linebreak="al", 46101 mongolian="d", 46102 unicodeslot=0x1874, 46103 variants={ 46104 [0x180B]="second form", 46105 [0x180C]="feminine first medial form", 46106 [0x180D]="feminine second medial form", 46107 }, 46108 }, 46109 [0x1875]={ 46110 arabic="d", 46111 category="lo", 46112 description="MONGOLIAN LETTER MANCHU RA", 46113 direction="l", 46114 linebreak="al", 46115 mongolian="d", 46116 unicodeslot=0x1875, 46117 }, 46118 [0x1876]={ 46119 arabic="d", 46120 category="lo", 46121 description="MONGOLIAN LETTER MANCHU FA", 46122 direction="l", 46123 linebreak="al", 46124 mongolian="d", 46125 unicodeslot=0x1876, 46126 variants={ 46127 [0x180B]="second form", 46128 }, 46129 }, 46130 [0x1877]={ 46131 arabic="d", 46132 category="lo", 46133 description="MONGOLIAN LETTER MANCHU ZHA", 46134 direction="l", 46135 linebreak="al", 46136 mongolian="d", 46137 unicodeslot=0x1877, 46138 }, 46139 [0x1878]={ 46140 arabic="d", 46141 category="lo", 46142 description="MONGOLIAN LETTER CHA WITH TWO DOTS", 46143 direction="l", 46144 linebreak="al", 46145 mongolian="d", 46146 unicodeslot=0x1878, 46147 }, 46148 [0x1880]={ 46149 arabic="u", 46150 category="lo", 46151 description="MONGOLIAN LETTER ALI GALI ANUSVARA ONE", 46152 direction="l", 46153 linebreak="al", 46154 mongolian="nj", 46155 unicodeslot=0x1880, 46156 variants={ 46157 [0x180B]="second form", 46158 }, 46159 }, 46160 [0x1881]={ 46161 arabic="u", 46162 category="lo", 46163 description="MONGOLIAN LETTER ALI GALI VISARGA ONE", 46164 direction="l", 46165 linebreak="al", 46166 mongolian="nj", 46167 unicodeslot=0x1881, 46168 variants={ 46169 [0x180B]="second form", 46170 }, 46171 }, 46172 [0x1882]={ 46173 arabic="u", 46174 category="lo", 46175 description="MONGOLIAN LETTER ALI GALI DAMARU", 46176 direction="l", 46177 linebreak="al", 46178 mongolian="nj", 46179 unicodeslot=0x1882, 46180 }, 46181 [0x1883]={ 46182 arabic="u", 46183 category="lo", 46184 description="MONGOLIAN LETTER ALI GALI UBADAMA", 46185 direction="l", 46186 linebreak="al", 46187 mongolian="nj", 46188 unicodeslot=0x1883, 46189 }, 46190 [0x1884]={ 46191 arabic="u", 46192 category="lo", 46193 description="MONGOLIAN LETTER ALI GALI INVERTED UBADAMA", 46194 direction="l", 46195 linebreak="al", 46196 mongolian="nj", 46197 unicodeslot=0x1884, 46198 }, 46199 [0x1885]={ 46200 arabic="t", 46201 category="lo", 46202 description="MONGOLIAN LETTER ALI GALI BALUDA", 46203 direction="nsm", 46204 linebreak="cm", 46205 mongolian="t", 46206 unicodeslot=0x1885, 46207 }, 46208 [0x1886]={ 46209 arabic="t", 46210 category="lo", 46211 description="MONGOLIAN LETTER ALI GALI THREE BALUDA", 46212 direction="nsm", 46213 linebreak="cm", 46214 mongolian="t", 46215 unicodeslot=0x1886, 46216 }, 46217 [0x1887]={ 46218 arabic="d", 46219 category="lo", 46220 description="MONGOLIAN LETTER ALI GALI A", 46221 direction="l", 46222 linebreak="al", 46223 mongolian="d", 46224 unicodeslot=0x1887, 46225 variants={ 46226 [0x180B]="second form", 46227 [0x180C]="third form", 46228 [0x180D]="fourth form", 46229 }, 46230 }, 46231 [0x1888]={ 46232 arabic="d", 46233 category="lo", 46234 description="MONGOLIAN LETTER ALI GALI I", 46235 direction="l", 46236 linebreak="al", 46237 mongolian="d", 46238 unicodeslot=0x1888, 46239 variants={ 46240 [0x180B]="second form", 46241 }, 46242 }, 46243 [0x1889]={ 46244 arabic="d", 46245 category="lo", 46246 description="MONGOLIAN LETTER ALI GALI KA", 46247 direction="l", 46248 linebreak="al", 46249 mongolian="d", 46250 unicodeslot=0x1889, 46251 }, 46252 [0x188A]={ 46253 arabic="d", 46254 category="lo", 46255 description="MONGOLIAN LETTER ALI GALI NGA", 46256 direction="l", 46257 linebreak="al", 46258 mongolian="d", 46259 unicodeslot=0x188A, 46260 variants={ 46261 [0x180B]="second form", 46262 }, 46263 }, 46264 [0x188B]={ 46265 arabic="d", 46266 category="lo", 46267 description="MONGOLIAN LETTER ALI GALI CA", 46268 direction="l", 46269 linebreak="al", 46270 mongolian="d", 46271 unicodeslot=0x188B, 46272 }, 46273 [0x188C]={ 46274 arabic="d", 46275 category="lo", 46276 description="MONGOLIAN LETTER ALI GALI TTA", 46277 direction="l", 46278 linebreak="al", 46279 mongolian="d", 46280 unicodeslot=0x188C, 46281 }, 46282 [0x188D]={ 46283 arabic="d", 46284 category="lo", 46285 description="MONGOLIAN LETTER ALI GALI TTHA", 46286 direction="l", 46287 linebreak="al", 46288 mongolian="d", 46289 unicodeslot=0x188D, 46290 }, 46291 [0x188E]={ 46292 arabic="d", 46293 category="lo", 46294 description="MONGOLIAN LETTER ALI GALI DDA", 46295 direction="l", 46296 linebreak="al", 46297 mongolian="d", 46298 unicodeslot=0x188E, 46299 }, 46300 [0x188F]={ 46301 arabic="d", 46302 category="lo", 46303 description="MONGOLIAN LETTER ALI GALI NNA", 46304 direction="l", 46305 linebreak="al", 46306 mongolian="d", 46307 unicodeslot=0x188F, 46308 }, 46309 [0x1890]={ 46310 arabic="d", 46311 category="lo", 46312 description="MONGOLIAN LETTER ALI GALI TA", 46313 direction="l", 46314 linebreak="al", 46315 mongolian="d", 46316 unicodeslot=0x1890, 46317 }, 46318 [0x1891]={ 46319 arabic="d", 46320 category="lo", 46321 description="MONGOLIAN LETTER ALI GALI DA", 46322 direction="l", 46323 linebreak="al", 46324 mongolian="d", 46325 unicodeslot=0x1891, 46326 }, 46327 [0x1892]={ 46328 arabic="d", 46329 category="lo", 46330 description="MONGOLIAN LETTER ALI GALI PA", 46331 direction="l", 46332 linebreak="al", 46333 mongolian="d", 46334 unicodeslot=0x1892, 46335 }, 46336 [0x1893]={ 46337 arabic="d", 46338 category="lo", 46339 description="MONGOLIAN LETTER ALI GALI PHA", 46340 direction="l", 46341 linebreak="al", 46342 mongolian="d", 46343 unicodeslot=0x1893, 46344 }, 46345 [0x1894]={ 46346 arabic="d", 46347 category="lo", 46348 description="MONGOLIAN LETTER ALI GALI SSA", 46349 direction="l", 46350 linebreak="al", 46351 mongolian="d", 46352 unicodeslot=0x1894, 46353 }, 46354 [0x1895]={ 46355 arabic="d", 46356 category="lo", 46357 description="MONGOLIAN LETTER ALI GALI ZHA", 46358 direction="l", 46359 linebreak="al", 46360 mongolian="d", 46361 unicodeslot=0x1895, 46362 }, 46363 [0x1896]={ 46364 arabic="d", 46365 category="lo", 46366 description="MONGOLIAN LETTER ALI GALI ZA", 46367 direction="l", 46368 linebreak="al", 46369 mongolian="d", 46370 unicodeslot=0x1896, 46371 }, 46372 [0x1897]={ 46373 arabic="d", 46374 category="lo", 46375 description="MONGOLIAN LETTER ALI GALI AH", 46376 direction="l", 46377 linebreak="al", 46378 mongolian="d", 46379 unicodeslot=0x1897, 46380 }, 46381 [0x1898]={ 46382 arabic="d", 46383 category="lo", 46384 description="MONGOLIAN LETTER TODO ALI GALI TA", 46385 direction="l", 46386 linebreak="al", 46387 mongolian="d", 46388 unicodeslot=0x1898, 46389 }, 46390 [0x1899]={ 46391 arabic="d", 46392 category="lo", 46393 description="MONGOLIAN LETTER TODO ALI GALI ZHA", 46394 direction="l", 46395 linebreak="al", 46396 mongolian="d", 46397 unicodeslot=0x1899, 46398 }, 46399 [0x189A]={ 46400 arabic="d", 46401 category="lo", 46402 description="MONGOLIAN LETTER MANCHU ALI GALI GHA", 46403 direction="l", 46404 linebreak="al", 46405 mongolian="d", 46406 unicodeslot=0x189A, 46407 }, 46408 [0x189B]={ 46409 arabic="d", 46410 category="lo", 46411 description="MONGOLIAN LETTER MANCHU ALI GALI NGA", 46412 direction="l", 46413 linebreak="al", 46414 mongolian="d", 46415 unicodeslot=0x189B, 46416 }, 46417 [0x189C]={ 46418 arabic="d", 46419 category="lo", 46420 description="MONGOLIAN LETTER MANCHU ALI GALI CA", 46421 direction="l", 46422 linebreak="al", 46423 mongolian="d", 46424 unicodeslot=0x189C, 46425 }, 46426 [0x189D]={ 46427 arabic="d", 46428 category="lo", 46429 description="MONGOLIAN LETTER MANCHU ALI GALI JHA", 46430 direction="l", 46431 linebreak="al", 46432 mongolian="d", 46433 unicodeslot=0x189D, 46434 }, 46435 [0x189E]={ 46436 arabic="d", 46437 category="lo", 46438 description="MONGOLIAN LETTER MANCHU ALI GALI TTA", 46439 direction="l", 46440 linebreak="al", 46441 mongolian="d", 46442 unicodeslot=0x189E, 46443 }, 46444 [0x189F]={ 46445 arabic="d", 46446 category="lo", 46447 description="MONGOLIAN LETTER MANCHU ALI GALI DDHA", 46448 direction="l", 46449 linebreak="al", 46450 mongolian="d", 46451 unicodeslot=0x189F, 46452 }, 46453 [0x18A0]={ 46454 arabic="d", 46455 category="lo", 46456 description="MONGOLIAN LETTER MANCHU ALI GALI TA", 46457 direction="l", 46458 linebreak="al", 46459 mongolian="d", 46460 unicodeslot=0x18A0, 46461 }, 46462 [0x18A1]={ 46463 arabic="d", 46464 category="lo", 46465 description="MONGOLIAN LETTER MANCHU ALI GALI DHA", 46466 direction="l", 46467 linebreak="al", 46468 mongolian="d", 46469 unicodeslot=0x18A1, 46470 }, 46471 [0x18A2]={ 46472 arabic="d", 46473 category="lo", 46474 description="MONGOLIAN LETTER MANCHU ALI GALI SSA", 46475 direction="l", 46476 linebreak="al", 46477 mongolian="d", 46478 unicodeslot=0x18A2, 46479 }, 46480 [0x18A3]={ 46481 arabic="d", 46482 category="lo", 46483 description="MONGOLIAN LETTER MANCHU ALI GALI CYA", 46484 direction="l", 46485 linebreak="al", 46486 mongolian="d", 46487 unicodeslot=0x18A3, 46488 }, 46489 [0x18A4]={ 46490 arabic="d", 46491 category="lo", 46492 description="MONGOLIAN LETTER MANCHU ALI GALI ZHA", 46493 direction="l", 46494 linebreak="al", 46495 mongolian="d", 46496 unicodeslot=0x18A4, 46497 }, 46498 [0x18A5]={ 46499 arabic="d", 46500 category="lo", 46501 description="MONGOLIAN LETTER MANCHU ALI GALI ZA", 46502 direction="l", 46503 linebreak="al", 46504 mongolian="d", 46505 unicodeslot=0x18A5, 46506 }, 46507 [0x18A6]={ 46508 arabic="d", 46509 category="lo", 46510 description="MONGOLIAN LETTER ALI GALI HALF U", 46511 direction="l", 46512 linebreak="al", 46513 mongolian="d", 46514 unicodeslot=0x18A6, 46515 }, 46516 [0x18A7]={ 46517 arabic="d", 46518 category="lo", 46519 description="MONGOLIAN LETTER ALI GALI HALF YA", 46520 direction="l", 46521 linebreak="al", 46522 mongolian="d", 46523 unicodeslot=0x18A7, 46524 }, 46525 [0x18A8]={ 46526 arabic="d", 46527 category="lo", 46528 description="MONGOLIAN LETTER MANCHU ALI GALI BHA", 46529 direction="l", 46530 linebreak="al", 46531 mongolian="d", 46532 unicodeslot=0x18A8, 46533 }, 46534 [0x18A9]={ 46535 category="mn", 46536 combining=0xE4, 46537 description="MONGOLIAN LETTER ALI GALI DAGALGA", 46538 direction="nsm", 46539 linebreak="cm", 46540 mongolian="t", 46541 unicodeslot=0x18A9, 46542 }, 46543 [0x18AA]={ 46544 arabic="d", 46545 category="lo", 46546 description="MONGOLIAN LETTER MANCHU ALI GALI LHA", 46547 direction="l", 46548 linebreak="al", 46549 mongolian="d", 46550 unicodeslot=0x18AA, 46551 }, 46552 [0x18B0]={ 46553 category="lo", 46554 description="CANADIAN SYLLABICS OY", 46555 direction="l", 46556 linebreak="al", 46557 unicodeslot=0x18B0, 46558 }, 46559 [0x18B1]={ 46560 category="lo", 46561 description="CANADIAN SYLLABICS AY", 46562 direction="l", 46563 linebreak="al", 46564 unicodeslot=0x18B1, 46565 }, 46566 [0x18B2]={ 46567 category="lo", 46568 description="CANADIAN SYLLABICS AAY", 46569 direction="l", 46570 linebreak="al", 46571 unicodeslot=0x18B2, 46572 }, 46573 [0x18B3]={ 46574 category="lo", 46575 description="CANADIAN SYLLABICS WAY", 46576 direction="l", 46577 linebreak="al", 46578 unicodeslot=0x18B3, 46579 }, 46580 [0x18B4]={ 46581 category="lo", 46582 description="CANADIAN SYLLABICS POY", 46583 direction="l", 46584 linebreak="al", 46585 unicodeslot=0x18B4, 46586 }, 46587 [0x18B5]={ 46588 category="lo", 46589 description="CANADIAN SYLLABICS PAY", 46590 direction="l", 46591 linebreak="al", 46592 unicodeslot=0x18B5, 46593 }, 46594 [0x18B6]={ 46595 category="lo", 46596 description="CANADIAN SYLLABICS PWOY", 46597 direction="l", 46598 linebreak="al", 46599 unicodeslot=0x18B6, 46600 }, 46601 [0x18B7]={ 46602 category="lo", 46603 description="CANADIAN SYLLABICS TAY", 46604 direction="l", 46605 linebreak="al", 46606 unicodeslot=0x18B7, 46607 }, 46608 [0x18B8]={ 46609 category="lo", 46610 description="CANADIAN SYLLABICS KAY", 46611 direction="l", 46612 linebreak="al", 46613 unicodeslot=0x18B8, 46614 }, 46615 [0x18B9]={ 46616 category="lo", 46617 description="CANADIAN SYLLABICS KWAY", 46618 direction="l", 46619 linebreak="al", 46620 unicodeslot=0x18B9, 46621 }, 46622 [0x18BA]={ 46623 category="lo", 46624 description="CANADIAN SYLLABICS MAY", 46625 direction="l", 46626 linebreak="al", 46627 unicodeslot=0x18BA, 46628 }, 46629 [0x18BB]={ 46630 category="lo", 46631 description="CANADIAN SYLLABICS NOY", 46632 direction="l", 46633 linebreak="al", 46634 unicodeslot=0x18BB, 46635 }, 46636 [0x18BC]={ 46637 category="lo", 46638 description="CANADIAN SYLLABICS NAY", 46639 direction="l", 46640 linebreak="al", 46641 unicodeslot=0x18BC, 46642 }, 46643 [0x18BD]={ 46644 category="lo", 46645 description="CANADIAN SYLLABICS LAY", 46646 direction="l", 46647 linebreak="al", 46648 unicodeslot=0x18BD, 46649 }, 46650 [0x18BE]={ 46651 category="lo", 46652 description="CANADIAN SYLLABICS SOY", 46653 direction="l", 46654 linebreak="al", 46655 unicodeslot=0x18BE, 46656 }, 46657 [0x18BF]={ 46658 category="lo", 46659 description="CANADIAN SYLLABICS SAY", 46660 direction="l", 46661 linebreak="al", 46662 unicodeslot=0x18BF, 46663 }, 46664 [0x18C0]={ 46665 category="lo", 46666 description="CANADIAN SYLLABICS SHOY", 46667 direction="l", 46668 linebreak="al", 46669 unicodeslot=0x18C0, 46670 }, 46671 [0x18C1]={ 46672 category="lo", 46673 description="CANADIAN SYLLABICS SHAY", 46674 direction="l", 46675 linebreak="al", 46676 unicodeslot=0x18C1, 46677 }, 46678 [0x18C2]={ 46679 category="lo", 46680 description="CANADIAN SYLLABICS SHWOY", 46681 direction="l", 46682 linebreak="al", 46683 unicodeslot=0x18C2, 46684 }, 46685 [0x18C3]={ 46686 category="lo", 46687 description="CANADIAN SYLLABICS YOY", 46688 direction="l", 46689 linebreak="al", 46690 unicodeslot=0x18C3, 46691 }, 46692 [0x18C4]={ 46693 category="lo", 46694 description="CANADIAN SYLLABICS YAY", 46695 direction="l", 46696 linebreak="al", 46697 unicodeslot=0x18C4, 46698 }, 46699 [0x18C5]={ 46700 category="lo", 46701 description="CANADIAN SYLLABICS RAY", 46702 direction="l", 46703 linebreak="al", 46704 unicodeslot=0x18C5, 46705 }, 46706 [0x18C6]={ 46707 category="lo", 46708 description="CANADIAN SYLLABICS NWI", 46709 direction="l", 46710 linebreak="al", 46711 unicodeslot=0x18C6, 46712 }, 46713 [0x18C7]={ 46714 category="lo", 46715 description="CANADIAN SYLLABICS OJIBWAY NWI", 46716 direction="l", 46717 linebreak="al", 46718 unicodeslot=0x18C7, 46719 }, 46720 [0x18C8]={ 46721 category="lo", 46722 description="CANADIAN SYLLABICS NWII", 46723 direction="l", 46724 linebreak="al", 46725 unicodeslot=0x18C8, 46726 }, 46727 [0x18C9]={ 46728 category="lo", 46729 description="CANADIAN SYLLABICS OJIBWAY NWII", 46730 direction="l", 46731 linebreak="al", 46732 unicodeslot=0x18C9, 46733 }, 46734 [0x18CA]={ 46735 category="lo", 46736 description="CANADIAN SYLLABICS NWO", 46737 direction="l", 46738 linebreak="al", 46739 unicodeslot=0x18CA, 46740 }, 46741 [0x18CB]={ 46742 category="lo", 46743 description="CANADIAN SYLLABICS OJIBWAY NWO", 46744 direction="l", 46745 linebreak="al", 46746 unicodeslot=0x18CB, 46747 }, 46748 [0x18CC]={ 46749 category="lo", 46750 description="CANADIAN SYLLABICS NWOO", 46751 direction="l", 46752 linebreak="al", 46753 unicodeslot=0x18CC, 46754 }, 46755 [0x18CD]={ 46756 category="lo", 46757 description="CANADIAN SYLLABICS OJIBWAY NWOO", 46758 direction="l", 46759 linebreak="al", 46760 unicodeslot=0x18CD, 46761 }, 46762 [0x18CE]={ 46763 category="lo", 46764 description="CANADIAN SYLLABICS RWEE", 46765 direction="l", 46766 linebreak="al", 46767 unicodeslot=0x18CE, 46768 }, 46769 [0x18CF]={ 46770 category="lo", 46771 description="CANADIAN SYLLABICS RWI", 46772 direction="l", 46773 linebreak="al", 46774 unicodeslot=0x18CF, 46775 }, 46776 [0x18D0]={ 46777 category="lo", 46778 description="CANADIAN SYLLABICS RWII", 46779 direction="l", 46780 linebreak="al", 46781 unicodeslot=0x18D0, 46782 }, 46783 [0x18D1]={ 46784 category="lo", 46785 description="CANADIAN SYLLABICS RWO", 46786 direction="l", 46787 linebreak="al", 46788 unicodeslot=0x18D1, 46789 }, 46790 [0x18D2]={ 46791 category="lo", 46792 description="CANADIAN SYLLABICS RWOO", 46793 direction="l", 46794 linebreak="al", 46795 unicodeslot=0x18D2, 46796 }, 46797 [0x18D3]={ 46798 category="lo", 46799 description="CANADIAN SYLLABICS RWA", 46800 direction="l", 46801 linebreak="al", 46802 unicodeslot=0x18D3, 46803 }, 46804 [0x18D4]={ 46805 category="lo", 46806 description="CANADIAN SYLLABICS OJIBWAY P", 46807 direction="l", 46808 linebreak="al", 46809 unicodeslot=0x18D4, 46810 }, 46811 [0x18D5]={ 46812 category="lo", 46813 description="CANADIAN SYLLABICS OJIBWAY T", 46814 direction="l", 46815 linebreak="al", 46816 unicodeslot=0x18D5, 46817 }, 46818 [0x18D6]={ 46819 category="lo", 46820 description="CANADIAN SYLLABICS OJIBWAY K", 46821 direction="l", 46822 linebreak="al", 46823 unicodeslot=0x18D6, 46824 }, 46825 [0x18D7]={ 46826 category="lo", 46827 description="CANADIAN SYLLABICS OJIBWAY C", 46828 direction="l", 46829 linebreak="al", 46830 unicodeslot=0x18D7, 46831 }, 46832 [0x18D8]={ 46833 category="lo", 46834 description="CANADIAN SYLLABICS OJIBWAY M", 46835 direction="l", 46836 linebreak="al", 46837 unicodeslot=0x18D8, 46838 }, 46839 [0x18D9]={ 46840 category="lo", 46841 description="CANADIAN SYLLABICS OJIBWAY N", 46842 direction="l", 46843 linebreak="al", 46844 unicodeslot=0x18D9, 46845 }, 46846 [0x18DA]={ 46847 category="lo", 46848 description="CANADIAN SYLLABICS OJIBWAY S", 46849 direction="l", 46850 linebreak="al", 46851 unicodeslot=0x18DA, 46852 }, 46853 [0x18DB]={ 46854 category="lo", 46855 description="CANADIAN SYLLABICS OJIBWAY SH", 46856 direction="l", 46857 linebreak="al", 46858 unicodeslot=0x18DB, 46859 }, 46860 [0x18DC]={ 46861 category="lo", 46862 description="CANADIAN SYLLABICS EASTERN W", 46863 direction="l", 46864 linebreak="al", 46865 unicodeslot=0x18DC, 46866 }, 46867 [0x18DD]={ 46868 category="lo", 46869 description="CANADIAN SYLLABICS WESTERN W", 46870 direction="l", 46871 linebreak="al", 46872 unicodeslot=0x18DD, 46873 }, 46874 [0x18DE]={ 46875 category="lo", 46876 description="CANADIAN SYLLABICS FINAL SMALL RING", 46877 direction="l", 46878 linebreak="al", 46879 unicodeslot=0x18DE, 46880 }, 46881 [0x18DF]={ 46882 category="lo", 46883 description="CANADIAN SYLLABICS FINAL RAISED DOT", 46884 direction="l", 46885 linebreak="al", 46886 unicodeslot=0x18DF, 46887 }, 46888 [0x18E0]={ 46889 category="lo", 46890 description="CANADIAN SYLLABICS R-CREE RWE", 46891 direction="l", 46892 linebreak="al", 46893 unicodeslot=0x18E0, 46894 }, 46895 [0x18E1]={ 46896 category="lo", 46897 description="CANADIAN SYLLABICS WEST-CREE LOO", 46898 direction="l", 46899 linebreak="al", 46900 unicodeslot=0x18E1, 46901 }, 46902 [0x18E2]={ 46903 category="lo", 46904 description="CANADIAN SYLLABICS WEST-CREE LAA", 46905 direction="l", 46906 linebreak="al", 46907 unicodeslot=0x18E2, 46908 }, 46909 [0x18E3]={ 46910 category="lo", 46911 description="CANADIAN SYLLABICS THWE", 46912 direction="l", 46913 linebreak="al", 46914 unicodeslot=0x18E3, 46915 }, 46916 [0x18E4]={ 46917 category="lo", 46918 description="CANADIAN SYLLABICS THWA", 46919 direction="l", 46920 linebreak="al", 46921 unicodeslot=0x18E4, 46922 }, 46923 [0x18E5]={ 46924 category="lo", 46925 description="CANADIAN SYLLABICS TTHWE", 46926 direction="l", 46927 linebreak="al", 46928 unicodeslot=0x18E5, 46929 }, 46930 [0x18E6]={ 46931 category="lo", 46932 description="CANADIAN SYLLABICS TTHOO", 46933 direction="l", 46934 linebreak="al", 46935 unicodeslot=0x18E6, 46936 }, 46937 [0x18E7]={ 46938 category="lo", 46939 description="CANADIAN SYLLABICS TTHAA", 46940 direction="l", 46941 linebreak="al", 46942 unicodeslot=0x18E7, 46943 }, 46944 [0x18E8]={ 46945 category="lo", 46946 description="CANADIAN SYLLABICS TLHWE", 46947 direction="l", 46948 linebreak="al", 46949 unicodeslot=0x18E8, 46950 }, 46951 [0x18E9]={ 46952 category="lo", 46953 description="CANADIAN SYLLABICS TLHOO", 46954 direction="l", 46955 linebreak="al", 46956 unicodeslot=0x18E9, 46957 }, 46958 [0x18EA]={ 46959 category="lo", 46960 description="CANADIAN SYLLABICS SAYISI SHWE", 46961 direction="l", 46962 linebreak="al", 46963 unicodeslot=0x18EA, 46964 }, 46965 [0x18EB]={ 46966 category="lo", 46967 description="CANADIAN SYLLABICS SAYISI SHOO", 46968 direction="l", 46969 linebreak="al", 46970 unicodeslot=0x18EB, 46971 }, 46972 [0x18EC]={ 46973 category="lo", 46974 description="CANADIAN SYLLABICS SAYISI HOO", 46975 direction="l", 46976 linebreak="al", 46977 unicodeslot=0x18EC, 46978 }, 46979 [0x18ED]={ 46980 category="lo", 46981 description="CANADIAN SYLLABICS CARRIER GWU", 46982 direction="l", 46983 linebreak="al", 46984 unicodeslot=0x18ED, 46985 }, 46986 [0x18EE]={ 46987 category="lo", 46988 description="CANADIAN SYLLABICS CARRIER DENE GEE", 46989 direction="l", 46990 linebreak="al", 46991 unicodeslot=0x18EE, 46992 }, 46993 [0x18EF]={ 46994 category="lo", 46995 description="CANADIAN SYLLABICS CARRIER GAA", 46996 direction="l", 46997 linebreak="al", 46998 unicodeslot=0x18EF, 46999 }, 47000 [0x18F0]={ 47001 category="lo", 47002 description="CANADIAN SYLLABICS CARRIER GWA", 47003 direction="l", 47004 linebreak="al", 47005 unicodeslot=0x18F0, 47006 }, 47007 [0x18F1]={ 47008 category="lo", 47009 description="CANADIAN SYLLABICS SAYISI JUU", 47010 direction="l", 47011 linebreak="al", 47012 unicodeslot=0x18F1, 47013 }, 47014 [0x18F2]={ 47015 category="lo", 47016 description="CANADIAN SYLLABICS CARRIER JWA", 47017 direction="l", 47018 linebreak="al", 47019 unicodeslot=0x18F2, 47020 }, 47021 [0x18F3]={ 47022 category="lo", 47023 description="CANADIAN SYLLABICS BEAVER DENE L", 47024 direction="l", 47025 linebreak="al", 47026 unicodeslot=0x18F3, 47027 }, 47028 [0x18F4]={ 47029 category="lo", 47030 description="CANADIAN SYLLABICS BEAVER DENE R", 47031 direction="l", 47032 linebreak="al", 47033 unicodeslot=0x18F4, 47034 }, 47035 [0x18F5]={ 47036 category="lo", 47037 description="CANADIAN SYLLABICS CARRIER DENTAL S", 47038 direction="l", 47039 linebreak="al", 47040 unicodeslot=0x18F5, 47041 }, 47042 [0x1900]={ 47043 category="lo", 47044 description="LIMBU VOWEL-CARRIER LETTER", 47045 direction="l", 47046 linebreak="al", 47047 unicodeslot=0x1900, 47048 }, 47049 [0x1901]={ 47050 category="lo", 47051 description="LIMBU LETTER KA", 47052 direction="l", 47053 linebreak="al", 47054 unicodeslot=0x1901, 47055 }, 47056 [0x1902]={ 47057 category="lo", 47058 description="LIMBU LETTER KHA", 47059 direction="l", 47060 linebreak="al", 47061 unicodeslot=0x1902, 47062 }, 47063 [0x1903]={ 47064 category="lo", 47065 description="LIMBU LETTER GA", 47066 direction="l", 47067 linebreak="al", 47068 unicodeslot=0x1903, 47069 }, 47070 [0x1904]={ 47071 category="lo", 47072 description="LIMBU LETTER GHA", 47073 direction="l", 47074 linebreak="al", 47075 unicodeslot=0x1904, 47076 }, 47077 [0x1905]={ 47078 category="lo", 47079 description="LIMBU LETTER NGA", 47080 direction="l", 47081 linebreak="al", 47082 unicodeslot=0x1905, 47083 }, 47084 [0x1906]={ 47085 category="lo", 47086 description="LIMBU LETTER CA", 47087 direction="l", 47088 linebreak="al", 47089 unicodeslot=0x1906, 47090 }, 47091 [0x1907]={ 47092 category="lo", 47093 description="LIMBU LETTER CHA", 47094 direction="l", 47095 linebreak="al", 47096 unicodeslot=0x1907, 47097 }, 47098 [0x1908]={ 47099 category="lo", 47100 description="LIMBU LETTER JA", 47101 direction="l", 47102 linebreak="al", 47103 unicodeslot=0x1908, 47104 }, 47105 [0x1909]={ 47106 category="lo", 47107 description="LIMBU LETTER JHA", 47108 direction="l", 47109 linebreak="al", 47110 unicodeslot=0x1909, 47111 }, 47112 [0x190A]={ 47113 category="lo", 47114 description="LIMBU LETTER YAN", 47115 direction="l", 47116 linebreak="al", 47117 unicodeslot=0x190A, 47118 }, 47119 [0x190B]={ 47120 category="lo", 47121 description="LIMBU LETTER TA", 47122 direction="l", 47123 linebreak="al", 47124 unicodeslot=0x190B, 47125 }, 47126 [0x190C]={ 47127 category="lo", 47128 description="LIMBU LETTER THA", 47129 direction="l", 47130 linebreak="al", 47131 unicodeslot=0x190C, 47132 }, 47133 [0x190D]={ 47134 category="lo", 47135 description="LIMBU LETTER DA", 47136 direction="l", 47137 linebreak="al", 47138 unicodeslot=0x190D, 47139 }, 47140 [0x190E]={ 47141 category="lo", 47142 description="LIMBU LETTER DHA", 47143 direction="l", 47144 linebreak="al", 47145 unicodeslot=0x190E, 47146 }, 47147 [0x190F]={ 47148 category="lo", 47149 description="LIMBU LETTER NA", 47150 direction="l", 47151 linebreak="al", 47152 unicodeslot=0x190F, 47153 }, 47154 [0x1910]={ 47155 category="lo", 47156 description="LIMBU LETTER PA", 47157 direction="l", 47158 linebreak="al", 47159 unicodeslot=0x1910, 47160 }, 47161 [0x1911]={ 47162 category="lo", 47163 description="LIMBU LETTER PHA", 47164 direction="l", 47165 linebreak="al", 47166 unicodeslot=0x1911, 47167 }, 47168 [0x1912]={ 47169 category="lo", 47170 description="LIMBU LETTER BA", 47171 direction="l", 47172 linebreak="al", 47173 unicodeslot=0x1912, 47174 }, 47175 [0x1913]={ 47176 category="lo", 47177 description="LIMBU LETTER BHA", 47178 direction="l", 47179 linebreak="al", 47180 unicodeslot=0x1913, 47181 }, 47182 [0x1914]={ 47183 category="lo", 47184 description="LIMBU LETTER MA", 47185 direction="l", 47186 linebreak="al", 47187 unicodeslot=0x1914, 47188 }, 47189 [0x1915]={ 47190 category="lo", 47191 description="LIMBU LETTER YA", 47192 direction="l", 47193 linebreak="al", 47194 unicodeslot=0x1915, 47195 }, 47196 [0x1916]={ 47197 category="lo", 47198 description="LIMBU LETTER RA", 47199 direction="l", 47200 linebreak="al", 47201 unicodeslot=0x1916, 47202 }, 47203 [0x1917]={ 47204 category="lo", 47205 description="LIMBU LETTER LA", 47206 direction="l", 47207 linebreak="al", 47208 unicodeslot=0x1917, 47209 }, 47210 [0x1918]={ 47211 category="lo", 47212 description="LIMBU LETTER WA", 47213 direction="l", 47214 linebreak="al", 47215 unicodeslot=0x1918, 47216 }, 47217 [0x1919]={ 47218 category="lo", 47219 description="LIMBU LETTER SHA", 47220 direction="l", 47221 linebreak="al", 47222 unicodeslot=0x1919, 47223 }, 47224 [0x191A]={ 47225 category="lo", 47226 description="LIMBU LETTER SSA", 47227 direction="l", 47228 linebreak="al", 47229 unicodeslot=0x191A, 47230 }, 47231 [0x191B]={ 47232 category="lo", 47233 description="LIMBU LETTER SA", 47234 direction="l", 47235 linebreak="al", 47236 unicodeslot=0x191B, 47237 }, 47238 [0x191C]={ 47239 category="lo", 47240 description="LIMBU LETTER HA", 47241 direction="l", 47242 linebreak="al", 47243 unicodeslot=0x191C, 47244 }, 47245 [0x191D]={ 47246 category="lo", 47247 description="LIMBU LETTER GYAN", 47248 direction="l", 47249 linebreak="al", 47250 unicodeslot=0x191D, 47251 }, 47252 [0x191E]={ 47253 category="lo", 47254 description="LIMBU LETTER TRA", 47255 direction="l", 47256 linebreak="al", 47257 unicodeslot=0x191E, 47258 }, 47259 [0x1920]={ 47260 category="mn", 47261 description="LIMBU VOWEL SIGN A", 47262 direction="nsm", 47263 linebreak="cm", 47264 unicodeslot=0x1920, 47265 }, 47266 [0x1921]={ 47267 category="mn", 47268 description="LIMBU VOWEL SIGN I", 47269 direction="nsm", 47270 linebreak="cm", 47271 unicodeslot=0x1921, 47272 }, 47273 [0x1922]={ 47274 category="mn", 47275 description="LIMBU VOWEL SIGN U", 47276 direction="nsm", 47277 linebreak="cm", 47278 unicodeslot=0x1922, 47279 }, 47280 [0x1923]={ 47281 category="mc", 47282 description="LIMBU VOWEL SIGN EE", 47283 direction="l", 47284 linebreak="cm", 47285 unicodeslot=0x1923, 47286 }, 47287 [0x1924]={ 47288 category="mc", 47289 description="LIMBU VOWEL SIGN AI", 47290 direction="l", 47291 linebreak="cm", 47292 unicodeslot=0x1924, 47293 }, 47294 [0x1925]={ 47295 category="mc", 47296 description="LIMBU VOWEL SIGN OO", 47297 direction="l", 47298 linebreak="cm", 47299 unicodeslot=0x1925, 47300 }, 47301 [0x1926]={ 47302 category="mc", 47303 description="LIMBU VOWEL SIGN AU", 47304 direction="l", 47305 linebreak="cm", 47306 unicodeslot=0x1926, 47307 }, 47308 [0x1927]={ 47309 category="mn", 47310 description="LIMBU VOWEL SIGN E", 47311 direction="nsm", 47312 linebreak="cm", 47313 unicodeslot=0x1927, 47314 }, 47315 [0x1928]={ 47316 category="mn", 47317 description="LIMBU VOWEL SIGN O", 47318 direction="nsm", 47319 linebreak="cm", 47320 unicodeslot=0x1928, 47321 }, 47322 [0x1929]={ 47323 category="mc", 47324 description="LIMBU SUBJOINED LETTER YA", 47325 direction="l", 47326 linebreak="cm", 47327 unicodeslot=0x1929, 47328 }, 47329 [0x192A]={ 47330 category="mc", 47331 description="LIMBU SUBJOINED LETTER RA", 47332 direction="l", 47333 linebreak="cm", 47334 unicodeslot=0x192A, 47335 }, 47336 [0x192B]={ 47337 category="mc", 47338 description="LIMBU SUBJOINED LETTER WA", 47339 direction="l", 47340 linebreak="cm", 47341 unicodeslot=0x192B, 47342 }, 47343 [0x1930]={ 47344 category="mc", 47345 description="LIMBU SMALL LETTER KA", 47346 direction="l", 47347 linebreak="cm", 47348 unicodeslot=0x1930, 47349 }, 47350 [0x1931]={ 47351 category="mc", 47352 description="LIMBU SMALL LETTER NGA", 47353 direction="l", 47354 linebreak="cm", 47355 unicodeslot=0x1931, 47356 }, 47357 [0x1932]={ 47358 category="mn", 47359 description="LIMBU SMALL LETTER ANUSVARA", 47360 direction="nsm", 47361 linebreak="cm", 47362 unicodeslot=0x1932, 47363 }, 47364 [0x1933]={ 47365 category="mc", 47366 description="LIMBU SMALL LETTER TA", 47367 direction="l", 47368 linebreak="cm", 47369 unicodeslot=0x1933, 47370 }, 47371 [0x1934]={ 47372 category="mc", 47373 description="LIMBU SMALL LETTER NA", 47374 direction="l", 47375 linebreak="cm", 47376 unicodeslot=0x1934, 47377 }, 47378 [0x1935]={ 47379 category="mc", 47380 description="LIMBU SMALL LETTER PA", 47381 direction="l", 47382 linebreak="cm", 47383 unicodeslot=0x1935, 47384 }, 47385 [0x1936]={ 47386 category="mc", 47387 description="LIMBU SMALL LETTER MA", 47388 direction="l", 47389 linebreak="cm", 47390 unicodeslot=0x1936, 47391 }, 47392 [0x1937]={ 47393 category="mc", 47394 description="LIMBU SMALL LETTER RA", 47395 direction="l", 47396 linebreak="cm", 47397 unicodeslot=0x1937, 47398 }, 47399 [0x1938]={ 47400 category="mc", 47401 description="LIMBU SMALL LETTER LA", 47402 direction="l", 47403 linebreak="cm", 47404 unicodeslot=0x1938, 47405 }, 47406 [0x1939]={ 47407 category="mn", 47408 combining=0xDE, 47409 description="LIMBU SIGN MUKPHRENG", 47410 direction="nsm", 47411 linebreak="cm", 47412 unicodeslot=0x1939, 47413 }, 47414 [0x193A]={ 47415 category="mn", 47416 combining=0xE6, 47417 description="LIMBU SIGN KEMPHRENG", 47418 direction="nsm", 47419 linebreak="cm", 47420 unicodeslot=0x193A, 47421 }, 47422 [0x193B]={ 47423 category="mn", 47424 combining=0xDC, 47425 description="LIMBU SIGN SA-I", 47426 direction="nsm", 47427 linebreak="cm", 47428 unicodeslot=0x193B, 47429 }, 47430 [0x1940]={ 47431 category="so", 47432 description="LIMBU SIGN LOO", 47433 direction="on", 47434 linebreak="al", 47435 unicodeslot=0x1940, 47436 }, 47437 [0x1944]={ 47438 category="po", 47439 description="LIMBU EXCLAMATION MARK", 47440 direction="on", 47441 linebreak="ex", 47442 unicodeslot=0x1944, 47443 }, 47444 [0x1945]={ 47445 category="po", 47446 description="LIMBU QUESTION MARK", 47447 direction="on", 47448 linebreak="ex", 47449 unicodeslot=0x1945, 47450 }, 47451 [0x1946]={ 47452 category="nd", 47453 description="LIMBU DIGIT ZERO", 47454 direction="l", 47455 linebreak="nu", 47456 unicodeslot=0x1946, 47457 }, 47458 [0x1947]={ 47459 category="nd", 47460 description="LIMBU DIGIT ONE", 47461 direction="l", 47462 linebreak="nu", 47463 unicodeslot=0x1947, 47464 }, 47465 [0x1948]={ 47466 category="nd", 47467 description="LIMBU DIGIT TWO", 47468 direction="l", 47469 linebreak="nu", 47470 unicodeslot=0x1948, 47471 }, 47472 [0x1949]={ 47473 category="nd", 47474 description="LIMBU DIGIT THREE", 47475 direction="l", 47476 linebreak="nu", 47477 unicodeslot=0x1949, 47478 }, 47479 [0x194A]={ 47480 category="nd", 47481 description="LIMBU DIGIT FOUR", 47482 direction="l", 47483 linebreak="nu", 47484 unicodeslot=0x194A, 47485 }, 47486 [0x194B]={ 47487 category="nd", 47488 description="LIMBU DIGIT FIVE", 47489 direction="l", 47490 linebreak="nu", 47491 unicodeslot=0x194B, 47492 }, 47493 [0x194C]={ 47494 category="nd", 47495 description="LIMBU DIGIT SIX", 47496 direction="l", 47497 linebreak="nu", 47498 unicodeslot=0x194C, 47499 }, 47500 [0x194D]={ 47501 category="nd", 47502 description="LIMBU DIGIT SEVEN", 47503 direction="l", 47504 linebreak="nu", 47505 unicodeslot=0x194D, 47506 }, 47507 [0x194E]={ 47508 category="nd", 47509 description="LIMBU DIGIT EIGHT", 47510 direction="l", 47511 linebreak="nu", 47512 unicodeslot=0x194E, 47513 }, 47514 [0x194F]={ 47515 category="nd", 47516 description="LIMBU DIGIT NINE", 47517 direction="l", 47518 linebreak="nu", 47519 unicodeslot=0x194F, 47520 }, 47521 [0x1950]={ 47522 category="lo", 47523 description="TAI LE LETTER KA", 47524 direction="l", 47525 linebreak="sa", 47526 unicodeslot=0x1950, 47527 }, 47528 [0x1951]={ 47529 category="lo", 47530 description="TAI LE LETTER XA", 47531 direction="l", 47532 linebreak="sa", 47533 unicodeslot=0x1951, 47534 }, 47535 [0x1952]={ 47536 category="lo", 47537 description="TAI LE LETTER NGA", 47538 direction="l", 47539 linebreak="sa", 47540 unicodeslot=0x1952, 47541 }, 47542 [0x1953]={ 47543 category="lo", 47544 description="TAI LE LETTER TSA", 47545 direction="l", 47546 linebreak="sa", 47547 unicodeslot=0x1953, 47548 }, 47549 [0x1954]={ 47550 category="lo", 47551 description="TAI LE LETTER SA", 47552 direction="l", 47553 linebreak="sa", 47554 unicodeslot=0x1954, 47555 }, 47556 [0x1955]={ 47557 category="lo", 47558 description="TAI LE LETTER YA", 47559 direction="l", 47560 linebreak="sa", 47561 unicodeslot=0x1955, 47562 }, 47563 [0x1956]={ 47564 category="lo", 47565 description="TAI LE LETTER TA", 47566 direction="l", 47567 linebreak="sa", 47568 unicodeslot=0x1956, 47569 }, 47570 [0x1957]={ 47571 category="lo", 47572 description="TAI LE LETTER THA", 47573 direction="l", 47574 linebreak="sa", 47575 unicodeslot=0x1957, 47576 }, 47577 [0x1958]={ 47578 category="lo", 47579 description="TAI LE LETTER LA", 47580 direction="l", 47581 linebreak="sa", 47582 unicodeslot=0x1958, 47583 }, 47584 [0x1959]={ 47585 category="lo", 47586 description="TAI LE LETTER PA", 47587 direction="l", 47588 linebreak="sa", 47589 unicodeslot=0x1959, 47590 }, 47591 [0x195A]={ 47592 category="lo", 47593 description="TAI LE LETTER PHA", 47594 direction="l", 47595 linebreak="sa", 47596 unicodeslot=0x195A, 47597 }, 47598 [0x195B]={ 47599 category="lo", 47600 description="TAI LE LETTER MA", 47601 direction="l", 47602 linebreak="sa", 47603 unicodeslot=0x195B, 47604 }, 47605 [0x195C]={ 47606 category="lo", 47607 description="TAI LE LETTER FA", 47608 direction="l", 47609 linebreak="sa", 47610 unicodeslot=0x195C, 47611 }, 47612 [0x195D]={ 47613 category="lo", 47614 description="TAI LE LETTER VA", 47615 direction="l", 47616 linebreak="sa", 47617 unicodeslot=0x195D, 47618 }, 47619 [0x195E]={ 47620 category="lo", 47621 description="TAI LE LETTER HA", 47622 direction="l", 47623 linebreak="sa", 47624 unicodeslot=0x195E, 47625 }, 47626 [0x195F]={ 47627 category="lo", 47628 description="TAI LE LETTER QA", 47629 direction="l", 47630 linebreak="sa", 47631 unicodeslot=0x195F, 47632 }, 47633 [0x1960]={ 47634 category="lo", 47635 description="TAI LE LETTER KHA", 47636 direction="l", 47637 linebreak="sa", 47638 unicodeslot=0x1960, 47639 }, 47640 [0x1961]={ 47641 category="lo", 47642 description="TAI LE LETTER TSHA", 47643 direction="l", 47644 linebreak="sa", 47645 unicodeslot=0x1961, 47646 }, 47647 [0x1962]={ 47648 category="lo", 47649 description="TAI LE LETTER NA", 47650 direction="l", 47651 linebreak="sa", 47652 unicodeslot=0x1962, 47653 }, 47654 [0x1963]={ 47655 category="lo", 47656 description="TAI LE LETTER A", 47657 direction="l", 47658 linebreak="sa", 47659 unicodeslot=0x1963, 47660 }, 47661 [0x1964]={ 47662 category="lo", 47663 description="TAI LE LETTER I", 47664 direction="l", 47665 linebreak="sa", 47666 unicodeslot=0x1964, 47667 }, 47668 [0x1965]={ 47669 category="lo", 47670 description="TAI LE LETTER EE", 47671 direction="l", 47672 linebreak="sa", 47673 unicodeslot=0x1965, 47674 }, 47675 [0x1966]={ 47676 category="lo", 47677 description="TAI LE LETTER EH", 47678 direction="l", 47679 linebreak="sa", 47680 unicodeslot=0x1966, 47681 }, 47682 [0x1967]={ 47683 category="lo", 47684 description="TAI LE LETTER U", 47685 direction="l", 47686 linebreak="sa", 47687 unicodeslot=0x1967, 47688 }, 47689 [0x1968]={ 47690 category="lo", 47691 description="TAI LE LETTER OO", 47692 direction="l", 47693 linebreak="sa", 47694 unicodeslot=0x1968, 47695 }, 47696 [0x1969]={ 47697 category="lo", 47698 description="TAI LE LETTER O", 47699 direction="l", 47700 linebreak="sa", 47701 unicodeslot=0x1969, 47702 }, 47703 [0x196A]={ 47704 category="lo", 47705 description="TAI LE LETTER UE", 47706 direction="l", 47707 linebreak="sa", 47708 unicodeslot=0x196A, 47709 }, 47710 [0x196B]={ 47711 category="lo", 47712 description="TAI LE LETTER E", 47713 direction="l", 47714 linebreak="sa", 47715 unicodeslot=0x196B, 47716 }, 47717 [0x196C]={ 47718 category="lo", 47719 description="TAI LE LETTER AUE", 47720 direction="l", 47721 linebreak="sa", 47722 unicodeslot=0x196C, 47723 }, 47724 [0x196D]={ 47725 category="lo", 47726 description="TAI LE LETTER AI", 47727 direction="l", 47728 linebreak="sa", 47729 unicodeslot=0x196D, 47730 }, 47731 [0x1970]={ 47732 category="lo", 47733 description="TAI LE LETTER TONE-0x0002", 47734 direction="l", 47735 linebreak="sa", 47736 unicodeslot=0x1970, 47737 }, 47738 [0x1971]={ 47739 category="lo", 47740 description="TAI LE LETTER TONE-0x0003", 47741 direction="l", 47742 linebreak="sa", 47743 unicodeslot=0x1971, 47744 }, 47745 [0x1972]={ 47746 category="lo", 47747 description="TAI LE LETTER TONE-0x0004", 47748 direction="l", 47749 linebreak="sa", 47750 unicodeslot=0x1972, 47751 }, 47752 [0x1973]={ 47753 category="lo", 47754 description="TAI LE LETTER TONE-0x0005", 47755 direction="l", 47756 linebreak="sa", 47757 unicodeslot=0x1973, 47758 }, 47759 [0x1974]={ 47760 category="lo", 47761 description="TAI LE LETTER TONE-0x0006", 47762 direction="l", 47763 linebreak="sa", 47764 unicodeslot=0x1974, 47765 }, 47766 [0x1980]={ 47767 category="lo", 47768 description="NEW TAI LUE LETTER HIGH QA", 47769 direction="l", 47770 linebreak="sa", 47771 unicodeslot=0x1980, 47772 }, 47773 [0x1981]={ 47774 category="lo", 47775 description="NEW TAI LUE LETTER LOW QA", 47776 direction="l", 47777 linebreak="sa", 47778 unicodeslot=0x1981, 47779 }, 47780 [0x1982]={ 47781 category="lo", 47782 description="NEW TAI LUE LETTER HIGH KA", 47783 direction="l", 47784 linebreak="sa", 47785 unicodeslot=0x1982, 47786 }, 47787 [0x1983]={ 47788 category="lo", 47789 description="NEW TAI LUE LETTER HIGH XA", 47790 direction="l", 47791 linebreak="sa", 47792 unicodeslot=0x1983, 47793 }, 47794 [0x1984]={ 47795 category="lo", 47796 description="NEW TAI LUE LETTER HIGH NGA", 47797 direction="l", 47798 linebreak="sa", 47799 unicodeslot=0x1984, 47800 }, 47801 [0x1985]={ 47802 category="lo", 47803 description="NEW TAI LUE LETTER LOW KA", 47804 direction="l", 47805 linebreak="sa", 47806 unicodeslot=0x1985, 47807 }, 47808 [0x1986]={ 47809 category="lo", 47810 description="NEW TAI LUE LETTER LOW XA", 47811 direction="l", 47812 linebreak="sa", 47813 unicodeslot=0x1986, 47814 }, 47815 [0x1987]={ 47816 category="lo", 47817 description="NEW TAI LUE LETTER LOW NGA", 47818 direction="l", 47819 linebreak="sa", 47820 unicodeslot=0x1987, 47821 }, 47822 [0x1988]={ 47823 category="lo", 47824 description="NEW TAI LUE LETTER HIGH TSA", 47825 direction="l", 47826 linebreak="sa", 47827 unicodeslot=0x1988, 47828 }, 47829 [0x1989]={ 47830 category="lo", 47831 description="NEW TAI LUE LETTER HIGH SA", 47832 direction="l", 47833 linebreak="sa", 47834 unicodeslot=0x1989, 47835 }, 47836 [0x198A]={ 47837 category="lo", 47838 description="NEW TAI LUE LETTER HIGH YA", 47839 direction="l", 47840 linebreak="sa", 47841 unicodeslot=0x198A, 47842 }, 47843 [0x198B]={ 47844 category="lo", 47845 description="NEW TAI LUE LETTER LOW TSA", 47846 direction="l", 47847 linebreak="sa", 47848 unicodeslot=0x198B, 47849 }, 47850 [0x198C]={ 47851 category="lo", 47852 description="NEW TAI LUE LETTER LOW SA", 47853 direction="l", 47854 linebreak="sa", 47855 unicodeslot=0x198C, 47856 }, 47857 [0x198D]={ 47858 category="lo", 47859 description="NEW TAI LUE LETTER LOW YA", 47860 direction="l", 47861 linebreak="sa", 47862 unicodeslot=0x198D, 47863 }, 47864 [0x198E]={ 47865 category="lo", 47866 description="NEW TAI LUE LETTER HIGH TA", 47867 direction="l", 47868 linebreak="sa", 47869 unicodeslot=0x198E, 47870 }, 47871 [0x198F]={ 47872 category="lo", 47873 description="NEW TAI LUE LETTER HIGH THA", 47874 direction="l", 47875 linebreak="sa", 47876 unicodeslot=0x198F, 47877 }, 47878 [0x1990]={ 47879 category="lo", 47880 description="NEW TAI LUE LETTER HIGH NA", 47881 direction="l", 47882 linebreak="sa", 47883 unicodeslot=0x1990, 47884 }, 47885 [0x1991]={ 47886 category="lo", 47887 description="NEW TAI LUE LETTER LOW TA", 47888 direction="l", 47889 linebreak="sa", 47890 unicodeslot=0x1991, 47891 }, 47892 [0x1992]={ 47893 category="lo", 47894 description="NEW TAI LUE LETTER LOW THA", 47895 direction="l", 47896 linebreak="sa", 47897 unicodeslot=0x1992, 47898 }, 47899 [0x1993]={ 47900 category="lo", 47901 description="NEW TAI LUE LETTER LOW NA", 47902 direction="l", 47903 linebreak="sa", 47904 unicodeslot=0x1993, 47905 }, 47906 [0x1994]={ 47907 category="lo", 47908 description="NEW TAI LUE LETTER HIGH PA", 47909 direction="l", 47910 linebreak="sa", 47911 unicodeslot=0x1994, 47912 }, 47913 [0x1995]={ 47914 category="lo", 47915 description="NEW TAI LUE LETTER HIGH PHA", 47916 direction="l", 47917 linebreak="sa", 47918 unicodeslot=0x1995, 47919 }, 47920 [0x1996]={ 47921 category="lo", 47922 description="NEW TAI LUE LETTER HIGH MA", 47923 direction="l", 47924 linebreak="sa", 47925 unicodeslot=0x1996, 47926 }, 47927 [0x1997]={ 47928 category="lo", 47929 description="NEW TAI LUE LETTER LOW PA", 47930 direction="l", 47931 linebreak="sa", 47932 unicodeslot=0x1997, 47933 }, 47934 [0x1998]={ 47935 category="lo", 47936 description="NEW TAI LUE LETTER LOW PHA", 47937 direction="l", 47938 linebreak="sa", 47939 unicodeslot=0x1998, 47940 }, 47941 [0x1999]={ 47942 category="lo", 47943 description="NEW TAI LUE LETTER LOW MA", 47944 direction="l", 47945 linebreak="sa", 47946 unicodeslot=0x1999, 47947 }, 47948 [0x199A]={ 47949 category="lo", 47950 description="NEW TAI LUE LETTER HIGH FA", 47951 direction="l", 47952 linebreak="sa", 47953 unicodeslot=0x199A, 47954 }, 47955 [0x199B]={ 47956 category="lo", 47957 description="NEW TAI LUE LETTER HIGH VA", 47958 direction="l", 47959 linebreak="sa", 47960 unicodeslot=0x199B, 47961 }, 47962 [0x199C]={ 47963 category="lo", 47964 description="NEW TAI LUE LETTER HIGH LA", 47965 direction="l", 47966 linebreak="sa", 47967 unicodeslot=0x199C, 47968 }, 47969 [0x199D]={ 47970 category="lo", 47971 description="NEW TAI LUE LETTER LOW FA", 47972 direction="l", 47973 linebreak="sa", 47974 unicodeslot=0x199D, 47975 }, 47976 [0x199E]={ 47977 category="lo", 47978 description="NEW TAI LUE LETTER LOW VA", 47979 direction="l", 47980 linebreak="sa", 47981 unicodeslot=0x199E, 47982 }, 47983 [0x199F]={ 47984 category="lo", 47985 description="NEW TAI LUE LETTER LOW LA", 47986 direction="l", 47987 linebreak="sa", 47988 unicodeslot=0x199F, 47989 }, 47990 [0x19A0]={ 47991 category="lo", 47992 description="NEW TAI LUE LETTER HIGH HA", 47993 direction="l", 47994 linebreak="sa", 47995 unicodeslot=0x19A0, 47996 }, 47997 [0x19A1]={ 47998 category="lo", 47999 description="NEW TAI LUE LETTER HIGH DA", 48000 direction="l", 48001 linebreak="sa", 48002 unicodeslot=0x19A1, 48003 }, 48004 [0x19A2]={ 48005 category="lo", 48006 description="NEW TAI LUE LETTER HIGH BA", 48007 direction="l", 48008 linebreak="sa", 48009 unicodeslot=0x19A2, 48010 }, 48011 [0x19A3]={ 48012 category="lo", 48013 description="NEW TAI LUE LETTER LOW HA", 48014 direction="l", 48015 linebreak="sa", 48016 unicodeslot=0x19A3, 48017 }, 48018 [0x19A4]={ 48019 category="lo", 48020 description="NEW TAI LUE LETTER LOW DA", 48021 direction="l", 48022 linebreak="sa", 48023 unicodeslot=0x19A4, 48024 }, 48025 [0x19A5]={ 48026 category="lo", 48027 description="NEW TAI LUE LETTER LOW BA", 48028 direction="l", 48029 linebreak="sa", 48030 unicodeslot=0x19A5, 48031 }, 48032 [0x19A6]={ 48033 category="lo", 48034 description="NEW TAI LUE LETTER HIGH KVA", 48035 direction="l", 48036 linebreak="sa", 48037 unicodeslot=0x19A6, 48038 }, 48039 [0x19A7]={ 48040 category="lo", 48041 description="NEW TAI LUE LETTER HIGH XVA", 48042 direction="l", 48043 linebreak="sa", 48044 unicodeslot=0x19A7, 48045 }, 48046 [0x19A8]={ 48047 category="lo", 48048 description="NEW TAI LUE LETTER LOW KVA", 48049 direction="l", 48050 linebreak="sa", 48051 unicodeslot=0x19A8, 48052 }, 48053 [0x19A9]={ 48054 category="lo", 48055 description="NEW TAI LUE LETTER LOW XVA", 48056 direction="l", 48057 linebreak="sa", 48058 unicodeslot=0x19A9, 48059 }, 48060 [0x19AA]={ 48061 category="lo", 48062 description="NEW TAI LUE LETTER HIGH SUA", 48063 direction="l", 48064 linebreak="sa", 48065 unicodeslot=0x19AA, 48066 }, 48067 [0x19AB]={ 48068 category="lo", 48069 description="NEW TAI LUE LETTER LOW SUA", 48070 direction="l", 48071 linebreak="sa", 48072 unicodeslot=0x19AB, 48073 }, 48074 [0x19B0]={ 48075 category="mc", 48076 description="NEW TAI LUE VOWEL SIGN VOWEL SHORTENER", 48077 direction="l", 48078 linebreak="sa", 48079 unicodeslot=0x19B0, 48080 }, 48081 [0x19B1]={ 48082 category="mc", 48083 description="NEW TAI LUE VOWEL SIGN AA", 48084 direction="l", 48085 linebreak="sa", 48086 unicodeslot=0x19B1, 48087 }, 48088 [0x19B2]={ 48089 category="mc", 48090 description="NEW TAI LUE VOWEL SIGN II", 48091 direction="l", 48092 linebreak="sa", 48093 unicodeslot=0x19B2, 48094 }, 48095 [0x19B3]={ 48096 category="mc", 48097 description="NEW TAI LUE VOWEL SIGN U", 48098 direction="l", 48099 linebreak="sa", 48100 unicodeslot=0x19B3, 48101 }, 48102 [0x19B4]={ 48103 category="mc", 48104 description="NEW TAI LUE VOWEL SIGN UU", 48105 direction="l", 48106 linebreak="sa", 48107 unicodeslot=0x19B4, 48108 }, 48109 [0x19B5]={ 48110 category="mc", 48111 description="NEW TAI LUE VOWEL SIGN E", 48112 direction="l", 48113 linebreak="sa", 48114 unicodeslot=0x19B5, 48115 }, 48116 [0x19B6]={ 48117 category="mc", 48118 description="NEW TAI LUE VOWEL SIGN AE", 48119 direction="l", 48120 linebreak="sa", 48121 unicodeslot=0x19B6, 48122 }, 48123 [0x19B7]={ 48124 category="mc", 48125 description="NEW TAI LUE VOWEL SIGN O", 48126 direction="l", 48127 linebreak="sa", 48128 unicodeslot=0x19B7, 48129 }, 48130 [0x19B8]={ 48131 category="mc", 48132 description="NEW TAI LUE VOWEL SIGN OA", 48133 direction="l", 48134 linebreak="sa", 48135 unicodeslot=0x19B8, 48136 }, 48137 [0x19B9]={ 48138 category="mc", 48139 description="NEW TAI LUE VOWEL SIGN UE", 48140 direction="l", 48141 linebreak="sa", 48142 unicodeslot=0x19B9, 48143 }, 48144 [0x19BA]={ 48145 category="mc", 48146 description="NEW TAI LUE VOWEL SIGN AY", 48147 direction="l", 48148 linebreak="sa", 48149 unicodeslot=0x19BA, 48150 }, 48151 [0x19BB]={ 48152 category="mc", 48153 description="NEW TAI LUE VOWEL SIGN AAY", 48154 direction="l", 48155 linebreak="sa", 48156 unicodeslot=0x19BB, 48157 }, 48158 [0x19BC]={ 48159 category="mc", 48160 description="NEW TAI LUE VOWEL SIGN UY", 48161 direction="l", 48162 linebreak="sa", 48163 unicodeslot=0x19BC, 48164 }, 48165 [0x19BD]={ 48166 category="mc", 48167 description="NEW TAI LUE VOWEL SIGN OY", 48168 direction="l", 48169 linebreak="sa", 48170 unicodeslot=0x19BD, 48171 }, 48172 [0x19BE]={ 48173 category="mc", 48174 description="NEW TAI LUE VOWEL SIGN OAY", 48175 direction="l", 48176 linebreak="sa", 48177 unicodeslot=0x19BE, 48178 }, 48179 [0x19BF]={ 48180 category="mc", 48181 description="NEW TAI LUE VOWEL SIGN UEY", 48182 direction="l", 48183 linebreak="sa", 48184 unicodeslot=0x19BF, 48185 }, 48186 [0x19C0]={ 48187 category="mc", 48188 description="NEW TAI LUE VOWEL SIGN IY", 48189 direction="l", 48190 linebreak="sa", 48191 unicodeslot=0x19C0, 48192 }, 48193 [0x19C1]={ 48194 category="lo", 48195 description="NEW TAI LUE LETTER FINAL V", 48196 direction="l", 48197 linebreak="sa", 48198 unicodeslot=0x19C1, 48199 }, 48200 [0x19C2]={ 48201 category="lo", 48202 description="NEW TAI LUE LETTER FINAL NG", 48203 direction="l", 48204 linebreak="sa", 48205 unicodeslot=0x19C2, 48206 }, 48207 [0x19C3]={ 48208 category="lo", 48209 description="NEW TAI LUE LETTER FINAL N", 48210 direction="l", 48211 linebreak="sa", 48212 unicodeslot=0x19C3, 48213 }, 48214 [0x19C4]={ 48215 category="lo", 48216 description="NEW TAI LUE LETTER FINAL M", 48217 direction="l", 48218 linebreak="sa", 48219 unicodeslot=0x19C4, 48220 }, 48221 [0x19C5]={ 48222 category="lo", 48223 description="NEW TAI LUE LETTER FINAL K", 48224 direction="l", 48225 linebreak="sa", 48226 unicodeslot=0x19C5, 48227 }, 48228 [0x19C6]={ 48229 category="lo", 48230 description="NEW TAI LUE LETTER FINAL D", 48231 direction="l", 48232 linebreak="sa", 48233 unicodeslot=0x19C6, 48234 }, 48235 [0x19C7]={ 48236 category="lo", 48237 description="NEW TAI LUE LETTER FINAL B", 48238 direction="l", 48239 linebreak="sa", 48240 unicodeslot=0x19C7, 48241 }, 48242 [0x19C8]={ 48243 category="mc", 48244 description="NEW TAI LUE TONE MARK-0x0001", 48245 direction="l", 48246 linebreak="sa", 48247 unicodeslot=0x19C8, 48248 }, 48249 [0x19C9]={ 48250 category="mc", 48251 description="NEW TAI LUE TONE MARK-0x0002", 48252 direction="l", 48253 linebreak="sa", 48254 unicodeslot=0x19C9, 48255 }, 48256 [0x19D0]={ 48257 category="nd", 48258 description="NEW TAI LUE DIGIT ZERO", 48259 direction="l", 48260 linebreak="nu", 48261 unicodeslot=0x19D0, 48262 }, 48263 [0x19D1]={ 48264 category="nd", 48265 description="NEW TAI LUE DIGIT ONE", 48266 direction="l", 48267 linebreak="nu", 48268 unicodeslot=0x19D1, 48269 }, 48270 [0x19D2]={ 48271 category="nd", 48272 description="NEW TAI LUE DIGIT TWO", 48273 direction="l", 48274 linebreak="nu", 48275 unicodeslot=0x19D2, 48276 }, 48277 [0x19D3]={ 48278 category="nd", 48279 description="NEW TAI LUE DIGIT THREE", 48280 direction="l", 48281 linebreak="nu", 48282 unicodeslot=0x19D3, 48283 }, 48284 [0x19D4]={ 48285 category="nd", 48286 description="NEW TAI LUE DIGIT FOUR", 48287 direction="l", 48288 linebreak="nu", 48289 unicodeslot=0x19D4, 48290 }, 48291 [0x19D5]={ 48292 category="nd", 48293 description="NEW TAI LUE DIGIT FIVE", 48294 direction="l", 48295 linebreak="nu", 48296 unicodeslot=0x19D5, 48297 }, 48298 [0x19D6]={ 48299 category="nd", 48300 description="NEW TAI LUE DIGIT SIX", 48301 direction="l", 48302 linebreak="nu", 48303 unicodeslot=0x19D6, 48304 }, 48305 [0x19D7]={ 48306 category="nd", 48307 description="NEW TAI LUE DIGIT SEVEN", 48308 direction="l", 48309 linebreak="nu", 48310 unicodeslot=0x19D7, 48311 }, 48312 [0x19D8]={ 48313 category="nd", 48314 description="NEW TAI LUE DIGIT EIGHT", 48315 direction="l", 48316 linebreak="nu", 48317 unicodeslot=0x19D8, 48318 }, 48319 [0x19D9]={ 48320 category="nd", 48321 description="NEW TAI LUE DIGIT NINE", 48322 direction="l", 48323 linebreak="nu", 48324 unicodeslot=0x19D9, 48325 }, 48326 [0x19DA]={ 48327 category="no", 48328 description="NEW TAI LUE THAM DIGIT ONE", 48329 direction="l", 48330 linebreak="nu", 48331 unicodeslot=0x19DA, 48332 }, 48333 [0x19DE]={ 48334 category="po", 48335 description="NEW TAI LUE SIGN LAE", 48336 direction="on", 48337 linebreak="sa", 48338 unicodeslot=0x19DE, 48339 }, 48340 [0x19DF]={ 48341 category="po", 48342 description="NEW TAI LUE SIGN LAEV", 48343 direction="on", 48344 linebreak="sa", 48345 unicodeslot=0x19DF, 48346 }, 48347 [0x19E0]={ 48348 category="so", 48349 description="KHMER SYMBOL PATHAMASAT", 48350 direction="on", 48351 linebreak="al", 48352 unicodeslot=0x19E0, 48353 }, 48354 [0x19E1]={ 48355 category="so", 48356 description="KHMER SYMBOL MUOY KOET", 48357 direction="on", 48358 linebreak="al", 48359 unicodeslot=0x19E1, 48360 }, 48361 [0x19E2]={ 48362 category="so", 48363 description="KHMER SYMBOL PII KOET", 48364 direction="on", 48365 linebreak="al", 48366 unicodeslot=0x19E2, 48367 }, 48368 [0x19E3]={ 48369 category="so", 48370 description="KHMER SYMBOL BEI KOET", 48371 direction="on", 48372 linebreak="al", 48373 unicodeslot=0x19E3, 48374 }, 48375 [0x19E4]={ 48376 category="so", 48377 description="KHMER SYMBOL BUON KOET", 48378 direction="on", 48379 linebreak="al", 48380 unicodeslot=0x19E4, 48381 }, 48382 [0x19E5]={ 48383 category="so", 48384 description="KHMER SYMBOL PRAM KOET", 48385 direction="on", 48386 linebreak="al", 48387 unicodeslot=0x19E5, 48388 }, 48389 [0x19E6]={ 48390 category="so", 48391 description="KHMER SYMBOL PRAM-MUOY KOET", 48392 direction="on", 48393 linebreak="al", 48394 unicodeslot=0x19E6, 48395 }, 48396 [0x19E7]={ 48397 category="so", 48398 description="KHMER SYMBOL PRAM-PII KOET", 48399 direction="on", 48400 linebreak="al", 48401 unicodeslot=0x19E7, 48402 }, 48403 [0x19E8]={ 48404 category="so", 48405 description="KHMER SYMBOL PRAM-BEI KOET", 48406 direction="on", 48407 linebreak="al", 48408 unicodeslot=0x19E8, 48409 }, 48410 [0x19E9]={ 48411 category="so", 48412 description="KHMER SYMBOL PRAM-BUON KOET", 48413 direction="on", 48414 linebreak="al", 48415 unicodeslot=0x19E9, 48416 }, 48417 [0x19EA]={ 48418 category="so", 48419 description="KHMER SYMBOL DAP KOET", 48420 direction="on", 48421 linebreak="al", 48422 unicodeslot=0x19EA, 48423 }, 48424 [0x19EB]={ 48425 category="so", 48426 description="KHMER SYMBOL DAP-MUOY KOET", 48427 direction="on", 48428 linebreak="al", 48429 unicodeslot=0x19EB, 48430 }, 48431 [0x19EC]={ 48432 category="so", 48433 description="KHMER SYMBOL DAP-PII KOET", 48434 direction="on", 48435 linebreak="al", 48436 unicodeslot=0x19EC, 48437 }, 48438 [0x19ED]={ 48439 category="so", 48440 description="KHMER SYMBOL DAP-BEI KOET", 48441 direction="on", 48442 linebreak="al", 48443 unicodeslot=0x19ED, 48444 }, 48445 [0x19EE]={ 48446 category="so", 48447 description="KHMER SYMBOL DAP-BUON KOET", 48448 direction="on", 48449 linebreak="al", 48450 unicodeslot=0x19EE, 48451 }, 48452 [0x19EF]={ 48453 category="so", 48454 description="KHMER SYMBOL DAP-PRAM KOET", 48455 direction="on", 48456 linebreak="al", 48457 unicodeslot=0x19EF, 48458 }, 48459 [0x19F0]={ 48460 category="so", 48461 description="KHMER SYMBOL TUTEYASAT", 48462 direction="on", 48463 linebreak="al", 48464 unicodeslot=0x19F0, 48465 }, 48466 [0x19F1]={ 48467 category="so", 48468 description="KHMER SYMBOL MUOY ROC", 48469 direction="on", 48470 linebreak="al", 48471 unicodeslot=0x19F1, 48472 }, 48473 [0x19F2]={ 48474 category="so", 48475 description="KHMER SYMBOL PII ROC", 48476 direction="on", 48477 linebreak="al", 48478 unicodeslot=0x19F2, 48479 }, 48480 [0x19F3]={ 48481 category="so", 48482 description="KHMER SYMBOL BEI ROC", 48483 direction="on", 48484 linebreak="al", 48485 unicodeslot=0x19F3, 48486 }, 48487 [0x19F4]={ 48488 category="so", 48489 description="KHMER SYMBOL BUON ROC", 48490 direction="on", 48491 linebreak="al", 48492 unicodeslot=0x19F4, 48493 }, 48494 [0x19F5]={ 48495 category="so", 48496 description="KHMER SYMBOL PRAM ROC", 48497 direction="on", 48498 linebreak="al", 48499 unicodeslot=0x19F5, 48500 }, 48501 [0x19F6]={ 48502 category="so", 48503 description="KHMER SYMBOL PRAM-MUOY ROC", 48504 direction="on", 48505 linebreak="al", 48506 unicodeslot=0x19F6, 48507 }, 48508 [0x19F7]={ 48509 category="so", 48510 description="KHMER SYMBOL PRAM-PII ROC", 48511 direction="on", 48512 linebreak="al", 48513 unicodeslot=0x19F7, 48514 }, 48515 [0x19F8]={ 48516 category="so", 48517 description="KHMER SYMBOL PRAM-BEI ROC", 48518 direction="on", 48519 linebreak="al", 48520 unicodeslot=0x19F8, 48521 }, 48522 [0x19F9]={ 48523 category="so", 48524 description="KHMER SYMBOL PRAM-BUON ROC", 48525 direction="on", 48526 linebreak="al", 48527 unicodeslot=0x19F9, 48528 }, 48529 [0x19FA]={ 48530 category="so", 48531 description="KHMER SYMBOL DAP ROC", 48532 direction="on", 48533 linebreak="al", 48534 unicodeslot=0x19FA, 48535 }, 48536 [0x19FB]={ 48537 category="so", 48538 description="KHMER SYMBOL DAP-MUOY ROC", 48539 direction="on", 48540 linebreak="al", 48541 unicodeslot=0x19FB, 48542 }, 48543 [0x19FC]={ 48544 category="so", 48545 description="KHMER SYMBOL DAP-PII ROC", 48546 direction="on", 48547 linebreak="al", 48548 unicodeslot=0x19FC, 48549 }, 48550 [0x19FD]={ 48551 category="so", 48552 description="KHMER SYMBOL DAP-BEI ROC", 48553 direction="on", 48554 linebreak="al", 48555 unicodeslot=0x19FD, 48556 }, 48557 [0x19FE]={ 48558 category="so", 48559 description="KHMER SYMBOL DAP-BUON ROC", 48560 direction="on", 48561 linebreak="al", 48562 unicodeslot=0x19FE, 48563 }, 48564 [0x19FF]={ 48565 category="so", 48566 description="KHMER SYMBOL DAP-PRAM ROC", 48567 direction="on", 48568 linebreak="al", 48569 unicodeslot=0x19FF, 48570 }, 48571 [0x1A00]={ 48572 category="lo", 48573 description="BUGINESE LETTER KA", 48574 direction="l", 48575 linebreak="al", 48576 unicodeslot=0x1A00, 48577 }, 48578 [0x1A01]={ 48579 category="lo", 48580 description="BUGINESE LETTER GA", 48581 direction="l", 48582 linebreak="al", 48583 unicodeslot=0x1A01, 48584 }, 48585 [0x1A02]={ 48586 category="lo", 48587 description="BUGINESE LETTER NGA", 48588 direction="l", 48589 linebreak="al", 48590 unicodeslot=0x1A02, 48591 }, 48592 [0x1A03]={ 48593 category="lo", 48594 description="BUGINESE LETTER NGKA", 48595 direction="l", 48596 linebreak="al", 48597 unicodeslot=0x1A03, 48598 }, 48599 [0x1A04]={ 48600 category="lo", 48601 description="BUGINESE LETTER PA", 48602 direction="l", 48603 linebreak="al", 48604 unicodeslot=0x1A04, 48605 }, 48606 [0x1A05]={ 48607 category="lo", 48608 description="BUGINESE LETTER BA", 48609 direction="l", 48610 linebreak="al", 48611 unicodeslot=0x1A05, 48612 }, 48613 [0x1A06]={ 48614 category="lo", 48615 description="BUGINESE LETTER MA", 48616 direction="l", 48617 linebreak="al", 48618 unicodeslot=0x1A06, 48619 }, 48620 [0x1A07]={ 48621 category="lo", 48622 description="BUGINESE LETTER MPA", 48623 direction="l", 48624 linebreak="al", 48625 unicodeslot=0x1A07, 48626 }, 48627 [0x1A08]={ 48628 category="lo", 48629 description="BUGINESE LETTER TA", 48630 direction="l", 48631 linebreak="al", 48632 unicodeslot=0x1A08, 48633 }, 48634 [0x1A09]={ 48635 category="lo", 48636 description="BUGINESE LETTER DA", 48637 direction="l", 48638 linebreak="al", 48639 unicodeslot=0x1A09, 48640 }, 48641 [0x1A0A]={ 48642 category="lo", 48643 description="BUGINESE LETTER NA", 48644 direction="l", 48645 linebreak="al", 48646 unicodeslot=0x1A0A, 48647 }, 48648 [0x1A0B]={ 48649 category="lo", 48650 description="BUGINESE LETTER NRA", 48651 direction="l", 48652 linebreak="al", 48653 unicodeslot=0x1A0B, 48654 }, 48655 [0x1A0C]={ 48656 category="lo", 48657 description="BUGINESE LETTER CA", 48658 direction="l", 48659 linebreak="al", 48660 unicodeslot=0x1A0C, 48661 }, 48662 [0x1A0D]={ 48663 category="lo", 48664 description="BUGINESE LETTER JA", 48665 direction="l", 48666 linebreak="al", 48667 unicodeslot=0x1A0D, 48668 }, 48669 [0x1A0E]={ 48670 category="lo", 48671 description="BUGINESE LETTER NYA", 48672 direction="l", 48673 linebreak="al", 48674 unicodeslot=0x1A0E, 48675 }, 48676 [0x1A0F]={ 48677 category="lo", 48678 description="BUGINESE LETTER NYCA", 48679 direction="l", 48680 linebreak="al", 48681 unicodeslot=0x1A0F, 48682 }, 48683 [0x1A10]={ 48684 category="lo", 48685 description="BUGINESE LETTER YA", 48686 direction="l", 48687 linebreak="al", 48688 unicodeslot=0x1A10, 48689 }, 48690 [0x1A11]={ 48691 category="lo", 48692 description="BUGINESE LETTER RA", 48693 direction="l", 48694 linebreak="al", 48695 unicodeslot=0x1A11, 48696 }, 48697 [0x1A12]={ 48698 category="lo", 48699 description="BUGINESE LETTER LA", 48700 direction="l", 48701 linebreak="al", 48702 unicodeslot=0x1A12, 48703 }, 48704 [0x1A13]={ 48705 category="lo", 48706 description="BUGINESE LETTER VA", 48707 direction="l", 48708 linebreak="al", 48709 unicodeslot=0x1A13, 48710 }, 48711 [0x1A14]={ 48712 category="lo", 48713 description="BUGINESE LETTER SA", 48714 direction="l", 48715 linebreak="al", 48716 unicodeslot=0x1A14, 48717 }, 48718 [0x1A15]={ 48719 category="lo", 48720 description="BUGINESE LETTER A", 48721 direction="l", 48722 linebreak="al", 48723 unicodeslot=0x1A15, 48724 }, 48725 [0x1A16]={ 48726 category="lo", 48727 description="BUGINESE LETTER HA", 48728 direction="l", 48729 linebreak="al", 48730 unicodeslot=0x1A16, 48731 }, 48732 [0x1A17]={ 48733 category="mn", 48734 combining=0xE6, 48735 description="BUGINESE VOWEL SIGN I", 48736 direction="nsm", 48737 linebreak="cm", 48738 unicodeslot=0x1A17, 48739 }, 48740 [0x1A18]={ 48741 category="mn", 48742 combining=0xDC, 48743 description="BUGINESE VOWEL SIGN U", 48744 direction="nsm", 48745 linebreak="cm", 48746 unicodeslot=0x1A18, 48747 }, 48748 [0x1A19]={ 48749 category="mc", 48750 description="BUGINESE VOWEL SIGN E", 48751 direction="l", 48752 linebreak="cm", 48753 unicodeslot=0x1A19, 48754 }, 48755 [0x1A1A]={ 48756 category="mc", 48757 description="BUGINESE VOWEL SIGN O", 48758 direction="l", 48759 linebreak="cm", 48760 unicodeslot=0x1A1A, 48761 }, 48762 [0x1A1B]={ 48763 category="mc", 48764 description="BUGINESE VOWEL SIGN AE", 48765 direction="nsm", 48766 linebreak="cm", 48767 unicodeslot=0x1A1B, 48768 }, 48769 [0x1A1E]={ 48770 category="po", 48771 description="BUGINESE PALLAWA", 48772 direction="l", 48773 linebreak="al", 48774 unicodeslot=0x1A1E, 48775 }, 48776 [0x1A1F]={ 48777 category="po", 48778 description="BUGINESE END OF SECTION", 48779 direction="l", 48780 linebreak="al", 48781 unicodeslot=0x1A1F, 48782 }, 48783 [0x1A20]={ 48784 category="lo", 48785 description="TAI THAM LETTER HIGH KA", 48786 direction="l", 48787 linebreak="sa", 48788 unicodeslot=0x1A20, 48789 }, 48790 [0x1A21]={ 48791 category="lo", 48792 description="TAI THAM LETTER HIGH KHA", 48793 direction="l", 48794 linebreak="sa", 48795 unicodeslot=0x1A21, 48796 }, 48797 [0x1A22]={ 48798 category="lo", 48799 description="TAI THAM LETTER HIGH KXA", 48800 direction="l", 48801 linebreak="sa", 48802 unicodeslot=0x1A22, 48803 }, 48804 [0x1A23]={ 48805 category="lo", 48806 description="TAI THAM LETTER LOW KA", 48807 direction="l", 48808 linebreak="sa", 48809 unicodeslot=0x1A23, 48810 }, 48811 [0x1A24]={ 48812 category="lo", 48813 description="TAI THAM LETTER LOW KXA", 48814 direction="l", 48815 linebreak="sa", 48816 unicodeslot=0x1A24, 48817 }, 48818 [0x1A25]={ 48819 category="lo", 48820 description="TAI THAM LETTER LOW KHA", 48821 direction="l", 48822 linebreak="sa", 48823 unicodeslot=0x1A25, 48824 }, 48825 [0x1A26]={ 48826 category="lo", 48827 description="TAI THAM LETTER NGA", 48828 direction="l", 48829 linebreak="sa", 48830 unicodeslot=0x1A26, 48831 }, 48832 [0x1A27]={ 48833 category="lo", 48834 description="TAI THAM LETTER HIGH CA", 48835 direction="l", 48836 linebreak="sa", 48837 unicodeslot=0x1A27, 48838 }, 48839 [0x1A28]={ 48840 category="lo", 48841 description="TAI THAM LETTER HIGH CHA", 48842 direction="l", 48843 linebreak="sa", 48844 unicodeslot=0x1A28, 48845 }, 48846 [0x1A29]={ 48847 category="lo", 48848 description="TAI THAM LETTER LOW CA", 48849 direction="l", 48850 linebreak="sa", 48851 unicodeslot=0x1A29, 48852 }, 48853 [0x1A2A]={ 48854 category="lo", 48855 description="TAI THAM LETTER LOW SA", 48856 direction="l", 48857 linebreak="sa", 48858 unicodeslot=0x1A2A, 48859 }, 48860 [0x1A2B]={ 48861 category="lo", 48862 description="TAI THAM LETTER LOW CHA", 48863 direction="l", 48864 linebreak="sa", 48865 unicodeslot=0x1A2B, 48866 }, 48867 [0x1A2C]={ 48868 category="lo", 48869 description="TAI THAM LETTER NYA", 48870 direction="l", 48871 linebreak="sa", 48872 unicodeslot=0x1A2C, 48873 }, 48874 [0x1A2D]={ 48875 category="lo", 48876 description="TAI THAM LETTER RATA", 48877 direction="l", 48878 linebreak="sa", 48879 unicodeslot=0x1A2D, 48880 }, 48881 [0x1A2E]={ 48882 category="lo", 48883 description="TAI THAM LETTER HIGH RATHA", 48884 direction="l", 48885 linebreak="sa", 48886 unicodeslot=0x1A2E, 48887 }, 48888 [0x1A2F]={ 48889 category="lo", 48890 description="TAI THAM LETTER DA", 48891 direction="l", 48892 linebreak="sa", 48893 unicodeslot=0x1A2F, 48894 }, 48895 [0x1A30]={ 48896 category="lo", 48897 description="TAI THAM LETTER LOW RATHA", 48898 direction="l", 48899 linebreak="sa", 48900 unicodeslot=0x1A30, 48901 }, 48902 [0x1A31]={ 48903 category="lo", 48904 description="TAI THAM LETTER RANA", 48905 direction="l", 48906 linebreak="sa", 48907 unicodeslot=0x1A31, 48908 }, 48909 [0x1A32]={ 48910 category="lo", 48911 description="TAI THAM LETTER HIGH TA", 48912 direction="l", 48913 linebreak="sa", 48914 unicodeslot=0x1A32, 48915 }, 48916 [0x1A33]={ 48917 category="lo", 48918 description="TAI THAM LETTER HIGH THA", 48919 direction="l", 48920 linebreak="sa", 48921 unicodeslot=0x1A33, 48922 }, 48923 [0x1A34]={ 48924 category="lo", 48925 description="TAI THAM LETTER LOW TA", 48926 direction="l", 48927 linebreak="sa", 48928 unicodeslot=0x1A34, 48929 }, 48930 [0x1A35]={ 48931 category="lo", 48932 description="TAI THAM LETTER LOW THA", 48933 direction="l", 48934 linebreak="sa", 48935 unicodeslot=0x1A35, 48936 }, 48937 [0x1A36]={ 48938 category="lo", 48939 description="TAI THAM LETTER NA", 48940 direction="l", 48941 linebreak="sa", 48942 unicodeslot=0x1A36, 48943 }, 48944 [0x1A37]={ 48945 category="lo", 48946 description="TAI THAM LETTER BA", 48947 direction="l", 48948 linebreak="sa", 48949 unicodeslot=0x1A37, 48950 }, 48951 [0x1A38]={ 48952 category="lo", 48953 description="TAI THAM LETTER HIGH PA", 48954 direction="l", 48955 linebreak="sa", 48956 unicodeslot=0x1A38, 48957 }, 48958 [0x1A39]={ 48959 category="lo", 48960 description="TAI THAM LETTER HIGH PHA", 48961 direction="l", 48962 linebreak="sa", 48963 unicodeslot=0x1A39, 48964 }, 48965 [0x1A3A]={ 48966 category="lo", 48967 description="TAI THAM LETTER HIGH FA", 48968 direction="l", 48969 linebreak="sa", 48970 unicodeslot=0x1A3A, 48971 }, 48972 [0x1A3B]={ 48973 category="lo", 48974 description="TAI THAM LETTER LOW PA", 48975 direction="l", 48976 linebreak="sa", 48977 unicodeslot=0x1A3B, 48978 }, 48979 [0x1A3C]={ 48980 category="lo", 48981 description="TAI THAM LETTER LOW FA", 48982 direction="l", 48983 linebreak="sa", 48984 unicodeslot=0x1A3C, 48985 }, 48986 [0x1A3D]={ 48987 category="lo", 48988 description="TAI THAM LETTER LOW PHA", 48989 direction="l", 48990 linebreak="sa", 48991 unicodeslot=0x1A3D, 48992 }, 48993 [0x1A3E]={ 48994 category="lo", 48995 description="TAI THAM LETTER MA", 48996 direction="l", 48997 linebreak="sa", 48998 unicodeslot=0x1A3E, 48999 }, 49000 [0x1A3F]={ 49001 category="lo", 49002 description="TAI THAM LETTER LOW YA", 49003 direction="l", 49004 linebreak="sa", 49005 unicodeslot=0x1A3F, 49006 }, 49007 [0x1A40]={ 49008 category="lo", 49009 description="TAI THAM LETTER HIGH YA", 49010 direction="l", 49011 linebreak="sa", 49012 unicodeslot=0x1A40, 49013 }, 49014 [0x1A41]={ 49015 category="lo", 49016 description="TAI THAM LETTER RA", 49017 direction="l", 49018 linebreak="sa", 49019 unicodeslot=0x1A41, 49020 }, 49021 [0x1A42]={ 49022 category="lo", 49023 description="TAI THAM LETTER RUE", 49024 direction="l", 49025 linebreak="sa", 49026 unicodeslot=0x1A42, 49027 }, 49028 [0x1A43]={ 49029 category="lo", 49030 description="TAI THAM LETTER LA", 49031 direction="l", 49032 linebreak="sa", 49033 unicodeslot=0x1A43, 49034 }, 49035 [0x1A44]={ 49036 category="lo", 49037 description="TAI THAM LETTER LUE", 49038 direction="l", 49039 linebreak="sa", 49040 unicodeslot=0x1A44, 49041 }, 49042 [0x1A45]={ 49043 category="lo", 49044 description="TAI THAM LETTER WA", 49045 direction="l", 49046 linebreak="sa", 49047 unicodeslot=0x1A45, 49048 }, 49049 [0x1A46]={ 49050 category="lo", 49051 description="TAI THAM LETTER HIGH SHA", 49052 direction="l", 49053 linebreak="sa", 49054 unicodeslot=0x1A46, 49055 }, 49056 [0x1A47]={ 49057 category="lo", 49058 description="TAI THAM LETTER HIGH SSA", 49059 direction="l", 49060 linebreak="sa", 49061 unicodeslot=0x1A47, 49062 }, 49063 [0x1A48]={ 49064 category="lo", 49065 description="TAI THAM LETTER HIGH SA", 49066 direction="l", 49067 linebreak="sa", 49068 unicodeslot=0x1A48, 49069 }, 49070 [0x1A49]={ 49071 category="lo", 49072 description="TAI THAM LETTER HIGH HA", 49073 direction="l", 49074 linebreak="sa", 49075 unicodeslot=0x1A49, 49076 }, 49077 [0x1A4A]={ 49078 category="lo", 49079 description="TAI THAM LETTER LLA", 49080 direction="l", 49081 linebreak="sa", 49082 unicodeslot=0x1A4A, 49083 }, 49084 [0x1A4B]={ 49085 category="lo", 49086 description="TAI THAM LETTER A", 49087 direction="l", 49088 linebreak="sa", 49089 unicodeslot=0x1A4B, 49090 }, 49091 [0x1A4C]={ 49092 category="lo", 49093 description="TAI THAM LETTER LOW HA", 49094 direction="l", 49095 linebreak="sa", 49096 unicodeslot=0x1A4C, 49097 }, 49098 [0x1A4D]={ 49099 category="lo", 49100 description="TAI THAM LETTER I", 49101 direction="l", 49102 linebreak="sa", 49103 unicodeslot=0x1A4D, 49104 }, 49105 [0x1A4E]={ 49106 category="lo", 49107 description="TAI THAM LETTER II", 49108 direction="l", 49109 linebreak="sa", 49110 unicodeslot=0x1A4E, 49111 }, 49112 [0x1A4F]={ 49113 category="lo", 49114 description="TAI THAM LETTER U", 49115 direction="l", 49116 linebreak="sa", 49117 unicodeslot=0x1A4F, 49118 }, 49119 [0x1A50]={ 49120 category="lo", 49121 description="TAI THAM LETTER UU", 49122 direction="l", 49123 linebreak="sa", 49124 unicodeslot=0x1A50, 49125 }, 49126 [0x1A51]={ 49127 category="lo", 49128 description="TAI THAM LETTER EE", 49129 direction="l", 49130 linebreak="sa", 49131 unicodeslot=0x1A51, 49132 }, 49133 [0x1A52]={ 49134 category="lo", 49135 description="TAI THAM LETTER OO", 49136 direction="l", 49137 linebreak="sa", 49138 unicodeslot=0x1A52, 49139 }, 49140 [0x1A53]={ 49141 category="lo", 49142 description="TAI THAM LETTER LAE", 49143 direction="l", 49144 linebreak="sa", 49145 unicodeslot=0x1A53, 49146 }, 49147 [0x1A54]={ 49148 category="lo", 49149 description="TAI THAM LETTER GREAT SA", 49150 direction="l", 49151 linebreak="sa", 49152 unicodeslot=0x1A54, 49153 }, 49154 [0x1A55]={ 49155 category="mc", 49156 description="TAI THAM CONSONANT SIGN MEDIAL RA", 49157 direction="l", 49158 linebreak="sa", 49159 unicodeslot=0x1A55, 49160 }, 49161 [0x1A56]={ 49162 category="mn", 49163 description="TAI THAM CONSONANT SIGN MEDIAL LA", 49164 direction="nsm", 49165 linebreak="sa", 49166 unicodeslot=0x1A56, 49167 }, 49168 [0x1A57]={ 49169 category="mc", 49170 description="TAI THAM CONSONANT SIGN LA TANG LAI", 49171 direction="l", 49172 linebreak="sa", 49173 unicodeslot=0x1A57, 49174 }, 49175 [0x1A58]={ 49176 category="mn", 49177 description="TAI THAM SIGN MAI KANG LAI", 49178 direction="nsm", 49179 linebreak="sa", 49180 unicodeslot=0x1A58, 49181 }, 49182 [0x1A59]={ 49183 category="mn", 49184 description="TAI THAM CONSONANT SIGN FINAL NGA", 49185 direction="nsm", 49186 linebreak="sa", 49187 unicodeslot=0x1A59, 49188 }, 49189 [0x1A5A]={ 49190 category="mn", 49191 description="TAI THAM CONSONANT SIGN LOW PA", 49192 direction="nsm", 49193 linebreak="sa", 49194 unicodeslot=0x1A5A, 49195 }, 49196 [0x1A5B]={ 49197 category="mn", 49198 description="TAI THAM CONSONANT SIGN HIGH RATHA OR LOW PA", 49199 direction="nsm", 49200 linebreak="sa", 49201 unicodeslot=0x1A5B, 49202 }, 49203 [0x1A5C]={ 49204 category="mn", 49205 description="TAI THAM CONSONANT SIGN MA", 49206 direction="nsm", 49207 linebreak="sa", 49208 unicodeslot=0x1A5C, 49209 }, 49210 [0x1A5D]={ 49211 category="mn", 49212 description="TAI THAM CONSONANT SIGN BA", 49213 direction="nsm", 49214 linebreak="sa", 49215 unicodeslot=0x1A5D, 49216 }, 49217 [0x1A5E]={ 49218 category="mn", 49219 description="TAI THAM CONSONANT SIGN SA", 49220 direction="nsm", 49221 linebreak="sa", 49222 unicodeslot=0x1A5E, 49223 }, 49224 [0x1A60]={ 49225 category="mn", 49226 combining=0x9, 49227 description="TAI THAM SIGN SAKOT", 49228 direction="nsm", 49229 linebreak="sa", 49230 unicodeslot=0x1A60, 49231 }, 49232 [0x1A61]={ 49233 category="mc", 49234 description="TAI THAM VOWEL SIGN A", 49235 direction="l", 49236 linebreak="sa", 49237 unicodeslot=0x1A61, 49238 }, 49239 [0x1A62]={ 49240 category="mn", 49241 description="TAI THAM VOWEL SIGN MAI SAT", 49242 direction="nsm", 49243 linebreak="sa", 49244 unicodeslot=0x1A62, 49245 }, 49246 [0x1A63]={ 49247 category="mc", 49248 description="TAI THAM VOWEL SIGN AA", 49249 direction="l", 49250 linebreak="sa", 49251 unicodeslot=0x1A63, 49252 }, 49253 [0x1A64]={ 49254 category="mc", 49255 description="TAI THAM VOWEL SIGN TALL AA", 49256 direction="l", 49257 linebreak="sa", 49258 unicodeslot=0x1A64, 49259 }, 49260 [0x1A65]={ 49261 category="mn", 49262 description="TAI THAM VOWEL SIGN I", 49263 direction="nsm", 49264 linebreak="sa", 49265 unicodeslot=0x1A65, 49266 }, 49267 [0x1A66]={ 49268 category="mn", 49269 description="TAI THAM VOWEL SIGN II", 49270 direction="nsm", 49271 linebreak="sa", 49272 unicodeslot=0x1A66, 49273 }, 49274 [0x1A67]={ 49275 category="mn", 49276 description="TAI THAM VOWEL SIGN UE", 49277 direction="nsm", 49278 linebreak="sa", 49279 unicodeslot=0x1A67, 49280 }, 49281 [0x1A68]={ 49282 category="mn", 49283 description="TAI THAM VOWEL SIGN UUE", 49284 direction="nsm", 49285 linebreak="sa", 49286 unicodeslot=0x1A68, 49287 }, 49288 [0x1A69]={ 49289 category="mn", 49290 description="TAI THAM VOWEL SIGN U", 49291 direction="nsm", 49292 linebreak="sa", 49293 unicodeslot=0x1A69, 49294 }, 49295 [0x1A6A]={ 49296 category="mn", 49297 description="TAI THAM VOWEL SIGN UU", 49298 direction="nsm", 49299 linebreak="sa", 49300 unicodeslot=0x1A6A, 49301 }, 49302 [0x1A6B]={ 49303 category="mn", 49304 description="TAI THAM VOWEL SIGN O", 49305 direction="nsm", 49306 linebreak="sa", 49307 unicodeslot=0x1A6B, 49308 }, 49309 [0x1A6C]={ 49310 category="mn", 49311 description="TAI THAM VOWEL SIGN OA BELOW", 49312 direction="nsm", 49313 linebreak="sa", 49314 unicodeslot=0x1A6C, 49315 }, 49316 [0x1A6D]={ 49317 category="mc", 49318 description="TAI THAM VOWEL SIGN OY", 49319 direction="l", 49320 linebreak="sa", 49321 unicodeslot=0x1A6D, 49322 }, 49323 [0x1A6E]={ 49324 category="mc", 49325 description="TAI THAM VOWEL SIGN E", 49326 direction="l", 49327 linebreak="sa", 49328 unicodeslot=0x1A6E, 49329 }, 49330 [0x1A6F]={ 49331 category="mc", 49332 description="TAI THAM VOWEL SIGN AE", 49333 direction="l", 49334 linebreak="sa", 49335 unicodeslot=0x1A6F, 49336 }, 49337 [0x1A70]={ 49338 category="mc", 49339 description="TAI THAM VOWEL SIGN OO", 49340 direction="l", 49341 linebreak="sa", 49342 unicodeslot=0x1A70, 49343 }, 49344 [0x1A71]={ 49345 category="mc", 49346 description="TAI THAM VOWEL SIGN AI", 49347 direction="l", 49348 linebreak="sa", 49349 unicodeslot=0x1A71, 49350 }, 49351 [0x1A72]={ 49352 category="mc", 49353 description="TAI THAM VOWEL SIGN THAM AI", 49354 direction="l", 49355 linebreak="sa", 49356 unicodeslot=0x1A72, 49357 }, 49358 [0x1A73]={ 49359 category="mn", 49360 description="TAI THAM VOWEL SIGN OA ABOVE", 49361 direction="nsm", 49362 linebreak="sa", 49363 unicodeslot=0x1A73, 49364 }, 49365 [0x1A74]={ 49366 category="mn", 49367 description="TAI THAM SIGN MAI KANG", 49368 direction="nsm", 49369 linebreak="sa", 49370 unicodeslot=0x1A74, 49371 }, 49372 [0x1A75]={ 49373 category="mn", 49374 combining=0xE6, 49375 description="TAI THAM SIGN TONE-1", 49376 direction="nsm", 49377 linebreak="sa", 49378 unicodeslot=0x1A75, 49379 }, 49380 [0x1A76]={ 49381 category="mn", 49382 combining=0xE6, 49383 description="TAI THAM SIGN TONE-2", 49384 direction="nsm", 49385 linebreak="sa", 49386 unicodeslot=0x1A76, 49387 }, 49388 [0x1A77]={ 49389 category="mn", 49390 combining=0xE6, 49391 description="TAI THAM SIGN KHUEN TONE-3", 49392 direction="nsm", 49393 linebreak="sa", 49394 unicodeslot=0x1A77, 49395 }, 49396 [0x1A78]={ 49397 category="mn", 49398 combining=0xE6, 49399 description="TAI THAM SIGN KHUEN TONE-4", 49400 direction="nsm", 49401 linebreak="sa", 49402 unicodeslot=0x1A78, 49403 }, 49404 [0x1A79]={ 49405 category="mn", 49406 combining=0xE6, 49407 description="TAI THAM SIGN KHUEN TONE-5", 49408 direction="nsm", 49409 linebreak="sa", 49410 unicodeslot=0x1A79, 49411 }, 49412 [0x1A7A]={ 49413 category="mn", 49414 combining=0xE6, 49415 description="TAI THAM SIGN RA HAAM", 49416 direction="nsm", 49417 linebreak="sa", 49418 unicodeslot=0x1A7A, 49419 }, 49420 [0x1A7B]={ 49421 category="mn", 49422 combining=0xE6, 49423 description="TAI THAM SIGN MAI SAM", 49424 direction="nsm", 49425 linebreak="sa", 49426 unicodeslot=0x1A7B, 49427 }, 49428 [0x1A7C]={ 49429 category="mn", 49430 combining=0xE6, 49431 description="TAI THAM SIGN KHUEN-LUE KARAN", 49432 direction="nsm", 49433 linebreak="sa", 49434 unicodeslot=0x1A7C, 49435 }, 49436 [0x1A7F]={ 49437 category="mn", 49438 combining=0xDC, 49439 description="TAI THAM COMBINING CRYPTOGRAMMIC DOT", 49440 direction="nsm", 49441 linebreak="cm", 49442 unicodeslot=0x1A7F, 49443 }, 49444 [0x1A80]={ 49445 category="nd", 49446 description="TAI THAM HORA DIGIT ZERO", 49447 direction="l", 49448 linebreak="nu", 49449 unicodeslot=0x1A80, 49450 }, 49451 [0x1A81]={ 49452 category="nd", 49453 description="TAI THAM HORA DIGIT ONE", 49454 direction="l", 49455 linebreak="nu", 49456 unicodeslot=0x1A81, 49457 }, 49458 [0x1A82]={ 49459 category="nd", 49460 description="TAI THAM HORA DIGIT TWO", 49461 direction="l", 49462 linebreak="nu", 49463 unicodeslot=0x1A82, 49464 }, 49465 [0x1A83]={ 49466 category="nd", 49467 description="TAI THAM HORA DIGIT THREE", 49468 direction="l", 49469 linebreak="nu", 49470 unicodeslot=0x1A83, 49471 }, 49472 [0x1A84]={ 49473 category="nd", 49474 description="TAI THAM HORA DIGIT FOUR", 49475 direction="l", 49476 linebreak="nu", 49477 unicodeslot=0x1A84, 49478 }, 49479 [0x1A85]={ 49480 category="nd", 49481 description="TAI THAM HORA DIGIT FIVE", 49482 direction="l", 49483 linebreak="nu", 49484 unicodeslot=0x1A85, 49485 }, 49486 [0x1A86]={ 49487 category="nd", 49488 description="TAI THAM HORA DIGIT SIX", 49489 direction="l", 49490 linebreak="nu", 49491 unicodeslot=0x1A86, 49492 }, 49493 [0x1A87]={ 49494 category="nd", 49495 description="TAI THAM HORA DIGIT SEVEN", 49496 direction="l", 49497 linebreak="nu", 49498 unicodeslot=0x1A87, 49499 }, 49500 [0x1A88]={ 49501 category="nd", 49502 description="TAI THAM HORA DIGIT EIGHT", 49503 direction="l", 49504 linebreak="nu", 49505 unicodeslot=0x1A88, 49506 }, 49507 [0x1A89]={ 49508 category="nd", 49509 description="TAI THAM HORA DIGIT NINE", 49510 direction="l", 49511 linebreak="nu", 49512 unicodeslot=0x1A89, 49513 }, 49514 [0x1A90]={ 49515 category="nd", 49516 description="TAI THAM THAM DIGIT ZERO", 49517 direction="l", 49518 linebreak="nu", 49519 unicodeslot=0x1A90, 49520 }, 49521 [0x1A91]={ 49522 category="nd", 49523 description="TAI THAM THAM DIGIT ONE", 49524 direction="l", 49525 linebreak="nu", 49526 unicodeslot=0x1A91, 49527 }, 49528 [0x1A92]={ 49529 category="nd", 49530 description="TAI THAM THAM DIGIT TWO", 49531 direction="l", 49532 linebreak="nu", 49533 unicodeslot=0x1A92, 49534 }, 49535 [0x1A93]={ 49536 category="nd", 49537 description="TAI THAM THAM DIGIT THREE", 49538 direction="l", 49539 linebreak="nu", 49540 unicodeslot=0x1A93, 49541 }, 49542 [0x1A94]={ 49543 category="nd", 49544 description="TAI THAM THAM DIGIT FOUR", 49545 direction="l", 49546 linebreak="nu", 49547 unicodeslot=0x1A94, 49548 }, 49549 [0x1A95]={ 49550 category="nd", 49551 description="TAI THAM THAM DIGIT FIVE", 49552 direction="l", 49553 linebreak="nu", 49554 unicodeslot=0x1A95, 49555 }, 49556 [0x1A96]={ 49557 category="nd", 49558 description="TAI THAM THAM DIGIT SIX", 49559 direction="l", 49560 linebreak="nu", 49561 unicodeslot=0x1A96, 49562 }, 49563 [0x1A97]={ 49564 category="nd", 49565 description="TAI THAM THAM DIGIT SEVEN", 49566 direction="l", 49567 linebreak="nu", 49568 unicodeslot=0x1A97, 49569 }, 49570 [0x1A98]={ 49571 category="nd", 49572 description="TAI THAM THAM DIGIT EIGHT", 49573 direction="l", 49574 linebreak="nu", 49575 unicodeslot=0x1A98, 49576 }, 49577 [0x1A99]={ 49578 category="nd", 49579 description="TAI THAM THAM DIGIT NINE", 49580 direction="l", 49581 linebreak="nu", 49582 unicodeslot=0x1A99, 49583 }, 49584 [0x1AA0]={ 49585 category="po", 49586 description="TAI THAM SIGN WIANG", 49587 direction="l", 49588 linebreak="sa", 49589 unicodeslot=0x1AA0, 49590 }, 49591 [0x1AA1]={ 49592 category="po", 49593 description="TAI THAM SIGN WIANGWAAK", 49594 direction="l", 49595 linebreak="sa", 49596 unicodeslot=0x1AA1, 49597 }, 49598 [0x1AA2]={ 49599 category="po", 49600 description="TAI THAM SIGN SAWAN", 49601 direction="l", 49602 linebreak="sa", 49603 unicodeslot=0x1AA2, 49604 }, 49605 [0x1AA3]={ 49606 category="po", 49607 description="TAI THAM SIGN KEOW", 49608 direction="l", 49609 linebreak="sa", 49610 unicodeslot=0x1AA3, 49611 }, 49612 [0x1AA4]={ 49613 category="po", 49614 description="TAI THAM SIGN HOY", 49615 direction="l", 49616 linebreak="sa", 49617 unicodeslot=0x1AA4, 49618 }, 49619 [0x1AA5]={ 49620 category="po", 49621 description="TAI THAM SIGN DOKMAI", 49622 direction="l", 49623 linebreak="sa", 49624 unicodeslot=0x1AA5, 49625 }, 49626 [0x1AA6]={ 49627 category="po", 49628 description="TAI THAM SIGN REVERSED ROTATED RANA", 49629 direction="l", 49630 linebreak="sa", 49631 unicodeslot=0x1AA6, 49632 }, 49633 [0x1AA7]={ 49634 category="lm", 49635 description="TAI THAM SIGN MAI YAMOK", 49636 direction="l", 49637 linebreak="sa", 49638 unicodeslot=0x1AA7, 49639 }, 49640 [0x1AA8]={ 49641 category="po", 49642 description="TAI THAM SIGN KAAN", 49643 direction="l", 49644 linebreak="sa", 49645 unicodeslot=0x1AA8, 49646 }, 49647 [0x1AA9]={ 49648 category="po", 49649 description="TAI THAM SIGN KAANKUU", 49650 direction="l", 49651 linebreak="sa", 49652 unicodeslot=0x1AA9, 49653 }, 49654 [0x1AAA]={ 49655 category="po", 49656 description="TAI THAM SIGN SATKAAN", 49657 direction="l", 49658 linebreak="sa", 49659 unicodeslot=0x1AAA, 49660 }, 49661 [0x1AAB]={ 49662 category="po", 49663 description="TAI THAM SIGN SATKAANKUU", 49664 direction="l", 49665 linebreak="sa", 49666 unicodeslot=0x1AAB, 49667 }, 49668 [0x1AAC]={ 49669 category="po", 49670 description="TAI THAM SIGN HANG", 49671 direction="l", 49672 linebreak="sa", 49673 unicodeslot=0x1AAC, 49674 }, 49675 [0x1AAD]={ 49676 category="po", 49677 description="TAI THAM SIGN CAANG", 49678 direction="l", 49679 linebreak="sa", 49680 unicodeslot=0x1AAD, 49681 }, 49682 [0x1AB0]={ 49683 category="mn", 49684 combining=0xE6, 49685 description="COMBINING DOUBLED CIRCUMFLEX ACCENT", 49686 direction="nsm", 49687 linebreak="cm", 49688 unicodeslot=0x1AB0, 49689 }, 49690 [0x1AB1]={ 49691 category="mn", 49692 combining=0xE6, 49693 description="COMBINING DIAERESIS-RING", 49694 direction="nsm", 49695 linebreak="cm", 49696 unicodeslot=0x1AB1, 49697 }, 49698 [0x1AB2]={ 49699 category="mn", 49700 combining=0xE6, 49701 description="COMBINING INFINITY", 49702 direction="nsm", 49703 linebreak="cm", 49704 unicodeslot=0x1AB2, 49705 }, 49706 [0x1AB3]={ 49707 category="mn", 49708 combining=0xE6, 49709 description="COMBINING DOWNWARDS ARROW", 49710 direction="nsm", 49711 linebreak="cm", 49712 unicodeslot=0x1AB3, 49713 }, 49714 [0x1AB4]={ 49715 category="mn", 49716 combining=0xE6, 49717 description="COMBINING TRIPLE DOT", 49718 direction="nsm", 49719 linebreak="cm", 49720 unicodeslot=0x1AB4, 49721 }, 49722 [0x1AB5]={ 49723 category="mn", 49724 combining=0xDC, 49725 description="COMBINING X-X BELOW", 49726 direction="nsm", 49727 linebreak="cm", 49728 unicodeslot=0x1AB5, 49729 }, 49730 [0x1AB6]={ 49731 category="mn", 49732 combining=0xDC, 49733 description="COMBINING WIGGLY LINE BELOW", 49734 direction="nsm", 49735 linebreak="cm", 49736 unicodeslot=0x1AB6, 49737 }, 49738 [0x1AB7]={ 49739 category="mn", 49740 combining=0xDC, 49741 description="COMBINING OPEN MARK BELOW", 49742 direction="nsm", 49743 linebreak="cm", 49744 unicodeslot=0x1AB7, 49745 }, 49746 [0x1AB8]={ 49747 category="mn", 49748 combining=0xDC, 49749 description="COMBINING DOUBLE OPEN MARK BELOW", 49750 direction="nsm", 49751 linebreak="cm", 49752 unicodeslot=0x1AB8, 49753 }, 49754 [0x1AB9]={ 49755 category="mn", 49756 combining=0xDC, 49757 description="COMBINING LIGHT CENTRALIZATION STROKE BELOW", 49758 direction="nsm", 49759 linebreak="cm", 49760 unicodeslot=0x1AB9, 49761 }, 49762 [0x1ABA]={ 49763 category="mn", 49764 combining=0xDC, 49765 description="COMBINING STRONG CENTRALIZATION STROKE BELOW", 49766 direction="nsm", 49767 linebreak="cm", 49768 unicodeslot=0x1ABA, 49769 }, 49770 [0x1ABB]={ 49771 category="mn", 49772 combining=0xE6, 49773 description="COMBINING PARENTHESES ABOVE", 49774 direction="nsm", 49775 linebreak="cm", 49776 unicodeslot=0x1ABB, 49777 }, 49778 [0x1ABC]={ 49779 category="mn", 49780 combining=0xE6, 49781 description="COMBINING DOUBLE PARENTHESES ABOVE", 49782 direction="nsm", 49783 linebreak="cm", 49784 unicodeslot=0x1ABC, 49785 }, 49786 [0x1ABD]={ 49787 category="mn", 49788 combining=0xDC, 49789 description="COMBINING PARENTHESES BELOW", 49790 direction="nsm", 49791 linebreak="cm", 49792 unicodeslot=0x1ABD, 49793 }, 49794 [0x1ABE]={ 49795 category="me", 49796 description="COMBINING PARENTHESES OVERLAY", 49797 direction="nsm", 49798 linebreak="cm", 49799 unicodeslot=0x1ABE, 49800 }, 49801 [0x1ABF]={ 49802 category="mn", 49803 combining=0xDC, 49804 description="COMBINING LATIN SMALL LETTER W BELOW", 49805 direction="nsm", 49806 linebreak="cm", 49807 unicodeslot=0x1ABF, 49808 }, 49809 [0x1AC0]={ 49810 category="mn", 49811 combining=0xDC, 49812 description="COMBINING LATIN SMALL LETTER TURNED W BELOW", 49813 direction="nsm", 49814 linebreak="cm", 49815 unicodeslot=0x1AC0, 49816 }, 49817 [0x1AC1]={ 49818 category="mn", 49819 combining=0xE6, 49820 description="COMBINING LEFT PARENTHESIS ABOVE LEFT", 49821 direction="nsm", 49822 linebreak="cm", 49823 unicodeslot=0x1AC1, 49824 }, 49825 [0x1AC2]={ 49826 category="mn", 49827 combining=0xE6, 49828 description="COMBINING RIGHT PARENTHESIS ABOVE RIGHT", 49829 direction="nsm", 49830 linebreak="cm", 49831 unicodeslot=0x1AC2, 49832 }, 49833 [0x1AC3]={ 49834 category="mn", 49835 combining=0xDC, 49836 description="COMBINING LEFT PARENTHESIS BELOW LEFT", 49837 direction="nsm", 49838 linebreak="cm", 49839 unicodeslot=0x1AC3, 49840 }, 49841 [0x1AC4]={ 49842 category="mn", 49843 combining=0xDC, 49844 description="COMBINING RIGHT PARENTHESIS BELOW RIGHT", 49845 direction="nsm", 49846 linebreak="cm", 49847 unicodeslot=0x1AC4, 49848 }, 49849 [0x1AC5]={ 49850 category="mn", 49851 combining=0xE6, 49852 description="COMBINING SQUARE BRACKETS ABOVE", 49853 direction="nsm", 49854 linebreak="cm", 49855 unicodeslot=0x1AC5, 49856 }, 49857 [0x1AC6]={ 49858 category="mn", 49859 combining=0xE6, 49860 description="COMBINING NUMBER SIGN ABOVE", 49861 direction="nsm", 49862 linebreak="cm", 49863 unicodeslot=0x1AC6, 49864 }, 49865 [0x1AC7]={ 49866 category="mn", 49867 combining=0xE6, 49868 description="COMBINING INVERTED DOUBLE ARCH ABOVE", 49869 direction="nsm", 49870 linebreak="cm", 49871 unicodeslot=0x1AC7, 49872 }, 49873 [0x1AC8]={ 49874 category="mn", 49875 combining=0xE6, 49876 description="COMBINING PLUS SIGN ABOVE", 49877 direction="nsm", 49878 linebreak="cm", 49879 unicodeslot=0x1AC8, 49880 }, 49881 [0x1AC9]={ 49882 category="mn", 49883 combining=0xE6, 49884 description="COMBINING DOUBLE PLUS SIGN ABOVE", 49885 direction="nsm", 49886 linebreak="cm", 49887 unicodeslot=0x1AC9, 49888 }, 49889 [0x1ACA]={ 49890 category="mn", 49891 combining=0xDC, 49892 description="COMBINING DOUBLE PLUS SIGN BELOW", 49893 direction="nsm", 49894 linebreak="cm", 49895 unicodeslot=0x1ACA, 49896 }, 49897 [0x1ACB]={ 49898 category="mn", 49899 combining=0xE6, 49900 description="COMBINING TRIPLE ACUTE ACCENT", 49901 direction="nsm", 49902 linebreak="cm", 49903 unicodeslot=0x1ACB, 49904 }, 49905 [0x1ACC]={ 49906 category="mn", 49907 combining=0xE6, 49908 description="COMBINING LATIN SMALL LETTER INSULAR G", 49909 direction="nsm", 49910 linebreak="cm", 49911 unicodeslot=0x1ACC, 49912 }, 49913 [0x1ACD]={ 49914 category="mn", 49915 combining=0xE6, 49916 description="COMBINING LATIN SMALL LETTER INSULAR R", 49917 direction="nsm", 49918 linebreak="cm", 49919 unicodeslot=0x1ACD, 49920 }, 49921 [0x1ACE]={ 49922 category="mn", 49923 combining=0xE6, 49924 description="COMBINING LATIN SMALL LETTER INSULAR T", 49925 direction="nsm", 49926 linebreak="cm", 49927 unicodeslot=0x1ACE, 49928 }, 49929 [0x1B00]={ 49930 category="mn", 49931 description="BALINESE SIGN ULU RICEM", 49932 direction="nsm", 49933 linebreak="cm", 49934 unicodeslot=0x1B00, 49935 }, 49936 [0x1B01]={ 49937 category="mn", 49938 description="BALINESE SIGN ULU CANDRA", 49939 direction="nsm", 49940 linebreak="cm", 49941 unicodeslot=0x1B01, 49942 }, 49943 [0x1B02]={ 49944 category="mn", 49945 description="BALINESE SIGN CECEK", 49946 direction="nsm", 49947 linebreak="cm", 49948 unicodeslot=0x1B02, 49949 }, 49950 [0x1B03]={ 49951 category="mn", 49952 description="BALINESE SIGN SURANG", 49953 direction="nsm", 49954 linebreak="cm", 49955 unicodeslot=0x1B03, 49956 }, 49957 [0x1B04]={ 49958 category="mc", 49959 description="BALINESE SIGN BISAH", 49960 direction="l", 49961 linebreak="cm", 49962 unicodeslot=0x1B04, 49963 }, 49964 [0x1B05]={ 49965 category="lo", 49966 description="BALINESE LETTER AKARA", 49967 direction="l", 49968 linebreak="ak", 49969 unicodeslot=0x1B05, 49970 }, 49971 [0x1B06]={ 49972 category="lo", 49973 description="BALINESE LETTER AKARA TEDUNG", 49974 direction="l", 49975 linebreak="ak", 49976 specials={ "char", 0x1B05, 0x1B35 }, 49977 unicodeslot=0x1B06, 49978 }, 49979 [0x1B07]={ 49980 category="lo", 49981 description="BALINESE LETTER IKARA", 49982 direction="l", 49983 linebreak="ak", 49984 unicodeslot=0x1B07, 49985 }, 49986 [0x1B08]={ 49987 category="lo", 49988 description="BALINESE LETTER IKARA TEDUNG", 49989 direction="l", 49990 linebreak="ak", 49991 specials={ "char", 0x1B07, 0x1B35 }, 49992 unicodeslot=0x1B08, 49993 }, 49994 [0x1B09]={ 49995 category="lo", 49996 description="BALINESE LETTER UKARA", 49997 direction="l", 49998 linebreak="ak", 49999 unicodeslot=0x1B09, 50000 }, 50001 [0x1B0A]={ 50002 category="lo", 50003 description="BALINESE LETTER UKARA TEDUNG", 50004 direction="l", 50005 linebreak="ak", 50006 specials={ "char", 0x1B09, 0x1B35 }, 50007 unicodeslot=0x1B0A, 50008 }, 50009 [0x1B0B]={ 50010 category="lo", 50011 description="BALINESE LETTER RA REPA", 50012 direction="l", 50013 linebreak="ak", 50014 unicodeslot=0x1B0B, 50015 }, 50016 [0x1B0C]={ 50017 category="lo", 50018 description="BALINESE LETTER RA REPA TEDUNG", 50019 direction="l", 50020 linebreak="ak", 50021 specials={ "char", 0x1B0B, 0x1B35 }, 50022 unicodeslot=0x1B0C, 50023 }, 50024 [0x1B0D]={ 50025 category="lo", 50026 description="BALINESE LETTER LA LENGA", 50027 direction="l", 50028 linebreak="ak", 50029 unicodeslot=0x1B0D, 50030 }, 50031 [0x1B0E]={ 50032 category="lo", 50033 description="BALINESE LETTER LA LENGA TEDUNG", 50034 direction="l", 50035 linebreak="ak", 50036 specials={ "char", 0x1B0D, 0x1B35 }, 50037 unicodeslot=0x1B0E, 50038 }, 50039 [0x1B0F]={ 50040 category="lo", 50041 description="BALINESE LETTER EKARA", 50042 direction="l", 50043 linebreak="ak", 50044 unicodeslot=0x1B0F, 50045 }, 50046 [0x1B10]={ 50047 category="lo", 50048 description="BALINESE LETTER AIKARA", 50049 direction="l", 50050 linebreak="ak", 50051 unicodeslot=0x1B10, 50052 }, 50053 [0x1B11]={ 50054 category="lo", 50055 description="BALINESE LETTER OKARA", 50056 direction="l", 50057 linebreak="ak", 50058 unicodeslot=0x1B11, 50059 }, 50060 [0x1B12]={ 50061 category="lo", 50062 description="BALINESE LETTER OKARA TEDUNG", 50063 direction="l", 50064 linebreak="ak", 50065 specials={ "char", 0x1B11, 0x1B35 }, 50066 unicodeslot=0x1B12, 50067 }, 50068 [0x1B13]={ 50069 category="lo", 50070 description="BALINESE LETTER KA", 50071 direction="l", 50072 linebreak="ak", 50073 unicodeslot=0x1B13, 50074 }, 50075 [0x1B14]={ 50076 category="lo", 50077 description="BALINESE LETTER KA MAHAPRANA", 50078 direction="l", 50079 linebreak="ak", 50080 unicodeslot=0x1B14, 50081 }, 50082 [0x1B15]={ 50083 category="lo", 50084 description="BALINESE LETTER GA", 50085 direction="l", 50086 linebreak="ak", 50087 unicodeslot=0x1B15, 50088 }, 50089 [0x1B16]={ 50090 category="lo", 50091 description="BALINESE LETTER GA GORA", 50092 direction="l", 50093 linebreak="ak", 50094 unicodeslot=0x1B16, 50095 }, 50096 [0x1B17]={ 50097 category="lo", 50098 description="BALINESE LETTER NGA", 50099 direction="l", 50100 linebreak="ak", 50101 unicodeslot=0x1B17, 50102 }, 50103 [0x1B18]={ 50104 category="lo", 50105 description="BALINESE LETTER CA", 50106 direction="l", 50107 linebreak="ak", 50108 unicodeslot=0x1B18, 50109 }, 50110 [0x1B19]={ 50111 category="lo", 50112 description="BALINESE LETTER CA LACA", 50113 direction="l", 50114 linebreak="ak", 50115 unicodeslot=0x1B19, 50116 }, 50117 [0x1B1A]={ 50118 category="lo", 50119 description="BALINESE LETTER JA", 50120 direction="l", 50121 linebreak="ak", 50122 unicodeslot=0x1B1A, 50123 }, 50124 [0x1B1B]={ 50125 category="lo", 50126 description="BALINESE LETTER JA JERA", 50127 direction="l", 50128 linebreak="ak", 50129 unicodeslot=0x1B1B, 50130 }, 50131 [0x1B1C]={ 50132 category="lo", 50133 description="BALINESE LETTER NYA", 50134 direction="l", 50135 linebreak="ak", 50136 unicodeslot=0x1B1C, 50137 }, 50138 [0x1B1D]={ 50139 category="lo", 50140 description="BALINESE LETTER TA LATIK", 50141 direction="l", 50142 linebreak="ak", 50143 unicodeslot=0x1B1D, 50144 }, 50145 [0x1B1E]={ 50146 category="lo", 50147 description="BALINESE LETTER TA MURDA MAHAPRANA", 50148 direction="l", 50149 linebreak="ak", 50150 unicodeslot=0x1B1E, 50151 }, 50152 [0x1B1F]={ 50153 category="lo", 50154 description="BALINESE LETTER DA MURDA ALPAPRANA", 50155 direction="l", 50156 linebreak="ak", 50157 unicodeslot=0x1B1F, 50158 }, 50159 [0x1B20]={ 50160 category="lo", 50161 description="BALINESE LETTER DA MURDA MAHAPRANA", 50162 direction="l", 50163 linebreak="ak", 50164 unicodeslot=0x1B20, 50165 }, 50166 [0x1B21]={ 50167 category="lo", 50168 description="BALINESE LETTER NA RAMBAT", 50169 direction="l", 50170 linebreak="ak", 50171 unicodeslot=0x1B21, 50172 }, 50173 [0x1B22]={ 50174 category="lo", 50175 description="BALINESE LETTER TA", 50176 direction="l", 50177 linebreak="ak", 50178 unicodeslot=0x1B22, 50179 }, 50180 [0x1B23]={ 50181 category="lo", 50182 description="BALINESE LETTER TA TAWA", 50183 direction="l", 50184 linebreak="ak", 50185 unicodeslot=0x1B23, 50186 }, 50187 [0x1B24]={ 50188 category="lo", 50189 description="BALINESE LETTER DA", 50190 direction="l", 50191 linebreak="ak", 50192 unicodeslot=0x1B24, 50193 }, 50194 [0x1B25]={ 50195 category="lo", 50196 description="BALINESE LETTER DA MADU", 50197 direction="l", 50198 linebreak="ak", 50199 unicodeslot=0x1B25, 50200 }, 50201 [0x1B26]={ 50202 category="lo", 50203 description="BALINESE LETTER NA", 50204 direction="l", 50205 linebreak="ak", 50206 unicodeslot=0x1B26, 50207 }, 50208 [0x1B27]={ 50209 category="lo", 50210 description="BALINESE LETTER PA", 50211 direction="l", 50212 linebreak="ak", 50213 unicodeslot=0x1B27, 50214 }, 50215 [0x1B28]={ 50216 category="lo", 50217 description="BALINESE LETTER PA KAPAL", 50218 direction="l", 50219 linebreak="ak", 50220 unicodeslot=0x1B28, 50221 }, 50222 [0x1B29]={ 50223 category="lo", 50224 description="BALINESE LETTER BA", 50225 direction="l", 50226 linebreak="ak", 50227 unicodeslot=0x1B29, 50228 }, 50229 [0x1B2A]={ 50230 category="lo", 50231 description="BALINESE LETTER BA KEMBANG", 50232 direction="l", 50233 linebreak="ak", 50234 unicodeslot=0x1B2A, 50235 }, 50236 [0x1B2B]={ 50237 category="lo", 50238 description="BALINESE LETTER MA", 50239 direction="l", 50240 linebreak="ak", 50241 unicodeslot=0x1B2B, 50242 }, 50243 [0x1B2C]={ 50244 category="lo", 50245 description="BALINESE LETTER YA", 50246 direction="l", 50247 linebreak="ak", 50248 unicodeslot=0x1B2C, 50249 }, 50250 [0x1B2D]={ 50251 category="lo", 50252 description="BALINESE LETTER RA", 50253 direction="l", 50254 linebreak="ak", 50255 unicodeslot=0x1B2D, 50256 }, 50257 [0x1B2E]={ 50258 category="lo", 50259 description="BALINESE LETTER LA", 50260 direction="l", 50261 linebreak="ak", 50262 unicodeslot=0x1B2E, 50263 }, 50264 [0x1B2F]={ 50265 category="lo", 50266 description="BALINESE LETTER WA", 50267 direction="l", 50268 linebreak="ak", 50269 unicodeslot=0x1B2F, 50270 }, 50271 [0x1B30]={ 50272 category="lo", 50273 description="BALINESE LETTER SA SAGA", 50274 direction="l", 50275 linebreak="ak", 50276 unicodeslot=0x1B30, 50277 }, 50278 [0x1B31]={ 50279 category="lo", 50280 description="BALINESE LETTER SA SAPA", 50281 direction="l", 50282 linebreak="ak", 50283 unicodeslot=0x1B31, 50284 }, 50285 [0x1B32]={ 50286 category="lo", 50287 description="BALINESE LETTER SA", 50288 direction="l", 50289 linebreak="ak", 50290 unicodeslot=0x1B32, 50291 }, 50292 [0x1B33]={ 50293 category="lo", 50294 description="BALINESE LETTER HA", 50295 direction="l", 50296 linebreak="ak", 50297 unicodeslot=0x1B33, 50298 }, 50299 [0x1B34]={ 50300 category="mn", 50301 combining=0x7, 50302 description="BALINESE SIGN REREKAN", 50303 direction="nsm", 50304 linebreak="cm", 50305 unicodeslot=0x1B34, 50306 }, 50307 [0x1B35]={ 50308 category="mc", 50309 description="BALINESE VOWEL SIGN TEDUNG", 50310 direction="l", 50311 linebreak="cm", 50312 unicodeslot=0x1B35, 50313 }, 50314 [0x1B36]={ 50315 category="mn", 50316 description="BALINESE VOWEL SIGN ULU", 50317 direction="nsm", 50318 linebreak="cm", 50319 unicodeslot=0x1B36, 50320 }, 50321 [0x1B37]={ 50322 category="mn", 50323 description="BALINESE VOWEL SIGN ULU SARI", 50324 direction="nsm", 50325 linebreak="cm", 50326 unicodeslot=0x1B37, 50327 }, 50328 [0x1B38]={ 50329 category="mn", 50330 description="BALINESE VOWEL SIGN SUKU", 50331 direction="nsm", 50332 linebreak="cm", 50333 unicodeslot=0x1B38, 50334 }, 50335 [0x1B39]={ 50336 category="mn", 50337 description="BALINESE VOWEL SIGN SUKU ILUT", 50338 direction="nsm", 50339 linebreak="cm", 50340 unicodeslot=0x1B39, 50341 }, 50342 [0x1B3A]={ 50343 category="mn", 50344 description="BALINESE VOWEL SIGN RA REPA", 50345 direction="nsm", 50346 linebreak="cm", 50347 unicodeslot=0x1B3A, 50348 }, 50349 [0x1B3B]={ 50350 category="mc", 50351 description="BALINESE VOWEL SIGN RA REPA TEDUNG", 50352 direction="l", 50353 linebreak="cm", 50354 specials={ "char", 0x1B3A, 0x1B35 }, 50355 unicodeslot=0x1B3B, 50356 }, 50357 [0x1B3C]={ 50358 category="mn", 50359 description="BALINESE VOWEL SIGN LA LENGA", 50360 direction="nsm", 50361 linebreak="cm", 50362 unicodeslot=0x1B3C, 50363 }, 50364 [0x1B3D]={ 50365 category="mc", 50366 description="BALINESE VOWEL SIGN LA LENGA TEDUNG", 50367 direction="l", 50368 linebreak="cm", 50369 specials={ "char", 0x1B3C, 0x1B35 }, 50370 unicodeslot=0x1B3D, 50371 }, 50372 [0x1B3E]={ 50373 category="mc", 50374 description="BALINESE VOWEL SIGN TALING", 50375 direction="l", 50376 linebreak="cm", 50377 unicodeslot=0x1B3E, 50378 }, 50379 [0x1B3F]={ 50380 category="mc", 50381 description="BALINESE VOWEL SIGN TALING REPA", 50382 direction="l", 50383 linebreak="cm", 50384 unicodeslot=0x1B3F, 50385 }, 50386 [0x1B40]={ 50387 category="mc", 50388 description="BALINESE VOWEL SIGN TALING TEDUNG", 50389 direction="l", 50390 linebreak="cm", 50391 specials={ "char", 0x1B3E, 0x1B35 }, 50392 unicodeslot=0x1B40, 50393 }, 50394 [0x1B41]={ 50395 category="mc", 50396 description="BALINESE VOWEL SIGN TALING REPA TEDUNG", 50397 direction="l", 50398 linebreak="cm", 50399 specials={ "char", 0x1B3F, 0x1B35 }, 50400 unicodeslot=0x1B41, 50401 }, 50402 [0x1B42]={ 50403 category="mn", 50404 description="BALINESE VOWEL SIGN PEPET", 50405 direction="nsm", 50406 linebreak="cm", 50407 unicodeslot=0x1B42, 50408 }, 50409 [0x1B43]={ 50410 category="mc", 50411 description="BALINESE VOWEL SIGN PEPET TEDUNG", 50412 direction="l", 50413 linebreak="cm", 50414 specials={ "char", 0x1B42, 0x1B35 }, 50415 unicodeslot=0x1B43, 50416 }, 50417 [0x1B44]={ 50418 category="mc", 50419 combining=0x9, 50420 description="BALINESE ADEG ADEG", 50421 direction="l", 50422 linebreak="vi", 50423 unicodeslot=0x1B44, 50424 }, 50425 [0x1B45]={ 50426 category="lo", 50427 description="BALINESE LETTER KAF SASAK", 50428 direction="l", 50429 linebreak="ak", 50430 unicodeslot=0x1B45, 50431 }, 50432 [0x1B46]={ 50433 category="lo", 50434 description="BALINESE LETTER KHOT SASAK", 50435 direction="l", 50436 linebreak="ak", 50437 unicodeslot=0x1B46, 50438 }, 50439 [0x1B47]={ 50440 category="lo", 50441 description="BALINESE LETTER TZIR SASAK", 50442 direction="l", 50443 linebreak="ak", 50444 unicodeslot=0x1B47, 50445 }, 50446 [0x1B48]={ 50447 category="lo", 50448 description="BALINESE LETTER EF SASAK", 50449 direction="l", 50450 linebreak="ak", 50451 unicodeslot=0x1B48, 50452 }, 50453 [0x1B49]={ 50454 category="lo", 50455 description="BALINESE LETTER VE SASAK", 50456 direction="l", 50457 linebreak="ak", 50458 unicodeslot=0x1B49, 50459 }, 50460 [0x1B4A]={ 50461 category="lo", 50462 description="BALINESE LETTER ZAL SASAK", 50463 direction="l", 50464 linebreak="ak", 50465 unicodeslot=0x1B4A, 50466 }, 50467 [0x1B4B]={ 50468 category="lo", 50469 description="BALINESE LETTER ASYURA SASAK", 50470 direction="l", 50471 linebreak="ak", 50472 unicodeslot=0x1B4B, 50473 }, 50474 [0x1B4C]={ 50475 category="lo", 50476 description="BALINESE LETTER ARCHAIC JNYA", 50477 direction="l", 50478 linebreak="ak", 50479 unicodeslot=0x1B4C, 50480 }, 50481 [0x1B4E]={ 50482 category="po", 50483 description="BALINESE INVERTED CARIK SIKI", 50484 direction="l", 50485 linebreak="ba", 50486 unicodeslot=0x1B4E, 50487 }, 50488 [0x1B4F]={ 50489 category="po", 50490 description="BALINESE INVERTED CARIK PAREREN", 50491 direction="l", 50492 linebreak="ba", 50493 unicodeslot=0x1B4F, 50494 }, 50495 [0x1B50]={ 50496 category="nd", 50497 description="BALINESE DIGIT ZERO", 50498 direction="l", 50499 linebreak="as", 50500 unicodeslot=0x1B50, 50501 }, 50502 [0x1B51]={ 50503 category="nd", 50504 description="BALINESE DIGIT ONE", 50505 direction="l", 50506 linebreak="as", 50507 unicodeslot=0x1B51, 50508 }, 50509 [0x1B52]={ 50510 category="nd", 50511 description="BALINESE DIGIT TWO", 50512 direction="l", 50513 linebreak="as", 50514 unicodeslot=0x1B52, 50515 }, 50516 [0x1B53]={ 50517 category="nd", 50518 description="BALINESE DIGIT THREE", 50519 direction="l", 50520 linebreak="as", 50521 unicodeslot=0x1B53, 50522 }, 50523 [0x1B54]={ 50524 category="nd", 50525 description="BALINESE DIGIT FOUR", 50526 direction="l", 50527 linebreak="as", 50528 unicodeslot=0x1B54, 50529 }, 50530 [0x1B55]={ 50531 category="nd", 50532 description="BALINESE DIGIT FIVE", 50533 direction="l", 50534 linebreak="as", 50535 unicodeslot=0x1B55, 50536 }, 50537 [0x1B56]={ 50538 category="nd", 50539 description="BALINESE DIGIT SIX", 50540 direction="l", 50541 linebreak="as", 50542 unicodeslot=0x1B56, 50543 }, 50544 [0x1B57]={ 50545 category="nd", 50546 description="BALINESE DIGIT SEVEN", 50547 direction="l", 50548 linebreak="as", 50549 unicodeslot=0x1B57, 50550 }, 50551 [0x1B58]={ 50552 category="nd", 50553 description="BALINESE DIGIT EIGHT", 50554 direction="l", 50555 linebreak="as", 50556 unicodeslot=0x1B58, 50557 }, 50558 [0x1B59]={ 50559 category="nd", 50560 description="BALINESE DIGIT NINE", 50561 direction="l", 50562 linebreak="as", 50563 unicodeslot=0x1B59, 50564 }, 50565 [0x1B5A]={ 50566 category="po", 50567 description="BALINESE PANTI", 50568 direction="l", 50569 linebreak="ba", 50570 unicodeslot=0x1B5A, 50571 }, 50572 [0x1B5B]={ 50573 category="po", 50574 description="BALINESE PAMADA", 50575 direction="l", 50576 linebreak="ba", 50577 unicodeslot=0x1B5B, 50578 }, 50579 [0x1B5C]={ 50580 category="po", 50581 description="BALINESE WINDU", 50582 direction="l", 50583 linebreak="id", 50584 unicodeslot=0x1B5C, 50585 }, 50586 [0x1B5D]={ 50587 category="po", 50588 description="BALINESE CARIK PAMUNGKAH", 50589 direction="l", 50590 linebreak="ba", 50591 unicodeslot=0x1B5D, 50592 }, 50593 [0x1B5E]={ 50594 category="po", 50595 description="BALINESE CARIK SIKI", 50596 direction="l", 50597 linebreak="ba", 50598 unicodeslot=0x1B5E, 50599 }, 50600 [0x1B5F]={ 50601 category="po", 50602 description="BALINESE CARIK PAREREN", 50603 direction="l", 50604 linebreak="ba", 50605 unicodeslot=0x1B5F, 50606 }, 50607 [0x1B60]={ 50608 category="po", 50609 description="BALINESE PAMENENG", 50610 direction="l", 50611 linebreak="ba", 50612 unicodeslot=0x1B60, 50613 }, 50614 [0x1B61]={ 50615 category="so", 50616 description="BALINESE MUSICAL SYMBOL DONG", 50617 direction="l", 50618 linebreak="id", 50619 unicodeslot=0x1B61, 50620 }, 50621 [0x1B62]={ 50622 category="so", 50623 description="BALINESE MUSICAL SYMBOL DENG", 50624 direction="l", 50625 linebreak="id", 50626 unicodeslot=0x1B62, 50627 }, 50628 [0x1B63]={ 50629 category="so", 50630 description="BALINESE MUSICAL SYMBOL DUNG", 50631 direction="l", 50632 linebreak="id", 50633 unicodeslot=0x1B63, 50634 }, 50635 [0x1B64]={ 50636 category="so", 50637 description="BALINESE MUSICAL SYMBOL DANG", 50638 direction="l", 50639 linebreak="id", 50640 unicodeslot=0x1B64, 50641 }, 50642 [0x1B65]={ 50643 category="so", 50644 description="BALINESE MUSICAL SYMBOL DANG SURANG", 50645 direction="l", 50646 linebreak="id", 50647 unicodeslot=0x1B65, 50648 }, 50649 [0x1B66]={ 50650 category="so", 50651 description="BALINESE MUSICAL SYMBOL DING", 50652 direction="l", 50653 linebreak="id", 50654 unicodeslot=0x1B66, 50655 }, 50656 [0x1B67]={ 50657 category="so", 50658 description="BALINESE MUSICAL SYMBOL DAENG", 50659 direction="l", 50660 linebreak="id", 50661 unicodeslot=0x1B67, 50662 }, 50663 [0x1B68]={ 50664 category="so", 50665 description="BALINESE MUSICAL SYMBOL DEUNG", 50666 direction="l", 50667 linebreak="id", 50668 unicodeslot=0x1B68, 50669 }, 50670 [0x1B69]={ 50671 category="so", 50672 description="BALINESE MUSICAL SYMBOL DAING", 50673 direction="l", 50674 linebreak="id", 50675 unicodeslot=0x1B69, 50676 }, 50677 [0x1B6A]={ 50678 category="so", 50679 description="BALINESE MUSICAL SYMBOL DANG GEDE", 50680 direction="l", 50681 linebreak="id", 50682 unicodeslot=0x1B6A, 50683 }, 50684 [0x1B6B]={ 50685 category="mn", 50686 combining=0xE6, 50687 description="BALINESE MUSICAL SYMBOL COMBINING TEGEH", 50688 direction="nsm", 50689 linebreak="cm", 50690 unicodeslot=0x1B6B, 50691 }, 50692 [0x1B6C]={ 50693 category="mn", 50694 combining=0xDC, 50695 description="BALINESE MUSICAL SYMBOL COMBINING ENDEP", 50696 direction="nsm", 50697 linebreak="cm", 50698 unicodeslot=0x1B6C, 50699 }, 50700 [0x1B6D]={ 50701 category="mn", 50702 combining=0xE6, 50703 description="BALINESE MUSICAL SYMBOL COMBINING KEMPUL", 50704 direction="nsm", 50705 linebreak="cm", 50706 unicodeslot=0x1B6D, 50707 }, 50708 [0x1B6E]={ 50709 category="mn", 50710 combining=0xE6, 50711 description="BALINESE MUSICAL SYMBOL COMBINING KEMPLI", 50712 direction="nsm", 50713 linebreak="cm", 50714 unicodeslot=0x1B6E, 50715 }, 50716 [0x1B6F]={ 50717 category="mn", 50718 combining=0xE6, 50719 description="BALINESE MUSICAL SYMBOL COMBINING JEGOGAN", 50720 direction="nsm", 50721 linebreak="cm", 50722 unicodeslot=0x1B6F, 50723 }, 50724 [0x1B70]={ 50725 category="mn", 50726 combining=0xE6, 50727 description="BALINESE MUSICAL SYMBOL COMBINING KEMPUL WITH JEGOGAN", 50728 direction="nsm", 50729 linebreak="cm", 50730 unicodeslot=0x1B70, 50731 }, 50732 [0x1B71]={ 50733 category="mn", 50734 combining=0xE6, 50735 description="BALINESE MUSICAL SYMBOL COMBINING KEMPLI WITH JEGOGAN", 50736 direction="nsm", 50737 linebreak="cm", 50738 unicodeslot=0x1B71, 50739 }, 50740 [0x1B72]={ 50741 category="mn", 50742 combining=0xE6, 50743 description="BALINESE MUSICAL SYMBOL COMBINING BENDE", 50744 direction="nsm", 50745 linebreak="cm", 50746 unicodeslot=0x1B72, 50747 }, 50748 [0x1B73]={ 50749 category="mn", 50750 combining=0xE6, 50751 description="BALINESE MUSICAL SYMBOL COMBINING GONG", 50752 direction="nsm", 50753 linebreak="cm", 50754 unicodeslot=0x1B73, 50755 }, 50756 [0x1B74]={ 50757 category="so", 50758 description="BALINESE MUSICAL SYMBOL RIGHT-HAND OPEN DUG", 50759 direction="l", 50760 linebreak="id", 50761 unicodeslot=0x1B74, 50762 }, 50763 [0x1B75]={ 50764 category="so", 50765 description="BALINESE MUSICAL SYMBOL RIGHT-HAND OPEN DAG", 50766 direction="l", 50767 linebreak="id", 50768 unicodeslot=0x1B75, 50769 }, 50770 [0x1B76]={ 50771 category="so", 50772 description="BALINESE MUSICAL SYMBOL RIGHT-HAND CLOSED TUK", 50773 direction="l", 50774 linebreak="id", 50775 unicodeslot=0x1B76, 50776 }, 50777 [0x1B77]={ 50778 category="so", 50779 description="BALINESE MUSICAL SYMBOL RIGHT-HAND CLOSED TAK", 50780 direction="l", 50781 linebreak="id", 50782 unicodeslot=0x1B77, 50783 }, 50784 [0x1B78]={ 50785 category="so", 50786 description="BALINESE MUSICAL SYMBOL LEFT-HAND OPEN PANG", 50787 direction="l", 50788 linebreak="id", 50789 unicodeslot=0x1B78, 50790 }, 50791 [0x1B79]={ 50792 category="so", 50793 description="BALINESE MUSICAL SYMBOL LEFT-HAND OPEN PUNG", 50794 direction="l", 50795 linebreak="id", 50796 unicodeslot=0x1B79, 50797 }, 50798 [0x1B7A]={ 50799 category="so", 50800 description="BALINESE MUSICAL SYMBOL LEFT-HAND CLOSED PLAK", 50801 direction="l", 50802 linebreak="id", 50803 unicodeslot=0x1B7A, 50804 }, 50805 [0x1B7B]={ 50806 category="so", 50807 description="BALINESE MUSICAL SYMBOL LEFT-HAND CLOSED PLUK", 50808 direction="l", 50809 linebreak="id", 50810 unicodeslot=0x1B7B, 50811 }, 50812 [0x1B7C]={ 50813 category="so", 50814 description="BALINESE MUSICAL SYMBOL LEFT-HAND OPEN PING", 50815 direction="l", 50816 linebreak="id", 50817 unicodeslot=0x1B7C, 50818 }, 50819 [0x1B7D]={ 50820 category="po", 50821 description="BALINESE PANTI LANTANG", 50822 direction="l", 50823 linebreak="ba", 50824 unicodeslot=0x1B7D, 50825 }, 50826 [0x1B7E]={ 50827 category="po", 50828 description="BALINESE PAMADA LANTANG", 50829 direction="l", 50830 linebreak="ba", 50831 unicodeslot=0x1B7E, 50832 }, 50833 [0x1B7F]={ 50834 category="po", 50835 description="BALINESE PANTI BAWAK", 50836 direction="l", 50837 linebreak="ba", 50838 unicodeslot=0x1B7F, 50839 }, 50840 [0x1B80]={ 50841 category="mn", 50842 description="SUNDANESE SIGN PANYECEK", 50843 direction="nsm", 50844 linebreak="cm", 50845 unicodeslot=0x1B80, 50846 }, 50847 [0x1B81]={ 50848 category="mn", 50849 description="SUNDANESE SIGN PANGLAYAR", 50850 direction="nsm", 50851 linebreak="cm", 50852 unicodeslot=0x1B81, 50853 }, 50854 [0x1B82]={ 50855 category="mc", 50856 description="SUNDANESE SIGN PANGWISAD", 50857 direction="l", 50858 linebreak="cm", 50859 unicodeslot=0x1B82, 50860 }, 50861 [0x1B83]={ 50862 category="lo", 50863 description="SUNDANESE LETTER A", 50864 direction="l", 50865 linebreak="al", 50866 unicodeslot=0x1B83, 50867 }, 50868 [0x1B84]={ 50869 category="lo", 50870 description="SUNDANESE LETTER I", 50871 direction="l", 50872 linebreak="al", 50873 unicodeslot=0x1B84, 50874 }, 50875 [0x1B85]={ 50876 category="lo", 50877 description="SUNDANESE LETTER U", 50878 direction="l", 50879 linebreak="al", 50880 unicodeslot=0x1B85, 50881 }, 50882 [0x1B86]={ 50883 category="lo", 50884 description="SUNDANESE LETTER AE", 50885 direction="l", 50886 linebreak="al", 50887 unicodeslot=0x1B86, 50888 }, 50889 [0x1B87]={ 50890 category="lo", 50891 description="SUNDANESE LETTER O", 50892 direction="l", 50893 linebreak="al", 50894 unicodeslot=0x1B87, 50895 }, 50896 [0x1B88]={ 50897 category="lo", 50898 description="SUNDANESE LETTER E", 50899 direction="l", 50900 linebreak="al", 50901 unicodeslot=0x1B88, 50902 }, 50903 [0x1B89]={ 50904 category="lo", 50905 description="SUNDANESE LETTER EU", 50906 direction="l", 50907 linebreak="al", 50908 unicodeslot=0x1B89, 50909 }, 50910 [0x1B8A]={ 50911 category="lo", 50912 description="SUNDANESE LETTER KA", 50913 direction="l", 50914 linebreak="al", 50915 unicodeslot=0x1B8A, 50916 }, 50917 [0x1B8B]={ 50918 category="lo", 50919 description="SUNDANESE LETTER QA", 50920 direction="l", 50921 linebreak="al", 50922 unicodeslot=0x1B8B, 50923 }, 50924 [0x1B8C]={ 50925 category="lo", 50926 description="SUNDANESE LETTER GA", 50927 direction="l", 50928 linebreak="al", 50929 unicodeslot=0x1B8C, 50930 }, 50931 [0x1B8D]={ 50932 category="lo", 50933 description="SUNDANESE LETTER NGA", 50934 direction="l", 50935 linebreak="al", 50936 unicodeslot=0x1B8D, 50937 }, 50938 [0x1B8E]={ 50939 category="lo", 50940 description="SUNDANESE LETTER CA", 50941 direction="l", 50942 linebreak="al", 50943 unicodeslot=0x1B8E, 50944 }, 50945 [0x1B8F]={ 50946 category="lo", 50947 description="SUNDANESE LETTER JA", 50948 direction="l", 50949 linebreak="al", 50950 unicodeslot=0x1B8F, 50951 }, 50952 [0x1B90]={ 50953 category="lo", 50954 description="SUNDANESE LETTER ZA", 50955 direction="l", 50956 linebreak="al", 50957 unicodeslot=0x1B90, 50958 }, 50959 [0x1B91]={ 50960 category="lo", 50961 description="SUNDANESE LETTER NYA", 50962 direction="l", 50963 linebreak="al", 50964 unicodeslot=0x1B91, 50965 }, 50966 [0x1B92]={ 50967 category="lo", 50968 description="SUNDANESE LETTER TA", 50969 direction="l", 50970 linebreak="al", 50971 unicodeslot=0x1B92, 50972 }, 50973 [0x1B93]={ 50974 category="lo", 50975 description="SUNDANESE LETTER DA", 50976 direction="l", 50977 linebreak="al", 50978 unicodeslot=0x1B93, 50979 }, 50980 [0x1B94]={ 50981 category="lo", 50982 description="SUNDANESE LETTER NA", 50983 direction="l", 50984 linebreak="al", 50985 unicodeslot=0x1B94, 50986 }, 50987 [0x1B95]={ 50988 category="lo", 50989 description="SUNDANESE LETTER PA", 50990 direction="l", 50991 linebreak="al", 50992 unicodeslot=0x1B95, 50993 }, 50994 [0x1B96]={ 50995 category="lo", 50996 description="SUNDANESE LETTER FA", 50997 direction="l", 50998 linebreak="al", 50999 unicodeslot=0x1B96, 51000 }, 51001 [0x1B97]={ 51002 category="lo", 51003 description="SUNDANESE LETTER VA", 51004 direction="l", 51005 linebreak="al", 51006 unicodeslot=0x1B97, 51007 }, 51008 [0x1B98]={ 51009 category="lo", 51010 description="SUNDANESE LETTER BA", 51011 direction="l", 51012 linebreak="al", 51013 unicodeslot=0x1B98, 51014 }, 51015 [0x1B99]={ 51016 category="lo", 51017 description="SUNDANESE LETTER MA", 51018 direction="l", 51019 linebreak="al", 51020 unicodeslot=0x1B99, 51021 }, 51022 [0x1B9A]={ 51023 category="lo", 51024 description="SUNDANESE LETTER YA", 51025 direction="l", 51026 linebreak="al", 51027 unicodeslot=0x1B9A, 51028 }, 51029 [0x1B9B]={ 51030 category="lo", 51031 description="SUNDANESE LETTER RA", 51032 direction="l", 51033 linebreak="al", 51034 unicodeslot=0x1B9B, 51035 }, 51036 [0x1B9C]={ 51037 category="lo", 51038 description="SUNDANESE LETTER LA", 51039 direction="l", 51040 linebreak="al", 51041 unicodeslot=0x1B9C, 51042 }, 51043 [0x1B9D]={ 51044 category="lo", 51045 description="SUNDANESE LETTER WA", 51046 direction="l", 51047 linebreak="al", 51048 unicodeslot=0x1B9D, 51049 }, 51050 [0x1B9E]={ 51051 category="lo", 51052 description="SUNDANESE LETTER SA", 51053 direction="l", 51054 linebreak="al", 51055 unicodeslot=0x1B9E, 51056 }, 51057 [0x1B9F]={ 51058 category="lo", 51059 description="SUNDANESE LETTER XA", 51060 direction="l", 51061 linebreak="al", 51062 unicodeslot=0x1B9F, 51063 }, 51064 [0x1BA0]={ 51065 category="lo", 51066 description="SUNDANESE LETTER HA", 51067 direction="l", 51068 linebreak="al", 51069 unicodeslot=0x1BA0, 51070 }, 51071 [0x1BA1]={ 51072 category="mc", 51073 description="SUNDANESE CONSONANT SIGN PAMINGKAL", 51074 direction="l", 51075 linebreak="cm", 51076 unicodeslot=0x1BA1, 51077 }, 51078 [0x1BA2]={ 51079 category="mn", 51080 description="SUNDANESE CONSONANT SIGN PANYAKRA", 51081 direction="nsm", 51082 linebreak="cm", 51083 unicodeslot=0x1BA2, 51084 }, 51085 [0x1BA3]={ 51086 category="mn", 51087 description="SUNDANESE CONSONANT SIGN PANYIKU", 51088 direction="nsm", 51089 linebreak="cm", 51090 unicodeslot=0x1BA3, 51091 }, 51092 [0x1BA4]={ 51093 category="mn", 51094 description="SUNDANESE VOWEL SIGN PANGHULU", 51095 direction="nsm", 51096 linebreak="cm", 51097 unicodeslot=0x1BA4, 51098 }, 51099 [0x1BA5]={ 51100 category="mn", 51101 description="SUNDANESE VOWEL SIGN PANYUKU", 51102 direction="nsm", 51103 linebreak="cm", 51104 unicodeslot=0x1BA5, 51105 }, 51106 [0x1BA6]={ 51107 category="mc", 51108 description="SUNDANESE VOWEL SIGN PANAELAENG", 51109 direction="l", 51110 linebreak="cm", 51111 unicodeslot=0x1BA6, 51112 }, 51113 [0x1BA7]={ 51114 category="mc", 51115 description="SUNDANESE VOWEL SIGN PANOLONG", 51116 direction="l", 51117 linebreak="cm", 51118 unicodeslot=0x1BA7, 51119 }, 51120 [0x1BA8]={ 51121 category="mn", 51122 description="SUNDANESE VOWEL SIGN PAMEPET", 51123 direction="nsm", 51124 linebreak="cm", 51125 unicodeslot=0x1BA8, 51126 }, 51127 [0x1BA9]={ 51128 category="mn", 51129 description="SUNDANESE VOWEL SIGN PANEULEUNG", 51130 direction="nsm", 51131 linebreak="cm", 51132 unicodeslot=0x1BA9, 51133 }, 51134 [0x1BAA]={ 51135 category="mc", 51136 combining=0x9, 51137 description="SUNDANESE SIGN PAMAAEH", 51138 direction="l", 51139 linebreak="cm", 51140 unicodeslot=0x1BAA, 51141 }, 51142 [0x1BAB]={ 51143 category="mn", 51144 combining=0x9, 51145 description="SUNDANESE SIGN VIRAMA", 51146 direction="nsm", 51147 linebreak="cm", 51148 unicodeslot=0x1BAB, 51149 }, 51150 [0x1BAC]={ 51151 category="mc", 51152 description="SUNDANESE CONSONANT SIGN PASANGAN MA", 51153 direction="nsm", 51154 linebreak="cm", 51155 unicodeslot=0x1BAC, 51156 }, 51157 [0x1BAD]={ 51158 category="mc", 51159 description="SUNDANESE CONSONANT SIGN PASANGAN WA", 51160 direction="nsm", 51161 linebreak="cm", 51162 unicodeslot=0x1BAD, 51163 }, 51164 [0x1BAE]={ 51165 category="lo", 51166 description="SUNDANESE LETTER KHA", 51167 direction="l", 51168 linebreak="al", 51169 unicodeslot=0x1BAE, 51170 }, 51171 [0x1BAF]={ 51172 category="lo", 51173 description="SUNDANESE LETTER SYA", 51174 direction="l", 51175 linebreak="al", 51176 unicodeslot=0x1BAF, 51177 }, 51178 [0x1BB0]={ 51179 category="nd", 51180 description="SUNDANESE DIGIT ZERO", 51181 direction="l", 51182 linebreak="nu", 51183 unicodeslot=0x1BB0, 51184 }, 51185 [0x1BB1]={ 51186 category="nd", 51187 description="SUNDANESE DIGIT ONE", 51188 direction="l", 51189 linebreak="nu", 51190 unicodeslot=0x1BB1, 51191 }, 51192 [0x1BB2]={ 51193 category="nd", 51194 description="SUNDANESE DIGIT TWO", 51195 direction="l", 51196 linebreak="nu", 51197 unicodeslot=0x1BB2, 51198 }, 51199 [0x1BB3]={ 51200 category="nd", 51201 description="SUNDANESE DIGIT THREE", 51202 direction="l", 51203 linebreak="nu", 51204 unicodeslot=0x1BB3, 51205 }, 51206 [0x1BB4]={ 51207 category="nd", 51208 description="SUNDANESE DIGIT FOUR", 51209 direction="l", 51210 linebreak="nu", 51211 unicodeslot=0x1BB4, 51212 }, 51213 [0x1BB5]={ 51214 category="nd", 51215 description="SUNDANESE DIGIT FIVE", 51216 direction="l", 51217 linebreak="nu", 51218 unicodeslot=0x1BB5, 51219 }, 51220 [0x1BB6]={ 51221 category="nd", 51222 description="SUNDANESE DIGIT SIX", 51223 direction="l", 51224 linebreak="nu", 51225 unicodeslot=0x1BB6, 51226 }, 51227 [0x1BB7]={ 51228 category="nd", 51229 description="SUNDANESE DIGIT SEVEN", 51230 direction="l", 51231 linebreak="nu", 51232 unicodeslot=0x1BB7, 51233 }, 51234 [0x1BB8]={ 51235 category="nd", 51236 description="SUNDANESE DIGIT EIGHT", 51237 direction="l", 51238 linebreak="nu", 51239 unicodeslot=0x1BB8, 51240 }, 51241 [0x1BB9]={ 51242 category="nd", 51243 description="SUNDANESE DIGIT NINE", 51244 direction="l", 51245 linebreak="nu", 51246 unicodeslot=0x1BB9, 51247 }, 51248 [0x1BBA]={ 51249 category="lo", 51250 description="SUNDANESE AVAGRAHA", 51251 direction="l", 51252 linebreak="al", 51253 unicodeslot=0x1BBA, 51254 }, 51255 [0x1BBB]={ 51256 category="lo", 51257 description="SUNDANESE LETTER REU", 51258 direction="l", 51259 linebreak="al", 51260 unicodeslot=0x1BBB, 51261 }, 51262 [0x1BBC]={ 51263 category="lo", 51264 description="SUNDANESE LETTER LEU", 51265 direction="l", 51266 linebreak="al", 51267 unicodeslot=0x1BBC, 51268 }, 51269 [0x1BBD]={ 51270 category="lo", 51271 description="SUNDANESE LETTER BHA", 51272 direction="l", 51273 linebreak="al", 51274 unicodeslot=0x1BBD, 51275 }, 51276 [0x1BBE]={ 51277 category="lo", 51278 description="SUNDANESE LETTER FINAL K", 51279 direction="l", 51280 linebreak="al", 51281 unicodeslot=0x1BBE, 51282 }, 51283 [0x1BBF]={ 51284 category="lo", 51285 description="SUNDANESE LETTER FINAL M", 51286 direction="l", 51287 linebreak="al", 51288 unicodeslot=0x1BBF, 51289 }, 51290 [0x1BC0]={ 51291 category="lo", 51292 description="BATAK LETTER A", 51293 direction="l", 51294 linebreak="as", 51295 unicodeslot=0x1BC0, 51296 }, 51297 [0x1BC1]={ 51298 category="lo", 51299 description="BATAK LETTER SIMALUNGUN A", 51300 direction="l", 51301 linebreak="as", 51302 unicodeslot=0x1BC1, 51303 }, 51304 [0x1BC2]={ 51305 category="lo", 51306 description="BATAK LETTER HA", 51307 direction="l", 51308 linebreak="as", 51309 unicodeslot=0x1BC2, 51310 }, 51311 [0x1BC3]={ 51312 category="lo", 51313 description="BATAK LETTER SIMALUNGUN HA", 51314 direction="l", 51315 linebreak="as", 51316 unicodeslot=0x1BC3, 51317 }, 51318 [0x1BC4]={ 51319 category="lo", 51320 description="BATAK LETTER MANDAILING HA", 51321 direction="l", 51322 linebreak="as", 51323 unicodeslot=0x1BC4, 51324 }, 51325 [0x1BC5]={ 51326 category="lo", 51327 description="BATAK LETTER BA", 51328 direction="l", 51329 linebreak="as", 51330 unicodeslot=0x1BC5, 51331 }, 51332 [0x1BC6]={ 51333 category="lo", 51334 description="BATAK LETTER KARO BA", 51335 direction="l", 51336 linebreak="as", 51337 unicodeslot=0x1BC6, 51338 }, 51339 [0x1BC7]={ 51340 category="lo", 51341 description="BATAK LETTER PA", 51342 direction="l", 51343 linebreak="as", 51344 unicodeslot=0x1BC7, 51345 }, 51346 [0x1BC8]={ 51347 category="lo", 51348 description="BATAK LETTER SIMALUNGUN PA", 51349 direction="l", 51350 linebreak="as", 51351 unicodeslot=0x1BC8, 51352 }, 51353 [0x1BC9]={ 51354 category="lo", 51355 description="BATAK LETTER NA", 51356 direction="l", 51357 linebreak="as", 51358 unicodeslot=0x1BC9, 51359 }, 51360 [0x1BCA]={ 51361 category="lo", 51362 description="BATAK LETTER MANDAILING NA", 51363 direction="l", 51364 linebreak="as", 51365 unicodeslot=0x1BCA, 51366 }, 51367 [0x1BCB]={ 51368 category="lo", 51369 description="BATAK LETTER WA", 51370 direction="l", 51371 linebreak="as", 51372 unicodeslot=0x1BCB, 51373 }, 51374 [0x1BCC]={ 51375 category="lo", 51376 description="BATAK LETTER SIMALUNGUN WA", 51377 direction="l", 51378 linebreak="as", 51379 unicodeslot=0x1BCC, 51380 }, 51381 [0x1BCD]={ 51382 category="lo", 51383 description="BATAK LETTER PAKPAK WA", 51384 direction="l", 51385 linebreak="as", 51386 unicodeslot=0x1BCD, 51387 }, 51388 [0x1BCE]={ 51389 category="lo", 51390 description="BATAK LETTER GA", 51391 direction="l", 51392 linebreak="as", 51393 unicodeslot=0x1BCE, 51394 }, 51395 [0x1BCF]={ 51396 category="lo", 51397 description="BATAK LETTER SIMALUNGUN GA", 51398 direction="l", 51399 linebreak="as", 51400 unicodeslot=0x1BCF, 51401 }, 51402 [0x1BD0]={ 51403 category="lo", 51404 description="BATAK LETTER JA", 51405 direction="l", 51406 linebreak="as", 51407 unicodeslot=0x1BD0, 51408 }, 51409 [0x1BD1]={ 51410 category="lo", 51411 description="BATAK LETTER DA", 51412 direction="l", 51413 linebreak="as", 51414 unicodeslot=0x1BD1, 51415 }, 51416 [0x1BD2]={ 51417 category="lo", 51418 description="BATAK LETTER RA", 51419 direction="l", 51420 linebreak="as", 51421 unicodeslot=0x1BD2, 51422 }, 51423 [0x1BD3]={ 51424 category="lo", 51425 description="BATAK LETTER SIMALUNGUN RA", 51426 direction="l", 51427 linebreak="as", 51428 unicodeslot=0x1BD3, 51429 }, 51430 [0x1BD4]={ 51431 category="lo", 51432 description="BATAK LETTER MA", 51433 direction="l", 51434 linebreak="as", 51435 unicodeslot=0x1BD4, 51436 }, 51437 [0x1BD5]={ 51438 category="lo", 51439 description="BATAK LETTER SIMALUNGUN MA", 51440 direction="l", 51441 linebreak="as", 51442 unicodeslot=0x1BD5, 51443 }, 51444 [0x1BD6]={ 51445 category="lo", 51446 description="BATAK LETTER SOUTHERN TA", 51447 direction="l", 51448 linebreak="as", 51449 unicodeslot=0x1BD6, 51450 }, 51451 [0x1BD7]={ 51452 category="lo", 51453 description="BATAK LETTER NORTHERN TA", 51454 direction="l", 51455 linebreak="as", 51456 unicodeslot=0x1BD7, 51457 }, 51458 [0x1BD8]={ 51459 category="lo", 51460 description="BATAK LETTER SA", 51461 direction="l", 51462 linebreak="as", 51463 unicodeslot=0x1BD8, 51464 }, 51465 [0x1BD9]={ 51466 category="lo", 51467 description="BATAK LETTER SIMALUNGUN SA", 51468 direction="l", 51469 linebreak="as", 51470 unicodeslot=0x1BD9, 51471 }, 51472 [0x1BDA]={ 51473 category="lo", 51474 description="BATAK LETTER MANDAILING SA", 51475 direction="l", 51476 linebreak="as", 51477 unicodeslot=0x1BDA, 51478 }, 51479 [0x1BDB]={ 51480 category="lo", 51481 description="BATAK LETTER YA", 51482 direction="l", 51483 linebreak="as", 51484 unicodeslot=0x1BDB, 51485 }, 51486 [0x1BDC]={ 51487 category="lo", 51488 description="BATAK LETTER SIMALUNGUN YA", 51489 direction="l", 51490 linebreak="as", 51491 unicodeslot=0x1BDC, 51492 }, 51493 [0x1BDD]={ 51494 category="lo", 51495 description="BATAK LETTER NGA", 51496 direction="l", 51497 linebreak="as", 51498 unicodeslot=0x1BDD, 51499 }, 51500 [0x1BDE]={ 51501 category="lo", 51502 description="BATAK LETTER LA", 51503 direction="l", 51504 linebreak="as", 51505 unicodeslot=0x1BDE, 51506 }, 51507 [0x1BDF]={ 51508 category="lo", 51509 description="BATAK LETTER SIMALUNGUN LA", 51510 direction="l", 51511 linebreak="as", 51512 unicodeslot=0x1BDF, 51513 }, 51514 [0x1BE0]={ 51515 category="lo", 51516 description="BATAK LETTER NYA", 51517 direction="l", 51518 linebreak="as", 51519 unicodeslot=0x1BE0, 51520 }, 51521 [0x1BE1]={ 51522 category="lo", 51523 description="BATAK LETTER CA", 51524 direction="l", 51525 linebreak="as", 51526 unicodeslot=0x1BE1, 51527 }, 51528 [0x1BE2]={ 51529 category="lo", 51530 description="BATAK LETTER NDA", 51531 direction="l", 51532 linebreak="as", 51533 unicodeslot=0x1BE2, 51534 }, 51535 [0x1BE3]={ 51536 category="lo", 51537 description="BATAK LETTER MBA", 51538 direction="l", 51539 linebreak="as", 51540 unicodeslot=0x1BE3, 51541 }, 51542 [0x1BE4]={ 51543 category="lo", 51544 description="BATAK LETTER I", 51545 direction="l", 51546 linebreak="as", 51547 unicodeslot=0x1BE4, 51548 }, 51549 [0x1BE5]={ 51550 category="lo", 51551 description="BATAK LETTER U", 51552 direction="l", 51553 linebreak="as", 51554 unicodeslot=0x1BE5, 51555 }, 51556 [0x1BE6]={ 51557 category="mn", 51558 combining=0x7, 51559 description="BATAK SIGN TOMPI", 51560 direction="nsm", 51561 linebreak="cm", 51562 unicodeslot=0x1BE6, 51563 }, 51564 [0x1BE7]={ 51565 category="mc", 51566 description="BATAK VOWEL SIGN E", 51567 direction="l", 51568 linebreak="cm", 51569 unicodeslot=0x1BE7, 51570 }, 51571 [0x1BE8]={ 51572 category="mn", 51573 description="BATAK VOWEL SIGN PAKPAK E", 51574 direction="nsm", 51575 linebreak="cm", 51576 unicodeslot=0x1BE8, 51577 }, 51578 [0x1BE9]={ 51579 category="mn", 51580 description="BATAK VOWEL SIGN EE", 51581 direction="nsm", 51582 linebreak="cm", 51583 unicodeslot=0x1BE9, 51584 }, 51585 [0x1BEA]={ 51586 category="mc", 51587 description="BATAK VOWEL SIGN I", 51588 direction="l", 51589 linebreak="cm", 51590 unicodeslot=0x1BEA, 51591 }, 51592 [0x1BEB]={ 51593 category="mc", 51594 description="BATAK VOWEL SIGN KARO I", 51595 direction="l", 51596 linebreak="cm", 51597 unicodeslot=0x1BEB, 51598 }, 51599 [0x1BEC]={ 51600 category="mc", 51601 description="BATAK VOWEL SIGN O", 51602 direction="l", 51603 linebreak="cm", 51604 unicodeslot=0x1BEC, 51605 }, 51606 [0x1BED]={ 51607 category="mn", 51608 description="BATAK VOWEL SIGN KARO O", 51609 direction="nsm", 51610 linebreak="cm", 51611 unicodeslot=0x1BED, 51612 }, 51613 [0x1BEE]={ 51614 category="mc", 51615 description="BATAK VOWEL SIGN U", 51616 direction="l", 51617 linebreak="cm", 51618 unicodeslot=0x1BEE, 51619 }, 51620 [0x1BEF]={ 51621 category="mn", 51622 description="BATAK VOWEL SIGN U FOR SIMALUNGUN SA", 51623 direction="nsm", 51624 linebreak="cm", 51625 unicodeslot=0x1BEF, 51626 }, 51627 [0x1BF0]={ 51628 category="mn", 51629 description="BATAK CONSONANT SIGN NG", 51630 direction="nsm", 51631 linebreak="cm", 51632 unicodeslot=0x1BF0, 51633 }, 51634 [0x1BF1]={ 51635 category="mn", 51636 description="BATAK CONSONANT SIGN H", 51637 direction="nsm", 51638 linebreak="cm", 51639 unicodeslot=0x1BF1, 51640 }, 51641 [0x1BF2]={ 51642 category="mc", 51643 combining=0x9, 51644 description="BATAK PANGOLAT", 51645 direction="l", 51646 linebreak="vf", 51647 unicodeslot=0x1BF2, 51648 }, 51649 [0x1BF3]={ 51650 category="mc", 51651 combining=0x9, 51652 description="BATAK PANONGONAN", 51653 direction="l", 51654 linebreak="vf", 51655 unicodeslot=0x1BF3, 51656 }, 51657 [0x1BFC]={ 51658 category="po", 51659 description="BATAK SYMBOL BINDU NA METEK", 51660 direction="l", 51661 linebreak="al", 51662 unicodeslot=0x1BFC, 51663 }, 51664 [0x1BFD]={ 51665 category="po", 51666 description="BATAK SYMBOL BINDU PINARBORAS", 51667 direction="l", 51668 linebreak="al", 51669 unicodeslot=0x1BFD, 51670 }, 51671 [0x1BFE]={ 51672 category="po", 51673 description="BATAK SYMBOL BINDU JUDUL", 51674 direction="l", 51675 linebreak="al", 51676 unicodeslot=0x1BFE, 51677 }, 51678 [0x1BFF]={ 51679 category="po", 51680 description="BATAK SYMBOL BINDU PANGOLAT", 51681 direction="l", 51682 linebreak="al", 51683 unicodeslot=0x1BFF, 51684 }, 51685 [0x1C00]={ 51686 category="lo", 51687 description="LEPCHA LETTER KA", 51688 direction="l", 51689 linebreak="al", 51690 unicodeslot=0x1C00, 51691 }, 51692 [0x1C01]={ 51693 category="lo", 51694 description="LEPCHA LETTER KLA", 51695 direction="l", 51696 linebreak="al", 51697 unicodeslot=0x1C01, 51698 }, 51699 [0x1C02]={ 51700 category="lo", 51701 description="LEPCHA LETTER KHA", 51702 direction="l", 51703 linebreak="al", 51704 unicodeslot=0x1C02, 51705 }, 51706 [0x1C03]={ 51707 category="lo", 51708 description="LEPCHA LETTER GA", 51709 direction="l", 51710 linebreak="al", 51711 unicodeslot=0x1C03, 51712 }, 51713 [0x1C04]={ 51714 category="lo", 51715 description="LEPCHA LETTER GLA", 51716 direction="l", 51717 linebreak="al", 51718 unicodeslot=0x1C04, 51719 }, 51720 [0x1C05]={ 51721 category="lo", 51722 description="LEPCHA LETTER NGA", 51723 direction="l", 51724 linebreak="al", 51725 unicodeslot=0x1C05, 51726 }, 51727 [0x1C06]={ 51728 category="lo", 51729 description="LEPCHA LETTER CA", 51730 direction="l", 51731 linebreak="al", 51732 unicodeslot=0x1C06, 51733 }, 51734 [0x1C07]={ 51735 category="lo", 51736 description="LEPCHA LETTER CHA", 51737 direction="l", 51738 linebreak="al", 51739 unicodeslot=0x1C07, 51740 }, 51741 [0x1C08]={ 51742 category="lo", 51743 description="LEPCHA LETTER JA", 51744 direction="l", 51745 linebreak="al", 51746 unicodeslot=0x1C08, 51747 }, 51748 [0x1C09]={ 51749 category="lo", 51750 description="LEPCHA LETTER NYA", 51751 direction="l", 51752 linebreak="al", 51753 unicodeslot=0x1C09, 51754 }, 51755 [0x1C0A]={ 51756 category="lo", 51757 description="LEPCHA LETTER TA", 51758 direction="l", 51759 linebreak="al", 51760 unicodeslot=0x1C0A, 51761 }, 51762 [0x1C0B]={ 51763 category="lo", 51764 description="LEPCHA LETTER THA", 51765 direction="l", 51766 linebreak="al", 51767 unicodeslot=0x1C0B, 51768 }, 51769 [0x1C0C]={ 51770 category="lo", 51771 description="LEPCHA LETTER DA", 51772 direction="l", 51773 linebreak="al", 51774 unicodeslot=0x1C0C, 51775 }, 51776 [0x1C0D]={ 51777 category="lo", 51778 description="LEPCHA LETTER NA", 51779 direction="l", 51780 linebreak="al", 51781 unicodeslot=0x1C0D, 51782 }, 51783 [0x1C0E]={ 51784 category="lo", 51785 description="LEPCHA LETTER PA", 51786 direction="l", 51787 linebreak="al", 51788 unicodeslot=0x1C0E, 51789 }, 51790 [0x1C0F]={ 51791 category="lo", 51792 description="LEPCHA LETTER PLA", 51793 direction="l", 51794 linebreak="al", 51795 unicodeslot=0x1C0F, 51796 }, 51797 [0x1C10]={ 51798 category="lo", 51799 description="LEPCHA LETTER PHA", 51800 direction="l", 51801 linebreak="al", 51802 unicodeslot=0x1C10, 51803 }, 51804 [0x1C11]={ 51805 category="lo", 51806 description="LEPCHA LETTER FA", 51807 direction="l", 51808 linebreak="al", 51809 unicodeslot=0x1C11, 51810 }, 51811 [0x1C12]={ 51812 category="lo", 51813 description="LEPCHA LETTER FLA", 51814 direction="l", 51815 linebreak="al", 51816 unicodeslot=0x1C12, 51817 }, 51818 [0x1C13]={ 51819 category="lo", 51820 description="LEPCHA LETTER BA", 51821 direction="l", 51822 linebreak="al", 51823 unicodeslot=0x1C13, 51824 }, 51825 [0x1C14]={ 51826 category="lo", 51827 description="LEPCHA LETTER BLA", 51828 direction="l", 51829 linebreak="al", 51830 unicodeslot=0x1C14, 51831 }, 51832 [0x1C15]={ 51833 category="lo", 51834 description="LEPCHA LETTER MA", 51835 direction="l", 51836 linebreak="al", 51837 unicodeslot=0x1C15, 51838 }, 51839 [0x1C16]={ 51840 category="lo", 51841 description="LEPCHA LETTER MLA", 51842 direction="l", 51843 linebreak="al", 51844 unicodeslot=0x1C16, 51845 }, 51846 [0x1C17]={ 51847 category="lo", 51848 description="LEPCHA LETTER TSA", 51849 direction="l", 51850 linebreak="al", 51851 unicodeslot=0x1C17, 51852 }, 51853 [0x1C18]={ 51854 category="lo", 51855 description="LEPCHA LETTER TSHA", 51856 direction="l", 51857 linebreak="al", 51858 unicodeslot=0x1C18, 51859 }, 51860 [0x1C19]={ 51861 category="lo", 51862 description="LEPCHA LETTER DZA", 51863 direction="l", 51864 linebreak="al", 51865 unicodeslot=0x1C19, 51866 }, 51867 [0x1C1A]={ 51868 category="lo", 51869 description="LEPCHA LETTER YA", 51870 direction="l", 51871 linebreak="al", 51872 unicodeslot=0x1C1A, 51873 }, 51874 [0x1C1B]={ 51875 category="lo", 51876 description="LEPCHA LETTER RA", 51877 direction="l", 51878 linebreak="al", 51879 unicodeslot=0x1C1B, 51880 }, 51881 [0x1C1C]={ 51882 category="lo", 51883 description="LEPCHA LETTER LA", 51884 direction="l", 51885 linebreak="al", 51886 unicodeslot=0x1C1C, 51887 }, 51888 [0x1C1D]={ 51889 category="lo", 51890 description="LEPCHA LETTER HA", 51891 direction="l", 51892 linebreak="al", 51893 unicodeslot=0x1C1D, 51894 }, 51895 [0x1C1E]={ 51896 category="lo", 51897 description="LEPCHA LETTER HLA", 51898 direction="l", 51899 linebreak="al", 51900 unicodeslot=0x1C1E, 51901 }, 51902 [0x1C1F]={ 51903 category="lo", 51904 description="LEPCHA LETTER VA", 51905 direction="l", 51906 linebreak="al", 51907 unicodeslot=0x1C1F, 51908 }, 51909 [0x1C20]={ 51910 category="lo", 51911 description="LEPCHA LETTER SA", 51912 direction="l", 51913 linebreak="al", 51914 unicodeslot=0x1C20, 51915 }, 51916 [0x1C21]={ 51917 category="lo", 51918 description="LEPCHA LETTER SHA", 51919 direction="l", 51920 linebreak="al", 51921 unicodeslot=0x1C21, 51922 }, 51923 [0x1C22]={ 51924 category="lo", 51925 description="LEPCHA LETTER WA", 51926 direction="l", 51927 linebreak="al", 51928 unicodeslot=0x1C22, 51929 }, 51930 [0x1C23]={ 51931 category="lo", 51932 description="LEPCHA LETTER A", 51933 direction="l", 51934 linebreak="al", 51935 unicodeslot=0x1C23, 51936 }, 51937 [0x1C24]={ 51938 category="mc", 51939 description="LEPCHA SUBJOINED LETTER YA", 51940 direction="l", 51941 linebreak="cm", 51942 unicodeslot=0x1C24, 51943 }, 51944 [0x1C25]={ 51945 category="mc", 51946 description="LEPCHA SUBJOINED LETTER RA", 51947 direction="l", 51948 linebreak="cm", 51949 unicodeslot=0x1C25, 51950 }, 51951 [0x1C26]={ 51952 category="mc", 51953 description="LEPCHA VOWEL SIGN AA", 51954 direction="l", 51955 linebreak="cm", 51956 unicodeslot=0x1C26, 51957 }, 51958 [0x1C27]={ 51959 category="mc", 51960 description="LEPCHA VOWEL SIGN I", 51961 direction="l", 51962 linebreak="cm", 51963 unicodeslot=0x1C27, 51964 }, 51965 [0x1C28]={ 51966 category="mc", 51967 description="LEPCHA VOWEL SIGN O", 51968 direction="l", 51969 linebreak="cm", 51970 unicodeslot=0x1C28, 51971 }, 51972 [0x1C29]={ 51973 category="mc", 51974 description="LEPCHA VOWEL SIGN OO", 51975 direction="l", 51976 linebreak="cm", 51977 unicodeslot=0x1C29, 51978 }, 51979 [0x1C2A]={ 51980 category="mc", 51981 description="LEPCHA VOWEL SIGN U", 51982 direction="l", 51983 linebreak="cm", 51984 unicodeslot=0x1C2A, 51985 }, 51986 [0x1C2B]={ 51987 category="mc", 51988 description="LEPCHA VOWEL SIGN UU", 51989 direction="l", 51990 linebreak="cm", 51991 unicodeslot=0x1C2B, 51992 }, 51993 [0x1C2C]={ 51994 category="mn", 51995 description="LEPCHA VOWEL SIGN E", 51996 direction="nsm", 51997 linebreak="cm", 51998 unicodeslot=0x1C2C, 51999 }, 52000 [0x1C2D]={ 52001 category="mn", 52002 description="LEPCHA CONSONANT SIGN K", 52003 direction="nsm", 52004 linebreak="cm", 52005 unicodeslot=0x1C2D, 52006 }, 52007 [0x1C2E]={ 52008 category="mn", 52009 description="LEPCHA CONSONANT SIGN M", 52010 direction="nsm", 52011 linebreak="cm", 52012 unicodeslot=0x1C2E, 52013 }, 52014 [0x1C2F]={ 52015 category="mn", 52016 description="LEPCHA CONSONANT SIGN L", 52017 direction="nsm", 52018 linebreak="cm", 52019 unicodeslot=0x1C2F, 52020 }, 52021 [0x1C30]={ 52022 category="mn", 52023 description="LEPCHA CONSONANT SIGN N", 52024 direction="nsm", 52025 linebreak="cm", 52026 unicodeslot=0x1C30, 52027 }, 52028 [0x1C31]={ 52029 category="mn", 52030 description="LEPCHA CONSONANT SIGN P", 52031 direction="nsm", 52032 linebreak="cm", 52033 unicodeslot=0x1C31, 52034 }, 52035 [0x1C32]={ 52036 category="mn", 52037 description="LEPCHA CONSONANT SIGN R", 52038 direction="nsm", 52039 linebreak="cm", 52040 unicodeslot=0x1C32, 52041 }, 52042 [0x1C33]={ 52043 category="mn", 52044 description="LEPCHA CONSONANT SIGN T", 52045 direction="nsm", 52046 linebreak="cm", 52047 unicodeslot=0x1C33, 52048 }, 52049 [0x1C34]={ 52050 category="mc", 52051 description="LEPCHA CONSONANT SIGN NYIN-DO", 52052 direction="l", 52053 linebreak="cm", 52054 unicodeslot=0x1C34, 52055 }, 52056 [0x1C35]={ 52057 category="mc", 52058 description="LEPCHA CONSONANT SIGN KANG", 52059 direction="l", 52060 linebreak="cm", 52061 unicodeslot=0x1C35, 52062 }, 52063 [0x1C36]={ 52064 category="mn", 52065 description="LEPCHA SIGN RAN", 52066 direction="nsm", 52067 linebreak="cm", 52068 unicodeslot=0x1C36, 52069 }, 52070 [0x1C37]={ 52071 category="mn", 52072 combining=0x7, 52073 description="LEPCHA SIGN NUKTA", 52074 direction="nsm", 52075 linebreak="cm", 52076 unicodeslot=0x1C37, 52077 }, 52078 [0x1C3B]={ 52079 category="po", 52080 description="LEPCHA PUNCTUATION TA-ROL", 52081 direction="l", 52082 linebreak="ba", 52083 unicodeslot=0x1C3B, 52084 }, 52085 [0x1C3C]={ 52086 category="po", 52087 description="LEPCHA PUNCTUATION NYET THYOOM TA-ROL", 52088 direction="l", 52089 linebreak="ba", 52090 unicodeslot=0x1C3C, 52091 }, 52092 [0x1C3D]={ 52093 category="po", 52094 description="LEPCHA PUNCTUATION CER-WA", 52095 direction="l", 52096 linebreak="ba", 52097 unicodeslot=0x1C3D, 52098 }, 52099 [0x1C3E]={ 52100 category="po", 52101 description="LEPCHA PUNCTUATION TSHOOK CER-WA", 52102 direction="l", 52103 linebreak="ba", 52104 unicodeslot=0x1C3E, 52105 }, 52106 [0x1C3F]={ 52107 category="po", 52108 description="LEPCHA PUNCTUATION TSHOOK", 52109 direction="l", 52110 linebreak="ba", 52111 unicodeslot=0x1C3F, 52112 }, 52113 [0x1C40]={ 52114 category="nd", 52115 description="LEPCHA DIGIT ZERO", 52116 direction="l", 52117 linebreak="nu", 52118 unicodeslot=0x1C40, 52119 }, 52120 [0x1C41]={ 52121 category="nd", 52122 description="LEPCHA DIGIT ONE", 52123 direction="l", 52124 linebreak="nu", 52125 unicodeslot=0x1C41, 52126 }, 52127 [0x1C42]={ 52128 category="nd", 52129 description="LEPCHA DIGIT TWO", 52130 direction="l", 52131 linebreak="nu", 52132 unicodeslot=0x1C42, 52133 }, 52134 [0x1C43]={ 52135 category="nd", 52136 description="LEPCHA DIGIT THREE", 52137 direction="l", 52138 linebreak="nu", 52139 unicodeslot=0x1C43, 52140 }, 52141 [0x1C44]={ 52142 category="nd", 52143 description="LEPCHA DIGIT FOUR", 52144 direction="l", 52145 linebreak="nu", 52146 unicodeslot=0x1C44, 52147 }, 52148 [0x1C45]={ 52149 category="nd", 52150 description="LEPCHA DIGIT FIVE", 52151 direction="l", 52152 linebreak="nu", 52153 unicodeslot=0x1C45, 52154 }, 52155 [0x1C46]={ 52156 category="nd", 52157 description="LEPCHA DIGIT SIX", 52158 direction="l", 52159 linebreak="nu", 52160 unicodeslot=0x1C46, 52161 }, 52162 [0x1C47]={ 52163 category="nd", 52164 description="LEPCHA DIGIT SEVEN", 52165 direction="l", 52166 linebreak="nu", 52167 unicodeslot=0x1C47, 52168 }, 52169 [0x1C48]={ 52170 category="nd", 52171 description="LEPCHA DIGIT EIGHT", 52172 direction="l", 52173 linebreak="nu", 52174 unicodeslot=0x1C48, 52175 }, 52176 [0x1C49]={ 52177 category="nd", 52178 description="LEPCHA DIGIT NINE", 52179 direction="l", 52180 linebreak="nu", 52181 unicodeslot=0x1C49, 52182 }, 52183 [0x1C4D]={ 52184 category="lo", 52185 description="LEPCHA LETTER TTA", 52186 direction="l", 52187 linebreak="al", 52188 unicodeslot=0x1C4D, 52189 }, 52190 [0x1C4E]={ 52191 category="lo", 52192 description="LEPCHA LETTER TTHA", 52193 direction="l", 52194 linebreak="al", 52195 unicodeslot=0x1C4E, 52196 }, 52197 [0x1C4F]={ 52198 category="lo", 52199 description="LEPCHA LETTER DDA", 52200 direction="l", 52201 linebreak="al", 52202 unicodeslot=0x1C4F, 52203 }, 52204 [0x1C50]={ 52205 category="nd", 52206 description="OL CHIKI DIGIT ZERO", 52207 direction="l", 52208 linebreak="nu", 52209 unicodeslot=0x1C50, 52210 }, 52211 [0x1C51]={ 52212 category="nd", 52213 description="OL CHIKI DIGIT ONE", 52214 direction="l", 52215 linebreak="nu", 52216 unicodeslot=0x1C51, 52217 }, 52218 [0x1C52]={ 52219 category="nd", 52220 description="OL CHIKI DIGIT TWO", 52221 direction="l", 52222 linebreak="nu", 52223 unicodeslot=0x1C52, 52224 }, 52225 [0x1C53]={ 52226 category="nd", 52227 description="OL CHIKI DIGIT THREE", 52228 direction="l", 52229 linebreak="nu", 52230 unicodeslot=0x1C53, 52231 }, 52232 [0x1C54]={ 52233 category="nd", 52234 description="OL CHIKI DIGIT FOUR", 52235 direction="l", 52236 linebreak="nu", 52237 unicodeslot=0x1C54, 52238 }, 52239 [0x1C55]={ 52240 category="nd", 52241 description="OL CHIKI DIGIT FIVE", 52242 direction="l", 52243 linebreak="nu", 52244 unicodeslot=0x1C55, 52245 }, 52246 [0x1C56]={ 52247 category="nd", 52248 description="OL CHIKI DIGIT SIX", 52249 direction="l", 52250 linebreak="nu", 52251 unicodeslot=0x1C56, 52252 }, 52253 [0x1C57]={ 52254 category="nd", 52255 description="OL CHIKI DIGIT SEVEN", 52256 direction="l", 52257 linebreak="nu", 52258 unicodeslot=0x1C57, 52259 }, 52260 [0x1C58]={ 52261 category="nd", 52262 description="OL CHIKI DIGIT EIGHT", 52263 direction="l", 52264 linebreak="nu", 52265 unicodeslot=0x1C58, 52266 }, 52267 [0x1C59]={ 52268 category="nd", 52269 description="OL CHIKI DIGIT NINE", 52270 direction="l", 52271 linebreak="nu", 52272 unicodeslot=0x1C59, 52273 }, 52274 [0x1C5A]={ 52275 category="lo", 52276 description="OL CHIKI LETTER LA", 52277 direction="l", 52278 linebreak="al", 52279 unicodeslot=0x1C5A, 52280 }, 52281 [0x1C5B]={ 52282 category="lo", 52283 description="OL CHIKI LETTER AT", 52284 direction="l", 52285 linebreak="al", 52286 unicodeslot=0x1C5B, 52287 }, 52288 [0x1C5C]={ 52289 category="lo", 52290 description="OL CHIKI LETTER AG", 52291 direction="l", 52292 linebreak="al", 52293 unicodeslot=0x1C5C, 52294 }, 52295 [0x1C5D]={ 52296 category="lo", 52297 description="OL CHIKI LETTER ANG", 52298 direction="l", 52299 linebreak="al", 52300 unicodeslot=0x1C5D, 52301 }, 52302 [0x1C5E]={ 52303 category="lo", 52304 description="OL CHIKI LETTER AL", 52305 direction="l", 52306 linebreak="al", 52307 unicodeslot=0x1C5E, 52308 }, 52309 [0x1C5F]={ 52310 category="lo", 52311 description="OL CHIKI LETTER LAA", 52312 direction="l", 52313 linebreak="al", 52314 unicodeslot=0x1C5F, 52315 }, 52316 [0x1C60]={ 52317 category="lo", 52318 description="OL CHIKI LETTER AAK", 52319 direction="l", 52320 linebreak="al", 52321 unicodeslot=0x1C60, 52322 }, 52323 [0x1C61]={ 52324 category="lo", 52325 description="OL CHIKI LETTER AAJ", 52326 direction="l", 52327 linebreak="al", 52328 unicodeslot=0x1C61, 52329 }, 52330 [0x1C62]={ 52331 category="lo", 52332 description="OL CHIKI LETTER AAM", 52333 direction="l", 52334 linebreak="al", 52335 unicodeslot=0x1C62, 52336 }, 52337 [0x1C63]={ 52338 category="lo", 52339 description="OL CHIKI LETTER AAW", 52340 direction="l", 52341 linebreak="al", 52342 unicodeslot=0x1C63, 52343 }, 52344 [0x1C64]={ 52345 category="lo", 52346 description="OL CHIKI LETTER LI", 52347 direction="l", 52348 linebreak="al", 52349 unicodeslot=0x1C64, 52350 }, 52351 [0x1C65]={ 52352 category="lo", 52353 description="OL CHIKI LETTER IS", 52354 direction="l", 52355 linebreak="al", 52356 unicodeslot=0x1C65, 52357 }, 52358 [0x1C66]={ 52359 category="lo", 52360 description="OL CHIKI LETTER IH", 52361 direction="l", 52362 linebreak="al", 52363 unicodeslot=0x1C66, 52364 }, 52365 [0x1C67]={ 52366 category="lo", 52367 description="OL CHIKI LETTER INY", 52368 direction="l", 52369 linebreak="al", 52370 unicodeslot=0x1C67, 52371 }, 52372 [0x1C68]={ 52373 category="lo", 52374 description="OL CHIKI LETTER IR", 52375 direction="l", 52376 linebreak="al", 52377 unicodeslot=0x1C68, 52378 }, 52379 [0x1C69]={ 52380 category="lo", 52381 description="OL CHIKI LETTER LU", 52382 direction="l", 52383 linebreak="al", 52384 unicodeslot=0x1C69, 52385 }, 52386 [0x1C6A]={ 52387 category="lo", 52388 description="OL CHIKI LETTER UC", 52389 direction="l", 52390 linebreak="al", 52391 unicodeslot=0x1C6A, 52392 }, 52393 [0x1C6B]={ 52394 category="lo", 52395 description="OL CHIKI LETTER UD", 52396 direction="l", 52397 linebreak="al", 52398 unicodeslot=0x1C6B, 52399 }, 52400 [0x1C6C]={ 52401 category="lo", 52402 description="OL CHIKI LETTER UNN", 52403 direction="l", 52404 linebreak="al", 52405 unicodeslot=0x1C6C, 52406 }, 52407 [0x1C6D]={ 52408 category="lo", 52409 description="OL CHIKI LETTER UY", 52410 direction="l", 52411 linebreak="al", 52412 unicodeslot=0x1C6D, 52413 }, 52414 [0x1C6E]={ 52415 category="lo", 52416 description="OL CHIKI LETTER LE", 52417 direction="l", 52418 linebreak="al", 52419 unicodeslot=0x1C6E, 52420 }, 52421 [0x1C6F]={ 52422 category="lo", 52423 description="OL CHIKI LETTER EP", 52424 direction="l", 52425 linebreak="al", 52426 unicodeslot=0x1C6F, 52427 }, 52428 [0x1C70]={ 52429 category="lo", 52430 description="OL CHIKI LETTER EDD", 52431 direction="l", 52432 linebreak="al", 52433 unicodeslot=0x1C70, 52434 }, 52435 [0x1C71]={ 52436 category="lo", 52437 description="OL CHIKI LETTER EN", 52438 direction="l", 52439 linebreak="al", 52440 unicodeslot=0x1C71, 52441 }, 52442 [0x1C72]={ 52443 category="lo", 52444 description="OL CHIKI LETTER ERR", 52445 direction="l", 52446 linebreak="al", 52447 unicodeslot=0x1C72, 52448 }, 52449 [0x1C73]={ 52450 category="lo", 52451 description="OL CHIKI LETTER LO", 52452 direction="l", 52453 linebreak="al", 52454 unicodeslot=0x1C73, 52455 }, 52456 [0x1C74]={ 52457 category="lo", 52458 description="OL CHIKI LETTER OTT", 52459 direction="l", 52460 linebreak="al", 52461 unicodeslot=0x1C74, 52462 }, 52463 [0x1C75]={ 52464 category="lo", 52465 description="OL CHIKI LETTER OB", 52466 direction="l", 52467 linebreak="al", 52468 unicodeslot=0x1C75, 52469 }, 52470 [0x1C76]={ 52471 category="lo", 52472 description="OL CHIKI LETTER OV", 52473 direction="l", 52474 linebreak="al", 52475 unicodeslot=0x1C76, 52476 }, 52477 [0x1C77]={ 52478 category="lo", 52479 description="OL CHIKI LETTER OH", 52480 direction="l", 52481 linebreak="al", 52482 unicodeslot=0x1C77, 52483 }, 52484 [0x1C78]={ 52485 category="lm", 52486 description="OL CHIKI MU TTUDDAG", 52487 direction="l", 52488 linebreak="al", 52489 unicodeslot=0x1C78, 52490 }, 52491 [0x1C79]={ 52492 category="lm", 52493 description="OL CHIKI GAAHLAA TTUDDAAG", 52494 direction="l", 52495 linebreak="al", 52496 unicodeslot=0x1C79, 52497 }, 52498 [0x1C7A]={ 52499 category="lm", 52500 description="OL CHIKI MU-GAAHLAA TTUDDAAG", 52501 direction="l", 52502 linebreak="al", 52503 unicodeslot=0x1C7A, 52504 }, 52505 [0x1C7B]={ 52506 category="lm", 52507 description="OL CHIKI RELAA", 52508 direction="l", 52509 linebreak="al", 52510 unicodeslot=0x1C7B, 52511 }, 52512 [0x1C7C]={ 52513 category="lm", 52514 description="OL CHIKI PHAARKAA", 52515 direction="l", 52516 linebreak="al", 52517 unicodeslot=0x1C7C, 52518 }, 52519 [0x1C7D]={ 52520 category="lm", 52521 description="OL CHIKI AHAD", 52522 direction="l", 52523 linebreak="al", 52524 unicodeslot=0x1C7D, 52525 }, 52526 [0x1C7E]={ 52527 category="po", 52528 description="OL CHIKI PUNCTUATION MUCAAD", 52529 direction="l", 52530 linebreak="ba", 52531 unicodeslot=0x1C7E, 52532 }, 52533 [0x1C7F]={ 52534 category="po", 52535 description="OL CHIKI PUNCTUATION DOUBLE MUCAAD", 52536 direction="l", 52537 linebreak="ba", 52538 unicodeslot=0x1C7F, 52539 }, 52540 [0x1C80]={ 52541 category="ll", 52542 description="CYRILLIC SMALL LETTER ROUNDED VE", 52543 direction="l", 52544 linebreak="al", 52545 uccode=0x432, 52546 unicodeslot=0x1C80, 52547 }, 52548 [0x1C81]={ 52549 category="ll", 52550 description="CYRILLIC SMALL LETTER LONG-LEGGED DE", 52551 direction="l", 52552 linebreak="al", 52553 uccode=0x434, 52554 unicodeslot=0x1C81, 52555 }, 52556 [0x1C82]={ 52557 category="ll", 52558 description="CYRILLIC SMALL LETTER NARROW O", 52559 direction="l", 52560 linebreak="al", 52561 uccode=0x43E, 52562 unicodeslot=0x1C82, 52563 }, 52564 [0x1C83]={ 52565 category="ll", 52566 description="CYRILLIC SMALL LETTER WIDE ES", 52567 direction="l", 52568 linebreak="al", 52569 uccode=0x441, 52570 unicodeslot=0x1C83, 52571 }, 52572 [0x1C84]={ 52573 category="ll", 52574 description="CYRILLIC SMALL LETTER TALL TE", 52575 direction="l", 52576 linebreak="al", 52577 uccode=0x442, 52578 unicodeslot=0x1C84, 52579 }, 52580 [0x1C85]={ 52581 category="ll", 52582 description="CYRILLIC SMALL LETTER THREE-LEGGED TE", 52583 direction="l", 52584 linebreak="al", 52585 uccode=0x442, 52586 unicodeslot=0x1C85, 52587 }, 52588 [0x1C86]={ 52589 category="ll", 52590 description="CYRILLIC SMALL LETTER TALL HARD SIGN", 52591 direction="l", 52592 linebreak="al", 52593 uccode=0x44A, 52594 unicodeslot=0x1C86, 52595 }, 52596 [0x1C87]={ 52597 category="ll", 52598 description="CYRILLIC SMALL LETTER TALL YAT", 52599 direction="l", 52600 linebreak="al", 52601 uccode=0x463, 52602 unicodeslot=0x1C87, 52603 }, 52604 [0x1C88]={ 52605 category="ll", 52606 description="CYRILLIC SMALL LETTER UNBLENDED UK", 52607 direction="l", 52608 linebreak="al", 52609 uccode=0xA64B, 52610 unicodeslot=0x1C88, 52611 }, 52612 [0x1C89]={ 52613 category="lu", 52614 description="CYRILLIC CAPITAL LETTER TJE", 52615 direction="l", 52616 lccode=0x1C8A, 52617 linebreak="al", 52618 unicodeslot=0x1C89, 52619 }, 52620 [0x1C8A]={ 52621 category="ll", 52622 description="CYRILLIC SMALL LETTER TJE", 52623 direction="l", 52624 linebreak="al", 52625 unicodeslot=0x1C8A, 52626 }, 52627 [0x1C90]={ 52628 category="lu", 52629 description="GEORGIAN MTAVRULI CAPITAL LETTER AN", 52630 direction="l", 52631 lccode=0x10D0, 52632 linebreak="al", 52633 unicodeslot=0x1C90, 52634 }, 52635 [0x1C91]={ 52636 category="lu", 52637 description="GEORGIAN MTAVRULI CAPITAL LETTER BAN", 52638 direction="l", 52639 lccode=0x10D1, 52640 linebreak="al", 52641 unicodeslot=0x1C91, 52642 }, 52643 [0x1C92]={ 52644 category="lu", 52645 description="GEORGIAN MTAVRULI CAPITAL LETTER GAN", 52646 direction="l", 52647 lccode=0x10D2, 52648 linebreak="al", 52649 unicodeslot=0x1C92, 52650 }, 52651 [0x1C93]={ 52652 category="lu", 52653 description="GEORGIAN MTAVRULI CAPITAL LETTER DON", 52654 direction="l", 52655 lccode=0x10D3, 52656 linebreak="al", 52657 unicodeslot=0x1C93, 52658 }, 52659 [0x1C94]={ 52660 category="lu", 52661 description="GEORGIAN MTAVRULI CAPITAL LETTER EN", 52662 direction="l", 52663 lccode=0x10D4, 52664 linebreak="al", 52665 unicodeslot=0x1C94, 52666 }, 52667 [0x1C95]={ 52668 category="lu", 52669 description="GEORGIAN MTAVRULI CAPITAL LETTER VIN", 52670 direction="l", 52671 lccode=0x10D5, 52672 linebreak="al", 52673 unicodeslot=0x1C95, 52674 }, 52675 [0x1C96]={ 52676 category="lu", 52677 description="GEORGIAN MTAVRULI CAPITAL LETTER ZEN", 52678 direction="l", 52679 lccode=0x10D6, 52680 linebreak="al", 52681 unicodeslot=0x1C96, 52682 }, 52683 [0x1C97]={ 52684 category="lu", 52685 description="GEORGIAN MTAVRULI CAPITAL LETTER TAN", 52686 direction="l", 52687 lccode=0x10D7, 52688 linebreak="al", 52689 unicodeslot=0x1C97, 52690 }, 52691 [0x1C98]={ 52692 category="lu", 52693 description="GEORGIAN MTAVRULI CAPITAL LETTER IN", 52694 direction="l", 52695 lccode=0x10D8, 52696 linebreak="al", 52697 unicodeslot=0x1C98, 52698 }, 52699 [0x1C99]={ 52700 category="lu", 52701 description="GEORGIAN MTAVRULI CAPITAL LETTER KAN", 52702 direction="l", 52703 lccode=0x10D9, 52704 linebreak="al", 52705 unicodeslot=0x1C99, 52706 }, 52707 [0x1C9A]={ 52708 category="lu", 52709 description="GEORGIAN MTAVRULI CAPITAL LETTER LAS", 52710 direction="l", 52711 lccode=0x10DA, 52712 linebreak="al", 52713 unicodeslot=0x1C9A, 52714 }, 52715 [0x1C9B]={ 52716 category="lu", 52717 description="GEORGIAN MTAVRULI CAPITAL LETTER MAN", 52718 direction="l", 52719 lccode=0x10DB, 52720 linebreak="al", 52721 unicodeslot=0x1C9B, 52722 }, 52723 [0x1C9C]={ 52724 category="lu", 52725 description="GEORGIAN MTAVRULI CAPITAL LETTER NAR", 52726 direction="l", 52727 lccode=0x10DC, 52728 linebreak="al", 52729 unicodeslot=0x1C9C, 52730 }, 52731 [0x1C9D]={ 52732 category="lu", 52733 description="GEORGIAN MTAVRULI CAPITAL LETTER ON", 52734 direction="l", 52735 lccode=0x10DD, 52736 linebreak="al", 52737 unicodeslot=0x1C9D, 52738 }, 52739 [0x1C9E]={ 52740 category="lu", 52741 description="GEORGIAN MTAVRULI CAPITAL LETTER PAR", 52742 direction="l", 52743 lccode=0x10DE, 52744 linebreak="al", 52745 unicodeslot=0x1C9E, 52746 }, 52747 [0x1C9F]={ 52748 category="lu", 52749 description="GEORGIAN MTAVRULI CAPITAL LETTER ZHAR", 52750 direction="l", 52751 lccode=0x10DF, 52752 linebreak="al", 52753 unicodeslot=0x1C9F, 52754 }, 52755 [0x1CA0]={ 52756 category="lu", 52757 description="GEORGIAN MTAVRULI CAPITAL LETTER RAE", 52758 direction="l", 52759 lccode=0x10E0, 52760 linebreak="al", 52761 unicodeslot=0x1CA0, 52762 }, 52763 [0x1CA1]={ 52764 category="lu", 52765 description="GEORGIAN MTAVRULI CAPITAL LETTER SAN", 52766 direction="l", 52767 lccode=0x10E1, 52768 linebreak="al", 52769 unicodeslot=0x1CA1, 52770 }, 52771 [0x1CA2]={ 52772 category="lu", 52773 description="GEORGIAN MTAVRULI CAPITAL LETTER TAR", 52774 direction="l", 52775 lccode=0x10E2, 52776 linebreak="al", 52777 unicodeslot=0x1CA2, 52778 }, 52779 [0x1CA3]={ 52780 category="lu", 52781 description="GEORGIAN MTAVRULI CAPITAL LETTER UN", 52782 direction="l", 52783 lccode=0x10E3, 52784 linebreak="al", 52785 unicodeslot=0x1CA3, 52786 }, 52787 [0x1CA4]={ 52788 category="lu", 52789 description="GEORGIAN MTAVRULI CAPITAL LETTER PHAR", 52790 direction="l", 52791 lccode=0x10E4, 52792 linebreak="al", 52793 unicodeslot=0x1CA4, 52794 }, 52795 [0x1CA5]={ 52796 category="lu", 52797 description="GEORGIAN MTAVRULI CAPITAL LETTER KHAR", 52798 direction="l", 52799 lccode=0x10E5, 52800 linebreak="al", 52801 unicodeslot=0x1CA5, 52802 }, 52803 [0x1CA6]={ 52804 category="lu", 52805 description="GEORGIAN MTAVRULI CAPITAL LETTER GHAN", 52806 direction="l", 52807 lccode=0x10E6, 52808 linebreak="al", 52809 unicodeslot=0x1CA6, 52810 }, 52811 [0x1CA7]={ 52812 category="lu", 52813 description="GEORGIAN MTAVRULI CAPITAL LETTER QAR", 52814 direction="l", 52815 lccode=0x10E7, 52816 linebreak="al", 52817 unicodeslot=0x1CA7, 52818 }, 52819 [0x1CA8]={ 52820 category="lu", 52821 description="GEORGIAN MTAVRULI CAPITAL LETTER SHIN", 52822 direction="l", 52823 lccode=0x10E8, 52824 linebreak="al", 52825 unicodeslot=0x1CA8, 52826 }, 52827 [0x1CA9]={ 52828 category="lu", 52829 description="GEORGIAN MTAVRULI CAPITAL LETTER CHIN", 52830 direction="l", 52831 lccode=0x10E9, 52832 linebreak="al", 52833 unicodeslot=0x1CA9, 52834 }, 52835 [0x1CAA]={ 52836 category="lu", 52837 description="GEORGIAN MTAVRULI CAPITAL LETTER CAN", 52838 direction="l", 52839 lccode=0x10EA, 52840 linebreak="al", 52841 unicodeslot=0x1CAA, 52842 }, 52843 [0x1CAB]={ 52844 category="lu", 52845 description="GEORGIAN MTAVRULI CAPITAL LETTER JIL", 52846 direction="l", 52847 lccode=0x10EB, 52848 linebreak="al", 52849 unicodeslot=0x1CAB, 52850 }, 52851 [0x1CAC]={ 52852 category="lu", 52853 description="GEORGIAN MTAVRULI CAPITAL LETTER CIL", 52854 direction="l", 52855 lccode=0x10EC, 52856 linebreak="al", 52857 unicodeslot=0x1CAC, 52858 }, 52859 [0x1CAD]={ 52860 category="lu", 52861 description="GEORGIAN MTAVRULI CAPITAL LETTER CHAR", 52862 direction="l", 52863 lccode=0x10ED, 52864 linebreak="al", 52865 unicodeslot=0x1CAD, 52866 }, 52867 [0x1CAE]={ 52868 category="lu", 52869 description="GEORGIAN MTAVRULI CAPITAL LETTER XAN", 52870 direction="l", 52871 lccode=0x10EE, 52872 linebreak="al", 52873 unicodeslot=0x1CAE, 52874 }, 52875 [0x1CAF]={ 52876 category="lu", 52877 description="GEORGIAN MTAVRULI CAPITAL LETTER JHAN", 52878 direction="l", 52879 lccode=0x10EF, 52880 linebreak="al", 52881 unicodeslot=0x1CAF, 52882 }, 52883 [0x1CB0]={ 52884 category="lu", 52885 description="GEORGIAN MTAVRULI CAPITAL LETTER HAE", 52886 direction="l", 52887 lccode=0x10F0, 52888 linebreak="al", 52889 unicodeslot=0x1CB0, 52890 }, 52891 [0x1CB1]={ 52892 category="lu", 52893 description="GEORGIAN MTAVRULI CAPITAL LETTER HE", 52894 direction="l", 52895 lccode=0x10F1, 52896 linebreak="al", 52897 unicodeslot=0x1CB1, 52898 }, 52899 [0x1CB2]={ 52900 category="lu", 52901 description="GEORGIAN MTAVRULI CAPITAL LETTER HIE", 52902 direction="l", 52903 lccode=0x10F2, 52904 linebreak="al", 52905 unicodeslot=0x1CB2, 52906 }, 52907 [0x1CB3]={ 52908 category="lu", 52909 description="GEORGIAN MTAVRULI CAPITAL LETTER WE", 52910 direction="l", 52911 lccode=0x10F3, 52912 linebreak="al", 52913 unicodeslot=0x1CB3, 52914 }, 52915 [0x1CB4]={ 52916 category="lu", 52917 description="GEORGIAN MTAVRULI CAPITAL LETTER HAR", 52918 direction="l", 52919 lccode=0x10F4, 52920 linebreak="al", 52921 unicodeslot=0x1CB4, 52922 }, 52923 [0x1CB5]={ 52924 category="lu", 52925 description="GEORGIAN MTAVRULI CAPITAL LETTER HOE", 52926 direction="l", 52927 lccode=0x10F5, 52928 linebreak="al", 52929 unicodeslot=0x1CB5, 52930 }, 52931 [0x1CB6]={ 52932 category="lu", 52933 description="GEORGIAN MTAVRULI CAPITAL LETTER FI", 52934 direction="l", 52935 lccode=0x10F6, 52936 linebreak="al", 52937 unicodeslot=0x1CB6, 52938 }, 52939 [0x1CB7]={ 52940 category="lu", 52941 description="GEORGIAN MTAVRULI CAPITAL LETTER YN", 52942 direction="l", 52943 lccode=0x10F7, 52944 linebreak="al", 52945 unicodeslot=0x1CB7, 52946 }, 52947 [0x1CB8]={ 52948 category="lu", 52949 description="GEORGIAN MTAVRULI CAPITAL LETTER ELIFI", 52950 direction="l", 52951 lccode=0x10F8, 52952 linebreak="al", 52953 unicodeslot=0x1CB8, 52954 }, 52955 [0x1CB9]={ 52956 category="lu", 52957 description="GEORGIAN MTAVRULI CAPITAL LETTER TURNED GAN", 52958 direction="l", 52959 lccode=0x10F9, 52960 linebreak="al", 52961 unicodeslot=0x1CB9, 52962 }, 52963 [0x1CBA]={ 52964 category="lu", 52965 description="GEORGIAN MTAVRULI CAPITAL LETTER AIN", 52966 direction="l", 52967 lccode=0x10FA, 52968 linebreak="al", 52969 unicodeslot=0x1CBA, 52970 }, 52971 [0x1CBD]={ 52972 category="lu", 52973 description="GEORGIAN MTAVRULI CAPITAL LETTER AEN", 52974 direction="l", 52975 lccode=0x10FD, 52976 linebreak="al", 52977 unicodeslot=0x1CBD, 52978 }, 52979 [0x1CBE]={ 52980 category="lu", 52981 description="GEORGIAN MTAVRULI CAPITAL LETTER HARD SIGN", 52982 direction="l", 52983 lccode=0x10FE, 52984 linebreak="al", 52985 unicodeslot=0x1CBE, 52986 }, 52987 [0x1CBF]={ 52988 category="lu", 52989 description="GEORGIAN MTAVRULI CAPITAL LETTER LABIAL SIGN", 52990 direction="l", 52991 lccode=0x10FF, 52992 linebreak="al", 52993 unicodeslot=0x1CBF, 52994 }, 52995 [0x1CC0]={ 52996 category="po", 52997 description="SUNDANESE PUNCTUATION BINDU SURYA", 52998 direction="l", 52999 linebreak="al", 53000 unicodeslot=0x1CC0, 53001 }, 53002 [0x1CC1]={ 53003 category="po", 53004 description="SUNDANESE PUNCTUATION BINDU PANGLONG", 53005 direction="l", 53006 linebreak="al", 53007 unicodeslot=0x1CC1, 53008 }, 53009 [0x1CC2]={ 53010 category="po", 53011 description="SUNDANESE PUNCTUATION BINDU PURNAMA", 53012 direction="l", 53013 linebreak="al", 53014 unicodeslot=0x1CC2, 53015 }, 53016 [0x1CC3]={ 53017 category="po", 53018 description="SUNDANESE PUNCTUATION BINDU CAKRA", 53019 direction="l", 53020 linebreak="al", 53021 unicodeslot=0x1CC3, 53022 }, 53023 [0x1CC4]={ 53024 category="po", 53025 description="SUNDANESE PUNCTUATION BINDU LEU SATANGA", 53026 direction="l", 53027 linebreak="al", 53028 unicodeslot=0x1CC4, 53029 }, 53030 [0x1CC5]={ 53031 category="po", 53032 description="SUNDANESE PUNCTUATION BINDU KA SATANGA", 53033 direction="l", 53034 linebreak="al", 53035 unicodeslot=0x1CC5, 53036 }, 53037 [0x1CC6]={ 53038 category="po", 53039 description="SUNDANESE PUNCTUATION BINDU DA SATANGA", 53040 direction="l", 53041 linebreak="al", 53042 unicodeslot=0x1CC6, 53043 }, 53044 [0x1CC7]={ 53045 category="po", 53046 description="SUNDANESE PUNCTUATION BINDU BA SATANGA", 53047 direction="l", 53048 linebreak="al", 53049 unicodeslot=0x1CC7, 53050 }, 53051 [0x1CD0]={ 53052 category="mn", 53053 combining=0xE6, 53054 description="VEDIC TONE KARSHANA", 53055 direction="nsm", 53056 linebreak="cm", 53057 unicodeslot=0x1CD0, 53058 }, 53059 [0x1CD1]={ 53060 category="mn", 53061 combining=0xE6, 53062 description="VEDIC TONE SHARA", 53063 direction="nsm", 53064 linebreak="cm", 53065 unicodeslot=0x1CD1, 53066 }, 53067 [0x1CD2]={ 53068 category="mn", 53069 combining=0xE6, 53070 description="VEDIC TONE PRENKHA", 53071 direction="nsm", 53072 linebreak="cm", 53073 unicodeslot=0x1CD2, 53074 }, 53075 [0x1CD3]={ 53076 category="po", 53077 description="VEDIC SIGN NIHSHVASA", 53078 direction="l", 53079 linebreak="al", 53080 unicodeslot=0x1CD3, 53081 }, 53082 [0x1CD4]={ 53083 category="mn", 53084 combining=0x1, 53085 description="VEDIC SIGN YAJURVEDIC MIDLINE SVARITA", 53086 direction="nsm", 53087 linebreak="cm", 53088 unicodeslot=0x1CD4, 53089 }, 53090 [0x1CD5]={ 53091 category="mn", 53092 combining=0xDC, 53093 description="VEDIC TONE YAJURVEDIC AGGRAVATED INDEPENDENT SVARITA", 53094 direction="nsm", 53095 linebreak="cm", 53096 unicodeslot=0x1CD5, 53097 }, 53098 [0x1CD6]={ 53099 category="mn", 53100 combining=0xDC, 53101 description="VEDIC TONE YAJURVEDIC INDEPENDENT SVARITA", 53102 direction="nsm", 53103 linebreak="cm", 53104 unicodeslot=0x1CD6, 53105 }, 53106 [0x1CD7]={ 53107 category="mn", 53108 combining=0xDC, 53109 description="VEDIC TONE YAJURVEDIC KATHAKA INDEPENDENT SVARITA", 53110 direction="nsm", 53111 linebreak="cm", 53112 unicodeslot=0x1CD7, 53113 }, 53114 [0x1CD8]={ 53115 category="mn", 53116 combining=0xDC, 53117 description="VEDIC TONE CANDRA BELOW", 53118 direction="nsm", 53119 linebreak="cm", 53120 unicodeslot=0x1CD8, 53121 }, 53122 [0x1CD9]={ 53123 category="mn", 53124 combining=0xDC, 53125 description="VEDIC TONE YAJURVEDIC KATHAKA INDEPENDENT SVARITA SCHROEDER", 53126 direction="nsm", 53127 linebreak="cm", 53128 unicodeslot=0x1CD9, 53129 }, 53130 [0x1CDA]={ 53131 category="mn", 53132 combining=0xE6, 53133 description="VEDIC TONE DOUBLE SVARITA", 53134 direction="nsm", 53135 linebreak="cm", 53136 unicodeslot=0x1CDA, 53137 }, 53138 [0x1CDB]={ 53139 category="mn", 53140 combining=0xE6, 53141 description="VEDIC TONE TRIPLE SVARITA", 53142 direction="nsm", 53143 linebreak="cm", 53144 unicodeslot=0x1CDB, 53145 }, 53146 [0x1CDC]={ 53147 category="mn", 53148 combining=0xDC, 53149 description="VEDIC TONE KATHAKA ANUDATTA", 53150 direction="nsm", 53151 linebreak="cm", 53152 unicodeslot=0x1CDC, 53153 }, 53154 [0x1CDD]={ 53155 category="mn", 53156 combining=0xDC, 53157 description="VEDIC TONE DOT BELOW", 53158 direction="nsm", 53159 linebreak="cm", 53160 unicodeslot=0x1CDD, 53161 }, 53162 [0x1CDE]={ 53163 category="mn", 53164 combining=0xDC, 53165 description="VEDIC TONE TWO DOTS BELOW", 53166 direction="nsm", 53167 linebreak="cm", 53168 unicodeslot=0x1CDE, 53169 }, 53170 [0x1CDF]={ 53171 category="mn", 53172 combining=0xDC, 53173 description="VEDIC TONE THREE DOTS BELOW", 53174 direction="nsm", 53175 linebreak="cm", 53176 unicodeslot=0x1CDF, 53177 }, 53178 [0x1CE0]={ 53179 category="mn", 53180 combining=0xE6, 53181 description="VEDIC TONE RIGVEDIC KASHMIRI INDEPENDENT SVARITA", 53182 direction="nsm", 53183 linebreak="cm", 53184 unicodeslot=0x1CE0, 53185 }, 53186 [0x1CE1]={ 53187 category="mc", 53188 description="VEDIC TONE ATHARVAVEDIC INDEPENDENT SVARITA", 53189 direction="l", 53190 linebreak="cm", 53191 unicodeslot=0x1CE1, 53192 }, 53193 [0x1CE2]={ 53194 category="mn", 53195 combining=0x1, 53196 description="VEDIC SIGN VISARGA SVARITA", 53197 direction="nsm", 53198 linebreak="cm", 53199 unicodeslot=0x1CE2, 53200 }, 53201 [0x1CE3]={ 53202 category="mn", 53203 combining=0x1, 53204 description="VEDIC SIGN VISARGA UDATTA", 53205 direction="nsm", 53206 linebreak="cm", 53207 unicodeslot=0x1CE3, 53208 }, 53209 [0x1CE4]={ 53210 category="mn", 53211 combining=0x1, 53212 description="VEDIC SIGN REVERSED VISARGA UDATTA", 53213 direction="nsm", 53214 linebreak="cm", 53215 unicodeslot=0x1CE4, 53216 }, 53217 [0x1CE5]={ 53218 category="mn", 53219 combining=0x1, 53220 description="VEDIC SIGN VISARGA ANUDATTA", 53221 direction="nsm", 53222 linebreak="cm", 53223 unicodeslot=0x1CE5, 53224 }, 53225 [0x1CE6]={ 53226 category="mn", 53227 combining=0x1, 53228 description="VEDIC SIGN REVERSED VISARGA ANUDATTA", 53229 direction="nsm", 53230 linebreak="cm", 53231 unicodeslot=0x1CE6, 53232 }, 53233 [0x1CE7]={ 53234 category="mn", 53235 combining=0x1, 53236 description="VEDIC SIGN VISARGA UDATTA WITH TAIL", 53237 direction="nsm", 53238 linebreak="cm", 53239 unicodeslot=0x1CE7, 53240 }, 53241 [0x1CE8]={ 53242 category="mn", 53243 combining=0x1, 53244 description="VEDIC SIGN VISARGA ANUDATTA WITH TAIL", 53245 direction="nsm", 53246 linebreak="cm", 53247 unicodeslot=0x1CE8, 53248 }, 53249 [0x1CE9]={ 53250 category="lo", 53251 description="VEDIC SIGN ANUSVARA ANTARGOMUKHA", 53252 direction="l", 53253 linebreak="al", 53254 unicodeslot=0x1CE9, 53255 }, 53256 [0x1CEA]={ 53257 category="lo", 53258 description="VEDIC SIGN ANUSVARA BAHIRGOMUKHA", 53259 direction="l", 53260 linebreak="al", 53261 unicodeslot=0x1CEA, 53262 }, 53263 [0x1CEB]={ 53264 category="lo", 53265 description="VEDIC SIGN ANUSVARA VAMAGOMUKHA", 53266 direction="l", 53267 linebreak="al", 53268 unicodeslot=0x1CEB, 53269 }, 53270 [0x1CEC]={ 53271 category="lo", 53272 description="VEDIC SIGN ANUSVARA VAMAGOMUKHA WITH TAIL", 53273 direction="l", 53274 linebreak="al", 53275 unicodeslot=0x1CEC, 53276 }, 53277 [0x1CED]={ 53278 category="mn", 53279 combining=0xDC, 53280 description="VEDIC SIGN TIRYAK", 53281 direction="nsm", 53282 linebreak="cm", 53283 unicodeslot=0x1CED, 53284 }, 53285 [0x1CEE]={ 53286 category="lo", 53287 description="VEDIC SIGN HEXIFORM LONG ANUSVARA", 53288 direction="l", 53289 linebreak="al", 53290 unicodeslot=0x1CEE, 53291 }, 53292 [0x1CEF]={ 53293 category="lo", 53294 description="VEDIC SIGN LONG ANUSVARA", 53295 direction="l", 53296 linebreak="al", 53297 unicodeslot=0x1CEF, 53298 }, 53299 [0x1CF0]={ 53300 category="lo", 53301 description="VEDIC SIGN RTHANG LONG ANUSVARA", 53302 direction="l", 53303 linebreak="al", 53304 unicodeslot=0x1CF0, 53305 }, 53306 [0x1CF1]={ 53307 category="lo", 53308 description="VEDIC SIGN ANUSVARA UBHAYATO MUKHA", 53309 direction="l", 53310 linebreak="al", 53311 unicodeslot=0x1CF1, 53312 }, 53313 [0x1CF2]={ 53314 category="mc", 53315 description="VEDIC SIGN ARDHAVISARGA", 53316 direction="l", 53317 linebreak="al", 53318 unicodeslot=0x1CF2, 53319 }, 53320 [0x1CF3]={ 53321 category="mc", 53322 description="VEDIC SIGN ROTATED ARDHAVISARGA", 53323 direction="l", 53324 linebreak="al", 53325 unicodeslot=0x1CF3, 53326 }, 53327 [0x1CF4]={ 53328 category="mn", 53329 combining=0xE6, 53330 description="VEDIC TONE CANDRA ABOVE", 53331 direction="nsm", 53332 linebreak="cm", 53333 unicodeslot=0x1CF4, 53334 }, 53335 [0x1CF5]={ 53336 category="lo", 53337 description="VEDIC SIGN JIHVAMULIYA", 53338 direction="l", 53339 linebreak="al", 53340 unicodeslot=0x1CF5, 53341 }, 53342 [0x1CF6]={ 53343 category="lo", 53344 description="VEDIC SIGN UPADHMANIYA", 53345 direction="l", 53346 linebreak="al", 53347 unicodeslot=0x1CF6, 53348 }, 53349 [0x1CF7]={ 53350 category="mc", 53351 description="VEDIC SIGN ATIKRAMA", 53352 direction="l", 53353 linebreak="cm", 53354 unicodeslot=0x1CF7, 53355 }, 53356 [0x1CF8]={ 53357 category="mn", 53358 combining=0xE6, 53359 description="VEDIC TONE RING ABOVE", 53360 direction="nsm", 53361 linebreak="cm", 53362 unicodeslot=0x1CF8, 53363 }, 53364 [0x1CF9]={ 53365 category="mn", 53366 combining=0xE6, 53367 description="VEDIC TONE DOUBLE RING ABOVE", 53368 direction="nsm", 53369 linebreak="cm", 53370 unicodeslot=0x1CF9, 53371 }, 53372 [0x1CFA]={ 53373 category="lo", 53374 description="VEDIC SIGN DOUBLE ANUSVARA ANTARGOMUKHA", 53375 direction="l", 53376 linebreak="al", 53377 unicodeslot=0x1CFA, 53378 }, 53379 [0x1D00]={ 53380 category="ll", 53381 description="LATIN LETTER SMALL CAPITAL A", 53382 direction="l", 53383 linebreak="al", 53384 unicodeslot=0x1D00, 53385 }, 53386 [0x1D01]={ 53387 category="ll", 53388 description="LATIN LETTER SMALL CAPITAL AE", 53389 direction="l", 53390 linebreak="al", 53391 unicodeslot=0x1D01, 53392 }, 53393 [0x1D02]={ 53394 category="ll", 53395 description="LATIN SMALL LETTER TURNED AE", 53396 direction="l", 53397 linebreak="al", 53398 unicodeslot=0x1D02, 53399 }, 53400 [0x1D03]={ 53401 category="ll", 53402 description="LATIN LETTER SMALL CAPITAL BARRED B", 53403 direction="l", 53404 linebreak="al", 53405 unicodeslot=0x1D03, 53406 }, 53407 [0x1D04]={ 53408 category="ll", 53409 description="LATIN LETTER SMALL CAPITAL C", 53410 direction="l", 53411 linebreak="al", 53412 unicodeslot=0x1D04, 53413 }, 53414 [0x1D05]={ 53415 category="ll", 53416 description="LATIN LETTER SMALL CAPITAL D", 53417 direction="l", 53418 linebreak="al", 53419 unicodeslot=0x1D05, 53420 }, 53421 [0x1D06]={ 53422 category="ll", 53423 description="LATIN LETTER SMALL CAPITAL ETH", 53424 direction="l", 53425 linebreak="al", 53426 unicodeslot=0x1D06, 53427 }, 53428 [0x1D07]={ 53429 category="ll", 53430 description="LATIN LETTER SMALL CAPITAL E", 53431 direction="l", 53432 linebreak="al", 53433 unicodeslot=0x1D07, 53434 }, 53435 [0x1D08]={ 53436 category="ll", 53437 description="LATIN SMALL LETTER TURNED OPEN E", 53438 direction="l", 53439 linebreak="al", 53440 unicodeslot=0x1D08, 53441 }, 53442 [0x1D09]={ 53443 category="ll", 53444 description="LATIN SMALL LETTER TURNED I", 53445 direction="l", 53446 linebreak="al", 53447 unicodeslot=0x1D09, 53448 }, 53449 [0x1D0A]={ 53450 category="ll", 53451 description="LATIN LETTER SMALL CAPITAL J", 53452 direction="l", 53453 linebreak="al", 53454 unicodeslot=0x1D0A, 53455 }, 53456 [0x1D0B]={ 53457 category="ll", 53458 description="LATIN LETTER SMALL CAPITAL K", 53459 direction="l", 53460 linebreak="al", 53461 unicodeslot=0x1D0B, 53462 }, 53463 [0x1D0C]={ 53464 category="ll", 53465 description="LATIN LETTER SMALL CAPITAL L WITH STROKE", 53466 direction="l", 53467 linebreak="al", 53468 specials={ "with", 0x29F, 0x2F }, 53469 unicodeslot=0x1D0C, 53470 }, 53471 [0x1D0D]={ 53472 category="ll", 53473 description="LATIN LETTER SMALL CAPITAL M", 53474 direction="l", 53475 linebreak="al", 53476 unicodeslot=0x1D0D, 53477 }, 53478 [0x1D0E]={ 53479 category="ll", 53480 description="LATIN LETTER SMALL CAPITAL REVERSED N", 53481 direction="l", 53482 linebreak="al", 53483 unicodeslot=0x1D0E, 53484 }, 53485 [0x1D0F]={ 53486 category="ll", 53487 description="LATIN LETTER SMALL CAPITAL O", 53488 direction="l", 53489 linebreak="al", 53490 unicodeslot=0x1D0F, 53491 }, 53492 [0x1D10]={ 53493 category="ll", 53494 description="LATIN LETTER SMALL CAPITAL OPEN O", 53495 direction="l", 53496 linebreak="al", 53497 unicodeslot=0x1D10, 53498 }, 53499 [0x1D11]={ 53500 category="ll", 53501 description="LATIN SMALL LETTER SIDEWAYS O", 53502 direction="l", 53503 linebreak="al", 53504 unicodeslot=0x1D11, 53505 }, 53506 [0x1D12]={ 53507 category="ll", 53508 description="LATIN SMALL LETTER SIDEWAYS OPEN O", 53509 direction="l", 53510 linebreak="al", 53511 unicodeslot=0x1D12, 53512 }, 53513 [0x1D13]={ 53514 category="ll", 53515 description="LATIN SMALL LETTER SIDEWAYS O WITH STROKE", 53516 direction="l", 53517 linebreak="al", 53518 specials={ "with", 0x1D11, 0x2F }, 53519 unicodeslot=0x1D13, 53520 }, 53521 [0x1D14]={ 53522 category="ll", 53523 description="LATIN SMALL LETTER TURNED OE", 53524 direction="l", 53525 linebreak="al", 53526 unicodeslot=0x1D14, 53527 }, 53528 [0x1D15]={ 53529 category="ll", 53530 description="LATIN LETTER SMALL CAPITAL OU", 53531 direction="l", 53532 linebreak="al", 53533 unicodeslot=0x1D15, 53534 }, 53535 [0x1D16]={ 53536 category="ll", 53537 description="LATIN SMALL LETTER TOP HALF O", 53538 direction="l", 53539 linebreak="al", 53540 unicodeslot=0x1D16, 53541 }, 53542 [0x1D17]={ 53543 category="ll", 53544 description="LATIN SMALL LETTER BOTTOM HALF O", 53545 direction="l", 53546 linebreak="al", 53547 unicodeslot=0x1D17, 53548 }, 53549 [0x1D18]={ 53550 category="ll", 53551 description="LATIN LETTER SMALL CAPITAL P", 53552 direction="l", 53553 linebreak="al", 53554 unicodeslot=0x1D18, 53555 }, 53556 [0x1D19]={ 53557 category="ll", 53558 description="LATIN LETTER SMALL CAPITAL REVERSED R", 53559 direction="l", 53560 linebreak="al", 53561 unicodeslot=0x1D19, 53562 }, 53563 [0x1D1A]={ 53564 category="ll", 53565 description="LATIN LETTER SMALL CAPITAL TURNED R", 53566 direction="l", 53567 linebreak="al", 53568 unicodeslot=0x1D1A, 53569 }, 53570 [0x1D1B]={ 53571 category="ll", 53572 description="LATIN LETTER SMALL CAPITAL T", 53573 direction="l", 53574 linebreak="al", 53575 unicodeslot=0x1D1B, 53576 }, 53577 [0x1D1C]={ 53578 category="ll", 53579 description="LATIN LETTER SMALL CAPITAL U", 53580 direction="l", 53581 linebreak="al", 53582 unicodeslot=0x1D1C, 53583 }, 53584 [0x1D1D]={ 53585 category="ll", 53586 description="LATIN SMALL LETTER SIDEWAYS U", 53587 direction="l", 53588 linebreak="al", 53589 unicodeslot=0x1D1D, 53590 }, 53591 [0x1D1E]={ 53592 category="ll", 53593 description="LATIN SMALL LETTER SIDEWAYS DIAERESIZED U", 53594 direction="l", 53595 linebreak="al", 53596 unicodeslot=0x1D1E, 53597 }, 53598 [0x1D1F]={ 53599 category="ll", 53600 description="LATIN SMALL LETTER SIDEWAYS TURNED M", 53601 direction="l", 53602 linebreak="al", 53603 unicodeslot=0x1D1F, 53604 }, 53605 [0x1D20]={ 53606 category="ll", 53607 description="LATIN LETTER SMALL CAPITAL V", 53608 direction="l", 53609 linebreak="al", 53610 unicodeslot=0x1D20, 53611 }, 53612 [0x1D21]={ 53613 category="ll", 53614 description="LATIN LETTER SMALL CAPITAL W", 53615 direction="l", 53616 linebreak="al", 53617 unicodeslot=0x1D21, 53618 }, 53619 [0x1D22]={ 53620 category="ll", 53621 description="LATIN LETTER SMALL CAPITAL Z", 53622 direction="l", 53623 linebreak="al", 53624 unicodeslot=0x1D22, 53625 }, 53626 [0x1D23]={ 53627 category="ll", 53628 description="LATIN LETTER SMALL CAPITAL EZH", 53629 direction="l", 53630 linebreak="al", 53631 unicodeslot=0x1D23, 53632 }, 53633 [0x1D24]={ 53634 category="ll", 53635 description="LATIN LETTER VOICED LARYNGEAL SPIRANT", 53636 direction="l", 53637 linebreak="al", 53638 unicodeslot=0x1D24, 53639 }, 53640 [0x1D25]={ 53641 category="ll", 53642 description="LATIN LETTER AIN", 53643 direction="l", 53644 linebreak="al", 53645 unicodeslot=0x1D25, 53646 }, 53647 [0x1D26]={ 53648 category="ll", 53649 description="GREEK LETTER SMALL CAPITAL GAMMA", 53650 direction="l", 53651 linebreak="al", 53652 unicodeslot=0x1D26, 53653 }, 53654 [0x1D27]={ 53655 category="ll", 53656 description="GREEK LETTER SMALL CAPITAL LAMDA", 53657 direction="l", 53658 linebreak="al", 53659 unicodeslot=0x1D27, 53660 }, 53661 [0x1D28]={ 53662 category="ll", 53663 description="GREEK LETTER SMALL CAPITAL PI", 53664 direction="l", 53665 linebreak="al", 53666 unicodeslot=0x1D28, 53667 }, 53668 [0x1D29]={ 53669 category="ll", 53670 description="GREEK LETTER SMALL CAPITAL RHO", 53671 direction="l", 53672 linebreak="al", 53673 unicodeslot=0x1D29, 53674 }, 53675 [0x1D2A]={ 53676 category="ll", 53677 description="GREEK LETTER SMALL CAPITAL PSI", 53678 direction="l", 53679 linebreak="al", 53680 unicodeslot=0x1D2A, 53681 }, 53682 [0x1D2B]={ 53683 category="ll", 53684 description="CYRILLIC LETTER SMALL CAPITAL EL", 53685 direction="l", 53686 linebreak="al", 53687 unicodeslot=0x1D2B, 53688 }, 53689 [0x1D2C]={ 53690 category="lm", 53691 description="MODIFIER LETTER CAPITAL A", 53692 direction="l", 53693 linebreak="al", 53694 specials={ "super", 0x41 }, 53695 unicodeslot=0x1D2C, 53696 }, 53697 [0x1D2D]={ 53698 category="lm", 53699 description="MODIFIER LETTER CAPITAL AE", 53700 direction="l", 53701 linebreak="al", 53702 specials={ "super", 0xC6 }, 53703 unicodeslot=0x1D2D, 53704 }, 53705 [0x1D2E]={ 53706 category="lm", 53707 description="MODIFIER LETTER CAPITAL B", 53708 direction="l", 53709 linebreak="al", 53710 specials={ "super", 0x42 }, 53711 unicodeslot=0x1D2E, 53712 }, 53713 [0x1D2F]={ 53714 category="lm", 53715 description="MODIFIER LETTER CAPITAL BARRED B", 53716 direction="l", 53717 linebreak="al", 53718 unicodeslot=0x1D2F, 53719 }, 53720 [0x1D30]={ 53721 category="lm", 53722 description="MODIFIER LETTER CAPITAL D", 53723 direction="l", 53724 linebreak="al", 53725 specials={ "super", 0x44 }, 53726 unicodeslot=0x1D30, 53727 }, 53728 [0x1D31]={ 53729 category="lm", 53730 description="MODIFIER LETTER CAPITAL E", 53731 direction="l", 53732 linebreak="al", 53733 specials={ "super", 0x45 }, 53734 unicodeslot=0x1D31, 53735 }, 53736 [0x1D32]={ 53737 category="lm", 53738 description="MODIFIER LETTER CAPITAL REVERSED E", 53739 direction="l", 53740 linebreak="al", 53741 specials={ "super", 0x18E }, 53742 unicodeslot=0x1D32, 53743 }, 53744 [0x1D33]={ 53745 category="lm", 53746 description="MODIFIER LETTER CAPITAL G", 53747 direction="l", 53748 linebreak="al", 53749 specials={ "super", 0x47 }, 53750 unicodeslot=0x1D33, 53751 }, 53752 [0x1D34]={ 53753 category="lm", 53754 description="MODIFIER LETTER CAPITAL H", 53755 direction="l", 53756 linebreak="al", 53757 specials={ "super", 0x48 }, 53758 unicodeslot=0x1D34, 53759 }, 53760 [0x1D35]={ 53761 category="lm", 53762 description="MODIFIER LETTER CAPITAL I", 53763 direction="l", 53764 linebreak="al", 53765 specials={ "super", 0x49 }, 53766 unicodeslot=0x1D35, 53767 }, 53768 [0x1D36]={ 53769 category="lm", 53770 description="MODIFIER LETTER CAPITAL J", 53771 direction="l", 53772 linebreak="al", 53773 specials={ "super", 0x4A }, 53774 unicodeslot=0x1D36, 53775 }, 53776 [0x1D37]={ 53777 category="lm", 53778 description="MODIFIER LETTER CAPITAL K", 53779 direction="l", 53780 linebreak="al", 53781 specials={ "super", 0x4B }, 53782 unicodeslot=0x1D37, 53783 }, 53784 [0x1D38]={ 53785 category="lm", 53786 description="MODIFIER LETTER CAPITAL L", 53787 direction="l", 53788 linebreak="al", 53789 specials={ "super", 0x4C }, 53790 unicodeslot=0x1D38, 53791 }, 53792 [0x1D39]={ 53793 category="lm", 53794 description="MODIFIER LETTER CAPITAL M", 53795 direction="l", 53796 linebreak="al", 53797 specials={ "super", 0x4D }, 53798 unicodeslot=0x1D39, 53799 }, 53800 [0x1D3A]={ 53801 category="lm", 53802 description="MODIFIER LETTER CAPITAL N", 53803 direction="l", 53804 linebreak="al", 53805 specials={ "super", 0x4E }, 53806 unicodeslot=0x1D3A, 53807 }, 53808 [0x1D3B]={ 53809 category="lm", 53810 description="MODIFIER LETTER CAPITAL REVERSED N", 53811 direction="l", 53812 linebreak="al", 53813 unicodeslot=0x1D3B, 53814 }, 53815 [0x1D3C]={ 53816 category="lm", 53817 description="MODIFIER LETTER CAPITAL O", 53818 direction="l", 53819 linebreak="al", 53820 specials={ "super", 0x4F }, 53821 unicodeslot=0x1D3C, 53822 }, 53823 [0x1D3D]={ 53824 category="lm", 53825 description="MODIFIER LETTER CAPITAL OU", 53826 direction="l", 53827 linebreak="al", 53828 specials={ "super", 0x222 }, 53829 unicodeslot=0x1D3D, 53830 }, 53831 [0x1D3E]={ 53832 category="lm", 53833 description="MODIFIER LETTER CAPITAL P", 53834 direction="l", 53835 linebreak="al", 53836 specials={ "super", 0x50 }, 53837 unicodeslot=0x1D3E, 53838 }, 53839 [0x1D3F]={ 53840 category="lm", 53841 description="MODIFIER LETTER CAPITAL R", 53842 direction="l", 53843 linebreak="al", 53844 specials={ "super", 0x52 }, 53845 unicodeslot=0x1D3F, 53846 }, 53847 [0x1D40]={ 53848 category="lm", 53849 description="MODIFIER LETTER CAPITAL T", 53850 direction="l", 53851 linebreak="al", 53852 specials={ "super", 0x54 }, 53853 unicodeslot=0x1D40, 53854 }, 53855 [0x1D41]={ 53856 category="lm", 53857 description="MODIFIER LETTER CAPITAL U", 53858 direction="l", 53859 linebreak="al", 53860 specials={ "super", 0x55 }, 53861 unicodeslot=0x1D41, 53862 }, 53863 [0x1D42]={ 53864 category="lm", 53865 description="MODIFIER LETTER CAPITAL W", 53866 direction="l", 53867 linebreak="al", 53868 specials={ "super", 0x57 }, 53869 unicodeslot=0x1D42, 53870 }, 53871 [0x1D43]={ 53872 category="lm", 53873 description="MODIFIER LETTER SMALL A", 53874 direction="l", 53875 linebreak="al", 53876 specials={ "super", 0x61 }, 53877 unicodeslot=0x1D43, 53878 }, 53879 [0x1D44]={ 53880 category="lm", 53881 description="MODIFIER LETTER SMALL TURNED A", 53882 direction="l", 53883 linebreak="al", 53884 specials={ "super", 0x250 }, 53885 unicodeslot=0x1D44, 53886 }, 53887 [0x1D45]={ 53888 category="lm", 53889 description="MODIFIER LETTER SMALL ALPHA", 53890 direction="l", 53891 linebreak="al", 53892 specials={ "super", 0x251 }, 53893 unicodeslot=0x1D45, 53894 }, 53895 [0x1D46]={ 53896 category="lm", 53897 description="MODIFIER LETTER SMALL TURNED AE", 53898 direction="l", 53899 linebreak="al", 53900 specials={ "super", 0x1D02 }, 53901 unicodeslot=0x1D46, 53902 }, 53903 [0x1D47]={ 53904 category="lm", 53905 description="MODIFIER LETTER SMALL B", 53906 direction="l", 53907 linebreak="al", 53908 specials={ "super", 0x62 }, 53909 unicodeslot=0x1D47, 53910 }, 53911 [0x1D48]={ 53912 category="lm", 53913 description="MODIFIER LETTER SMALL D", 53914 direction="l", 53915 linebreak="al", 53916 specials={ "super", 0x64 }, 53917 unicodeslot=0x1D48, 53918 }, 53919 [0x1D49]={ 53920 category="lm", 53921 description="MODIFIER LETTER SMALL E", 53922 direction="l", 53923 linebreak="al", 53924 specials={ "super", 0x65 }, 53925 unicodeslot=0x1D49, 53926 }, 53927 [0x1D4A]={ 53928 category="lm", 53929 description="MODIFIER LETTER SMALL SCHWA", 53930 direction="l", 53931 linebreak="al", 53932 specials={ "super", 0x259 }, 53933 unicodeslot=0x1D4A, 53934 }, 53935 [0x1D4B]={ 53936 category="lm", 53937 description="MODIFIER LETTER SMALL OPEN E", 53938 direction="l", 53939 linebreak="al", 53940 specials={ "super", 0x25B }, 53941 unicodeslot=0x1D4B, 53942 }, 53943 [0x1D4C]={ 53944 category="lm", 53945 description="MODIFIER LETTER SMALL TURNED OPEN E", 53946 direction="l", 53947 linebreak="al", 53948 specials={ "super", 0x25C }, 53949 unicodeslot=0x1D4C, 53950 }, 53951 [0x1D4D]={ 53952 category="lm", 53953 description="MODIFIER LETTER SMALL G", 53954 direction="l", 53955 linebreak="al", 53956 specials={ "super", 0x67 }, 53957 unicodeslot=0x1D4D, 53958 }, 53959 [0x1D4E]={ 53960 category="lm", 53961 description="MODIFIER LETTER SMALL TURNED I", 53962 direction="l", 53963 linebreak="al", 53964 unicodeslot=0x1D4E, 53965 }, 53966 [0x1D4F]={ 53967 category="lm", 53968 description="MODIFIER LETTER SMALL K", 53969 direction="l", 53970 linebreak="al", 53971 specials={ "super", 0x6B }, 53972 unicodeslot=0x1D4F, 53973 }, 53974 [0x1D50]={ 53975 category="lm", 53976 description="MODIFIER LETTER SMALL M", 53977 direction="l", 53978 linebreak="al", 53979 specials={ "super", 0x6D }, 53980 unicodeslot=0x1D50, 53981 }, 53982 [0x1D51]={ 53983 category="lm", 53984 description="MODIFIER LETTER SMALL ENG", 53985 direction="l", 53986 linebreak="al", 53987 specials={ "super", 0x14B }, 53988 unicodeslot=0x1D51, 53989 }, 53990 [0x1D52]={ 53991 category="lm", 53992 description="MODIFIER LETTER SMALL O", 53993 direction="l", 53994 linebreak="al", 53995 specials={ "super", 0x6F }, 53996 unicodeslot=0x1D52, 53997 }, 53998 [0x1D53]={ 53999 category="lm", 54000 description="MODIFIER LETTER SMALL OPEN O", 54001 direction="l", 54002 linebreak="al", 54003 specials={ "super", 0x254 }, 54004 unicodeslot=0x1D53, 54005 }, 54006 [0x1D54]={ 54007 category="lm", 54008 description="MODIFIER LETTER SMALL TOP HALF O", 54009 direction="l", 54010 linebreak="al", 54011 specials={ "super", 0x1D16 }, 54012 unicodeslot=0x1D54, 54013 }, 54014 [0x1D55]={ 54015 category="lm", 54016 description="MODIFIER LETTER SMALL BOTTOM HALF O", 54017 direction="l", 54018 linebreak="al", 54019 specials={ "super", 0x1D17 }, 54020 unicodeslot=0x1D55, 54021 }, 54022 [0x1D56]={ 54023 category="lm", 54024 description="MODIFIER LETTER SMALL P", 54025 direction="l", 54026 linebreak="al", 54027 specials={ "super", 0x70 }, 54028 unicodeslot=0x1D56, 54029 }, 54030 [0x1D57]={ 54031 category="lm", 54032 description="MODIFIER LETTER SMALL T", 54033 direction="l", 54034 linebreak="al", 54035 specials={ "super", 0x74 }, 54036 unicodeslot=0x1D57, 54037 }, 54038 [0x1D58]={ 54039 category="lm", 54040 description="MODIFIER LETTER SMALL U", 54041 direction="l", 54042 linebreak="al", 54043 specials={ "super", 0x75 }, 54044 unicodeslot=0x1D58, 54045 }, 54046 [0x1D59]={ 54047 category="lm", 54048 description="MODIFIER LETTER SMALL SIDEWAYS U", 54049 direction="l", 54050 linebreak="al", 54051 specials={ "super", 0x1D1D }, 54052 unicodeslot=0x1D59, 54053 }, 54054 [0x1D5A]={ 54055 category="lm", 54056 description="MODIFIER LETTER SMALL TURNED M", 54057 direction="l", 54058 linebreak="al", 54059 specials={ "super", 0x26F }, 54060 unicodeslot=0x1D5A, 54061 }, 54062 [0x1D5B]={ 54063 category="lm", 54064 description="MODIFIER LETTER SMALL V", 54065 direction="l", 54066 linebreak="al", 54067 specials={ "super", 0x76 }, 54068 unicodeslot=0x1D5B, 54069 }, 54070 [0x1D5C]={ 54071 category="lm", 54072 description="MODIFIER LETTER SMALL AIN", 54073 direction="l", 54074 linebreak="al", 54075 specials={ "super", 0x1D25 }, 54076 unicodeslot=0x1D5C, 54077 }, 54078 [0x1D5D]={ 54079 category="lm", 54080 description="MODIFIER LETTER SMALL BETA", 54081 direction="l", 54082 linebreak="al", 54083 specials={ "super", 0x3B2 }, 54084 unicodeslot=0x1D5D, 54085 }, 54086 [0x1D5E]={ 54087 category="lm", 54088 description="MODIFIER LETTER SMALL GREEK GAMMA", 54089 direction="l", 54090 linebreak="al", 54091 specials={ "super", 0x3B3 }, 54092 unicodeslot=0x1D5E, 54093 }, 54094 [0x1D5F]={ 54095 category="lm", 54096 description="MODIFIER LETTER SMALL DELTA", 54097 direction="l", 54098 linebreak="al", 54099 specials={ "super", 0x3B4 }, 54100 unicodeslot=0x1D5F, 54101 }, 54102 [0x1D60]={ 54103 category="lm", 54104 description="MODIFIER LETTER SMALL GREEK PHI", 54105 direction="l", 54106 linebreak="al", 54107 specials={ "super", 0x3C6 }, 54108 unicodeslot=0x1D60, 54109 }, 54110 [0x1D61]={ 54111 category="lm", 54112 description="MODIFIER LETTER SMALL CHI", 54113 direction="l", 54114 linebreak="al", 54115 specials={ "super", 0x3C7 }, 54116 unicodeslot=0x1D61, 54117 }, 54118 [0x1D62]={ 54119 category="ll", 54120 description="LATIN SUBSCRIPT SMALL LETTER I", 54121 direction="l", 54122 linebreak="al", 54123 specials={ "sub", 0x69 }, 54124 unicodeslot=0x1D62, 54125 }, 54126 [0x1D63]={ 54127 category="ll", 54128 description="LATIN SUBSCRIPT SMALL LETTER R", 54129 direction="l", 54130 linebreak="al", 54131 specials={ "sub", 0x72 }, 54132 unicodeslot=0x1D63, 54133 }, 54134 [0x1D64]={ 54135 category="ll", 54136 description="LATIN SUBSCRIPT SMALL LETTER U", 54137 direction="l", 54138 linebreak="al", 54139 specials={ "sub", 0x75 }, 54140 unicodeslot=0x1D64, 54141 }, 54142 [0x1D65]={ 54143 category="ll", 54144 description="LATIN SUBSCRIPT SMALL LETTER V", 54145 direction="l", 54146 linebreak="al", 54147 specials={ "sub", 0x76 }, 54148 unicodeslot=0x1D65, 54149 }, 54150 [0x1D66]={ 54151 category="ll", 54152 description="GREEK SUBSCRIPT SMALL LETTER BETA", 54153 direction="l", 54154 linebreak="al", 54155 specials={ "sub", 0x3B2 }, 54156 unicodeslot=0x1D66, 54157 }, 54158 [0x1D67]={ 54159 category="ll", 54160 description="GREEK SUBSCRIPT SMALL LETTER GAMMA", 54161 direction="l", 54162 linebreak="al", 54163 specials={ "sub", 0x3B3 }, 54164 unicodeslot=0x1D67, 54165 }, 54166 [0x1D68]={ 54167 category="ll", 54168 description="GREEK SUBSCRIPT SMALL LETTER RHO", 54169 direction="l", 54170 linebreak="al", 54171 specials={ "sub", 0x3C1 }, 54172 unicodeslot=0x1D68, 54173 }, 54174 [0x1D69]={ 54175 category="ll", 54176 description="GREEK SUBSCRIPT SMALL LETTER PHI", 54177 direction="l", 54178 linebreak="al", 54179 specials={ "sub", 0x3C6 }, 54180 unicodeslot=0x1D69, 54181 }, 54182 [0x1D6A]={ 54183 category="ll", 54184 description="GREEK SUBSCRIPT SMALL LETTER CHI", 54185 direction="l", 54186 linebreak="al", 54187 specials={ "sub", 0x3C7 }, 54188 unicodeslot=0x1D6A, 54189 }, 54190 [0x1D6B]={ 54191 category="ll", 54192 description="LATIN SMALL LETTER UE", 54193 direction="l", 54194 linebreak="al", 54195 unicodeslot=0x1D6B, 54196 }, 54197 [0x1D6C]={ 54198 category="ll", 54199 description="LATIN SMALL LETTER B WITH MIDDLE TILDE", 54200 direction="l", 54201 linebreak="al", 54202 shcode=0x62, 54203 unicodeslot=0x1D6C, 54204 }, 54205 [0x1D6D]={ 54206 category="ll", 54207 description="LATIN SMALL LETTER D WITH MIDDLE TILDE", 54208 direction="l", 54209 linebreak="al", 54210 shcode=0x64, 54211 unicodeslot=0x1D6D, 54212 }, 54213 [0x1D6E]={ 54214 category="ll", 54215 description="LATIN SMALL LETTER F WITH MIDDLE TILDE", 54216 direction="l", 54217 linebreak="al", 54218 shcode=0x66, 54219 unicodeslot=0x1D6E, 54220 }, 54221 [0x1D6F]={ 54222 category="ll", 54223 description="LATIN SMALL LETTER M WITH MIDDLE TILDE", 54224 direction="l", 54225 linebreak="al", 54226 shcode=0x6D, 54227 unicodeslot=0x1D6F, 54228 }, 54229 [0x1D70]={ 54230 category="ll", 54231 description="LATIN SMALL LETTER N WITH MIDDLE TILDE", 54232 direction="l", 54233 linebreak="al", 54234 shcode=0x6E, 54235 unicodeslot=0x1D70, 54236 }, 54237 [0x1D71]={ 54238 category="ll", 54239 description="LATIN SMALL LETTER P WITH MIDDLE TILDE", 54240 direction="l", 54241 linebreak="al", 54242 shcode=0x70, 54243 unicodeslot=0x1D71, 54244 }, 54245 [0x1D72]={ 54246 category="ll", 54247 description="LATIN SMALL LETTER R WITH MIDDLE TILDE", 54248 direction="l", 54249 linebreak="al", 54250 shcode=0x72, 54251 unicodeslot=0x1D72, 54252 }, 54253 [0x1D73]={ 54254 category="ll", 54255 description="LATIN SMALL LETTER R WITH FISHHOOK AND MIDDLE TILDE", 54256 direction="l", 54257 linebreak="al", 54258 shcode=0x72, 54259 unicodeslot=0x1D73, 54260 }, 54261 [0x1D74]={ 54262 category="ll", 54263 description="LATIN SMALL LETTER S WITH MIDDLE TILDE", 54264 direction="l", 54265 linebreak="al", 54266 shcode=0x73, 54267 unicodeslot=0x1D74, 54268 }, 54269 [0x1D75]={ 54270 category="ll", 54271 description="LATIN SMALL LETTER T WITH MIDDLE TILDE", 54272 direction="l", 54273 linebreak="al", 54274 shcode=0x74, 54275 unicodeslot=0x1D75, 54276 }, 54277 [0x1D76]={ 54278 category="ll", 54279 description="LATIN SMALL LETTER Z WITH MIDDLE TILDE", 54280 direction="l", 54281 linebreak="al", 54282 shcode=0x7A, 54283 unicodeslot=0x1D76, 54284 }, 54285 [0x1D77]={ 54286 category="ll", 54287 description="LATIN SMALL LETTER TURNED G", 54288 direction="l", 54289 linebreak="al", 54290 unicodeslot=0x1D77, 54291 }, 54292 [0x1D78]={ 54293 category="lm", 54294 description="MODIFIER LETTER CYRILLIC EN", 54295 direction="l", 54296 linebreak="al", 54297 specials={ "super", 0x43D }, 54298 unicodeslot=0x1D78, 54299 }, 54300 [0x1D79]={ 54301 category="ll", 54302 description="LATIN SMALL LETTER INSULAR G", 54303 direction="l", 54304 linebreak="al", 54305 unicodeslot=0x1D79, 54306 }, 54307 [0x1D7A]={ 54308 category="ll", 54309 description="LATIN SMALL LETTER TH WITH STRIKETHROUGH", 54310 direction="l", 54311 linebreak="al", 54312 unicodeslot=0x1D7A, 54313 }, 54314 [0x1D7B]={ 54315 category="ll", 54316 description="LATIN SMALL CAPITAL LETTER I WITH STROKE", 54317 direction="l", 54318 linebreak="al", 54319 unicodeslot=0x1D7B, 54320 }, 54321 [0x1D7C]={ 54322 category="ll", 54323 description="LATIN SMALL LETTER IOTA WITH STROKE", 54324 direction="l", 54325 linebreak="al", 54326 shcode=0x269, 54327 specials={ "with", 0x269, 0x2F }, 54328 unicodeslot=0x1D7C, 54329 }, 54330 [0x1D7D]={ 54331 category="ll", 54332 description="LATIN SMALL LETTER P WITH STROKE", 54333 direction="l", 54334 linebreak="al", 54335 shcode=0x70, 54336 specials={ "with", 0x70, 0x2F }, 54337 uccode=0x2C63, 54338 unicodeslot=0x1D7D, 54339 }, 54340 [0x1D7E]={ 54341 category="ll", 54342 description="LATIN SMALL CAPITAL LETTER U WITH STROKE", 54343 direction="l", 54344 linebreak="al", 54345 unicodeslot=0x1D7E, 54346 }, 54347 [0x1D7F]={ 54348 category="ll", 54349 description="LATIN SMALL LETTER UPSILON WITH STROKE", 54350 direction="l", 54351 linebreak="al", 54352 shcode=0x28A, 54353 specials={ "with", 0x28A, 0x2F }, 54354 unicodeslot=0x1D7F, 54355 }, 54356 [0x1D80]={ 54357 category="ll", 54358 description="LATIN SMALL LETTER B WITH PALATAL HOOK", 54359 direction="l", 54360 linebreak="al", 54361 shcode=0x62, 54362 unicodeslot=0x1D80, 54363 }, 54364 [0x1D81]={ 54365 category="ll", 54366 description="LATIN SMALL LETTER D WITH PALATAL HOOK", 54367 direction="l", 54368 linebreak="al", 54369 shcode=0x64, 54370 unicodeslot=0x1D81, 54371 }, 54372 [0x1D82]={ 54373 category="ll", 54374 description="LATIN SMALL LETTER F WITH PALATAL HOOK", 54375 direction="l", 54376 linebreak="al", 54377 shcode=0x66, 54378 unicodeslot=0x1D82, 54379 }, 54380 [0x1D83]={ 54381 category="ll", 54382 description="LATIN SMALL LETTER G WITH PALATAL HOOK", 54383 direction="l", 54384 linebreak="al", 54385 shcode=0x67, 54386 unicodeslot=0x1D83, 54387 }, 54388 [0x1D84]={ 54389 category="ll", 54390 description="LATIN SMALL LETTER K WITH PALATAL HOOK", 54391 direction="l", 54392 linebreak="al", 54393 shcode=0x6B, 54394 unicodeslot=0x1D84, 54395 }, 54396 [0x1D85]={ 54397 category="ll", 54398 description="LATIN SMALL LETTER L WITH PALATAL HOOK", 54399 direction="l", 54400 linebreak="al", 54401 shcode=0x6C, 54402 unicodeslot=0x1D85, 54403 }, 54404 [0x1D86]={ 54405 category="ll", 54406 description="LATIN SMALL LETTER M WITH PALATAL HOOK", 54407 direction="l", 54408 linebreak="al", 54409 shcode=0x6D, 54410 unicodeslot=0x1D86, 54411 }, 54412 [0x1D87]={ 54413 category="ll", 54414 description="LATIN SMALL LETTER N WITH PALATAL HOOK", 54415 direction="l", 54416 linebreak="al", 54417 shcode=0x6E, 54418 unicodeslot=0x1D87, 54419 }, 54420 [0x1D88]={ 54421 category="ll", 54422 description="LATIN SMALL LETTER P WITH PALATAL HOOK", 54423 direction="l", 54424 linebreak="al", 54425 shcode=0x70, 54426 unicodeslot=0x1D88, 54427 }, 54428 [0x1D89]={ 54429 category="ll", 54430 description="LATIN SMALL LETTER R WITH PALATAL HOOK", 54431 direction="l", 54432 linebreak="al", 54433 shcode=0x72, 54434 unicodeslot=0x1D89, 54435 }, 54436 [0x1D8A]={ 54437 category="ll", 54438 description="LATIN SMALL LETTER S WITH PALATAL HOOK", 54439 direction="l", 54440 linebreak="al", 54441 shcode=0x73, 54442 unicodeslot=0x1D8A, 54443 }, 54444 [0x1D8B]={ 54445 category="ll", 54446 description="LATIN SMALL LETTER ESH WITH PALATAL HOOK", 54447 direction="l", 54448 linebreak="al", 54449 shcode=0x283, 54450 unicodeslot=0x1D8B, 54451 }, 54452 [0x1D8C]={ 54453 category="ll", 54454 description="LATIN SMALL LETTER V WITH PALATAL HOOK", 54455 direction="l", 54456 linebreak="al", 54457 shcode=0x76, 54458 unicodeslot=0x1D8C, 54459 }, 54460 [0x1D8D]={ 54461 category="ll", 54462 description="LATIN SMALL LETTER X WITH PALATAL HOOK", 54463 direction="l", 54464 linebreak="al", 54465 shcode=0x78, 54466 unicodeslot=0x1D8D, 54467 }, 54468 [0x1D8E]={ 54469 category="ll", 54470 description="LATIN SMALL LETTER Z WITH PALATAL HOOK", 54471 direction="l", 54472 linebreak="al", 54473 shcode=0x7A, 54474 unicodeslot=0x1D8E, 54475 }, 54476 [0x1D8F]={ 54477 category="ll", 54478 description="LATIN SMALL LETTER A WITH RETROFLEX HOOK", 54479 direction="l", 54480 linebreak="al", 54481 shcode=0x61, 54482 unicodeslot=0x1D8F, 54483 }, 54484 [0x1D90]={ 54485 category="ll", 54486 description="LATIN SMALL LETTER ALPHA WITH RETROFLEX HOOK", 54487 direction="l", 54488 linebreak="al", 54489 shcode=0x251, 54490 unicodeslot=0x1D90, 54491 }, 54492 [0x1D91]={ 54493 category="ll", 54494 description="LATIN SMALL LETTER D WITH HOOK AND TAIL", 54495 direction="l", 54496 linebreak="al", 54497 shcode=0x64, 54498 unicodeslot=0x1D91, 54499 }, 54500 [0x1D92]={ 54501 category="ll", 54502 description="LATIN SMALL LETTER E WITH RETROFLEX HOOK", 54503 direction="l", 54504 linebreak="al", 54505 shcode=0x65, 54506 unicodeslot=0x1D92, 54507 }, 54508 [0x1D93]={ 54509 category="ll", 54510 description="LATIN SMALL LETTER OPEN E WITH RETROFLEX HOOK", 54511 direction="l", 54512 linebreak="al", 54513 unicodeslot=0x1D93, 54514 }, 54515 [0x1D94]={ 54516 category="ll", 54517 description="LATIN SMALL LETTER REVERSED OPEN E WITH RETROFLEX HOOK", 54518 direction="l", 54519 linebreak="al", 54520 unicodeslot=0x1D94, 54521 }, 54522 [0x1D95]={ 54523 category="ll", 54524 description="LATIN SMALL LETTER SCHWA WITH RETROFLEX HOOK", 54525 direction="l", 54526 linebreak="al", 54527 shcode=0x259, 54528 unicodeslot=0x1D95, 54529 }, 54530 [0x1D96]={ 54531 category="ll", 54532 description="LATIN SMALL LETTER I WITH RETROFLEX HOOK", 54533 direction="l", 54534 linebreak="al", 54535 shcode=0x69, 54536 unicodeslot=0x1D96, 54537 }, 54538 [0x1D97]={ 54539 category="ll", 54540 description="LATIN SMALL LETTER OPEN O WITH RETROFLEX HOOK", 54541 direction="l", 54542 linebreak="al", 54543 unicodeslot=0x1D97, 54544 }, 54545 [0x1D98]={ 54546 category="ll", 54547 description="LATIN SMALL LETTER ESH WITH RETROFLEX HOOK", 54548 direction="l", 54549 linebreak="al", 54550 shcode=0x283, 54551 unicodeslot=0x1D98, 54552 }, 54553 [0x1D99]={ 54554 category="ll", 54555 description="LATIN SMALL LETTER U WITH RETROFLEX HOOK", 54556 direction="l", 54557 linebreak="al", 54558 shcode=0x75, 54559 unicodeslot=0x1D99, 54560 }, 54561 [0x1D9A]={ 54562 category="ll", 54563 description="LATIN SMALL LETTER EZH WITH RETROFLEX HOOK", 54564 direction="l", 54565 linebreak="al", 54566 shcode=0x292, 54567 unicodeslot=0x1D9A, 54568 }, 54569 [0x1D9B]={ 54570 category="lm", 54571 description="MODIFIER LETTER SMALL TURNED ALPHA", 54572 direction="l", 54573 linebreak="al", 54574 specials={ "super", 0x252 }, 54575 unicodeslot=0x1D9B, 54576 }, 54577 [0x1D9C]={ 54578 category="lm", 54579 description="MODIFIER LETTER SMALL C", 54580 direction="l", 54581 linebreak="al", 54582 specials={ "super", 0x63 }, 54583 unicodeslot=0x1D9C, 54584 }, 54585 [0x1D9D]={ 54586 category="lm", 54587 description="MODIFIER LETTER SMALL C WITH CURL", 54588 direction="l", 54589 linebreak="al", 54590 specials={ "super", 0x255 }, 54591 unicodeslot=0x1D9D, 54592 }, 54593 [0x1D9E]={ 54594 category="lm", 54595 description="MODIFIER LETTER SMALL ETH", 54596 direction="l", 54597 linebreak="al", 54598 specials={ "super", 0xF0 }, 54599 unicodeslot=0x1D9E, 54600 }, 54601 [0x1D9F]={ 54602 category="lm", 54603 description="MODIFIER LETTER SMALL REVERSED OPEN E", 54604 direction="l", 54605 linebreak="al", 54606 specials={ "super", 0x25C }, 54607 unicodeslot=0x1D9F, 54608 }, 54609 [0x1DA0]={ 54610 category="lm", 54611 description="MODIFIER LETTER SMALL F", 54612 direction="l", 54613 linebreak="al", 54614 specials={ "super", 0x66 }, 54615 unicodeslot=0x1DA0, 54616 }, 54617 [0x1DA1]={ 54618 category="lm", 54619 description="MODIFIER LETTER SMALL DOTLESS J WITH STROKE", 54620 direction="l", 54621 linebreak="al", 54622 specials={ "super", 0x25F }, 54623 unicodeslot=0x1DA1, 54624 }, 54625 [0x1DA2]={ 54626 category="lm", 54627 description="MODIFIER LETTER SMALL SCRIPT G", 54628 direction="l", 54629 linebreak="al", 54630 specials={ "super", 0x261 }, 54631 unicodeslot=0x1DA2, 54632 }, 54633 [0x1DA3]={ 54634 category="lm", 54635 description="MODIFIER LETTER SMALL TURNED H", 54636 direction="l", 54637 linebreak="al", 54638 specials={ "super", 0x265 }, 54639 unicodeslot=0x1DA3, 54640 }, 54641 [0x1DA4]={ 54642 category="lm", 54643 description="MODIFIER LETTER SMALL I WITH STROKE", 54644 direction="l", 54645 linebreak="al", 54646 specials={ "super", 0x268 }, 54647 unicodeslot=0x1DA4, 54648 }, 54649 [0x1DA5]={ 54650 category="lm", 54651 description="MODIFIER LETTER SMALL IOTA", 54652 direction="l", 54653 linebreak="al", 54654 specials={ "super", 0x269 }, 54655 unicodeslot=0x1DA5, 54656 }, 54657 [0x1DA6]={ 54658 category="lm", 54659 description="MODIFIER LETTER SMALL CAPITAL I", 54660 direction="l", 54661 linebreak="al", 54662 specials={ "super", 0x26A }, 54663 unicodeslot=0x1DA6, 54664 }, 54665 [0x1DA7]={ 54666 category="lm", 54667 description="MODIFIER LETTER SMALL CAPITAL I WITH STROKE", 54668 direction="l", 54669 linebreak="al", 54670 specials={ "super", 0x1D7B }, 54671 unicodeslot=0x1DA7, 54672 }, 54673 [0x1DA8]={ 54674 category="lm", 54675 description="MODIFIER LETTER SMALL J WITH CROSSED-TAIL", 54676 direction="l", 54677 linebreak="al", 54678 specials={ "super", 0x29D }, 54679 unicodeslot=0x1DA8, 54680 }, 54681 [0x1DA9]={ 54682 category="lm", 54683 description="MODIFIER LETTER SMALL L WITH RETROFLEX HOOK", 54684 direction="l", 54685 linebreak="al", 54686 specials={ "super", 0x26D }, 54687 unicodeslot=0x1DA9, 54688 }, 54689 [0x1DAA]={ 54690 category="lm", 54691 description="MODIFIER LETTER SMALL L WITH PALATAL HOOK", 54692 direction="l", 54693 linebreak="al", 54694 specials={ "super", 0x1D85 }, 54695 unicodeslot=0x1DAA, 54696 }, 54697 [0x1DAB]={ 54698 category="lm", 54699 description="MODIFIER LETTER SMALL CAPITAL L", 54700 direction="l", 54701 linebreak="al", 54702 specials={ "super", 0x29F }, 54703 unicodeslot=0x1DAB, 54704 }, 54705 [0x1DAC]={ 54706 category="lm", 54707 description="MODIFIER LETTER SMALL M WITH HOOK", 54708 direction="l", 54709 linebreak="al", 54710 specials={ "super", 0x271 }, 54711 unicodeslot=0x1DAC, 54712 }, 54713 [0x1DAD]={ 54714 category="lm", 54715 description="MODIFIER LETTER SMALL TURNED M WITH LONG LEG", 54716 direction="l", 54717 linebreak="al", 54718 specials={ "super", 0x270 }, 54719 unicodeslot=0x1DAD, 54720 }, 54721 [0x1DAE]={ 54722 category="lm", 54723 description="MODIFIER LETTER SMALL N WITH LEFT HOOK", 54724 direction="l", 54725 linebreak="al", 54726 specials={ "super", 0x272 }, 54727 unicodeslot=0x1DAE, 54728 }, 54729 [0x1DAF]={ 54730 category="lm", 54731 description="MODIFIER LETTER SMALL N WITH RETROFLEX HOOK", 54732 direction="l", 54733 linebreak="al", 54734 specials={ "super", 0x273 }, 54735 unicodeslot=0x1DAF, 54736 }, 54737 [0x1DB0]={ 54738 category="lm", 54739 description="MODIFIER LETTER SMALL CAPITAL N", 54740 direction="l", 54741 linebreak="al", 54742 specials={ "super", 0x274 }, 54743 unicodeslot=0x1DB0, 54744 }, 54745 [0x1DB1]={ 54746 category="lm", 54747 description="MODIFIER LETTER SMALL BARRED O", 54748 direction="l", 54749 linebreak="al", 54750 specials={ "super", 0x275 }, 54751 unicodeslot=0x1DB1, 54752 }, 54753 [0x1DB2]={ 54754 category="lm", 54755 description="MODIFIER LETTER SMALL PHI", 54756 direction="l", 54757 linebreak="al", 54758 specials={ "super", 0x278 }, 54759 unicodeslot=0x1DB2, 54760 }, 54761 [0x1DB3]={ 54762 category="lm", 54763 description="MODIFIER LETTER SMALL S WITH HOOK", 54764 direction="l", 54765 linebreak="al", 54766 specials={ "super", 0x282 }, 54767 unicodeslot=0x1DB3, 54768 }, 54769 [0x1DB4]={ 54770 category="lm", 54771 description="MODIFIER LETTER SMALL ESH", 54772 direction="l", 54773 linebreak="al", 54774 specials={ "super", 0x283 }, 54775 unicodeslot=0x1DB4, 54776 }, 54777 [0x1DB5]={ 54778 category="lm", 54779 description="MODIFIER LETTER SMALL T WITH PALATAL HOOK", 54780 direction="l", 54781 linebreak="al", 54782 specials={ "super", 0x1AB }, 54783 unicodeslot=0x1DB5, 54784 }, 54785 [0x1DB6]={ 54786 category="lm", 54787 description="MODIFIER LETTER SMALL U BAR", 54788 direction="l", 54789 linebreak="al", 54790 specials={ "super", 0x289 }, 54791 unicodeslot=0x1DB6, 54792 }, 54793 [0x1DB7]={ 54794 category="lm", 54795 description="MODIFIER LETTER SMALL UPSILON", 54796 direction="l", 54797 linebreak="al", 54798 specials={ "super", 0x28A }, 54799 unicodeslot=0x1DB7, 54800 }, 54801 [0x1DB8]={ 54802 category="lm", 54803 description="MODIFIER LETTER SMALL CAPITAL U", 54804 direction="l", 54805 linebreak="al", 54806 specials={ "super", 0x1D1C }, 54807 unicodeslot=0x1DB8, 54808 }, 54809 [0x1DB9]={ 54810 category="lm", 54811 description="MODIFIER LETTER SMALL V WITH HOOK", 54812 direction="l", 54813 linebreak="al", 54814 specials={ "super", 0x28B }, 54815 unicodeslot=0x1DB9, 54816 }, 54817 [0x1DBA]={ 54818 category="lm", 54819 description="MODIFIER LETTER SMALL TURNED V", 54820 direction="l", 54821 linebreak="al", 54822 specials={ "super", 0x28C }, 54823 unicodeslot=0x1DBA, 54824 }, 54825 [0x1DBB]={ 54826 category="lm", 54827 description="MODIFIER LETTER SMALL Z", 54828 direction="l", 54829 linebreak="al", 54830 specials={ "super", 0x7A }, 54831 unicodeslot=0x1DBB, 54832 }, 54833 [0x1DBC]={ 54834 category="lm", 54835 description="MODIFIER LETTER SMALL Z WITH RETROFLEX HOOK", 54836 direction="l", 54837 linebreak="al", 54838 specials={ "super", 0x290 }, 54839 unicodeslot=0x1DBC, 54840 }, 54841 [0x1DBD]={ 54842 category="lm", 54843 description="MODIFIER LETTER SMALL Z WITH CURL", 54844 direction="l", 54845 linebreak="al", 54846 specials={ "super", 0x291 }, 54847 unicodeslot=0x1DBD, 54848 }, 54849 [0x1DBE]={ 54850 category="lm", 54851 description="MODIFIER LETTER SMALL EZH", 54852 direction="l", 54853 linebreak="al", 54854 specials={ "super", 0x292 }, 54855 unicodeslot=0x1DBE, 54856 }, 54857 [0x1DBF]={ 54858 category="lm", 54859 description="MODIFIER LETTER SMALL THETA", 54860 direction="l", 54861 linebreak="al", 54862 specials={ "super", 0x3B8 }, 54863 unicodeslot=0x1DBF, 54864 }, 54865 [0x1DC0]={ 54866 category="mn", 54867 combining=0xE6, 54868 description="COMBINING DOTTED GRAVE ACCENT", 54869 direction="nsm", 54870 linebreak="cm", 54871 unicodeslot=0x1DC0, 54872 }, 54873 [0x1DC1]={ 54874 category="mn", 54875 combining=0xE6, 54876 description="COMBINING DOTTED ACUTE ACCENT", 54877 direction="nsm", 54878 linebreak="cm", 54879 unicodeslot=0x1DC1, 54880 }, 54881 [0x1DC2]={ 54882 category="mn", 54883 combining=0xDC, 54884 description="COMBINING SNAKE BELOW", 54885 direction="nsm", 54886 linebreak="cm", 54887 unicodeslot=0x1DC2, 54888 }, 54889 [0x1DC3]={ 54890 category="mn", 54891 combining=0xE6, 54892 description="COMBINING SUSPENSION MARK", 54893 direction="nsm", 54894 linebreak="cm", 54895 unicodeslot=0x1DC3, 54896 }, 54897 [0x1DC4]={ 54898 category="mn", 54899 combining=0xE6, 54900 description="COMBINING MACRON-ACUTE", 54901 direction="nsm", 54902 linebreak="cm", 54903 unicodeslot=0x1DC4, 54904 }, 54905 [0x1DC5]={ 54906 category="mn", 54907 combining=0xE6, 54908 description="COMBINING GRAVE-MACRON", 54909 direction="nsm", 54910 linebreak="cm", 54911 unicodeslot=0x1DC5, 54912 }, 54913 [0x1DC6]={ 54914 category="mn", 54915 combining=0xE6, 54916 description="COMBINING MACRON-GRAVE", 54917 direction="nsm", 54918 linebreak="cm", 54919 unicodeslot=0x1DC6, 54920 }, 54921 [0x1DC7]={ 54922 category="mn", 54923 combining=0xE6, 54924 description="COMBINING ACUTE-MACRON", 54925 direction="nsm", 54926 linebreak="cm", 54927 unicodeslot=0x1DC7, 54928 }, 54929 [0x1DC8]={ 54930 category="mn", 54931 combining=0xE6, 54932 description="COMBINING GRAVE-ACUTE-GRAVE", 54933 direction="nsm", 54934 linebreak="cm", 54935 unicodeslot=0x1DC8, 54936 }, 54937 [0x1DC9]={ 54938 category="mn", 54939 combining=0xE6, 54940 description="COMBINING ACUTE-GRAVE-ACUTE", 54941 direction="nsm", 54942 linebreak="cm", 54943 unicodeslot=0x1DC9, 54944 }, 54945 [0x1DCA]={ 54946 category="mn", 54947 combining=0xDC, 54948 description="COMBINING LATIN SMALL LETTER R BELOW", 54949 direction="nsm", 54950 linebreak="cm", 54951 unicodeslot=0x1DCA, 54952 }, 54953 [0x1DCB]={ 54954 category="mn", 54955 combining=0xE6, 54956 description="COMBINING BREVE-MACRON", 54957 direction="nsm", 54958 linebreak="cm", 54959 unicodeslot=0x1DCB, 54960 }, 54961 [0x1DCC]={ 54962 category="mn", 54963 combining=0xE6, 54964 description="COMBINING MACRON-BREVE", 54965 direction="nsm", 54966 linebreak="cm", 54967 unicodeslot=0x1DCC, 54968 }, 54969 [0x1DCD]={ 54970 category="mn", 54971 combining=0xEA, 54972 description="COMBINING DOUBLE CIRCUMFLEX ABOVE", 54973 direction="nsm", 54974 linebreak="gl", 54975 unicodeslot=0x1DCD, 54976 }, 54977 [0x1DCE]={ 54978 category="mn", 54979 combining=0xD6, 54980 description="COMBINING OGONEK ABOVE", 54981 direction="nsm", 54982 linebreak="cm", 54983 unicodeslot=0x1DCE, 54984 }, 54985 [0x1DCF]={ 54986 category="mn", 54987 combining=0xDC, 54988 description="COMBINING ZIGZAG BELOW", 54989 direction="nsm", 54990 linebreak="cm", 54991 unicodeslot=0x1DCF, 54992 }, 54993 [0x1DD0]={ 54994 category="mn", 54995 combining=0xCA, 54996 description="COMBINING IS BELOW", 54997 direction="nsm", 54998 linebreak="cm", 54999 unicodeslot=0x1DD0, 55000 }, 55001 [0x1DD1]={ 55002 category="mn", 55003 combining=0xE6, 55004 description="COMBINING UR ABOVE", 55005 direction="nsm", 55006 linebreak="cm", 55007 unicodeslot=0x1DD1, 55008 }, 55009 [0x1DD2]={ 55010 category="mn", 55011 combining=0xE6, 55012 description="COMBINING US ABOVE", 55013 direction="nsm", 55014 linebreak="cm", 55015 unicodeslot=0x1DD2, 55016 }, 55017 [0x1DD3]={ 55018 category="mn", 55019 combining=0xE6, 55020 description="COMBINING LATIN SMALL LETTER FLATTENED OPEN A ABOVE", 55021 direction="nsm", 55022 linebreak="cm", 55023 unicodeslot=0x1DD3, 55024 }, 55025 [0x1DD4]={ 55026 category="mn", 55027 combining=0xE6, 55028 description="COMBINING LATIN SMALL LETTER AE", 55029 direction="nsm", 55030 linebreak="cm", 55031 unicodeslot=0x1DD4, 55032 }, 55033 [0x1DD5]={ 55034 category="mn", 55035 combining=0xE6, 55036 description="COMBINING LATIN SMALL LETTER AO", 55037 direction="nsm", 55038 linebreak="cm", 55039 unicodeslot=0x1DD5, 55040 }, 55041 [0x1DD6]={ 55042 category="mn", 55043 combining=0xE6, 55044 description="COMBINING LATIN SMALL LETTER AV", 55045 direction="nsm", 55046 linebreak="cm", 55047 unicodeslot=0x1DD6, 55048 }, 55049 [0x1DD7]={ 55050 category="mn", 55051 combining=0xE6, 55052 description="COMBINING LATIN SMALL LETTER C CEDILLA", 55053 direction="nsm", 55054 linebreak="cm", 55055 unicodeslot=0x1DD7, 55056 }, 55057 [0x1DD8]={ 55058 category="mn", 55059 combining=0xE6, 55060 description="COMBINING LATIN SMALL LETTER INSULAR D", 55061 direction="nsm", 55062 linebreak="cm", 55063 unicodeslot=0x1DD8, 55064 }, 55065 [0x1DD9]={ 55066 category="mn", 55067 combining=0xE6, 55068 description="COMBINING LATIN SMALL LETTER ETH", 55069 direction="nsm", 55070 linebreak="cm", 55071 unicodeslot=0x1DD9, 55072 }, 55073 [0x1DDA]={ 55074 category="mn", 55075 combining=0xE6, 55076 description="COMBINING LATIN SMALL LETTER G", 55077 direction="nsm", 55078 linebreak="cm", 55079 unicodeslot=0x1DDA, 55080 }, 55081 [0x1DDB]={ 55082 category="mn", 55083 combining=0xE6, 55084 description="COMBINING LATIN LETTER SMALL CAPITAL G", 55085 direction="nsm", 55086 linebreak="cm", 55087 unicodeslot=0x1DDB, 55088 }, 55089 [0x1DDC]={ 55090 category="mn", 55091 combining=0xE6, 55092 description="COMBINING LATIN SMALL LETTER K", 55093 direction="nsm", 55094 linebreak="cm", 55095 unicodeslot=0x1DDC, 55096 }, 55097 [0x1DDD]={ 55098 category="mn", 55099 combining=0xE6, 55100 description="COMBINING LATIN SMALL LETTER L", 55101 direction="nsm", 55102 linebreak="cm", 55103 unicodeslot=0x1DDD, 55104 }, 55105 [0x1DDE]={ 55106 category="mn", 55107 combining=0xE6, 55108 description="COMBINING LATIN LETTER SMALL CAPITAL L", 55109 direction="nsm", 55110 linebreak="cm", 55111 unicodeslot=0x1DDE, 55112 }, 55113 [0x1DDF]={ 55114 category="mn", 55115 combining=0xE6, 55116 description="COMBINING LATIN LETTER SMALL CAPITAL M", 55117 direction="nsm", 55118 linebreak="cm", 55119 unicodeslot=0x1DDF, 55120 }, 55121 [0x1DE0]={ 55122 category="mn", 55123 combining=0xE6, 55124 description="COMBINING LATIN SMALL LETTER N", 55125 direction="nsm", 55126 linebreak="cm", 55127 unicodeslot=0x1DE0, 55128 }, 55129 [0x1DE1]={ 55130 category="mn", 55131 combining=0xE6, 55132 description="COMBINING LATIN LETTER SMALL CAPITAL N", 55133 direction="nsm", 55134 linebreak="cm", 55135 unicodeslot=0x1DE1, 55136 }, 55137 [0x1DE2]={ 55138 category="mn", 55139 combining=0xE6, 55140 description="COMBINING LATIN LETTER SMALL CAPITAL R", 55141 direction="nsm", 55142 linebreak="cm", 55143 unicodeslot=0x1DE2, 55144 }, 55145 [0x1DE3]={ 55146 category="mn", 55147 combining=0xE6, 55148 description="COMBINING LATIN SMALL LETTER R ROTUNDA", 55149 direction="nsm", 55150 linebreak="cm", 55151 unicodeslot=0x1DE3, 55152 }, 55153 [0x1DE4]={ 55154 category="mn", 55155 combining=0xE6, 55156 description="COMBINING LATIN SMALL LETTER S", 55157 direction="nsm", 55158 linebreak="cm", 55159 unicodeslot=0x1DE4, 55160 }, 55161 [0x1DE5]={ 55162 category="mn", 55163 combining=0xE6, 55164 description="COMBINING LATIN SMALL LETTER LONG S", 55165 direction="nsm", 55166 linebreak="cm", 55167 unicodeslot=0x1DE5, 55168 }, 55169 [0x1DE6]={ 55170 category="mn", 55171 combining=0xE6, 55172 description="COMBINING LATIN SMALL LETTER Z", 55173 direction="nsm", 55174 linebreak="cm", 55175 unicodeslot=0x1DE6, 55176 }, 55177 [0x1DE7]={ 55178 category="mn", 55179 combining=0xE6, 55180 description="COMBINING LATIN SMALL LETTER ALPHA", 55181 direction="nsm", 55182 linebreak="cm", 55183 unicodeslot=0x1DE7, 55184 }, 55185 [0x1DE8]={ 55186 category="mn", 55187 combining=0xE6, 55188 description="COMBINING LATIN SMALL LETTER B", 55189 direction="nsm", 55190 linebreak="cm", 55191 unicodeslot=0x1DE8, 55192 }, 55193 [0x1DE9]={ 55194 category="mn", 55195 combining=0xE6, 55196 description="COMBINING LATIN SMALL LETTER BETA", 55197 direction="nsm", 55198 linebreak="cm", 55199 unicodeslot=0x1DE9, 55200 }, 55201 [0x1DEA]={ 55202 category="mn", 55203 combining=0xE6, 55204 description="COMBINING LATIN SMALL LETTER SCHWA", 55205 direction="nsm", 55206 linebreak="cm", 55207 unicodeslot=0x1DEA, 55208 }, 55209 [0x1DEB]={ 55210 category="mn", 55211 combining=0xE6, 55212 description="COMBINING LATIN SMALL LETTER F", 55213 direction="nsm", 55214 linebreak="cm", 55215 unicodeslot=0x1DEB, 55216 }, 55217 [0x1DEC]={ 55218 category="mn", 55219 combining=0xE6, 55220 description="COMBINING LATIN SMALL LETTER L WITH DOUBLE MIDDLE TILDE", 55221 direction="nsm", 55222 linebreak="cm", 55223 unicodeslot=0x1DEC, 55224 }, 55225 [0x1DED]={ 55226 category="mn", 55227 combining=0xE6, 55228 description="COMBINING LATIN SMALL LETTER O WITH LIGHT CENTRALIZATION STROKE", 55229 direction="nsm", 55230 linebreak="cm", 55231 unicodeslot=0x1DED, 55232 }, 55233 [0x1DEE]={ 55234 category="mn", 55235 combining=0xE6, 55236 description="COMBINING LATIN SMALL LETTER P", 55237 direction="nsm", 55238 linebreak="cm", 55239 unicodeslot=0x1DEE, 55240 }, 55241 [0x1DEF]={ 55242 category="mn", 55243 combining=0xE6, 55244 description="COMBINING LATIN SMALL LETTER ESH", 55245 direction="nsm", 55246 linebreak="cm", 55247 unicodeslot=0x1DEF, 55248 }, 55249 [0x1DF0]={ 55250 category="mn", 55251 combining=0xE6, 55252 description="COMBINING LATIN SMALL LETTER U WITH LIGHT CENTRALIZATION STROKE", 55253 direction="nsm", 55254 linebreak="cm", 55255 unicodeslot=0x1DF0, 55256 }, 55257 [0x1DF1]={ 55258 category="mn", 55259 combining=0xE6, 55260 description="COMBINING LATIN SMALL LETTER W", 55261 direction="nsm", 55262 linebreak="cm", 55263 unicodeslot=0x1DF1, 55264 }, 55265 [0x1DF2]={ 55266 category="mn", 55267 combining=0xE6, 55268 description="COMBINING LATIN SMALL LETTER A WITH DIAERESIS", 55269 direction="nsm", 55270 linebreak="cm", 55271 unicodeslot=0x1DF2, 55272 }, 55273 [0x1DF3]={ 55274 category="mn", 55275 combining=0xE6, 55276 description="COMBINING LATIN SMALL LETTER O WITH DIAERESIS", 55277 direction="nsm", 55278 linebreak="cm", 55279 unicodeslot=0x1DF3, 55280 }, 55281 [0x1DF4]={ 55282 category="mn", 55283 combining=0xE6, 55284 description="COMBINING LATIN SMALL LETTER U WITH DIAERESIS", 55285 direction="nsm", 55286 linebreak="cm", 55287 unicodeslot=0x1DF4, 55288 }, 55289 [0x1DF5]={ 55290 category="mn", 55291 combining=0xE6, 55292 description="COMBINING UP TACK ABOVE", 55293 direction="nsm", 55294 linebreak="cm", 55295 unicodeslot=0x1DF5, 55296 }, 55297 [0x1DF6]={ 55298 category="mn", 55299 combining=0xE8, 55300 description="COMBINING KAVYKA ABOVE RIGHT", 55301 direction="nsm", 55302 linebreak="cm", 55303 unicodeslot=0x1DF6, 55304 }, 55305 [0x1DF7]={ 55306 category="mn", 55307 combining=0xE4, 55308 description="COMBINING KAVYKA ABOVE LEFT", 55309 direction="nsm", 55310 linebreak="cm", 55311 unicodeslot=0x1DF7, 55312 }, 55313 [0x1DF8]={ 55314 category="mn", 55315 combining=0xE4, 55316 description="COMBINING DOT ABOVE LEFT", 55317 direction="nsm", 55318 linebreak="cm", 55319 unicodeslot=0x1DF8, 55320 }, 55321 [0x1DF9]={ 55322 category="mn", 55323 combining=0xDC, 55324 description="COMBINING WIDE INVERTED BRIDGE BELOW", 55325 direction="nsm", 55326 linebreak="cm", 55327 unicodeslot=0x1DF9, 55328 }, 55329 [0x1DFA]={ 55330 category="mn", 55331 combining=0xDA, 55332 description="COMBINING DOT BELOW LEFT", 55333 direction="nsm", 55334 linebreak="cm", 55335 unicodeslot=0x1DFA, 55336 }, 55337 [0x1DFB]={ 55338 category="mn", 55339 combining=0xE6, 55340 description="COMBINING DELETION MARK", 55341 direction="nsm", 55342 linebreak="cm", 55343 unicodeslot=0x1DFB, 55344 }, 55345 [0x1DFC]={ 55346 category="mn", 55347 combining=0xE9, 55348 description="COMBINING DOUBLE INVERTED BREVE BELOW", 55349 direction="nsm", 55350 linebreak="gl", 55351 unicodeslot=0x1DFC, 55352 }, 55353 [0x1DFD]={ 55354 category="mn", 55355 combining=0xDC, 55356 description="COMBINING ALMOST EQUAL TO BELOW", 55357 direction="nsm", 55358 linebreak="cm", 55359 unicodeslot=0x1DFD, 55360 }, 55361 [0x1DFE]={ 55362 category="mn", 55363 combining=0xE6, 55364 description="COMBINING LEFT ARROWHEAD ABOVE", 55365 direction="nsm", 55366 linebreak="cm", 55367 unicodeslot=0x1DFE, 55368 }, 55369 [0x1DFF]={ 55370 category="mn", 55371 combining=0xDC, 55372 description="COMBINING RIGHT ARROWHEAD AND DOWN ARROWHEAD BELOW", 55373 direction="nsm", 55374 linebreak="cm", 55375 unicodeslot=0x1DFF, 55376 }, 55377 [0x1E00]={ 55378 category="lu", 55379 description="LATIN CAPITAL LETTER A WITH RING BELOW", 55380 direction="l", 55381 lccode=0x1E01, 55382 linebreak="al", 55383 shcode=0x41, 55384 specials={ "char", 0x41, 0x325 }, 55385 unicodeslot=0x1E00, 55386 }, 55387 [0x1E01]={ 55388 category="ll", 55389 description="LATIN SMALL LETTER A WITH RING BELOW", 55390 direction="l", 55391 linebreak="al", 55392 shcode=0x61, 55393 specials={ "char", 0x61, 0x325 }, 55394 uccode=0x1E00, 55395 unicodeslot=0x1E01, 55396 }, 55397 [0x1E02]={ 55398 category="lu", 55399 description="LATIN CAPITAL LETTER B WITH DOT ABOVE", 55400 direction="l", 55401 lccode=0x1E03, 55402 linebreak="al", 55403 shcode=0x42, 55404 specials={ "char", 0x42, 0x307 }, 55405 unicodeslot=0x1E02, 55406 }, 55407 [0x1E03]={ 55408 category="ll", 55409 description="LATIN SMALL LETTER B WITH DOT ABOVE", 55410 direction="l", 55411 linebreak="al", 55412 shcode=0x62, 55413 specials={ "char", 0x62, 0x307 }, 55414 uccode=0x1E02, 55415 unicodeslot=0x1E03, 55416 }, 55417 [0x1E04]={ 55418 category="lu", 55419 description="LATIN CAPITAL LETTER B WITH DOT BELOW", 55420 direction="l", 55421 lccode=0x1E05, 55422 linebreak="al", 55423 shcode=0x42, 55424 specials={ "char", 0x42, 0x323 }, 55425 unicodeslot=0x1E04, 55426 }, 55427 [0x1E05]={ 55428 category="ll", 55429 description="LATIN SMALL LETTER B WITH DOT BELOW", 55430 direction="l", 55431 linebreak="al", 55432 shcode=0x62, 55433 specials={ "char", 0x62, 0x323 }, 55434 uccode=0x1E04, 55435 unicodeslot=0x1E05, 55436 }, 55437 [0x1E06]={ 55438 category="lu", 55439 description="LATIN CAPITAL LETTER B WITH LINE BELOW", 55440 direction="l", 55441 lccode=0x1E07, 55442 linebreak="al", 55443 shcode=0x42, 55444 specials={ "char", 0x42, 0x331 }, 55445 unicodeslot=0x1E06, 55446 }, 55447 [0x1E07]={ 55448 category="ll", 55449 description="LATIN SMALL LETTER B WITH LINE BELOW", 55450 direction="l", 55451 linebreak="al", 55452 shcode=0x62, 55453 specials={ "char", 0x62, 0x331 }, 55454 uccode=0x1E06, 55455 unicodeslot=0x1E07, 55456 }, 55457 [0x1E08]={ 55458 category="lu", 55459 description="LATIN CAPITAL LETTER C WITH CEDILLA AND ACUTE", 55460 direction="l", 55461 lccode=0x1E09, 55462 linebreak="al", 55463 shcode=0x43, 55464 specials={ "char", 0xC7, 0x301 }, 55465 unicodeslot=0x1E08, 55466 }, 55467 [0x1E09]={ 55468 category="ll", 55469 description="LATIN SMALL LETTER C WITH CEDILLA AND ACUTE", 55470 direction="l", 55471 linebreak="al", 55472 shcode=0x63, 55473 specials={ "char", 0xE7, 0x301 }, 55474 uccode=0x1E08, 55475 unicodeslot=0x1E09, 55476 }, 55477 [0x1E0A]={ 55478 category="lu", 55479 description="LATIN CAPITAL LETTER D WITH DOT ABOVE", 55480 direction="l", 55481 lccode=0x1E0B, 55482 linebreak="al", 55483 shcode=0x44, 55484 specials={ "char", 0x44, 0x307 }, 55485 unicodeslot=0x1E0A, 55486 }, 55487 [0x1E0B]={ 55488 category="ll", 55489 description="LATIN SMALL LETTER D WITH DOT ABOVE", 55490 direction="l", 55491 linebreak="al", 55492 shcode=0x64, 55493 specials={ "char", 0x64, 0x307 }, 55494 uccode=0x1E0A, 55495 unicodeslot=0x1E0B, 55496 }, 55497 [0x1E0C]={ 55498 category="lu", 55499 description="LATIN CAPITAL LETTER D WITH DOT BELOW", 55500 direction="l", 55501 lccode=0x1E0D, 55502 linebreak="al", 55503 shcode=0x44, 55504 specials={ "char", 0x44, 0x323 }, 55505 unicodeslot=0x1E0C, 55506 }, 55507 [0x1E0D]={ 55508 category="ll", 55509 description="LATIN SMALL LETTER D WITH DOT BELOW", 55510 direction="l", 55511 linebreak="al", 55512 shcode=0x64, 55513 specials={ "char", 0x64, 0x323 }, 55514 uccode=0x1E0C, 55515 unicodeslot=0x1E0D, 55516 }, 55517 [0x1E0E]={ 55518 category="lu", 55519 description="LATIN CAPITAL LETTER D WITH LINE BELOW", 55520 direction="l", 55521 lccode=0x1E0F, 55522 linebreak="al", 55523 shcode=0x44, 55524 specials={ "char", 0x44, 0x331 }, 55525 unicodeslot=0x1E0E, 55526 }, 55527 [0x1E0F]={ 55528 category="ll", 55529 description="LATIN SMALL LETTER D WITH LINE BELOW", 55530 direction="l", 55531 linebreak="al", 55532 shcode=0x64, 55533 specials={ "char", 0x64, 0x331 }, 55534 uccode=0x1E0E, 55535 unicodeslot=0x1E0F, 55536 }, 55537 [0x1E10]={ 55538 category="lu", 55539 description="LATIN CAPITAL LETTER D WITH CEDILLA", 55540 direction="l", 55541 lccode=0x1E11, 55542 linebreak="al", 55543 shcode=0x44, 55544 specials={ "char", 0x44, 0x327 }, 55545 unicodeslot=0x1E10, 55546 }, 55547 [0x1E11]={ 55548 category="ll", 55549 description="LATIN SMALL LETTER D WITH CEDILLA", 55550 direction="l", 55551 linebreak="al", 55552 shcode=0x64, 55553 specials={ "char", 0x64, 0x327 }, 55554 uccode=0x1E10, 55555 unicodeslot=0x1E11, 55556 }, 55557 [0x1E12]={ 55558 category="lu", 55559 description="LATIN CAPITAL LETTER D WITH CIRCUMFLEX BELOW", 55560 direction="l", 55561 lccode=0x1E13, 55562 linebreak="al", 55563 shcode=0x44, 55564 specials={ "char", 0x44, 0x32D }, 55565 unicodeslot=0x1E12, 55566 }, 55567 [0x1E13]={ 55568 category="ll", 55569 description="LATIN SMALL LETTER D WITH CIRCUMFLEX BELOW", 55570 direction="l", 55571 linebreak="al", 55572 shcode=0x64, 55573 specials={ "char", 0x64, 0x32D }, 55574 uccode=0x1E12, 55575 unicodeslot=0x1E13, 55576 }, 55577 [0x1E14]={ 55578 category="lu", 55579 description="LATIN CAPITAL LETTER E WITH MACRON AND GRAVE", 55580 direction="l", 55581 lccode=0x1E15, 55582 linebreak="al", 55583 shcode=0x45, 55584 specials={ "char", 0x112, 0x300 }, 55585 unicodeslot=0x1E14, 55586 }, 55587 [0x1E15]={ 55588 category="ll", 55589 description="LATIN SMALL LETTER E WITH MACRON AND GRAVE", 55590 direction="l", 55591 linebreak="al", 55592 shcode=0x65, 55593 specials={ "char", 0x113, 0x300 }, 55594 uccode=0x1E14, 55595 unicodeslot=0x1E15, 55596 }, 55597 [0x1E16]={ 55598 category="lu", 55599 description="LATIN CAPITAL LETTER E WITH MACRON AND ACUTE", 55600 direction="l", 55601 lccode=0x1E17, 55602 linebreak="al", 55603 shcode=0x45, 55604 specials={ "char", 0x112, 0x301 }, 55605 unicodeslot=0x1E16, 55606 }, 55607 [0x1E17]={ 55608 category="ll", 55609 description="LATIN SMALL LETTER E WITH MACRON AND ACUTE", 55610 direction="l", 55611 linebreak="al", 55612 shcode=0x65, 55613 specials={ "char", 0x113, 0x301 }, 55614 uccode=0x1E16, 55615 unicodeslot=0x1E17, 55616 }, 55617 [0x1E18]={ 55618 category="lu", 55619 description="LATIN CAPITAL LETTER E WITH CIRCUMFLEX BELOW", 55620 direction="l", 55621 lccode=0x1E19, 55622 linebreak="al", 55623 shcode=0x45, 55624 specials={ "char", 0x45, 0x32D }, 55625 unicodeslot=0x1E18, 55626 }, 55627 [0x1E19]={ 55628 category="ll", 55629 description="LATIN SMALL LETTER E WITH CIRCUMFLEX BELOW", 55630 direction="l", 55631 linebreak="al", 55632 shcode=0x65, 55633 specials={ "char", 0x65, 0x32D }, 55634 uccode=0x1E18, 55635 unicodeslot=0x1E19, 55636 }, 55637 [0x1E1A]={ 55638 category="lu", 55639 description="LATIN CAPITAL LETTER E WITH TILDE BELOW", 55640 direction="l", 55641 lccode=0x1E1B, 55642 linebreak="al", 55643 shcode=0x45, 55644 specials={ "char", 0x45, 0x330 }, 55645 unicodeslot=0x1E1A, 55646 }, 55647 [0x1E1B]={ 55648 category="ll", 55649 description="LATIN SMALL LETTER E WITH TILDE BELOW", 55650 direction="l", 55651 linebreak="al", 55652 shcode=0x65, 55653 specials={ "char", 0x65, 0x330 }, 55654 uccode=0x1E1A, 55655 unicodeslot=0x1E1B, 55656 }, 55657 [0x1E1C]={ 55658 category="lu", 55659 description="LATIN CAPITAL LETTER E WITH CEDILLA AND BREVE", 55660 direction="l", 55661 lccode=0x1E1D, 55662 linebreak="al", 55663 shcode=0x45, 55664 specials={ "char", 0x228, 0x306 }, 55665 unicodeslot=0x1E1C, 55666 }, 55667 [0x1E1D]={ 55668 category="ll", 55669 description="LATIN SMALL LETTER E WITH CEDILLA AND BREVE", 55670 direction="l", 55671 linebreak="al", 55672 shcode=0x65, 55673 specials={ "char", 0x229, 0x306 }, 55674 uccode=0x1E1C, 55675 unicodeslot=0x1E1D, 55676 }, 55677 [0x1E1E]={ 55678 category="lu", 55679 description="LATIN CAPITAL LETTER F WITH DOT ABOVE", 55680 direction="l", 55681 lccode=0x1E1F, 55682 linebreak="al", 55683 shcode=0x46, 55684 specials={ "char", 0x46, 0x307 }, 55685 unicodeslot=0x1E1E, 55686 }, 55687 [0x1E1F]={ 55688 category="ll", 55689 description="LATIN SMALL LETTER F WITH DOT ABOVE", 55690 direction="l", 55691 linebreak="al", 55692 shcode=0x66, 55693 specials={ "char", 0x66, 0x307 }, 55694 uccode=0x1E1E, 55695 unicodeslot=0x1E1F, 55696 }, 55697 [0x1E20]={ 55698 category="lu", 55699 description="LATIN CAPITAL LETTER G WITH MACRON", 55700 direction="l", 55701 lccode=0x1E21, 55702 linebreak="al", 55703 shcode=0x47, 55704 specials={ "char", 0x47, 0x304 }, 55705 unicodeslot=0x1E20, 55706 }, 55707 [0x1E21]={ 55708 category="ll", 55709 description="LATIN SMALL LETTER G WITH MACRON", 55710 direction="l", 55711 linebreak="al", 55712 shcode=0x67, 55713 specials={ "char", 0x67, 0x304 }, 55714 uccode=0x1E20, 55715 unicodeslot=0x1E21, 55716 }, 55717 [0x1E22]={ 55718 category="lu", 55719 description="LATIN CAPITAL LETTER H WITH DOT ABOVE", 55720 direction="l", 55721 lccode=0x1E23, 55722 linebreak="al", 55723 shcode=0x48, 55724 specials={ "char", 0x48, 0x307 }, 55725 unicodeslot=0x1E22, 55726 }, 55727 [0x1E23]={ 55728 category="ll", 55729 description="LATIN SMALL LETTER H WITH DOT ABOVE", 55730 direction="l", 55731 linebreak="al", 55732 shcode=0x68, 55733 specials={ "char", 0x68, 0x307 }, 55734 uccode=0x1E22, 55735 unicodeslot=0x1E23, 55736 }, 55737 [0x1E24]={ 55738 category="lu", 55739 description="LATIN CAPITAL LETTER H WITH DOT BELOW", 55740 direction="l", 55741 lccode=0x1E25, 55742 linebreak="al", 55743 shcode=0x48, 55744 specials={ "char", 0x48, 0x323 }, 55745 unicodeslot=0x1E24, 55746 }, 55747 [0x1E25]={ 55748 category="ll", 55749 description="LATIN SMALL LETTER H WITH DOT BELOW", 55750 direction="l", 55751 linebreak="al", 55752 shcode=0x68, 55753 specials={ "char", 0x68, 0x323 }, 55754 uccode=0x1E24, 55755 unicodeslot=0x1E25, 55756 }, 55757 [0x1E26]={ 55758 category="lu", 55759 description="LATIN CAPITAL LETTER H WITH DIAERESIS", 55760 direction="l", 55761 lccode=0x1E27, 55762 linebreak="al", 55763 shcode=0x48, 55764 specials={ "char", 0x48, 0x308 }, 55765 unicodeslot=0x1E26, 55766 }, 55767 [0x1E27]={ 55768 category="ll", 55769 description="LATIN SMALL LETTER H WITH DIAERESIS", 55770 direction="l", 55771 linebreak="al", 55772 shcode=0x68, 55773 specials={ "char", 0x68, 0x308 }, 55774 uccode=0x1E26, 55775 unicodeslot=0x1E27, 55776 }, 55777 [0x1E28]={ 55778 category="lu", 55779 description="LATIN CAPITAL LETTER H WITH CEDILLA", 55780 direction="l", 55781 lccode=0x1E29, 55782 linebreak="al", 55783 shcode=0x48, 55784 specials={ "char", 0x48, 0x327 }, 55785 unicodeslot=0x1E28, 55786 }, 55787 [0x1E29]={ 55788 category="ll", 55789 description="LATIN SMALL LETTER H WITH CEDILLA", 55790 direction="l", 55791 linebreak="al", 55792 shcode=0x68, 55793 specials={ "char", 0x68, 0x327 }, 55794 uccode=0x1E28, 55795 unicodeslot=0x1E29, 55796 }, 55797 [0x1E2A]={ 55798 category="lu", 55799 description="LATIN CAPITAL LETTER H WITH BREVE BELOW", 55800 direction="l", 55801 lccode=0x1E2B, 55802 linebreak="al", 55803 shcode=0x48, 55804 specials={ "char", 0x48, 0x32E }, 55805 unicodeslot=0x1E2A, 55806 }, 55807 [0x1E2B]={ 55808 category="ll", 55809 description="LATIN SMALL LETTER H WITH BREVE BELOW", 55810 direction="l", 55811 linebreak="al", 55812 shcode=0x68, 55813 specials={ "char", 0x68, 0x32E }, 55814 uccode=0x1E2A, 55815 unicodeslot=0x1E2B, 55816 }, 55817 [0x1E2C]={ 55818 category="lu", 55819 description="LATIN CAPITAL LETTER I WITH TILDE BELOW", 55820 direction="l", 55821 lccode=0x1E2D, 55822 linebreak="al", 55823 shcode=0x49, 55824 specials={ "char", 0x49, 0x330 }, 55825 unicodeslot=0x1E2C, 55826 }, 55827 [0x1E2D]={ 55828 category="ll", 55829 description="LATIN SMALL LETTER I WITH TILDE BELOW", 55830 direction="l", 55831 linebreak="al", 55832 shcode=0x69, 55833 specials={ "char", 0x69, 0x330 }, 55834 uccode=0x1E2C, 55835 unicodeslot=0x1E2D, 55836 }, 55837 [0x1E2E]={ 55838 category="lu", 55839 description="LATIN CAPITAL LETTER I WITH DIAERESIS AND ACUTE", 55840 direction="l", 55841 lccode=0x1E2F, 55842 linebreak="al", 55843 shcode=0x49, 55844 specials={ "char", 0xCF, 0x301 }, 55845 unicodeslot=0x1E2E, 55846 }, 55847 [0x1E2F]={ 55848 category="ll", 55849 description="LATIN SMALL LETTER I WITH DIAERESIS AND ACUTE", 55850 direction="l", 55851 linebreak="al", 55852 shcode=0x69, 55853 specials={ "char", 0xEF, 0x301 }, 55854 uccode=0x1E2E, 55855 unicodeslot=0x1E2F, 55856 }, 55857 [0x1E30]={ 55858 category="lu", 55859 description="LATIN CAPITAL LETTER K WITH ACUTE", 55860 direction="l", 55861 lccode=0x1E31, 55862 linebreak="al", 55863 shcode=0x4B, 55864 specials={ "char", 0x4B, 0x301 }, 55865 unicodeslot=0x1E30, 55866 }, 55867 [0x1E31]={ 55868 category="ll", 55869 description="LATIN SMALL LETTER K WITH ACUTE", 55870 direction="l", 55871 linebreak="al", 55872 shcode=0x6B, 55873 specials={ "char", 0x6B, 0x301 }, 55874 uccode=0x1E30, 55875 unicodeslot=0x1E31, 55876 }, 55877 [0x1E32]={ 55878 category="lu", 55879 description="LATIN CAPITAL LETTER K WITH DOT BELOW", 55880 direction="l", 55881 lccode=0x1E33, 55882 linebreak="al", 55883 shcode=0x4B, 55884 specials={ "char", 0x4B, 0x323 }, 55885 unicodeslot=0x1E32, 55886 }, 55887 [0x1E33]={ 55888 category="ll", 55889 description="LATIN SMALL LETTER K WITH DOT BELOW", 55890 direction="l", 55891 linebreak="al", 55892 shcode=0x6B, 55893 specials={ "char", 0x6B, 0x323 }, 55894 uccode=0x1E32, 55895 unicodeslot=0x1E33, 55896 }, 55897 [0x1E34]={ 55898 category="lu", 55899 description="LATIN CAPITAL LETTER K WITH LINE BELOW", 55900 direction="l", 55901 lccode=0x1E35, 55902 linebreak="al", 55903 shcode=0x4B, 55904 specials={ "char", 0x4B, 0x331 }, 55905 unicodeslot=0x1E34, 55906 }, 55907 [0x1E35]={ 55908 category="ll", 55909 description="LATIN SMALL LETTER K WITH LINE BELOW", 55910 direction="l", 55911 linebreak="al", 55912 shcode=0x6B, 55913 specials={ "char", 0x6B, 0x331 }, 55914 uccode=0x1E34, 55915 unicodeslot=0x1E35, 55916 }, 55917 [0x1E36]={ 55918 category="lu", 55919 description="LATIN CAPITAL LETTER L WITH DOT BELOW", 55920 direction="l", 55921 lccode=0x1E37, 55922 linebreak="al", 55923 shcode=0x4C, 55924 specials={ "char", 0x4C, 0x323 }, 55925 unicodeslot=0x1E36, 55926 }, 55927 [0x1E37]={ 55928 category="ll", 55929 description="LATIN SMALL LETTER L WITH DOT BELOW", 55930 direction="l", 55931 linebreak="al", 55932 shcode=0x6C, 55933 specials={ "char", 0x6C, 0x323 }, 55934 uccode=0x1E36, 55935 unicodeslot=0x1E37, 55936 }, 55937 [0x1E38]={ 55938 category="lu", 55939 description="LATIN CAPITAL LETTER L WITH DOT BELOW AND MACRON", 55940 direction="l", 55941 lccode=0x1E39, 55942 linebreak="al", 55943 shcode=0x4C, 55944 specials={ "char", 0x1E36, 0x304 }, 55945 unicodeslot=0x1E38, 55946 }, 55947 [0x1E39]={ 55948 category="ll", 55949 description="LATIN SMALL LETTER L WITH DOT BELOW AND MACRON", 55950 direction="l", 55951 linebreak="al", 55952 shcode=0x6C, 55953 specials={ "char", 0x1E37, 0x304 }, 55954 uccode=0x1E38, 55955 unicodeslot=0x1E39, 55956 }, 55957 [0x1E3A]={ 55958 category="lu", 55959 description="LATIN CAPITAL LETTER L WITH LINE BELOW", 55960 direction="l", 55961 lccode=0x1E3B, 55962 linebreak="al", 55963 shcode=0x4C, 55964 specials={ "char", 0x4C, 0x331 }, 55965 unicodeslot=0x1E3A, 55966 }, 55967 [0x1E3B]={ 55968 category="ll", 55969 description="LATIN SMALL LETTER L WITH LINE BELOW", 55970 direction="l", 55971 linebreak="al", 55972 shcode=0x6C, 55973 specials={ "char", 0x6C, 0x331 }, 55974 uccode=0x1E3A, 55975 unicodeslot=0x1E3B, 55976 }, 55977 [0x1E3C]={ 55978 category="lu", 55979 description="LATIN CAPITAL LETTER L WITH CIRCUMFLEX BELOW", 55980 direction="l", 55981 lccode=0x1E3D, 55982 linebreak="al", 55983 shcode=0x4C, 55984 specials={ "char", 0x4C, 0x32D }, 55985 unicodeslot=0x1E3C, 55986 }, 55987 [0x1E3D]={ 55988 category="ll", 55989 description="LATIN SMALL LETTER L WITH CIRCUMFLEX BELOW", 55990 direction="l", 55991 linebreak="al", 55992 shcode=0x6C, 55993 specials={ "char", 0x6C, 0x32D }, 55994 uccode=0x1E3C, 55995 unicodeslot=0x1E3D, 55996 }, 55997 [0x1E3E]={ 55998 category="lu", 55999 description="LATIN CAPITAL LETTER M WITH ACUTE", 56000 direction="l", 56001 lccode=0x1E3F, 56002 linebreak="al", 56003 shcode=0x4D, 56004 specials={ "char", 0x4D, 0x301 }, 56005 unicodeslot=0x1E3E, 56006 }, 56007 [0x1E3F]={ 56008 category="ll", 56009 description="LATIN SMALL LETTER M WITH ACUTE", 56010 direction="l", 56011 linebreak="al", 56012 shcode=0x6D, 56013 specials={ "char", 0x6D, 0x301 }, 56014 uccode=0x1E3E, 56015 unicodeslot=0x1E3F, 56016 }, 56017 [0x1E40]={ 56018 category="lu", 56019 description="LATIN CAPITAL LETTER M WITH DOT ABOVE", 56020 direction="l", 56021 lccode=0x1E41, 56022 linebreak="al", 56023 shcode=0x4D, 56024 specials={ "char", 0x4D, 0x307 }, 56025 unicodeslot=0x1E40, 56026 }, 56027 [0x1E41]={ 56028 category="ll", 56029 description="LATIN SMALL LETTER M WITH DOT ABOVE", 56030 direction="l", 56031 linebreak="al", 56032 shcode=0x6D, 56033 specials={ "char", 0x6D, 0x307 }, 56034 uccode=0x1E40, 56035 unicodeslot=0x1E41, 56036 }, 56037 [0x1E42]={ 56038 category="lu", 56039 description="LATIN CAPITAL LETTER M WITH DOT BELOW", 56040 direction="l", 56041 lccode=0x1E43, 56042 linebreak="al", 56043 shcode=0x4D, 56044 specials={ "char", 0x4D, 0x323 }, 56045 unicodeslot=0x1E42, 56046 }, 56047 [0x1E43]={ 56048 category="ll", 56049 description="LATIN SMALL LETTER M WITH DOT BELOW", 56050 direction="l", 56051 linebreak="al", 56052 shcode=0x6D, 56053 specials={ "char", 0x6D, 0x323 }, 56054 uccode=0x1E42, 56055 unicodeslot=0x1E43, 56056 }, 56057 [0x1E44]={ 56058 category="lu", 56059 description="LATIN CAPITAL LETTER N WITH DOT ABOVE", 56060 direction="l", 56061 lccode=0x1E45, 56062 linebreak="al", 56063 shcode=0x4E, 56064 specials={ "char", 0x4E, 0x307 }, 56065 unicodeslot=0x1E44, 56066 }, 56067 [0x1E45]={ 56068 category="ll", 56069 description="LATIN SMALL LETTER N WITH DOT ABOVE", 56070 direction="l", 56071 linebreak="al", 56072 shcode=0x6E, 56073 specials={ "char", 0x6E, 0x307 }, 56074 uccode=0x1E44, 56075 unicodeslot=0x1E45, 56076 }, 56077 [0x1E46]={ 56078 category="lu", 56079 description="LATIN CAPITAL LETTER N WITH DOT BELOW", 56080 direction="l", 56081 lccode=0x1E47, 56082 linebreak="al", 56083 shcode=0x4E, 56084 specials={ "char", 0x4E, 0x323 }, 56085 unicodeslot=0x1E46, 56086 }, 56087 [0x1E47]={ 56088 category="ll", 56089 description="LATIN SMALL LETTER N WITH DOT BELOW", 56090 direction="l", 56091 linebreak="al", 56092 shcode=0x6E, 56093 specials={ "char", 0x6E, 0x323 }, 56094 uccode=0x1E46, 56095 unicodeslot=0x1E47, 56096 }, 56097 [0x1E48]={ 56098 category="lu", 56099 description="LATIN CAPITAL LETTER N WITH LINE BELOW", 56100 direction="l", 56101 lccode=0x1E49, 56102 linebreak="al", 56103 shcode=0x4E, 56104 specials={ "char", 0x4E, 0x331 }, 56105 unicodeslot=0x1E48, 56106 }, 56107 [0x1E49]={ 56108 category="ll", 56109 description="LATIN SMALL LETTER N WITH LINE BELOW", 56110 direction="l", 56111 linebreak="al", 56112 shcode=0x6E, 56113 specials={ "char", 0x6E, 0x331 }, 56114 uccode=0x1E48, 56115 unicodeslot=0x1E49, 56116 }, 56117 [0x1E4A]={ 56118 category="lu", 56119 description="LATIN CAPITAL LETTER N WITH CIRCUMFLEX BELOW", 56120 direction="l", 56121 lccode=0x1E4B, 56122 linebreak="al", 56123 shcode=0x4E, 56124 specials={ "char", 0x4E, 0x32D }, 56125 unicodeslot=0x1E4A, 56126 }, 56127 [0x1E4B]={ 56128 category="ll", 56129 description="LATIN SMALL LETTER N WITH CIRCUMFLEX BELOW", 56130 direction="l", 56131 linebreak="al", 56132 shcode=0x6E, 56133 specials={ "char", 0x6E, 0x32D }, 56134 uccode=0x1E4A, 56135 unicodeslot=0x1E4B, 56136 }, 56137 [0x1E4C]={ 56138 category="lu", 56139 description="LATIN CAPITAL LETTER O WITH TILDE AND ACUTE", 56140 direction="l", 56141 lccode=0x1E4D, 56142 linebreak="al", 56143 shcode=0x4F, 56144 specials={ "char", 0xD5, 0x301 }, 56145 unicodeslot=0x1E4C, 56146 }, 56147 [0x1E4D]={ 56148 category="ll", 56149 description="LATIN SMALL LETTER O WITH TILDE AND ACUTE", 56150 direction="l", 56151 linebreak="al", 56152 shcode=0x6F, 56153 specials={ "char", 0xF5, 0x301 }, 56154 uccode=0x1E4C, 56155 unicodeslot=0x1E4D, 56156 }, 56157 [0x1E4E]={ 56158 category="lu", 56159 description="LATIN CAPITAL LETTER O WITH TILDE AND DIAERESIS", 56160 direction="l", 56161 lccode=0x1E4F, 56162 linebreak="al", 56163 shcode=0x4F, 56164 specials={ "char", 0xD5, 0x308 }, 56165 unicodeslot=0x1E4E, 56166 }, 56167 [0x1E4F]={ 56168 category="ll", 56169 description="LATIN SMALL LETTER O WITH TILDE AND DIAERESIS", 56170 direction="l", 56171 linebreak="al", 56172 shcode=0x6F, 56173 specials={ "char", 0xF5, 0x308 }, 56174 uccode=0x1E4E, 56175 unicodeslot=0x1E4F, 56176 }, 56177 [0x1E50]={ 56178 category="lu", 56179 description="LATIN CAPITAL LETTER O WITH MACRON AND GRAVE", 56180 direction="l", 56181 lccode=0x1E51, 56182 linebreak="al", 56183 shcode=0x4F, 56184 specials={ "char", 0x14C, 0x300 }, 56185 unicodeslot=0x1E50, 56186 }, 56187 [0x1E51]={ 56188 category="ll", 56189 description="LATIN SMALL LETTER O WITH MACRON AND GRAVE", 56190 direction="l", 56191 linebreak="al", 56192 shcode=0x6F, 56193 specials={ "char", 0x14D, 0x300 }, 56194 uccode=0x1E50, 56195 unicodeslot=0x1E51, 56196 }, 56197 [0x1E52]={ 56198 category="lu", 56199 description="LATIN CAPITAL LETTER O WITH MACRON AND ACUTE", 56200 direction="l", 56201 lccode=0x1E53, 56202 linebreak="al", 56203 shcode=0x4F, 56204 specials={ "char", 0x14C, 0x301 }, 56205 unicodeslot=0x1E52, 56206 }, 56207 [0x1E53]={ 56208 category="ll", 56209 description="LATIN SMALL LETTER O WITH MACRON AND ACUTE", 56210 direction="l", 56211 linebreak="al", 56212 shcode=0x6F, 56213 specials={ "char", 0x14D, 0x301 }, 56214 uccode=0x1E52, 56215 unicodeslot=0x1E53, 56216 }, 56217 [0x1E54]={ 56218 category="lu", 56219 description="LATIN CAPITAL LETTER P WITH ACUTE", 56220 direction="l", 56221 lccode=0x1E55, 56222 linebreak="al", 56223 shcode=0x50, 56224 specials={ "char", 0x50, 0x301 }, 56225 unicodeslot=0x1E54, 56226 }, 56227 [0x1E55]={ 56228 category="ll", 56229 description="LATIN SMALL LETTER P WITH ACUTE", 56230 direction="l", 56231 linebreak="al", 56232 shcode=0x70, 56233 specials={ "char", 0x70, 0x301 }, 56234 uccode=0x1E54, 56235 unicodeslot=0x1E55, 56236 }, 56237 [0x1E56]={ 56238 category="lu", 56239 description="LATIN CAPITAL LETTER P WITH DOT ABOVE", 56240 direction="l", 56241 lccode=0x1E57, 56242 linebreak="al", 56243 shcode=0x50, 56244 specials={ "char", 0x50, 0x307 }, 56245 unicodeslot=0x1E56, 56246 }, 56247 [0x1E57]={ 56248 category="ll", 56249 description="LATIN SMALL LETTER P WITH DOT ABOVE", 56250 direction="l", 56251 linebreak="al", 56252 shcode=0x70, 56253 specials={ "char", 0x70, 0x307 }, 56254 uccode=0x1E56, 56255 unicodeslot=0x1E57, 56256 }, 56257 [0x1E58]={ 56258 category="lu", 56259 description="LATIN CAPITAL LETTER R WITH DOT ABOVE", 56260 direction="l", 56261 lccode=0x1E59, 56262 linebreak="al", 56263 shcode=0x52, 56264 specials={ "char", 0x52, 0x307 }, 56265 unicodeslot=0x1E58, 56266 }, 56267 [0x1E59]={ 56268 category="ll", 56269 description="LATIN SMALL LETTER R WITH DOT ABOVE", 56270 direction="l", 56271 linebreak="al", 56272 shcode=0x72, 56273 specials={ "char", 0x72, 0x307 }, 56274 uccode=0x1E58, 56275 unicodeslot=0x1E59, 56276 }, 56277 [0x1E5A]={ 56278 category="lu", 56279 description="LATIN CAPITAL LETTER R WITH DOT BELOW", 56280 direction="l", 56281 lccode=0x1E5B, 56282 linebreak="al", 56283 shcode=0x52, 56284 specials={ "char", 0x52, 0x323 }, 56285 unicodeslot=0x1E5A, 56286 }, 56287 [0x1E5B]={ 56288 category="ll", 56289 description="LATIN SMALL LETTER R WITH DOT BELOW", 56290 direction="l", 56291 linebreak="al", 56292 shcode=0x72, 56293 specials={ "char", 0x72, 0x323 }, 56294 uccode=0x1E5A, 56295 unicodeslot=0x1E5B, 56296 }, 56297 [0x1E5C]={ 56298 category="lu", 56299 description="LATIN CAPITAL LETTER R WITH DOT BELOW AND MACRON", 56300 direction="l", 56301 lccode=0x1E5D, 56302 linebreak="al", 56303 shcode=0x52, 56304 specials={ "char", 0x1E5A, 0x304 }, 56305 unicodeslot=0x1E5C, 56306 }, 56307 [0x1E5D]={ 56308 category="ll", 56309 description="LATIN SMALL LETTER R WITH DOT BELOW AND MACRON", 56310 direction="l", 56311 linebreak="al", 56312 shcode=0x72, 56313 specials={ "char", 0x1E5B, 0x304 }, 56314 uccode=0x1E5C, 56315 unicodeslot=0x1E5D, 56316 }, 56317 [0x1E5E]={ 56318 category="lu", 56319 description="LATIN CAPITAL LETTER R WITH LINE BELOW", 56320 direction="l", 56321 lccode=0x1E5F, 56322 linebreak="al", 56323 shcode=0x52, 56324 specials={ "char", 0x52, 0x331 }, 56325 unicodeslot=0x1E5E, 56326 }, 56327 [0x1E5F]={ 56328 category="ll", 56329 description="LATIN SMALL LETTER R WITH LINE BELOW", 56330 direction="l", 56331 linebreak="al", 56332 shcode=0x72, 56333 specials={ "char", 0x72, 0x331 }, 56334 uccode=0x1E5E, 56335 unicodeslot=0x1E5F, 56336 }, 56337 [0x1E60]={ 56338 category="lu", 56339 description="LATIN CAPITAL LETTER S WITH DOT ABOVE", 56340 direction="l", 56341 lccode=0x1E61, 56342 linebreak="al", 56343 shcode=0x53, 56344 specials={ "char", 0x53, 0x307 }, 56345 unicodeslot=0x1E60, 56346 }, 56347 [0x1E61]={ 56348 category="ll", 56349 description="LATIN SMALL LETTER S WITH DOT ABOVE", 56350 direction="l", 56351 linebreak="al", 56352 shcode=0x73, 56353 specials={ "char", 0x73, 0x307 }, 56354 uccode=0x1E60, 56355 unicodeslot=0x1E61, 56356 }, 56357 [0x1E62]={ 56358 category="lu", 56359 description="LATIN CAPITAL LETTER S WITH DOT BELOW", 56360 direction="l", 56361 lccode=0x1E63, 56362 linebreak="al", 56363 shcode=0x53, 56364 specials={ "char", 0x53, 0x323 }, 56365 unicodeslot=0x1E62, 56366 }, 56367 [0x1E63]={ 56368 category="ll", 56369 description="LATIN SMALL LETTER S WITH DOT BELOW", 56370 direction="l", 56371 linebreak="al", 56372 shcode=0x73, 56373 specials={ "char", 0x73, 0x323 }, 56374 uccode=0x1E62, 56375 unicodeslot=0x1E63, 56376 }, 56377 [0x1E64]={ 56378 category="lu", 56379 description="LATIN CAPITAL LETTER S WITH ACUTE AND DOT ABOVE", 56380 direction="l", 56381 lccode=0x1E65, 56382 linebreak="al", 56383 shcode=0x53, 56384 specials={ "char", 0x15A, 0x307 }, 56385 unicodeslot=0x1E64, 56386 }, 56387 [0x1E65]={ 56388 category="ll", 56389 description="LATIN SMALL LETTER S WITH ACUTE AND DOT ABOVE", 56390 direction="l", 56391 linebreak="al", 56392 shcode=0x73, 56393 specials={ "char", 0x15B, 0x307 }, 56394 uccode=0x1E64, 56395 unicodeslot=0x1E65, 56396 }, 56397 [0x1E66]={ 56398 category="lu", 56399 description="LATIN CAPITAL LETTER S WITH CARON AND DOT ABOVE", 56400 direction="l", 56401 lccode=0x1E67, 56402 linebreak="al", 56403 shcode=0x53, 56404 specials={ "char", 0x160, 0x307 }, 56405 unicodeslot=0x1E66, 56406 }, 56407 [0x1E67]={ 56408 category="ll", 56409 description="LATIN SMALL LETTER S WITH CARON AND DOT ABOVE", 56410 direction="l", 56411 linebreak="al", 56412 shcode=0x73, 56413 specials={ "char", 0x161, 0x307 }, 56414 uccode=0x1E66, 56415 unicodeslot=0x1E67, 56416 }, 56417 [0x1E68]={ 56418 category="lu", 56419 description="LATIN CAPITAL LETTER S WITH DOT BELOW AND DOT ABOVE", 56420 direction="l", 56421 lccode=0x1E69, 56422 linebreak="al", 56423 shcode=0x53, 56424 specials={ "char", 0x1E62, 0x307 }, 56425 unicodeslot=0x1E68, 56426 }, 56427 [0x1E69]={ 56428 category="ll", 56429 description="LATIN SMALL LETTER S WITH DOT BELOW AND DOT ABOVE", 56430 direction="l", 56431 linebreak="al", 56432 shcode=0x73, 56433 specials={ "char", 0x1E63, 0x307 }, 56434 uccode=0x1E68, 56435 unicodeslot=0x1E69, 56436 }, 56437 [0x1E6A]={ 56438 category="lu", 56439 description="LATIN CAPITAL LETTER T WITH DOT ABOVE", 56440 direction="l", 56441 lccode=0x1E6B, 56442 linebreak="al", 56443 shcode=0x54, 56444 specials={ "char", 0x54, 0x307 }, 56445 unicodeslot=0x1E6A, 56446 }, 56447 [0x1E6B]={ 56448 category="ll", 56449 description="LATIN SMALL LETTER T WITH DOT ABOVE", 56450 direction="l", 56451 linebreak="al", 56452 shcode=0x74, 56453 specials={ "char", 0x74, 0x307 }, 56454 uccode=0x1E6A, 56455 unicodeslot=0x1E6B, 56456 }, 56457 [0x1E6C]={ 56458 category="lu", 56459 description="LATIN CAPITAL LETTER T WITH DOT BELOW", 56460 direction="l", 56461 lccode=0x1E6D, 56462 linebreak="al", 56463 shcode=0x54, 56464 specials={ "char", 0x54, 0x323 }, 56465 unicodeslot=0x1E6C, 56466 }, 56467 [0x1E6D]={ 56468 category="ll", 56469 description="LATIN SMALL LETTER T WITH DOT BELOW", 56470 direction="l", 56471 linebreak="al", 56472 shcode=0x74, 56473 specials={ "char", 0x74, 0x323 }, 56474 uccode=0x1E6C, 56475 unicodeslot=0x1E6D, 56476 }, 56477 [0x1E6E]={ 56478 category="lu", 56479 description="LATIN CAPITAL LETTER T WITH LINE BELOW", 56480 direction="l", 56481 lccode=0x1E6F, 56482 linebreak="al", 56483 shcode=0x54, 56484 specials={ "char", 0x54, 0x331 }, 56485 unicodeslot=0x1E6E, 56486 }, 56487 [0x1E6F]={ 56488 category="ll", 56489 description="LATIN SMALL LETTER T WITH LINE BELOW", 56490 direction="l", 56491 linebreak="al", 56492 shcode=0x74, 56493 specials={ "char", 0x74, 0x331 }, 56494 uccode=0x1E6E, 56495 unicodeslot=0x1E6F, 56496 }, 56497 [0x1E70]={ 56498 category="lu", 56499 description="LATIN CAPITAL LETTER T WITH CIRCUMFLEX BELOW", 56500 direction="l", 56501 lccode=0x1E71, 56502 linebreak="al", 56503 shcode=0x54, 56504 specials={ "char", 0x54, 0x32D }, 56505 unicodeslot=0x1E70, 56506 }, 56507 [0x1E71]={ 56508 category="ll", 56509 description="LATIN SMALL LETTER T WITH CIRCUMFLEX BELOW", 56510 direction="l", 56511 linebreak="al", 56512 shcode=0x74, 56513 specials={ "char", 0x74, 0x32D }, 56514 uccode=0x1E70, 56515 unicodeslot=0x1E71, 56516 }, 56517 [0x1E72]={ 56518 category="lu", 56519 description="LATIN CAPITAL LETTER U WITH DIAERESIS BELOW", 56520 direction="l", 56521 lccode=0x1E73, 56522 linebreak="al", 56523 shcode=0x55, 56524 specials={ "char", 0x55, 0x324 }, 56525 unicodeslot=0x1E72, 56526 }, 56527 [0x1E73]={ 56528 category="ll", 56529 description="LATIN SMALL LETTER U WITH DIAERESIS BELOW", 56530 direction="l", 56531 linebreak="al", 56532 shcode=0x75, 56533 specials={ "char", 0x75, 0x324 }, 56534 uccode=0x1E72, 56535 unicodeslot=0x1E73, 56536 }, 56537 [0x1E74]={ 56538 category="lu", 56539 description="LATIN CAPITAL LETTER U WITH TILDE BELOW", 56540 direction="l", 56541 lccode=0x1E75, 56542 linebreak="al", 56543 shcode=0x55, 56544 specials={ "char", 0x55, 0x330 }, 56545 unicodeslot=0x1E74, 56546 }, 56547 [0x1E75]={ 56548 category="ll", 56549 description="LATIN SMALL LETTER U WITH TILDE BELOW", 56550 direction="l", 56551 linebreak="al", 56552 shcode=0x75, 56553 specials={ "char", 0x75, 0x330 }, 56554 uccode=0x1E74, 56555 unicodeslot=0x1E75, 56556 }, 56557 [0x1E76]={ 56558 category="lu", 56559 description="LATIN CAPITAL LETTER U WITH CIRCUMFLEX BELOW", 56560 direction="l", 56561 lccode=0x1E77, 56562 linebreak="al", 56563 shcode=0x55, 56564 specials={ "char", 0x55, 0x32D }, 56565 unicodeslot=0x1E76, 56566 }, 56567 [0x1E77]={ 56568 category="ll", 56569 description="LATIN SMALL LETTER U WITH CIRCUMFLEX BELOW", 56570 direction="l", 56571 linebreak="al", 56572 shcode=0x75, 56573 specials={ "char", 0x75, 0x32D }, 56574 uccode=0x1E76, 56575 unicodeslot=0x1E77, 56576 }, 56577 [0x1E78]={ 56578 category="lu", 56579 description="LATIN CAPITAL LETTER U WITH TILDE AND ACUTE", 56580 direction="l", 56581 lccode=0x1E79, 56582 linebreak="al", 56583 shcode=0x55, 56584 specials={ "char", 0x168, 0x301 }, 56585 unicodeslot=0x1E78, 56586 }, 56587 [0x1E79]={ 56588 category="ll", 56589 description="LATIN SMALL LETTER U WITH TILDE AND ACUTE", 56590 direction="l", 56591 linebreak="al", 56592 shcode=0x75, 56593 specials={ "char", 0x169, 0x301 }, 56594 uccode=0x1E78, 56595 unicodeslot=0x1E79, 56596 }, 56597 [0x1E7A]={ 56598 category="lu", 56599 description="LATIN CAPITAL LETTER U WITH MACRON AND DIAERESIS", 56600 direction="l", 56601 lccode=0x1E7B, 56602 linebreak="al", 56603 shcode=0x55, 56604 specials={ "char", 0x16A, 0x308 }, 56605 unicodeslot=0x1E7A, 56606 }, 56607 [0x1E7B]={ 56608 category="ll", 56609 description="LATIN SMALL LETTER U WITH MACRON AND DIAERESIS", 56610 direction="l", 56611 linebreak="al", 56612 shcode=0x75, 56613 specials={ "char", 0x16B, 0x308 }, 56614 uccode=0x1E7A, 56615 unicodeslot=0x1E7B, 56616 }, 56617 [0x1E7C]={ 56618 category="lu", 56619 description="LATIN CAPITAL LETTER V WITH TILDE", 56620 direction="l", 56621 lccode=0x1E7D, 56622 linebreak="al", 56623 shcode=0x56, 56624 specials={ "char", 0x56, 0x303 }, 56625 unicodeslot=0x1E7C, 56626 }, 56627 [0x1E7D]={ 56628 category="ll", 56629 description="LATIN SMALL LETTER V WITH TILDE", 56630 direction="l", 56631 linebreak="al", 56632 shcode=0x76, 56633 specials={ "char", 0x76, 0x303 }, 56634 uccode=0x1E7C, 56635 unicodeslot=0x1E7D, 56636 }, 56637 [0x1E7E]={ 56638 category="lu", 56639 description="LATIN CAPITAL LETTER V WITH DOT BELOW", 56640 direction="l", 56641 lccode=0x1E7F, 56642 linebreak="al", 56643 shcode=0x56, 56644 specials={ "char", 0x56, 0x323 }, 56645 unicodeslot=0x1E7E, 56646 }, 56647 [0x1E7F]={ 56648 category="ll", 56649 description="LATIN SMALL LETTER V WITH DOT BELOW", 56650 direction="l", 56651 linebreak="al", 56652 shcode=0x76, 56653 specials={ "char", 0x76, 0x323 }, 56654 uccode=0x1E7E, 56655 unicodeslot=0x1E7F, 56656 }, 56657 [0x1E80]={ 56658 category="lu", 56659 description="LATIN CAPITAL LETTER W WITH GRAVE", 56660 direction="l", 56661 lccode=0x1E81, 56662 linebreak="al", 56663 shcode=0x57, 56664 specials={ "char", 0x57, 0x300 }, 56665 unicodeslot=0x1E80, 56666 }, 56667 [0x1E81]={ 56668 category="ll", 56669 description="LATIN SMALL LETTER W WITH GRAVE", 56670 direction="l", 56671 linebreak="al", 56672 shcode=0x77, 56673 specials={ "char", 0x77, 0x300 }, 56674 uccode=0x1E80, 56675 unicodeslot=0x1E81, 56676 }, 56677 [0x1E82]={ 56678 category="lu", 56679 description="LATIN CAPITAL LETTER W WITH ACUTE", 56680 direction="l", 56681 lccode=0x1E83, 56682 linebreak="al", 56683 shcode=0x57, 56684 specials={ "char", 0x57, 0x301 }, 56685 unicodeslot=0x1E82, 56686 }, 56687 [0x1E83]={ 56688 category="ll", 56689 description="LATIN SMALL LETTER W WITH ACUTE", 56690 direction="l", 56691 linebreak="al", 56692 shcode=0x77, 56693 specials={ "char", 0x77, 0x301 }, 56694 uccode=0x1E82, 56695 unicodeslot=0x1E83, 56696 }, 56697 [0x1E84]={ 56698 category="lu", 56699 description="LATIN CAPITAL LETTER W WITH DIAERESIS", 56700 direction="l", 56701 lccode=0x1E85, 56702 linebreak="al", 56703 shcode=0x57, 56704 specials={ "char", 0x57, 0x308 }, 56705 unicodeslot=0x1E84, 56706 }, 56707 [0x1E85]={ 56708 category="ll", 56709 description="LATIN SMALL LETTER W WITH DIAERESIS", 56710 direction="l", 56711 linebreak="al", 56712 shcode=0x77, 56713 specials={ "char", 0x77, 0x308 }, 56714 uccode=0x1E84, 56715 unicodeslot=0x1E85, 56716 }, 56717 [0x1E86]={ 56718 category="lu", 56719 description="LATIN CAPITAL LETTER W WITH DOT ABOVE", 56720 direction="l", 56721 lccode=0x1E87, 56722 linebreak="al", 56723 shcode=0x57, 56724 specials={ "char", 0x57, 0x307 }, 56725 unicodeslot=0x1E86, 56726 }, 56727 [0x1E87]={ 56728 category="ll", 56729 description="LATIN SMALL LETTER W WITH DOT ABOVE", 56730 direction="l", 56731 linebreak="al", 56732 shcode=0x77, 56733 specials={ "char", 0x77, 0x307 }, 56734 uccode=0x1E86, 56735 unicodeslot=0x1E87, 56736 }, 56737 [0x1E88]={ 56738 category="lu", 56739 description="LATIN CAPITAL LETTER W WITH DOT BELOW", 56740 direction="l", 56741 lccode=0x1E89, 56742 linebreak="al", 56743 shcode=0x57, 56744 specials={ "char", 0x57, 0x323 }, 56745 unicodeslot=0x1E88, 56746 }, 56747 [0x1E89]={ 56748 category="ll", 56749 description="LATIN SMALL LETTER W WITH DOT BELOW", 56750 direction="l", 56751 linebreak="al", 56752 shcode=0x77, 56753 specials={ "char", 0x77, 0x323 }, 56754 uccode=0x1E88, 56755 unicodeslot=0x1E89, 56756 }, 56757 [0x1E8A]={ 56758 category="lu", 56759 description="LATIN CAPITAL LETTER X WITH DOT ABOVE", 56760 direction="l", 56761 lccode=0x1E8B, 56762 linebreak="al", 56763 shcode=0x58, 56764 specials={ "char", 0x58, 0x307 }, 56765 unicodeslot=0x1E8A, 56766 }, 56767 [0x1E8B]={ 56768 category="ll", 56769 description="LATIN SMALL LETTER X WITH DOT ABOVE", 56770 direction="l", 56771 linebreak="al", 56772 shcode=0x78, 56773 specials={ "char", 0x78, 0x307 }, 56774 uccode=0x1E8A, 56775 unicodeslot=0x1E8B, 56776 }, 56777 [0x1E8C]={ 56778 category="lu", 56779 description="LATIN CAPITAL LETTER X WITH DIAERESIS", 56780 direction="l", 56781 lccode=0x1E8D, 56782 linebreak="al", 56783 shcode=0x58, 56784 specials={ "char", 0x58, 0x308 }, 56785 unicodeslot=0x1E8C, 56786 }, 56787 [0x1E8D]={ 56788 category="ll", 56789 description="LATIN SMALL LETTER X WITH DIAERESIS", 56790 direction="l", 56791 linebreak="al", 56792 shcode=0x78, 56793 specials={ "char", 0x78, 0x308 }, 56794 uccode=0x1E8C, 56795 unicodeslot=0x1E8D, 56796 }, 56797 [0x1E8E]={ 56798 category="lu", 56799 description="LATIN CAPITAL LETTER Y WITH DOT ABOVE", 56800 direction="l", 56801 lccode=0x1E8F, 56802 linebreak="al", 56803 shcode=0x59, 56804 specials={ "char", 0x59, 0x307 }, 56805 unicodeslot=0x1E8E, 56806 }, 56807 [0x1E8F]={ 56808 category="ll", 56809 description="LATIN SMALL LETTER Y WITH DOT ABOVE", 56810 direction="l", 56811 linebreak="al", 56812 shcode=0x79, 56813 specials={ "char", 0x79, 0x307 }, 56814 uccode=0x1E8E, 56815 unicodeslot=0x1E8F, 56816 }, 56817 [0x1E90]={ 56818 category="lu", 56819 description="LATIN CAPITAL LETTER Z WITH CIRCUMFLEX", 56820 direction="l", 56821 lccode=0x1E91, 56822 linebreak="al", 56823 shcode=0x5A, 56824 specials={ "char", 0x5A, 0x302 }, 56825 unicodeslot=0x1E90, 56826 }, 56827 [0x1E91]={ 56828 category="ll", 56829 description="LATIN SMALL LETTER Z WITH CIRCUMFLEX", 56830 direction="l", 56831 linebreak="al", 56832 shcode=0x7A, 56833 specials={ "char", 0x7A, 0x302 }, 56834 uccode=0x1E90, 56835 unicodeslot=0x1E91, 56836 }, 56837 [0x1E92]={ 56838 category="lu", 56839 description="LATIN CAPITAL LETTER Z WITH DOT BELOW", 56840 direction="l", 56841 lccode=0x1E93, 56842 linebreak="al", 56843 shcode=0x5A, 56844 specials={ "char", 0x5A, 0x323 }, 56845 unicodeslot=0x1E92, 56846 }, 56847 [0x1E93]={ 56848 category="ll", 56849 description="LATIN SMALL LETTER Z WITH DOT BELOW", 56850 direction="l", 56851 linebreak="al", 56852 shcode=0x7A, 56853 specials={ "char", 0x7A, 0x323 }, 56854 uccode=0x1E92, 56855 unicodeslot=0x1E93, 56856 }, 56857 [0x1E94]={ 56858 category="lu", 56859 description="LATIN CAPITAL LETTER Z WITH LINE BELOW", 56860 direction="l", 56861 lccode=0x1E95, 56862 linebreak="al", 56863 shcode=0x5A, 56864 specials={ "char", 0x5A, 0x331 }, 56865 unicodeslot=0x1E94, 56866 }, 56867 [0x1E95]={ 56868 category="ll", 56869 description="LATIN SMALL LETTER Z WITH LINE BELOW", 56870 direction="l", 56871 linebreak="al", 56872 shcode=0x7A, 56873 specials={ "char", 0x7A, 0x331 }, 56874 uccode=0x1E94, 56875 unicodeslot=0x1E95, 56876 }, 56877 [0x1E96]={ 56878 category="ll", 56879 description="LATIN SMALL LETTER H WITH LINE BELOW", 56880 direction="l", 56881 linebreak="al", 56882 shcode=0x68, 56883 specials={ "char", 0x68, 0x331 }, 56884 uccode={ 0x68, 0x331 }, 56885 unicodeslot=0x1E96, 56886 }, 56887 [0x1E97]={ 56888 category="ll", 56889 description="LATIN SMALL LETTER T WITH DIAERESIS", 56890 direction="l", 56891 linebreak="al", 56892 shcode=0x74, 56893 specials={ "char", 0x74, 0x308 }, 56894 uccode={ 0x74, 0x308 }, 56895 unicodeslot=0x1E97, 56896 }, 56897 [0x1E98]={ 56898 category="ll", 56899 description="LATIN SMALL LETTER W WITH RING ABOVE", 56900 direction="l", 56901 linebreak="al", 56902 shcode=0x77, 56903 specials={ "char", 0x77, 0x30A }, 56904 uccode={ 0x77, 0x30A }, 56905 unicodeslot=0x1E98, 56906 }, 56907 [0x1E99]={ 56908 category="ll", 56909 description="LATIN SMALL LETTER Y WITH RING ABOVE", 56910 direction="l", 56911 linebreak="al", 56912 shcode=0x79, 56913 specials={ "char", 0x79, 0x30A }, 56914 uccode={ 0x79, 0x30A }, 56915 unicodeslot=0x1E99, 56916 }, 56917 [0x1E9A]={ 56918 category="ll", 56919 description="LATIN SMALL LETTER A WITH RIGHT HALF RING", 56920 direction="l", 56921 linebreak="al", 56922 shcode=0x61, 56923 specials={ "compat", 0x61, 0x2BE }, 56924 uccode={ 0x61, 0x2BE }, 56925 unicodeslot=0x1E9A, 56926 }, 56927 [0x1E9B]={ 56928 category="ll", 56929 description="LATIN SMALL LETTER LONG S WITH DOT ABOVE", 56930 direction="l", 56931 linebreak="al", 56932 specials={ "char", 0x17F, 0x307 }, 56933 uccode=0x1E61, 56934 unicodeslot=0x1E9B, 56935 }, 56936 [0x1E9C]={ 56937 category="ll", 56938 description="LATIN SMALL LETTER LONG S WITH DIAGONAL STROKE", 56939 direction="l", 56940 linebreak="al", 56941 unicodeslot=0x1E9C, 56942 }, 56943 [0x1E9D]={ 56944 category="ll", 56945 description="LATIN SMALL LETTER LONG S WITH HIGH STROKE", 56946 direction="l", 56947 linebreak="al", 56948 unicodeslot=0x1E9D, 56949 }, 56950 [0x1E9E]={ 56951 category="lu", 56952 description="LATIN CAPITAL LETTER SHARP S", 56953 direction="l", 56954 lccode=0xDF, 56955 linebreak="al", 56956 shcode={ 0x53, 0x53 }, 56957 unicodeslot=0x1E9E, 56958 }, 56959 [0x1E9F]={ 56960 category="ll", 56961 description="LATIN SMALL LETTER DELTA", 56962 direction="l", 56963 linebreak="al", 56964 unicodeslot=0x1E9F, 56965 }, 56966 [0x1EA0]={ 56967 category="lu", 56968 contextname="Adotbelow", 56969 description="LATIN CAPITAL LETTER A WITH DOT BELOW", 56970 direction="l", 56971 lccode=0x1EA1, 56972 linebreak="al", 56973 shcode=0x41, 56974 specials={ "char", 0x41, 0x323 }, 56975 unicodeslot=0x1EA0, 56976 }, 56977 [0x1EA1]={ 56978 category="ll", 56979 contextname="adotbelow", 56980 description="LATIN SMALL LETTER A WITH DOT BELOW", 56981 direction="l", 56982 linebreak="al", 56983 shcode=0x61, 56984 specials={ "char", 0x61, 0x323 }, 56985 uccode=0x1EA0, 56986 unicodeslot=0x1EA1, 56987 }, 56988 [0x1EA2]={ 56989 category="lu", 56990 contextname="Ahook", 56991 description="LATIN CAPITAL LETTER A WITH HOOK ABOVE", 56992 direction="l", 56993 lccode=0x1EA3, 56994 linebreak="al", 56995 shcode=0x41, 56996 specials={ "char", 0x41, 0x309 }, 56997 unicodeslot=0x1EA2, 56998 }, 56999 [0x1EA3]={ 57000 category="ll", 57001 contextname="ahook", 57002 description="LATIN SMALL LETTER A WITH HOOK ABOVE", 57003 direction="l", 57004 linebreak="al", 57005 shcode=0x61, 57006 specials={ "char", 0x61, 0x309 }, 57007 uccode=0x1EA2, 57008 unicodeslot=0x1EA3, 57009 }, 57010 [0x1EA4]={ 57011 category="lu", 57012 contextname="Acircumflexacute", 57013 description="LATIN CAPITAL LETTER A WITH CIRCUMFLEX AND ACUTE", 57014 direction="l", 57015 lccode=0x1EA5, 57016 linebreak="al", 57017 shcode=0x41, 57018 specials={ "char", 0xC2, 0x301 }, 57019 unicodeslot=0x1EA4, 57020 }, 57021 [0x1EA5]={ 57022 category="ll", 57023 contextname="acircumflexacute", 57024 description="LATIN SMALL LETTER A WITH CIRCUMFLEX AND ACUTE", 57025 direction="l", 57026 linebreak="al", 57027 shcode=0x61, 57028 specials={ "char", 0xE2, 0x301 }, 57029 uccode=0x1EA4, 57030 unicodeslot=0x1EA5, 57031 }, 57032 [0x1EA6]={ 57033 category="lu", 57034 contextname="Acircumflexgrave", 57035 description="LATIN CAPITAL LETTER A WITH CIRCUMFLEX AND GRAVE", 57036 direction="l", 57037 lccode=0x1EA7, 57038 linebreak="al", 57039 shcode=0x41, 57040 specials={ "char", 0xC2, 0x300 }, 57041 unicodeslot=0x1EA6, 57042 }, 57043 [0x1EA7]={ 57044 category="ll", 57045 contextname="acircumflexgrave", 57046 description="LATIN SMALL LETTER A WITH CIRCUMFLEX AND GRAVE", 57047 direction="l", 57048 linebreak="al", 57049 shcode=0x61, 57050 specials={ "char", 0xE2, 0x300 }, 57051 uccode=0x1EA6, 57052 unicodeslot=0x1EA7, 57053 }, 57054 [0x1EA8]={ 57055 category="lu", 57056 contextname="Acircumflexhook", 57057 description="LATIN CAPITAL LETTER A WITH CIRCUMFLEX AND HOOK ABOVE", 57058 direction="l", 57059 lccode=0x1EA9, 57060 linebreak="al", 57061 shcode=0x41, 57062 specials={ "char", 0xC2, 0x309 }, 57063 unicodeslot=0x1EA8, 57064 }, 57065 [0x1EA9]={ 57066 category="ll", 57067 contextname="acircumflexhook", 57068 description="LATIN SMALL LETTER A WITH CIRCUMFLEX AND HOOK ABOVE", 57069 direction="l", 57070 linebreak="al", 57071 shcode=0x61, 57072 specials={ "char", 0xE2, 0x309 }, 57073 uccode=0x1EA8, 57074 unicodeslot=0x1EA9, 57075 }, 57076 [0x1EAA]={ 57077 category="lu", 57078 contextname="Acircumflextilde", 57079 description="LATIN CAPITAL LETTER A WITH CIRCUMFLEX AND TILDE", 57080 direction="l", 57081 lccode=0x1EAB, 57082 linebreak="al", 57083 shcode=0x41, 57084 specials={ "char", 0xC2, 0x303 }, 57085 unicodeslot=0x1EAA, 57086 }, 57087 [0x1EAB]={ 57088 category="ll", 57089 contextname="acircumflextilde", 57090 description="LATIN SMALL LETTER A WITH CIRCUMFLEX AND TILDE", 57091 direction="l", 57092 linebreak="al", 57093 shcode=0x61, 57094 specials={ "char", 0xE2, 0x303 }, 57095 uccode=0x1EAA, 57096 unicodeslot=0x1EAB, 57097 }, 57098 [0x1EAC]={ 57099 category="lu", 57100 contextname="Acircumflexdotbelow", 57101 description="LATIN CAPITAL LETTER A WITH CIRCUMFLEX AND DOT BELOW", 57102 direction="l", 57103 lccode=0x1EAD, 57104 linebreak="al", 57105 shcode=0x41, 57106 specials={ "char", 0x1EA0, 0x302 }, 57107 unicodeslot=0x1EAC, 57108 }, 57109 [0x1EAD]={ 57110 category="ll", 57111 contextname="acircumflexdotbelow", 57112 description="LATIN SMALL LETTER A WITH CIRCUMFLEX AND DOT BELOW", 57113 direction="l", 57114 linebreak="al", 57115 shcode=0x61, 57116 specials={ "char", 0x1EA1, 0x302 }, 57117 uccode=0x1EAC, 57118 unicodeslot=0x1EAD, 57119 }, 57120 [0x1EAE]={ 57121 category="lu", 57122 contextname="Abreveacute", 57123 description="LATIN CAPITAL LETTER A WITH BREVE AND ACUTE", 57124 direction="l", 57125 lccode=0x1EAF, 57126 linebreak="al", 57127 shcode=0x41, 57128 specials={ "char", 0x102, 0x301 }, 57129 unicodeslot=0x1EAE, 57130 }, 57131 [0x1EAF]={ 57132 category="ll", 57133 contextname="abreveacute", 57134 description="LATIN SMALL LETTER A WITH BREVE AND ACUTE", 57135 direction="l", 57136 linebreak="al", 57137 shcode=0x61, 57138 specials={ "char", 0x103, 0x301 }, 57139 uccode=0x1EAE, 57140 unicodeslot=0x1EAF, 57141 }, 57142 [0x1EB0]={ 57143 category="lu", 57144 contextname="Abrevegrave", 57145 description="LATIN CAPITAL LETTER A WITH BREVE AND GRAVE", 57146 direction="l", 57147 lccode=0x1EB1, 57148 linebreak="al", 57149 shcode=0x41, 57150 specials={ "char", 0x102, 0x300 }, 57151 unicodeslot=0x1EB0, 57152 }, 57153 [0x1EB1]={ 57154 category="ll", 57155 contextname="abrevegrave", 57156 description="LATIN SMALL LETTER A WITH BREVE AND GRAVE", 57157 direction="l", 57158 linebreak="al", 57159 shcode=0x61, 57160 specials={ "char", 0x103, 0x300 }, 57161 uccode=0x1EB0, 57162 unicodeslot=0x1EB1, 57163 }, 57164 [0x1EB2]={ 57165 category="lu", 57166 contextname="Abrevehook", 57167 description="LATIN CAPITAL LETTER A WITH BREVE AND HOOK ABOVE", 57168 direction="l", 57169 lccode=0x1EB3, 57170 linebreak="al", 57171 shcode=0x41, 57172 specials={ "char", 0x102, 0x309 }, 57173 unicodeslot=0x1EB2, 57174 }, 57175 [0x1EB3]={ 57176 category="ll", 57177 contextname="abrevehook", 57178 description="LATIN SMALL LETTER A WITH BREVE AND HOOK ABOVE", 57179 direction="l", 57180 linebreak="al", 57181 shcode=0x61, 57182 specials={ "char", 0x103, 0x309 }, 57183 uccode=0x1EB2, 57184 unicodeslot=0x1EB3, 57185 }, 57186 [0x1EB4]={ 57187 category="lu", 57188 contextname="Abrevetilde", 57189 description="LATIN CAPITAL LETTER A WITH BREVE AND TILDE", 57190 direction="l", 57191 lccode=0x1EB5, 57192 linebreak="al", 57193 shcode=0x41, 57194 specials={ "char", 0x102, 0x303 }, 57195 unicodeslot=0x1EB4, 57196 }, 57197 [0x1EB5]={ 57198 category="ll", 57199 contextname="abrevetilde", 57200 description="LATIN SMALL LETTER A WITH BREVE AND TILDE", 57201 direction="l", 57202 linebreak="al", 57203 shcode=0x61, 57204 specials={ "char", 0x103, 0x303 }, 57205 uccode=0x1EB4, 57206 unicodeslot=0x1EB5, 57207 }, 57208 [0x1EB6]={ 57209 category="lu", 57210 contextname="Abrevedotbelow", 57211 description="LATIN CAPITAL LETTER A WITH BREVE AND DOT BELOW", 57212 direction="l", 57213 lccode=0x1EB7, 57214 linebreak="al", 57215 shcode=0x41, 57216 specials={ "char", 0x1EA0, 0x306 }, 57217 unicodeslot=0x1EB6, 57218 }, 57219 [0x1EB7]={ 57220 category="ll", 57221 contextname="abrevedotbelow", 57222 description="LATIN SMALL LETTER A WITH BREVE AND DOT BELOW", 57223 direction="l", 57224 linebreak="al", 57225 shcode=0x61, 57226 specials={ "char", 0x1EA1, 0x306 }, 57227 uccode=0x1EB6, 57228 unicodeslot=0x1EB7, 57229 }, 57230 [0x1EB8]={ 57231 category="lu", 57232 contextname="Edotbelow", 57233 description="LATIN CAPITAL LETTER E WITH DOT BELOW", 57234 direction="l", 57235 lccode=0x1EB9, 57236 linebreak="al", 57237 shcode=0x45, 57238 specials={ "char", 0x45, 0x323 }, 57239 unicodeslot=0x1EB8, 57240 }, 57241 [0x1EB9]={ 57242 category="ll", 57243 contextname="edotbelow", 57244 description="LATIN SMALL LETTER E WITH DOT BELOW", 57245 direction="l", 57246 linebreak="al", 57247 shcode=0x65, 57248 specials={ "char", 0x65, 0x323 }, 57249 uccode=0x1EB8, 57250 unicodeslot=0x1EB9, 57251 }, 57252 [0x1EBA]={ 57253 category="lu", 57254 contextname="Ehook", 57255 description="LATIN CAPITAL LETTER E WITH HOOK ABOVE", 57256 direction="l", 57257 lccode=0x1EBB, 57258 linebreak="al", 57259 shcode=0x45, 57260 specials={ "char", 0x45, 0x309 }, 57261 unicodeslot=0x1EBA, 57262 }, 57263 [0x1EBB]={ 57264 category="ll", 57265 contextname="ehook", 57266 description="LATIN SMALL LETTER E WITH HOOK ABOVE", 57267 direction="l", 57268 linebreak="al", 57269 shcode=0x65, 57270 specials={ "char", 0x65, 0x309 }, 57271 uccode=0x1EBA, 57272 unicodeslot=0x1EBB, 57273 }, 57274 [0x1EBC]={ 57275 category="lu", 57276 contextname="Etilde", 57277 description="LATIN CAPITAL LETTER E WITH TILDE", 57278 direction="l", 57279 lccode=0x1EBD, 57280 linebreak="al", 57281 shcode=0x45, 57282 specials={ "char", 0x45, 0x303 }, 57283 unicodeslot=0x1EBC, 57284 }, 57285 [0x1EBD]={ 57286 category="ll", 57287 contextname="etilde", 57288 description="LATIN SMALL LETTER E WITH TILDE", 57289 direction="l", 57290 linebreak="al", 57291 shcode=0x65, 57292 specials={ "char", 0x65, 0x303 }, 57293 uccode=0x1EBC, 57294 unicodeslot=0x1EBD, 57295 }, 57296 [0x1EBE]={ 57297 category="lu", 57298 contextname="Ecircumflexacute", 57299 description="LATIN CAPITAL LETTER E WITH CIRCUMFLEX AND ACUTE", 57300 direction="l", 57301 lccode=0x1EBF, 57302 linebreak="al", 57303 shcode=0x45, 57304 specials={ "char", 0xCA, 0x301 }, 57305 unicodeslot=0x1EBE, 57306 }, 57307 [0x1EBF]={ 57308 category="ll", 57309 contextname="ecircumflexacute", 57310 description="LATIN SMALL LETTER E WITH CIRCUMFLEX AND ACUTE", 57311 direction="l", 57312 linebreak="al", 57313 shcode=0x65, 57314 specials={ "char", 0xEA, 0x301 }, 57315 uccode=0x1EBE, 57316 unicodeslot=0x1EBF, 57317 }, 57318 [0x1EC0]={ 57319 category="lu", 57320 contextname="Ecircumflexgrave", 57321 description="LATIN CAPITAL LETTER E WITH CIRCUMFLEX AND GRAVE", 57322 direction="l", 57323 lccode=0x1EC1, 57324 linebreak="al", 57325 shcode=0x45, 57326 specials={ "char", 0xCA, 0x300 }, 57327 unicodeslot=0x1EC0, 57328 }, 57329 [0x1EC1]={ 57330 category="ll", 57331 contextname="ecircumflexgrave", 57332 description="LATIN SMALL LETTER E WITH CIRCUMFLEX AND GRAVE", 57333 direction="l", 57334 linebreak="al", 57335 shcode=0x65, 57336 specials={ "char", 0xEA, 0x300 }, 57337 uccode=0x1EC0, 57338 unicodeslot=0x1EC1, 57339 }, 57340 [0x1EC2]={ 57341 category="lu", 57342 contextname="Ecircumflexhook", 57343 description="LATIN CAPITAL LETTER E WITH CIRCUMFLEX AND HOOK ABOVE", 57344 direction="l", 57345 lccode=0x1EC3, 57346 linebreak="al", 57347 shcode=0x45, 57348 specials={ "char", 0xCA, 0x309 }, 57349 unicodeslot=0x1EC2, 57350 }, 57351 [0x1EC3]={ 57352 category="ll", 57353 contextname="ecircumflexhook", 57354 description="LATIN SMALL LETTER E WITH CIRCUMFLEX AND HOOK ABOVE", 57355 direction="l", 57356 linebreak="al", 57357 shcode=0x65, 57358 specials={ "char", 0xEA, 0x309 }, 57359 uccode=0x1EC2, 57360 unicodeslot=0x1EC3, 57361 }, 57362 [0x1EC4]={ 57363 category="lu", 57364 contextname="Ecircumflextilde", 57365 description="LATIN CAPITAL LETTER E WITH CIRCUMFLEX AND TILDE", 57366 direction="l", 57367 lccode=0x1EC5, 57368 linebreak="al", 57369 shcode=0x45, 57370 specials={ "char", 0xCA, 0x303 }, 57371 unicodeslot=0x1EC4, 57372 }, 57373 [0x1EC5]={ 57374 category="ll", 57375 contextname="ecircumflextilde", 57376 description="LATIN SMALL LETTER E WITH CIRCUMFLEX AND TILDE", 57377 direction="l", 57378 linebreak="al", 57379 shcode=0x65, 57380 specials={ "char", 0xEA, 0x303 }, 57381 uccode=0x1EC4, 57382 unicodeslot=0x1EC5, 57383 }, 57384 [0x1EC6]={ 57385 category="lu", 57386 contextname="Ecircumflexdotbelow", 57387 description="LATIN CAPITAL LETTER E WITH CIRCUMFLEX AND DOT BELOW", 57388 direction="l", 57389 lccode=0x1EC7, 57390 linebreak="al", 57391 shcode=0x45, 57392 specials={ "char", 0x1EB8, 0x302 }, 57393 unicodeslot=0x1EC6, 57394 }, 57395 [0x1EC7]={ 57396 category="ll", 57397 contextname="ecircumflexdotbelow", 57398 description="LATIN SMALL LETTER E WITH CIRCUMFLEX AND DOT BELOW", 57399 direction="l", 57400 linebreak="al", 57401 shcode=0x65, 57402 specials={ "char", 0x1EB9, 0x302 }, 57403 uccode=0x1EC6, 57404 unicodeslot=0x1EC7, 57405 }, 57406 [0x1EC8]={ 57407 category="lu", 57408 contextname="Ihook", 57409 description="LATIN CAPITAL LETTER I WITH HOOK ABOVE", 57410 direction="l", 57411 lccode=0x1EC9, 57412 linebreak="al", 57413 shcode=0x49, 57414 specials={ "char", 0x49, 0x309 }, 57415 unicodeslot=0x1EC8, 57416 }, 57417 [0x1EC9]={ 57418 category="ll", 57419 contextname="ihook", 57420 description="LATIN SMALL LETTER I WITH HOOK ABOVE", 57421 direction="l", 57422 linebreak="al", 57423 shcode=0x69, 57424 specials={ "char", 0x69, 0x309 }, 57425 uccode=0x1EC8, 57426 unicodeslot=0x1EC9, 57427 }, 57428 [0x1ECA]={ 57429 category="lu", 57430 contextname="Idotbelow", 57431 description="LATIN CAPITAL LETTER I WITH DOT BELOW", 57432 direction="l", 57433 lccode=0x1ECB, 57434 linebreak="al", 57435 shcode=0x49, 57436 specials={ "char", 0x49, 0x323 }, 57437 unicodeslot=0x1ECA, 57438 }, 57439 [0x1ECB]={ 57440 category="ll", 57441 contextname="idotbelow", 57442 description="LATIN SMALL LETTER I WITH DOT BELOW", 57443 direction="l", 57444 linebreak="al", 57445 shcode=0x69, 57446 specials={ "char", 0x69, 0x323 }, 57447 uccode=0x1ECA, 57448 unicodeslot=0x1ECB, 57449 }, 57450 [0x1ECC]={ 57451 category="lu", 57452 contextname="Odotbelow", 57453 description="LATIN CAPITAL LETTER O WITH DOT BELOW", 57454 direction="l", 57455 lccode=0x1ECD, 57456 linebreak="al", 57457 shcode=0x4F, 57458 specials={ "char", 0x4F, 0x323 }, 57459 unicodeslot=0x1ECC, 57460 }, 57461 [0x1ECD]={ 57462 category="ll", 57463 contextname="odotbelow", 57464 description="LATIN SMALL LETTER O WITH DOT BELOW", 57465 direction="l", 57466 linebreak="al", 57467 shcode=0x6F, 57468 specials={ "char", 0x6F, 0x323 }, 57469 uccode=0x1ECC, 57470 unicodeslot=0x1ECD, 57471 }, 57472 [0x1ECE]={ 57473 category="lu", 57474 contextname="Ohook", 57475 description="LATIN CAPITAL LETTER O WITH HOOK ABOVE", 57476 direction="l", 57477 lccode=0x1ECF, 57478 linebreak="al", 57479 shcode=0x4F, 57480 specials={ "char", 0x4F, 0x309 }, 57481 unicodeslot=0x1ECE, 57482 }, 57483 [0x1ECF]={ 57484 category="ll", 57485 contextname="ohook", 57486 description="LATIN SMALL LETTER O WITH HOOK ABOVE", 57487 direction="l", 57488 linebreak="al", 57489 shcode=0x6F, 57490 specials={ "char", 0x6F, 0x309 }, 57491 uccode=0x1ECE, 57492 unicodeslot=0x1ECF, 57493 }, 57494 [0x1ED0]={ 57495 category="lu", 57496 contextname="Ocircumflexacute", 57497 description="LATIN CAPITAL LETTER O WITH CIRCUMFLEX AND ACUTE", 57498 direction="l", 57499 lccode=0x1ED1, 57500 linebreak="al", 57501 shcode=0x4F, 57502 specials={ "char", 0xD4, 0x301 }, 57503 unicodeslot=0x1ED0, 57504 }, 57505 [0x1ED1]={ 57506 category="ll", 57507 contextname="ocircumflexacute", 57508 description="LATIN SMALL LETTER O WITH CIRCUMFLEX AND ACUTE", 57509 direction="l", 57510 linebreak="al", 57511 shcode=0x6F, 57512 specials={ "char", 0xF4, 0x301 }, 57513 uccode=0x1ED0, 57514 unicodeslot=0x1ED1, 57515 }, 57516 [0x1ED2]={ 57517 category="lu", 57518 contextname="Ocircumflexgrave", 57519 description="LATIN CAPITAL LETTER O WITH CIRCUMFLEX AND GRAVE", 57520 direction="l", 57521 lccode=0x1ED3, 57522 linebreak="al", 57523 shcode=0x4F, 57524 specials={ "char", 0xD4, 0x300 }, 57525 unicodeslot=0x1ED2, 57526 }, 57527 [0x1ED3]={ 57528 category="ll", 57529 contextname="ocircumflexgrave", 57530 description="LATIN SMALL LETTER O WITH CIRCUMFLEX AND GRAVE", 57531 direction="l", 57532 linebreak="al", 57533 shcode=0x6F, 57534 specials={ "char", 0xF4, 0x300 }, 57535 uccode=0x1ED2, 57536 unicodeslot=0x1ED3, 57537 }, 57538 [0x1ED4]={ 57539 category="lu", 57540 contextname="Ocircumflexhook", 57541 description="LATIN CAPITAL LETTER O WITH CIRCUMFLEX AND HOOK ABOVE", 57542 direction="l", 57543 lccode=0x1ED5, 57544 linebreak="al", 57545 shcode=0x4F, 57546 specials={ "char", 0xD4, 0x309 }, 57547 unicodeslot=0x1ED4, 57548 }, 57549 [0x1ED5]={ 57550 category="ll", 57551 contextname="ocircumflexhook", 57552 description="LATIN SMALL LETTER O WITH CIRCUMFLEX AND HOOK ABOVE", 57553 direction="l", 57554 linebreak="al", 57555 shcode=0x6F, 57556 specials={ "char", 0xF4, 0x309 }, 57557 uccode=0x1ED4, 57558 unicodeslot=0x1ED5, 57559 }, 57560 [0x1ED6]={ 57561 category="lu", 57562 contextname="Ocircumflextilde", 57563 description="LATIN CAPITAL LETTER O WITH CIRCUMFLEX AND TILDE", 57564 direction="l", 57565 lccode=0x1ED7, 57566 linebreak="al", 57567 shcode=0x4F, 57568 specials={ "char", 0xD4, 0x303 }, 57569 unicodeslot=0x1ED6, 57570 }, 57571 [0x1ED7]={ 57572 category="ll", 57573 contextname="ocircumflextilde", 57574 description="LATIN SMALL LETTER O WITH CIRCUMFLEX AND TILDE", 57575 direction="l", 57576 linebreak="al", 57577 shcode=0x6F, 57578 specials={ "char", 0xF4, 0x303 }, 57579 uccode=0x1ED6, 57580 unicodeslot=0x1ED7, 57581 }, 57582 [0x1ED8]={ 57583 category="lu", 57584 contextname="Ocircumflexdotbelow", 57585 description="LATIN CAPITAL LETTER O WITH CIRCUMFLEX AND DOT BELOW", 57586 direction="l", 57587 lccode=0x1ED9, 57588 linebreak="al", 57589 shcode=0x4F, 57590 specials={ "char", 0x1ECC, 0x302 }, 57591 unicodeslot=0x1ED8, 57592 }, 57593 [0x1ED9]={ 57594 category="ll", 57595 contextname="ocircumflexdotbelow", 57596 description="LATIN SMALL LETTER O WITH CIRCUMFLEX AND DOT BELOW", 57597 direction="l", 57598 linebreak="al", 57599 shcode=0x6F, 57600 specials={ "char", 0x1ECD, 0x302 }, 57601 uccode=0x1ED8, 57602 unicodeslot=0x1ED9, 57603 }, 57604 [0x1EDA]={ 57605 category="lu", 57606 contextname="Ohornacute", 57607 description="LATIN CAPITAL LETTER O WITH HORN AND ACUTE", 57608 direction="l", 57609 lccode=0x1EDB, 57610 linebreak="al", 57611 shcode=0x4F, 57612 specials={ "char", 0x1A0, 0x301 }, 57613 unicodeslot=0x1EDA, 57614 }, 57615 [0x1EDB]={ 57616 category="ll", 57617 contextname="ohornacute", 57618 description="LATIN SMALL LETTER O WITH HORN AND ACUTE", 57619 direction="l", 57620 linebreak="al", 57621 shcode=0x6F, 57622 specials={ "char", 0x1A1, 0x301 }, 57623 uccode=0x1EDA, 57624 unicodeslot=0x1EDB, 57625 }, 57626 [0x1EDC]={ 57627 category="lu", 57628 contextname="Ohorngrave", 57629 description="LATIN CAPITAL LETTER O WITH HORN AND GRAVE", 57630 direction="l", 57631 lccode=0x1EDD, 57632 linebreak="al", 57633 shcode=0x4F, 57634 specials={ "char", 0x1A0, 0x300 }, 57635 unicodeslot=0x1EDC, 57636 }, 57637 [0x1EDD]={ 57638 category="ll", 57639 contextname="ohorngrave", 57640 description="LATIN SMALL LETTER O WITH HORN AND GRAVE", 57641 direction="l", 57642 linebreak="al", 57643 shcode=0x6F, 57644 specials={ "char", 0x1A1, 0x300 }, 57645 uccode=0x1EDC, 57646 unicodeslot=0x1EDD, 57647 }, 57648 [0x1EDE]={ 57649 category="lu", 57650 contextname="Ohornhook", 57651 description="LATIN CAPITAL LETTER O WITH HORN AND HOOK ABOVE", 57652 direction="l", 57653 lccode=0x1EDF, 57654 linebreak="al", 57655 shcode=0x4F, 57656 specials={ "char", 0x1A0, 0x309 }, 57657 unicodeslot=0x1EDE, 57658 }, 57659 [0x1EDF]={ 57660 category="ll", 57661 contextname="ohornhook", 57662 description="LATIN SMALL LETTER O WITH HORN AND HOOK ABOVE", 57663 direction="l", 57664 linebreak="al", 57665 shcode=0x6F, 57666 specials={ "char", 0x1A1, 0x309 }, 57667 uccode=0x1EDE, 57668 unicodeslot=0x1EDF, 57669 }, 57670 [0x1EE0]={ 57671 category="lu", 57672 contextname="Ohorntilde", 57673 description="LATIN CAPITAL LETTER O WITH HORN AND TILDE", 57674 direction="l", 57675 lccode=0x1EE1, 57676 linebreak="al", 57677 shcode=0x4F, 57678 specials={ "char", 0x1A0, 0x303 }, 57679 unicodeslot=0x1EE0, 57680 }, 57681 [0x1EE1]={ 57682 category="ll", 57683 contextname="ohorntilde", 57684 description="LATIN SMALL LETTER O WITH HORN AND TILDE", 57685 direction="l", 57686 linebreak="al", 57687 shcode=0x6F, 57688 specials={ "char", 0x1A1, 0x303 }, 57689 uccode=0x1EE0, 57690 unicodeslot=0x1EE1, 57691 }, 57692 [0x1EE2]={ 57693 category="lu", 57694 contextname="Ohorndotbelow", 57695 description="LATIN CAPITAL LETTER O WITH HORN AND DOT BELOW", 57696 direction="l", 57697 lccode=0x1EE3, 57698 linebreak="al", 57699 shcode=0x4F, 57700 specials={ "char", 0x1A0, 0x323 }, 57701 unicodeslot=0x1EE2, 57702 }, 57703 [0x1EE3]={ 57704 category="ll", 57705 contextname="ohorndotbelow", 57706 description="LATIN SMALL LETTER O WITH HORN AND DOT BELOW", 57707 direction="l", 57708 linebreak="al", 57709 shcode=0x6F, 57710 specials={ "char", 0x1A1, 0x323 }, 57711 uccode=0x1EE2, 57712 unicodeslot=0x1EE3, 57713 }, 57714 [0x1EE4]={ 57715 category="lu", 57716 contextname="Udotbelow", 57717 description="LATIN CAPITAL LETTER U WITH DOT BELOW", 57718 direction="l", 57719 lccode=0x1EE5, 57720 linebreak="al", 57721 shcode=0x55, 57722 specials={ "char", 0x55, 0x323 }, 57723 unicodeslot=0x1EE4, 57724 }, 57725 [0x1EE5]={ 57726 category="ll", 57727 contextname="udotbelow", 57728 description="LATIN SMALL LETTER U WITH DOT BELOW", 57729 direction="l", 57730 linebreak="al", 57731 shcode=0x75, 57732 specials={ "char", 0x75, 0x323 }, 57733 uccode=0x1EE4, 57734 unicodeslot=0x1EE5, 57735 }, 57736 [0x1EE6]={ 57737 category="lu", 57738 contextname="Uhook", 57739 description="LATIN CAPITAL LETTER U WITH HOOK ABOVE", 57740 direction="l", 57741 lccode=0x1EE7, 57742 linebreak="al", 57743 shcode=0x55, 57744 specials={ "char", 0x55, 0x309 }, 57745 unicodeslot=0x1EE6, 57746 }, 57747 [0x1EE7]={ 57748 category="ll", 57749 contextname="uhook", 57750 description="LATIN SMALL LETTER U WITH HOOK ABOVE", 57751 direction="l", 57752 linebreak="al", 57753 shcode=0x75, 57754 specials={ "char", 0x75, 0x309 }, 57755 uccode=0x1EE6, 57756 unicodeslot=0x1EE7, 57757 }, 57758 [0x1EE8]={ 57759 category="lu", 57760 contextname="Uhornacute", 57761 description="LATIN CAPITAL LETTER U WITH HORN AND ACUTE", 57762 direction="l", 57763 lccode=0x1EE9, 57764 linebreak="al", 57765 shcode=0x55, 57766 specials={ "char", 0x1AF, 0x301 }, 57767 unicodeslot=0x1EE8, 57768 }, 57769 [0x1EE9]={ 57770 category="ll", 57771 contextname="uhornacute", 57772 description="LATIN SMALL LETTER U WITH HORN AND ACUTE", 57773 direction="l", 57774 linebreak="al", 57775 shcode=0x75, 57776 specials={ "char", 0x1B0, 0x301 }, 57777 uccode=0x1EE8, 57778 unicodeslot=0x1EE9, 57779 }, 57780 [0x1EEA]={ 57781 category="lu", 57782 contextname="Uhorngrave", 57783 description="LATIN CAPITAL LETTER U WITH HORN AND GRAVE", 57784 direction="l", 57785 lccode=0x1EEB, 57786 linebreak="al", 57787 shcode=0x55, 57788 specials={ "char", 0x1AF, 0x300 }, 57789 unicodeslot=0x1EEA, 57790 }, 57791 [0x1EEB]={ 57792 category="ll", 57793 contextname="uhorngrave", 57794 description="LATIN SMALL LETTER U WITH HORN AND GRAVE", 57795 direction="l", 57796 linebreak="al", 57797 shcode=0x75, 57798 specials={ "char", 0x1B0, 0x300 }, 57799 uccode=0x1EEA, 57800 unicodeslot=0x1EEB, 57801 }, 57802 [0x1EEC]={ 57803 category="lu", 57804 contextname="Uhornhook", 57805 description="LATIN CAPITAL LETTER U WITH HORN AND HOOK ABOVE", 57806 direction="l", 57807 lccode=0x1EED, 57808 linebreak="al", 57809 shcode=0x55, 57810 specials={ "char", 0x1AF, 0x309 }, 57811 unicodeslot=0x1EEC, 57812 }, 57813 [0x1EED]={ 57814 category="ll", 57815 contextname="uhornhook", 57816 description="LATIN SMALL LETTER U WITH HORN AND HOOK ABOVE", 57817 direction="l", 57818 linebreak="al", 57819 shcode=0x75, 57820 specials={ "char", 0x1B0, 0x309 }, 57821 uccode=0x1EEC, 57822 unicodeslot=0x1EED, 57823 }, 57824 [0x1EEE]={ 57825 category="lu", 57826 contextname="Uhorntilde", 57827 description="LATIN CAPITAL LETTER U WITH HORN AND TILDE", 57828 direction="l", 57829 lccode=0x1EEF, 57830 linebreak="al", 57831 shcode=0x55, 57832 specials={ "char", 0x1AF, 0x303 }, 57833 unicodeslot=0x1EEE, 57834 }, 57835 [0x1EEF]={ 57836 category="ll", 57837 contextname="uhorntilde", 57838 description="LATIN SMALL LETTER U WITH HORN AND TILDE", 57839 direction="l", 57840 linebreak="al", 57841 shcode=0x75, 57842 specials={ "char", 0x1B0, 0x303 }, 57843 uccode=0x1EEE, 57844 unicodeslot=0x1EEF, 57845 }, 57846 [0x1EF0]={ 57847 category="lu", 57848 contextname="Uhorndotbelow", 57849 description="LATIN CAPITAL LETTER U WITH HORN AND DOT BELOW", 57850 direction="l", 57851 lccode=0x1EF1, 57852 linebreak="al", 57853 shcode=0x55, 57854 specials={ "char", 0x1AF, 0x323 }, 57855 unicodeslot=0x1EF0, 57856 }, 57857 [0x1EF1]={ 57858 category="ll", 57859 contextname="uhorndotbelow", 57860 description="LATIN SMALL LETTER U WITH HORN AND DOT BELOW", 57861 direction="l", 57862 linebreak="al", 57863 shcode=0x75, 57864 specials={ "char", 0x1B0, 0x323 }, 57865 uccode=0x1EF0, 57866 unicodeslot=0x1EF1, 57867 }, 57868 [0x1EF2]={ 57869 category="lu", 57870 contextname="Ygrave", 57871 description="LATIN CAPITAL LETTER Y WITH GRAVE", 57872 direction="l", 57873 lccode=0x1EF3, 57874 linebreak="al", 57875 shcode=0x59, 57876 specials={ "char", 0x59, 0x300 }, 57877 unicodeslot=0x1EF2, 57878 }, 57879 [0x1EF3]={ 57880 category="ll", 57881 contextname="ygrave", 57882 description="LATIN SMALL LETTER Y WITH GRAVE", 57883 direction="l", 57884 linebreak="al", 57885 shcode=0x79, 57886 specials={ "char", 0x79, 0x300 }, 57887 uccode=0x1EF2, 57888 unicodeslot=0x1EF3, 57889 }, 57890 [0x1EF4]={ 57891 category="lu", 57892 contextname="Ydotbelow", 57893 description="LATIN CAPITAL LETTER Y WITH DOT BELOW", 57894 direction="l", 57895 lccode=0x1EF5, 57896 linebreak="al", 57897 shcode=0x59, 57898 specials={ "char", 0x59, 0x323 }, 57899 unicodeslot=0x1EF4, 57900 }, 57901 [0x1EF5]={ 57902 category="ll", 57903 contextname="ydotbelow", 57904 description="LATIN SMALL LETTER Y WITH DOT BELOW", 57905 direction="l", 57906 linebreak="al", 57907 shcode=0x79, 57908 specials={ "char", 0x79, 0x323 }, 57909 uccode=0x1EF4, 57910 unicodeslot=0x1EF5, 57911 }, 57912 [0x1EF6]={ 57913 category="lu", 57914 description="LATIN CAPITAL LETTER Y WITH HOOK ABOVE", 57915 direction="l", 57916 lccode=0x1EF7, 57917 linebreak="al", 57918 shcode=0x59, 57919 specials={ "char", 0x59, 0x309 }, 57920 unicodeslot=0x1EF6, 57921 }, 57922 [0x1EF7]={ 57923 category="ll", 57924 description="LATIN SMALL LETTER Y WITH HOOK ABOVE", 57925 direction="l", 57926 linebreak="al", 57927 shcode=0x79, 57928 specials={ "char", 0x79, 0x309 }, 57929 uccode=0x1EF6, 57930 unicodeslot=0x1EF7, 57931 }, 57932 [0x1EF8]={ 57933 category="lu", 57934 contextname="Ytilde", 57935 description="LATIN CAPITAL LETTER Y WITH TILDE", 57936 direction="l", 57937 lccode=0x1EF9, 57938 linebreak="al", 57939 shcode=0x59, 57940 specials={ "char", 0x59, 0x303 }, 57941 unicodeslot=0x1EF8, 57942 }, 57943 [0x1EF9]={ 57944 category="ll", 57945 contextname="ytilde", 57946 description="LATIN SMALL LETTER Y WITH TILDE", 57947 direction="l", 57948 linebreak="al", 57949 shcode=0x79, 57950 specials={ "char", 0x79, 0x303 }, 57951 uccode=0x1EF8, 57952 unicodeslot=0x1EF9, 57953 }, 57954 [0x1EFA]={ 57955 category="lu", 57956 description="LATIN CAPITAL LETTER MIDDLE-WELSH LL", 57957 direction="l", 57958 lccode=0x1EFB, 57959 linebreak="al", 57960 unicodeslot=0x1EFA, 57961 }, 57962 [0x1EFB]={ 57963 category="ll", 57964 description="LATIN SMALL LETTER MIDDLE-WELSH LL", 57965 direction="l", 57966 linebreak="al", 57967 unicodeslot=0x1EFB, 57968 }, 57969 [0x1EFC]={ 57970 category="lu", 57971 description="LATIN CAPITAL LETTER MIDDLE-WELSH V", 57972 direction="l", 57973 lccode=0x1EFD, 57974 linebreak="al", 57975 unicodeslot=0x1EFC, 57976 }, 57977 [0x1EFD]={ 57978 category="ll", 57979 description="LATIN SMALL LETTER MIDDLE-WELSH V", 57980 direction="l", 57981 linebreak="al", 57982 unicodeslot=0x1EFD, 57983 }, 57984 [0x1EFE]={ 57985 category="lu", 57986 description="LATIN CAPITAL LETTER Y WITH LOOP", 57987 direction="l", 57988 lccode=0x1EFF, 57989 linebreak="al", 57990 unicodeslot=0x1EFE, 57991 }, 57992 [0x1EFF]={ 57993 category="ll", 57994 description="LATIN SMALL LETTER Y WITH LOOP", 57995 direction="l", 57996 linebreak="al", 57997 unicodeslot=0x1EFF, 57998 }, 57999 [0x1F00]={ 58000 category="ll", 58001 contextname="greekalphapsili", 58002 description="GREEK SMALL LETTER ALPHA WITH PSILI", 58003 direction="l", 58004 linebreak="al", 58005 shcode=0x3B1, 58006 specials={ "char", 0x3B1, 0x313 }, 58007 uccode=0x1F08, 58008 unicodeslot=0x1F00, 58009 }, 58010 [0x1F01]={ 58011 category="ll", 58012 contextname="greekalphadasia", 58013 description="GREEK SMALL LETTER ALPHA WITH DASIA", 58014 direction="l", 58015 linebreak="al", 58016 shcode=0x3B1, 58017 specials={ "char", 0x3B1, 0x314 }, 58018 uccode=0x1F09, 58019 unicodeslot=0x1F01, 58020 }, 58021 [0x1F02]={ 58022 category="ll", 58023 contextname="greekalphapsilivaria", 58024 description="GREEK SMALL LETTER ALPHA WITH PSILI AND VARIA", 58025 direction="l", 58026 linebreak="al", 58027 shcode=0x3B1, 58028 specials={ "char", 0x1F00, 0x300 }, 58029 uccode=0x1F0A, 58030 unicodeslot=0x1F02, 58031 }, 58032 [0x1F03]={ 58033 category="ll", 58034 contextname="greekalphadasiavaria", 58035 description="GREEK SMALL LETTER ALPHA WITH DASIA AND VARIA", 58036 direction="l", 58037 linebreak="al", 58038 shcode=0x3B1, 58039 specials={ "char", 0x1F01, 0x300 }, 58040 uccode=0x1F0B, 58041 unicodeslot=0x1F03, 58042 }, 58043 [0x1F04]={ 58044 category="ll", 58045 contextname="greekalphapsilitonos", 58046 description="GREEK SMALL LETTER ALPHA WITH PSILI AND OXIA", 58047 direction="l", 58048 linebreak="al", 58049 shcode=0x3B1, 58050 specials={ "char", 0x1F00, 0x301 }, 58051 uccode=0x1F0C, 58052 unicodeslot=0x1F04, 58053 }, 58054 [0x1F05]={ 58055 category="ll", 58056 contextname="greekalphadasiatonos", 58057 description="GREEK SMALL LETTER ALPHA WITH DASIA AND OXIA", 58058 direction="l", 58059 linebreak="al", 58060 shcode=0x3B1, 58061 specials={ "char", 0x1F01, 0x301 }, 58062 uccode=0x1F0D, 58063 unicodeslot=0x1F05, 58064 }, 58065 [0x1F06]={ 58066 category="ll", 58067 contextname="greekalphapsiliperispomeni", 58068 description="GREEK SMALL LETTER ALPHA WITH PSILI AND PERISPOMENI", 58069 direction="l", 58070 linebreak="al", 58071 shcode=0x3B1, 58072 specials={ "char", 0x1F00, 0x342 }, 58073 uccode=0x1F0E, 58074 unicodeslot=0x1F06, 58075 }, 58076 [0x1F07]={ 58077 category="ll", 58078 contextname="greekalphadasiaperispomeni", 58079 description="GREEK SMALL LETTER ALPHA WITH DASIA AND PERISPOMENI", 58080 direction="l", 58081 linebreak="al", 58082 shcode=0x3B1, 58083 specials={ "char", 0x1F01, 0x342 }, 58084 uccode=0x1F0F, 58085 unicodeslot=0x1F07, 58086 }, 58087 [0x1F08]={ 58088 category="lu", 58089 contextname="greekAlphapsili", 58090 description="GREEK CAPITAL LETTER ALPHA WITH PSILI", 58091 direction="l", 58092 lccode=0x1F00, 58093 linebreak="al", 58094 shcode=0x391, 58095 specials={ "char", 0x391, 0x313 }, 58096 unicodeslot=0x1F08, 58097 }, 58098 [0x1F09]={ 58099 category="lu", 58100 contextname="greekAlphadasia", 58101 description="GREEK CAPITAL LETTER ALPHA WITH DASIA", 58102 direction="l", 58103 lccode=0x1F01, 58104 linebreak="al", 58105 shcode=0x391, 58106 specials={ "char", 0x391, 0x314 }, 58107 unicodeslot=0x1F09, 58108 }, 58109 [0x1F0A]={ 58110 category="lu", 58111 contextname="greekAlphapsilivaria", 58112 description="GREEK CAPITAL LETTER ALPHA WITH PSILI AND VARIA", 58113 direction="l", 58114 lccode=0x1F02, 58115 linebreak="al", 58116 shcode=0x391, 58117 specials={ "char", 0x1F08, 0x300 }, 58118 unicodeslot=0x1F0A, 58119 }, 58120 [0x1F0B]={ 58121 category="lu", 58122 contextname="greekAlphadasiavaria", 58123 description="GREEK CAPITAL LETTER ALPHA WITH DASIA AND VARIA", 58124 direction="l", 58125 lccode=0x1F03, 58126 linebreak="al", 58127 shcode=0x391, 58128 specials={ "char", 0x1F09, 0x300 }, 58129 unicodeslot=0x1F0B, 58130 }, 58131 [0x1F0C]={ 58132 category="lu", 58133 contextname="greekAlphapsilitonos", 58134 description="GREEK CAPITAL LETTER ALPHA WITH PSILI AND OXIA", 58135 direction="l", 58136 lccode=0x1F04, 58137 linebreak="al", 58138 shcode=0x391, 58139 specials={ "char", 0x1F08, 0x301 }, 58140 unicodeslot=0x1F0C, 58141 }, 58142 [0x1F0D]={ 58143 category="lu", 58144 contextname="greekAlphadasiatonos", 58145 description="GREEK CAPITAL LETTER ALPHA WITH DASIA AND OXIA", 58146 direction="l", 58147 lccode=0x1F05, 58148 linebreak="al", 58149 shcode=0x391, 58150 specials={ "char", 0x1F09, 0x301 }, 58151 unicodeslot=0x1F0D, 58152 }, 58153 [0x1F0E]={ 58154 category="lu", 58155 contextname="greekAlphapsiliperispomeni", 58156 description="GREEK CAPITAL LETTER ALPHA WITH PSILI AND PERISPOMENI", 58157 direction="l", 58158 lccode=0x1F06, 58159 linebreak="al", 58160 shcode=0x391, 58161 specials={ "char", 0x1F08, 0x342 }, 58162 unicodeslot=0x1F0E, 58163 }, 58164 [0x1F0F]={ 58165 category="lu", 58166 contextname="greekAlphadasiaperispomeni", 58167 description="GREEK CAPITAL LETTER ALPHA WITH DASIA AND PERISPOMENI", 58168 direction="l", 58169 lccode=0x1F07, 58170 linebreak="al", 58171 shcode=0x391, 58172 specials={ "char", 0x1F09, 0x342 }, 58173 unicodeslot=0x1F0F, 58174 }, 58175 [0x1F10]={ 58176 category="ll", 58177 contextname="greekepsilonpsili", 58178 description="GREEK SMALL LETTER EPSILON WITH PSILI", 58179 direction="l", 58180 linebreak="al", 58181 shcode=0x3B5, 58182 specials={ "char", 0x3B5, 0x313 }, 58183 uccode=0x1F18, 58184 unicodeslot=0x1F10, 58185 }, 58186 [0x1F11]={ 58187 category="ll", 58188 contextname="greekepsilondasia", 58189 description="GREEK SMALL LETTER EPSILON WITH DASIA", 58190 direction="l", 58191 linebreak="al", 58192 shcode=0x3B5, 58193 specials={ "char", 0x3B5, 0x314 }, 58194 uccode=0x1F19, 58195 unicodeslot=0x1F11, 58196 }, 58197 [0x1F12]={ 58198 category="ll", 58199 contextname="greekepsilonpsilivaria", 58200 description="GREEK SMALL LETTER EPSILON WITH PSILI AND VARIA", 58201 direction="l", 58202 linebreak="al", 58203 shcode=0x3B5, 58204 specials={ "char", 0x1F10, 0x300 }, 58205 uccode=0x1F1A, 58206 unicodeslot=0x1F12, 58207 }, 58208 [0x1F13]={ 58209 category="ll", 58210 contextname="greekepsilondasiavaria", 58211 description="GREEK SMALL LETTER EPSILON WITH DASIA AND VARIA", 58212 direction="l", 58213 linebreak="al", 58214 shcode=0x3B5, 58215 specials={ "char", 0x1F11, 0x300 }, 58216 uccode=0x1F1B, 58217 unicodeslot=0x1F13, 58218 }, 58219 [0x1F14]={ 58220 category="ll", 58221 contextname="greekepsilonpsilitonos", 58222 description="GREEK SMALL LETTER EPSILON WITH PSILI AND OXIA", 58223 direction="l", 58224 linebreak="al", 58225 shcode=0x3B5, 58226 specials={ "char", 0x1F10, 0x301 }, 58227 uccode=0x1F1C, 58228 unicodeslot=0x1F14, 58229 }, 58230 [0x1F15]={ 58231 category="ll", 58232 contextname="greekepsilondasiatonos", 58233 description="GREEK SMALL LETTER EPSILON WITH DASIA AND OXIA", 58234 direction="l", 58235 linebreak="al", 58236 shcode=0x3B5, 58237 specials={ "char", 0x1F11, 0x301 }, 58238 uccode=0x1F1D, 58239 unicodeslot=0x1F15, 58240 }, 58241 [0x1F18]={ 58242 category="lu", 58243 contextname="greekEpsilonpsili", 58244 description="GREEK CAPITAL LETTER EPSILON WITH PSILI", 58245 direction="l", 58246 lccode=0x1F10, 58247 linebreak="al", 58248 shcode=0x395, 58249 specials={ "char", 0x395, 0x313 }, 58250 unicodeslot=0x1F18, 58251 }, 58252 [0x1F19]={ 58253 category="lu", 58254 contextname="greekEpsilondasia", 58255 description="GREEK CAPITAL LETTER EPSILON WITH DASIA", 58256 direction="l", 58257 lccode=0x1F11, 58258 linebreak="al", 58259 shcode=0x395, 58260 specials={ "char", 0x395, 0x314 }, 58261 unicodeslot=0x1F19, 58262 }, 58263 [0x1F1A]={ 58264 category="lu", 58265 contextname="greekEpsilonpsilivaria", 58266 description="GREEK CAPITAL LETTER EPSILON WITH PSILI AND VARIA", 58267 direction="l", 58268 lccode=0x1F12, 58269 linebreak="al", 58270 shcode=0x395, 58271 specials={ "char", 0x1F18, 0x300 }, 58272 unicodeslot=0x1F1A, 58273 }, 58274 [0x1F1B]={ 58275 category="lu", 58276 contextname="greekEpsilondasiavaria", 58277 description="GREEK CAPITAL LETTER EPSILON WITH DASIA AND VARIA", 58278 direction="l", 58279 lccode=0x1F13, 58280 linebreak="al", 58281 shcode=0x395, 58282 specials={ "char", 0x1F19, 0x300 }, 58283 unicodeslot=0x1F1B, 58284 }, 58285 [0x1F1C]={ 58286 category="lu", 58287 contextname="greekEpsilonpsilitonos", 58288 description="GREEK CAPITAL LETTER EPSILON WITH PSILI AND OXIA", 58289 direction="l", 58290 lccode=0x1F14, 58291 linebreak="al", 58292 shcode=0x395, 58293 specials={ "char", 0x1F18, 0x301 }, 58294 unicodeslot=0x1F1C, 58295 }, 58296 [0x1F1D]={ 58297 category="lu", 58298 contextname="greekEpsilondasiatonos", 58299 description="GREEK CAPITAL LETTER EPSILON WITH DASIA AND OXIA", 58300 direction="l", 58301 lccode=0x1F15, 58302 linebreak="al", 58303 shcode=0x395, 58304 specials={ "char", 0x1F19, 0x301 }, 58305 unicodeslot=0x1F1D, 58306 }, 58307 [0x1F20]={ 58308 category="ll", 58309 contextname="greeketapsili", 58310 description="GREEK SMALL LETTER ETA WITH PSILI", 58311 direction="l", 58312 linebreak="al", 58313 shcode=0x3B7, 58314 specials={ "char", 0x3B7, 0x313 }, 58315 uccode=0x1F28, 58316 unicodeslot=0x1F20, 58317 }, 58318 [0x1F21]={ 58319 category="ll", 58320 contextname="greeketadasia", 58321 description="GREEK SMALL LETTER ETA WITH DASIA", 58322 direction="l", 58323 linebreak="al", 58324 shcode=0x3B7, 58325 specials={ "char", 0x3B7, 0x314 }, 58326 uccode=0x1F29, 58327 unicodeslot=0x1F21, 58328 }, 58329 [0x1F22]={ 58330 category="ll", 58331 contextname="greeketapsilivaria", 58332 description="GREEK SMALL LETTER ETA WITH PSILI AND VARIA", 58333 direction="l", 58334 linebreak="al", 58335 shcode=0x3B7, 58336 specials={ "char", 0x1F20, 0x300 }, 58337 uccode=0x1F2A, 58338 unicodeslot=0x1F22, 58339 }, 58340 [0x1F23]={ 58341 category="ll", 58342 contextname="greeketadasiavaria", 58343 description="GREEK SMALL LETTER ETA WITH DASIA AND VARIA", 58344 direction="l", 58345 linebreak="al", 58346 shcode=0x3B7, 58347 specials={ "char", 0x1F21, 0x300 }, 58348 uccode=0x1F2B, 58349 unicodeslot=0x1F23, 58350 }, 58351 [0x1F24]={ 58352 category="ll", 58353 contextname="greeketapsilitonos", 58354 description="GREEK SMALL LETTER ETA WITH PSILI AND OXIA", 58355 direction="l", 58356 linebreak="al", 58357 shcode=0x3B7, 58358 specials={ "char", 0x1F20, 0x301 }, 58359 uccode=0x1F2C, 58360 unicodeslot=0x1F24, 58361 }, 58362 [0x1F25]={ 58363 category="ll", 58364 contextname="greeketadasiatonos", 58365 description="GREEK SMALL LETTER ETA WITH DASIA AND OXIA", 58366 direction="l", 58367 linebreak="al", 58368 shcode=0x3B7, 58369 specials={ "char", 0x1F21, 0x301 }, 58370 uccode=0x1F2D, 58371 unicodeslot=0x1F25, 58372 }, 58373 [0x1F26]={ 58374 category="ll", 58375 contextname="greeketapsiliperispomeni", 58376 description="GREEK SMALL LETTER ETA WITH PSILI AND PERISPOMENI", 58377 direction="l", 58378 linebreak="al", 58379 shcode=0x3B7, 58380 specials={ "char", 0x1F20, 0x342 }, 58381 uccode=0x1F2E, 58382 unicodeslot=0x1F26, 58383 }, 58384 [0x1F27]={ 58385 category="ll", 58386 contextname="greeketadasiaperispomeni", 58387 description="GREEK SMALL LETTER ETA WITH DASIA AND PERISPOMENI", 58388 direction="l", 58389 linebreak="al", 58390 shcode=0x3B7, 58391 specials={ "char", 0x1F21, 0x342 }, 58392 uccode=0x1F2F, 58393 unicodeslot=0x1F27, 58394 }, 58395 [0x1F28]={ 58396 category="lu", 58397 contextname="greekEtapsili", 58398 description="GREEK CAPITAL LETTER ETA WITH PSILI", 58399 direction="l", 58400 lccode=0x1F20, 58401 linebreak="al", 58402 shcode=0x397, 58403 specials={ "char", 0x397, 0x313 }, 58404 unicodeslot=0x1F28, 58405 }, 58406 [0x1F29]={ 58407 category="lu", 58408 contextname="greekEtadasia", 58409 description="GREEK CAPITAL LETTER ETA WITH DASIA", 58410 direction="l", 58411 lccode=0x1F21, 58412 linebreak="al", 58413 shcode=0x397, 58414 specials={ "char", 0x397, 0x314 }, 58415 unicodeslot=0x1F29, 58416 }, 58417 [0x1F2A]={ 58418 category="lu", 58419 contextname="greekEtapsilivaria", 58420 description="GREEK CAPITAL LETTER ETA WITH PSILI AND VARIA", 58421 direction="l", 58422 lccode=0x1F22, 58423 linebreak="al", 58424 shcode=0x397, 58425 specials={ "char", 0x1F28, 0x300 }, 58426 unicodeslot=0x1F2A, 58427 }, 58428 [0x1F2B]={ 58429 category="lu", 58430 contextname="greekEtadasiavaria", 58431 description="GREEK CAPITAL LETTER ETA WITH DASIA AND VARIA", 58432 direction="l", 58433 lccode=0x1F23, 58434 linebreak="al", 58435 shcode=0x397, 58436 specials={ "char", 0x1F29, 0x300 }, 58437 unicodeslot=0x1F2B, 58438 }, 58439 [0x1F2C]={ 58440 category="lu", 58441 contextname="greekEtapsilitonos", 58442 description="GREEK CAPITAL LETTER ETA WITH PSILI AND OXIA", 58443 direction="l", 58444 lccode=0x1F24, 58445 linebreak="al", 58446 shcode=0x397, 58447 specials={ "char", 0x1F28, 0x301 }, 58448 unicodeslot=0x1F2C, 58449 }, 58450 [0x1F2D]={ 58451 category="lu", 58452 contextname="greekEtadasiatonos", 58453 description="GREEK CAPITAL LETTER ETA WITH DASIA AND OXIA", 58454 direction="l", 58455 lccode=0x1F25, 58456 linebreak="al", 58457 shcode=0x397, 58458 specials={ "char", 0x1F29, 0x301 }, 58459 unicodeslot=0x1F2D, 58460 }, 58461 [0x1F2E]={ 58462 category="lu", 58463 contextname="greekEtapsiliperispomeni", 58464 description="GREEK CAPITAL LETTER ETA WITH PSILI AND PERISPOMENI", 58465 direction="l", 58466 lccode=0x1F26, 58467 linebreak="al", 58468 shcode=0x397, 58469 specials={ "char", 0x1F28, 0x342 }, 58470 unicodeslot=0x1F2E, 58471 }, 58472 [0x1F2F]={ 58473 category="lu", 58474 contextname="greekEtadasiaperispomeni", 58475 description="GREEK CAPITAL LETTER ETA WITH DASIA AND PERISPOMENI", 58476 direction="l", 58477 lccode=0x1F27, 58478 linebreak="al", 58479 shcode=0x397, 58480 specials={ "char", 0x1F29, 0x342 }, 58481 unicodeslot=0x1F2F, 58482 }, 58483 [0x1F30]={ 58484 category="ll", 58485 contextname="greekiotapsili", 58486 description="GREEK SMALL LETTER IOTA WITH PSILI", 58487 direction="l", 58488 linebreak="al", 58489 shcode=0x3B9, 58490 specials={ "char", 0x3B9, 0x313 }, 58491 uccode=0x1F38, 58492 unicodeslot=0x1F30, 58493 }, 58494 [0x1F31]={ 58495 category="ll", 58496 contextname="greekiotadasia", 58497 description="GREEK SMALL LETTER IOTA WITH DASIA", 58498 direction="l", 58499 linebreak="al", 58500 shcode=0x3B9, 58501 specials={ "char", 0x3B9, 0x314 }, 58502 uccode=0x1F39, 58503 unicodeslot=0x1F31, 58504 }, 58505 [0x1F32]={ 58506 category="ll", 58507 contextname="greekiotapsilivaria", 58508 description="GREEK SMALL LETTER IOTA WITH PSILI AND VARIA", 58509 direction="l", 58510 linebreak="al", 58511 shcode=0x3B9, 58512 specials={ "char", 0x1F30, 0x300 }, 58513 uccode=0x1F3A, 58514 unicodeslot=0x1F32, 58515 }, 58516 [0x1F33]={ 58517 category="ll", 58518 contextname="greekiotadasiavaria", 58519 description="GREEK SMALL LETTER IOTA WITH DASIA AND VARIA", 58520 direction="l", 58521 linebreak="al", 58522 shcode=0x3B9, 58523 specials={ "char", 0x1F31, 0x300 }, 58524 uccode=0x1F3B, 58525 unicodeslot=0x1F33, 58526 }, 58527 [0x1F34]={ 58528 category="ll", 58529 contextname="greekiotapsilitonos", 58530 description="GREEK SMALL LETTER IOTA WITH PSILI AND OXIA", 58531 direction="l", 58532 linebreak="al", 58533 shcode=0x3B9, 58534 specials={ "char", 0x1F30, 0x301 }, 58535 uccode=0x1F3C, 58536 unicodeslot=0x1F34, 58537 }, 58538 [0x1F35]={ 58539 category="ll", 58540 contextname="greekiotadasiatonos", 58541 description="GREEK SMALL LETTER IOTA WITH DASIA AND OXIA", 58542 direction="l", 58543 linebreak="al", 58544 shcode=0x3B9, 58545 specials={ "char", 0x1F31, 0x301 }, 58546 uccode=0x1F3D, 58547 unicodeslot=0x1F35, 58548 }, 58549 [0x1F36]={ 58550 category="ll", 58551 contextname="greekiotapsiliperispomeni", 58552 description="GREEK SMALL LETTER IOTA WITH PSILI AND PERISPOMENI", 58553 direction="l", 58554 linebreak="al", 58555 shcode=0x3B9, 58556 specials={ "char", 0x1F30, 0x342 }, 58557 uccode=0x1F3E, 58558 unicodeslot=0x1F36, 58559 }, 58560 [0x1F37]={ 58561 category="ll", 58562 contextname="greekiotadasiaperispomeni", 58563 description="GREEK SMALL LETTER IOTA WITH DASIA AND PERISPOMENI", 58564 direction="l", 58565 linebreak="al", 58566 shcode=0x3B9, 58567 specials={ "char", 0x1F31, 0x342 }, 58568 uccode=0x1F3F, 58569 unicodeslot=0x1F37, 58570 }, 58571 [0x1F38]={ 58572 category="lu", 58573 contextname="greekIotapsili", 58574 description="GREEK CAPITAL LETTER IOTA WITH PSILI", 58575 direction="l", 58576 lccode=0x1F30, 58577 linebreak="al", 58578 shcode=0x399, 58579 specials={ "char", 0x399, 0x313 }, 58580 unicodeslot=0x1F38, 58581 }, 58582 [0x1F39]={ 58583 category="lu", 58584 contextname="greekIotadasia", 58585 description="GREEK CAPITAL LETTER IOTA WITH DASIA", 58586 direction="l", 58587 lccode=0x1F31, 58588 linebreak="al", 58589 shcode=0x399, 58590 specials={ "char", 0x399, 0x314 }, 58591 unicodeslot=0x1F39, 58592 }, 58593 [0x1F3A]={ 58594 category="lu", 58595 contextname="greekIotapsilivaria", 58596 description="GREEK CAPITAL LETTER IOTA WITH PSILI AND VARIA", 58597 direction="l", 58598 lccode=0x1F32, 58599 linebreak="al", 58600 shcode=0x399, 58601 specials={ "char", 0x1F38, 0x300 }, 58602 unicodeslot=0x1F3A, 58603 }, 58604 [0x1F3B]={ 58605 category="lu", 58606 contextname="greekIotadasiavaria", 58607 description="GREEK CAPITAL LETTER IOTA WITH DASIA AND VARIA", 58608 direction="l", 58609 lccode=0x1F33, 58610 linebreak="al", 58611 shcode=0x399, 58612 specials={ "char", 0x1F39, 0x300 }, 58613 unicodeslot=0x1F3B, 58614 }, 58615 [0x1F3C]={ 58616 category="lu", 58617 contextname="greekIotapsilitonos", 58618 description="GREEK CAPITAL LETTER IOTA WITH PSILI AND OXIA", 58619 direction="l", 58620 lccode=0x1F34, 58621 linebreak="al", 58622 shcode=0x399, 58623 specials={ "char", 0x1F38, 0x301 }, 58624 unicodeslot=0x1F3C, 58625 }, 58626 [0x1F3D]={ 58627 category="lu", 58628 contextname="greekIotadasiatonos", 58629 description="GREEK CAPITAL LETTER IOTA WITH DASIA AND OXIA", 58630 direction="l", 58631 lccode=0x1F35, 58632 linebreak="al", 58633 shcode=0x399, 58634 specials={ "char", 0x1F39, 0x301 }, 58635 unicodeslot=0x1F3D, 58636 }, 58637 [0x1F3E]={ 58638 category="lu", 58639 contextname="greekIotapsiliperispomeni", 58640 description="GREEK CAPITAL LETTER IOTA WITH PSILI AND PERISPOMENI", 58641 direction="l", 58642 lccode=0x1F36, 58643 linebreak="al", 58644 shcode=0x399, 58645 specials={ "char", 0x1F38, 0x342 }, 58646 unicodeslot=0x1F3E, 58647 }, 58648 [0x1F3F]={ 58649 category="lu", 58650 contextname="greekIotadasiaperispomeni", 58651 description="GREEK CAPITAL LETTER IOTA WITH DASIA AND PERISPOMENI", 58652 direction="l", 58653 lccode=0x1F37, 58654 linebreak="al", 58655 shcode=0x399, 58656 specials={ "char", 0x1F39, 0x342 }, 58657 unicodeslot=0x1F3F, 58658 }, 58659 [0x1F40]={ 58660 category="ll", 58661 contextname="greekomicronpsili", 58662 description="GREEK SMALL LETTER OMICRON WITH PSILI", 58663 direction="l", 58664 linebreak="al", 58665 shcode=0x3BF, 58666 specials={ "char", 0x3BF, 0x313 }, 58667 uccode=0x1F48, 58668 unicodeslot=0x1F40, 58669 }, 58670 [0x1F41]={ 58671 category="ll", 58672 contextname="greekomicrondasia", 58673 description="GREEK SMALL LETTER OMICRON WITH DASIA", 58674 direction="l", 58675 linebreak="al", 58676 shcode=0x3BF, 58677 specials={ "char", 0x3BF, 0x314 }, 58678 uccode=0x1F49, 58679 unicodeslot=0x1F41, 58680 }, 58681 [0x1F42]={ 58682 category="ll", 58683 contextname="greekomicronpsilivaria", 58684 description="GREEK SMALL LETTER OMICRON WITH PSILI AND VARIA", 58685 direction="l", 58686 linebreak="al", 58687 shcode=0x3BF, 58688 specials={ "char", 0x1F40, 0x300 }, 58689 uccode=0x1F4A, 58690 unicodeslot=0x1F42, 58691 }, 58692 [0x1F43]={ 58693 category="ll", 58694 contextname="greekomicrondasiavaria", 58695 description="GREEK SMALL LETTER OMICRON WITH DASIA AND VARIA", 58696 direction="l", 58697 linebreak="al", 58698 shcode=0x3BF, 58699 specials={ "char", 0x1F41, 0x300 }, 58700 uccode=0x1F4B, 58701 unicodeslot=0x1F43, 58702 }, 58703 [0x1F44]={ 58704 category="ll", 58705 contextname="greekomicronpsilitonos", 58706 description="GREEK SMALL LETTER OMICRON WITH PSILI AND OXIA", 58707 direction="l", 58708 linebreak="al", 58709 shcode=0x3BF, 58710 specials={ "char", 0x1F40, 0x301 }, 58711 uccode=0x1F4C, 58712 unicodeslot=0x1F44, 58713 }, 58714 [0x1F45]={ 58715 category="ll", 58716 contextname="greekomicrondasiatonos", 58717 description="GREEK SMALL LETTER OMICRON WITH DASIA AND OXIA", 58718 direction="l", 58719 linebreak="al", 58720 shcode=0x3BF, 58721 specials={ "char", 0x1F41, 0x301 }, 58722 uccode=0x1F4D, 58723 unicodeslot=0x1F45, 58724 }, 58725 [0x1F48]={ 58726 category="lu", 58727 contextname="greekOmicronpsili", 58728 description="GREEK CAPITAL LETTER OMICRON WITH PSILI", 58729 direction="l", 58730 lccode=0x1F40, 58731 linebreak="al", 58732 shcode=0x39F, 58733 specials={ "char", 0x39F, 0x313 }, 58734 unicodeslot=0x1F48, 58735 }, 58736 [0x1F49]={ 58737 category="lu", 58738 contextname="greekOmicrondasia", 58739 description="GREEK CAPITAL LETTER OMICRON WITH DASIA", 58740 direction="l", 58741 lccode=0x1F41, 58742 linebreak="al", 58743 shcode=0x39F, 58744 specials={ "char", 0x39F, 0x314 }, 58745 unicodeslot=0x1F49, 58746 }, 58747 [0x1F4A]={ 58748 category="lu", 58749 contextname="greekOmicronpsilivaria", 58750 description="GREEK CAPITAL LETTER OMICRON WITH PSILI AND VARIA", 58751 direction="l", 58752 lccode=0x1F42, 58753 linebreak="al", 58754 shcode=0x39F, 58755 specials={ "char", 0x1F48, 0x300 }, 58756 unicodeslot=0x1F4A, 58757 }, 58758 [0x1F4B]={ 58759 category="lu", 58760 contextname="greekOmicrondasiavaria", 58761 description="GREEK CAPITAL LETTER OMICRON WITH DASIA AND VARIA", 58762 direction="l", 58763 lccode=0x1F43, 58764 linebreak="al", 58765 shcode=0x39F, 58766 specials={ "char", 0x1F49, 0x300 }, 58767 unicodeslot=0x1F4B, 58768 }, 58769 [0x1F4C]={ 58770 category="lu", 58771 contextname="greekOmicronpsilitonos", 58772 description="GREEK CAPITAL LETTER OMICRON WITH PSILI AND OXIA", 58773 direction="l", 58774 lccode=0x1F44, 58775 linebreak="al", 58776 shcode=0x39F, 58777 specials={ "char", 0x1F48, 0x301 }, 58778 unicodeslot=0x1F4C, 58779 }, 58780 [0x1F4D]={ 58781 category="lu", 58782 contextname="greekOmicrondasiatonos", 58783 description="GREEK CAPITAL LETTER OMICRON WITH DASIA AND OXIA", 58784 direction="l", 58785 lccode=0x1F45, 58786 linebreak="al", 58787 shcode=0x39F, 58788 specials={ "char", 0x1F49, 0x301 }, 58789 unicodeslot=0x1F4D, 58790 }, 58791 [0x1F50]={ 58792 category="ll", 58793 contextname="greekupsilonpsili", 58794 description="GREEK SMALL LETTER UPSILON WITH PSILI", 58795 direction="l", 58796 linebreak="al", 58797 shcode=0x3C5, 58798 specials={ "char", 0x3C5, 0x313 }, 58799 uccode={ 0x3C5, 0x313 }, 58800 unicodeslot=0x1F50, 58801 }, 58802 [0x1F51]={ 58803 category="ll", 58804 contextname="greekupsilondasia", 58805 description="GREEK SMALL LETTER UPSILON WITH DASIA", 58806 direction="l", 58807 linebreak="al", 58808 shcode=0x3C5, 58809 specials={ "char", 0x3C5, 0x314 }, 58810 uccode=0x1F59, 58811 unicodeslot=0x1F51, 58812 }, 58813 [0x1F52]={ 58814 category="ll", 58815 contextname="greekupsilonpsilivaria", 58816 description="GREEK SMALL LETTER UPSILON WITH PSILI AND VARIA", 58817 direction="l", 58818 linebreak="al", 58819 shcode=0x3C5, 58820 specials={ "char", 0x1F50, 0x300 }, 58821 uccode={ 0x3C5, 0x313, 0x300 }, 58822 unicodeslot=0x1F52, 58823 }, 58824 [0x1F53]={ 58825 category="ll", 58826 contextname="greekupsilondasiavaria", 58827 description="GREEK SMALL LETTER UPSILON WITH DASIA AND VARIA", 58828 direction="l", 58829 linebreak="al", 58830 shcode=0x3C5, 58831 specials={ "char", 0x1F51, 0x300 }, 58832 uccode=0x1F5B, 58833 unicodeslot=0x1F53, 58834 }, 58835 [0x1F54]={ 58836 category="ll", 58837 contextname="greekupsilonpsilitonos", 58838 description="GREEK SMALL LETTER UPSILON WITH PSILI AND OXIA", 58839 direction="l", 58840 linebreak="al", 58841 shcode=0x3C5, 58842 specials={ "char", 0x1F50, 0x301 }, 58843 uccode={ 0x3C5, 0x313, 0x301 }, 58844 unicodeslot=0x1F54, 58845 }, 58846 [0x1F55]={ 58847 category="ll", 58848 contextname="greekupsilondasiatonos", 58849 description="GREEK SMALL LETTER UPSILON WITH DASIA AND OXIA", 58850 direction="l", 58851 linebreak="al", 58852 shcode=0x3C5, 58853 specials={ "char", 0x1F51, 0x301 }, 58854 uccode=0x1F5D, 58855 unicodeslot=0x1F55, 58856 }, 58857 [0x1F56]={ 58858 category="ll", 58859 contextname="greekupsilonpsiliperispomeni", 58860 description="GREEK SMALL LETTER UPSILON WITH PSILI AND PERISPOMENI", 58861 direction="l", 58862 linebreak="al", 58863 shcode=0x3C5, 58864 specials={ "char", 0x1F50, 0x342 }, 58865 uccode={ 0x3C5, 0x313, 0x342 }, 58866 unicodeslot=0x1F56, 58867 }, 58868 [0x1F57]={ 58869 category="ll", 58870 contextname="greekupsilondasiaperispomeni", 58871 description="GREEK SMALL LETTER UPSILON WITH DASIA AND PERISPOMENI", 58872 direction="l", 58873 linebreak="al", 58874 shcode=0x3C5, 58875 specials={ "char", 0x1F51, 0x342 }, 58876 uccode=0x1F5F, 58877 unicodeslot=0x1F57, 58878 }, 58879 [0x1F59]={ 58880 category="lu", 58881 contextname="greekUpsilondasia", 58882 description="GREEK CAPITAL LETTER UPSILON WITH DASIA", 58883 direction="l", 58884 lccode=0x1F51, 58885 linebreak="al", 58886 shcode=0x3A5, 58887 specials={ "char", 0x3A5, 0x314 }, 58888 unicodeslot=0x1F59, 58889 }, 58890 [0x1F5B]={ 58891 category="lu", 58892 contextname="greekUpsilondasiavaria", 58893 description="GREEK CAPITAL LETTER UPSILON WITH DASIA AND VARIA", 58894 direction="l", 58895 lccode=0x1F53, 58896 linebreak="al", 58897 shcode=0x3A5, 58898 specials={ "char", 0x1F59, 0x300 }, 58899 unicodeslot=0x1F5B, 58900 }, 58901 [0x1F5D]={ 58902 category="lu", 58903 contextname="greekUpsilondasiatonos", 58904 description="GREEK CAPITAL LETTER UPSILON WITH DASIA AND OXIA", 58905 direction="l", 58906 lccode=0x1F55, 58907 linebreak="al", 58908 shcode=0x3A5, 58909 specials={ "char", 0x1F59, 0x301 }, 58910 unicodeslot=0x1F5D, 58911 }, 58912 [0x1F5F]={ 58913 category="lu", 58914 contextname="greekUpsilondasiaperispomeni", 58915 description="GREEK CAPITAL LETTER UPSILON WITH DASIA AND PERISPOMENI", 58916 direction="l", 58917 lccode=0x1F57, 58918 linebreak="al", 58919 shcode=0x3A5, 58920 specials={ "char", 0x1F59, 0x342 }, 58921 unicodeslot=0x1F5F, 58922 }, 58923 [0x1F60]={ 58924 category="ll", 58925 contextname="greekomegapsili", 58926 description="GREEK SMALL LETTER OMEGA WITH PSILI", 58927 direction="l", 58928 linebreak="al", 58929 shcode=0x3C9, 58930 specials={ "char", 0x3C9, 0x313 }, 58931 uccode=0x1F68, 58932 unicodeslot=0x1F60, 58933 }, 58934 [0x1F61]={ 58935 category="ll", 58936 contextname="greekomegadasia", 58937 description="GREEK SMALL LETTER OMEGA WITH DASIA", 58938 direction="l", 58939 linebreak="al", 58940 shcode=0x3C9, 58941 specials={ "char", 0x3C9, 0x314 }, 58942 uccode=0x1F69, 58943 unicodeslot=0x1F61, 58944 }, 58945 [0x1F62]={ 58946 category="ll", 58947 contextname="greekomegapsilivaria", 58948 description="GREEK SMALL LETTER OMEGA WITH PSILI AND VARIA", 58949 direction="l", 58950 linebreak="al", 58951 shcode=0x3C9, 58952 specials={ "char", 0x1F60, 0x300 }, 58953 uccode=0x1F6A, 58954 unicodeslot=0x1F62, 58955 }, 58956 [0x1F63]={ 58957 category="ll", 58958 contextname="greekomegadasiavaria", 58959 description="GREEK SMALL LETTER OMEGA WITH DASIA AND VARIA", 58960 direction="l", 58961 linebreak="al", 58962 shcode=0x3C9, 58963 specials={ "char", 0x1F61, 0x300 }, 58964 uccode=0x1F6B, 58965 unicodeslot=0x1F63, 58966 }, 58967 [0x1F64]={ 58968 category="ll", 58969 contextname="greekomegapsilitonos", 58970 description="GREEK SMALL LETTER OMEGA WITH PSILI AND OXIA", 58971 direction="l", 58972 linebreak="al", 58973 shcode=0x3C9, 58974 specials={ "char", 0x1F60, 0x301 }, 58975 uccode=0x1F6C, 58976 unicodeslot=0x1F64, 58977 }, 58978 [0x1F65]={ 58979 category="ll", 58980 contextname="greekomegadasiatonos", 58981 description="GREEK SMALL LETTER OMEGA WITH DASIA AND OXIA", 58982 direction="l", 58983 linebreak="al", 58984 shcode=0x3C9, 58985 specials={ "char", 0x1F61, 0x301 }, 58986 uccode=0x1F6D, 58987 unicodeslot=0x1F65, 58988 }, 58989 [0x1F66]={ 58990 category="ll", 58991 contextname="greekomegapsiliperispomeni", 58992 description="GREEK SMALL LETTER OMEGA WITH PSILI AND PERISPOMENI", 58993 direction="l", 58994 linebreak="al", 58995 shcode=0x3C9, 58996 specials={ "char", 0x1F60, 0x342 }, 58997 uccode=0x1F6E, 58998 unicodeslot=0x1F66, 58999 }, 59000 [0x1F67]={ 59001 category="ll", 59002 contextname="greekomegadasiaperispomeni", 59003 description="GREEK SMALL LETTER OMEGA WITH DASIA AND PERISPOMENI", 59004 direction="l", 59005 linebreak="al", 59006 shcode=0x3C9, 59007 specials={ "char", 0x1F61, 0x342 }, 59008 uccode=0x1F6F, 59009 unicodeslot=0x1F67, 59010 }, 59011 [0x1F68]={ 59012 category="lu", 59013 contextname="greekOmegapsili", 59014 description="GREEK CAPITAL LETTER OMEGA WITH PSILI", 59015 direction="l", 59016 lccode=0x1F60, 59017 linebreak="al", 59018 shcode=0x3A9, 59019 specials={ "char", 0x3A9, 0x313 }, 59020 unicodeslot=0x1F68, 59021 }, 59022 [0x1F69]={ 59023 category="lu", 59024 contextname="greekOmegadasia", 59025 description="GREEK CAPITAL LETTER OMEGA WITH DASIA", 59026 direction="l", 59027 lccode=0x1F61, 59028 linebreak="al", 59029 shcode=0x3A9, 59030 specials={ "char", 0x3A9, 0x314 }, 59031 unicodeslot=0x1F69, 59032 }, 59033 [0x1F6A]={ 59034 category="lu", 59035 contextname="greekOmegapsilivaria", 59036 description="GREEK CAPITAL LETTER OMEGA WITH PSILI AND VARIA", 59037 direction="l", 59038 lccode=0x1F62, 59039 linebreak="al", 59040 shcode=0x3A9, 59041 specials={ "char", 0x1F68, 0x300 }, 59042 unicodeslot=0x1F6A, 59043 }, 59044 [0x1F6B]={ 59045 category="lu", 59046 contextname="greekOmegadasiavaria", 59047 description="GREEK CAPITAL LETTER OMEGA WITH DASIA AND VARIA", 59048 direction="l", 59049 lccode=0x1F63, 59050 linebreak="al", 59051 shcode=0x3A9, 59052 specials={ "char", 0x1F69, 0x300 }, 59053 unicodeslot=0x1F6B, 59054 }, 59055 [0x1F6C]={ 59056 category="lu", 59057 contextname="greekOmegapsilitonos", 59058 description="GREEK CAPITAL LETTER OMEGA WITH PSILI AND OXIA", 59059 direction="l", 59060 lccode=0x1F64, 59061 linebreak="al", 59062 shcode=0x3A9, 59063 specials={ "char", 0x1F68, 0x301 }, 59064 unicodeslot=0x1F6C, 59065 }, 59066 [0x1F6D]={ 59067 category="lu", 59068 contextname="greekOmegadasiatonos", 59069 description="GREEK CAPITAL LETTER OMEGA WITH DASIA AND OXIA", 59070 direction="l", 59071 lccode=0x1F65, 59072 linebreak="al", 59073 shcode=0x3A9, 59074 specials={ "char", 0x1F69, 0x301 }, 59075 unicodeslot=0x1F6D, 59076 }, 59077 [0x1F6E]={ 59078 category="lu", 59079 contextname="greekOmegapsiliperispomeni", 59080 description="GREEK CAPITAL LETTER OMEGA WITH PSILI AND PERISPOMENI", 59081 direction="l", 59082 lccode=0x1F66, 59083 linebreak="al", 59084 shcode=0x3A9, 59085 specials={ "char", 0x1F68, 0x342 }, 59086 unicodeslot=0x1F6E, 59087 }, 59088 [0x1F6F]={ 59089 category="lu", 59090 contextname="greekOmegadasiaperispomeni", 59091 description="GREEK CAPITAL LETTER OMEGA WITH DASIA AND PERISPOMENI", 59092 direction="l", 59093 lccode=0x1F67, 59094 linebreak="al", 59095 shcode=0x3A9, 59096 specials={ "char", 0x1F69, 0x342 }, 59097 unicodeslot=0x1F6F, 59098 }, 59099 [0x1F70]={ 59100 category="ll", 59101 contextname="greekalphavaria", 59102 description="GREEK SMALL LETTER ALPHA WITH VARIA", 59103 direction="l", 59104 linebreak="al", 59105 shcode=0x3B1, 59106 specials={ "char", 0x3B1, 0x300 }, 59107 uccode=0x1FBA, 59108 unicodeslot=0x1F70, 59109 }, 59110 [0x1F71]={ 59111 category="ll", 59112 contextname="greekalphaoxia", 59113 description="GREEK SMALL LETTER ALPHA WITH OXIA", 59114 direction="l", 59115 linebreak="al", 59116 shcode=0x3B1, 59117 specials={ "char", 0x3AC }, 59118 uccode=0x1FBB, 59119 unicodeslot=0x1F71, 59120 }, 59121 [0x1F72]={ 59122 category="ll", 59123 contextname="greekepsilonvaria", 59124 description="GREEK SMALL LETTER EPSILON WITH VARIA", 59125 direction="l", 59126 linebreak="al", 59127 shcode=0x3B5, 59128 specials={ "char", 0x3B5, 0x300 }, 59129 uccode=0x1FC8, 59130 unicodeslot=0x1F72, 59131 }, 59132 [0x1F73]={ 59133 category="ll", 59134 contextname="greekepsilonoxia", 59135 description="GREEK SMALL LETTER EPSILON WITH OXIA", 59136 direction="l", 59137 linebreak="al", 59138 shcode=0x3B5, 59139 specials={ "char", 0x3AD }, 59140 uccode=0x1FC9, 59141 unicodeslot=0x1F73, 59142 }, 59143 [0x1F74]={ 59144 category="ll", 59145 contextname="greeketavaria", 59146 description="GREEK SMALL LETTER ETA WITH VARIA", 59147 direction="l", 59148 linebreak="al", 59149 shcode=0x3B7, 59150 specials={ "char", 0x3B7, 0x300 }, 59151 uccode=0x1FCA, 59152 unicodeslot=0x1F74, 59153 }, 59154 [0x1F75]={ 59155 category="ll", 59156 contextname="greeketaoxia", 59157 description="GREEK SMALL LETTER ETA WITH OXIA", 59158 direction="l", 59159 linebreak="al", 59160 shcode=0x3B7, 59161 specials={ "char", 0x3AE }, 59162 uccode=0x1FCB, 59163 unicodeslot=0x1F75, 59164 }, 59165 [0x1F76]={ 59166 category="ll", 59167 contextname="greekiotavaria", 59168 description="GREEK SMALL LETTER IOTA WITH VARIA", 59169 direction="l", 59170 linebreak="al", 59171 shcode=0x3B9, 59172 specials={ "char", 0x3B9, 0x300 }, 59173 uccode=0x1FDA, 59174 unicodeslot=0x1F76, 59175 }, 59176 [0x1F77]={ 59177 category="ll", 59178 contextname="greekiotaoxia", 59179 description="GREEK SMALL LETTER IOTA WITH OXIA", 59180 direction="l", 59181 linebreak="al", 59182 shcode=0x3B9, 59183 specials={ "char", 0x3AF }, 59184 uccode=0x1FDB, 59185 unicodeslot=0x1F77, 59186 }, 59187 [0x1F78]={ 59188 category="ll", 59189 contextname="greekomicronvaria", 59190 description="GREEK SMALL LETTER OMICRON WITH VARIA", 59191 direction="l", 59192 linebreak="al", 59193 shcode=0x3BF, 59194 specials={ "char", 0x3BF, 0x300 }, 59195 uccode=0x1FF8, 59196 unicodeslot=0x1F78, 59197 }, 59198 [0x1F79]={ 59199 category="ll", 59200 contextname="greekomicronoxia", 59201 description="GREEK SMALL LETTER OMICRON WITH OXIA", 59202 direction="l", 59203 linebreak="al", 59204 shcode=0x3BF, 59205 specials={ "char", 0x3CC }, 59206 uccode=0x1FF9, 59207 unicodeslot=0x1F79, 59208 }, 59209 [0x1F7A]={ 59210 category="ll", 59211 contextname="greekupsilonvaria", 59212 description="GREEK SMALL LETTER UPSILON WITH VARIA", 59213 direction="l", 59214 linebreak="al", 59215 shcode=0x3C5, 59216 specials={ "char", 0x3C5, 0x300 }, 59217 uccode=0x1FEA, 59218 unicodeslot=0x1F7A, 59219 }, 59220 [0x1F7B]={ 59221 category="ll", 59222 contextname="greekupsilonoxia", 59223 description="GREEK SMALL LETTER UPSILON WITH OXIA", 59224 direction="l", 59225 linebreak="al", 59226 shcode=0x3C5, 59227 specials={ "char", 0x3CD }, 59228 uccode=0x1FEB, 59229 unicodeslot=0x1F7B, 59230 }, 59231 [0x1F7C]={ 59232 category="ll", 59233 contextname="greekomegavaria", 59234 description="GREEK SMALL LETTER OMEGA WITH VARIA", 59235 direction="l", 59236 linebreak="al", 59237 shcode=0x3C9, 59238 specials={ "char", 0x3C9, 0x300 }, 59239 uccode=0x1FFA, 59240 unicodeslot=0x1F7C, 59241 }, 59242 [0x1F7D]={ 59243 category="ll", 59244 contextname="greekomegaoxia", 59245 description="GREEK SMALL LETTER OMEGA WITH OXIA", 59246 direction="l", 59247 linebreak="al", 59248 shcode=0x3C9, 59249 specials={ "char", 0x3CE }, 59250 uccode=0x1FFB, 59251 unicodeslot=0x1F7D, 59252 }, 59253 [0x1F80]={ 59254 category="ll", 59255 contextname="greekalphaiotasubpsili", 59256 description="GREEK SMALL LETTER ALPHA WITH PSILI AND YPOGEGRAMMENI", 59257 direction="l", 59258 linebreak="al", 59259 shcode=0x3B1, 59260 specials={ "char", 0x1F00, 0x345 }, 59261 uccode={ 0x1F00, 0x3B9 }, 59262 unicodeslot=0x1F80, 59263 }, 59264 [0x1F81]={ 59265 category="ll", 59266 contextname="greekalphaiotasubdasia", 59267 description="GREEK SMALL LETTER ALPHA WITH DASIA AND YPOGEGRAMMENI", 59268 direction="l", 59269 linebreak="al", 59270 shcode=0x3B1, 59271 specials={ "char", 0x1F01, 0x345 }, 59272 uccode={ 0x1F01, 0x3B9 }, 59273 unicodeslot=0x1F81, 59274 }, 59275 [0x1F82]={ 59276 category="ll", 59277 contextname="greekalphaiotasubpsilivaria", 59278 description="GREEK SMALL LETTER ALPHA WITH PSILI AND VARIA AND YPOGEGRAMMENI", 59279 direction="l", 59280 linebreak="al", 59281 shcode=0x3B1, 59282 specials={ "char", 0x1F02, 0x345 }, 59283 uccode={ 0x1F02, 0x3B9 }, 59284 unicodeslot=0x1F82, 59285 }, 59286 [0x1F83]={ 59287 category="ll", 59288 contextname="greekalphaiotasubdasiavaria", 59289 description="GREEK SMALL LETTER ALPHA WITH DASIA AND VARIA AND YPOGEGRAMMENI", 59290 direction="l", 59291 linebreak="al", 59292 shcode=0x3B1, 59293 specials={ "char", 0x1F03, 0x345 }, 59294 uccode={ 0x1F03, 0x3B9 }, 59295 unicodeslot=0x1F83, 59296 }, 59297 [0x1F84]={ 59298 category="ll", 59299 contextname="greekalphaiotasubpsilitonos", 59300 description="GREEK SMALL LETTER ALPHA WITH PSILI AND OXIA AND YPOGEGRAMMENI", 59301 direction="l", 59302 linebreak="al", 59303 shcode=0x3B1, 59304 specials={ "char", 0x1F04, 0x345 }, 59305 uccode={ 0x1F04, 0x3B9 }, 59306 unicodeslot=0x1F84, 59307 }, 59308 [0x1F85]={ 59309 category="ll", 59310 contextname="greekalphaiotasubdasiatonos", 59311 description="GREEK SMALL LETTER ALPHA WITH DASIA AND OXIA AND YPOGEGRAMMENI", 59312 direction="l", 59313 linebreak="al", 59314 shcode=0x3B1, 59315 specials={ "char", 0x1F05, 0x345 }, 59316 uccode={ 0x1F05, 0x3B9 }, 59317 unicodeslot=0x1F85, 59318 }, 59319 [0x1F86]={ 59320 category="ll", 59321 contextname="greekalphaiotasubpsiliperispomeni", 59322 description="GREEK SMALL LETTER ALPHA WITH PSILI AND PERISPOMENI AND YPOGEGRAMMENI", 59323 direction="l", 59324 linebreak="al", 59325 shcode=0x3B1, 59326 specials={ "char", 0x1F06, 0x345 }, 59327 uccode={ 0x1F06, 0x3B9 }, 59328 unicodeslot=0x1F86, 59329 }, 59330 [0x1F87]={ 59331 category="ll", 59332 contextname="greekalphaiotasubdasiaperispomeni", 59333 description="GREEK SMALL LETTER ALPHA WITH DASIA AND PERISPOMENI AND YPOGEGRAMMENI", 59334 direction="l", 59335 linebreak="al", 59336 shcode=0x3B1, 59337 specials={ "char", 0x1F07, 0x345 }, 59338 uccode={ 0x1F07, 0x3B9 }, 59339 unicodeslot=0x1F87, 59340 }, 59341 [0x1F88]={ 59342 category="lt", 59343 contextname="greekAlphaiotasubpsili", 59344 description="GREEK CAPITAL LETTER ALPHA WITH PSILI AND PROSGEGRAMMENI", 59345 direction="l", 59346 lccode=0x1F80, 59347 linebreak="al", 59348 shcode=0x391, 59349 specials={ "char", 0x1F08, 0x345 }, 59350 unicodeslot=0x1F88, 59351 }, 59352 [0x1F89]={ 59353 category="lt", 59354 contextname="greekAlphaiotasubdasia", 59355 description="GREEK CAPITAL LETTER ALPHA WITH DASIA AND PROSGEGRAMMENI", 59356 direction="l", 59357 lccode=0x1F81, 59358 linebreak="al", 59359 shcode=0x391, 59360 specials={ "char", 0x1F09, 0x345 }, 59361 unicodeslot=0x1F89, 59362 }, 59363 [0x1F8A]={ 59364 category="lt", 59365 contextname="greekAlphaiotasubpsilivaria", 59366 description="GREEK CAPITAL LETTER ALPHA WITH PSILI AND VARIA AND PROSGEGRAMMENI", 59367 direction="l", 59368 lccode=0x1F82, 59369 linebreak="al", 59370 shcode=0x391, 59371 specials={ "char", 0x1F0A, 0x345 }, 59372 unicodeslot=0x1F8A, 59373 }, 59374 [0x1F8B]={ 59375 category="lt", 59376 contextname="greekAlphaiotasubdasiavaria", 59377 description="GREEK CAPITAL LETTER ALPHA WITH DASIA AND VARIA AND PROSGEGRAMMENI", 59378 direction="l", 59379 lccode=0x1F83, 59380 linebreak="al", 59381 shcode=0x391, 59382 specials={ "char", 0x1F0B, 0x345 }, 59383 unicodeslot=0x1F8B, 59384 }, 59385 [0x1F8C]={ 59386 category="lt", 59387 contextname="greekAlphaiotasubpsilitonos", 59388 description="GREEK CAPITAL LETTER ALPHA WITH PSILI AND OXIA AND PROSGEGRAMMENI", 59389 direction="l", 59390 lccode=0x1F84, 59391 linebreak="al", 59392 shcode=0x391, 59393 specials={ "char", 0x1F0C, 0x345 }, 59394 unicodeslot=0x1F8C, 59395 }, 59396 [0x1F8D]={ 59397 category="lt", 59398 contextname="greekAlphaiotasubdasiatonos", 59399 description="GREEK CAPITAL LETTER ALPHA WITH DASIA AND OXIA AND PROSGEGRAMMENI", 59400 direction="l", 59401 lccode=0x1F85, 59402 linebreak="al", 59403 shcode=0x391, 59404 specials={ "char", 0x1F0D, 0x345 }, 59405 unicodeslot=0x1F8D, 59406 }, 59407 [0x1F8E]={ 59408 category="lt", 59409 contextname="greekAlphaiotasubpsiliperispomeni", 59410 description="GREEK CAPITAL LETTER ALPHA WITH PSILI AND PERISPOMENI AND PROSGEGRAMMENI", 59411 direction="l", 59412 lccode=0x1F86, 59413 linebreak="al", 59414 shcode=0x391, 59415 specials={ "char", 0x1F0E, 0x345 }, 59416 unicodeslot=0x1F8E, 59417 }, 59418 [0x1F8F]={ 59419 category="lt", 59420 contextname="greekAlphaiotasubdasiaperispomeni", 59421 description="GREEK CAPITAL LETTER ALPHA WITH DASIA AND PERISPOMENI AND PROSGEGRAMMENI", 59422 direction="l", 59423 lccode=0x1F87, 59424 linebreak="al", 59425 shcode=0x391, 59426 specials={ "char", 0x1F0F, 0x345 }, 59427 unicodeslot=0x1F8F, 59428 }, 59429 [0x1F90]={ 59430 category="ll", 59431 contextname="greeketaiotasubpsili", 59432 description="GREEK SMALL LETTER ETA WITH PSILI AND YPOGEGRAMMENI", 59433 direction="l", 59434 linebreak="al", 59435 shcode=0x3B7, 59436 specials={ "char", 0x1F20, 0x345 }, 59437 uccode={ 0x1F20, 0x3B9 }, 59438 unicodeslot=0x1F90, 59439 }, 59440 [0x1F91]={ 59441 category="ll", 59442 contextname="greeketaiotasubdasia", 59443 description="GREEK SMALL LETTER ETA WITH DASIA AND YPOGEGRAMMENI", 59444 direction="l", 59445 linebreak="al", 59446 shcode=0x3B7, 59447 specials={ "char", 0x1F21, 0x345 }, 59448 uccode={ 0x1F21, 0x3B9 }, 59449 unicodeslot=0x1F91, 59450 }, 59451 [0x1F92]={ 59452 category="ll", 59453 contextname="greeketaiotasubpsilivaria", 59454 description="GREEK SMALL LETTER ETA WITH PSILI AND VARIA AND YPOGEGRAMMENI", 59455 direction="l", 59456 linebreak="al", 59457 shcode=0x3B7, 59458 specials={ "char", 0x1F22, 0x345 }, 59459 uccode={ 0x1F22, 0x3B9 }, 59460 unicodeslot=0x1F92, 59461 }, 59462 [0x1F93]={ 59463 category="ll", 59464 contextname="greeketaiotasubdasiavaria", 59465 description="GREEK SMALL LETTER ETA WITH DASIA AND VARIA AND YPOGEGRAMMENI", 59466 direction="l", 59467 linebreak="al", 59468 shcode=0x3B7, 59469 specials={ "char", 0x1F23, 0x345 }, 59470 uccode={ 0x1F23, 0x3B9 }, 59471 unicodeslot=0x1F93, 59472 }, 59473 [0x1F94]={ 59474 category="ll", 59475 contextname="greeketaiotasubpsilitonos", 59476 description="GREEK SMALL LETTER ETA WITH PSILI AND OXIA AND YPOGEGRAMMENI", 59477 direction="l", 59478 linebreak="al", 59479 shcode=0x3B7, 59480 specials={ "char", 0x1F24, 0x345 }, 59481 uccode={ 0x1F24, 0x3B9 }, 59482 unicodeslot=0x1F94, 59483 }, 59484 [0x1F95]={ 59485 category="ll", 59486 contextname="greeketaiotasubdasiatonos", 59487 description="GREEK SMALL LETTER ETA WITH DASIA AND OXIA AND YPOGEGRAMMENI", 59488 direction="l", 59489 linebreak="al", 59490 shcode=0x3B7, 59491 specials={ "char", 0x1F25, 0x345 }, 59492 uccode={ 0x1F25, 0x3B9 }, 59493 unicodeslot=0x1F95, 59494 }, 59495 [0x1F96]={ 59496 category="ll", 59497 contextname="greeketaiotasubpsiliperispomeni", 59498 description="GREEK SMALL LETTER ETA WITH PSILI AND PERISPOMENI AND YPOGEGRAMMENI", 59499 direction="l", 59500 linebreak="al", 59501 shcode=0x3B7, 59502 specials={ "char", 0x1F26, 0x345 }, 59503 uccode={ 0x1F26, 0x3B9 }, 59504 unicodeslot=0x1F96, 59505 }, 59506 [0x1F97]={ 59507 category="ll", 59508 contextname="greeketaiotasubdasiaperispomeni", 59509 description="GREEK SMALL LETTER ETA WITH DASIA AND PERISPOMENI AND YPOGEGRAMMENI", 59510 direction="l", 59511 linebreak="al", 59512 shcode=0x3B7, 59513 specials={ "char", 0x1F27, 0x345 }, 59514 uccode={ 0x1F27, 0x3B9 }, 59515 unicodeslot=0x1F97, 59516 }, 59517 [0x1F98]={ 59518 category="lt", 59519 contextname="greekEtaiotasubpsili", 59520 description="GREEK CAPITAL LETTER ETA WITH PSILI AND PROSGEGRAMMENI", 59521 direction="l", 59522 lccode=0x1F90, 59523 linebreak="al", 59524 shcode=0x397, 59525 specials={ "char", 0x1F28, 0x345 }, 59526 unicodeslot=0x1F98, 59527 }, 59528 [0x1F99]={ 59529 category="lt", 59530 contextname="greekEtaiotasubdasia", 59531 description="GREEK CAPITAL LETTER ETA WITH DASIA AND PROSGEGRAMMENI", 59532 direction="l", 59533 lccode=0x1F91, 59534 linebreak="al", 59535 shcode=0x397, 59536 specials={ "char", 0x1F29, 0x345 }, 59537 unicodeslot=0x1F99, 59538 }, 59539 [0x1F9A]={ 59540 category="lt", 59541 contextname="greekEtaiotasubpsilivaria", 59542 description="GREEK CAPITAL LETTER ETA WITH PSILI AND VARIA AND PROSGEGRAMMENI", 59543 direction="l", 59544 lccode=0x1F92, 59545 linebreak="al", 59546 shcode=0x397, 59547 specials={ "char", 0x1F2A, 0x345 }, 59548 unicodeslot=0x1F9A, 59549 }, 59550 [0x1F9B]={ 59551 category="lt", 59552 contextname="greekEtaiotasubdasiavaria", 59553 description="GREEK CAPITAL LETTER ETA WITH DASIA AND VARIA AND PROSGEGRAMMENI", 59554 direction="l", 59555 lccode=0x1F93, 59556 linebreak="al", 59557 shcode=0x397, 59558 specials={ "char", 0x1F2B, 0x345 }, 59559 unicodeslot=0x1F9B, 59560 }, 59561 [0x1F9C]={ 59562 category="lt", 59563 contextname="greekEtaiotasubpsilitonos", 59564 description="GREEK CAPITAL LETTER ETA WITH PSILI AND OXIA AND PROSGEGRAMMENI", 59565 direction="l", 59566 lccode=0x1F94, 59567 linebreak="al", 59568 shcode=0x397, 59569 specials={ "char", 0x1F2C, 0x345 }, 59570 unicodeslot=0x1F9C, 59571 }, 59572 [0x1F9D]={ 59573 category="lt", 59574 contextname="greekEtaiotasubdasiatonos", 59575 description="GREEK CAPITAL LETTER ETA WITH DASIA AND OXIA AND PROSGEGRAMMENI", 59576 direction="l", 59577 lccode=0x1F95, 59578 linebreak="al", 59579 shcode=0x397, 59580 specials={ "char", 0x1F2D, 0x345 }, 59581 unicodeslot=0x1F9D, 59582 }, 59583 [0x1F9E]={ 59584 category="lt", 59585 contextname="greekEtaiotasubpsiliperispomeni", 59586 description="GREEK CAPITAL LETTER ETA WITH PSILI AND PERISPOMENI AND PROSGEGRAMMENI", 59587 direction="l", 59588 lccode=0x1F96, 59589 linebreak="al", 59590 shcode=0x397, 59591 specials={ "char", 0x1F2E, 0x345 }, 59592 unicodeslot=0x1F9E, 59593 }, 59594 [0x1F9F]={ 59595 category="lt", 59596 contextname="greekEtaiotasubdasiaperispomeni", 59597 description="GREEK CAPITAL LETTER ETA WITH DASIA AND PERISPOMENI AND PROSGEGRAMMENI", 59598 direction="l", 59599 lccode=0x1F97, 59600 linebreak="al", 59601 shcode=0x397, 59602 specials={ "char", 0x1F2F, 0x345 }, 59603 unicodeslot=0x1F9F, 59604 }, 59605 [0x1FA0]={ 59606 category="ll", 59607 contextname="greekomegaiotasubpsili", 59608 description="GREEK SMALL LETTER OMEGA WITH PSILI AND YPOGEGRAMMENI", 59609 direction="l", 59610 linebreak="al", 59611 shcode=0x3C9, 59612 specials={ "char", 0x1F60, 0x345 }, 59613 uccode={ 0x1F60, 0x3B9 }, 59614 unicodeslot=0x1FA0, 59615 }, 59616 [0x1FA1]={ 59617 category="ll", 59618 contextname="greekomegaiotasubdasia", 59619 description="GREEK SMALL LETTER OMEGA WITH DASIA AND YPOGEGRAMMENI", 59620 direction="l", 59621 linebreak="al", 59622 shcode=0x3C9, 59623 specials={ "char", 0x1F61, 0x345 }, 59624 uccode={ 0x1F61, 0x3B9 }, 59625 unicodeslot=0x1FA1, 59626 }, 59627 [0x1FA2]={ 59628 category="ll", 59629 contextname="greekomegaiotasubpsilivaria", 59630 description="GREEK SMALL LETTER OMEGA WITH PSILI AND VARIA AND YPOGEGRAMMENI", 59631 direction="l", 59632 linebreak="al", 59633 shcode=0x3C9, 59634 specials={ "char", 0x1F62, 0x345 }, 59635 uccode={ 0x1F62, 0x3B9 }, 59636 unicodeslot=0x1FA2, 59637 }, 59638 [0x1FA3]={ 59639 category="ll", 59640 contextname="greekomegaiotasubdasiavaria", 59641 description="GREEK SMALL LETTER OMEGA WITH DASIA AND VARIA AND YPOGEGRAMMENI", 59642 direction="l", 59643 linebreak="al", 59644 shcode=0x3C9, 59645 specials={ "char", 0x1F63, 0x345 }, 59646 uccode={ 0x1F63, 0x3B9 }, 59647 unicodeslot=0x1FA3, 59648 }, 59649 [0x1FA4]={ 59650 category="ll", 59651 contextname="greekomegaiotasubpsilitonos", 59652 description="GREEK SMALL LETTER OMEGA WITH PSILI AND OXIA AND YPOGEGRAMMENI", 59653 direction="l", 59654 linebreak="al", 59655 shcode=0x3C9, 59656 specials={ "char", 0x1F64, 0x345 }, 59657 uccode={ 0x1F64, 0x3B9 }, 59658 unicodeslot=0x1FA4, 59659 }, 59660 [0x1FA5]={ 59661 category="ll", 59662 contextname="greekomegaiotasubdasiatonos", 59663 description="GREEK SMALL LETTER OMEGA WITH DASIA AND OXIA AND YPOGEGRAMMENI", 59664 direction="l", 59665 linebreak="al", 59666 shcode=0x3C9, 59667 specials={ "char", 0x1F65, 0x345 }, 59668 uccode={ 0x1F65, 0x3B9 }, 59669 unicodeslot=0x1FA5, 59670 }, 59671 [0x1FA6]={ 59672 category="ll", 59673 contextname="greekomegaiotasubpsiliperispomeni", 59674 description="GREEK SMALL LETTER OMEGA WITH PSILI AND PERISPOMENI AND YPOGEGRAMMENI", 59675 direction="l", 59676 linebreak="al", 59677 shcode=0x3C9, 59678 specials={ "char", 0x1F66, 0x345 }, 59679 uccode={ 0x1F66, 0x3B9 }, 59680 unicodeslot=0x1FA6, 59681 }, 59682 [0x1FA7]={ 59683 category="ll", 59684 contextname="greekomegaiotasubdasiaperispomeni", 59685 description="GREEK SMALL LETTER OMEGA WITH DASIA AND PERISPOMENI AND YPOGEGRAMMENI", 59686 direction="l", 59687 linebreak="al", 59688 shcode=0x3C9, 59689 specials={ "char", 0x1F67, 0x345 }, 59690 uccode={ 0x1F67, 0x3B9 }, 59691 unicodeslot=0x1FA7, 59692 }, 59693 [0x1FA8]={ 59694 category="lt", 59695 contextname="greekOmegaiotasubpsili", 59696 description="GREEK CAPITAL LETTER OMEGA WITH PSILI AND PROSGEGRAMMENI", 59697 direction="l", 59698 lccode=0x1FA0, 59699 linebreak="al", 59700 shcode=0x3A9, 59701 specials={ "char", 0x1F68, 0x345 }, 59702 unicodeslot=0x1FA8, 59703 }, 59704 [0x1FA9]={ 59705 category="lt", 59706 contextname="greekOmegaiotasubdasia", 59707 description="GREEK CAPITAL LETTER OMEGA WITH DASIA AND PROSGEGRAMMENI", 59708 direction="l", 59709 lccode=0x1FA1, 59710 linebreak="al", 59711 shcode=0x3A9, 59712 specials={ "char", 0x1F69, 0x345 }, 59713 unicodeslot=0x1FA9, 59714 }, 59715 [0x1FAA]={ 59716 category="lt", 59717 contextname="greekOmegaiotasubpsilivaria", 59718 description="GREEK CAPITAL LETTER OMEGA WITH PSILI AND VARIA AND PROSGEGRAMMENI", 59719 direction="l", 59720 lccode=0x1FA2, 59721 linebreak="al", 59722 shcode=0x3A9, 59723 specials={ "char", 0x1F6A, 0x345 }, 59724 unicodeslot=0x1FAA, 59725 }, 59726 [0x1FAB]={ 59727 category="lt", 59728 contextname="greekOmegaiotasubdasiavaria", 59729 description="GREEK CAPITAL LETTER OMEGA WITH DASIA AND VARIA AND PROSGEGRAMMENI", 59730 direction="l", 59731 lccode=0x1FA3, 59732 linebreak="al", 59733 shcode=0x3A9, 59734 specials={ "char", 0x1F6B, 0x345 }, 59735 unicodeslot=0x1FAB, 59736 }, 59737 [0x1FAC]={ 59738 category="lt", 59739 contextname="greekOmegaiotasubpsilitonos", 59740 description="GREEK CAPITAL LETTER OMEGA WITH PSILI AND OXIA AND PROSGEGRAMMENI", 59741 direction="l", 59742 lccode=0x1FA4, 59743 linebreak="al", 59744 shcode=0x3A9, 59745 specials={ "char", 0x1F6C, 0x345 }, 59746 unicodeslot=0x1FAC, 59747 }, 59748 [0x1FAD]={ 59749 category="lt", 59750 contextname="greekOmegaiotasubdasiatonos", 59751 description="GREEK CAPITAL LETTER OMEGA WITH DASIA AND OXIA AND PROSGEGRAMMENI", 59752 direction="l", 59753 lccode=0x1FA5, 59754 linebreak="al", 59755 shcode=0x3A9, 59756 specials={ "char", 0x1F6D, 0x345 }, 59757 unicodeslot=0x1FAD, 59758 }, 59759 [0x1FAE]={ 59760 category="lt", 59761 contextname="greekOmegaiotasubpsiliperispomeni", 59762 description="GREEK CAPITAL LETTER OMEGA WITH PSILI AND PERISPOMENI AND PROSGEGRAMMENI", 59763 direction="l", 59764 lccode=0x1FA6, 59765 linebreak="al", 59766 shcode=0x3A9, 59767 specials={ "char", 0x1F6E, 0x345 }, 59768 unicodeslot=0x1FAE, 59769 }, 59770 [0x1FAF]={ 59771 category="lt", 59772 contextname="greekOmegaiotasubdasiaperispomeni", 59773 description="GREEK CAPITAL LETTER OMEGA WITH DASIA AND PERISPOMENI AND PROSGEGRAMMENI", 59774 direction="l", 59775 lccode=0x1FA7, 59776 linebreak="al", 59777 shcode=0x3A9, 59778 specials={ "char", 0x1F6F, 0x345 }, 59779 unicodeslot=0x1FAF, 59780 }, 59781 [0x1FB0]={ 59782 category="ll", 59783 contextname="greekalphavrachy", 59784 description="GREEK SMALL LETTER ALPHA WITH VRACHY", 59785 direction="l", 59786 linebreak="al", 59787 shcode=0x3B1, 59788 specials={ "char", 0x3B1, 0x306 }, 59789 uccode=0x1FB8, 59790 unicodeslot=0x1FB0, 59791 }, 59792 [0x1FB1]={ 59793 category="ll", 59794 contextname="greekalphamacron", 59795 description="GREEK SMALL LETTER ALPHA WITH MACRON", 59796 direction="l", 59797 linebreak="al", 59798 shcode=0x3B1, 59799 specials={ "char", 0x3B1, 0x304 }, 59800 uccode=0x1FB9, 59801 unicodeslot=0x1FB1, 59802 }, 59803 [0x1FB2]={ 59804 category="ll", 59805 contextname="greekalphaiotasubvaria", 59806 description="GREEK SMALL LETTER ALPHA WITH VARIA AND YPOGEGRAMMENI", 59807 direction="l", 59808 linebreak="al", 59809 shcode=0x3B1, 59810 specials={ "char", 0x1F70, 0x345 }, 59811 uccode={ 0x1F70, 0x3B9 }, 59812 unicodeslot=0x1FB2, 59813 }, 59814 [0x1FB3]={ 59815 category="ll", 59816 contextname="greekalphaiotasub", 59817 description="GREEK SMALL LETTER ALPHA WITH YPOGEGRAMMENI", 59818 direction="l", 59819 linebreak="al", 59820 shcode=0x3B1, 59821 specials={ "char", 0x3B1, 0x345 }, 59822 uccode={ 0x3B1, 0x3B9 }, 59823 unicodeslot=0x1FB3, 59824 }, 59825 [0x1FB4]={ 59826 category="ll", 59827 contextname="greekalphaiotasubtonos", 59828 description="GREEK SMALL LETTER ALPHA WITH OXIA AND YPOGEGRAMMENI", 59829 direction="l", 59830 linebreak="al", 59831 shcode=0x3B1, 59832 specials={ "char", 0x3AC, 0x345 }, 59833 uccode={ 0x3AC, 0x3B9 }, 59834 unicodeslot=0x1FB4, 59835 }, 59836 [0x1FB6]={ 59837 category="ll", 59838 contextname="greekalphaperispomeni", 59839 description="GREEK SMALL LETTER ALPHA WITH PERISPOMENI", 59840 direction="l", 59841 linebreak="al", 59842 shcode=0x3B1, 59843 specials={ "char", 0x3B1, 0x342 }, 59844 uccode={ 0x3B1, 0x342 }, 59845 unicodeslot=0x1FB6, 59846 }, 59847 [0x1FB7]={ 59848 category="ll", 59849 contextname="greekalphaiotasubperispomeni", 59850 description="GREEK SMALL LETTER ALPHA WITH PERISPOMENI AND YPOGEGRAMMENI", 59851 direction="l", 59852 linebreak="al", 59853 shcode=0x3B1, 59854 specials={ "char", 0x1FB6, 0x345 }, 59855 uccode={ 0x3B1, 0x342, 0x3B9 }, 59856 unicodeslot=0x1FB7, 59857 }, 59858 [0x1FB8]={ 59859 category="lu", 59860 contextname="greekAlphavrachy", 59861 description="GREEK CAPITAL LETTER ALPHA WITH VRACHY", 59862 direction="l", 59863 lccode=0x1FB0, 59864 linebreak="al", 59865 shcode=0x391, 59866 specials={ "char", 0x391, 0x306 }, 59867 unicodeslot=0x1FB8, 59868 }, 59869 [0x1FB9]={ 59870 category="lu", 59871 contextname="greekAlphamacron", 59872 description="GREEK CAPITAL LETTER ALPHA WITH MACRON", 59873 direction="l", 59874 lccode=0x1FB1, 59875 linebreak="al", 59876 shcode=0x391, 59877 specials={ "char", 0x391, 0x304 }, 59878 unicodeslot=0x1FB9, 59879 }, 59880 [0x1FBA]={ 59881 category="lu", 59882 contextname="greekAlphavaria", 59883 description="GREEK CAPITAL LETTER ALPHA WITH VARIA", 59884 direction="l", 59885 lccode=0x1F70, 59886 linebreak="al", 59887 shcode=0x391, 59888 specials={ "char", 0x391, 0x300 }, 59889 unicodeslot=0x1FBA, 59890 }, 59891 [0x1FBB]={ 59892 category="lu", 59893 comment="conflict: greekAlphatonos", 59894 description="GREEK CAPITAL LETTER ALPHA WITH OXIA", 59895 direction="l", 59896 lccode=0x1F71, 59897 linebreak="al", 59898 shcode=0x391, 59899 specials={ "char", 0x386 }, 59900 unicodeslot=0x1FBB, 59901 }, 59902 [0x1FBC]={ 59903 category="lt", 59904 contextname="greekAlphaiotasub", 59905 description="GREEK CAPITAL LETTER ALPHA WITH PROSGEGRAMMENI", 59906 direction="l", 59907 lccode=0x1FB3, 59908 linebreak="al", 59909 shcode=0x391, 59910 specials={ "char", 0x391, 0x345 }, 59911 unicodeslot=0x1FBC, 59912 }, 59913 [0x1FBD]={ 59914 category="sk", 59915 contextname="greekCoronis", 59916 description="GREEK KORONIS", 59917 direction="on", 59918 linebreak="al", 59919 specials={ "compat", 0x20, 0x313 }, 59920 unicodeslot=0x1FBD, 59921 }, 59922 [0x1FBE]={ 59923 category="ll", 59924 contextname="greekprosgegrammeni", 59925 description="GREEK PROSGEGRAMMENI", 59926 direction="l", 59927 linebreak="al", 59928 specials={ "char", 0x3B9 }, 59929 uccode=0x3B9, 59930 unicodeslot=0x1FBE, 59931 }, 59932 [0x1FBF]={ 59933 category="sk", 59934 contextname="greekpsili", 59935 description="GREEK PSILI", 59936 direction="on", 59937 linebreak="al", 59938 specials={ "compat", 0x20, 0x313 }, 59939 unicodeslot=0x1FBF, 59940 }, 59941 [0x1FC0]={ 59942 category="sk", 59943 contextname="greekperispomeni", 59944 description="GREEK PERISPOMENI", 59945 direction="on", 59946 linebreak="al", 59947 specials={ "compat", 0x20, 0x342 }, 59948 unicodeslot=0x1FC0, 59949 }, 59950 [0x1FC1]={ 59951 category="sk", 59952 contextname="greekdialytikaperispomeni", 59953 description="GREEK DIALYTIKA AND PERISPOMENI", 59954 direction="on", 59955 linebreak="al", 59956 specials={ "char", 0xA8, 0x342 }, 59957 unicodeslot=0x1FC1, 59958 }, 59959 [0x1FC2]={ 59960 category="ll", 59961 contextname="greeketaiotasubvaria", 59962 description="GREEK SMALL LETTER ETA WITH VARIA AND YPOGEGRAMMENI", 59963 direction="l", 59964 linebreak="al", 59965 shcode=0x3B7, 59966 specials={ "char", 0x1F74, 0x345 }, 59967 uccode={ 0x1F74, 0x3B9 }, 59968 unicodeslot=0x1FC2, 59969 }, 59970 [0x1FC3]={ 59971 category="ll", 59972 contextname="greeketaiotasub", 59973 description="GREEK SMALL LETTER ETA WITH YPOGEGRAMMENI", 59974 direction="l", 59975 linebreak="al", 59976 shcode=0x3B7, 59977 specials={ "char", 0x3B7, 0x345 }, 59978 uccode={ 0x3B7, 0x3B9 }, 59979 unicodeslot=0x1FC3, 59980 }, 59981 [0x1FC4]={ 59982 category="ll", 59983 contextname="greeketaiotasubtonos", 59984 description="GREEK SMALL LETTER ETA WITH OXIA AND YPOGEGRAMMENI", 59985 direction="l", 59986 linebreak="al", 59987 shcode=0x3B7, 59988 specials={ "char", 0x3AE, 0x345 }, 59989 uccode={ 0x3AE, 0x3B9 }, 59990 unicodeslot=0x1FC4, 59991 }, 59992 [0x1FC6]={ 59993 category="ll", 59994 contextname="greeketaperispomeni", 59995 description="GREEK SMALL LETTER ETA WITH PERISPOMENI", 59996 direction="l", 59997 linebreak="al", 59998 shcode=0x3B7, 59999 specials={ "char", 0x3B7, 0x342 }, 60000 uccode={ 0x3B7, 0x342 }, 60001 unicodeslot=0x1FC6, 60002 }, 60003 [0x1FC7]={ 60004 category="ll", 60005 contextname="greeketaiotasubperispomeni", 60006 description="GREEK SMALL LETTER ETA WITH PERISPOMENI AND YPOGEGRAMMENI", 60007 direction="l", 60008 linebreak="al", 60009 shcode=0x3B7, 60010 specials={ "char", 0x1FC6, 0x345 }, 60011 uccode={ 0x3B7, 0x342, 0x3B9 }, 60012 unicodeslot=0x1FC7, 60013 }, 60014 [0x1FC8]={ 60015 category="lu", 60016 contextname="greekEpsilonvaria", 60017 description="GREEK CAPITAL LETTER EPSILON WITH VARIA", 60018 direction="l", 60019 lccode=0x1F72, 60020 linebreak="al", 60021 shcode=0x395, 60022 specials={ "char", 0x395, 0x300 }, 60023 unicodeslot=0x1FC8, 60024 }, 60025 [0x1FC9]={ 60026 category="lu", 60027 comment="conflict: greekEpsilontonos", 60028 description="GREEK CAPITAL LETTER EPSILON WITH OXIA", 60029 direction="l", 60030 lccode=0x1F73, 60031 linebreak="al", 60032 shcode=0x395, 60033 specials={ "char", 0x388 }, 60034 unicodeslot=0x1FC9, 60035 }, 60036 [0x1FCA]={ 60037 category="lu", 60038 contextname="greekEtavaria", 60039 description="GREEK CAPITAL LETTER ETA WITH VARIA", 60040 direction="l", 60041 lccode=0x1F74, 60042 linebreak="al", 60043 shcode=0x397, 60044 specials={ "char", 0x397, 0x300 }, 60045 unicodeslot=0x1FCA, 60046 }, 60047 [0x1FCB]={ 60048 category="lu", 60049 comment="conflict: greekEtatonos", 60050 description="GREEK CAPITAL LETTER ETA WITH OXIA", 60051 direction="l", 60052 lccode=0x1F75, 60053 linebreak="al", 60054 shcode=0x397, 60055 specials={ "char", 0x389 }, 60056 unicodeslot=0x1FCB, 60057 }, 60058 [0x1FCC]={ 60059 category="lt", 60060 contextname="greekEtaiotasub", 60061 description="GREEK CAPITAL LETTER ETA WITH PROSGEGRAMMENI", 60062 direction="l", 60063 lccode=0x1FC3, 60064 linebreak="al", 60065 shcode=0x397, 60066 specials={ "char", 0x397, 0x345 }, 60067 unicodeslot=0x1FCC, 60068 }, 60069 [0x1FCD]={ 60070 category="sk", 60071 contextname="greekpsilivaria", 60072 description="GREEK PSILI AND VARIA", 60073 direction="on", 60074 linebreak="al", 60075 specials={ "char", 0x1FBF, 0x300 }, 60076 unicodeslot=0x1FCD, 60077 }, 60078 [0x1FCE]={ 60079 category="sk", 60080 comment="conflict: greekpsilitonos", 60081 description="GREEK PSILI AND OXIA", 60082 direction="on", 60083 linebreak="al", 60084 specials={ "char", 0x1FBF, 0x301 }, 60085 unicodeslot=0x1FCE, 60086 }, 60087 [0x1FCF]={ 60088 category="sk", 60089 contextname="greekpsiliperispomeni", 60090 description="GREEK PSILI AND PERISPOMENI", 60091 direction="on", 60092 linebreak="al", 60093 specials={ "char", 0x1FBF, 0x342 }, 60094 unicodeslot=0x1FCF, 60095 }, 60096 [0x1FD0]={ 60097 category="ll", 60098 contextname="greekiotavrachy", 60099 description="GREEK SMALL LETTER IOTA WITH VRACHY", 60100 direction="l", 60101 linebreak="al", 60102 shcode=0x3B9, 60103 specials={ "char", 0x3B9, 0x306 }, 60104 uccode=0x1FD8, 60105 unicodeslot=0x1FD0, 60106 }, 60107 [0x1FD1]={ 60108 category="ll", 60109 contextname="greekiotamacron", 60110 description="GREEK SMALL LETTER IOTA WITH MACRON", 60111 direction="l", 60112 linebreak="al", 60113 shcode=0x3B9, 60114 specials={ "char", 0x3B9, 0x304 }, 60115 uccode=0x1FD9, 60116 unicodeslot=0x1FD1, 60117 }, 60118 [0x1FD2]={ 60119 category="ll", 60120 contextname="greekiotadialytikavaria", 60121 description="GREEK SMALL LETTER IOTA WITH DIALYTIKA AND VARIA", 60122 direction="l", 60123 linebreak="al", 60124 shcode=0x3B9, 60125 specials={ "char", 0x3CA, 0x300 }, 60126 uccode={ 0x3B9, 0x308, 0x300 }, 60127 unicodeslot=0x1FD2, 60128 }, 60129 [0x1FD3]={ 60130 category="ll", 60131 comment="conflict: greekiotadialytikatonos", 60132 description="GREEK SMALL LETTER IOTA WITH DIALYTIKA AND OXIA", 60133 direction="l", 60134 linebreak="al", 60135 shcode=0x3B9, 60136 specials={ "char", 0x390 }, 60137 uccode={ 0x3B9, 0x308, 0x301 }, 60138 unicodeslot=0x1FD3, 60139 }, 60140 [0x1FD6]={ 60141 category="ll", 60142 contextname="greekiotaperispomeni", 60143 description="GREEK SMALL LETTER IOTA WITH PERISPOMENI", 60144 direction="l", 60145 linebreak="al", 60146 shcode=0x3B9, 60147 specials={ "char", 0x3B9, 0x342 }, 60148 uccode={ 0x3B9, 0x342 }, 60149 unicodeslot=0x1FD6, 60150 }, 60151 [0x1FD7]={ 60152 category="ll", 60153 contextname="greekiotadialytikaperispomeni", 60154 description="GREEK SMALL LETTER IOTA WITH DIALYTIKA AND PERISPOMENI", 60155 direction="l", 60156 linebreak="al", 60157 shcode=0x3B9, 60158 specials={ "char", 0x3CA, 0x342 }, 60159 uccode={ 0x3B9, 0x308, 0x342 }, 60160 unicodeslot=0x1FD7, 60161 }, 60162 [0x1FD8]={ 60163 category="lu", 60164 contextname="greekIotavrachy", 60165 description="GREEK CAPITAL LETTER IOTA WITH VRACHY", 60166 direction="l", 60167 lccode=0x1FD0, 60168 linebreak="al", 60169 shcode=0x399, 60170 specials={ "char", 0x399, 0x306 }, 60171 unicodeslot=0x1FD8, 60172 }, 60173 [0x1FD9]={ 60174 category="lu", 60175 contextname="greekIotamacron", 60176 description="GREEK CAPITAL LETTER IOTA WITH MACRON", 60177 direction="l", 60178 lccode=0x1FD1, 60179 linebreak="al", 60180 shcode=0x399, 60181 specials={ "char", 0x399, 0x304 }, 60182 unicodeslot=0x1FD9, 60183 }, 60184 [0x1FDA]={ 60185 category="lu", 60186 contextname="greekIotavaria", 60187 description="GREEK CAPITAL LETTER IOTA WITH VARIA", 60188 direction="l", 60189 lccode=0x1F76, 60190 linebreak="al", 60191 shcode=0x399, 60192 specials={ "char", 0x399, 0x300 }, 60193 unicodeslot=0x1FDA, 60194 }, 60195 [0x1FDB]={ 60196 category="lu", 60197 comment="conflict: greekIotatonos", 60198 description="GREEK CAPITAL LETTER IOTA WITH OXIA", 60199 direction="l", 60200 lccode=0x1F77, 60201 linebreak="al", 60202 shcode=0x399, 60203 specials={ "char", 0x38A }, 60204 unicodeslot=0x1FDB, 60205 }, 60206 [0x1FDD]={ 60207 category="sk", 60208 contextname="greekdasiavaria", 60209 description="GREEK DASIA AND VARIA", 60210 direction="on", 60211 linebreak="al", 60212 specials={ "char", 0x1FFE, 0x300 }, 60213 unicodeslot=0x1FDD, 60214 }, 60215 [0x1FDE]={ 60216 category="sk", 60217 comment="conflict: greekdasiatonos", 60218 description="GREEK DASIA AND OXIA", 60219 direction="on", 60220 linebreak="al", 60221 specials={ "char", 0x1FFE, 0x301 }, 60222 unicodeslot=0x1FDE, 60223 }, 60224 [0x1FDF]={ 60225 category="sk", 60226 contextname="greekdasiaperispomeni", 60227 description="GREEK DASIA AND PERISPOMENI", 60228 direction="on", 60229 linebreak="al", 60230 specials={ "char", 0x1FFE, 0x342 }, 60231 unicodeslot=0x1FDF, 60232 }, 60233 [0x1FE0]={ 60234 category="ll", 60235 contextname="greekupsilonvrachy", 60236 description="GREEK SMALL LETTER UPSILON WITH VRACHY", 60237 direction="l", 60238 linebreak="al", 60239 shcode=0x3C5, 60240 specials={ "char", 0x3C5, 0x306 }, 60241 uccode=0x1FE8, 60242 unicodeslot=0x1FE0, 60243 }, 60244 [0x1FE1]={ 60245 category="ll", 60246 contextname="greekupsilonmacron", 60247 description="GREEK SMALL LETTER UPSILON WITH MACRON", 60248 direction="l", 60249 linebreak="al", 60250 shcode=0x3C5, 60251 specials={ "char", 0x3C5, 0x304 }, 60252 uccode=0x1FE9, 60253 unicodeslot=0x1FE1, 60254 }, 60255 [0x1FE2]={ 60256 category="ll", 60257 contextname="greekupsilondialytikavaria", 60258 description="GREEK SMALL LETTER UPSILON WITH DIALYTIKA AND VARIA", 60259 direction="l", 60260 linebreak="al", 60261 shcode=0x3C5, 60262 specials={ "char", 0x3CB, 0x300 }, 60263 uccode={ 0x3C5, 0x308, 0x300 }, 60264 unicodeslot=0x1FE2, 60265 }, 60266 [0x1FE3]={ 60267 category="ll", 60268 comment="conflict: greekupsilondialytikatonos", 60269 description="GREEK SMALL LETTER UPSILON WITH DIALYTIKA AND OXIA", 60270 direction="l", 60271 linebreak="al", 60272 shcode=0x3C5, 60273 specials={ "char", 0x3B0 }, 60274 uccode={ 0x3C5, 0x308, 0x301 }, 60275 unicodeslot=0x1FE3, 60276 }, 60277 [0x1FE4]={ 60278 category="ll", 60279 contextname="greekrhopsili", 60280 description="GREEK SMALL LETTER RHO WITH PSILI", 60281 direction="l", 60282 linebreak="al", 60283 shcode=0x3C1, 60284 specials={ "char", 0x3C1, 0x313 }, 60285 uccode={ 0x3C1, 0x313 }, 60286 unicodeslot=0x1FE4, 60287 }, 60288 [0x1FE5]={ 60289 category="ll", 60290 contextname="greekrhodasia", 60291 description="GREEK SMALL LETTER RHO WITH DASIA", 60292 direction="l", 60293 linebreak="al", 60294 shcode=0x3C1, 60295 specials={ "char", 0x3C1, 0x314 }, 60296 uccode=0x1FEC, 60297 unicodeslot=0x1FE5, 60298 }, 60299 [0x1FE6]={ 60300 category="ll", 60301 contextname="greekupsilonperispomeni", 60302 description="GREEK SMALL LETTER UPSILON WITH PERISPOMENI", 60303 direction="l", 60304 linebreak="al", 60305 shcode=0x3C5, 60306 specials={ "char", 0x3C5, 0x342 }, 60307 uccode={ 0x3C5, 0x342 }, 60308 unicodeslot=0x1FE6, 60309 }, 60310 [0x1FE7]={ 60311 category="ll", 60312 contextname="greekupsilondialytikaperispomeni", 60313 description="GREEK SMALL LETTER UPSILON WITH DIALYTIKA AND PERISPOMENI", 60314 direction="l", 60315 linebreak="al", 60316 shcode=0x3C5, 60317 specials={ "char", 0x3CB, 0x342 }, 60318 uccode={ 0x3C5, 0x308, 0x342 }, 60319 unicodeslot=0x1FE7, 60320 }, 60321 [0x1FE8]={ 60322 category="lu", 60323 contextname="greekUpsilonvrachy", 60324 description="GREEK CAPITAL LETTER UPSILON WITH VRACHY", 60325 direction="l", 60326 lccode=0x1FE0, 60327 linebreak="al", 60328 shcode=0x3A5, 60329 specials={ "char", 0x3A5, 0x306 }, 60330 unicodeslot=0x1FE8, 60331 }, 60332 [0x1FE9]={ 60333 category="lu", 60334 contextname="greekUpsilonmacron", 60335 description="GREEK CAPITAL LETTER UPSILON WITH MACRON", 60336 direction="l", 60337 lccode=0x1FE1, 60338 linebreak="al", 60339 shcode=0x3A5, 60340 specials={ "char", 0x3A5, 0x304 }, 60341 unicodeslot=0x1FE9, 60342 }, 60343 [0x1FEA]={ 60344 category="lu", 60345 contextname="greekUpsilonvaria", 60346 description="GREEK CAPITAL LETTER UPSILON WITH VARIA", 60347 direction="l", 60348 lccode=0x1F7A, 60349 linebreak="al", 60350 shcode=0x3A5, 60351 specials={ "char", 0x3A5, 0x300 }, 60352 unicodeslot=0x1FEA, 60353 }, 60354 [0x1FEB]={ 60355 category="lu", 60356 comment="conflict: greekUpsilontonos", 60357 description="GREEK CAPITAL LETTER UPSILON WITH OXIA", 60358 direction="l", 60359 lccode=0x1F7B, 60360 linebreak="al", 60361 shcode=0x3A5, 60362 specials={ "char", 0x38E }, 60363 unicodeslot=0x1FEB, 60364 }, 60365 [0x1FEC]={ 60366 category="lu", 60367 contextname="greekRhodasia", 60368 description="GREEK CAPITAL LETTER RHO WITH DASIA", 60369 direction="l", 60370 lccode=0x1FE5, 60371 linebreak="al", 60372 shcode=0x3A1, 60373 specials={ "char", 0x3A1, 0x314 }, 60374 unicodeslot=0x1FEC, 60375 }, 60376 [0x1FED]={ 60377 category="sk", 60378 contextname="greekdialytikavaria", 60379 description="GREEK DIALYTIKA AND VARIA", 60380 direction="on", 60381 linebreak="al", 60382 specials={ "char", 0xA8, 0x300 }, 60383 unicodeslot=0x1FED, 60384 }, 60385 [0x1FEE]={ 60386 category="sk", 60387 comment="conflict: greekdialytikatonos", 60388 description="GREEK DIALYTIKA AND OXIA", 60389 direction="on", 60390 linebreak="al", 60391 specials={ "char", 0x385 }, 60392 unicodeslot=0x1FEE, 60393 }, 60394 [0x1FEF]={ 60395 category="sk", 60396 contextname="greekvaria", 60397 description="GREEK VARIA", 60398 direction="on", 60399 linebreak="al", 60400 specials={ "char", 0x60 }, 60401 unicodeslot=0x1FEF, 60402 }, 60403 [0x1FF2]={ 60404 category="ll", 60405 contextname="greekomegaiotasubvaria", 60406 description="GREEK SMALL LETTER OMEGA WITH VARIA AND YPOGEGRAMMENI", 60407 direction="l", 60408 linebreak="al", 60409 shcode=0x3C9, 60410 specials={ "char", 0x1F7C, 0x345 }, 60411 uccode={ 0x1F7C, 0x3B9 }, 60412 unicodeslot=0x1FF2, 60413 }, 60414 [0x1FF3]={ 60415 category="ll", 60416 contextname="greekomegaiotasub", 60417 description="GREEK SMALL LETTER OMEGA WITH YPOGEGRAMMENI", 60418 direction="l", 60419 linebreak="al", 60420 shcode=0x3C9, 60421 specials={ "char", 0x3C9, 0x345 }, 60422 uccode={ 0x3C9, 0x3B9 }, 60423 unicodeslot=0x1FF3, 60424 }, 60425 [0x1FF4]={ 60426 category="ll", 60427 contextname="greekomegaiotasubtonos", 60428 description="GREEK SMALL LETTER OMEGA WITH OXIA AND YPOGEGRAMMENI", 60429 direction="l", 60430 linebreak="al", 60431 shcode=0x3C9, 60432 specials={ "char", 0x3CE, 0x345 }, 60433 uccode={ 0x3CE, 0x3B9 }, 60434 unicodeslot=0x1FF4, 60435 }, 60436 [0x1FF6]={ 60437 category="ll", 60438 contextname="greekomegaperispomeni", 60439 description="GREEK SMALL LETTER OMEGA WITH PERISPOMENI", 60440 direction="l", 60441 linebreak="al", 60442 shcode=0x3C9, 60443 specials={ "char", 0x3C9, 0x342 }, 60444 uccode={ 0x3C9, 0x342 }, 60445 unicodeslot=0x1FF6, 60446 }, 60447 [0x1FF7]={ 60448 category="ll", 60449 contextname="greekomegaiotasubperispomeni", 60450 description="GREEK SMALL LETTER OMEGA WITH PERISPOMENI AND YPOGEGRAMMENI", 60451 direction="l", 60452 linebreak="al", 60453 shcode=0x3C9, 60454 specials={ "char", 0x1FF6, 0x345 }, 60455 uccode={ 0x3C9, 0x342, 0x3B9 }, 60456 unicodeslot=0x1FF7, 60457 }, 60458 [0x1FF8]={ 60459 category="lu", 60460 contextname="greekOmicronvaria", 60461 description="GREEK CAPITAL LETTER OMICRON WITH VARIA", 60462 direction="l", 60463 lccode=0x1F78, 60464 linebreak="al", 60465 shcode=0x39F, 60466 specials={ "char", 0x39F, 0x300 }, 60467 unicodeslot=0x1FF8, 60468 }, 60469 [0x1FF9]={ 60470 category="lu", 60471 comment="conflict: greekOmicrontonos", 60472 description="GREEK CAPITAL LETTER OMICRON WITH OXIA", 60473 direction="l", 60474 lccode=0x1F79, 60475 linebreak="al", 60476 shcode=0x39F, 60477 specials={ "char", 0x38C }, 60478 unicodeslot=0x1FF9, 60479 }, 60480 [0x1FFA]={ 60481 category="lu", 60482 contextname="greekOmegavaria", 60483 description="GREEK CAPITAL LETTER OMEGA WITH VARIA", 60484 direction="l", 60485 lccode=0x1F7C, 60486 linebreak="al", 60487 shcode=0x3A9, 60488 specials={ "char", 0x3A9, 0x300 }, 60489 unicodeslot=0x1FFA, 60490 }, 60491 [0x1FFB]={ 60492 category="lu", 60493 comment="conflict: greekOmegatonos", 60494 description="GREEK CAPITAL LETTER OMEGA WITH OXIA", 60495 direction="l", 60496 lccode=0x1F7D, 60497 linebreak="al", 60498 shcode=0x3A9, 60499 specials={ "char", 0x38F }, 60500 unicodeslot=0x1FFB, 60501 }, 60502 [0x1FFC]={ 60503 category="lt", 60504 contextname="greekOmegaiotasub", 60505 description="GREEK CAPITAL LETTER OMEGA WITH PROSGEGRAMMENI", 60506 direction="l", 60507 lccode=0x1FF3, 60508 linebreak="al", 60509 shcode=0x3A9, 60510 specials={ "char", 0x3A9, 0x345 }, 60511 unicodeslot=0x1FFC, 60512 }, 60513 [0x1FFD]={ 60514 category="sk", 60515 contextname="greekoxia", 60516 description="GREEK OXIA", 60517 direction="on", 60518 linebreak="bb", 60519 specials={ "char", 0xB4 }, 60520 unicodeslot=0x1FFD, 60521 }, 60522 [0x1FFE]={ 60523 category="sk", 60524 contextname="greekdasia", 60525 description="GREEK DASIA", 60526 direction="on", 60527 linebreak="al", 60528 specials={ "compat", 0x20, 0x314 }, 60529 unicodeslot=0x1FFE, 60530 }, 60531 [0x2000]={ 60532 category="zs", 60533 contextname="enquad", 60534 description="EN QUAD", 60535 direction="ws", 60536 linebreak="ba", 60537 specials={ "char", 0x2002 }, 60538 unicodeslot=0x2000, 60539 }, 60540 [0x2001]={ 60541 category="zs", 60542 contextname="emquad", 60543 description="EM QUAD", 60544 direction="ws", 60545 linebreak="ba", 60546 specials={ "char", 0x2003 }, 60547 synonyms={ "mutton quad" }, 60548 unicodeslot=0x2001, 60549 }, 60550 [0x2002]={ 60551 category="zs", 60552 contextname="enspace", 60553 description="EN SPACE", 60554 direction="ws", 60555 linebreak="ba", 60556 specials={ "compat", 0x20 }, 60557 synonyms={ "nut" }, 60558 unicodeslot=0x2002, 60559 }, 60560 [0x2003]={ 60561 category="zs", 60562 contextname="emspace", 60563 description="EM SPACE", 60564 direction="ws", 60565 linebreak="ba", 60566 specials={ "compat", 0x20 }, 60567 synonyms={ "mutton" }, 60568 unicodeslot=0x2003, 60569 }, 60570 [0x2004]={ 60571 category="zs", 60572 contextname="threeperemspace", 60573 description="THREE-PER-EM SPACE", 60574 direction="ws", 60575 linebreak="ba", 60576 specials={ "compat", 0x20 }, 60577 synonyms={ "thick space" }, 60578 unicodeslot=0x2004, 60579 }, 60580 [0x2005]={ 60581 category="zs", 60582 contextname="fourperemspace", 60583 description="FOUR-PER-EM SPACE", 60584 direction="ws", 60585 linebreak="ba", 60586 specials={ "compat", 0x20 }, 60587 synonyms={ "mid space" }, 60588 unicodeslot=0x2005, 60589 }, 60590 [0x2006]={ 60591 category="zs", 60592 contextname="sixperemspace", 60593 description="SIX-PER-EM SPACE", 60594 direction="ws", 60595 linebreak="ba", 60596 specials={ "compat", 0x20 }, 60597 unicodeslot=0x2006, 60598 }, 60599 [0x2007]={ 60600 category="zs", 60601 contextname="figurespace", 60602 description="FIGURE SPACE", 60603 direction="ws", 60604 linebreak="gl", 60605 specials={ "nobreak", 0x20 }, 60606 unicodeslot=0x2007, 60607 }, 60608 [0x2008]={ 60609 category="zs", 60610 contextname="punctuationspace", 60611 description="PUNCTUATION SPACE", 60612 direction="ws", 60613 linebreak="ba", 60614 specials={ "compat", 0x20 }, 60615 unicodeslot=0x2008, 60616 }, 60617 [0x2009]={ 60618 category="zs", 60619 contextname="breakablethinspace", 60620 description="THIN SPACE", 60621 direction="ws", 60622 linebreak="ba", 60623 specials={ "compat", 0x20 }, 60624 unicodeslot=0x2009, 60625 }, 60626 [0x200A]={ 60627 category="zs", 60628 contextname="hairspace", 60629 description="HAIR SPACE", 60630 direction="ws", 60631 linebreak="ba", 60632 specials={ "compat", 0x20 }, 60633 unicodeslot=0x200A, 60634 }, 60635 [0x200B]={ 60636 category="cf", 60637 contextname="zerowidthspace", 60638 description="ZERO WIDTH SPACE", 60639 direction="bn", 60640 linebreak="zw", 60641 mathclass="ordinary", 60642 mathspec={ 60643 { 60644 class="ghost", 60645 group="whatever", 60646 meaning="notimes", 60647 name="notimes", 60648 }, 60649 }, 60650 synonyms={ "zwsp" }, 60651 unicodeslot=0x200B, 60652 }, 60653 [0x200C]={ 60654 arabic="u", 60655 category="cf", 60656 contextname="zwnj", 60657 description="ZERO WIDTH NON-JOINER", 60658 direction="bn", 60659 linebreak="cm", 60660 mongolian="nj", 60661 synonyms={ "zwnj" }, 60662 unicodeslot=0x200C, 60663 }, 60664 [0x200D]={ 60665 arabic="c", 60666 category="cf", 60667 contextname="zwj", 60668 description="ZERO WIDTH JOINER", 60669 direction="bn", 60670 linebreak="zwj", 60671 mongolian="nj", 60672 synonyms={ "zwj" }, 60673 unicodeslot=0x200D, 60674 }, 60675 [0x200E]={ 60676 category="cf", 60677 description="LEFT-TO-RIGHT MARK", 60678 direction="l", 60679 linebreak="cm", 60680 synonyms={ "lrm" }, 60681 unicodeslot=0x200E, 60682 }, 60683 [0x200F]={ 60684 category="cf", 60685 description="RIGHT-TO-LEFT MARK", 60686 direction="r", 60687 linebreak="cm", 60688 synonyms={ "rlm" }, 60689 unicodeslot=0x200F, 60690 }, 60691 [0x2010]={ 60692 category="pd", 60693 cjkwd="a", 60694 description="HYPHEN", 60695 direction="on", 60696 linebreak="ba", 60697 mongolian="nj", 60698 unicodeslot=0x2010, 60699 }, 60700 [0x2011]={ 60701 category="pd", 60702 description="NON-BREAKING HYPHEN", 60703 direction="on", 60704 linebreak="gl", 60705 mongolian="nj", 60706 specials={ "nobreak", 0x2010 }, 60707 unicodeslot=0x2011, 60708 }, 60709 [0x2012]={ 60710 category="pd", 60711 contextname="figuredash", 60712 contextspec={ "textminus" }, 60713 description="FIGURE DASH", 60714 direction="on", 60715 linebreak="ba", 60716 mongolian="nj", 60717 unicodeslot=0x2012, 60718 }, 60719 [0x2013]={ 60720 category="pd", 60721 cjkwd="a", 60722 contextname="endash", 60723 description="EN DASH", 60724 direction="on", 60725 linebreak="ba", 60726 mongolian="nj", 60727 unicodeslot=0x2013, 60728 }, 60729 [0x2014]={ 60730 category="pd", 60731 cjkwd="a", 60732 contextname="emdash", 60733 description="EM DASH", 60734 direction="on", 60735 linebreak="b2", 60736 mongolian="nj", 60737 unicodeslot=0x2014, 60738 }, 60739 [0x2015]={ 60740 category="pd", 60741 cjkwd="a", 60742 contextname="texthorizontalbar", 60743 description="HORIZONTAL BAR", 60744 direction="on", 60745 linebreak="ai", 60746 synonyms={ "quotation dash" }, 60747 unicodeslot=0x2015, 60748 }, 60749 [0x2016]={ 60750 category="po", 60751 cjkwd="a", 60752 description="DOUBLE VERTICAL LINE", 60753 direction="on", 60754 linebreak="ai", 60755 mathlist={ 0x7C, 0x7C }, 60756 mathspec={ 60757 { 60758 class="delimiter", 60759 name="Vert", 60760 }, 60761 --{ 60762 -- class="ordinary", 60763 -- name="Arrowvert", 60764 --}, 60765 { 60766 class="open", 60767 name="lVert", 60768 }, 60769 { 60770 class="middle", 60771 name="mVert", 60772 }, 60773 { 60774 class="close", 60775 name="rVert", 60776 }, 60777 { 60778 class="delimiter", 60779 name="doubleverticalbar", 60780 }, 60781 }, 60782 unicodeslot=0x2016, 60783 }, 60784 [0x2017]={ 60785 category="po", 60786 description="DOUBLE LOW LINE", 60787 direction="on", 60788 linebreak="al", 60789 specials={ "compat", 0x20, 0x333 }, 60790 synonyms={ "spacing double underscore" }, 60791 unicodeslot=0x2017, 60792 }, 60793 [0x2018]={ 60794 category="pi", 60795 cjkwd="a", 60796 contextname="quoteleft", 60797 description="LEFT SINGLE QUOTATION MARK", 60798 direction="on", 60799 linebreak="qu", 60800 synonyms={ "single turned comma quotation mark" }, 60801 unicodeslot=0x2018, 60802 variants={ 60803 [0xFE00]="non-fullwidth form", 60804 [0xFE01]="right-justified fullwidth form", 60805 }, 60806 }, 60807 [0x2019]={ 60808 category="pf", 60809 cjkwd="a", 60810 contextname="quoteright", 60811 description="RIGHT SINGLE QUOTATION MARK", 60812 direction="on", 60813 linebreak="qu", 60814 synonyms={ "apostrophe", "single comma quotation mark" }, 60815 unicodeslot=0x2019, 60816 variants={ 60817 [0xFE00]="non-fullwidth form", 60818 [0xFE01]="left-justified fullwidth form", 60819 }, 60820 }, 60821 [0x201A]={ 60822 category="ps", 60823 contextname="quotesinglebase", 60824 description="SINGLE LOW-0x0009 QUOTATION MARK", 60825 direction="on", 60826 linebreak="op", 60827 synonyms={ "low single comma quotation mark" }, 60828 unicodeslot=0x201A, 60829 }, 60830 [0x201B]={ 60831 category="pi", 60832 description="SINGLE HIGH-REVERSED-0x0009 QUOTATION MARK", 60833 direction="on", 60834 linebreak="qu", 60835 synonyms={ "single reversed comma quotation mark" }, 60836 unicodeslot=0x201B, 60837 }, 60838 [0x201C]={ 60839 category="pi", 60840 cjkwd="a", 60841 contextname="quotedblleft", 60842 description="LEFT DOUBLE QUOTATION MARK", 60843 direction="on", 60844 linebreak="qu", 60845 synonyms={ "double turned comma quotation mark" }, 60846 unicodeslot=0x201C, 60847 variants={ 60848 [0xFE00]="non-fullwidth form", 60849 [0xFE01]="right-justified fullwidth form", 60850 }, 60851 }, 60852 [0x201D]={ 60853 category="pf", 60854 cjkwd="a", 60855 contextname="quotedblright", 60856 description="RIGHT DOUBLE QUOTATION MARK", 60857 direction="on", 60858 linebreak="qu", 60859 synonyms={ "double comma quotation mark" }, 60860 unicodeslot=0x201D, 60861 variants={ 60862 [0xFE00]="non-fullwidth form", 60863 [0xFE01]="left-justified fullwidth form", 60864 }, 60865 }, 60866 [0x201E]={ 60867 category="ps", 60868 contextname="quotedblbase", 60869 description="DOUBLE LOW-0x0009 QUOTATION MARK", 60870 direction="on", 60871 linebreak="op", 60872 synonyms={ "low double comma quotation mark" }, 60873 unicodeslot=0x201E, 60874 }, 60875 [0x201F]={ 60876 category="pi", 60877 description="DOUBLE HIGH-REVERSED-0x0009 QUOTATION MARK", 60878 direction="on", 60879 linebreak="qu", 60880 synonyms={ "double reversed comma quotation mark" }, 60881 unicodeslot=0x201F, 60882 }, 60883 [0x2020]={ 60884 category="po", 60885 cjkwd="a", 60886 contextname="textdag", 60887 description="DAGGER", 60888 direction="on", 60889 linebreak="ai", 60890 mathspec={ 60891 { 60892 class="binary", 60893 name="dagger", 60894 }, 60895 { 60896 class="ordinary", 60897 name="dag", 60898 }, 60899 }, 60900 synonyms={ "long cross" }, 60901 unicodeslot=0x2020, 60902 }, 60903 [0x2021]={ 60904 category="po", 60905 cjkwd="a", 60906 contextname="textddag", 60907 description="DOUBLE DAGGER", 60908 direction="on", 60909 linebreak="ai", 60910 mathspec={ 60911 { 60912 class="binary", 60913 name="ddagger", 60914 }, 60915 { 60916 class="ordinary", 60917 name="ddag", 60918 }, 60919 }, 60920 synonyms={ "diesis" }, 60921 unicodeslot=0x2021, 60922 }, 60923 [0x2022]={ 60924 category="po", 60925 cjkwd="a", 60926 contextname="textbullet", 60927 description="BULLET", 60928 direction="on", 60929 linebreak="al", 60930 mathclass="binary", 60931 mathname="bullet", 60932 synonyms={ "black small circle" }, 60933 unicodeslot=0x2022, 60934 }, 60935 [0x2023]={ 60936 category="po", 60937 description="TRIANGULAR BULLET", 60938 direction="on", 60939 linebreak="al", 60940 unicodeslot=0x2023, 60941 }, 60942 [0x2024]={ 60943 category="po", 60944 cjkwd="a", 60945 description="ONE DOT LEADER", 60946 direction="on", 60947 linebreak="in", 60948 specials={ "compat", 0x2E }, 60949 unicodeslot=0x2024, 60950 }, 60951 [0x2025]={ 60952 category="po", 60953 cjkwd="a", 60954 description="TWO DOT LEADER", 60955 direction="on", 60956 linebreak="in", 60957 specials={ "compat", 0x2E, 0x2E }, 60958 unicodeslot=0x2025, 60959 }, 60960 [0x2026]={ 60961 category="po", 60962 cjkwd="a", 60963 contextname="textellipsis", 60964 description="HORIZONTAL ELLIPSIS", 60965 direction="on", 60966 linebreak="in", 60967 mathspec={ 60968 { 60969 class="ellipsis", 60970 group="punctuation", 60971 meaning="and so on", 60972 name="ldots", 60973 }, 60974 { 60975 class="ellipsis", 60976 name="dots", 60977 }, 60978 }, 60979 specials={ "compat", 0x2E, 0x2E, 0x2E }, 60980 synonyms={ "three dot leader" }, 60981 unicodeslot=0x2026, 60982 }, 60983 [0x2027]={ 60984 category="po", 60985 cjkwd="a", 60986 description="HYPHENATION POINT", 60987 direction="on", 60988 linebreak="ba", 60989 unicodeslot=0x2027, 60990 }, 60991 [0x2028]={ 60992 category="zl", 60993 description="LINE SEPARATOR", 60994 direction="ws", 60995 linebreak="bk", 60996 unicodeslot=0x2028, 60997 }, 60998 [0x2029]={ 60999 category="zp", 61000 description="PARAGRAPH SEPARATOR", 61001 direction="b", 61002 linebreak="bk", 61003 unicodeslot=0x2029, 61004 }, 61005 [0x202A]={ 61006 category="cf", 61007 description="LEFT-TO-RIGHT EMBEDDING", 61008 direction="lre", 61009 linebreak="cm", 61010 synonyms={ "lre" }, 61011 unicodeslot=0x202A, 61012 }, 61013 [0x202B]={ 61014 category="cf", 61015 description="RIGHT-TO-LEFT EMBEDDING", 61016 direction="rle", 61017 linebreak="cm", 61018 synonyms={ "rle" }, 61019 unicodeslot=0x202B, 61020 }, 61021 [0x202C]={ 61022 category="cf", 61023 description="POP DIRECTIONAL FORMATTING", 61024 direction="pdf", 61025 linebreak="cm", 61026 synonyms={ "pdf" }, 61027 unicodeslot=0x202C, 61028 }, 61029 [0x202D]={ 61030 category="cf", 61031 description="LEFT-TO-RIGHT OVERRIDE", 61032 direction="lro", 61033 linebreak="cm", 61034 synonyms={ "lro" }, 61035 unicodeslot=0x202D, 61036 }, 61037 [0x202E]={ 61038 category="cf", 61039 description="RIGHT-TO-LEFT OVERRIDE", 61040 direction="rlo", 61041 linebreak="cm", 61042 synonyms={ "rlo" }, 61043 unicodeslot=0x202E, 61044 }, 61045 [0x202F]={ 61046 arabic="u", 61047 category="zs", 61048 contextname="narrownobreakspace", 61049 description="NARROW NO-BREAK SPACE", 61050 direction="cs", 61051 linebreak="gl", 61052 mongolian="nj", 61053 specials={ "nobreak", 0x20 }, 61054 synonyms={ "nnbsp" }, 61055 unicodeslot=0x202F, 61056 }, 61057 [0x2030]={ 61058 category="po", 61059 cjkwd="a", 61060 contextname="perthousand", 61061 description="PER MILLE SIGN", 61062 direction="et", 61063 linebreak="po", 61064 synonyms={ "per thousand" }, 61065 unicodeslot=0x2030, 61066 }, 61067 [0x2031]={ 61068 category="po", 61069 description="PER TEN THOUSAND SIGN", 61070 direction="et", 61071 linebreak="po", 61072 unicodeslot=0x2031, 61073 }, 61074 [0x2032]={ 61075 category="po", 61076 cjkwd="a", 61077 description="PRIME", 61078 direction="et", 61079 linebreak="po", 61080 mathspec={ 61081 { 61082 class="prime", 61083 group="prime", 61084 meaning="prime", 61085 name="prime", 61086 }, 61087 { 61088 class="prime", 61089 group="postfix operator", 61090 meaning="derivative", 61091 name="derivativesymbol", 61092 }, 61093 }, 61094 synonyms={ "feet", "minutes" }, 61095 unicodeslot=0x2032, 61096 }, 61097 [0x2033]={ 61098 category="po", 61099 cjkwd="a", 61100 description="DOUBLE PRIME", 61101 direction="et", 61102 linebreak="po", 61103 mathspec={ 61104 { 61105 class="prime", 61106 group="prime", 61107 meaning="double prime", 61108 name="doubleprime", 61109 }, 61110 { 61111 class="prime", 61112 group="postfix operator", 61113 meaning="second derivative", 61114 name="secondderivativesymbol", 61115 }, 61116 }, 61117 specials={ "compat", 0x2032, 0x2032 }, 61118 synonyms={ "inches", "seconds" }, 61119 unicodeslot=0x2033, 61120 }, 61121 [0x2034]={ 61122 category="po", 61123 description="TRIPLE PRIME", 61124 direction="et", 61125 linebreak="po", 61126 mathspec={ 61127 { 61128 class="prime", 61129 group="prime", 61130 meaning="triple prime", 61131 name="tripleprime", 61132 }, 61133 { 61134 class="prime", 61135 group="postfix operator", 61136 meaning="third derivative", 61137 name="thirdderivativesymbol", 61138 }, 61139 }, 61140 specials={ "compat", 0x2032, 0x2032, 0x2032 }, 61141 unicodeslot=0x2034, 61142 }, 61143 [0x2035]={ 61144 category="po", 61145 cjkwd="a", 61146 description="REVERSED PRIME", 61147 direction="on", 61148 linebreak="po", 61149 mathclass="prime", 61150 mathgroup="prime", 61151 mathmeaning="reversed prime", 61152 mathname="reversedprime", 61153 unicodeslot=0x2035, 61154 }, 61155 [0x2036]={ 61156 category="po", 61157 description="REVERSED DOUBLE PRIME", 61158 direction="on", 61159 linebreak="po", 61160 mathclass="prime", 61161 mathgroup="prime", 61162 mathmeaning="reversed doubleprime", 61163 mathname="reverseddoubleprime", 61164 specials={ "compat", 0x2035, 0x2035 }, 61165 unicodeslot=0x2036, 61166 }, 61167 [0x2037]={ 61168 category="po", 61169 description="REVERSED TRIPLE PRIME", 61170 direction="on", 61171 linebreak="po", 61172 mathclass="prime", 61173 mathgroup="prime", 61174 mathmeaning="reversed triple prime", 61175 mathname="reversedtripleprime", 61176 specials={ "compat", 0x2035, 0x2035, 0x2035 }, 61177 unicodeslot=0x2037, 61178 }, 61179 [0x2038]={ 61180 category="po", 61181 description="CARET", 61182 direction="on", 61183 linebreak="al", 61184 unicodeslot=0x2038, 61185 }, 61186 [0x2039]={ 61187 category="pi", 61188 contextname="guilsingleleft", 61189 description="SINGLE LEFT-POINTING ANGLE QUOTATION MARK", 61190 direction="on", 61191 linebreak="qu", 61192 mirror=0x203A, 61193 synonyms={ "left pointing single guillemet" }, 61194 textclass="open", 61195 unicodeslot=0x2039, 61196 }, 61197 [0x203A]={ 61198 category="pf", 61199 contextname="guilsingleright", 61200 description="SINGLE RIGHT-POINTING ANGLE QUOTATION MARK", 61201 direction="on", 61202 linebreak="qu", 61203 mirror=0x2039, 61204 synonyms={ "right pointing single guillemet" }, 61205 textclass="close", 61206 unicodeslot=0x203A, 61207 }, 61208 [0x203B]={ 61209 category="po", 61210 cjkwd="a", 61211 description="REFERENCE MARK", 61212 direction="on", 61213 linebreak="ai", 61214 synonyms={ "japanese kome", "urdu paragraph separator" }, 61215 unicodeslot=0x203B, 61216 }, 61217 [0x203C]={ 61218 category="po", 61219 description="DOUBLE EXCLAMATION MARK", 61220 direction="on", 61221 linebreak="ns", 61222 specials={ "compat", 0x21, 0x21 }, 61223 unicodeslot=0x203C, 61224 variants=variants_emoji, 61225 }, 61226 [0x203D]={ 61227 category="po", 61228 description="INTERROBANG", 61229 direction="on", 61230 linebreak="ns", 61231 unicodeslot=0x203D, 61232 }, 61233 [0x203E]={ 61234 category="po", 61235 cjkwd="a", 61236 comment="mathspec={ { class=\"topaccent\", name=\"overbar\" }, { class=\"botaccent\", name=\"underbar\" } }\"", 61237 description="OVERLINE", 61238 direction="on", 61239 linebreak="al", 61240 mathextensible="l", 61241 mathfiller="barfill", 61242 mathspec={ 61243 { 61244 class="under", 61245 name="underbar", 61246 }, 61247 { 61248 class="over", 61249 name="overbar", 61250 }, 61251 }, 61252 mathstretch="h", 61253 specials={ "compat", 0x20, 0x305 }, 61254 synonyms={ "spacing overscore" }, 61255 unicodeslot=0x203E, 61256 }, 61257 [0x203F]={ 61258 category="pc", 61259 description="UNDERTIE", 61260 direction="on", 61261 linebreak="al", 61262 synonyms={ "greek enotikon" }, 61263 unicodeslot=0x203F, 61264 }, 61265 [0x2040]={ 61266 category="pc", 61267 description="CHARACTER TIE", 61268 direction="on", 61269 linebreak="al", 61270 synonyms={ "sequence concatenation" }, 61271 unicodeslot=0x2040, 61272 }, 61273 [0x2041]={ 61274 category="po", 61275 description="CARET INSERTION POINT", 61276 direction="on", 61277 linebreak="al", 61278 unicodeslot=0x2041, 61279 }, 61280 [0x2042]={ 61281 category="po", 61282 description="ASTERISM", 61283 direction="on", 61284 linebreak="al", 61285 unicodeslot=0x2042, 61286 }, 61287 [0x2043]={ 61288 category="po", 61289 description="HYPHEN BULLET", 61290 direction="on", 61291 linebreak="al", 61292 unicodeslot=0x2043, 61293 }, 61294 [0x2044]={ 61295 category="sm", 61296 contextname="textfraction", 61297 description="FRACTION SLASH", 61298 direction="cs", 61299 linebreak="is", 61300 synonyms={ "solidus" }, 61301 unicodeslot=0x2044, 61302 }, 61303 [0x2045]={ 61304 category="ps", 61305 description="LEFT SQUARE BRACKET WITH QUILL", 61306 direction="on", 61307 linebreak="op", 61308 mirror=0x2046, 61309 unicodeslot=0x2045, 61310 }, 61311 [0x2046]={ 61312 category="pe", 61313 description="RIGHT SQUARE BRACKET WITH QUILL", 61314 direction="on", 61315 linebreak="cl", 61316 mirror=0x2045, 61317 unicodeslot=0x2046, 61318 }, 61319 [0x2047]={ 61320 category="po", 61321 description="DOUBLE QUESTION MARK", 61322 direction="on", 61323 linebreak="ns", 61324 specials={ "compat", 0x3F, 0x3F }, 61325 unicodeslot=0x2047, 61326 }, 61327 [0x2048]={ 61328 category="po", 61329 description="QUESTION EXCLAMATION MARK", 61330 direction="on", 61331 linebreak="ns", 61332 specials={ "compat", 0x3F, 0x21 }, 61333 unicodeslot=0x2048, 61334 }, 61335 [0x2049]={ 61336 category="po", 61337 description="EXCLAMATION QUESTION MARK", 61338 direction="on", 61339 linebreak="ns", 61340 specials={ "compat", 0x21, 0x3F }, 61341 unicodeslot=0x2049, 61342 variants=variants_emoji, 61343 }, 61344 [0x204A]={ 61345 category="po", 61346 description="TIRONIAN SIGN ET", 61347 direction="on", 61348 linebreak="al", 61349 unicodeslot=0x204A, 61350 }, 61351 [0x204B]={ 61352 category="po", 61353 description="REVERSED PILCROW SIGN", 61354 direction="on", 61355 linebreak="al", 61356 unicodeslot=0x204B, 61357 }, 61358 [0x204C]={ 61359 category="po", 61360 description="BLACK LEFTWARDS BULLET", 61361 direction="on", 61362 linebreak="al", 61363 unicodeslot=0x204C, 61364 }, 61365 [0x204D]={ 61366 category="po", 61367 description="BLACK RIGHTWARDS BULLET", 61368 direction="on", 61369 linebreak="al", 61370 unicodeslot=0x204D, 61371 }, 61372 [0x204E]={ 61373 category="po", 61374 description="LOW ASTERISK", 61375 direction="on", 61376 linebreak="al", 61377 unicodeslot=0x204E, 61378 }, 61379 [0x204F]={ 61380 category="po", 61381 description="REVERSED SEMICOLON", 61382 direction="on", 61383 linebreak="al", 61384 unicodeslot=0x204F, 61385 }, 61386 [0x2050]={ 61387 category="po", 61388 description="CLOSE UP", 61389 direction="on", 61390 linebreak="al", 61391 unicodeslot=0x2050, 61392 }, 61393 [0x2051]={ 61394 category="po", 61395 description="TWO ASTERISKS ALIGNED VERTICALLY", 61396 direction="on", 61397 linebreak="al", 61398 unicodeslot=0x2051, 61399 }, 61400 [0x2052]={ 61401 category="sm", 61402 description="COMMERCIAL MINUS SIGN", 61403 direction="on", 61404 linebreak="al", 61405 synonyms={ "med avdrag av", "piska" }, 61406 unicodeslot=0x2052, 61407 }, 61408 [0x2053]={ 61409 category="po", 61410 description="SWUNG DASH", 61411 direction="on", 61412 linebreak="al", 61413 unicodeslot=0x2053, 61414 }, 61415 [0x2054]={ 61416 category="pc", 61417 description="INVERTED UNDERTIE", 61418 direction="on", 61419 linebreak="al", 61420 unicodeslot=0x2054, 61421 }, 61422 [0x2055]={ 61423 category="po", 61424 description="FLOWER PUNCTUATION MARK", 61425 direction="on", 61426 linebreak="al", 61427 synonyms={ "phul", "puspika" }, 61428 unicodeslot=0x2055, 61429 }, 61430 [0x2056]={ 61431 category="po", 61432 description="THREE DOT PUNCTUATION", 61433 direction="on", 61434 linebreak="ba", 61435 unicodeslot=0x2056, 61436 }, 61437 [0x2057]={ 61438 category="po", 61439 description="QUADRUPLE PRIME", 61440 direction="on", 61441 linebreak="po", 61442 mathspec={ 61443 { 61444 class="prime", 61445 group="prime", 61446 meaning="quadruple prime", 61447 name="quadrupleprime", 61448 }, 61449 { 61450 class="prime", 61451 group="postfix operator", 61452 meaning="fourth derivative", 61453 name="fourthderivativesymbol", 61454 }, 61455 }, 61456 specials={ "compat", 0x2032, 0x2032, 0x2032, 0x2032 }, 61457 unicodeslot=0x2057, 61458 }, 61459 [0x2058]={ 61460 category="po", 61461 description="FOUR DOT PUNCTUATION", 61462 direction="on", 61463 linebreak="ba", 61464 unicodeslot=0x2058, 61465 }, 61466 [0x2059]={ 61467 category="po", 61468 description="FIVE DOT PUNCTUATION", 61469 direction="on", 61470 linebreak="ba", 61471 synonyms={ "greek pentonkion" }, 61472 unicodeslot=0x2059, 61473 }, 61474 [0x205A]={ 61475 category="po", 61476 description="TWO DOT PUNCTUATION", 61477 direction="on", 61478 linebreak="ba", 61479 unicodeslot=0x205A, 61480 }, 61481 [0x205B]={ 61482 category="po", 61483 description="FOUR DOT MARK", 61484 direction="on", 61485 linebreak="ba", 61486 unicodeslot=0x205B, 61487 }, 61488 [0x205C]={ 61489 category="po", 61490 description="DOTTED CROSS", 61491 direction="on", 61492 linebreak="al", 61493 unicodeslot=0x205C, 61494 }, 61495 [0x205D]={ 61496 category="po", 61497 description="TRICOLON", 61498 direction="on", 61499 linebreak="ba", 61500 synonyms={ "epidaurean acrophonic symbol three" }, 61501 unicodeslot=0x205D, 61502 }, 61503 [0x205E]={ 61504 category="po", 61505 description="VERTICAL FOUR DOTS", 61506 direction="on", 61507 linebreak="ba", 61508 unicodeslot=0x205E, 61509 }, 61510 [0x205F]={ 61511 category="zs", 61512 contextname="medspace", 61513 description="MEDIUM MATHEMATICAL SPACE", 61514 direction="ws", 61515 linebreak="ba", 61516 specials={ "compat", 0x20 }, 61517 synonyms={ "mmsp" }, 61518 unicodeslot=0x205F, 61519 }, 61520 [0x2060]={ 61521 category="cf", 61522 description="WORD JOINER", 61523 direction="bn", 61524 linebreak="wj", 61525 synonyms={ "wj" }, 61526 unicodeslot=0x2060, 61527 }, 61528 [0x2061]={ 61529 category="cf", 61530 comment="ordinary", 61531 description="FUNCTION APPLICATION", 61532 direction="bn", 61533 linebreak="al", 61534 mathclass="ordinary", 61535 mathspec={ 61536 { 61537 class="ghost", 61538 group="whatever", 61539 meaning="applyfunction", 61540 name="applyfunction", 61541 }, 61542 { 61543 class="ghost", 61544 group="whatever2", 61545 meaning="applyfunctionof", 61546 name="applyfunctionof", 61547 }, 61548 }, 61549 unicodeslot=0x2061, 61550 }, 61551 [0x2062]={ 61552 category="cf", 61553 comment="binary", 61554 description="INVISIBLE TIMES", 61555 direction="bn", 61556 linebreak="al", 61557 mathclass="ghost", 61558 mathname="invisibletimes", 61559 unicodeslot=0x2062, 61560 }, 61561 [0x2063]={ 61562 category="cf", 61563 comment="punctuation", 61564 description="INVISIBLE SEPARATOR", 61565 direction="bn", 61566 linebreak="al", 61567 mathclass="ghost", 61568 mathname="invisiblecomma", 61569 synonyms={ "invisible comma" }, 61570 unicodeslot=0x2063, 61571 }, 61572 [0x2064]={ 61573 category="cf", 61574 comment="binary", 61575 description="INVISIBLE PLUS", 61576 direction="bn", 61577 linebreak="al", 61578 mathclass="ghost", 61579 mathname="invisibleplus", 61580 unicodeslot=0x2064, 61581 }, 61582 [0x2066]={ 61583 arabic="u", 61584 category="cf", 61585 description="LEFT-TO-RIGHT ISOLATE", 61586 direction="lri", 61587 linebreak="cm", 61588 unicodeslot=0x2066, 61589 }, 61590 [0x2067]={ 61591 arabic="u", 61592 category="cf", 61593 description="RIGHT-TO-LEFT ISOLATE", 61594 direction="rli", 61595 linebreak="cm", 61596 unicodeslot=0x2067, 61597 }, 61598 [0x2068]={ 61599 arabic="u", 61600 category="cf", 61601 description="FIRST STRONG ISOLATE", 61602 direction="fsi", 61603 linebreak="cm", 61604 unicodeslot=0x2068, 61605 }, 61606 [0x2069]={ 61607 arabic="u", 61608 category="cf", 61609 description="POP DIRECTIONAL ISOLATE", 61610 direction="pdi", 61611 linebreak="cm", 61612 unicodeslot=0x2069, 61613 }, 61614 [0x206A]={ 61615 category="cf", 61616 description="INHIBIT SYMMETRIC SWAPPING", 61617 direction="bn", 61618 linebreak="cm", 61619 unicodeslot=0x206A, 61620 }, 61621 [0x206B]={ 61622 category="cf", 61623 description="ACTIVATE SYMMETRIC SWAPPING", 61624 direction="bn", 61625 linebreak="cm", 61626 unicodeslot=0x206B, 61627 }, 61628 [0x206C]={ 61629 category="cf", 61630 description="INHIBIT ARABIC FORM SHAPING", 61631 direction="bn", 61632 linebreak="cm", 61633 unicodeslot=0x206C, 61634 }, 61635 [0x206D]={ 61636 category="cf", 61637 description="ACTIVATE ARABIC FORM SHAPING", 61638 direction="bn", 61639 linebreak="cm", 61640 unicodeslot=0x206D, 61641 }, 61642 [0x206E]={ 61643 category="cf", 61644 description="NATIONAL DIGIT SHAPES", 61645 direction="bn", 61646 linebreak="cm", 61647 unicodeslot=0x206E, 61648 }, 61649 [0x206F]={ 61650 category="cf", 61651 description="NOMINAL DIGIT SHAPES", 61652 direction="bn", 61653 linebreak="cm", 61654 unicodeslot=0x206F, 61655 }, 61656 [0x2070]={ 61657 category="no", 61658 description="SUPERSCRIPT ZERO", 61659 direction="en", 61660 linebreak="al", 61661 specials={ "super", 0x30 }, 61662 unicodeslot=0x2070, 61663 }, 61664 [0x2071]={ 61665 category="ll", 61666 description="SUPERSCRIPT LATIN SMALL LETTER I", 61667 direction="l", 61668 linebreak="al", 61669 specials={ "super", 0x69 }, 61670 unicodeslot=0x2071, 61671 }, 61672 [0x2074]={ 61673 category="no", 61674 cjkwd="a", 61675 description="SUPERSCRIPT FOUR", 61676 direction="en", 61677 linebreak="ai", 61678 specials={ "super", 0x34 }, 61679 unicodeslot=0x2074, 61680 }, 61681 [0x2075]={ 61682 category="no", 61683 description="SUPERSCRIPT FIVE", 61684 direction="en", 61685 linebreak="al", 61686 specials={ "super", 0x35 }, 61687 unicodeslot=0x2075, 61688 }, 61689 [0x2076]={ 61690 category="no", 61691 description="SUPERSCRIPT SIX", 61692 direction="en", 61693 linebreak="al", 61694 specials={ "super", 0x36 }, 61695 unicodeslot=0x2076, 61696 }, 61697 [0x2077]={ 61698 category="no", 61699 description="SUPERSCRIPT SEVEN", 61700 direction="en", 61701 linebreak="al", 61702 specials={ "super", 0x37 }, 61703 unicodeslot=0x2077, 61704 }, 61705 [0x2078]={ 61706 category="no", 61707 description="SUPERSCRIPT EIGHT", 61708 direction="en", 61709 linebreak="al", 61710 specials={ "super", 0x38 }, 61711 unicodeslot=0x2078, 61712 }, 61713 [0x2079]={ 61714 category="no", 61715 description="SUPERSCRIPT NINE", 61716 direction="en", 61717 linebreak="al", 61718 specials={ "super", 0x39 }, 61719 unicodeslot=0x2079, 61720 }, 61721 [0x207A]={ 61722 category="sm", 61723 description="SUPERSCRIPT PLUS SIGN", 61724 direction="es", 61725 linebreak="al", 61726 mathclass="binary", 61727 mathname="positivesign", 61728 specials={ "super", 0x2B }, 61729 unicodeslot=0x207A, 61730 }, 61731 [0x207B]={ 61732 category="sm", 61733 description="SUPERSCRIPT MINUS", 61734 direction="es", 61735 linebreak="al", 61736 mathclass="binary", 61737 mathname="negativesign", 61738 specials={ "super", 0x2212 }, 61739 unicodeslot=0x207B, 61740 }, 61741 [0x207C]={ 61742 category="sm", 61743 description="SUPERSCRIPT EQUALS SIGN", 61744 direction="on", 61745 linebreak="al", 61746 specials={ "super", 0x3D }, 61747 unicodeslot=0x207C, 61748 }, 61749 [0x207D]={ 61750 category="ps", 61751 description="SUPERSCRIPT LEFT PARENTHESIS", 61752 direction="on", 61753 linebreak="op", 61754 mirror=0x207E, 61755 specials={ "super", 0x28 }, 61756 textclass="open", 61757 unicodeslot=0x207D, 61758 }, 61759 [0x207E]={ 61760 category="pe", 61761 description="SUPERSCRIPT RIGHT PARENTHESIS", 61762 direction="on", 61763 linebreak="cl", 61764 mirror=0x207D, 61765 specials={ "super", 0x29 }, 61766 textclass="close", 61767 unicodeslot=0x207E, 61768 }, 61769 [0x207F]={ 61770 category="ll", 61771 cjkwd="a", 61772 description="SUPERSCRIPT LATIN SMALL LETTER N", 61773 direction="l", 61774 linebreak="ai", 61775 specials={ "super", 0x6E }, 61776 unicodeslot=0x207F, 61777 }, 61778 [0x2080]={ 61779 category="no", 61780 description="SUBSCRIPT ZERO", 61781 direction="en", 61782 linebreak="al", 61783 specials={ "sub", 0x30 }, 61784 unicodeslot=0x2080, 61785 }, 61786 [0x2081]={ 61787 category="no", 61788 cjkwd="a", 61789 description="SUBSCRIPT ONE", 61790 direction="en", 61791 linebreak="ai", 61792 specials={ "sub", 0x31 }, 61793 unicodeslot=0x2081, 61794 }, 61795 [0x2082]={ 61796 category="no", 61797 cjkwd="a", 61798 description="SUBSCRIPT TWO", 61799 direction="en", 61800 linebreak="ai", 61801 specials={ "sub", 0x32 }, 61802 unicodeslot=0x2082, 61803 }, 61804 [0x2083]={ 61805 category="no", 61806 cjkwd="a", 61807 description="SUBSCRIPT THREE", 61808 direction="en", 61809 linebreak="ai", 61810 specials={ "sub", 0x33 }, 61811 unicodeslot=0x2083, 61812 }, 61813 [0x2084]={ 61814 category="no", 61815 cjkwd="a", 61816 description="SUBSCRIPT FOUR", 61817 direction="en", 61818 linebreak="ai", 61819 specials={ "sub", 0x34 }, 61820 unicodeslot=0x2084, 61821 }, 61822 [0x2085]={ 61823 category="no", 61824 description="SUBSCRIPT FIVE", 61825 direction="en", 61826 linebreak="al", 61827 specials={ "sub", 0x35 }, 61828 unicodeslot=0x2085, 61829 }, 61830 [0x2086]={ 61831 category="no", 61832 description="SUBSCRIPT SIX", 61833 direction="en", 61834 linebreak="al", 61835 specials={ "sub", 0x36 }, 61836 unicodeslot=0x2086, 61837 }, 61838 [0x2087]={ 61839 category="no", 61840 description="SUBSCRIPT SEVEN", 61841 direction="en", 61842 linebreak="al", 61843 specials={ "sub", 0x37 }, 61844 unicodeslot=0x2087, 61845 }, 61846 [0x2088]={ 61847 category="no", 61848 description="SUBSCRIPT EIGHT", 61849 direction="en", 61850 linebreak="al", 61851 specials={ "sub", 0x38 }, 61852 unicodeslot=0x2088, 61853 }, 61854 [0x2089]={ 61855 category="no", 61856 description="SUBSCRIPT NINE", 61857 direction="en", 61858 linebreak="al", 61859 specials={ "sub", 0x39 }, 61860 unicodeslot=0x2089, 61861 }, 61862 [0x208A]={ 61863 category="sm", 61864 description="SUBSCRIPT PLUS SIGN", 61865 direction="es", 61866 linebreak="al", 61867 specials={ "sub", 0x2B }, 61868 unicodeslot=0x208A, 61869 }, 61870 [0x208B]={ 61871 category="sm", 61872 description="SUBSCRIPT MINUS", 61873 direction="es", 61874 linebreak="al", 61875 specials={ "sub", 0x2212 }, 61876 unicodeslot=0x208B, 61877 }, 61878 [0x208C]={ 61879 category="sm", 61880 description="SUBSCRIPT EQUALS SIGN", 61881 direction="on", 61882 linebreak="al", 61883 specials={ "sub", 0x3D }, 61884 unicodeslot=0x208C, 61885 }, 61886 [0x208D]={ 61887 category="ps", 61888 description="SUBSCRIPT LEFT PARENTHESIS", 61889 direction="on", 61890 linebreak="op", 61891 mirror=0x208E, 61892 specials={ "sub", 0x28 }, 61893 textclass="open", 61894 unicodeslot=0x208D, 61895 }, 61896 [0x208E]={ 61897 category="pe", 61898 description="SUBSCRIPT RIGHT PARENTHESIS", 61899 direction="on", 61900 linebreak="cl", 61901 mirror=0x208D, 61902 specials={ "sub", 0x29 }, 61903 textclass="close", 61904 unicodeslot=0x208E, 61905 }, 61906 [0x2090]={ 61907 category="lm", 61908 description="LATIN SUBSCRIPT SMALL LETTER A", 61909 direction="l", 61910 linebreak="al", 61911 specials={ "sub", 0x61 }, 61912 unicodeslot=0x2090, 61913 }, 61914 [0x2091]={ 61915 category="lm", 61916 description="LATIN SUBSCRIPT SMALL LETTER E", 61917 direction="l", 61918 linebreak="al", 61919 specials={ "sub", 0x65 }, 61920 unicodeslot=0x2091, 61921 }, 61922 [0x2092]={ 61923 category="lm", 61924 description="LATIN SUBSCRIPT SMALL LETTER O", 61925 direction="l", 61926 linebreak="al", 61927 specials={ "sub", 0x6F }, 61928 unicodeslot=0x2092, 61929 }, 61930 [0x2093]={ 61931 category="lm", 61932 description="LATIN SUBSCRIPT SMALL LETTER X", 61933 direction="l", 61934 linebreak="al", 61935 specials={ "sub", 0x78 }, 61936 unicodeslot=0x2093, 61937 }, 61938 [0x2094]={ 61939 category="lm", 61940 description="LATIN SUBSCRIPT SMALL LETTER SCHWA", 61941 direction="l", 61942 linebreak="al", 61943 specials={ "sub", 0x259 }, 61944 unicodeslot=0x2094, 61945 }, 61946 [0x2095]={ 61947 category="lm", 61948 description="LATIN SUBSCRIPT SMALL LETTER H", 61949 direction="l", 61950 linebreak="al", 61951 specials={ "sub", 0x68 }, 61952 unicodeslot=0x2095, 61953 }, 61954 [0x2096]={ 61955 category="lm", 61956 description="LATIN SUBSCRIPT SMALL LETTER K", 61957 direction="l", 61958 linebreak="al", 61959 specials={ "sub", 0x6B }, 61960 unicodeslot=0x2096, 61961 }, 61962 [0x2097]={ 61963 category="lm", 61964 description="LATIN SUBSCRIPT SMALL LETTER L", 61965 direction="l", 61966 linebreak="al", 61967 specials={ "sub", 0x6C }, 61968 unicodeslot=0x2097, 61969 }, 61970 [0x2098]={ 61971 category="lm", 61972 description="LATIN SUBSCRIPT SMALL LETTER M", 61973 direction="l", 61974 linebreak="al", 61975 specials={ "sub", 0x6D }, 61976 unicodeslot=0x2098, 61977 }, 61978 [0x2099]={ 61979 category="lm", 61980 description="LATIN SUBSCRIPT SMALL LETTER N", 61981 direction="l", 61982 linebreak="al", 61983 specials={ "sub", 0x6E }, 61984 unicodeslot=0x2099, 61985 }, 61986 [0x209A]={ 61987 category="lm", 61988 description="LATIN SUBSCRIPT SMALL LETTER P", 61989 direction="l", 61990 linebreak="al", 61991 specials={ "sub", 0x70 }, 61992 unicodeslot=0x209A, 61993 }, 61994 [0x209B]={ 61995 category="lm", 61996 description="LATIN SUBSCRIPT SMALL LETTER S", 61997 direction="l", 61998 linebreak="al", 61999 specials={ "sub", 0x73 }, 62000 unicodeslot=0x209B, 62001 }, 62002 [0x209C]={ 62003 category="lm", 62004 description="LATIN SUBSCRIPT SMALL LETTER T", 62005 direction="l", 62006 linebreak="al", 62007 specials={ "sub", 0x74 }, 62008 unicodeslot=0x209C, 62009 }, 62010 [0x20A0]={ 62011 category="sc", 62012 description="EURO-CURRENCY SIGN", 62013 direction="et", 62014 linebreak="pr", 62015 unicodeslot=0x20A0, 62016 }, 62017 [0x20A1]={ 62018 category="sc", 62019 description="COLON SIGN", 62020 direction="et", 62021 linebreak="pr", 62022 synonyms={ "costa rican currency", "el salvadorian currency" }, 62023 unicodeslot=0x20A1, 62024 }, 62025 [0x20A2]={ 62026 category="sc", 62027 description="CRUZEIRO SIGN", 62028 direction="et", 62029 linebreak="pr", 62030 synonyms={ "brazilian currency" }, 62031 unicodeslot=0x20A2, 62032 }, 62033 [0x20A3]={ 62034 category="sc", 62035 description="FRENCH FRANC SIGN", 62036 direction="et", 62037 linebreak="pr", 62038 synonyms={ "french currency" }, 62039 unicodeslot=0x20A3, 62040 }, 62041 [0x20A4]={ 62042 category="sc", 62043 description="LIRA SIGN", 62044 direction="et", 62045 linebreak="pr", 62046 synonyms={ "italian currency", "turkish currency" }, 62047 unicodeslot=0x20A4, 62048 }, 62049 [0x20A5]={ 62050 category="sc", 62051 description="MILL SIGN", 62052 direction="et", 62053 linebreak="pr", 62054 unicodeslot=0x20A5, 62055 }, 62056 [0x20A6]={ 62057 category="sc", 62058 description="NAIRA SIGN", 62059 direction="et", 62060 linebreak="pr", 62061 synonyms={ "nigerian currency" }, 62062 unicodeslot=0x20A6, 62063 }, 62064 [0x20A7]={ 62065 category="sc", 62066 description="PESETA SIGN", 62067 direction="et", 62068 linebreak="po", 62069 synonyms={ "spanish currency" }, 62070 unicodeslot=0x20A7, 62071 }, 62072 [0x20A8]={ 62073 category="sc", 62074 description="RUPEE SIGN", 62075 direction="et", 62076 linebreak="pr", 62077 specials={ "compat", 0x52, 0x73 }, 62078 synonyms={ "indian currency" }, 62079 unicodeslot=0x20A8, 62080 }, 62081 [0x20A9]={ 62082 category="sc", 62083 cjkwd="h", 62084 description="WON SIGN", 62085 direction="et", 62086 linebreak="pr", 62087 synonyms={ "korean currency" }, 62088 unicodeslot=0x20A9, 62089 }, 62090 [0x20AA]={ 62091 category="sc", 62092 description="NEW SHEQEL SIGN", 62093 direction="et", 62094 linebreak="pr", 62095 synonyms={ "israeli currency" }, 62096 unicodeslot=0x20AA, 62097 }, 62098 [0x20AB]={ 62099 category="sc", 62100 contextname="textdong", 62101 description="DONG SIGN", 62102 direction="et", 62103 linebreak="pr", 62104 synonyms={ "vietnamese currency" }, 62105 unicodeslot=0x20AB, 62106 }, 62107 [0x20AC]={ 62108 category="sc", 62109 cjkwd="a", 62110 contextname="texteuro", 62111 description="EURO SIGN", 62112 direction="et", 62113 linebreak="pr", 62114 synonyms={ "euro european currency" }, 62115 unicodeslot=0x20AC, 62116 }, 62117 [0x20AD]={ 62118 category="sc", 62119 description="KIP SIGN", 62120 direction="et", 62121 linebreak="pr", 62122 synonyms={ "laotian currency" }, 62123 unicodeslot=0x20AD, 62124 }, 62125 [0x20AE]={ 62126 category="sc", 62127 description="TUGRIK SIGN", 62128 direction="et", 62129 linebreak="pr", 62130 synonyms={ "mongolian currency" }, 62131 unicodeslot=0x20AE, 62132 }, 62133 [0x20AF]={ 62134 category="sc", 62135 description="DRACHMA SIGN", 62136 direction="et", 62137 linebreak="pr", 62138 synonyms={ "greek currency" }, 62139 unicodeslot=0x20AF, 62140 }, 62141 [0x20B0]={ 62142 category="sc", 62143 description="GERMAN PENNY SIGN", 62144 direction="et", 62145 linebreak="pr", 62146 unicodeslot=0x20B0, 62147 }, 62148 [0x20B1]={ 62149 category="sc", 62150 description="PESO SIGN", 62151 direction="et", 62152 linebreak="pr", 62153 synonyms={ "phillipine currency" }, 62154 unicodeslot=0x20B1, 62155 }, 62156 [0x20B2]={ 62157 category="sc", 62158 description="GUARANI SIGN", 62159 direction="et", 62160 linebreak="pr", 62161 synonyms={ "paraguayan currency" }, 62162 unicodeslot=0x20B2, 62163 }, 62164 [0x20B3]={ 62165 category="sc", 62166 description="AUSTRAL SIGN", 62167 direction="et", 62168 linebreak="pr", 62169 synonyms={ "argentinian former currency" }, 62170 unicodeslot=0x20B3, 62171 }, 62172 [0x20B4]={ 62173 category="sc", 62174 description="HRYVNIA SIGN", 62175 direction="et", 62176 linebreak="pr", 62177 synonyms={ "ukrainian currency" }, 62178 unicodeslot=0x20B4, 62179 }, 62180 [0x20B5]={ 62181 category="sc", 62182 description="CEDI SIGN", 62183 direction="et", 62184 linebreak="pr", 62185 synonyms={ "ghana currency" }, 62186 unicodeslot=0x20B5, 62187 }, 62188 [0x20B6]={ 62189 category="sc", 62190 description="LIVRE TOURNOIS SIGN", 62191 direction="et", 62192 linebreak="po", 62193 unicodeslot=0x20B6, 62194 }, 62195 [0x20B7]={ 62196 category="sc", 62197 description="SPESMILO SIGN", 62198 direction="et", 62199 linebreak="pr", 62200 unicodeslot=0x20B7, 62201 }, 62202 [0x20B8]={ 62203 category="sc", 62204 description="TENGE SIGN", 62205 direction="et", 62206 linebreak="pr", 62207 unicodeslot=0x20B8, 62208 }, 62209 [0x20B9]={ 62210 category="sc", 62211 description="INDIAN RUPEE SIGN", 62212 direction="et", 62213 linebreak="pr", 62214 unicodeslot=0x20B9, 62215 }, 62216 [0x20BA]={ 62217 category="sc", 62218 description="TURKISH LIRA SIGN", 62219 direction="et", 62220 linebreak="pr", 62221 unicodeslot=0x20BA, 62222 }, 62223 [0x20BB]={ 62224 category="sc", 62225 description="NORDIC MARK SIGN", 62226 direction="et", 62227 linebreak="po", 62228 unicodeslot=0x20BB, 62229 }, 62230 [0x20BC]={ 62231 category="sc", 62232 description="MANAT SIGN", 62233 direction="et", 62234 linebreak="pr", 62235 synonyms={ "azerbaijani currency" }, 62236 unicodeslot=0x20BC, 62237 }, 62238 [0x20BD]={ 62239 category="sc", 62240 description="RUBLE SIGN", 62241 direction="et", 62242 linebreak="pr", 62243 synonyms={ "russian currency" }, 62244 unicodeslot=0x20BD, 62245 }, 62246 [0x20BE]={ 62247 category="sc", 62248 description="LARI SIGN", 62249 direction="et", 62250 linebreak="po", 62251 synonyms={ "georgian currency" }, 62252 unicodeslot=0x20BE, 62253 }, 62254 [0x20BF]={ 62255 category="sc", 62256 description="BITCOIN SIGN", 62257 direction="et", 62258 linebreak="pr", 62259 unicodeslot=0x20BF, 62260 }, 62261 [0x20C0]={ 62262 category="sc", 62263 description="SOM SIGN", 62264 direction="et", 62265 linebreak="po", 62266 unicodeslot=0x20C0, 62267 }, 62268 [0x20D0]={ 62269 category="mn", 62270 combining=0xE6, 62271 description="COMBINING LEFT HARPOON ABOVE", 62272 direction="nsm", 62273 linebreak="cm", 62274 unicodeslot=0x20D0, 62275 }, 62276 [0x20D1]={ 62277 category="mn", 62278 combining=0xE6, 62279 description="COMBINING RIGHT HARPOON ABOVE", 62280 direction="nsm", 62281 linebreak="cm", 62282 unicodeslot=0x20D1, 62283 }, 62284 [0x20D2]={ 62285 category="mn", 62286 combining=0x1, 62287 description="COMBINING LONG VERTICAL LINE OVERLAY", 62288 direction="nsm", 62289 linebreak="cm", 62290 unicodeslot=0x20D2, 62291 }, 62292 [0x20D3]={ 62293 category="mn", 62294 combining=0x1, 62295 description="COMBINING SHORT VERTICAL LINE OVERLAY", 62296 direction="nsm", 62297 linebreak="cm", 62298 unicodeslot=0x20D3, 62299 }, 62300 [0x20D4]={ 62301 category="mn", 62302 combining=0xE6, 62303 description="COMBINING ANTICLOCKWISE ARROW ABOVE", 62304 direction="nsm", 62305 linebreak="cm", 62306 synonyms={ "combining counterclockwise arrow above" }, 62307 unicodeslot=0x20D4, 62308 }, 62309 [0x20D5]={ 62310 category="mn", 62311 combining=0xE6, 62312 description="COMBINING CLOCKWISE ARROW ABOVE", 62313 direction="nsm", 62314 linebreak="cm", 62315 unicodeslot=0x20D5, 62316 }, 62317 [0x20D6]={ 62318 category="mn", 62319 combining=0xE6, 62320 description="COMBINING LEFT ARROW ABOVE", 62321 direction="nsm", 62322 linebreak="cm", 62323 mathclass="topaccent", 62324 mathstretch="h", 62325 unicodeslot=0x20D6, 62326 }, 62327 [0x20D7]={ 62328 category="mn", 62329 combining=0xE6, 62330 description="COMBINING RIGHT ARROW ABOVE", 62331 direction="nsm", 62332 linebreak="cm", 62333 mathclass="topaccent", 62334 mathname="vec", 62335 mathstretch="h", 62336 synonyms={ "vector" }, 62337 unicodeslot=0x20D7, 62338 }, 62339 [0x20D8]={ 62340 category="mn", 62341 combining=0x1, 62342 description="COMBINING RING OVERLAY", 62343 direction="nsm", 62344 linebreak="cm", 62345 unicodeslot=0x20D8, 62346 }, 62347 [0x20D9]={ 62348 category="mn", 62349 combining=0x1, 62350 description="COMBINING CLOCKWISE RING OVERLAY", 62351 direction="nsm", 62352 linebreak="cm", 62353 unicodeslot=0x20D9, 62354 }, 62355 [0x20DA]={ 62356 category="mn", 62357 combining=0x1, 62358 description="COMBINING ANTICLOCKWISE RING OVERLAY", 62359 direction="nsm", 62360 linebreak="cm", 62361 synonyms={ "combining counterclockwise ring overlay" }, 62362 unicodeslot=0x20DA, 62363 }, 62364 [0x20DB]={ 62365 category="mn", 62366 combining=0xE6, 62367 description="COMBINING THREE DOTS ABOVE", 62368 direction="nsm", 62369 linebreak="cm", 62370 mathclass="topaccent", 62371 mathname="dddot", 62372 synonyms={ "third derivative" }, 62373 unicodeslot=0x20DB, 62374 }, 62375 [0x20DC]={ 62376 category="mn", 62377 combining=0xE6, 62378 description="COMBINING FOUR DOTS ABOVE", 62379 direction="nsm", 62380 linebreak="cm", 62381 synonyms={ "fourth derivative" }, 62382 unicodeslot=0x20DC, 62383 }, 62384 [0x20DD]={ 62385 category="me", 62386 description="COMBINING ENCLOSING CIRCLE", 62387 direction="nsm", 62388 linebreak="cm", 62389 mathspec={ 62390 { 62391 class="binary", 62392 name="bigcircle", 62393 }, 62394 }, 62395 synonyms={ "jis composition circle" }, 62396 unicodeslot=0x20DD, 62397 }, 62398 [0x20DE]={ 62399 category="me", 62400 description="COMBINING ENCLOSING SQUARE", 62401 direction="nsm", 62402 linebreak="cm", 62403 mathclass="ordinary", 62404 mathname="bigsquare", 62405 unicodeslot=0x20DE, 62406 }, 62407 [0x20DF]={ 62408 category="me", 62409 description="COMBINING ENCLOSING DIAMOND", 62410 direction="nsm", 62411 linebreak="cm", 62412 mathclass="ordinary", 62413 mathname="bigdiamond", 62414 unicodeslot=0x20DF, 62415 }, 62416 [0x20E0]={ 62417 category="me", 62418 description="COMBINING ENCLOSING CIRCLE BACKSLASH", 62419 direction="nsm", 62420 linebreak="cm", 62421 synonyms={ "no", "prohibition" }, 62422 unicodeslot=0x20E0, 62423 }, 62424 [0x20E1]={ 62425 category="mn", 62426 combining=0xE6, 62427 description="COMBINING LEFT RIGHT ARROW ABOVE", 62428 direction="nsm", 62429 linebreak="cm", 62430 unicodeslot=0x20E1, 62431 }, 62432 [0x20E2]={ 62433 category="me", 62434 description="COMBINING ENCLOSING SCREEN", 62435 direction="nsm", 62436 linebreak="cm", 62437 unicodeslot=0x20E2, 62438 }, 62439 [0x20E3]={ 62440 category="me", 62441 description="COMBINING ENCLOSING KEYCAP", 62442 direction="nsm", 62443 linebreak="cm", 62444 unicodeslot=0x20E3, 62445 }, 62446 [0x20E4]={ 62447 category="me", 62448 description="COMBINING ENCLOSING UPWARD POINTING TRIANGLE", 62449 direction="nsm", 62450 linebreak="cm", 62451 unicodeslot=0x20E4, 62452 }, 62453 [0x20E5]={ 62454 category="mn", 62455 combining=0x1, 62456 description="COMBINING REVERSE SOLIDUS OVERLAY", 62457 direction="nsm", 62458 linebreak="cm", 62459 unicodeslot=0x20E5, 62460 }, 62461 [0x20E6]={ 62462 category="mn", 62463 combining=0x1, 62464 description="COMBINING DOUBLE VERTICAL STROKE OVERLAY", 62465 direction="nsm", 62466 linebreak="cm", 62467 synonyms={ "finite function diacritic" }, 62468 unicodeslot=0x20E6, 62469 }, 62470 [0x20E7]={ 62471 category="mn", 62472 combining=0xE6, 62473 description="COMBINING ANNUITY SYMBOL", 62474 direction="nsm", 62475 linebreak="cm", 62476 mathclass="topaccent", 62477 mathname="actuarial", 62478 synonyms={ "actuarial bend" }, 62479 unicodeslot=0x20E7, 62480 }, 62481 [0x20E8]={ 62482 category="mn", 62483 combining=0xDC, 62484 description="COMBINING TRIPLE UNDERDOT", 62485 direction="nsm", 62486 linebreak="cm", 62487 unicodeslot=0x20E8, 62488 }, 62489 [0x20E9]={ 62490 category="mn", 62491 combining=0xE6, 62492 description="COMBINING WIDE BRIDGE ABOVE", 62493 direction="nsm", 62494 linebreak="cm", 62495 mathclass="topaccent", 62496 synonyms={ "contraction operator" }, 62497 unicodeslot=0x20E9, 62498 }, 62499 [0x20EA]={ 62500 category="mn", 62501 combining=0x1, 62502 description="COMBINING LEFTWARDS ARROW OVERLAY", 62503 direction="nsm", 62504 linebreak="cm", 62505 unicodeslot=0x20EA, 62506 }, 62507 [0x20EB]={ 62508 category="mn", 62509 combining=0x1, 62510 description="COMBINING LONG DOUBLE SOLIDUS OVERLAY", 62511 direction="nsm", 62512 linebreak="cm", 62513 synonyms={ "long double slash overlay" }, 62514 unicodeslot=0x20EB, 62515 }, 62516 [0x20EC]={ 62517 category="mn", 62518 combining=0xDC, 62519 description="COMBINING RIGHTWARDS HARPOON WITH BARB DOWNWARDS", 62520 direction="nsm", 62521 linebreak="cm", 62522 unicodeslot=0x20EC, 62523 }, 62524 [0x20ED]={ 62525 category="mn", 62526 combining=0xDC, 62527 description="COMBINING LEFTWARDS HARPOON WITH BARB DOWNWARDS", 62528 direction="nsm", 62529 linebreak="cm", 62530 unicodeslot=0x20ED, 62531 }, 62532 [0x20EE]={ 62533 category="mn", 62534 combining=0xDC, 62535 description="COMBINING LEFT ARROW BELOW", 62536 direction="nsm", 62537 linebreak="cm", 62538 mathclass="bottomaccent", 62539 mathstretch="h", 62540 unicodeslot=0x20EE, 62541 }, 62542 [0x20EF]={ 62543 category="mn", 62544 combining=0xDC, 62545 description="COMBINING RIGHT ARROW BELOW", 62546 direction="nsm", 62547 linebreak="cm", 62548 mathclass="bottomaccent", 62549 mathstretch="h", 62550 unicodeslot=0x20EF, 62551 }, 62552 [0x20F0]={ 62553 category="mn", 62554 combining=0xE6, 62555 description="COMBINING ASTERISK ABOVE", 62556 direction="nsm", 62557 linebreak="cm", 62558 unicodeslot=0x20F0, 62559 }, 62560 [0x2100]={ 62561 category="so", 62562 description="ACCOUNT OF", 62563 direction="on", 62564 linebreak="al", 62565 mathclass="variable", 62566 specials={ "compat", 0x61, 0x2F, 0x63 }, 62567 unicodeslot=0x2100, 62568 }, 62569 [0x2101]={ 62570 category="so", 62571 description="ADDRESSED TO THE SUBJECT", 62572 direction="on", 62573 linebreak="al", 62574 mathclass="variable", 62575 specials={ "compat", 0x61, 0x2F, 0x73 }, 62576 unicodeslot=0x2101, 62577 }, 62578 [0x2102]={ 62579 category="lu", 62580 description="DOUBLE-STRUCK CAPITAL C", 62581 direction="l", 62582 linebreak="al", 62583 mathclass="variable", 62584 mathspec={ 62585 { 62586 class="ordinary", 62587 group="number set", 62588 meaning="the complex numbers", 62589 name="complexes", 62590 }, 62591 }, 62592 specials={ "font", 0x43 }, 62593 synonyms={ "complex numbers", "the set of complex numbers" }, 62594 unicodeslot=0x2102, 62595 }, 62596 [0x2103]={ 62597 category="so", 62598 cjkwd="a", 62599 contextname="textcelsius", 62600 description="DEGREE CELSIUS", 62601 direction="on", 62602 linebreak="po", 62603 mathclass="variable", 62604 specials={ "compat", 0xB0, 0x43 }, 62605 synonyms={ "degrees centigrade" }, 62606 unicodeslot=0x2103, 62607 }, 62608 [0x2104]={ 62609 category="so", 62610 description="CENTRE LINE SYMBOL", 62611 direction="on", 62612 linebreak="al", 62613 mathclass="variable", 62614 synonyms={ "clone" }, 62615 unicodeslot=0x2104, 62616 }, 62617 [0x2105]={ 62618 category="so", 62619 cjkwd="a", 62620 description="CARE OF", 62621 direction="on", 62622 linebreak="ai", 62623 mathclass="variable", 62624 specials={ "compat", 0x63, 0x2F, 0x6F }, 62625 unicodeslot=0x2105, 62626 }, 62627 [0x2106]={ 62628 category="so", 62629 description="CADA UNA", 62630 direction="on", 62631 linebreak="al", 62632 mathclass="variable", 62633 specials={ "compat", 0x63, 0x2F, 0x75 }, 62634 unicodeslot=0x2106, 62635 }, 62636 [0x2107]={ 62637 category="lu", 62638 description="EULER CONSTANT", 62639 direction="l", 62640 linebreak="al", 62641 mathclass="variable", 62642 mathname="Eulerconst", 62643 specials={ "compat", 0x190 }, 62644 unicodeslot=0x2107, 62645 }, 62646 [0x2108]={ 62647 category="so", 62648 description="SCRUPLE", 62649 direction="on", 62650 linebreak="al", 62651 mathclass="variable", 62652 unicodeslot=0x2108, 62653 }, 62654 [0x2109]={ 62655 category="so", 62656 cjkwd="a", 62657 description="DEGREE FAHRENHEIT", 62658 direction="on", 62659 linebreak="po", 62660 mathclass="variable", 62661 specials={ "compat", 0xB0, 0x46 }, 62662 unicodeslot=0x2109, 62663 }, 62664 [0x210A]={ 62665 category="ll", 62666 description="SCRIPT SMALL G", 62667 direction="l", 62668 linebreak="al", 62669 mathclass="variable", 62670 specials={ "font", 0x67 }, 62671 synonyms={ "real number symbol" }, 62672 unicodeslot=0x210A, 62673 visual="it", 62674 }, 62675 [0x210B]={ 62676 category="lu", 62677 description="SCRIPT CAPITAL H", 62678 direction="l", 62679 linebreak="al", 62680 mathclass="variable", 62681 specials={ "font", 0x48 }, 62682 unicodeslot=0x210B, 62683 variants=variants_style, 62684 visual="it", 62685 }, 62686 [0x210C]={ 62687 category="lu", 62688 description="BLACK-LETTER CAPITAL H", 62689 direction="l", 62690 linebreak="al", 62691 mathclass="variable", 62692 specials={ "font", 0x48 }, 62693 synonyms={ "hilbert space" }, 62694 unicodeslot=0x210C, 62695 }, 62696 [0x210D]={ 62697 category="lu", 62698 description="DOUBLE-STRUCK CAPITAL H", 62699 direction="l", 62700 linebreak="al", 62701 mathclass="variable", 62702 mathgroup="number set", 62703 mathmeaning="the quaternions", 62704 specials={ "font", 0x48 }, 62705 unicodeslot=0x210D, 62706 }, 62707 [0x210E]={ 62708 category="ll", 62709 description="PLANCK CONSTANT", 62710 direction="l", 62711 linebreak="al", 62712 mathclass="variable", 62713 mathname="Planckconst", 62714 specials={ "font", 0x68 }, 62715 unicodeslot=0x210E, 62716 }, 62717 [0x210F]={ 62718 category="ll", 62719 description="PLANCK CONSTANT OVER TWO PI", 62720 direction="l", 62721 linebreak="al", 62722 mathclass="variable", 62723 mathspec={ 62724 { 62725 class="variable", 62726 name="hslash", 62727 }, 62728 { 62729 class="variable", 62730 name="hbar", 62731 }, 62732 }, 62733 specials={ "font", 0x127 }, 62734 unicodeslot=0x210F, 62735 }, 62736 [0x2110]={ 62737 category="lu", 62738 description="SCRIPT CAPITAL I", 62739 direction="l", 62740 linebreak="al", 62741 mathclass="variable", 62742 specials={ "font", 0x49 }, 62743 unicodeslot=0x2110, 62744 variants=variants_style, 62745 visual="it", 62746 }, 62747 [0x2111]={ 62748 category="lu", 62749 description="BLACK-LETTER CAPITAL I", 62750 direction="l", 62751 linebreak="al", 62752 mathclass="variable", 62753 mathname="Im", 62754 specials={ "font", 0x49 }, 62755 synonyms={ "imaginary part" }, 62756 unicodeslot=0x2111, 62757 }, 62758 [0x2112]={ 62759 category="lu", 62760 description="SCRIPT CAPITAL L", 62761 direction="l", 62762 linebreak="al", 62763 mathclass="variable", 62764 specials={ "font", 0x4C }, 62765 synonyms={ "laplace transform" }, 62766 unicodeslot=0x2112, 62767 variants=variants_style, 62768 visual="it", 62769 }, 62770 [0x2113]={ 62771 category="ll", 62772 cjkwd="a", 62773 comment="not: MATHEMATICAL SCRIPT SMALL L", 62774 description="SCRIPT SMALL L", 62775 direction="l", 62776 linebreak="ai", 62777 mathclass="variable", 62778 mathname="ell", 62779 specials={ "font", 0x6C }, 62780 synonyms={ "liter" }, 62781 unicodeslot=0x2113, 62782 }, 62783 [0x2114]={ 62784 category="so", 62785 description="L B BAR SYMBOL", 62786 direction="on", 62787 linebreak="al", 62788 mathclass="variable", 62789 synonyms={ "pounds" }, 62790 unicodeslot=0x2114, 62791 }, 62792 [0x2115]={ 62793 category="lu", 62794 description="DOUBLE-STRUCK CAPITAL N", 62795 direction="l", 62796 linebreak="al", 62797 mathclass="variable", 62798 mathgroup="number set", 62799 mathmeaning="the natural numbers", 62800 mathname="naturalnumbers", 62801 specials={ "font", 0x4E }, 62802 synonyms={ "natural number" }, 62803 unicodeslot=0x2115, 62804 }, 62805 [0x2116]={ 62806 category="so", 62807 cjkwd="a", 62808 contextname="textnumero", 62809 description="NUMERO SIGN", 62810 direction="on", 62811 linebreak="pr", 62812 mathclass="variable", 62813 specials={ "compat", 0x4E, 0x6F }, 62814 unicodeslot=0x2116, 62815 }, 62816 [0x2117]={ 62817 category="so", 62818 contextname="textcircledP", 62819 description="SOUND RECORDING COPYRIGHT", 62820 direction="on", 62821 linebreak="al", 62822 mathclass="variable", 62823 synonyms={ "phonorecord sign", "published" }, 62824 unicodeslot=0x2117, 62825 }, 62826 [0x2118]={ 62827 category="so", 62828 description="SCRIPT CAPITAL P", 62829 direction="on", 62830 linebreak="al", 62831 mathclass="variable", 62832 mathname="wp", 62833 synonyms={ "weierstrass elliptic function" }, 62834 unicodeslot=0x2118, 62835 }, 62836 [0x2119]={ 62837 category="lu", 62838 description="DOUBLE-STRUCK CAPITAL P", 62839 direction="l", 62840 linebreak="al", 62841 mathclass="variable", 62842 mathgroup="number set", 62843 mathmeaning="the prime numbers", 62844 mathname="primes", 62845 specials={ "font", 0x50 }, 62846 unicodeslot=0x2119, 62847 }, 62848 [0x211A]={ 62849 category="lu", 62850 description="DOUBLE-STRUCK CAPITAL Q", 62851 direction="l", 62852 linebreak="al", 62853 mathclass="variable", 62854 mathgroup="number set", 62855 mathmeaning="the rational numbers", 62856 mathname="rationals", 62857 specials={ "font", 0x51 }, 62858 synonyms={ "rational numbers", "the set of rational numbers" }, 62859 unicodeslot=0x211A, 62860 }, 62861 [0x211B]={ 62862 category="lu", 62863 description="SCRIPT CAPITAL R", 62864 direction="l", 62865 linebreak="al", 62866 mathclass="variable", 62867 specials={ "font", 0x52 }, 62868 synonyms={ "riemann integral" }, 62869 unicodeslot=0x211B, 62870 variants=variants_style, 62871 visual="it", 62872 }, 62873 [0x211C]={ 62874 category="lu", 62875 description="BLACK-LETTER CAPITAL R", 62876 direction="l", 62877 linebreak="al", 62878 mathclass="variable", 62879 mathname="Re", 62880 specials={ "font", 0x52 }, 62881 synonyms={ "real part" }, 62882 unicodeslot=0x211C, 62883 }, 62884 [0x211D]={ 62885 category="lu", 62886 description="DOUBLE-STRUCK CAPITAL R", 62887 direction="l", 62888 linebreak="al", 62889 mathclass="variable", 62890 mathgroup="number set", 62891 mathmeaning="the real numbers", 62892 mathname="reals", 62893 specials={ "font", 0x52 }, 62894 synonyms={ "real numbers", "the set of real numbers" }, 62895 unicodeslot=0x211D, 62896 }, 62897 [0x211E]={ 62898 category="so", 62899 description="PRESCRIPTION TAKE", 62900 direction="on", 62901 linebreak="al", 62902 mathclass="variable", 62903 synonyms={ "cross ratio", "recipe" }, 62904 unicodeslot=0x211E, 62905 }, 62906 [0x211F]={ 62907 category="so", 62908 description="RESPONSE", 62909 direction="on", 62910 linebreak="al", 62911 mathclass="variable", 62912 unicodeslot=0x211F, 62913 }, 62914 [0x2120]={ 62915 category="so", 62916 description="SERVICE MARK", 62917 direction="on", 62918 linebreak="al", 62919 mathclass="variable", 62920 specials={ "super", 0x53, 0x4D }, 62921 unicodeslot=0x2120, 62922 }, 62923 [0x2121]={ 62924 category="so", 62925 cjkwd="a", 62926 description="TELEPHONE SIGN", 62927 direction="on", 62928 linebreak="ai", 62929 mathclass="variable", 62930 specials={ "compat", 0x54, 0x45, 0x4C }, 62931 unicodeslot=0x2121, 62932 }, 62933 [0x2122]={ 62934 category="so", 62935 cjkwd="a", 62936 contextname="trademark", 62937 description="TRADE MARK SIGN", 62938 direction="on", 62939 linebreak="ai", 62940 mathclass="variable", 62941 specials={ "super", 0x54, 0x4D }, 62942 unicodeslot=0x2122, 62943 variants=variants_emoji, 62944 }, 62945 [0x2123]={ 62946 category="so", 62947 description="VERSICLE", 62948 direction="on", 62949 linebreak="al", 62950 mathclass="variable", 62951 unicodeslot=0x2123, 62952 }, 62953 [0x2124]={ 62954 category="lu", 62955 description="DOUBLE-STRUCK CAPITAL Z", 62956 direction="l", 62957 linebreak="al", 62958 mathclass="variable", 62959 mathgroup="number set", 62960 mathmeaning="the integers", 62961 mathname="integers", 62962 specials={ "font", 0x5A }, 62963 synonyms={ "integers", "the set of integers" }, 62964 unicodeslot=0x2124, 62965 }, 62966 [0x2125]={ 62967 category="so", 62968 contextname="textounce", 62969 description="OUNCE SIGN", 62970 direction="on", 62971 linebreak="al", 62972 mathclass="variable", 62973 unicodeslot=0x2125, 62974 }, 62975 [0x2126]={ 62976 category="lu", 62977 cjkwd="a", 62978 contextname="textohm", 62979 description="OHM SIGN", 62980 direction="l", 62981 lccode=0x3C9, 62982 linebreak="al", 62983 mathclass="variable", 62984 mathname="ohm", 62985 specials={ "char", 0x3A9 }, 62986 unicodeslot=0x2126, 62987 }, 62988 [0x2127]={ 62989 category="so", 62990 contextname="textmho", 62991 description="INVERTED OHM SIGN", 62992 direction="on", 62993 linebreak="al", 62994 mathclass="variable", 62995 mathname="mho", 62996 synonyms={ "mho" }, 62997 unicodeslot=0x2127, 62998 }, 62999 [0x2128]={ 63000 category="lu", 63001 description="BLACK-LETTER CAPITAL Z", 63002 direction="l", 63003 linebreak="al", 63004 mathclass="variable", 63005 specials={ "font", 0x5A }, 63006 unicodeslot=0x2128, 63007 }, 63008 [0x2129]={ 63009 category="so", 63010 description="TURNED GREEK SMALL LETTER IOTA", 63011 direction="on", 63012 linebreak="al", 63013 mathclass="variable", 63014 mathname="turnediota", 63015 synonyms={ "unique element" }, 63016 unicodeslot=0x2129, 63017 }, 63018 [0x212A]={ 63019 category="lu", 63020 contextname="textkelvin", 63021 description="KELVIN SIGN", 63022 direction="l", 63023 lccode=0x6B, 63024 linebreak="al", 63025 mathclass="variable", 63026 specials={ "char", 0x4B }, 63027 unicodeslot=0x212A, 63028 }, 63029 [0x212B]={ 63030 category="lu", 63031 cjkwd="a", 63032 contextname="textAngstrom", 63033 description="ANGSTROM SIGN", 63034 direction="l", 63035 lccode=0xE5, 63036 linebreak="ai", 63037 mathclass="variable", 63038 mathname="Angstrom", 63039 specials={ "char", 0xC5 }, 63040 unicodeslot=0x212B, 63041 }, 63042 [0x212C]={ 63043 category="lu", 63044 description="SCRIPT CAPITAL B", 63045 direction="l", 63046 linebreak="al", 63047 mathclass="variable", 63048 specials={ "font", 0x42 }, 63049 synonyms={ "bernoulli function" }, 63050 unicodeslot=0x212C, 63051 variants=variants_style, 63052 visual="it", 63053 }, 63054 [0x212D]={ 63055 category="lu", 63056 description="BLACK-LETTER CAPITAL C", 63057 direction="l", 63058 linebreak="al", 63059 mathclass="variable", 63060 specials={ "font", 0x43 }, 63061 unicodeslot=0x212D, 63062 }, 63063 [0x212E]={ 63064 category="so", 63065 description="ESTIMATED SYMBOL", 63066 direction="et", 63067 linebreak="al", 63068 mathclass="variable", 63069 unicodeslot=0x212E, 63070 }, 63071 [0x212F]={ 63072 category="ll", 63073 description="SCRIPT SMALL E", 63074 direction="l", 63075 linebreak="al", 63076 mathclass="variable", 63077 specials={ "font", 0x65 }, 63078 synonyms={ "error", "natural exponent" }, 63079 unicodeslot=0x212F, 63080 visual="it", 63081 }, 63082 [0x2130]={ 63083 category="lu", 63084 description="SCRIPT CAPITAL E", 63085 direction="l", 63086 linebreak="al", 63087 mathclass="variable", 63088 specials={ "font", 0x45 }, 63089 synonyms={ "electromotive force", "emf" }, 63090 unicodeslot=0x2130, 63091 variants=variants_style, 63092 visual="it", 63093 }, 63094 [0x2131]={ 63095 category="lu", 63096 description="SCRIPT CAPITAL F", 63097 direction="l", 63098 linebreak="al", 63099 mathclass="variable", 63100 specials={ "font", 0x46 }, 63101 synonyms={ "fourier transform" }, 63102 unicodeslot=0x2131, 63103 variants=variants_style, 63104 visual="it", 63105 }, 63106 [0x2132]={ 63107 category="lu", 63108 description="TURNED CAPITAL F", 63109 direction="l", 63110 lccode=0x214E, 63111 linebreak="al", 63112 mathclass="variable", 63113 mathname="Finv", 63114 synonyms={ "claudian digamma inversum" }, 63115 unicodeslot=0x2132, 63116 }, 63117 [0x2133]={ 63118 category="lu", 63119 description="SCRIPT CAPITAL M", 63120 direction="l", 63121 linebreak="al", 63122 mathclass="variable", 63123 specials={ "font", 0x4D }, 63124 synonyms={ "german mark pre-wwii", "m-matrix" }, 63125 unicodeslot=0x2133, 63126 variants=variants_style, 63127 visual="it", 63128 }, 63129 [0x2134]={ 63130 category="ll", 63131 description="SCRIPT SMALL O", 63132 direction="l", 63133 linebreak="al", 63134 mathclass="variable", 63135 specials={ "font", 0x6F }, 63136 synonyms={ "order" }, 63137 unicodeslot=0x2134, 63138 visual="it", 63139 }, 63140 [0x2135]={ 63141 category="lo", 63142 description="ALEF SYMBOL", 63143 direction="l", 63144 linebreak="al", 63145 mathclass="variable", 63146 mathname="aleph", 63147 specials={ "compat", 0x5D0 }, 63148 synonyms={ "first transfinite cardinal", "first transfinite cardinal countable" }, 63149 unicodeslot=0x2135, 63150 }, 63151 [0x2136]={ 63152 category="lo", 63153 description="BET SYMBOL", 63154 direction="l", 63155 linebreak="al", 63156 mathclass="variable", 63157 mathname="beth", 63158 specials={ "compat", 0x5D1 }, 63159 synonyms={ "second transfinite cardinal", "second transfinite cardinal continuum" }, 63160 unicodeslot=0x2136, 63161 }, 63162 [0x2137]={ 63163 category="lo", 63164 description="GIMEL SYMBOL", 63165 direction="l", 63166 linebreak="al", 63167 mathclass="variable", 63168 mathname="gimel", 63169 specials={ "compat", 0x5D2 }, 63170 synonyms={ "third transfinite cardinal" }, 63171 unicodeslot=0x2137, 63172 }, 63173 [0x2138]={ 63174 category="lo", 63175 description="DALET SYMBOL", 63176 direction="l", 63177 linebreak="al", 63178 mathclass="variable", 63179 mathname="daleth", 63180 specials={ "compat", 0x5D3 }, 63181 synonyms={ "fourth transfinite cardinal" }, 63182 unicodeslot=0x2138, 63183 }, 63184 [0x2139]={ 63185 category="ll", 63186 description="INFORMATION SOURCE", 63187 direction="l", 63188 linebreak="al", 63189 mathclass="variable", 63190 specials={ "font", 0x69 }, 63191 unicodeslot=0x2139, 63192 variants=variants_emoji, 63193 }, 63194 [0x213A]={ 63195 category="so", 63196 description="ROTATED CAPITAL Q", 63197 direction="on", 63198 linebreak="al", 63199 mathclass="variable", 63200 unicodeslot=0x213A, 63201 }, 63202 [0x213B]={ 63203 category="so", 63204 description="FACSIMILE SIGN", 63205 direction="on", 63206 linebreak="al", 63207 mathclass="variable", 63208 specials={ "compat", 0x46, 0x41, 0x58 }, 63209 unicodeslot=0x213B, 63210 }, 63211 [0x213C]={ 63212 category="ll", 63213 description="DOUBLE-STRUCK SMALL PI", 63214 direction="l", 63215 linebreak="al", 63216 mathclass="variable", 63217 specials={ "font", 0x3C0 }, 63218 unicodeslot=0x213C, 63219 }, 63220 [0x213D]={ 63221 category="ll", 63222 description="DOUBLE-STRUCK SMALL GAMMA", 63223 direction="l", 63224 linebreak="al", 63225 mathclass="variable", 63226 specials={ "font", 0x3B3 }, 63227 unicodeslot=0x213D, 63228 }, 63229 [0x213E]={ 63230 category="lu", 63231 description="DOUBLE-STRUCK CAPITAL GAMMA", 63232 direction="l", 63233 linebreak="al", 63234 mathclass="variable", 63235 specials={ "font", 0x393 }, 63236 unicodeslot=0x213E, 63237 }, 63238 [0x213F]={ 63239 category="lu", 63240 description="DOUBLE-STRUCK CAPITAL PI", 63241 direction="l", 63242 linebreak="al", 63243 mathclass="variable", 63244 specials={ "font", 0x3A0 }, 63245 unicodeslot=0x213F, 63246 }, 63247 [0x2140]={ 63248 category="sm", 63249 description="DOUBLE-STRUCK N-ARY SUMMATION", 63250 direction="on", 63251 linebreak="al", 63252 mathclass="variable", 63253 specials={ "font", 0x2211 }, 63254 unicodeslot=0x2140, 63255 }, 63256 [0x2141]={ 63257 category="sm", 63258 description="TURNED SANS-SERIF CAPITAL G", 63259 direction="on", 63260 linebreak="al", 63261 mathclass="variable", 63262 mathname="Game", 63263 synonyms={ "game" }, 63264 unicodeslot=0x2141, 63265 }, 63266 [0x2142]={ 63267 category="sm", 63268 comment="mathname=sansLturned", 63269 description="TURNED SANS-SERIF CAPITAL L", 63270 direction="on", 63271 linebreak="al", 63272 mathclass="variable", 63273 unicodeslot=0x2142, 63274 }, 63275 [0x2143]={ 63276 category="sm", 63277 comment="mathname=sansLmirrored", 63278 description="REVERSED SANS-SERIF CAPITAL L", 63279 direction="on", 63280 linebreak="al", 63281 mathclass="variable", 63282 unicodeslot=0x2143, 63283 }, 63284 [0x2144]={ 63285 category="sm", 63286 comment="mathname=Yup", 63287 description="TURNED SANS-SERIF CAPITAL Y", 63288 direction="on", 63289 linebreak="al", 63290 mathclass="variable", 63291 unicodeslot=0x2144, 63292 }, 63293 [0x2145]={ 63294 category="lu", 63295 description="DOUBLE-STRUCK ITALIC CAPITAL D", 63296 direction="l", 63297 linebreak="al", 63298 mathclass="variable", 63299 mathspec={ 63300 { 63301 class="differential", 63302 name="differentialD", 63303 }, 63304 }, 63305 specials={ "font", 0x44 }, 63306 unicodeslot=0x2145, 63307 }, 63308 [0x2146]={ 63309 category="ll", 63310 description="DOUBLE-STRUCK ITALIC SMALL D", 63311 direction="l", 63312 linebreak="al", 63313 mathclass="variable", 63314 mathspec={ 63315 { 63316 class="differential", 63317 name="differentiald", 63318 }, 63319 }, 63320 specials={ "font", 0x64 }, 63321 unicodeslot=0x2146, 63322 }, 63323 [0x2147]={ 63324 category="ll", 63325 description="DOUBLE-STRUCK ITALIC SMALL E", 63326 direction="l", 63327 linebreak="al", 63328 mathclass="variable", 63329 mathspec={ 63330 { 63331 class="exponential", 63332 name="exponentiale", 63333 }, 63334 }, 63335 specials={ "font", 0x65 }, 63336 unicodeslot=0x2147, 63337 }, 63338 [0x2148]={ 63339 category="ll", 63340 description="DOUBLE-STRUCK ITALIC SMALL I", 63341 direction="l", 63342 linebreak="al", 63343 mathclass="variable", 63344 mathspec={ 63345 { 63346 class="imaginary", 63347 name="imaginaryi", 63348 }, 63349 }, 63350 specials={ "font", 0x69 }, 63351 unicodeslot=0x2148, 63352 }, 63353 [0x2149]={ 63354 category="ll", 63355 description="DOUBLE-STRUCK ITALIC SMALL J", 63356 direction="l", 63357 linebreak="al", 63358 mathclass="variable", 63359 mathspec={ 63360 { 63361 class="imaginary", 63362 name="imaginaryj", 63363 }, 63364 }, 63365 specials={ "font", 0x6A }, 63366 unicodeslot=0x2149, 63367 }, 63368 [0x214A]={ 63369 category="so", 63370 comment="PropertyLine", 63371 description="PROPERTY LINE", 63372 direction="on", 63373 linebreak="al", 63374 mathclass="ordinary", 63375 unicodeslot=0x214A, 63376 }, 63377 [0x214B]={ 63378 category="sm", 63379 description="TURNED AMPERSAND", 63380 direction="on", 63381 linebreak="al", 63382 mathclass="binary", 63383 mathname="upand", 63384 unicodeslot=0x214B, 63385 }, 63386 [0x214C]={ 63387 category="so", 63388 description="PER SIGN", 63389 direction="on", 63390 linebreak="al", 63391 mathclass="variable", 63392 unicodeslot=0x214C, 63393 }, 63394 [0x214D]={ 63395 category="so", 63396 description="AKTIESELSKAB", 63397 direction="on", 63398 linebreak="al", 63399 mathclass="variable", 63400 unicodeslot=0x214D, 63401 }, 63402 [0x214E]={ 63403 category="ll", 63404 description="TURNED SMALL F", 63405 direction="l", 63406 linebreak="al", 63407 mathclass="variable", 63408 uccode=0x2132, 63409 unicodeslot=0x214E, 63410 }, 63411 [0x214F]={ 63412 category="so", 63413 description="SYMBOL FOR SAMARITAN SOURCE", 63414 direction="l", 63415 linebreak="al", 63416 mathclass="variable", 63417 unicodeslot=0x214F, 63418 }, 63419 [0x2150]={ 63420 category="no", 63421 description="VULGAR FRACTION ONE SEVENTH", 63422 direction="on", 63423 linebreak="ai", 63424 specials={ "fraction", 0x31, 0x2044, 0x37 }, 63425 unicodeslot=0x2150, 63426 }, 63427 [0x2151]={ 63428 category="no", 63429 description="VULGAR FRACTION ONE NINTH", 63430 direction="on", 63431 linebreak="ai", 63432 specials={ "fraction", 0x31, 0x2044, 0x39 }, 63433 unicodeslot=0x2151, 63434 }, 63435 [0x2152]={ 63436 category="no", 63437 description="VULGAR FRACTION ONE TENTH", 63438 direction="on", 63439 linebreak="ai", 63440 specials={ "fraction", 0x31, 0x2044, 0x31, 0x30 }, 63441 unicodeslot=0x2152, 63442 }, 63443 [0x2153]={ 63444 category="no", 63445 cjkwd="a", 63446 contextname="onethird", 63447 description="VULGAR FRACTION ONE THIRD", 63448 direction="on", 63449 linebreak="ai", 63450 specials={ "fraction", 0x31, 0x2044, 0x33 }, 63451 unicodeslot=0x2153, 63452 }, 63453 [0x2154]={ 63454 category="no", 63455 cjkwd="a", 63456 contextname="twothirds", 63457 description="VULGAR FRACTION TWO THIRDS", 63458 direction="on", 63459 linebreak="ai", 63460 specials={ "fraction", 0x32, 0x2044, 0x33 }, 63461 unicodeslot=0x2154, 63462 }, 63463 [0x2155]={ 63464 category="no", 63465 contextname="onefifth", 63466 description="VULGAR FRACTION ONE FIFTH", 63467 direction="on", 63468 linebreak="ai", 63469 specials={ "fraction", 0x31, 0x2044, 0x35 }, 63470 unicodeslot=0x2155, 63471 }, 63472 [0x2156]={ 63473 category="no", 63474 contextname="twofifths", 63475 description="VULGAR FRACTION TWO FIFTHS", 63476 direction="on", 63477 linebreak="ai", 63478 specials={ "fraction", 0x32, 0x2044, 0x35 }, 63479 unicodeslot=0x2156, 63480 }, 63481 [0x2157]={ 63482 category="no", 63483 contextname="threefifths", 63484 description="VULGAR FRACTION THREE FIFTHS", 63485 direction="on", 63486 linebreak="ai", 63487 specials={ "fraction", 0x33, 0x2044, 0x35 }, 63488 unicodeslot=0x2157, 63489 }, 63490 [0x2158]={ 63491 category="no", 63492 contextname="fourfifths", 63493 description="VULGAR FRACTION FOUR FIFTHS", 63494 direction="on", 63495 linebreak="ai", 63496 specials={ "fraction", 0x34, 0x2044, 0x35 }, 63497 unicodeslot=0x2158, 63498 }, 63499 [0x2159]={ 63500 category="no", 63501 contextname="onesixth", 63502 description="VULGAR FRACTION ONE SIXTH", 63503 direction="on", 63504 linebreak="ai", 63505 specials={ "fraction", 0x31, 0x2044, 0x36 }, 63506 unicodeslot=0x2159, 63507 }, 63508 [0x215A]={ 63509 category="no", 63510 contextname="fivesixths", 63511 description="VULGAR FRACTION FIVE SIXTHS", 63512 direction="on", 63513 linebreak="ai", 63514 specials={ "fraction", 0x35, 0x2044, 0x36 }, 63515 unicodeslot=0x215A, 63516 }, 63517 [0x215B]={ 63518 category="no", 63519 cjkwd="a", 63520 contextname="oneeighth", 63521 description="VULGAR FRACTION ONE EIGHTH", 63522 direction="on", 63523 linebreak="ai", 63524 specials={ "fraction", 0x31, 0x2044, 0x38 }, 63525 unicodeslot=0x215B, 63526 }, 63527 [0x215C]={ 63528 category="no", 63529 cjkwd="a", 63530 contextname="threeeighths", 63531 description="VULGAR FRACTION THREE EIGHTHS", 63532 direction="on", 63533 linebreak="ai", 63534 specials={ "fraction", 0x33, 0x2044, 0x38 }, 63535 unicodeslot=0x215C, 63536 }, 63537 [0x215D]={ 63538 category="no", 63539 cjkwd="a", 63540 contextname="fiveeighths", 63541 description="VULGAR FRACTION FIVE EIGHTHS", 63542 direction="on", 63543 linebreak="ai", 63544 specials={ "fraction", 0x35, 0x2044, 0x38 }, 63545 unicodeslot=0x215D, 63546 }, 63547 [0x215E]={ 63548 category="no", 63549 cjkwd="a", 63550 contextname="seveneighths", 63551 description="VULGAR FRACTION SEVEN EIGHTHS", 63552 direction="on", 63553 linebreak="ai", 63554 specials={ "fraction", 0x37, 0x2044, 0x38 }, 63555 unicodeslot=0x215E, 63556 }, 63557 [0x215F]={ 63558 category="no", 63559 description="FRACTION NUMERATOR ONE", 63560 direction="on", 63561 linebreak="al", 63562 specials={ "fraction", 0x31, 0x2044 }, 63563 unicodeslot=0x215F, 63564 }, 63565 [0x2160]={ 63566 category="nl", 63567 cjkwd="a", 63568 contextname="romanI", 63569 description="ROMAN NUMERAL ONE", 63570 direction="l", 63571 lccode=0x2170, 63572 linebreak="ai", 63573 specials={ "compat", 0x49 }, 63574 unicodeslot=0x2160, 63575 }, 63576 [0x2161]={ 63577 category="nl", 63578 cjkwd="a", 63579 contextname="romanII", 63580 description="ROMAN NUMERAL TWO", 63581 direction="l", 63582 lccode=0x2171, 63583 linebreak="ai", 63584 specials={ "compat", 0x49, 0x49 }, 63585 unicodeslot=0x2161, 63586 }, 63587 [0x2162]={ 63588 category="nl", 63589 cjkwd="a", 63590 contextname="romanIII", 63591 description="ROMAN NUMERAL THREE", 63592 direction="l", 63593 lccode=0x2172, 63594 linebreak="ai", 63595 specials={ "compat", 0x49, 0x49, 0x49 }, 63596 unicodeslot=0x2162, 63597 }, 63598 [0x2163]={ 63599 category="nl", 63600 cjkwd="a", 63601 contextname="romanIV", 63602 description="ROMAN NUMERAL FOUR", 63603 direction="l", 63604 lccode=0x2173, 63605 linebreak="ai", 63606 specials={ "compat", 0x49, 0x56 }, 63607 unicodeslot=0x2163, 63608 }, 63609 [0x2164]={ 63610 category="nl", 63611 cjkwd="a", 63612 contextname="romanV", 63613 description="ROMAN NUMERAL FIVE", 63614 direction="l", 63615 lccode=0x2174, 63616 linebreak="ai", 63617 specials={ "compat", 0x56 }, 63618 unicodeslot=0x2164, 63619 }, 63620 [0x2165]={ 63621 category="nl", 63622 cjkwd="a", 63623 contextname="romanVI", 63624 description="ROMAN NUMERAL SIX", 63625 direction="l", 63626 lccode=0x2175, 63627 linebreak="ai", 63628 specials={ "compat", 0x56, 0x49 }, 63629 unicodeslot=0x2165, 63630 }, 63631 [0x2166]={ 63632 category="nl", 63633 cjkwd="a", 63634 contextname="romanVII", 63635 description="ROMAN NUMERAL SEVEN", 63636 direction="l", 63637 lccode=0x2176, 63638 linebreak="ai", 63639 specials={ "compat", 0x56, 0x49, 0x49 }, 63640 unicodeslot=0x2166, 63641 }, 63642 [0x2167]={ 63643 category="nl", 63644 cjkwd="a", 63645 contextname="romanVIII", 63646 description="ROMAN NUMERAL EIGHT", 63647 direction="l", 63648 lccode=0x2177, 63649 linebreak="ai", 63650 specials={ "compat", 0x56, 0x49, 0x49, 0x49 }, 63651 unicodeslot=0x2167, 63652 }, 63653 [0x2168]={ 63654 category="nl", 63655 cjkwd="a", 63656 contextname="romanIX", 63657 description="ROMAN NUMERAL NINE", 63658 direction="l", 63659 lccode=0x2178, 63660 linebreak="ai", 63661 specials={ "compat", 0x49, 0x58 }, 63662 unicodeslot=0x2168, 63663 }, 63664 [0x2169]={ 63665 category="nl", 63666 cjkwd="a", 63667 contextname="romanX", 63668 description="ROMAN NUMERAL TEN", 63669 direction="l", 63670 lccode=0x2179, 63671 linebreak="ai", 63672 specials={ "compat", 0x58 }, 63673 unicodeslot=0x2169, 63674 }, 63675 [0x216A]={ 63676 category="nl", 63677 cjkwd="a", 63678 contextname="romanXI", 63679 description="ROMAN NUMERAL ELEVEN", 63680 direction="l", 63681 lccode=0x217A, 63682 linebreak="ai", 63683 specials={ "compat", 0x58, 0x49 }, 63684 unicodeslot=0x216A, 63685 }, 63686 [0x216B]={ 63687 category="nl", 63688 cjkwd="a", 63689 contextname="romanXII", 63690 description="ROMAN NUMERAL TWELVE", 63691 direction="l", 63692 lccode=0x217B, 63693 linebreak="ai", 63694 specials={ "compat", 0x58, 0x49, 0x49 }, 63695 unicodeslot=0x216B, 63696 }, 63697 [0x216C]={ 63698 category="nl", 63699 contextname="romanL", 63700 description="ROMAN NUMERAL FIFTY", 63701 direction="l", 63702 lccode=0x217C, 63703 linebreak="al", 63704 specials={ "compat", 0x4C }, 63705 unicodeslot=0x216C, 63706 }, 63707 [0x216D]={ 63708 category="nl", 63709 contextname="romanC", 63710 description="ROMAN NUMERAL ONE HUNDRED", 63711 direction="l", 63712 lccode=0x217D, 63713 linebreak="al", 63714 specials={ "compat", 0x43 }, 63715 unicodeslot=0x216D, 63716 }, 63717 [0x216E]={ 63718 category="nl", 63719 contextname="romanD", 63720 description="ROMAN NUMERAL FIVE HUNDRED", 63721 direction="l", 63722 lccode=0x217E, 63723 linebreak="al", 63724 specials={ "compat", 0x44 }, 63725 unicodeslot=0x216E, 63726 }, 63727 [0x216F]={ 63728 category="nl", 63729 contextname="romanM", 63730 description="ROMAN NUMERAL ONE THOUSAND", 63731 direction="l", 63732 lccode=0x217F, 63733 linebreak="al", 63734 specials={ "compat", 0x4D }, 63735 unicodeslot=0x216F, 63736 }, 63737 [0x2170]={ 63738 category="nl", 63739 cjkwd="a", 63740 contextname="romani", 63741 description="SMALL ROMAN NUMERAL ONE", 63742 direction="l", 63743 linebreak="ai", 63744 specials={ "compat", 0x69 }, 63745 uccode=0x2160, 63746 unicodeslot=0x2170, 63747 }, 63748 [0x2171]={ 63749 category="nl", 63750 cjkwd="a", 63751 contextname="romanii", 63752 description="SMALL ROMAN NUMERAL TWO", 63753 direction="l", 63754 linebreak="ai", 63755 specials={ "compat", 0x69, 0x69 }, 63756 uccode=0x2161, 63757 unicodeslot=0x2171, 63758 }, 63759 [0x2172]={ 63760 category="nl", 63761 cjkwd="a", 63762 contextname="romaniii", 63763 description="SMALL ROMAN NUMERAL THREE", 63764 direction="l", 63765 linebreak="ai", 63766 specials={ "compat", 0x69, 0x69, 0x69 }, 63767 uccode=0x2162, 63768 unicodeslot=0x2172, 63769 }, 63770 [0x2173]={ 63771 category="nl", 63772 cjkwd="a", 63773 contextname="romaniv", 63774 description="SMALL ROMAN NUMERAL FOUR", 63775 direction="l", 63776 linebreak="ai", 63777 specials={ "compat", 0x69, 0x76 }, 63778 uccode=0x2163, 63779 unicodeslot=0x2173, 63780 }, 63781 [0x2174]={ 63782 category="nl", 63783 cjkwd="a", 63784 contextname="romanv", 63785 description="SMALL ROMAN NUMERAL FIVE", 63786 direction="l", 63787 linebreak="ai", 63788 specials={ "compat", 0x76 }, 63789 uccode=0x2164, 63790 unicodeslot=0x2174, 63791 }, 63792 [0x2175]={ 63793 category="nl", 63794 cjkwd="a", 63795 contextname="romanvi", 63796 description="SMALL ROMAN NUMERAL SIX", 63797 direction="l", 63798 linebreak="ai", 63799 specials={ "compat", 0x76, 0x69 }, 63800 uccode=0x2165, 63801 unicodeslot=0x2175, 63802 }, 63803 [0x2176]={ 63804 category="nl", 63805 cjkwd="a", 63806 contextname="romanvii", 63807 description="SMALL ROMAN NUMERAL SEVEN", 63808 direction="l", 63809 linebreak="ai", 63810 specials={ "compat", 0x76, 0x69, 0x69 }, 63811 uccode=0x2166, 63812 unicodeslot=0x2176, 63813 }, 63814 [0x2177]={ 63815 category="nl", 63816 cjkwd="a", 63817 contextname="romanviii", 63818 description="SMALL ROMAN NUMERAL EIGHT", 63819 direction="l", 63820 linebreak="ai", 63821 specials={ "compat", 0x76, 0x69, 0x69, 0x69 }, 63822 uccode=0x2167, 63823 unicodeslot=0x2177, 63824 }, 63825 [0x2178]={ 63826 category="nl", 63827 cjkwd="a", 63828 contextname="romanix", 63829 description="SMALL ROMAN NUMERAL NINE", 63830 direction="l", 63831 linebreak="ai", 63832 specials={ "compat", 0x69, 0x78 }, 63833 uccode=0x2168, 63834 unicodeslot=0x2178, 63835 }, 63836 [0x2179]={ 63837 category="nl", 63838 cjkwd="a", 63839 contextname="romanx", 63840 description="SMALL ROMAN NUMERAL TEN", 63841 direction="l", 63842 linebreak="ai", 63843 specials={ "compat", 0x78 }, 63844 uccode=0x2169, 63845 unicodeslot=0x2179, 63846 }, 63847 [0x217A]={ 63848 category="nl", 63849 contextname="romanxi", 63850 description="SMALL ROMAN NUMERAL ELEVEN", 63851 direction="l", 63852 linebreak="al", 63853 specials={ "compat", 0x78, 0x69 }, 63854 uccode=0x216A, 63855 unicodeslot=0x217A, 63856 }, 63857 [0x217B]={ 63858 category="nl", 63859 contextname="romanxii", 63860 description="SMALL ROMAN NUMERAL TWELVE", 63861 direction="l", 63862 linebreak="al", 63863 specials={ "compat", 0x78, 0x69, 0x69 }, 63864 uccode=0x216B, 63865 unicodeslot=0x217B, 63866 }, 63867 [0x217C]={ 63868 category="nl", 63869 contextname="romanl", 63870 description="SMALL ROMAN NUMERAL FIFTY", 63871 direction="l", 63872 linebreak="al", 63873 specials={ "compat", 0x6C }, 63874 uccode=0x216C, 63875 unicodeslot=0x217C, 63876 }, 63877 [0x217D]={ 63878 category="nl", 63879 contextname="romanc", 63880 description="SMALL ROMAN NUMERAL ONE HUNDRED", 63881 direction="l", 63882 linebreak="al", 63883 specials={ "compat", 0x63 }, 63884 uccode=0x216D, 63885 unicodeslot=0x217D, 63886 }, 63887 [0x217E]={ 63888 category="nl", 63889 contextname="romand", 63890 description="SMALL ROMAN NUMERAL FIVE HUNDRED", 63891 direction="l", 63892 linebreak="al", 63893 specials={ "compat", 0x64 }, 63894 uccode=0x216E, 63895 unicodeslot=0x217E, 63896 }, 63897 [0x217F]={ 63898 category="nl", 63899 contextname="romanm", 63900 description="SMALL ROMAN NUMERAL ONE THOUSAND", 63901 direction="l", 63902 linebreak="al", 63903 specials={ "compat", 0x6D }, 63904 uccode=0x216F, 63905 unicodeslot=0x217F, 63906 }, 63907 [0x2180]={ 63908 category="nl", 63909 description="ROMAN NUMERAL ONE THOUSAND C D", 63910 direction="l", 63911 linebreak="al", 63912 unicodeslot=0x2180, 63913 }, 63914 [0x2181]={ 63915 category="nl", 63916 description="ROMAN NUMERAL FIVE THOUSAND", 63917 direction="l", 63918 linebreak="al", 63919 unicodeslot=0x2181, 63920 }, 63921 [0x2182]={ 63922 category="nl", 63923 description="ROMAN NUMERAL TEN THOUSAND", 63924 direction="l", 63925 linebreak="al", 63926 unicodeslot=0x2182, 63927 }, 63928 [0x2183]={ 63929 category="lu", 63930 description="ROMAN NUMERAL REVERSED ONE HUNDRED", 63931 direction="l", 63932 lccode=0x2184, 63933 linebreak="al", 63934 synonyms={ "apostrophic c", "claudian antisigma" }, 63935 unicodeslot=0x2183, 63936 }, 63937 [0x2184]={ 63938 category="ll", 63939 description="LATIN SMALL LETTER REVERSED C", 63940 direction="l", 63941 linebreak="al", 63942 uccode=0x2183, 63943 unicodeslot=0x2184, 63944 }, 63945 [0x2185]={ 63946 category="nl", 63947 description="ROMAN NUMERAL SIX LATE FORM", 63948 direction="l", 63949 linebreak="al", 63950 unicodeslot=0x2185, 63951 }, 63952 [0x2186]={ 63953 category="nl", 63954 description="ROMAN NUMERAL FIFTY EARLY FORM", 63955 direction="l", 63956 linebreak="al", 63957 unicodeslot=0x2186, 63958 }, 63959 [0x2187]={ 63960 category="nl", 63961 description="ROMAN NUMERAL FIFTY THOUSAND", 63962 direction="l", 63963 linebreak="al", 63964 unicodeslot=0x2187, 63965 }, 63966 [0x2188]={ 63967 category="nl", 63968 description="ROMAN NUMERAL ONE HUNDRED THOUSAND", 63969 direction="l", 63970 linebreak="al", 63971 unicodeslot=0x2188, 63972 }, 63973 [0x2189]={ 63974 category="no", 63975 cjkwd="a", 63976 description="VULGAR FRACTION ZERO THIRDS", 63977 direction="on", 63978 linebreak="ai", 63979 specials={ "fraction", 0x30, 0x2044, 0x33 }, 63980 unicodeslot=0x2189, 63981 }, 63982 [0x218A]={ 63983 category="so", 63984 description="TURNED DIGIT TWO", 63985 direction="on", 63986 linebreak="al", 63987 unicodeslot=0x218A, 63988 }, 63989 [0x218B]={ 63990 category="so", 63991 description="TURNED DIGIT THREE", 63992 direction="on", 63993 linebreak="al", 63994 unicodeslot=0x218B, 63995 }, 63996 [0x2190]={ 63997 category="sm", 63998 cjkwd="a", 63999 description="LEFTWARDS ARROW", 64000 direction="on", 64001 linebreak="ai", 64002 mathextensible="l", 64003 mathfiller="leftarrowfill", 64004 mathgroup="binary relation", 64005 mathlist={ 0x3C, 0x2212 }, 64006 mathmeaning="gets", 64007 mathspec={ 64008 { 64009 class="relation", 64010 name="leftarrow", 64011 }, 64012 { 64013 class="relation", 64014 name="gets", 64015 }, 64016 { 64017 class="under", 64018 name="underleftarrow", 64019 }, 64020 { 64021 class="over", 64022 name="overleftarrow", 64023 }, 64024 }, 64025 mathstretch="h", 64026 unicodeslot=0x2190, 64027 }, 64028 [0x2191]={ 64029 category="sm", 64030 cjkwd="a", 64031 description="UPWARDS ARROW", 64032 direction="on", 64033 linebreak="ai", 64034 mathclass="relation", 64035 mathextensible="u", 64036 mathgroup="limit", 64037 mathmeaning="tends from below to", 64038 mathname="uparrow", 64039 synonyms={ "egressive airflow" }, 64040 unicodeslot=0x2191, 64041 }, 64042 [0x2192]={ 64043 category="sm", 64044 cjkwd="a", 64045 description="RIGHTWARDS ARROW", 64046 direction="on", 64047 linebreak="ai", 64048 mathextensible="r", 64049 mathfiller="rightarrowfill", 64050 mathgroup="limit", 64051 mathlist={ 0x2212, 0x3E }, 64052 mathmeaning="to", 64053 mathspec={ 64054 { 64055 class="relation", 64056 name="rightarrow", 64057 }, 64058 { 64059 class="relation", 64060 group="binary set relation", 64061 meaning="to", 64062 name="to", 64063 }, 64064 { 64065 class="relation", 64066 group="limit", 64067 meaning="tends to", 64068 name="tendsto", 64069 }, 64070 { 64071 class="under", 64072 name="underrightarrow", 64073 }, 64074 { 64075 class="over", 64076 name="overrightarrow", 64077 }, 64078 }, 64079 mathstretch="h", 64080 synonyms={ "total function" }, 64081 unicodeslot=0x2192, 64082 }, 64083 [0x2193]={ 64084 category="sm", 64085 cjkwd="a", 64086 description="DOWNWARDS ARROW", 64087 direction="on", 64088 linebreak="ai", 64089 mathclass="relation", 64090 mathextensible="d", 64091 mathgroup="limit", 64092 mathmeaning="tends from above to", 64093 mathname="downarrow", 64094 synonyms={ "ingressive airflow" }, 64095 unicodeslot=0x2193, 64096 }, 64097 [0x2194]={ 64098 category="sm", 64099 cjkwd="a", 64100 description="LEFT RIGHT ARROW", 64101 direction="on", 64102 linebreak="ai", 64103 mathclass="relation", 64104 mathextensible="h", 64105 mathlist={ 0x3C, 0x2212, 0x3E }, 64106 mathname="leftrightarrow", 64107 synonyms={ "relation" }, 64108 unicodeslot=0x2194, 64109 variants=variants_emoji, 64110 }, 64111 [0x2195]={ 64112 category="so", 64113 cjkwd="a", 64114 description="UP DOWN ARROW", 64115 direction="on", 64116 linebreak="ai", 64117 mathclass="relation", 64118 mathextensible="v", 64119 mathname="updownarrow", 64120 unicodeslot=0x2195, 64121 variants=variants_emoji, 64122 }, 64123 [0x2196]={ 64124 category="so", 64125 cjkwd="a", 64126 description="NORTH WEST ARROW", 64127 direction="on", 64128 linebreak="ai", 64129 mathclass="relation", 64130 mathname="nwarrow", 64131 unicodeslot=0x2196, 64132 variants=variants_emoji, 64133 }, 64134 [0x2197]={ 64135 category="so", 64136 cjkwd="a", 64137 description="NORTH EAST ARROW", 64138 direction="on", 64139 linebreak="ai", 64140 mathclass="relation", 64141 mathgroup="limit", 64142 mathmeaning="tends from below to", 64143 mathname="nearrow", 64144 unicodeslot=0x2197, 64145 variants=variants_emoji, 64146 }, 64147 [0x2198]={ 64148 category="so", 64149 cjkwd="a", 64150 description="SOUTH EAST ARROW", 64151 direction="on", 64152 linebreak="ai", 64153 mathclass="relation", 64154 mathgroup="limit", 64155 mathmeaning="tends from above to", 64156 mathname="searrow", 64157 unicodeslot=0x2198, 64158 variants=variants_emoji, 64159 }, 64160 [0x2199]={ 64161 category="so", 64162 cjkwd="a", 64163 description="SOUTH WEST ARROW", 64164 direction="on", 64165 linebreak="ai", 64166 mathclass="relation", 64167 mathname="swarrow", 64168 unicodeslot=0x2199, 64169 variants=variants_emoji, 64170 }, 64171 [0x219A]={ 64172 category="sm", 64173 description="LEFTWARDS ARROW WITH STROKE", 64174 direction="on", 64175 linebreak="al", 64176 mathclass="relation", 64177 mathextensible="l", 64178 mathname="nleftarrow", 64179 specials={ "char", 0x2190, 0x338 }, 64180 unicodeslot=0x219A, 64181 }, 64182 [0x219B]={ 64183 category="sm", 64184 description="RIGHTWARDS ARROW WITH STROKE", 64185 direction="on", 64186 linebreak="al", 64187 mathclass="relation", 64188 mathextensible="r", 64189 mathname="nrightarrow", 64190 specials={ "char", 0x2192, 0x338 }, 64191 unicodeslot=0x219B, 64192 }, 64193 [0x219C]={ 64194 category="so", 64195 description="LEFTWARDS WAVE ARROW", 64196 direction="on", 64197 linebreak="al", 64198 mathclass="relation", 64199 mathextensible="l", 64200 mathname="leftwavearrow", 64201 unicodeslot=0x219C, 64202 }, 64203 [0x219D]={ 64204 category="so", 64205 description="RIGHTWARDS WAVE ARROW", 64206 direction="on", 64207 linebreak="al", 64208 mathclass="relation", 64209 mathextensible="r", 64210 mathname="rightwavearrow", 64211 unicodeslot=0x219D, 64212 }, 64213 [0x219E]={ 64214 category="so", 64215 description="LEFTWARDS TWO HEADED ARROW", 64216 direction="on", 64217 linebreak="al", 64218 mathclass="relation", 64219 mathextensible="l", 64220 mathfiller="twoheadleftarrowfill", 64221 mathname="twoheadleftarrow", 64222 synonyms={ "fast cursor left" }, 64223 unicodeslot=0x219E, 64224 }, 64225 [0x219F]={ 64226 category="so", 64227 description="UPWARDS TWO HEADED ARROW", 64228 direction="on", 64229 linebreak="al", 64230 mathclass="relation", 64231 mathextensible="u", 64232 mathname="twoheaduparrow", 64233 synonyms={ "fast cursor up" }, 64234 unicodeslot=0x219F, 64235 }, 64236 [0x21A0]={ 64237 category="sm", 64238 description="RIGHTWARDS TWO HEADED ARROW", 64239 direction="on", 64240 linebreak="al", 64241 mathclass="relation", 64242 mathextensible="r", 64243 mathfiller="twoheadrightarrowfill", 64244 mathname="twoheadrightarrow", 64245 synonyms={ "fast cursor right", "total surjection" }, 64246 unicodeslot=0x21A0, 64247 }, 64248 [0x21A1]={ 64249 category="so", 64250 description="DOWNWARDS TWO HEADED ARROW", 64251 direction="on", 64252 linebreak="al", 64253 mathclass="relation", 64254 mathextensible="d", 64255 mathname="twoheaddownarrow", 64256 synonyms={ "fast cursor down", "form feed" }, 64257 unicodeslot=0x21A1, 64258 }, 64259 [0x21A2]={ 64260 category="so", 64261 description="LEFTWARDS ARROW WITH TAIL", 64262 direction="on", 64263 linebreak="al", 64264 mathclass="relation", 64265 mathextensible="l", 64266 mathname="leftarrowtail", 64267 unicodeslot=0x21A2, 64268 }, 64269 [0x21A3]={ 64270 category="sm", 64271 description="RIGHTWARDS ARROW WITH TAIL", 64272 direction="on", 64273 linebreak="al", 64274 mathclass="relation", 64275 mathextensible="r", 64276 mathname="rightarrowtail", 64277 synonyms={ "total injection" }, 64278 unicodeslot=0x21A3, 64279 }, 64280 [0x21A4]={ 64281 category="so", 64282 description="LEFTWARDS ARROW FROM BAR", 64283 direction="on", 64284 linebreak="al", 64285 mathclass="relation", 64286 mathextensible="l", 64287 mathgroup="binary relation", 64288 mathmeaning="maps from", 64289 mathname="mapsfrom", 64290 unicodeslot=0x21A4, 64291 }, 64292 [0x21A5]={ 64293 category="so", 64294 description="UPWARDS ARROW FROM BAR", 64295 direction="on", 64296 linebreak="al", 64297 mathclass="relation", 64298 mathextensible="u", 64299 mathgroup="binary relation", 64300 mathmeaning="maps up", 64301 mathname="mapsup", 64302 unicodeslot=0x21A5, 64303 }, 64304 [0x21A6]={ 64305 category="sm", 64306 description="RIGHTWARDS ARROW FROM BAR", 64307 direction="on", 64308 linebreak="al", 64309 mathclass="relation", 64310 mathextensible="r", 64311 mathfiller="mapstofill", 64312 mathgroup="binary relation", 64313 mathmeaning="maps to", 64314 mathname="mapsto", 64315 synonyms={ "maplet" }, 64316 unicodeslot=0x21A6, 64317 }, 64318 [0x21A7]={ 64319 category="so", 64320 description="DOWNWARDS ARROW FROM BAR", 64321 direction="on", 64322 linebreak="al", 64323 mathclass="relation", 64324 mathextensible="d", 64325 mathgroup="binary relation", 64326 mathmeaning="maps down", 64327 mathname="mapsdown", 64328 synonyms={ "depth symbol" }, 64329 unicodeslot=0x21A7, 64330 }, 64331 [0x21A8]={ 64332 category="so", 64333 description="UP DOWN ARROW WITH BASE", 64334 direction="on", 64335 linebreak="al", 64336 mathclass="ordinary", 64337 mathextensible="v", 64338 mathname="updownarrowbar", 64339 unicodeslot=0x21A8, 64340 }, 64341 [0x21A9]={ 64342 category="so", 64343 description="LEFTWARDS ARROW WITH HOOK", 64344 direction="on", 64345 linebreak="al", 64346 mathclass="relation", 64347 mathextensible="l", 64348 mathfiller="hookleftarrowfill", 64349 mathname="hookleftarrow", 64350 unicodeslot=0x21A9, 64351 variants=variants_emoji, 64352 }, 64353 [0x21AA]={ 64354 category="so", 64355 description="RIGHTWARDS ARROW WITH HOOK", 64356 direction="on", 64357 linebreak="al", 64358 mathclass="relation", 64359 mathextensible="r", 64360 mathfiller="hookrightarrowfill", 64361 mathname="hookrightarrow", 64362 unicodeslot=0x21AA, 64363 variants=variants_emoji, 64364 }, 64365 [0x21AB]={ 64366 category="so", 64367 description="LEFTWARDS ARROW WITH LOOP", 64368 direction="on", 64369 linebreak="al", 64370 mathclass="relation", 64371 mathextensible="l", 64372 mathname="looparrowleft", 64373 unicodeslot=0x21AB, 64374 }, 64375 [0x21AC]={ 64376 category="so", 64377 description="RIGHTWARDS ARROW WITH LOOP", 64378 direction="on", 64379 linebreak="al", 64380 mathclass="relation", 64381 mathextensible="r", 64382 mathname="looparrowright", 64383 unicodeslot=0x21AC, 64384 }, 64385 [0x21AD]={ 64386 category="so", 64387 description="LEFT RIGHT WAVE ARROW", 64388 direction="on", 64389 linebreak="al", 64390 mathclass="relation", 64391 mathextensible="h", 64392 mathname="leftrightsquigarrow", 64393 unicodeslot=0x21AD, 64394 }, 64395 [0x21AE]={ 64396 category="sm", 64397 description="LEFT RIGHT ARROW WITH STROKE", 64398 direction="on", 64399 linebreak="al", 64400 mathclass="relation", 64401 mathextensible="h", 64402 mathname="nleftrightarrow", 64403 specials={ "char", 0x2194, 0x338 }, 64404 unicodeslot=0x21AE, 64405 }, 64406 [0x21AF]={ 64407 category="so", 64408 description="DOWNWARDS ZIGZAG ARROW", 64409 direction="on", 64410 linebreak="al", 64411 mathclass="relation", 64412 mathextensible="d", 64413 mathname="downzigzagarrow", 64414 synonyms={ "electrolysis" }, 64415 unicodeslot=0x21AF, 64416 }, 64417 [0x21B0]={ 64418 category="so", 64419 description="UPWARDS ARROW WITH TIP LEFTWARDS", 64420 direction="on", 64421 linebreak="al", 64422 mathclass="relation", 64423 mathextensible="m", 64424 mathname="Lsh", 64425 unicodeslot=0x21B0, 64426 }, 64427 [0x21B1]={ 64428 category="so", 64429 description="UPWARDS ARROW WITH TIP RIGHTWARDS", 64430 direction="on", 64431 linebreak="al", 64432 mathclass="relation", 64433 mathextensible="m", 64434 mathname="Rsh", 64435 unicodeslot=0x21B1, 64436 }, 64437 [0x21B2]={ 64438 category="so", 64439 description="DOWNWARDS ARROW WITH TIP LEFTWARDS", 64440 direction="on", 64441 linebreak="al", 64442 mathclass="relation", 64443 mathextensible="m", 64444 mathname="Ldsh", 64445 unicodeslot=0x21B2, 64446 }, 64447 [0x21B3]={ 64448 category="so", 64449 description="DOWNWARDS ARROW WITH TIP RIGHTWARDS", 64450 direction="on", 64451 linebreak="al", 64452 mathclass="relation", 64453 mathextensible="m", 64454 mathname="Rdsh", 64455 unicodeslot=0x21B3, 64456 }, 64457 [0x21B4]={ 64458 category="so", 64459 description="RIGHTWARDS ARROW WITH CORNER DOWNWARDS", 64460 direction="on", 64461 linebreak="al", 64462 mathclass="ordinary", 64463 mathextensible="m", 64464 mathname="linefeed", 64465 synonyms={ "line feed" }, 64466 unicodeslot=0x21B4, 64467 }, 64468 [0x21B5]={ 64469 category="so", 64470 comment="conflict: carriagereturn", 64471 description="DOWNWARDS ARROW WITH CORNER LEFTWARDS", 64472 direction="on", 64473 linebreak="al", 64474 mathclass="ordinary", 64475 mathextensible="m", 64476 mathname="carriagereturn", 64477 unicodeslot=0x21B5, 64478 }, 64479 [0x21B6]={ 64480 category="so", 64481 description="ANTICLOCKWISE TOP SEMICIRCLE ARROW", 64482 direction="on", 64483 linebreak="al", 64484 mathclass="relation", 64485 mathname="curvearrowleft", 64486 unicodeslot=0x21B6, 64487 }, 64488 [0x21B7]={ 64489 category="so", 64490 description="CLOCKWISE TOP SEMICIRCLE ARROW", 64491 direction="on", 64492 linebreak="al", 64493 mathclass="relation", 64494 mathname="curvearrowright", 64495 unicodeslot=0x21B7, 64496 }, 64497 [0x21B8]={ 64498 category="so", 64499 cjkwd="a", 64500 description="NORTH WEST ARROW TO LONG BAR", 64501 direction="on", 64502 linebreak="al", 64503 mathclass="relation", 64504 mathname="barovernorthwestarrow", 64505 unicodeslot=0x21B8, 64506 }, 64507 [0x21B9]={ 64508 category="so", 64509 cjkwd="a", 64510 description="LEFTWARDS ARROW TO BAR OVER RIGHTWARDS ARROW TO BAR", 64511 direction="on", 64512 linebreak="al", 64513 mathclass="relation", 64514 mathextensible="h", 64515 mathname="barleftarrowrightarrowbar", 64516 synonyms={ "tab with shift tab" }, 64517 unicodeslot=0x21B9, 64518 }, 64519 [0x21BA]={ 64520 category="so", 64521 description="ANTICLOCKWISE OPEN CIRCLE ARROW", 64522 direction="on", 64523 linebreak="al", 64524 mathspec={ 64525 { 64526 class="relation", 64527 name="circlearrowright", 64528 }, 64529 { 64530 class="relation", 64531 name="acwopencirclearrow", 64532 }, 64533 }, 64534 unicodeslot=0x21BA, 64535 }, 64536 [0x21BB]={ 64537 category="so", 64538 description="CLOCKWISE OPEN CIRCLE ARROW", 64539 direction="on", 64540 linebreak="al", 64541 mathspec={ 64542 { 64543 class="relation", 64544 name="circlearrowleft", 64545 }, 64546 { 64547 class="relation", 64548 name="cwopencirclearrow", 64549 }, 64550 }, 64551 unicodeslot=0x21BB, 64552 }, 64553 [0x21BC]={ 64554 category="so", 64555 description="LEFTWARDS HARPOON WITH BARB UPWARDS", 64556 direction="on", 64557 linebreak="al", 64558 mathclass="relation", 64559 mathextensible="l", 64560 mathfiller="leftharpoonupfill", 64561 mathname="leftharpoonup", 64562 unicodeslot=0x21BC, 64563 }, 64564 [0x21BD]={ 64565 category="so", 64566 description="LEFTWARDS HARPOON WITH BARB DOWNWARDS", 64567 direction="on", 64568 linebreak="al", 64569 mathclass="relation", 64570 mathextensible="l", 64571 mathfiller="leftharpoondownfill", 64572 mathname="leftharpoondown", 64573 unicodeslot=0x21BD, 64574 }, 64575 [0x21BE]={ 64576 category="so", 64577 description="UPWARDS HARPOON WITH BARB RIGHTWARDS", 64578 direction="on", 64579 linebreak="al", 64580 mathgroup="binary relation", 64581 mathmeaning="restriction", 64582 mathspec={ 64583 { 64584 class="relation", 64585 name="upharpoonright", 64586 }, 64587 { 64588 class="relation", 64589 name="restriction", 64590 }, 64591 }, 64592 unicodeslot=0x21BE, 64593 }, 64594 [0x21BF]={ 64595 category="so", 64596 description="UPWARDS HARPOON WITH BARB LEFTWARDS", 64597 direction="on", 64598 linebreak="al", 64599 mathclass="relation", 64600 mathname="upharpoonleft", 64601 unicodeslot=0x21BF, 64602 }, 64603 [0x21C0]={ 64604 category="so", 64605 description="RIGHTWARDS HARPOON WITH BARB UPWARDS", 64606 direction="on", 64607 linebreak="al", 64608 mathclass="relation", 64609 mathextensible="r", 64610 mathfiller="rightharpoonupfill", 64611 mathname="rightharpoonup", 64612 unicodeslot=0x21C0, 64613 }, 64614 [0x21C1]={ 64615 category="so", 64616 description="RIGHTWARDS HARPOON WITH BARB DOWNWARDS", 64617 direction="on", 64618 linebreak="al", 64619 mathclass="relation", 64620 mathextensible="r", 64621 mathfiller="rightharpoondownfill", 64622 mathname="rightharpoondown", 64623 unicodeslot=0x21C1, 64624 }, 64625 [0x21C2]={ 64626 category="so", 64627 description="DOWNWARDS HARPOON WITH BARB RIGHTWARDS", 64628 direction="on", 64629 linebreak="al", 64630 mathclass="relation", 64631 mathname="downharpoonright", 64632 unicodeslot=0x21C2, 64633 }, 64634 [0x21C3]={ 64635 category="so", 64636 description="DOWNWARDS HARPOON WITH BARB LEFTWARDS", 64637 direction="on", 64638 linebreak="al", 64639 mathclass="relation", 64640 mathname="downharpoonleft", 64641 unicodeslot=0x21C3, 64642 }, 64643 [0x21C4]={ 64644 category="so", 64645 description="RIGHTWARDS ARROW OVER LEFTWARDS ARROW", 64646 direction="on", 64647 linebreak="al", 64648 mathclass="relation", 64649 mathextensible="h", 64650 mathfiller="rightoverleftarrowfill", 64651 mathname="rightleftarrows", 64652 unicodeslot=0x21C4, 64653 }, 64654 [0x21C5]={ 64655 category="so", 64656 description="UPWARDS ARROW LEFTWARDS OF DOWNWARDS ARROW", 64657 direction="on", 64658 linebreak="al", 64659 mathclass="relation", 64660 mathextensible="m", 64661 mathname="updownarrows", 64662 unicodeslot=0x21C5, 64663 }, 64664 [0x21C6]={ 64665 category="so", 64666 description="LEFTWARDS ARROW OVER RIGHTWARDS ARROW", 64667 direction="on", 64668 linebreak="al", 64669 mathclass="relation", 64670 mathextensible="h", 64671 mathfiller="lefgtoverrightarrowfill", 64672 mathname="leftrightarrows", 64673 unicodeslot=0x21C6, 64674 }, 64675 [0x21C7]={ 64676 category="so", 64677 description="LEFTWARDS PAIRED ARROWS", 64678 direction="on", 64679 linebreak="al", 64680 mathclass="relation", 64681 mathextensible="l", 64682 mathname="leftleftarrows", 64683 unicodeslot=0x21C7, 64684 }, 64685 [0x21C8]={ 64686 category="so", 64687 description="UPWARDS PAIRED ARROWS", 64688 direction="on", 64689 linebreak="al", 64690 mathclass="relation", 64691 mathextensible="u", 64692 mathname="upuparrows", 64693 unicodeslot=0x21C8, 64694 }, 64695 [0x21C9]={ 64696 category="so", 64697 description="RIGHTWARDS PAIRED ARROWS", 64698 direction="on", 64699 linebreak="al", 64700 mathclass="relation", 64701 mathextensible="r", 64702 mathname="rightrightarrows", 64703 unicodeslot=0x21C9, 64704 }, 64705 [0x21CA]={ 64706 category="so", 64707 description="DOWNWARDS PAIRED ARROWS", 64708 direction="on", 64709 linebreak="al", 64710 mathclass="relation", 64711 mathextensible="d", 64712 mathname="downdownarrows", 64713 unicodeslot=0x21CA, 64714 }, 64715 [0x21CB]={ 64716 category="so", 64717 description="LEFTWARDS HARPOON OVER RIGHTWARDS HARPOON", 64718 direction="on", 64719 linebreak="al", 64720 mathclass="relation", 64721 mathextensible="h", 64722 mathfiller="leftrightharpoonsfill", 64723 mathname="leftrightharpoons", 64724 unicodeslot=0x21CB, 64725 }, 64726 [0x21CC]={ 64727 category="so", 64728 description="RIGHTWARDS HARPOON OVER LEFTWARDS HARPOON", 64729 direction="on", 64730 linebreak="al", 64731 mathclass="relation", 64732 mathextensible="h", 64733 mathfiller="rightleftharpoonsfill", 64734 mathname="rightleftharpoons", 64735 unicodeslot=0x21CC, 64736 }, 64737 [0x21CD]={ 64738 category="so", 64739 description="LEFTWARDS DOUBLE ARROW WITH STROKE", 64740 direction="on", 64741 linebreak="al", 64742 mathclass="relation", 64743 mathextensible="l", 64744 mathgroup="binary relation", 64745 mathmeaning="is not implied by", 64746 mathname="nLeftarrow", 64747 specials={ "char", 0x21D0, 0x338 }, 64748 unicodeslot=0x21CD, 64749 }, 64750 [0x21CE]={ 64751 category="sm", 64752 description="LEFT RIGHT DOUBLE ARROW WITH STROKE", 64753 direction="on", 64754 linebreak="al", 64755 mathclass="relation", 64756 mathextensible="h", 64757 mathname="nLeftrightarrow", 64758 specials={ "char", 0x21D4, 0x338 }, 64759 unicodeslot=0x21CE, 64760 }, 64761 [0x21CF]={ 64762 category="sm", 64763 description="RIGHTWARDS DOUBLE ARROW WITH STROKE", 64764 direction="on", 64765 linebreak="al", 64766 mathclass="relation", 64767 mathextensible="r", 64768 mathname="nRightarrow", 64769 specials={ "char", 0x21D2, 0x338 }, 64770 unicodeslot=0x21CF, 64771 }, 64772 [0x21D0]={ 64773 category="so", 64774 description="LEFTWARDS DOUBLE ARROW", 64775 direction="on", 64776 linebreak="al", 64777 mathclass="relation", 64778 mathextensible="l", 64779 mathgroup="binary relation", 64780 mathlist={ 0x3C, 0x3D, 0x3D }, 64781 mathmeaning="is implied by", 64782 mathname="Leftarrow", 64783 unicodeslot=0x21D0, 64784 }, 64785 [0x21D1]={ 64786 category="so", 64787 description="UPWARDS DOUBLE ARROW", 64788 direction="on", 64789 linebreak="al", 64790 mathclass="relation", 64791 mathextensible="u", 64792 mathname="Uparrow", 64793 unicodeslot=0x21D1, 64794 }, 64795 [0x21D2]={ 64796 category="sm", 64797 cjkwd="a", 64798 description="RIGHTWARDS DOUBLE ARROW", 64799 direction="on", 64800 linebreak="ai", 64801 mathextensible="r", 64802 mathgroup="binary relation", 64803 mathlist={ 0x3D, 0x3D, 0x3E }, 64804 mathmeaning="implies", 64805 mathspec={ 64806 { 64807 class="relation", 64808 name="Rightarrow", 64809 }, 64810 { 64811 class="relation", 64812 name="imply", 64813 }, 64814 }, 64815 unicodeslot=0x21D2, 64816 }, 64817 [0x21D3]={ 64818 category="so", 64819 description="DOWNWARDS DOUBLE ARROW", 64820 direction="on", 64821 linebreak="al", 64822 mathclass="relation", 64823 mathextensible="d", 64824 mathname="Downarrow", 64825 unicodeslot=0x21D3, 64826 }, 64827 [0x21D4]={ 64828 category="sm", 64829 cjkwd="a", 64830 description="LEFT RIGHT DOUBLE ARROW", 64831 direction="on", 64832 linebreak="ai", 64833 mathclass="relation", 64834 mathextensible="h", 64835 mathgroup="binary relation", 64836 mathlist={ 0x3C, 0x3D, 0x3D, 0x3E }, 64837 mathmeaning="if, and only if", 64838 mathname="Leftrightarrow", 64839 unicodeslot=0x21D4, 64840 }, 64841 [0x21D5]={ 64842 category="so", 64843 description="UP DOWN DOUBLE ARROW", 64844 direction="on", 64845 linebreak="al", 64846 mathclass="relation", 64847 mathextensible="v", 64848 mathname="Updownarrow", 64849 unicodeslot=0x21D5, 64850 }, 64851 [0x21D6]={ 64852 category="so", 64853 description="NORTH WEST DOUBLE ARROW", 64854 direction="on", 64855 linebreak="al", 64856 mathclass="relation", 64857 mathname="Nwarrow", 64858 unicodeslot=0x21D6, 64859 }, 64860 [0x21D7]={ 64861 category="so", 64862 description="NORTH EAST DOUBLE ARROW", 64863 direction="on", 64864 linebreak="al", 64865 mathclass="relation", 64866 mathname="Nearrow", 64867 unicodeslot=0x21D7, 64868 }, 64869 [0x21D8]={ 64870 category="so", 64871 description="SOUTH EAST DOUBLE ARROW", 64872 direction="on", 64873 linebreak="al", 64874 mathclass="relation", 64875 mathname="Searrow", 64876 unicodeslot=0x21D8, 64877 }, 64878 [0x21D9]={ 64879 category="so", 64880 description="SOUTH WEST DOUBLE ARROW", 64881 direction="on", 64882 linebreak="al", 64883 mathclass="relation", 64884 mathname="Swarrow", 64885 unicodeslot=0x21D9, 64886 }, 64887 [0x21DA]={ 64888 category="so", 64889 description="LEFTWARDS TRIPLE ARROW", 64890 direction="on", 64891 linebreak="al", 64892 mathclass="relation", 64893 mathextensible="l", 64894 mathname="Lleftarrow", 64895 unicodeslot=0x21DA, 64896 }, 64897 [0x21DB]={ 64898 category="so", 64899 description="RIGHTWARDS TRIPLE ARROW", 64900 direction="on", 64901 linebreak="al", 64902 mathclass="relation", 64903 mathextensible="r", 64904 mathname="Rrightarrow", 64905 unicodeslot=0x21DB, 64906 }, 64907 [0x21DC]={ 64908 category="so", 64909 description="LEFTWARDS SQUIGGLE ARROW", 64910 direction="on", 64911 linebreak="al", 64912 mathclass="relation", 64913 mathextensible="l", 64914 mathname="leftsquigarrow", 64915 unicodeslot=0x21DC, 64916 }, 64917 [0x21DD]={ 64918 category="so", 64919 description="RIGHTWARDS SQUIGGLE ARROW", 64920 direction="on", 64921 linebreak="al", 64922 mathgroup="binary relation", 64923 mathmeaning="leads to", 64924 mathspec={ 64925 { 64926 class="relation", 64927 name="rightsquigarrow", 64928 }, 64929 { 64930 class="relation", 64931 name="leadsto", 64932 }, 64933 }, 64934 unicodeslot=0x21DD, 64935 }, 64936 [0x21DE]={ 64937 category="so", 64938 description="UPWARDS ARROW WITH DOUBLE STROKE", 64939 direction="on", 64940 linebreak="al", 64941 mathclass="relation", 64942 mathextensible="u", 64943 mathname="nHuparrow", 64944 synonyms={ "page up" }, 64945 unicodeslot=0x21DE, 64946 }, 64947 [0x21DF]={ 64948 category="so", 64949 description="DOWNWARDS ARROW WITH DOUBLE STROKE", 64950 direction="on", 64951 linebreak="al", 64952 mathclass="relation", 64953 mathextensible="d", 64954 mathname="nHdownarrow", 64955 unicodeslot=0x21DF, 64956 }, 64957 [0x21E0]={ 64958 category="so", 64959 description="LEFTWARDS DASHED ARROW", 64960 direction="on", 64961 linebreak="al", 64962 mathclass="relation", 64963 mathextensible="l", 64964 mathname="leftdasharrow", 64965 unicodeslot=0x21E0, 64966 }, 64967 [0x21E1]={ 64968 category="so", 64969 description="UPWARDS DASHED ARROW", 64970 direction="on", 64971 linebreak="al", 64972 mathclass="relation", 64973 mathextensible="u", 64974 mathname="updasharrow", 64975 unicodeslot=0x21E1, 64976 }, 64977 [0x21E2]={ 64978 category="so", 64979 description="RIGHTWARDS DASHED ARROW", 64980 direction="on", 64981 linebreak="al", 64982 mathspec={ 64983 { 64984 class="relation", 64985 name="rightdasharrow", 64986 }, 64987 { 64988 class="relation", 64989 name="dasharrow", 64990 }, 64991 }, 64992 unicodeslot=0x21E2, 64993 }, 64994 [0x21E3]={ 64995 category="so", 64996 description="DOWNWARDS DASHED ARROW", 64997 direction="on", 64998 linebreak="al", 64999 mathclass="relation", 65000 mathextensible="d", 65001 mathname="downdasharrow", 65002 unicodeslot=0x21E3, 65003 }, 65004 [0x21E4]={ 65005 category="so", 65006 description="LEFTWARDS ARROW TO BAR", 65007 direction="on", 65008 linebreak="al", 65009 mathclass="relation", 65010 mathextensible="l", 65011 mathname="barleftarrow", 65012 synonyms={ "leftward tab" }, 65013 unicodeslot=0x21E4, 65014 }, 65015 [0x21E5]={ 65016 category="so", 65017 description="RIGHTWARDS ARROW TO BAR", 65018 direction="on", 65019 linebreak="al", 65020 mathclass="relation", 65021 mathextensible="r", 65022 mathname="rightarrowbar", 65023 synonyms={ "rightward tab" }, 65024 unicodeslot=0x21E5, 65025 }, 65026 [0x21E6]={ 65027 category="so", 65028 description="LEFTWARDS WHITE ARROW", 65029 direction="on", 65030 linebreak="al", 65031 mathclass="ordinary", 65032 mathextensible="l", 65033 mathname="leftwhitearrow", 65034 unicodeslot=0x21E6, 65035 }, 65036 [0x21E7]={ 65037 category="so", 65038 cjkwd="a", 65039 description="UPWARDS WHITE ARROW", 65040 direction="on", 65041 linebreak="al", 65042 mathclass="ordinary", 65043 mathextensible="u", 65044 mathname="upwhitearrow", 65045 synonyms={ "shift" }, 65046 unicodeslot=0x21E7, 65047 }, 65048 [0x21E8]={ 65049 category="so", 65050 description="RIGHTWARDS WHITE ARROW", 65051 direction="on", 65052 linebreak="al", 65053 mathclass="ordinary", 65054 mathextensible="r", 65055 mathname="rightwhitearrow", 65056 unicodeslot=0x21E8, 65057 }, 65058 [0x21E9]={ 65059 category="so", 65060 description="DOWNWARDS WHITE ARROW", 65061 direction="on", 65062 linebreak="al", 65063 mathclass="ordinary", 65064 mathextensible="d", 65065 mathname="downwhitearrow", 65066 unicodeslot=0x21E9, 65067 }, 65068 [0x21EA]={ 65069 category="so", 65070 description="UPWARDS WHITE ARROW FROM BAR", 65071 direction="on", 65072 linebreak="al", 65073 unicodeslot=0x21EA, 65074 }, 65075 [0x21EB]={ 65076 category="so", 65077 description="UPWARDS WHITE ARROW ON PEDESTAL", 65078 direction="on", 65079 linebreak="al", 65080 mathclass="ordinary", 65081 mathextensible="u", 65082 mathname="whitearrowupfrombar", 65083 synonyms={ "level 2 lock" }, 65084 unicodeslot=0x21EB, 65085 }, 65086 [0x21EC]={ 65087 category="so", 65088 description="UPWARDS WHITE ARROW ON PEDESTAL WITH HORIZONTAL BAR", 65089 direction="on", 65090 linebreak="al", 65091 synonyms={ "caps lock" }, 65092 unicodeslot=0x21EC, 65093 }, 65094 [0x21ED]={ 65095 category="so", 65096 description="UPWARDS WHITE ARROW ON PEDESTAL WITH VERTICAL BAR", 65097 direction="on", 65098 linebreak="al", 65099 synonyms={ "numerics lock" }, 65100 unicodeslot=0x21ED, 65101 }, 65102 [0x21EE]={ 65103 category="so", 65104 description="UPWARDS WHITE DOUBLE ARROW", 65105 direction="on", 65106 linebreak="al", 65107 synonyms={ "level 3 select" }, 65108 unicodeslot=0x21EE, 65109 }, 65110 [0x21EF]={ 65111 category="so", 65112 description="UPWARDS WHITE DOUBLE ARROW ON PEDESTAL", 65113 direction="on", 65114 linebreak="al", 65115 synonyms={ "level 3 lock" }, 65116 unicodeslot=0x21EF, 65117 }, 65118 [0x21F0]={ 65119 category="so", 65120 description="RIGHTWARDS WHITE ARROW FROM WALL", 65121 direction="on", 65122 linebreak="al", 65123 synonyms={ "group lock" }, 65124 unicodeslot=0x21F0, 65125 }, 65126 [0x21F1]={ 65127 category="so", 65128 description="NORTH WEST ARROW TO CORNER", 65129 direction="on", 65130 linebreak="al", 65131 synonyms={ "home" }, 65132 unicodeslot=0x21F1, 65133 }, 65134 [0x21F2]={ 65135 category="so", 65136 description="SOUTH EAST ARROW TO CORNER", 65137 direction="on", 65138 linebreak="al", 65139 synonyms={ "end" }, 65140 unicodeslot=0x21F2, 65141 }, 65142 [0x21F3]={ 65143 category="so", 65144 description="UP DOWN WHITE ARROW", 65145 direction="on", 65146 linebreak="al", 65147 synonyms={ "scrolling" }, 65148 unicodeslot=0x21F3, 65149 }, 65150 [0x21F4]={ 65151 category="sm", 65152 description="RIGHT ARROW WITH SMALL CIRCLE", 65153 direction="on", 65154 linebreak="al", 65155 mathclass="relation", 65156 mathextensible="r", 65157 mathname="circleonrightarrow", 65158 unicodeslot=0x21F4, 65159 }, 65160 [0x21F5]={ 65161 category="sm", 65162 description="DOWNWARDS ARROW LEFTWARDS OF UPWARDS ARROW", 65163 direction="on", 65164 linebreak="al", 65165 mathclass="relation", 65166 mathextensible="m", 65167 mathname="downuparrows", 65168 unicodeslot=0x21F5, 65169 }, 65170 [0x21F6]={ 65171 category="sm", 65172 description="THREE RIGHTWARDS ARROWS", 65173 direction="on", 65174 linebreak="al", 65175 mathclass="relation", 65176 mathextensible="r", 65177 mathname="rightthreearrows", 65178 unicodeslot=0x21F6, 65179 }, 65180 [0x21F7]={ 65181 category="sm", 65182 description="LEFTWARDS ARROW WITH VERTICAL STROKE", 65183 direction="on", 65184 linebreak="al", 65185 mathclass="relation", 65186 mathextensible="l", 65187 mathname="nvleftarrow", 65188 unicodeslot=0x21F7, 65189 }, 65190 [0x21F8]={ 65191 category="sm", 65192 description="RIGHTWARDS ARROW WITH VERTICAL STROKE", 65193 direction="on", 65194 linebreak="al", 65195 mathclass="relation", 65196 mathextensible="r", 65197 mathname="nvrightarrow", 65198 synonyms={ "partial function" }, 65199 unicodeslot=0x21F8, 65200 }, 65201 [0x21F9]={ 65202 category="sm", 65203 description="LEFT RIGHT ARROW WITH VERTICAL STROKE", 65204 direction="on", 65205 linebreak="al", 65206 mathclass="relation", 65207 mathextensible="h", 65208 mathname="nvleftrightarrow", 65209 synonyms={ "partial relation" }, 65210 unicodeslot=0x21F9, 65211 }, 65212 [0x21FA]={ 65213 category="sm", 65214 description="LEFTWARDS ARROW WITH DOUBLE VERTICAL STROKE", 65215 direction="on", 65216 linebreak="al", 65217 mathclass="relation", 65218 mathextensible="l", 65219 mathname="nVleftarrow", 65220 unicodeslot=0x21FA, 65221 }, 65222 [0x21FB]={ 65223 category="sm", 65224 description="RIGHTWARDS ARROW WITH DOUBLE VERTICAL STROKE", 65225 direction="on", 65226 linebreak="al", 65227 mathclass="relation", 65228 mathextensible="r", 65229 mathname="nVrightarrow", 65230 synonyms={ "finite function" }, 65231 unicodeslot=0x21FB, 65232 }, 65233 [0x21FC]={ 65234 category="sm", 65235 description="LEFT RIGHT ARROW WITH DOUBLE VERTICAL STROKE", 65236 direction="on", 65237 linebreak="al", 65238 mathclass="relation", 65239 mathextensible="h", 65240 mathname="nVleftrightarrow", 65241 synonyms={ "finite relation" }, 65242 unicodeslot=0x21FC, 65243 }, 65244 [0x21FD]={ 65245 category="sm", 65246 description="LEFTWARDS OPEN-HEADED ARROW", 65247 direction="on", 65248 linebreak="al", 65249 mathclass="relation", 65250 mathextensible="l", 65251 mathname="leftarrowtriangle", 65252 unicodeslot=0x21FD, 65253 }, 65254 [0x21FE]={ 65255 category="sm", 65256 description="RIGHTWARDS OPEN-HEADED ARROW", 65257 direction="on", 65258 linebreak="al", 65259 mathclass="relation", 65260 mathextensible="r", 65261 mathname="rightarrowtriangle", 65262 unicodeslot=0x21FE, 65263 }, 65264 [0x21FF]={ 65265 category="sm", 65266 description="LEFT RIGHT OPEN-HEADED ARROW", 65267 direction="on", 65268 linebreak="al", 65269 mathclass="relation", 65270 mathextensible="h", 65271 mathname="leftrightarrowtriangle", 65272 unicodeslot=0x21FF, 65273 }, 65274 [0x2200]={ 65275 category="sm", 65276 cjkwd="a", 65277 description="FOR ALL", 65278 direction="on", 65279 linebreak="ai", 65280 mathclass="ordinary", 65281 mathgroup="unary set", 65282 mathmeaning="for all", 65283 mathname="forall", 65284 synonyms={ "universal quantifier" }, 65285 unicodeslot=0x2200, 65286 }, 65287 [0x2201]={ 65288 category="sm", 65289 description="COMPLEMENT", 65290 direction="on", 65291 linebreak="al", 65292 mathclass="ordinary", 65293 mathgroup="unary set", 65294 mathmeaning="the complement of", 65295 mathname="complement", 65296 unicodeslot=0x2201, 65297 }, 65298 [0x2202]={ 65299 category="sm", 65300 cjkwd="a", 65301 description="PARTIAL DIFFERENTIAL", 65302 direction="on", 65303 linebreak="ai", 65304 mathclass="differential", 65305 mathgroup="differential", 65306 mathmeaning="partial d", 65307 mathname="partial", 65308 unicodeslot=0x2202, 65309 }, 65310 [0x2203]={ 65311 category="sm", 65312 cjkwd="a", 65313 description="THERE EXISTS", 65314 direction="on", 65315 linebreak="ai", 65316 mathclass="ordinary", 65317 mathgroup="unary set", 65318 mathmeaning="there exists", 65319 mathname="exists", 65320 synonyms={ "existential quantifier" }, 65321 unicodeslot=0x2203, 65322 }, 65323 [0x2204]={ 65324 category="sm", 65325 description="THERE DOES NOT EXIST", 65326 direction="on", 65327 linebreak="al", 65328 mathclass="ordinary", 65329 mathgroup="unary set", 65330 mathmeaning="does not exist", 65331 mathname="nexists", 65332 specials={ "char", 0x2203, 0x338 }, 65333 unicodeslot=0x2204, 65334 }, 65335 [0x2205]={ 65336 category="sm", 65337 description="EMPTY SET", 65338 direction="on", 65339 linebreak="al", 65340 mathclass="ordinary", 65341 mathgroup="constant set", 65342 mathmeaning="empty set", 65343 mathname="emptyset", 65344 synonyms={ "null set" }, 65345 unicodeslot=0x2205, 65346 variants={ 65347 [0xFE00]="zero with long diagonal stroke overlay form", 65348 }, 65349 }, 65350 [0x2206]={ 65351 category="sm", 65352 description="INCREMENT", 65353 direction="on", 65354 linebreak="al", 65355 mathclass="differential", 65356 mathgroup="differential", 65357 mathmeaning="laplacian", 65358 mathname="laplace", 65359 synonyms={ "forward difference", "laplace operator" }, 65360 unicodeslot=0x2206, 65361 }, 65362 [0x2207]={ 65363 category="sm", 65364 cjkwd="a", 65365 description="NABLA", 65366 direction="on", 65367 linebreak="ai", 65368 mathgroup="differential", 65369 mathspec={ 65370 { 65371 class="differential", 65372 group="differential", 65373 meaning="nabla", 65374 name="nabla", 65375 }, 65376 { 65377 class="differential", 65378 group="differential2", 65379 meaning="gradient", 65380 name="gradient", 65381 }, 65382 }, 65383 synonyms={ "backward difference", "del" }, 65384 unicodeslot=0x2207, 65385 }, 65386 [0x2208]={ 65387 category="sm", 65388 cjkwd="a", 65389 description="ELEMENT OF", 65390 direction="on", 65391 linebreak="ai", 65392 mathclass="relation", 65393 mathgroup="binary set relation", 65394 mathmeaning="belongs to", 65395 mathname="in", 65396 mirror=0x220B, 65397 unicodeslot=0x2208, 65398 }, 65399 [0x2209]={ 65400 category="sm", 65401 description="NOT AN ELEMENT OF", 65402 direction="on", 65403 linebreak="al", 65404 mathgroup="binary set relation", 65405 mathmeaning="does not belong to", 65406 mathspec={ 65407 { 65408 class="relation", 65409 name="notin", 65410 }, 65411 { 65412 class="relation", 65413 name="nin", 65414 }, 65415 }, 65416 mirror=0x220C, 65417 specials={ "char", 0x2208, 0x338 }, 65418 unicodeslot=0x2209, 65419 }, 65420 [0x220A]={ 65421 category="sm", 65422 description="SMALL ELEMENT OF", 65423 direction="on", 65424 linebreak="al", 65425 mirror=0x220D, 65426 unicodeslot=0x220A, 65427 }, 65428 [0x220B]={ 65429 category="sm", 65430 cjkwd="a", 65431 description="CONTAINS AS MEMBER", 65432 direction="on", 65433 linebreak="ai", 65434 mathgroup="binary set relation", 65435 mathmeaning="contains", 65436 mathspec={ 65437 { 65438 class="relation", 65439 name="ni", 65440 }, 65441 { 65442 class="relation", 65443 name="owns", 65444 }, 65445 }, 65446 mirror=0x2208, 65447 unicodeslot=0x220B, 65448 }, 65449 [0x220C]={ 65450 category="sm", 65451 description="DOES NOT CONTAIN AS MEMBER", 65452 direction="on", 65453 linebreak="al", 65454 mathgroup="binary set relation", 65455 mathmeaning="does not contain", 65456 mathspec={ 65457 { 65458 class="relation", 65459 name="nni", 65460 }, 65461 { 65462 class="relation", 65463 name="nowns", 65464 }, 65465 }, 65466 mirror=0x2209, 65467 specials={ "char", 0x220B, 0x338 }, 65468 unicodeslot=0x220C, 65469 }, 65470 [0x220D]={ 65471 category="sm", 65472 description="SMALL CONTAINS AS MEMBER", 65473 direction="on", 65474 linebreak="al", 65475 mirror=0x220A, 65476 unicodeslot=0x220D, 65477 }, 65478 [0x220E]={ 65479 category="sm", 65480 description="END OF PROOF", 65481 direction="on", 65482 linebreak="al", 65483 synonyms={ "q.e.d." }, 65484 unicodeslot=0x220E, 65485 }, 65486 [0x220F]={ 65487 category="sm", 65488 cjkwd="a", 65489 description="N-ARY PRODUCT", 65490 direction="on", 65491 linebreak="ai", 65492 mathclass="operator", 65493 mathgroup="nary operator", 65494 mathmeaning="product", 65495 mathname="prod", 65496 synonyms={ "product sign" }, 65497 unicodeslot=0x220F, 65498 }, 65499 [0x2210]={ 65500 category="sm", 65501 description="N-ARY COPRODUCT", 65502 direction="on", 65503 linebreak="al", 65504 mathclass="operator", 65505 mathgroup="nary operator", 65506 mathmeaning="coproduct", 65507 mathname="coprod", 65508 synonyms={ "coproduct sign" }, 65509 unicodeslot=0x2210, 65510 }, 65511 [0x2211]={ 65512 category="sm", 65513 cjkwd="a", 65514 description="N-ARY SUMMATION", 65515 direction="on", 65516 linebreak="ai", 65517 mathclass="operator", 65518 mathgroup="nary operator", 65519 mathmeaning="sum", 65520 mathname="sum", 65521 synonyms={ "summation sign" }, 65522 unicodeslot=0x2211, 65523 }, 65524 [0x2212]={ 65525 category="sm", 65526 description="MINUS SIGN", 65527 direction="es", 65528 linebreak="pr", 65529 mathextensible="h", 65530 mathgroup="binary operator", 65531 mathmeaning="minus", 65532 mathspec={ 65533 { 65534 class="binary", 65535 name="minus", 65536 }, 65537 { 65538 class="relation", 65539 comment="useless", 65540 name="relbar", 65541 }, 65542 }, 65543 unicodeslot=0x2212, 65544 }, 65545 [0x2213]={ 65546 category="sm", 65547 contextname="textmp", 65548 description="MINUS-OR-PLUS SIGN", 65549 direction="et", 65550 linebreak="pr", 65551 mathclass="binary", 65552 mathgroup="binary arithmetic", 65553 mathmeaning="minus plus", 65554 mathname="mp", 65555 unicodeslot=0x2213, 65556 }, 65557 [0x2214]={ 65558 category="sm", 65559 description="DOT PLUS", 65560 direction="on", 65561 linebreak="al", 65562 mathclass="binary", 65563 mathgroup="binary arithmetic", 65564 mathmeaning="dot plus", 65565 mathname="dotplus", 65566 unicodeslot=0x2214, 65567 }, 65568 [0x2215]={ 65569 category="sm", 65570 cjkwd="a", 65571 comment="mathclass=ordinary,mathname=diagup", 65572 description="DIVISION SLASH", 65573 direction="on", 65574 linebreak="ai", 65575 mirror=0x29F5, 65576 unicodeslot=0x2215, 65577 }, 65578 [0x2216]={ 65579 category="sm", 65580 comment="mathclass=ordinary,mathname=diagdown", 65581 description="SET MINUS", 65582 direction="on", 65583 linebreak="al", 65584 mathgroup="binary arithmetic", 65585 mathmeaning="set minus", 65586 mathspec={ 65587 { 65588 class="binary", 65589 name="setminus", 65590 }, 65591 }, 65592 unicodeslot=0x2216, 65593 }, 65594 [0x2217]={ 65595 category="sm", 65596 description="ASTERISK OPERATOR", 65597 direction="on", 65598 linebreak="al", 65599 mathspec={ 65600 { 65601 class="binary", 65602 group="binary arithmetic", 65603 meaning="asterisk operator", 65604 name="ast", 65605 }, 65606 { 65607 class="binary", 65608 group="binary operator", 65609 meaning="convolved with", 65610 name="convolve", 65611 }, 65612 { 65613 class="prime", 65614 group="postfix operator", 65615 meaning="adjoint", 65616 name="adjointsymbol", 65617 }, 65618 }, 65619 unicodeslot=0x2217, 65620 }, 65621 [0x2218]={ 65622 category="sm", 65623 description="RING OPERATOR", 65624 direction="on", 65625 linebreak="al", 65626 mathclass="binary", 65627 mathgroup="binary arithmetic", 65628 mathmeaning="composed with", 65629 mathname="circ", 65630 synonyms={ "apl jot", "composite function" }, 65631 unicodeslot=0x2218, 65632 }, 65633 [0x2219]={ 65634 category="sm", 65635 description="BULLET OPERATOR", 65636 direction="on", 65637 linebreak="al", 65638 mathclass="binary", 65639 unicodeslot=0x2219, 65640 }, 65641 [0x221A]={ 65642 category="sm", 65643 cjkwd="a", 65644 description="SQUARE ROOT", 65645 direction="on", 65646 linebreak="ai", 65647 mathspec={ 65648 { 65649 class="root", 65650 name="rootradical", 65651 }, 65652 { 65653 class="radical", 65654 name="surdradical", 65655 }, 65656 { 65657 class="ordinary", 65658 name="surd", 65659 }, 65660 }, 65661 synonyms={ "radical sign" }, 65662 unicodeslot=0x221A, 65663 }, 65664 [0x221B]={ 65665 category="sm", 65666 description="CUBE ROOT", 65667 direction="on", 65668 linebreak="al", 65669 unicodeslot=0x221B, 65670 }, 65671 [0x221C]={ 65672 category="sm", 65673 description="FOURTH ROOT", 65674 direction="on", 65675 linebreak="al", 65676 unicodeslot=0x221C, 65677 }, 65678 [0x221D]={ 65679 category="sm", 65680 cjkwd="a", 65681 description="PROPORTIONAL TO", 65682 direction="on", 65683 linebreak="ai", 65684 mathclass="relation", 65685 mathgroup="binary relation", 65686 mathmeaning="is proportional to", 65687 mathname="propto", 65688 unicodeslot=0x221D, 65689 }, 65690 [0x221E]={ 65691 category="sm", 65692 cjkwd="a", 65693 description="INFINITY", 65694 direction="on", 65695 linebreak="ai", 65696 mathclass="ordinary", 65697 mathgroup="constant arithmetic", 65698 mathmeaning="infinity", 65699 mathname="infty", 65700 unicodeslot=0x221E, 65701 }, 65702 [0x221F]={ 65703 category="sm", 65704 cjkwd="a", 65705 description="RIGHT ANGLE", 65706 direction="on", 65707 linebreak="ai", 65708 mathclass="ordinary", 65709 mathname="rightangle", 65710 mirror=0x2BFE, 65711 unicodeslot=0x221F, 65712 }, 65713 [0x2220]={ 65714 category="sm", 65715 cjkwd="a", 65716 description="ANGLE", 65717 direction="on", 65718 linebreak="ai", 65719 mathclass="ordinary", 65720 mathname="angle", 65721 mirror=0x29A3, 65722 unicodeslot=0x2220, 65723 }, 65724 [0x2221]={ 65725 category="sm", 65726 description="MEASURED ANGLE", 65727 direction="on", 65728 linebreak="al", 65729 mathclass="ordinary", 65730 mathname="measuredangle", 65731 mirror=0x299B, 65732 unicodeslot=0x2221, 65733 }, 65734 [0x2222]={ 65735 category="sm", 65736 description="SPHERICAL ANGLE", 65737 direction="on", 65738 linebreak="al", 65739 mathclass="ordinary", 65740 mathname="sphericalangle", 65741 mirror=0x29A0, 65742 synonyms={ "angle arc" }, 65743 unicodeslot=0x2222, 65744 }, 65745 [0x2223]={ 65746 category="sm", 65747 cjkwd="a", 65748 description="DIVIDES", 65749 direction="on", 65750 linebreak="ai", 65751 mathgroup="binary relation", 65752 mathmeaning="divides", 65753 mathspec={ 65754 { 65755 class="ordinary", 65756 name="divides", 65757 }, 65758 { 65759 class="relation", 65760 name="mid", 65761 }, 65762 }, 65763 synonyms={ "apl stile", "such that" }, 65764 unicodeslot=0x2223, 65765 }, 65766 [0x2224]={ 65767 category="sm", 65768 description="DOES NOT DIVIDE", 65769 direction="on", 65770 linebreak="al", 65771 mathclass="relation", 65772 mathgroup="binary relation", 65773 mathmeaning="does not divide", 65774 mathspec={ 65775 { 65776 class="ordinary", 65777 name="ndivides", 65778 }, 65779 { 65780 class="relation", 65781 name="nmid", 65782 }, 65783 }, 65784 mirror=0x2AEE, 65785 specials={ "char", 0x2223, 0x338 }, 65786 unicodeslot=0x2224, 65787 }, 65788 [0x2225]={ 65789 category="sm", 65790 cjkwd="a", 65791 description="PARALLEL TO", 65792 direction="on", 65793 linebreak="ai", 65794 mathclass="relation", 65795 mathgroup="binary relation", 65796 mathmeaning="is parallel to", 65797 mathspec={ 65798 { 65799 class="relation", 65800 name="parallel", 65801 }, 65802 }, 65803 unicodeslot=0x2225, 65804 }, 65805 [0x2226]={ 65806 category="sm", 65807 description="NOT PARALLEL TO", 65808 direction="on", 65809 linebreak="al", 65810 mathclass="relation", 65811 mathgroup="binary relation", 65812 mathmeaning="is not parallel to", 65813 mathname="nparallel", 65814 specials={ "char", 0x2225, 0x338 }, 65815 unicodeslot=0x2226, 65816 }, 65817 [0x2227]={ 65818 category="sm", 65819 cjkwd="a", 65820 description="LOGICAL AND", 65821 direction="on", 65822 linebreak="ai", 65823 mathspec={ 65824 { 65825 class="binary", 65826 group="binary arithmetic", 65827 meaning="wedge product", 65828 name="wedge", 65829 }, 65830 { 65831 class="binary", 65832 group="binary logical", 65833 meaning="and", 65834 name="land", 65835 }, 65836 }, 65837 synonyms={ "conjunction", "wedge" }, 65838 unicodeslot=0x2227, 65839 }, 65840 [0x2228]={ 65841 category="sm", 65842 cjkwd="a", 65843 description="LOGICAL OR", 65844 direction="on", 65845 linebreak="ai", 65846 mathspec={ 65847 { 65848 class="binary", 65849 group="binary arithmetic", 65850 meaning="wedge sum", 65851 name="vee", 65852 }, 65853 { 65854 class="binary", 65855 group="binary logical", 65856 meaning="or", 65857 name="lor", 65858 }, 65859 }, 65860 synonyms={ "disjunction", "vee" }, 65861 unicodeslot=0x2228, 65862 }, 65863 [0x2229]={ 65864 category="sm", 65865 cjkwd="a", 65866 description="INTERSECTION", 65867 direction="on", 65868 linebreak="ai", 65869 mathclass="binary", 65870 mathgroup="binary arithmetic", 65871 mathmeaning="intersection", 65872 mathname="cap", 65873 synonyms={ "cap", "hat" }, 65874 unicodeslot=0x2229, 65875 variants={ 65876 [0xFE00]="with serifs", 65877 }, 65878 }, 65879 [0x222A]={ 65880 category="sm", 65881 cjkwd="a", 65882 description="UNION", 65883 direction="on", 65884 linebreak="ai", 65885 mathclass="binary", 65886 mathgroup="binary arithmetic", 65887 mathmeaning="union", 65888 mathname="cup", 65889 synonyms={ "cup" }, 65890 unicodeslot=0x222A, 65891 variants={ 65892 [0xFE00]="with serifs", 65893 }, 65894 }, 65895 [0x222B]={ 65896 category="sm", 65897 cjkwd="a", 65898 description="INTEGRAL", 65899 direction="on", 65900 linebreak="ai", 65901 mathclass="integral", 65902 mathgroup="integral", 65903 mathmeaning="integral", 65904 mathspec={ 65905 { 65906 class="integral", 65907 name="int", 65908 }, 65909 { 65910 class="ordinary", 65911 name="intop", 65912 }, 65913 }, 65914 unicodeslot=0x222B, 65915 }, 65916 [0x222C]={ 65917 category="sm", 65918 cjkwd="a", 65919 description="DOUBLE INTEGRAL", 65920 direction="on", 65921 linebreak="ai", 65922 mathclass="integral", 65923 mathgroup="integral", 65924 mathmeaning="double integral", 65925 mathspec={ 65926 { 65927 class="integral", 65928 name="iint", 65929 }, 65930 { 65931 class="ordinary", 65932 name="iintop", 65933 }, 65934 }, 65935 specials={ "compat", 0x222B, 0x222B }, 65936 unicodeslot=0x222C, 65937 }, 65938 [0x222D]={ 65939 category="sm", 65940 description="TRIPLE INTEGRAL", 65941 direction="on", 65942 linebreak="al", 65943 mathclass="integral", 65944 mathgroup="integral", 65945 mathmeaning="triple integral of", 65946 mathspec={ 65947 { 65948 class="integral", 65949 name="iiint", 65950 }, 65951 { 65952 class="ordinary", 65953 name="iiintop", 65954 }, 65955 }, 65956 specials={ "compat", 0x222B, 0x222B, 0x222B }, 65957 unicodeslot=0x222D, 65958 }, 65959 [0x222E]={ 65960 category="sm", 65961 cjkwd="a", 65962 description="CONTOUR INTEGRAL", 65963 direction="on", 65964 linebreak="ai", 65965 mathclass="integral", 65966 mathgroup="integral", 65967 mathmeaning="contour integral", 65968 mathname="oint", 65969 unicodeslot=0x222E, 65970 }, 65971 [0x222F]={ 65972 category="sm", 65973 description="SURFACE INTEGRAL", 65974 direction="on", 65975 linebreak="al", 65976 mathclass="integral", 65977 mathgroup="integral", 65978 mathmeaning="surface integral", 65979 mathname="oiint", 65980 specials={ "compat", 0x222E, 0x222E }, 65981 unicodeslot=0x222F, 65982 }, 65983 [0x2230]={ 65984 category="sm", 65985 description="VOLUME INTEGRAL", 65986 direction="on", 65987 linebreak="al", 65988 mathclass="integral", 65989 mathgroup="integral", 65990 mathmeaning="volume integral", 65991 mathname="oiiint", 65992 specials={ "compat", 0x222E, 0x222E, 0x222E }, 65993 unicodeslot=0x2230, 65994 }, 65995 [0x2231]={ 65996 category="sm", 65997 description="CLOCKWISE INTEGRAL", 65998 direction="on", 65999 linebreak="al", 66000 mathclass="integral", 66001 mathgroup="integral", 66002 mathmeaning="clockwise integral", 66003 mathname="intclockwise", 66004 unicodeslot=0x2231, 66005 }, 66006 [0x2232]={ 66007 category="sm", 66008 description="CLOCKWISE CONTOUR INTEGRAL", 66009 direction="on", 66010 linebreak="al", 66011 mathclass="integral", 66012 mathgroup="integral", 66013 mathmeaning="clockwise contour integral", 66014 mathname="ointclockwise", 66015 unicodeslot=0x2232, 66016 }, 66017 [0x2233]={ 66018 category="sm", 66019 description="ANTICLOCKWISE CONTOUR INTEGRAL", 66020 direction="on", 66021 linebreak="al", 66022 mathclass="integral", 66023 mathgroup="integral", 66024 mathmeaning="anticlockwise contour integral", 66025 mathname="ointctrclockwise", 66026 synonyms={ "counterclockwise contour integral" }, 66027 unicodeslot=0x2233, 66028 }, 66029 [0x2234]={ 66030 category="sm", 66031 cjkwd="a", 66032 description="THEREFORE", 66033 direction="on", 66034 linebreak="ai", 66035 mathclass="ellipsis", 66036 mathgroup="whatever", 66037 mathmeaning="therefore, ", 66038 mathname="therefore", 66039 unicodeslot=0x2234, 66040 }, 66041 [0x2235]={ 66042 category="sm", 66043 cjkwd="a", 66044 description="BECAUSE", 66045 direction="on", 66046 linebreak="ai", 66047 mathclass="ellipsis", 66048 mathgroup="whatever", 66049 mathmeaning="because", 66050 mathname="because", 66051 unicodeslot=0x2235, 66052 }, 66053 [0x2236]={ 66054 category="sm", 66055 cjkwd="a", 66056 description="RATIO", 66057 direction="on", 66058 linebreak="ai", 66059 mathclass="punctuation", 66060 mathspec={ 66061 { 66062 class="punctuation", 66063 group="punctuation", 66064 meaning="colon", 66065 name="colon", 66066 }, 66067 { 66068 class="punctuation", 66069 group="specifier", 66070 meaning="maps", 66071 name="maps", 66072 }, 66073 { 66074 class="punctuation", 66075 group="specifier2", 66076 meaning="maps as", 66077 name="mapsas", 66078 }, 66079 }, 66080 unicodeslot=0x2236, 66081 }, 66082 [0x2237]={ 66083 category="sm", 66084 cjkwd="a", 66085 description="PROPORTION", 66086 direction="on", 66087 linebreak="ai", 66088 mathclass="relation", 66089 mathlist={ 0x3A, 0x3A }, 66090 mathname="squaredots", 66091 unicodeslot=0x2237, 66092 }, 66093 [0x2238]={ 66094 category="sm", 66095 description="DOT MINUS", 66096 direction="on", 66097 linebreak="al", 66098 mathclass="binary", 66099 mathname="dotminus", 66100 synonyms={ "saturating subtraction" }, 66101 unicodeslot=0x2238, 66102 }, 66103 [0x2239]={ 66104 category="sm", 66105 description="EXCESS", 66106 direction="on", 66107 linebreak="al", 66108 mathclass="relation", 66109 mathlist={ 0x2212, 0x3A }, 66110 mathname="minuscolon", 66111 unicodeslot=0x2239, 66112 }, 66113 [0x223A]={ 66114 category="sm", 66115 description="GEOMETRIC PROPORTION", 66116 direction="on", 66117 linebreak="al", 66118 unicodeslot=0x223A, 66119 }, 66120 [0x223B]={ 66121 category="sm", 66122 description="HOMOTHETIC", 66123 direction="on", 66124 linebreak="al", 66125 unicodeslot=0x223B, 66126 }, 66127 [0x223C]={ 66128 category="sm", 66129 cjkwd="a", 66130 description="TILDE OPERATOR", 66131 direction="on", 66132 linebreak="ai", 66133 mathclass="relation", 66134 mathname="sim", 66135 mirror=0x223D, 66136 synonyms={ "apl tilde", "cycle", "difference between", "not", "proportional to", "similar to", "varies with" }, 66137 unicodeslot=0x223C, 66138 }, 66139 [0x223D]={ 66140 category="sm", 66141 cjkwd="a", 66142 description="REVERSED TILDE", 66143 direction="on", 66144 linebreak="ai", 66145 mathclass="relation", 66146 mathname="backsim", 66147 mirror=0x223C, 66148 synonyms={ "lazy s" }, 66149 unicodeslot=0x223D, 66150 }, 66151 [0x223E]={ 66152 category="sm", 66153 description="INVERTED LAZY S", 66154 direction="on", 66155 linebreak="al", 66156 synonyms={ "most positive" }, 66157 unicodeslot=0x223E, 66158 }, 66159 [0x223F]={ 66160 category="sm", 66161 description="SINE WAVE", 66162 direction="on", 66163 linebreak="al", 66164 synonyms={ "alternating current" }, 66165 unicodeslot=0x223F, 66166 }, 66167 [0x2240]={ 66168 category="sm", 66169 description="WREATH PRODUCT", 66170 direction="on", 66171 linebreak="al", 66172 mathclass="binary", 66173 mathgroup="binary operator", 66174 mathmeaning="wreath product", 66175 mathname="wr", 66176 unicodeslot=0x2240, 66177 }, 66178 [0x2241]={ 66179 category="sm", 66180 description="NOT TILDE", 66181 direction="on", 66182 linebreak="al", 66183 mathclass="relation", 66184 mathname="nsim", 66185 specials={ "char", 0x223C, 0x338 }, 66186 unicodeslot=0x2241, 66187 }, 66188 [0x2242]={ 66189 category="sm", 66190 description="MINUS TILDE", 66191 direction="on", 66192 linebreak="al", 66193 mathclass="relation", 66194 mathname="eqsim", 66195 unicodeslot=0x2242, 66196 }, 66197 [0x2243]={ 66198 category="sm", 66199 description="ASYMPTOTICALLY EQUAL TO", 66200 direction="on", 66201 linebreak="al", 66202 mathclass="relation", 66203 mathgroup="binary relation", 66204 mathmeaning="asymptotically equals", 66205 mathname="simeq", 66206 mirror=0x22CD, 66207 unicodeslot=0x2243, 66208 }, 66209 [0x2244]={ 66210 category="sm", 66211 description="NOT ASYMPTOTICALLY EQUAL TO", 66212 direction="on", 66213 linebreak="al", 66214 mathclass="relation", 66215 mathgroup="binary relation", 66216 mathmeaning="is not asymptotically equal to", 66217 mathname="nsimeq", 66218 specials={ "char", 0x2243, 0x338 }, 66219 unicodeslot=0x2244, 66220 }, 66221 [0x2245]={ 66222 category="sm", 66223 description="APPROXIMATELY EQUAL TO", 66224 direction="on", 66225 linebreak="al", 66226 mathgroup="binary relation", 66227 mathmeaning="approximately equals", 66228 mathspec={ 66229 { 66230 class="relation", 66231 name="approxEq", 66232 }, 66233 { 66234 class="relation", 66235 name="cong", 66236 }, 66237 }, 66238 mirror=0x224C, 66239 unicodeslot=0x2245, 66240 }, 66241 [0x2246]={ 66242 category="sm", 66243 description="APPROXIMATELY BUT NOT ACTUALLY EQUAL TO", 66244 direction="on", 66245 linebreak="al", 66246 mathgroup="binary relation", 66247 mathmeaning="similar but not equal to", 66248 mathspec={ 66249 { 66250 class="relation", 66251 name="napproxEq", 66252 }, 66253 { 66254 class="relation", 66255 name="ncong", 66256 }, 66257 }, 66258 unicodeslot=0x2246, 66259 }, 66260 [0x2247]={ 66261 category="sm", 66262 description="NEITHER APPROXIMATELY NOR ACTUALLY EQUAL TO", 66263 direction="on", 66264 linebreak="al", 66265 mathclass="relation", 66266 mathgroup="binary relation", 66267 mathmeaning="is neither approximately, nor equal to", 66268 mathname="approxnEq", 66269 specials={ "char", 0x2245, 0x338 }, 66270 unicodeslot=0x2247, 66271 }, 66272 [0x2248]={ 66273 category="sm", 66274 cjkwd="a", 66275 description="ALMOST EQUAL TO", 66276 direction="on", 66277 linebreak="ai", 66278 mathclass="relation", 66279 mathgroup="binary relation", 66280 mathmeaning="approximately equals", 66281 mathname="approx", 66282 synonyms={ "asymptotic to" }, 66283 unicodeslot=0x2248, 66284 }, 66285 [0x2249]={ 66286 category="sm", 66287 description="NOT ALMOST EQUAL TO", 66288 direction="on", 66289 linebreak="al", 66290 mathclass="relation", 66291 mathgroup="binary relation", 66292 mathmeaning="is not approximately equal to", 66293 mathname="napprox", 66294 specials={ "char", 0x2248, 0x338 }, 66295 unicodeslot=0x2249, 66296 }, 66297 [0x224A]={ 66298 category="sm", 66299 description="ALMOST EQUAL OR EQUAL TO", 66300 direction="on", 66301 linebreak="al", 66302 mathclass="relation", 66303 mathgroup="binary relation", 66304 mathmeaning="approximately equals, or equals", 66305 mathname="approxeq", 66306 unicodeslot=0x224A, 66307 }, 66308 [0x224B]={ 66309 category="sm", 66310 description="TRIPLE TILDE", 66311 direction="on", 66312 linebreak="al", 66313 mathclass="relation", 66314 mathgroup="binary relation", 66315 mathmeaning="approximately identical to", 66316 unicodeslot=0x224B, 66317 }, 66318 [0x224C]={ 66319 category="sm", 66320 cjkwd="a", 66321 description="ALL EQUAL TO", 66322 direction="on", 66323 linebreak="ai", 66324 mathclass="relation", 66325 mathgroup="binary relation", 66326 mathmeaning="are all equal to", 66327 mirror=0x2245, 66328 unicodeslot=0x224C, 66329 }, 66330 [0x224D]={ 66331 category="sm", 66332 description="EQUIVALENT TO", 66333 direction="on", 66334 linebreak="al", 66335 mathclass="relation", 66336 mathgroup="binary relation", 66337 mathmeaning="asymptotically equals", 66338 mathname="asymp", 66339 unicodeslot=0x224D, 66340 }, 66341 [0x224E]={ 66342 category="sm", 66343 description="GEOMETRICALLY EQUIVALENT TO", 66344 direction="on", 66345 linebreak="al", 66346 mathclass="relation", 66347 mathname="Bumpeq", 66348 unicodeslot=0x224E, 66349 }, 66350 [0x224F]={ 66351 category="sm", 66352 description="DIFFERENCE BETWEEN", 66353 direction="on", 66354 linebreak="al", 66355 unicodeslot=0x224F, 66356 }, 66357 [0x2250]={ 66358 category="sm", 66359 description="APPROACHES THE LIMIT", 66360 direction="on", 66361 linebreak="al", 66362 mathclass="relation", 66363 mathname="doteq", 66364 unicodeslot=0x2250, 66365 }, 66366 [0x2251]={ 66367 category="sm", 66368 description="GEOMETRICALLY EQUAL TO", 66369 direction="on", 66370 linebreak="al", 66371 mathspec={ 66372 { 66373 class="relation", 66374 name="doteqdot", 66375 }, 66376 { 66377 class="relation", 66378 name="Doteq", 66379 }, 66380 }, 66381 unicodeslot=0x2251, 66382 }, 66383 [0x2252]={ 66384 category="sm", 66385 cjkwd="a", 66386 description="APPROXIMATELY EQUAL TO OR THE IMAGE OF", 66387 direction="on", 66388 linebreak="ai", 66389 mathclass="relation", 66390 mathname="fallingdotseq", 66391 mirror=0x2253, 66392 synonyms={ "nearly equals" }, 66393 unicodeslot=0x2252, 66394 }, 66395 [0x2253]={ 66396 category="sm", 66397 description="IMAGE OF OR APPROXIMATELY EQUAL TO", 66398 direction="on", 66399 linebreak="al", 66400 mathclass="relation", 66401 mathname="risingdotseq", 66402 mirror=0x2252, 66403 unicodeslot=0x2253, 66404 }, 66405 [0x2254]={ 66406 category="sm", 66407 description="COLON EQUALS", 66408 direction="on", 66409 linebreak="al", 66410 mathclass="relation", 66411 mathgroup="binary relation", 66412 mathlist={ 0x3A, 0x3D }, 66413 mathmeaning="is defined by", 66414 mathname="colonequals", 66415 mirror=0x2255, 66416 unicodeslot=0x2254, 66417 }, 66418 [0x2255]={ 66419 category="sm", 66420 description="EQUALS COLON", 66421 direction="on", 66422 linebreak="al", 66423 mathclass="relation", 66424 mathgroup="binary relation", 66425 mathlist={ 0x3D, 0x3A }, 66426 mathmeaning="defines", 66427 mathname="equalscolon", 66428 mirror=0x2254, 66429 unicodeslot=0x2255, 66430 }, 66431 [0x2256]={ 66432 category="sm", 66433 description="RING IN EQUAL TO", 66434 direction="on", 66435 linebreak="al", 66436 mathclass="relation", 66437 mathname="eqcirc", 66438 unicodeslot=0x2256, 66439 }, 66440 [0x2257]={ 66441 category="sm", 66442 description="RING EQUAL TO", 66443 direction="on", 66444 linebreak="al", 66445 mathclass="relation", 66446 mathname="circeq", 66447 synonyms={ "approximately equal to" }, 66448 unicodeslot=0x2257, 66449 }, 66450 [0x2258]={ 66451 category="sm", 66452 description="CORRESPONDS TO", 66453 direction="on", 66454 linebreak="al", 66455 unicodeslot=0x2258, 66456 }, 66457 [0x2259]={ 66458 category="sm", 66459 description="ESTIMATES", 66460 direction="on", 66461 linebreak="al", 66462 mathclass="relation", 66463 mathname="wedgeeq", 66464 synonyms={ "corresponds to" }, 66465 unicodeslot=0x2259, 66466 }, 66467 [0x225A]={ 66468 category="sm", 66469 description="EQUIANGULAR TO", 66470 direction="on", 66471 linebreak="al", 66472 mathclass="relation", 66473 mathname="veeeq", 66474 unicodeslot=0x225A, 66475 }, 66476 [0x225B]={ 66477 category="sm", 66478 description="STAR EQUALS", 66479 direction="on", 66480 linebreak="al", 66481 mathclass="relation", 66482 mathname="stareq", 66483 unicodeslot=0x225B, 66484 }, 66485 [0x225C]={ 66486 category="sm", 66487 description="DELTA EQUAL TO", 66488 direction="on", 66489 linebreak="al", 66490 mathclass="relation", 66491 mathname="triangleq", 66492 synonyms={ "equal to by definition", "equiangular" }, 66493 unicodeslot=0x225C, 66494 }, 66495 [0x225D]={ 66496 category="sm", 66497 description="EQUAL TO BY DEFINITION", 66498 direction="on", 66499 linebreak="al", 66500 mathclass="relation", 66501 mathname="definedeq", 66502 unicodeslot=0x225D, 66503 }, 66504 [0x225E]={ 66505 category="sm", 66506 description="MEASURED BY", 66507 direction="on", 66508 linebreak="al", 66509 mathclass="relation", 66510 mathname="measuredeq", 66511 unicodeslot=0x225E, 66512 }, 66513 [0x225F]={ 66514 category="sm", 66515 description="QUESTIONED EQUAL TO", 66516 direction="on", 66517 linebreak="al", 66518 mathclass="relation", 66519 mathname="questionedeq", 66520 unicodeslot=0x225F, 66521 }, 66522 [0x2260]={ 66523 category="sm", 66524 cjkwd="a", 66525 description="NOT EQUAL TO", 66526 direction="on", 66527 linebreak="ai", 66528 mathgroup="binary relation", 66529 mathlist={ 0x2F, 0x3D }, 66530 mathmeaning="is not equal to", 66531 mathspec={ 66532 { 66533 class="relation", 66534 name="neq", 66535 }, 66536 { 66537 class="relation", 66538 name="ne", 66539 }, 66540 }, 66541 specials={ "char", 0x3D, 0x338 }, 66542 unicodeslot=0x2260, 66543 }, 66544 [0x2261]={ 66545 category="sm", 66546 cjkwd="a", 66547 description="IDENTICAL TO", 66548 direction="on", 66549 linebreak="ai", 66550 mathclass="relation", 66551 mathextensible="h", 66552 mathgroup="binary relation", 66553 mathlist={ 0x3D, 0x3D }, 66554 mathmeaning="is equivalent to", 66555 mathname="equiv", 66556 unicodeslot=0x2261, 66557 }, 66558 [0x2262]={ 66559 category="sm", 66560 description="NOT IDENTICAL TO", 66561 direction="on", 66562 linebreak="al", 66563 mathclass="relation", 66564 mathextensible="h", 66565 mathfiller="triplerelfill", 66566 mathgroup="binary relation", 66567 mathlist={ 0x2F, 0x3D, 0x3D }, 66568 mathmeaning="is not equivalent to", 66569 mathname="nequiv", 66570 specials={ "char", 0x2261, 0x338 }, 66571 unicodeslot=0x2262, 66572 }, 66573 [0x2263]={ 66574 category="sm", 66575 description="STRICTLY EQUIVALENT TO", 66576 direction="on", 66577 linebreak="al", 66578 mathclass="relation", 66579 mathextensible="h", 66580 mathgroup="binary relation", 66581 mathmeaning="is strictly equivalent to", 66582 unicodeslot=0x2263, 66583 }, 66584 [0x2264]={ 66585 category="sm", 66586 cjkwd="a", 66587 description="LESS-THAN OR EQUAL TO", 66588 direction="on", 66589 linebreak="ai", 66590 mathgroup="binary relation", 66591 mathlist={ 0x3C, 0x3D }, 66592 mathmeaning="is less than, or equal to", 66593 mathspec={ 66594 { 66595 class="relation", 66596 name="leq", 66597 }, 66598 { 66599 class="relation", 66600 name="le", 66601 }, 66602 }, 66603 mirror=0x2265, 66604 unicodeslot=0x2264, 66605 }, 66606 [0x2265]={ 66607 category="sm", 66608 cjkwd="a", 66609 description="GREATER-THAN OR EQUAL TO", 66610 direction="on", 66611 linebreak="ai", 66612 mathgroup="binary relation", 66613 mathlist={ 0x3E, 0x3D }, 66614 mathmeaning="is greater than, or equal to", 66615 mathspec={ 66616 { 66617 class="relation", 66618 name="geq", 66619 }, 66620 { 66621 class="relation", 66622 name="ge", 66623 }, 66624 }, 66625 mirror=0x2264, 66626 unicodeslot=0x2265, 66627 }, 66628 [0x2266]={ 66629 category="sm", 66630 cjkwd="a", 66631 description="LESS-THAN OVER EQUAL TO", 66632 direction="on", 66633 linebreak="ai", 66634 mathclass="relation", 66635 mathgroup="binary relation", 66636 mathmeaning="is less than, or equal to", 66637 mathname="leqq", 66638 mirror=0x2267, 66639 unicodeslot=0x2266, 66640 }, 66641 [0x2267]={ 66642 category="sm", 66643 cjkwd="a", 66644 description="GREATER-THAN OVER EQUAL TO", 66645 direction="on", 66646 linebreak="ai", 66647 mathclass="relation", 66648 mathgroup="binary relation", 66649 mathmeaning="is greater than, or equal to", 66650 mathname="geqq", 66651 mirror=0x2266, 66652 unicodeslot=0x2267, 66653 }, 66654 [0x2268]={ 66655 category="sm", 66656 description="LESS-THAN BUT NOT EQUAL TO", 66657 direction="on", 66658 linebreak="al", 66659 mathclass="relation", 66660 mathgroup="binary relation", 66661 mathmeaning="is less than, but not equal to", 66662 mathname="lneqq", 66663 mirror=0x2269, 66664 unicodeslot=0x2268, 66665 variants={ 66666 [0xFE00]="with vertical stroke", 66667 }, 66668 }, 66669 [0x2269]={ 66670 category="sm", 66671 description="GREATER-THAN BUT NOT EQUAL TO", 66672 direction="on", 66673 linebreak="al", 66674 mathclass="relation", 66675 mathgroup="binary relation", 66676 mathmeaning="is greater than, but not equal to", 66677 mathname="gneqq", 66678 mirror=0x2268, 66679 unicodeslot=0x2269, 66680 variants={ 66681 [0xFE00]="with vertical stroke", 66682 }, 66683 }, 66684 [0x226A]={ 66685 category="sm", 66686 cjkwd="a", 66687 description="MUCH LESS-THAN", 66688 direction="on", 66689 linebreak="ai", 66690 mathclass="relation", 66691 mathgroup="binary relation", 66692 mathlist={ 0x3C, 0x3C }, 66693 mathmeaning="is much less than", 66694 mathname="ll", 66695 mirror=0x226B, 66696 unicodeslot=0x226A, 66697 }, 66698 [0x226B]={ 66699 category="sm", 66700 cjkwd="a", 66701 description="MUCH GREATER-THAN", 66702 direction="on", 66703 linebreak="ai", 66704 mathclass="relation", 66705 mathgroup="binary relation", 66706 mathlist={ 0x3E, 0x3E }, 66707 mathmeaning="is much greater than", 66708 mathname="gg", 66709 mirror=0x226A, 66710 unicodeslot=0x226B, 66711 }, 66712 [0x226C]={ 66713 category="sm", 66714 description="BETWEEN", 66715 direction="on", 66716 linebreak="al", 66717 mathclass="relation", 66718 mathname="between", 66719 synonyms={ "plaintiff", "quantic" }, 66720 unicodeslot=0x226C, 66721 }, 66722 [0x226D]={ 66723 category="sm", 66724 description="NOT EQUIVALENT TO", 66725 direction="on", 66726 linebreak="al", 66727 mathclass="relation", 66728 mathlist={ 0x2F, 0x224D }, 66729 mathname="nasymp", 66730 specials={ "char", 0x224D, 0x338 }, 66731 unicodeslot=0x226D, 66732 }, 66733 [0x226E]={ 66734 category="sm", 66735 cjkwd="a", 66736 description="NOT LESS-THAN", 66737 direction="on", 66738 linebreak="ai", 66739 mathclass="relation", 66740 mathgroup="binary relation", 66741 mathlist={ 0x2F, 0x3C }, 66742 mathmeaning="is not less than", 66743 mathname="nless", 66744 mirror=0x226F, 66745 specials={ "char", 0x3C, 0x338 }, 66746 unicodeslot=0x226E, 66747 }, 66748 [0x226F]={ 66749 category="sm", 66750 cjkwd="a", 66751 description="NOT GREATER-THAN", 66752 direction="on", 66753 linebreak="ai", 66754 mathclass="relation", 66755 mathgroup="binary relation", 66756 mathlist={ 0x2F, 0x3E }, 66757 mathmeaning="is not greater than", 66758 mathname="ngtr", 66759 mirror=0x226E, 66760 specials={ "char", 0x3E, 0x338 }, 66761 unicodeslot=0x226F, 66762 }, 66763 [0x2270]={ 66764 category="sm", 66765 description="NEITHER LESS-THAN NOR EQUAL TO", 66766 direction="on", 66767 linebreak="al", 66768 mathclass="relation", 66769 mathgroup="binary relation", 66770 mathlist={ 0x2F, 0x3C, 0x3D }, 66771 mathmeaning="is neither less than, nor equal to", 66772 mathname="nleq", 66773 mirror=0x2271, 66774 specials={ "char", 0x2264, 0x338 }, 66775 unicodeslot=0x2270, 66776 }, 66777 [0x2271]={ 66778 category="sm", 66779 description="NEITHER GREATER-THAN NOR EQUAL TO", 66780 direction="on", 66781 linebreak="al", 66782 mathclass="relation", 66783 mathgroup="binary relation", 66784 mathlist={ 0x2F, 0x3E, 0x3D }, 66785 mathmeaning="is neither greater than, nor equal to", 66786 mathname="ngeq", 66787 mirror=0x2270, 66788 specials={ "char", 0x2265, 0x338 }, 66789 unicodeslot=0x2271, 66790 }, 66791 [0x2272]={ 66792 category="sm", 66793 description="LESS-THAN OR EQUIVALENT TO", 66794 direction="on", 66795 linebreak="al", 66796 mathclass="relation", 66797 mathgroup="binary relation", 66798 mathmeaning="is less than, or similar to", 66799 mathname="lesssim", 66800 mirror=0x2273, 66801 unicodeslot=0x2272, 66802 variants={ 66803 [0xFE00]="following the slant of the lower leg", 66804 }, 66805 }, 66806 [0x2273]={ 66807 category="sm", 66808 description="GREATER-THAN OR EQUIVALENT TO", 66809 direction="on", 66810 linebreak="al", 66811 mathclass="relation", 66812 mathgroup="binary relation", 66813 mathmeaning="is greater than, or similar to", 66814 mathname="gtrsim", 66815 mirror=0x2272, 66816 unicodeslot=0x2273, 66817 variants={ 66818 [0xFE00]="following the slant of the lower leg", 66819 }, 66820 }, 66821 [0x2274]={ 66822 category="sm", 66823 description="NEITHER LESS-THAN NOR EQUIVALENT TO", 66824 direction="on", 66825 linebreak="al", 66826 mathclass="relation", 66827 mathgroup="binary relation", 66828 mathmeaning="is neither less than, nor similar to", 66829 mathname="nlesssim", 66830 mirror=0x2275, 66831 specials={ "char", 0x2272, 0x338 }, 66832 unicodeslot=0x2274, 66833 }, 66834 [0x2275]={ 66835 category="sm", 66836 description="NEITHER GREATER-THAN NOR EQUIVALENT TO", 66837 direction="on", 66838 linebreak="al", 66839 mathclass="relation", 66840 mathgroup="binary relation", 66841 mathmeaning="is neither greater than, nor similar to", 66842 mathname="ngtrsim", 66843 mirror=0x2274, 66844 specials={ "char", 0x2273, 0x338 }, 66845 unicodeslot=0x2275, 66846 }, 66847 [0x2276]={ 66848 category="sm", 66849 description="LESS-THAN OR GREATER-THAN", 66850 direction="on", 66851 linebreak="al", 66852 mathclass="relation", 66853 mathgroup="binary relation", 66854 mathmeaning="is less than, or greater than", 66855 mathname="lessgtr", 66856 mirror=0x2277, 66857 unicodeslot=0x2276, 66858 }, 66859 [0x2277]={ 66860 category="sm", 66861 description="GREATER-THAN OR LESS-THAN", 66862 direction="on", 66863 linebreak="al", 66864 mathclass="relation", 66865 mathgroup="binary relation", 66866 mathmeaning="is greater than, or less than", 66867 mathname="gtrless", 66868 mirror=0x2276, 66869 unicodeslot=0x2277, 66870 }, 66871 [0x2278]={ 66872 category="sm", 66873 description="NEITHER LESS-THAN NOR GREATER-THAN", 66874 direction="on", 66875 linebreak="al", 66876 mathclass="relation", 66877 mathgroup="binary relation", 66878 mathmeaning="is neither less than, nor greater than", 66879 mathname="nlessgtr", 66880 mirror=0x2279, 66881 specials={ "char", 0x2276, 0x338 }, 66882 unicodeslot=0x2278, 66883 }, 66884 [0x2279]={ 66885 category="sm", 66886 description="NEITHER GREATER-THAN NOR LESS-THAN", 66887 direction="on", 66888 linebreak="al", 66889 mathclass="relation", 66890 mathgroup="binary relation", 66891 mathmeaning="is neither greater than, nor less than", 66892 mathname="ngtrless", 66893 mirror=0x2278, 66894 specials={ "char", 0x2277, 0x338 }, 66895 unicodeslot=0x2279, 66896 }, 66897 [0x227A]={ 66898 category="sm", 66899 description="PRECEDES", 66900 direction="on", 66901 linebreak="al", 66902 mathclass="relation", 66903 mathgroup="binary relation", 66904 mathmeaning="precedes", 66905 mathname="prec", 66906 mirror=0x227B, 66907 synonyms={ "lower rank than" }, 66908 unicodeslot=0x227A, 66909 }, 66910 [0x227B]={ 66911 category="sm", 66912 description="SUCCEEDS", 66913 direction="on", 66914 linebreak="al", 66915 mathclass="relation", 66916 mathgroup="binary relation", 66917 mathmeaning="succeeds", 66918 mathname="succ", 66919 mirror=0x227A, 66920 synonyms={ "higher rank than" }, 66921 unicodeslot=0x227B, 66922 }, 66923 [0x227C]={ 66924 category="sm", 66925 description="PRECEDES OR EQUAL TO", 66926 direction="on", 66927 linebreak="al", 66928 mathclass="relation", 66929 mathgroup="binary relation", 66930 mathmeaning="precedes, or equals", 66931 mathname="preccurlyeq", 66932 mirror=0x227D, 66933 unicodeslot=0x227C, 66934 }, 66935 [0x227D]={ 66936 category="sm", 66937 description="SUCCEEDS OR EQUAL TO", 66938 direction="on", 66939 linebreak="al", 66940 mathclass="relation", 66941 mathgroup="binary relation", 66942 mathmeaning="succeeds, or equals", 66943 mathname="succcurlyeq", 66944 mirror=0x227C, 66945 unicodeslot=0x227D, 66946 }, 66947 [0x227E]={ 66948 category="sm", 66949 description="PRECEDES OR EQUIVALENT TO", 66950 direction="on", 66951 linebreak="al", 66952 mathclass="relation", 66953 mathgroup="binary relation", 66954 mathmeaning="precedes, or is equivalent to", 66955 mathname="precsim", 66956 mirror=0x227F, 66957 unicodeslot=0x227E, 66958 }, 66959 [0x227F]={ 66960 category="sm", 66961 description="SUCCEEDS OR EQUIVALENT TO", 66962 direction="on", 66963 linebreak="al", 66964 mathclass="relation", 66965 mathgroup="binary relation", 66966 mathmeaning="succeeds, or is equivalent to", 66967 mathname="succsim", 66968 mirror=0x227E, 66969 unicodeslot=0x227F, 66970 }, 66971 [0x2280]={ 66972 category="sm", 66973 description="DOES NOT PRECEDE", 66974 direction="on", 66975 linebreak="al", 66976 mathclass="relation", 66977 mathgroup="binary relation", 66978 mathmeaning="does not precede", 66979 mathname="nprec", 66980 mirror=0x2281, 66981 specials={ "char", 0x227A, 0x338 }, 66982 unicodeslot=0x2280, 66983 }, 66984 [0x2281]={ 66985 category="sm", 66986 description="DOES NOT SUCCEED", 66987 direction="on", 66988 linebreak="al", 66989 mathclass="relation", 66990 mathgroup="binary relation", 66991 mathmeaning="does not succeed", 66992 mathname="nsucc", 66993 mirror=0x2280, 66994 specials={ "char", 0x227B, 0x338 }, 66995 unicodeslot=0x2281, 66996 }, 66997 [0x2282]={ 66998 category="sm", 66999 cjkwd="a", 67000 description="SUBSET OF", 67001 direction="on", 67002 linebreak="ai", 67003 mathclass="relation", 67004 mathgroup="binary set relation", 67005 mathmeaning="is a subset of", 67006 mathname="subset", 67007 mirror=0x2283, 67008 synonyms={ "included in set" }, 67009 unicodeslot=0x2282, 67010 }, 67011 [0x2283]={ 67012 category="sm", 67013 cjkwd="a", 67014 description="SUPERSET OF", 67015 direction="on", 67016 linebreak="ai", 67017 mathclass="relation", 67018 mathgroup="binary set relation", 67019 mathmeaning="is a superset of", 67020 mathname="supset", 67021 mirror=0x2282, 67022 synonyms={ "includes in set" }, 67023 unicodeslot=0x2283, 67024 }, 67025 [0x2284]={ 67026 category="sm", 67027 description="NOT A SUBSET OF", 67028 direction="on", 67029 linebreak="al", 67030 mathclass="relation", 67031 mathgroup="binary set relation", 67032 mathmeaning="is not a subset of", 67033 mathname="nsubset", 67034 mirror=0x2285, 67035 specials={ "char", 0x2282, 0x338 }, 67036 unicodeslot=0x2284, 67037 }, 67038 [0x2285]={ 67039 category="sm", 67040 description="NOT A SUPERSET OF", 67041 direction="on", 67042 linebreak="al", 67043 mathclass="relation", 67044 mathgroup="binary set relation", 67045 mathmeaning="is not a superset of", 67046 mathname="nsupset", 67047 mirror=0x2284, 67048 specials={ "char", 0x2283, 0x338 }, 67049 unicodeslot=0x2285, 67050 }, 67051 [0x2286]={ 67052 category="sm", 67053 cjkwd="a", 67054 description="SUBSET OF OR EQUAL TO", 67055 direction="on", 67056 linebreak="ai", 67057 mathclass="relation", 67058 mathgroup="binary set relation", 67059 mathmeaning="is a subset of, or equal to", 67060 mathname="subseteq", 67061 mirror=0x2287, 67062 unicodeslot=0x2286, 67063 }, 67064 [0x2287]={ 67065 category="sm", 67066 cjkwd="a", 67067 description="SUPERSET OF OR EQUAL TO", 67068 direction="on", 67069 linebreak="ai", 67070 mathclass="relation", 67071 mathgroup="binary set relation", 67072 mathmeaning="is a superset of, or equal to", 67073 mathname="supseteq", 67074 mirror=0x2286, 67075 unicodeslot=0x2287, 67076 }, 67077 [0x2288]={ 67078 category="sm", 67079 description="NEITHER A SUBSET OF NOR EQUAL TO", 67080 direction="on", 67081 linebreak="al", 67082 mathclass="relation", 67083 mathgroup="binary set relation", 67084 mathmeaning="is neither a subset of, nor equal to", 67085 mathname="nsubseteq", 67086 mirror=0x2289, 67087 specials={ "char", 0x2286, 0x338 }, 67088 unicodeslot=0x2288, 67089 }, 67090 [0x2289]={ 67091 category="sm", 67092 description="NEITHER A SUPERSET OF NOR EQUAL TO", 67093 direction="on", 67094 linebreak="al", 67095 mathclass="relation", 67096 mathgroup="binary set relation", 67097 mathmeaning="is neither a superset of, nor equal to", 67098 mathname="nsupseteq", 67099 mirror=0x2288, 67100 specials={ "char", 0x2287, 0x338 }, 67101 unicodeslot=0x2289, 67102 }, 67103 [0x228A]={ 67104 category="sm", 67105 description="SUBSET OF WITH NOT EQUAL TO", 67106 direction="on", 67107 linebreak="al", 67108 mathclass="relation", 67109 mathgroup="binary set relation", 67110 mathmeaning="is a subset of, but not equal to", 67111 mathname="subsetneq", 67112 mirror=0x228B, 67113 unicodeslot=0x228A, 67114 variants={ 67115 [0xFE00]="with stroke through bottom members", 67116 }, 67117 }, 67118 [0x228B]={ 67119 category="sm", 67120 description="SUPERSET OF WITH NOT EQUAL TO", 67121 direction="on", 67122 linebreak="al", 67123 mathclass="relation", 67124 mathgroup="binary set relation", 67125 mathmeaning="is a superset of, but not equal to", 67126 mathname="supsetneq", 67127 mirror=0x228A, 67128 unicodeslot=0x228B, 67129 variants={ 67130 [0xFE00]="with stroke through bottom members", 67131 }, 67132 }, 67133 [0x228C]={ 67134 category="sm", 67135 description="MULTISET", 67136 direction="on", 67137 linebreak="al", 67138 unicodeslot=0x228C, 67139 }, 67140 [0x228D]={ 67141 category="sm", 67142 description="MULTISET MULTIPLICATION", 67143 direction="on", 67144 linebreak="al", 67145 unicodeslot=0x228D, 67146 }, 67147 [0x228E]={ 67148 category="sm", 67149 description="MULTISET UNION", 67150 direction="on", 67151 linebreak="al", 67152 mathclass="binary", 67153 mathgroup="binary arithmetic", 67154 mathmeaning="multiset union", 67155 mathname="uplus", 67156 synonyms={ "bag addition" }, 67157 unicodeslot=0x228E, 67158 }, 67159 [0x228F]={ 67160 category="sm", 67161 description="SQUARE IMAGE OF", 67162 direction="on", 67163 linebreak="al", 67164 mathclass="relation", 67165 mathname="sqsubset", 67166 mirror=0x2290, 67167 unicodeslot=0x228F, 67168 }, 67169 [0x2290]={ 67170 category="sm", 67171 description="SQUARE ORIGINAL OF", 67172 direction="on", 67173 linebreak="al", 67174 mathclass="relation", 67175 mathname="sqsupset", 67176 mirror=0x228F, 67177 unicodeslot=0x2290, 67178 }, 67179 [0x2291]={ 67180 category="sm", 67181 description="SQUARE IMAGE OF OR EQUAL TO", 67182 direction="on", 67183 linebreak="al", 67184 mathclass="binary", 67185 mathname="sqsubseteq", 67186 mirror=0x2292, 67187 unicodeslot=0x2291, 67188 }, 67189 [0x2292]={ 67190 category="sm", 67191 description="SQUARE ORIGINAL OF OR EQUAL TO", 67192 direction="on", 67193 linebreak="al", 67194 mathclass="binary", 67195 mathname="sqsupseteq", 67196 mirror=0x2291, 67197 unicodeslot=0x2292, 67198 }, 67199 [0x2293]={ 67200 category="sm", 67201 description="SQUARE CAP", 67202 direction="on", 67203 linebreak="al", 67204 mathclass="binary", 67205 mathname="sqcap", 67206 unicodeslot=0x2293, 67207 variants={ 67208 [0xFE00]="with serifs", 67209 }, 67210 }, 67211 [0x2294]={ 67212 category="sm", 67213 description="SQUARE CUP", 67214 direction="on", 67215 linebreak="al", 67216 mathclass="binary", 67217 mathname="sqcup", 67218 unicodeslot=0x2294, 67219 variants={ 67220 [0xFE00]="with serifs", 67221 }, 67222 }, 67223 [0x2295]={ 67224 category="sm", 67225 cjkwd="a", 67226 description="CIRCLED PLUS", 67227 direction="on", 67228 linebreak="ai", 67229 mathclass="binary", 67230 mathname="oplus", 67231 synonyms={ "direct sum" }, 67232 unicodeslot=0x2295, 67233 variants={ 67234 [0xFE00]="with white rim", 67235 }, 67236 }, 67237 [0x2296]={ 67238 category="sm", 67239 description="CIRCLED MINUS", 67240 direction="on", 67241 linebreak="al", 67242 mathclass="binary", 67243 mathname="ominus", 67244 synonyms={ "symmetric difference" }, 67245 unicodeslot=0x2296, 67246 }, 67247 [0x2297]={ 67248 category="sm", 67249 description="CIRCLED TIMES", 67250 direction="on", 67251 linebreak="al", 67252 mathclass="binary", 67253 mathname="otimes", 67254 synonyms={ "tensor product", "vector pointing into page" }, 67255 unicodeslot=0x2297, 67256 variants={ 67257 [0xFE00]="with white rim", 67258 }, 67259 }, 67260 [0x2298]={ 67261 category="sm", 67262 description="CIRCLED DIVISION SLASH", 67263 direction="on", 67264 linebreak="al", 67265 mathclass="binary", 67266 mathname="oslash", 67267 mirror=0x29B8, 67268 unicodeslot=0x2298, 67269 }, 67270 [0x2299]={ 67271 category="sm", 67272 cjkwd="a", 67273 description="CIRCLED DOT OPERATOR", 67274 direction="on", 67275 linebreak="ai", 67276 mathclass="binary", 67277 mathname="odot", 67278 synonyms={ "direct product", "vector pointing out of page" }, 67279 unicodeslot=0x2299, 67280 }, 67281 [0x229A]={ 67282 category="sm", 67283 description="CIRCLED RING OPERATOR", 67284 direction="on", 67285 linebreak="al", 67286 mathclass="binary", 67287 mathname="circledcirc", 67288 unicodeslot=0x229A, 67289 }, 67290 [0x229B]={ 67291 category="sm", 67292 description="CIRCLED ASTERISK OPERATOR", 67293 direction="on", 67294 linebreak="al", 67295 mathclass="binary", 67296 mathname="circledast", 67297 unicodeslot=0x229B, 67298 }, 67299 [0x229C]={ 67300 category="sm", 67301 description="CIRCLED EQUALS", 67302 direction="on", 67303 linebreak="al", 67304 mathclass="binary", 67305 mathname="circledequals", 67306 unicodeslot=0x229C, 67307 variants={ 67308 [0xFE00]="with equal sign touching the circle", 67309 }, 67310 }, 67311 [0x229D]={ 67312 category="sm", 67313 description="CIRCLED DASH", 67314 direction="on", 67315 linebreak="al", 67316 mathclass="binary", 67317 mathname="circleddash", 67318 unicodeslot=0x229D, 67319 }, 67320 [0x229E]={ 67321 category="sm", 67322 description="SQUARED PLUS", 67323 direction="on", 67324 linebreak="al", 67325 mathclass="binary", 67326 mathname="boxplus", 67327 unicodeslot=0x229E, 67328 }, 67329 [0x229F]={ 67330 category="sm", 67331 description="SQUARED MINUS", 67332 direction="on", 67333 linebreak="al", 67334 mathclass="binary", 67335 mathname="boxminus", 67336 unicodeslot=0x229F, 67337 }, 67338 [0x22A0]={ 67339 category="sm", 67340 description="SQUARED TIMES", 67341 direction="on", 67342 linebreak="al", 67343 mathclass="binary", 67344 mathname="boxtimes", 67345 unicodeslot=0x22A0, 67346 }, 67347 [0x22A1]={ 67348 category="sm", 67349 description="SQUARED DOT OPERATOR", 67350 direction="on", 67351 linebreak="al", 67352 mathclass="binary", 67353 mathname="boxdot", 67354 unicodeslot=0x22A1, 67355 }, 67356 [0x22A2]={ 67357 category="sm", 67358 description="RIGHT TACK", 67359 direction="on", 67360 linebreak="al", 67361 mathclass="relation", 67362 mathname="vdash", 67363 mirror=0x22A3, 67364 synonyms={ "implies", "proves", "reducible", "turnstile", "yields" }, 67365 unicodeslot=0x22A2, 67366 }, 67367 [0x22A3]={ 67368 category="sm", 67369 description="LEFT TACK", 67370 direction="on", 67371 linebreak="al", 67372 mathclass="relation", 67373 mathname="dashv", 67374 mirror=0x22A2, 67375 synonyms={ "does not yield", "non-theorem", "reverse turnstile" }, 67376 unicodeslot=0x22A3, 67377 }, 67378 [0x22A4]={ 67379 category="sm", 67380 description="DOWN TACK", 67381 direction="on", 67382 linebreak="al", 67383 mathclass="ordinary", 67384 mathgroup="constant logical", 67385 mathmeaning="true", 67386 mathname="top", 67387 synonyms={ "top" }, 67388 unicodeslot=0x22A4, 67389 }, 67390 [0x22A5]={ 67391 category="sm", 67392 cjkwd="a", 67393 description="UP TACK", 67394 direction="on", 67395 linebreak="ai", 67396 mathgroup="constant logical", 67397 mathmeaning="false", 67398 mathspec={ 67399 { 67400 class="ordinary", 67401 name="bot", 67402 }, 67403 { 67404 class="relation", 67405 name="perp", 67406 }, 67407 { 67408 class="prime", 67409 group="postfix operator", 67410 meaning="orthogonal complement", 67411 name="orthogonalcomplementsymbol", 67412 }, 67413 }, 67414 synonyms={ "base", "bottom", "orthogonal to", "perpendicular" }, 67415 unicodeslot=0x22A5, 67416 }, 67417 [0x22A6]={ 67418 category="sm", 67419 description="ASSERTION", 67420 direction="on", 67421 linebreak="al", 67422 mirror=0x2ADE, 67423 synonyms={ "reduces to" }, 67424 unicodeslot=0x22A6, 67425 }, 67426 [0x22A7]={ 67427 category="sm", 67428 description="MODELS", 67429 direction="on", 67430 linebreak="al", 67431 mathclass="relation", 67432 mathname="models", 67433 unicodeslot=0x22A7, 67434 }, 67435 [0x22A8]={ 67436 category="sm", 67437 description="TRUE", 67438 direction="on", 67439 linebreak="al", 67440 mathclass="relation", 67441 mathname="vDash", 67442 mirror=0x2AE4, 67443 synonyms={ "results in", "satisfies", "statement is true", "tautology", "valid" }, 67444 unicodeslot=0x22A8, 67445 }, 67446 [0x22A9]={ 67447 category="sm", 67448 description="FORCES", 67449 direction="on", 67450 linebreak="al", 67451 mathclass="relation", 67452 mathname="Vdash", 67453 mirror=0x2AE3, 67454 unicodeslot=0x22A9, 67455 }, 67456 [0x22AA]={ 67457 category="sm", 67458 description="TRIPLE VERTICAL BAR RIGHT TURNSTILE", 67459 direction="on", 67460 linebreak="al", 67461 mathclass="relation", 67462 mathname="Vvdash", 67463 unicodeslot=0x22AA, 67464 }, 67465 [0x22AB]={ 67466 category="sm", 67467 description="DOUBLE VERTICAL BAR DOUBLE RIGHT TURNSTILE", 67468 direction="on", 67469 linebreak="al", 67470 mathclass="relation", 67471 mathname="VDash", 67472 mirror=0x2AE5, 67473 unicodeslot=0x22AB, 67474 }, 67475 [0x22AC]={ 67476 category="sm", 67477 description="DOES NOT PROVE", 67478 direction="on", 67479 linebreak="al", 67480 mathclass="relation", 67481 mathname="nvdash", 67482 specials={ "char", 0x22A2, 0x338 }, 67483 unicodeslot=0x22AC, 67484 }, 67485 [0x22AD]={ 67486 category="sm", 67487 description="NOT TRUE", 67488 direction="on", 67489 linebreak="al", 67490 mathclass="relation", 67491 mathname="nvDash", 67492 specials={ "char", 0x22A8, 0x338 }, 67493 unicodeslot=0x22AD, 67494 }, 67495 [0x22AE]={ 67496 category="sm", 67497 description="DOES NOT FORCE", 67498 direction="on", 67499 linebreak="al", 67500 mathclass="relation", 67501 mathname="nVdash", 67502 specials={ "char", 0x22A9, 0x338 }, 67503 unicodeslot=0x22AE, 67504 }, 67505 [0x22AF]={ 67506 category="sm", 67507 description="NEGATED DOUBLE VERTICAL BAR DOUBLE RIGHT TURNSTILE", 67508 direction="on", 67509 linebreak="al", 67510 mathclass="relation", 67511 mathname="nVDash", 67512 specials={ "char", 0x22AB, 0x338 }, 67513 unicodeslot=0x22AF, 67514 }, 67515 [0x22B0]={ 67516 category="sm", 67517 description="PRECEDES UNDER RELATION", 67518 direction="on", 67519 linebreak="al", 67520 mirror=0x22B1, 67521 unicodeslot=0x22B0, 67522 }, 67523 [0x22B1]={ 67524 category="sm", 67525 description="SUCCEEDS UNDER RELATION", 67526 direction="on", 67527 linebreak="al", 67528 mirror=0x22B0, 67529 unicodeslot=0x22B1, 67530 }, 67531 [0x22B2]={ 67532 category="sm", 67533 comment="cramped triangleleft", 67534 description="NORMAL SUBGROUP OF", 67535 direction="on", 67536 linebreak="al", 67537 mathclass="binary", 67538 mirror=0x22B3, 67539 unicodeslot=0x22B2, 67540 }, 67541 [0x22B3]={ 67542 category="sm", 67543 comment="cramped triangleright", 67544 description="CONTAINS AS NORMAL SUBGROUP", 67545 direction="on", 67546 linebreak="al", 67547 mathclass="binary", 67548 mirror=0x22B2, 67549 unicodeslot=0x22B3, 67550 }, 67551 [0x22B4]={ 67552 category="sm", 67553 description="NORMAL SUBGROUP OF OR EQUAL TO", 67554 direction="on", 67555 linebreak="al", 67556 mirror=0x22B5, 67557 unicodeslot=0x22B4, 67558 }, 67559 [0x22B5]={ 67560 category="sm", 67561 description="CONTAINS AS NORMAL SUBGROUP OR EQUAL TO", 67562 direction="on", 67563 linebreak="al", 67564 mirror=0x22B4, 67565 unicodeslot=0x22B5, 67566 }, 67567 [0x22B6]={ 67568 category="sm", 67569 description="ORIGINAL OF", 67570 direction="on", 67571 linebreak="al", 67572 mathclass="relation", 67573 mathgroup="binary relation", 67574 mathmeaning="original of", 67575 mirror=0x22B7, 67576 unicodeslot=0x22B6, 67577 }, 67578 [0x22B7]={ 67579 category="sm", 67580 description="IMAGE OF", 67581 direction="on", 67582 linebreak="al", 67583 mathclass="relation", 67584 mathgroup="binary relation", 67585 mathmeaning="image of", 67586 mirror=0x22B6, 67587 unicodeslot=0x22B7, 67588 }, 67589 [0x22B8]={ 67590 category="sm", 67591 description="MULTIMAP", 67592 direction="on", 67593 linebreak="al", 67594 mathclass="relation", 67595 mathname="multimap", 67596 mirror=0x27DC, 67597 unicodeslot=0x22B8, 67598 }, 67599 [0x22B9]={ 67600 category="sm", 67601 description="HERMITIAN CONJUGATE MATRIX", 67602 direction="on", 67603 linebreak="al", 67604 unicodeslot=0x22B9, 67605 }, 67606 [0x22BA]={ 67607 category="sm", 67608 description="INTERCALATE", 67609 direction="on", 67610 linebreak="al", 67611 mathclass="binary", 67612 mathname="intercal", 67613 unicodeslot=0x22BA, 67614 }, 67615 [0x22BB]={ 67616 category="sm", 67617 description="XOR", 67618 direction="on", 67619 linebreak="al", 67620 mathclass="binary", 67621 mathgroup="binary logical", 67622 mathmeaning="xor", 67623 mathname="veebar", 67624 unicodeslot=0x22BB, 67625 }, 67626 [0x22BC]={ 67627 category="sm", 67628 description="NAND", 67629 direction="on", 67630 linebreak="al", 67631 mathclass="binary", 67632 mathgroup="binary logical", 67633 mathmeaning="not and", 67634 mathname="barwedge", 67635 unicodeslot=0x22BC, 67636 }, 67637 [0x22BD]={ 67638 category="sm", 67639 description="NOR", 67640 direction="on", 67641 linebreak="al", 67642 unicodeslot=0x22BD, 67643 }, 67644 [0x22BE]={ 67645 category="sm", 67646 description="RIGHT ANGLE WITH ARC", 67647 direction="on", 67648 linebreak="al", 67649 unicodeslot=0x22BE, 67650 }, 67651 [0x22BF]={ 67652 category="sm", 67653 cjkwd="a", 67654 description="RIGHT TRIANGLE", 67655 direction="on", 67656 linebreak="ai", 67657 unicodeslot=0x22BF, 67658 }, 67659 [0x22C0]={ 67660 category="sm", 67661 description="N-ARY LOGICAL AND", 67662 direction="on", 67663 linebreak="al", 67664 mathclass="operator", 67665 mathgroup="nary logical", 67666 mathmeaning="wedge product", 67667 mathname="bigwedge", 67668 unicodeslot=0x22C0, 67669 }, 67670 [0x22C1]={ 67671 category="sm", 67672 description="N-ARY LOGICAL OR", 67673 direction="on", 67674 linebreak="al", 67675 mathclass="operator", 67676 mathgroup="nary logical", 67677 mathmeaning="wedge sum", 67678 mathname="bigvee", 67679 unicodeslot=0x22C1, 67680 }, 67681 [0x22C2]={ 67682 category="sm", 67683 description="N-ARY INTERSECTION", 67684 direction="on", 67685 linebreak="al", 67686 mathclass="operator", 67687 mathgroup="nary operator", 67688 mathmeaning="union", 67689 mathname="bigcap", 67690 synonyms={ "generalized intersection" }, 67691 unicodeslot=0x22C2, 67692 }, 67693 [0x22C3]={ 67694 category="sm", 67695 description="N-ARY UNION", 67696 direction="on", 67697 linebreak="al", 67698 mathclass="operator", 67699 mathgroup="nary operator", 67700 mathmeaning="union", 67701 mathname="bigcup", 67702 synonyms={ "generalized union" }, 67703 unicodeslot=0x22C3, 67704 }, 67705 [0x22C4]={ 67706 category="sm", 67707 description="DIAMOND OPERATOR", 67708 direction="on", 67709 linebreak="al", 67710 mathclass="binary", 67711 mathgroup="binary arithmetic", 67712 mathmeaning="diamond operator", 67713 mathname="diamond", 67714 unicodeslot=0x22C4, 67715 }, 67716 [0x22C5]={ 67717 category="sm", 67718 comment="we can omit the toplevel math*", 67719 description="DOT OPERATOR", 67720 direction="on", 67721 linebreak="al", 67722 mathclass="binary", 67723 mathgroup="default", 67724 mathmeaning="multiplication", 67725 mathspec={ 67726 { 67727 class="binary", 67728 group="binary arithmetic", 67729 meaning="multiplication", 67730 name="cdot", 67731 }, 67732 { 67733 class="binary", 67734 group="binary vector", 67735 meaning="scalarproduct", 67736 name="scalarproduct", 67737 }, 67738 { 67739 class="punctuation", 67740 name="cdotp", 67741 }, 67742 }, 67743 unicodeslot=0x22C5, 67744 }, 67745 [0x22C6]={ 67746 category="sm", 67747 description="STAR OPERATOR", 67748 direction="on", 67749 linebreak="al", 67750 mathclass="binary", 67751 mathgroup="binary arithmetic", 67752 mathmeaning="star operator", 67753 mathname="star", 67754 unicodeslot=0x22C6, 67755 }, 67756 [0x22C7]={ 67757 category="sm", 67758 description="DIVISION TIMES", 67759 direction="on", 67760 linebreak="al", 67761 mathclass="binary", 67762 mathname="divideontimes", 67763 unicodeslot=0x22C7, 67764 }, 67765 [0x22C8]={ 67766 category="sm", 67767 description="BOWTIE", 67768 direction="on", 67769 linebreak="al", 67770 mathspec={ 67771 { 67772 class="relation", 67773 name="bowtie", 67774 }, 67775 { 67776 class="relation", 67777 name="Join", 67778 }, 67779 }, 67780 unicodeslot=0x22C8, 67781 }, 67782 [0x22C9]={ 67783 category="sm", 67784 description="LEFT NORMAL FACTOR SEMIDIRECT PRODUCT", 67785 direction="on", 67786 linebreak="al", 67787 mathclass="binary", 67788 mathgroup="binary arithmetic", 67789 mathmeaning="semidirect product", 67790 mathname="ltimes", 67791 mirror=0x22CA, 67792 unicodeslot=0x22C9, 67793 }, 67794 [0x22CA]={ 67795 category="sm", 67796 description="RIGHT NORMAL FACTOR SEMIDIRECT PRODUCT", 67797 direction="on", 67798 linebreak="al", 67799 mathclass="binary", 67800 mathgroup="binary arithmetic", 67801 mathmeaning="semidirect product", 67802 mathname="rtimes", 67803 mirror=0x22C9, 67804 unicodeslot=0x22CA, 67805 }, 67806 [0x22CB]={ 67807 category="sm", 67808 description="LEFT SEMIDIRECT PRODUCT", 67809 direction="on", 67810 linebreak="al", 67811 mathclass="binary", 67812 mathgroup="binary arithmetic", 67813 mathmeaning="left semidirect product", 67814 mathname="leftthreetimes", 67815 mirror=0x22CC, 67816 unicodeslot=0x22CB, 67817 }, 67818 [0x22CC]={ 67819 category="sm", 67820 description="RIGHT SEMIDIRECT PRODUCT", 67821 direction="on", 67822 linebreak="al", 67823 mathclass="binary", 67824 mathgroup="binary arithmetic", 67825 mathmeaning="right semidirect product", 67826 mathname="rightthreetimes", 67827 mirror=0x22CB, 67828 unicodeslot=0x22CC, 67829 }, 67830 [0x22CD]={ 67831 category="sm", 67832 description="REVERSED TILDE EQUALS", 67833 direction="on", 67834 linebreak="al", 67835 mirror=0x2243, 67836 unicodeslot=0x22CD, 67837 }, 67838 [0x22CE]={ 67839 category="sm", 67840 description="CURLY LOGICAL OR", 67841 direction="on", 67842 linebreak="al", 67843 mathclass="binary", 67844 mathgroup="binary logical", 67845 mathmeaning="wedge sum", 67846 mathname="curlyvee", 67847 unicodeslot=0x22CE, 67848 }, 67849 [0x22CF]={ 67850 category="sm", 67851 description="CURLY LOGICAL AND", 67852 direction="on", 67853 linebreak="al", 67854 mathclass="binary", 67855 mathgroup="binary logical", 67856 mathmeaning="wedge product", 67857 mathname="curlywedge", 67858 unicodeslot=0x22CF, 67859 }, 67860 [0x22D0]={ 67861 category="sm", 67862 description="DOUBLE SUBSET", 67863 direction="on", 67864 linebreak="al", 67865 mathclass="relation", 67866 mathname="Subset", 67867 mirror=0x22D1, 67868 unicodeslot=0x22D0, 67869 }, 67870 [0x22D1]={ 67871 category="sm", 67872 description="DOUBLE SUPERSET", 67873 direction="on", 67874 linebreak="al", 67875 mathclass="relation", 67876 mathname="Supset", 67877 mirror=0x22D0, 67878 unicodeslot=0x22D1, 67879 }, 67880 [0x22D2]={ 67881 category="sm", 67882 description="DOUBLE INTERSECTION", 67883 direction="on", 67884 linebreak="al", 67885 mathspec={ 67886 { 67887 class="binary", 67888 name="Cap", 67889 }, 67890 { 67891 class="binary", 67892 name="doublecap", 67893 }, 67894 }, 67895 unicodeslot=0x22D2, 67896 }, 67897 [0x22D3]={ 67898 category="sm", 67899 description="DOUBLE UNION", 67900 direction="on", 67901 linebreak="al", 67902 mathspec={ 67903 { 67904 class="binary", 67905 name="Cup", 67906 }, 67907 { 67908 class="binary", 67909 name="doublecup", 67910 }, 67911 }, 67912 unicodeslot=0x22D3, 67913 }, 67914 [0x22D4]={ 67915 category="sm", 67916 description="PITCHFORK", 67917 direction="on", 67918 linebreak="al", 67919 mathclass="relation", 67920 mathname="pitchfork", 67921 synonyms={ "proper intersection" }, 67922 unicodeslot=0x22D4, 67923 }, 67924 [0x22D5]={ 67925 category="sm", 67926 description="EQUAL AND PARALLEL TO", 67927 direction="on", 67928 linebreak="al", 67929 unicodeslot=0x22D5, 67930 }, 67931 [0x22D6]={ 67932 category="sm", 67933 description="LESS-THAN WITH DOT", 67934 direction="on", 67935 linebreak="al", 67936 mathclass="binary", 67937 mathname="lessdot", 67938 mirror=0x22D7, 67939 unicodeslot=0x22D6, 67940 }, 67941 [0x22D7]={ 67942 category="sm", 67943 description="GREATER-THAN WITH DOT", 67944 direction="on", 67945 linebreak="al", 67946 mathclass="binary", 67947 mathname="gtrdot", 67948 mirror=0x22D6, 67949 unicodeslot=0x22D7, 67950 }, 67951 [0x22D8]={ 67952 category="sm", 67953 description="VERY MUCH LESS-THAN", 67954 direction="on", 67955 linebreak="al", 67956 mathgroup="binary relation", 67957 mathlist={ 0x3C, 0x3C, 0x3C }, 67958 mathmeaning="way less than", 67959 mathspec={ 67960 { 67961 class="relation", 67962 name="lll", 67963 }, 67964 { 67965 class="relation", 67966 name="llless", 67967 }, 67968 }, 67969 mirror=0x22D9, 67970 unicodeslot=0x22D8, 67971 }, 67972 [0x22D9]={ 67973 category="sm", 67974 description="VERY MUCH GREATER-THAN", 67975 direction="on", 67976 linebreak="al", 67977 mathgroup="binary relation", 67978 mathlist={ 0x3E, 0x3E, 0x3E }, 67979 mathmeaning="way greater than", 67980 mathspec={ 67981 { 67982 class="relation", 67983 name="ggg", 67984 }, 67985 { 67986 class="relation", 67987 name="gggtr", 67988 }, 67989 }, 67990 mirror=0x22D8, 67991 unicodeslot=0x22D9, 67992 }, 67993 [0x22DA]={ 67994 category="sm", 67995 description="LESS-THAN EQUAL TO OR GREATER-THAN", 67996 direction="on", 67997 linebreak="al", 67998 mathclass="relation", 67999 mathgroup="binary relation", 68000 mathmeaning="is less than, equals, or greater than", 68001 mathname="lesseqgtr", 68002 mirror=0x22DB, 68003 unicodeslot=0x22DA, 68004 variants={ 68005 [0xFE00]="with slanted equal", 68006 }, 68007 }, 68008 [0x22DB]={ 68009 category="sm", 68010 description="GREATER-THAN EQUAL TO OR LESS-THAN", 68011 direction="on", 68012 linebreak="al", 68013 mathclass="relation", 68014 mathgroup="binary relation", 68015 mathmeaning="is greater than, equals, or less than", 68016 mathname="gtreqless", 68017 mirror=0x22DA, 68018 unicodeslot=0x22DB, 68019 variants={ 68020 [0xFE00]="with slanted equal", 68021 }, 68022 }, 68023 [0x22DC]={ 68024 category="sm", 68025 description="EQUAL TO OR LESS-THAN", 68026 direction="on", 68027 linebreak="al", 68028 mathclass="relation", 68029 mathgroup="binary relation", 68030 mathlist={ 0x3D, 0x3C }, 68031 mathmeaning="equals, or is less than", 68032 mathname="eqless", 68033 mirror=0x22DD, 68034 unicodeslot=0x22DC, 68035 }, 68036 [0x22DD]={ 68037 category="sm", 68038 description="EQUAL TO OR GREATER-THAN", 68039 direction="on", 68040 linebreak="al", 68041 mathclass="relation", 68042 mathgroup="binary relation", 68043 mathlist={ 0x3D, 0x3E }, 68044 mathmeaning="equals, or is greater than", 68045 mathname="eqgtr", 68046 mirror=0x22DC, 68047 unicodeslot=0x22DD, 68048 }, 68049 [0x22DE]={ 68050 category="sm", 68051 description="EQUAL TO OR PRECEDES", 68052 direction="on", 68053 linebreak="al", 68054 mathclass="relation", 68055 mathgroup="binary relation", 68056 mathmeaning="equals, or precedes", 68057 mathname="curlyeqprec", 68058 mirror=0x22DF, 68059 unicodeslot=0x22DE, 68060 }, 68061 [0x22DF]={ 68062 category="sm", 68063 description="EQUAL TO OR SUCCEEDS", 68064 direction="on", 68065 linebreak="al", 68066 mathclass="relation", 68067 mathgroup="binary relation", 68068 mathmeaning="equals, or succeeds", 68069 mathname="curlyeqsucc", 68070 mirror=0x22DE, 68071 unicodeslot=0x22DF, 68072 }, 68073 [0x22E0]={ 68074 category="sm", 68075 description="DOES NOT PRECEDE OR EQUAL", 68076 direction="on", 68077 linebreak="al", 68078 mathclass="relation", 68079 mathgroup="binary relation", 68080 mathmeaning="does not precede, nor equals to", 68081 mathname="npreccurlyeq", 68082 mirror=0x22E1, 68083 specials={ "char", 0x227C, 0x338 }, 68084 unicodeslot=0x22E0, 68085 }, 68086 [0x22E1]={ 68087 category="sm", 68088 description="DOES NOT SUCCEED OR EQUAL", 68089 direction="on", 68090 linebreak="al", 68091 mathclass="relation", 68092 mathgroup="binary relation", 68093 mathmeaning="does not succeed, nor equals to", 68094 mathname="nsucccurlyeq", 68095 mirror=0x22E0, 68096 specials={ "char", 0x227D, 0x338 }, 68097 unicodeslot=0x22E1, 68098 }, 68099 [0x22E2]={ 68100 category="sm", 68101 description="NOT SQUARE IMAGE OF OR EQUAL TO", 68102 direction="on", 68103 linebreak="al", 68104 mathclass="relation", 68105 mathname="nsqsubseteq", 68106 mirror=0x22E3, 68107 specials={ "char", 0x2291, 0x338 }, 68108 unicodeslot=0x22E2, 68109 }, 68110 [0x22E3]={ 68111 category="sm", 68112 description="NOT SQUARE ORIGINAL OF OR EQUAL TO", 68113 direction="on", 68114 linebreak="al", 68115 mathclass="relation", 68116 mathname="nsqsupseteq", 68117 mirror=0x22E2, 68118 specials={ "char", 0x2292, 0x338 }, 68119 unicodeslot=0x22E3, 68120 }, 68121 [0x22E4]={ 68122 category="sm", 68123 description="SQUARE IMAGE OF OR NOT EQUAL TO", 68124 direction="on", 68125 linebreak="al", 68126 mathclass="relation", 68127 mathname="sqsubsetneq", 68128 mirror=0x22E5, 68129 unicodeslot=0x22E4, 68130 }, 68131 [0x22E5]={ 68132 category="sm", 68133 description="SQUARE ORIGINAL OF OR NOT EQUAL TO", 68134 direction="on", 68135 linebreak="al", 68136 mathclass="relation", 68137 mathname="sqsupsetneq", 68138 mirror=0x22E4, 68139 unicodeslot=0x22E5, 68140 }, 68141 [0x22E6]={ 68142 category="sm", 68143 description="LESS-THAN BUT NOT EQUIVALENT TO", 68144 direction="on", 68145 linebreak="al", 68146 mathclass="relation", 68147 mathgroup="binary relation", 68148 mathmeaning="less than, but not equivalent to", 68149 mathname="lnsim", 68150 mirror=0x22E7, 68151 unicodeslot=0x22E6, 68152 }, 68153 [0x22E7]={ 68154 category="sm", 68155 description="GREATER-THAN BUT NOT EQUIVALENT TO", 68156 direction="on", 68157 linebreak="al", 68158 mathclass="relation", 68159 mathgroup="binary relation", 68160 mathmeaning="greater than, but not equivalent to", 68161 mathname="gnsim", 68162 mirror=0x22E6, 68163 unicodeslot=0x22E7, 68164 }, 68165 [0x22E8]={ 68166 category="sm", 68167 description="PRECEDES BUT NOT EQUIVALENT TO", 68168 direction="on", 68169 linebreak="al", 68170 mathclass="relation", 68171 mathgroup="binary relation", 68172 mathmeaning="preceeds, but not equivalent to", 68173 mathname="precnsim", 68174 mirror=0x22E9, 68175 unicodeslot=0x22E8, 68176 }, 68177 [0x22E9]={ 68178 category="sm", 68179 description="SUCCEEDS BUT NOT EQUIVALENT TO", 68180 direction="on", 68181 linebreak="al", 68182 mathclass="relation", 68183 mathgroup="binary relation", 68184 mathmeaning="succeeds, but not equivalent to", 68185 mathname="succnsim", 68186 mirror=0x22E8, 68187 unicodeslot=0x22E9, 68188 }, 68189 [0x22EA]={ 68190 category="sm", 68191 description="NOT NORMAL SUBGROUP OF", 68192 direction="on", 68193 linebreak="al", 68194 mathclass="relation", 68195 mathgroup="binary relation", 68196 mathmeaning="is not a normal subgroup of", 68197 mathname="ntriangleright", 68198 mirror=0x22EB, 68199 specials={ "char", 0x22B2, 0x338 }, 68200 unicodeslot=0x22EA, 68201 }, 68202 [0x22EB]={ 68203 category="sm", 68204 description="DOES NOT CONTAIN AS NORMAL SUBGROUP", 68205 direction="on", 68206 linebreak="al", 68207 mathclass="relation", 68208 mathgroup="binary relation", 68209 mathmeaning="does not contain a normal subgroup", 68210 mathname="ntriangleleft", 68211 mirror=0x22EA, 68212 specials={ "char", 0x22B3, 0x338 }, 68213 unicodeslot=0x22EB, 68214 }, 68215 [0x22EC]={ 68216 category="sm", 68217 description="NOT NORMAL SUBGROUP OF OR EQUAL TO", 68218 direction="on", 68219 linebreak="al", 68220 mathclass="relation", 68221 mathgroup="binary relation", 68222 mathmeaning="is not a normal subgroup of, nor equal to", 68223 mathname="ntrianglelefteq", 68224 mirror=0x22ED, 68225 specials={ "char", 0x22B4, 0x338 }, 68226 unicodeslot=0x22EC, 68227 }, 68228 [0x22ED]={ 68229 category="sm", 68230 description="DOES NOT CONTAIN AS NORMAL SUBGROUP OR EQUAL", 68231 direction="on", 68232 linebreak="al", 68233 mathclass="relation", 68234 mathgroup="binary relation", 68235 mathmeaning="does not contain a normal subgroup, nor is equal to", 68236 mathname="ntrianglerighteq", 68237 mirror=0x22EC, 68238 specials={ "char", 0x22B5, 0x338 }, 68239 unicodeslot=0x22ED, 68240 }, 68241 [0x22EE]={ 68242 category="sm", 68243 description="VERTICAL ELLIPSIS", 68244 direction="on", 68245 linebreak="al", 68246 mathclass="ellipsis", 68247 mathname="vdots", 68248 unicodeslot=0x22EE, 68249 }, 68250 [0x22EF]={ 68251 category="sm", 68252 description="MIDLINE HORIZONTAL ELLIPSIS", 68253 direction="on", 68254 linebreak="in", 68255 mathclass="ellipsis", 68256 mathname="cdots", 68257 unicodeslot=0x22EF, 68258 }, 68259 [0x22F0]={ 68260 category="sm", 68261 description="UP RIGHT DIAGONAL ELLIPSIS", 68262 direction="on", 68263 linebreak="al", 68264 mathclass="ellipsis", 68265 mathname="udots", 68266 mirror=0x22F1, 68267 unicodeslot=0x22F0, 68268 }, 68269 [0x22F1]={ 68270 category="sm", 68271 description="DOWN RIGHT DIAGONAL ELLIPSIS", 68272 direction="on", 68273 linebreak="al", 68274 mathclass="ellipsis", 68275 mathname="ddots", 68276 mirror=0x22F0, 68277 unicodeslot=0x22F1, 68278 }, 68279 [0x22F2]={ 68280 category="sm", 68281 description="ELEMENT OF WITH LONG HORIZONTAL STROKE", 68282 direction="on", 68283 linebreak="al", 68284 mirror=0x22FA, 68285 unicodeslot=0x22F2, 68286 }, 68287 [0x22F3]={ 68288 category="sm", 68289 description="ELEMENT OF WITH VERTICAL BAR AT END OF HORIZONTAL STROKE", 68290 direction="on", 68291 linebreak="al", 68292 mirror=0x22FB, 68293 unicodeslot=0x22F3, 68294 }, 68295 [0x22F4]={ 68296 category="sm", 68297 description="SMALL ELEMENT OF WITH VERTICAL BAR AT END OF HORIZONTAL STROKE", 68298 direction="on", 68299 linebreak="al", 68300 mirror=0x22FC, 68301 unicodeslot=0x22F4, 68302 }, 68303 [0x22F5]={ 68304 category="sm", 68305 description="ELEMENT OF WITH DOT ABOVE", 68306 direction="on", 68307 linebreak="al", 68308 unicodeslot=0x22F5, 68309 }, 68310 [0x22F6]={ 68311 category="sm", 68312 description="ELEMENT OF WITH OVERBAR", 68313 direction="on", 68314 linebreak="al", 68315 mirror=0x22FD, 68316 unicodeslot=0x22F6, 68317 }, 68318 [0x22F7]={ 68319 category="sm", 68320 description="SMALL ELEMENT OF WITH OVERBAR", 68321 direction="on", 68322 linebreak="al", 68323 mirror=0x22FE, 68324 unicodeslot=0x22F7, 68325 }, 68326 [0x22F8]={ 68327 category="sm", 68328 description="ELEMENT OF WITH UNDERBAR", 68329 direction="on", 68330 linebreak="al", 68331 unicodeslot=0x22F8, 68332 }, 68333 [0x22F9]={ 68334 category="sm", 68335 description="ELEMENT OF WITH TWO HORIZONTAL STROKES", 68336 direction="on", 68337 linebreak="al", 68338 unicodeslot=0x22F9, 68339 }, 68340 [0x22FA]={ 68341 category="sm", 68342 description="CONTAINS WITH LONG HORIZONTAL STROKE", 68343 direction="on", 68344 linebreak="al", 68345 mirror=0x22F2, 68346 unicodeslot=0x22FA, 68347 }, 68348 [0x22FB]={ 68349 category="sm", 68350 description="CONTAINS WITH VERTICAL BAR AT END OF HORIZONTAL STROKE", 68351 direction="on", 68352 linebreak="al", 68353 mirror=0x22F3, 68354 unicodeslot=0x22FB, 68355 }, 68356 [0x22FC]={ 68357 category="sm", 68358 description="SMALL CONTAINS WITH VERTICAL BAR AT END OF HORIZONTAL STROKE", 68359 direction="on", 68360 linebreak="al", 68361 mirror=0x22F4, 68362 unicodeslot=0x22FC, 68363 }, 68364 [0x22FD]={ 68365 category="sm", 68366 description="CONTAINS WITH OVERBAR", 68367 direction="on", 68368 linebreak="al", 68369 mirror=0x22F6, 68370 unicodeslot=0x22FD, 68371 }, 68372 [0x22FE]={ 68373 category="sm", 68374 description="SMALL CONTAINS WITH OVERBAR", 68375 direction="on", 68376 linebreak="al", 68377 mirror=0x22F7, 68378 unicodeslot=0x22FE, 68379 }, 68380 [0x22FF]={ 68381 category="sm", 68382 description="Z NOTATION BAG MEMBERSHIP", 68383 direction="on", 68384 linebreak="al", 68385 unicodeslot=0x22FF, 68386 }, 68387 [0x2300]={ 68388 category="so", 68389 description="DIAMETER SIGN", 68390 direction="on", 68391 linebreak="al", 68392 mathspec={ 68393 { 68394 class="ordinary", 68395 name="varnothing", 68396 }, 68397 { 68398 class="ordinary", 68399 name="diameter", 68400 }, 68401 }, 68402 unicodeslot=0x2300, 68403 }, 68404 [0x2301]={ 68405 category="so", 68406 description="ELECTRIC ARROW", 68407 direction="on", 68408 linebreak="al", 68409 synonyms={ "end of transmission symbol" }, 68410 unicodeslot=0x2301, 68411 }, 68412 [0x2302]={ 68413 category="so", 68414 description="HOUSE", 68415 direction="on", 68416 linebreak="al", 68417 unicodeslot=0x2302, 68418 }, 68419 [0x2303]={ 68420 category="so", 68421 description="UP ARROWHEAD", 68422 direction="on", 68423 linebreak="al", 68424 unicodeslot=0x2303, 68425 }, 68426 [0x2304]={ 68427 category="so", 68428 description="DOWN ARROWHEAD", 68429 direction="on", 68430 linebreak="al", 68431 unicodeslot=0x2304, 68432 }, 68433 [0x2305]={ 68434 category="so", 68435 description="PROJECTIVE", 68436 direction="on", 68437 linebreak="al", 68438 unicodeslot=0x2305, 68439 }, 68440 [0x2306]={ 68441 category="so", 68442 description="PERSPECTIVE", 68443 direction="on", 68444 linebreak="al", 68445 unicodeslot=0x2306, 68446 }, 68447 [0x2307]={ 68448 category="so", 68449 description="WAVY LINE", 68450 direction="on", 68451 linebreak="al", 68452 unicodeslot=0x2307, 68453 }, 68454 [0x2308]={ 68455 category="sm", 68456 description="LEFT CEILING", 68457 direction="on", 68458 linebreak="op", 68459 mathclass="open", 68460 mathname="lceil", 68461 mirror=0x2309, 68462 synonyms={ "apl upstile" }, 68463 unicodeslot=0x2308, 68464 }, 68465 [0x2309]={ 68466 category="sm", 68467 description="RIGHT CEILING", 68468 direction="on", 68469 linebreak="cl", 68470 mathclass="close", 68471 mathname="rceil", 68472 mirror=0x2308, 68473 unicodeslot=0x2309, 68474 }, 68475 [0x230A]={ 68476 category="sm", 68477 description="LEFT FLOOR", 68478 direction="on", 68479 linebreak="op", 68480 mathclass="open", 68481 mathname="lfloor", 68482 mirror=0x230B, 68483 synonyms={ "apl downstile" }, 68484 unicodeslot=0x230A, 68485 }, 68486 [0x230B]={ 68487 category="sm", 68488 description="RIGHT FLOOR", 68489 direction="on", 68490 linebreak="cl", 68491 mathclass="close", 68492 mathname="rfloor", 68493 mirror=0x230A, 68494 unicodeslot=0x230B, 68495 }, 68496 [0x230C]={ 68497 category="so", 68498 description="BOTTOM RIGHT CROP", 68499 direction="on", 68500 linebreak="al", 68501 unicodeslot=0x230C, 68502 }, 68503 [0x230D]={ 68504 category="so", 68505 description="BOTTOM LEFT CROP", 68506 direction="on", 68507 linebreak="al", 68508 unicodeslot=0x230D, 68509 }, 68510 [0x230E]={ 68511 category="so", 68512 description="TOP RIGHT CROP", 68513 direction="on", 68514 linebreak="al", 68515 unicodeslot=0x230E, 68516 }, 68517 [0x230F]={ 68518 category="so", 68519 description="TOP LEFT CROP", 68520 direction="on", 68521 linebreak="al", 68522 unicodeslot=0x230F, 68523 }, 68524 [0x2310]={ 68525 category="so", 68526 description="REVERSED NOT SIGN", 68527 direction="on", 68528 linebreak="al", 68529 synonyms={ "beginning of line" }, 68530 unicodeslot=0x2310, 68531 }, 68532 [0x2311]={ 68533 category="so", 68534 description="SQUARE LOZENGE", 68535 direction="on", 68536 linebreak="al", 68537 synonyms={ "kissen", "pillow" }, 68538 unicodeslot=0x2311, 68539 }, 68540 [0x2312]={ 68541 category="so", 68542 cjkwd="a", 68543 description="ARC", 68544 direction="on", 68545 linebreak="ai", 68546 unicodeslot=0x2312, 68547 }, 68548 [0x2313]={ 68549 category="so", 68550 description="SEGMENT", 68551 direction="on", 68552 linebreak="al", 68553 unicodeslot=0x2313, 68554 }, 68555 [0x2314]={ 68556 category="so", 68557 description="SECTOR", 68558 direction="on", 68559 linebreak="al", 68560 unicodeslot=0x2314, 68561 }, 68562 [0x2315]={ 68563 category="so", 68564 description="TELEPHONE RECORDER", 68565 direction="on", 68566 linebreak="al", 68567 unicodeslot=0x2315, 68568 }, 68569 [0x2316]={ 68570 category="so", 68571 description="POSITION INDICATOR", 68572 direction="on", 68573 linebreak="al", 68574 unicodeslot=0x2316, 68575 }, 68576 [0x2317]={ 68577 category="so", 68578 description="VIEWDATA SQUARE", 68579 direction="on", 68580 linebreak="al", 68581 unicodeslot=0x2317, 68582 }, 68583 [0x2318]={ 68584 category="so", 68585 description="PLACE OF INTEREST SIGN", 68586 direction="on", 68587 linebreak="al", 68588 synonyms={ "command key" }, 68589 unicodeslot=0x2318, 68590 }, 68591 [0x2319]={ 68592 category="so", 68593 description="TURNED NOT SIGN", 68594 direction="on", 68595 linebreak="al", 68596 synonyms={ "line marker" }, 68597 unicodeslot=0x2319, 68598 }, 68599 [0x231A]={ 68600 category="so", 68601 cjkwd="w", 68602 description="WATCH", 68603 direction="on", 68604 linebreak="id", 68605 unicodeslot=0x231A, 68606 variants=variants_emoji, 68607 }, 68608 [0x231B]={ 68609 category="so", 68610 cjkwd="w", 68611 description="HOURGLASS", 68612 direction="on", 68613 linebreak="id", 68614 unicodeslot=0x231B, 68615 variants=variants_emoji, 68616 }, 68617 [0x231C]={ 68618 category="so", 68619 description="TOP LEFT CORNER", 68620 direction="on", 68621 linebreak="al", 68622 mathclass="open", 68623 mathname="ulcorner", 68624 unicodeslot=0x231C, 68625 }, 68626 [0x231D]={ 68627 category="so", 68628 description="TOP RIGHT CORNER", 68629 direction="on", 68630 linebreak="al", 68631 mathclass="close", 68632 mathname="urcorner", 68633 unicodeslot=0x231D, 68634 }, 68635 [0x231E]={ 68636 category="so", 68637 description="BOTTOM LEFT CORNER", 68638 direction="on", 68639 linebreak="al", 68640 mathclass="open", 68641 mathname="llcorner", 68642 unicodeslot=0x231E, 68643 }, 68644 [0x231F]={ 68645 category="so", 68646 description="BOTTOM RIGHT CORNER", 68647 direction="on", 68648 linebreak="al", 68649 mathclass="close", 68650 mathname="lrcorner", 68651 unicodeslot=0x231F, 68652 }, 68653 [0x2320]={ 68654 category="sm", 68655 description="TOP HALF INTEGRAL", 68656 direction="on", 68657 linebreak="al", 68658 unicodeslot=0x2320, 68659 }, 68660 [0x2321]={ 68661 category="sm", 68662 description="BOTTOM HALF INTEGRAL", 68663 direction="on", 68664 linebreak="al", 68665 unicodeslot=0x2321, 68666 }, 68667 [0x2322]={ 68668 category="so", 68669 description="FROWN", 68670 direction="on", 68671 linebreak="al", 68672 mathclass="relation", 68673 mathname="frown", 68674 unicodeslot=0x2322, 68675 }, 68676 [0x2323]={ 68677 category="so", 68678 description="SMILE", 68679 direction="on", 68680 linebreak="al", 68681 mathclass="relation", 68682 mathname="smile", 68683 unicodeslot=0x2323, 68684 }, 68685 [0x2324]={ 68686 category="so", 68687 description="UP ARROWHEAD BETWEEN TWO HORIZONTAL BARS", 68688 direction="on", 68689 linebreak="al", 68690 synonyms={ "enter key" }, 68691 unicodeslot=0x2324, 68692 }, 68693 [0x2325]={ 68694 category="so", 68695 description="OPTION KEY", 68696 direction="on", 68697 linebreak="al", 68698 unicodeslot=0x2325, 68699 }, 68700 [0x2326]={ 68701 category="so", 68702 description="ERASE TO THE RIGHT", 68703 direction="on", 68704 linebreak="al", 68705 synonyms={ "delete to the right key" }, 68706 unicodeslot=0x2326, 68707 }, 68708 [0x2327]={ 68709 category="so", 68710 description="X IN A RECTANGLE BOX", 68711 direction="on", 68712 linebreak="al", 68713 synonyms={ "clear key" }, 68714 unicodeslot=0x2327, 68715 }, 68716 [0x2328]={ 68717 category="so", 68718 description="KEYBOARD", 68719 direction="on", 68720 linebreak="al", 68721 unicodeslot=0x2328, 68722 variants=variants_emoji, 68723 }, 68724 [0x2329]={ 68725 category="ps", 68726 cjkwd="w", 68727 description="LEFT-POINTING ANGLE BRACKET", 68728 direction="on", 68729 linebreak="op", 68730 mirror=0x232A, 68731 specials={ "char", 0x3008 }, 68732 unicodeslot=0x2329, 68733 }, 68734 [0x232A]={ 68735 category="pe", 68736 cjkwd="w", 68737 description="RIGHT-POINTING ANGLE BRACKET", 68738 direction="on", 68739 linebreak="cl", 68740 mirror=0x2329, 68741 specials={ "char", 0x3009 }, 68742 unicodeslot=0x232A, 68743 }, 68744 [0x232B]={ 68745 category="so", 68746 description="ERASE TO THE LEFT", 68747 direction="on", 68748 linebreak="al", 68749 synonyms={ "delete to the left key" }, 68750 unicodeslot=0x232B, 68751 }, 68752 [0x232C]={ 68753 category="so", 68754 description="BENZENE RING", 68755 direction="on", 68756 linebreak="al", 68757 unicodeslot=0x232C, 68758 }, 68759 [0x232D]={ 68760 category="so", 68761 description="CYLINDRICITY", 68762 direction="on", 68763 linebreak="al", 68764 unicodeslot=0x232D, 68765 }, 68766 [0x232E]={ 68767 category="so", 68768 description="ALL AROUND-PROFILE", 68769 direction="on", 68770 linebreak="al", 68771 unicodeslot=0x232E, 68772 }, 68773 [0x232F]={ 68774 category="so", 68775 description="SYMMETRY", 68776 direction="on", 68777 linebreak="al", 68778 unicodeslot=0x232F, 68779 }, 68780 [0x2330]={ 68781 category="so", 68782 description="TOTAL RUNOUT", 68783 direction="on", 68784 linebreak="al", 68785 unicodeslot=0x2330, 68786 }, 68787 [0x2331]={ 68788 category="so", 68789 description="DIMENSION ORIGIN", 68790 direction="on", 68791 linebreak="al", 68792 unicodeslot=0x2331, 68793 }, 68794 [0x2332]={ 68795 category="so", 68796 description="CONICAL TAPER", 68797 direction="on", 68798 linebreak="al", 68799 unicodeslot=0x2332, 68800 }, 68801 [0x2333]={ 68802 category="so", 68803 description="SLOPE", 68804 direction="on", 68805 linebreak="al", 68806 unicodeslot=0x2333, 68807 }, 68808 [0x2334]={ 68809 category="so", 68810 description="COUNTERBORE", 68811 direction="on", 68812 linebreak="al", 68813 unicodeslot=0x2334, 68814 }, 68815 [0x2335]={ 68816 category="so", 68817 description="COUNTERSINK", 68818 direction="on", 68819 linebreak="al", 68820 unicodeslot=0x2335, 68821 }, 68822 [0x2336]={ 68823 category="so", 68824 description="APL FUNCTIONAL SYMBOL I-BEAM", 68825 direction="l", 68826 linebreak="al", 68827 unicodeslot=0x2336, 68828 }, 68829 [0x2337]={ 68830 category="so", 68831 description="APL FUNCTIONAL SYMBOL SQUISH QUAD", 68832 direction="l", 68833 linebreak="al", 68834 unicodeslot=0x2337, 68835 }, 68836 [0x2338]={ 68837 category="so", 68838 description="APL FUNCTIONAL SYMBOL QUAD EQUAL", 68839 direction="l", 68840 linebreak="al", 68841 unicodeslot=0x2338, 68842 }, 68843 [0x2339]={ 68844 category="so", 68845 description="APL FUNCTIONAL SYMBOL QUAD DIVIDE", 68846 direction="l", 68847 linebreak="al", 68848 unicodeslot=0x2339, 68849 }, 68850 [0x233A]={ 68851 category="so", 68852 description="APL FUNCTIONAL SYMBOL QUAD DIAMOND", 68853 direction="l", 68854 linebreak="al", 68855 unicodeslot=0x233A, 68856 }, 68857 [0x233B]={ 68858 category="so", 68859 description="APL FUNCTIONAL SYMBOL QUAD JOT", 68860 direction="l", 68861 linebreak="al", 68862 unicodeslot=0x233B, 68863 }, 68864 [0x233C]={ 68865 category="so", 68866 description="APL FUNCTIONAL SYMBOL QUAD CIRCLE", 68867 direction="l", 68868 linebreak="al", 68869 unicodeslot=0x233C, 68870 }, 68871 [0x233D]={ 68872 category="so", 68873 description="APL FUNCTIONAL SYMBOL CIRCLE STILE", 68874 direction="l", 68875 linebreak="al", 68876 unicodeslot=0x233D, 68877 }, 68878 [0x233E]={ 68879 category="so", 68880 description="APL FUNCTIONAL SYMBOL CIRCLE JOT", 68881 direction="l", 68882 linebreak="al", 68883 unicodeslot=0x233E, 68884 }, 68885 [0x233F]={ 68886 category="so", 68887 description="APL FUNCTIONAL SYMBOL SLASH BAR", 68888 direction="l", 68889 linebreak="al", 68890 unicodeslot=0x233F, 68891 }, 68892 [0x2340]={ 68893 category="so", 68894 description="APL FUNCTIONAL SYMBOL BACKSLASH BAR", 68895 direction="l", 68896 linebreak="al", 68897 unicodeslot=0x2340, 68898 }, 68899 [0x2341]={ 68900 category="so", 68901 description="APL FUNCTIONAL SYMBOL QUAD SLASH", 68902 direction="l", 68903 linebreak="al", 68904 unicodeslot=0x2341, 68905 }, 68906 [0x2342]={ 68907 category="so", 68908 description="APL FUNCTIONAL SYMBOL QUAD BACKSLASH", 68909 direction="l", 68910 linebreak="al", 68911 unicodeslot=0x2342, 68912 }, 68913 [0x2343]={ 68914 category="so", 68915 description="APL FUNCTIONAL SYMBOL QUAD LESS-THAN", 68916 direction="l", 68917 linebreak="al", 68918 unicodeslot=0x2343, 68919 }, 68920 [0x2344]={ 68921 category="so", 68922 description="APL FUNCTIONAL SYMBOL QUAD GREATER-THAN", 68923 direction="l", 68924 linebreak="al", 68925 unicodeslot=0x2344, 68926 }, 68927 [0x2345]={ 68928 category="so", 68929 description="APL FUNCTIONAL SYMBOL LEFTWARDS VANE", 68930 direction="l", 68931 linebreak="al", 68932 unicodeslot=0x2345, 68933 }, 68934 [0x2346]={ 68935 category="so", 68936 description="APL FUNCTIONAL SYMBOL RIGHTWARDS VANE", 68937 direction="l", 68938 linebreak="al", 68939 unicodeslot=0x2346, 68940 }, 68941 [0x2347]={ 68942 category="so", 68943 description="APL FUNCTIONAL SYMBOL QUAD LEFTWARDS ARROW", 68944 direction="l", 68945 linebreak="al", 68946 unicodeslot=0x2347, 68947 }, 68948 [0x2348]={ 68949 category="so", 68950 description="APL FUNCTIONAL SYMBOL QUAD RIGHTWARDS ARROW", 68951 direction="l", 68952 linebreak="al", 68953 unicodeslot=0x2348, 68954 }, 68955 [0x2349]={ 68956 category="so", 68957 description="APL FUNCTIONAL SYMBOL CIRCLE BACKSLASH", 68958 direction="l", 68959 linebreak="al", 68960 unicodeslot=0x2349, 68961 }, 68962 [0x234A]={ 68963 category="so", 68964 description="APL FUNCTIONAL SYMBOL DOWN TACK UNDERBAR", 68965 direction="l", 68966 linebreak="al", 68967 unicodeslot=0x234A, 68968 }, 68969 [0x234B]={ 68970 category="so", 68971 description="APL FUNCTIONAL SYMBOL DELTA STILE", 68972 direction="l", 68973 linebreak="al", 68974 unicodeslot=0x234B, 68975 }, 68976 [0x234C]={ 68977 category="so", 68978 description="APL FUNCTIONAL SYMBOL QUAD DOWN CARET", 68979 direction="l", 68980 linebreak="al", 68981 unicodeslot=0x234C, 68982 }, 68983 [0x234D]={ 68984 category="so", 68985 description="APL FUNCTIONAL SYMBOL QUAD DELTA", 68986 direction="l", 68987 linebreak="al", 68988 unicodeslot=0x234D, 68989 }, 68990 [0x234E]={ 68991 category="so", 68992 description="APL FUNCTIONAL SYMBOL DOWN TACK JOT", 68993 direction="l", 68994 linebreak="al", 68995 unicodeslot=0x234E, 68996 }, 68997 [0x234F]={ 68998 category="so", 68999 description="APL FUNCTIONAL SYMBOL UPWARDS VANE", 69000 direction="l", 69001 linebreak="al", 69002 unicodeslot=0x234F, 69003 }, 69004 [0x2350]={ 69005 category="so", 69006 description="APL FUNCTIONAL SYMBOL QUAD UPWARDS ARROW", 69007 direction="l", 69008 linebreak="al", 69009 unicodeslot=0x2350, 69010 }, 69011 [0x2351]={ 69012 category="so", 69013 description="APL FUNCTIONAL SYMBOL UP TACK OVERBAR", 69014 direction="l", 69015 linebreak="al", 69016 unicodeslot=0x2351, 69017 }, 69018 [0x2352]={ 69019 category="so", 69020 description="APL FUNCTIONAL SYMBOL DEL STILE", 69021 direction="l", 69022 linebreak="al", 69023 unicodeslot=0x2352, 69024 }, 69025 [0x2353]={ 69026 category="so", 69027 description="APL FUNCTIONAL SYMBOL QUAD UP CARET", 69028 direction="l", 69029 linebreak="al", 69030 unicodeslot=0x2353, 69031 }, 69032 [0x2354]={ 69033 category="so", 69034 description="APL FUNCTIONAL SYMBOL QUAD DEL", 69035 direction="l", 69036 linebreak="al", 69037 unicodeslot=0x2354, 69038 }, 69039 [0x2355]={ 69040 category="so", 69041 description="APL FUNCTIONAL SYMBOL UP TACK JOT", 69042 direction="l", 69043 linebreak="al", 69044 unicodeslot=0x2355, 69045 }, 69046 [0x2356]={ 69047 category="so", 69048 description="APL FUNCTIONAL SYMBOL DOWNWARDS VANE", 69049 direction="l", 69050 linebreak="al", 69051 unicodeslot=0x2356, 69052 }, 69053 [0x2357]={ 69054 category="so", 69055 description="APL FUNCTIONAL SYMBOL QUAD DOWNWARDS ARROW", 69056 direction="l", 69057 linebreak="al", 69058 unicodeslot=0x2357, 69059 }, 69060 [0x2358]={ 69061 category="so", 69062 description="APL FUNCTIONAL SYMBOL QUOTE UNDERBAR", 69063 direction="l", 69064 linebreak="al", 69065 unicodeslot=0x2358, 69066 }, 69067 [0x2359]={ 69068 category="so", 69069 description="APL FUNCTIONAL SYMBOL DELTA UNDERBAR", 69070 direction="l", 69071 linebreak="al", 69072 unicodeslot=0x2359, 69073 }, 69074 [0x235A]={ 69075 category="so", 69076 description="APL FUNCTIONAL SYMBOL DIAMOND UNDERBAR", 69077 direction="l", 69078 linebreak="al", 69079 unicodeslot=0x235A, 69080 }, 69081 [0x235B]={ 69082 category="so", 69083 description="APL FUNCTIONAL SYMBOL JOT UNDERBAR", 69084 direction="l", 69085 linebreak="al", 69086 unicodeslot=0x235B, 69087 }, 69088 [0x235C]={ 69089 category="so", 69090 description="APL FUNCTIONAL SYMBOL CIRCLE UNDERBAR", 69091 direction="l", 69092 linebreak="al", 69093 unicodeslot=0x235C, 69094 }, 69095 [0x235D]={ 69096 category="so", 69097 description="APL FUNCTIONAL SYMBOL UP SHOE JOT", 69098 direction="l", 69099 linebreak="al", 69100 unicodeslot=0x235D, 69101 }, 69102 [0x235E]={ 69103 category="so", 69104 description="APL FUNCTIONAL SYMBOL QUOTE QUAD", 69105 direction="l", 69106 linebreak="al", 69107 unicodeslot=0x235E, 69108 }, 69109 [0x235F]={ 69110 category="so", 69111 description="APL FUNCTIONAL SYMBOL CIRCLE STAR", 69112 direction="l", 69113 linebreak="al", 69114 unicodeslot=0x235F, 69115 }, 69116 [0x2360]={ 69117 category="so", 69118 description="APL FUNCTIONAL SYMBOL QUAD COLON", 69119 direction="l", 69120 linebreak="al", 69121 unicodeslot=0x2360, 69122 }, 69123 [0x2361]={ 69124 category="so", 69125 description="APL FUNCTIONAL SYMBOL UP TACK DIAERESIS", 69126 direction="l", 69127 linebreak="al", 69128 unicodeslot=0x2361, 69129 }, 69130 [0x2362]={ 69131 category="so", 69132 description="APL FUNCTIONAL SYMBOL DEL DIAERESIS", 69133 direction="l", 69134 linebreak="al", 69135 unicodeslot=0x2362, 69136 }, 69137 [0x2363]={ 69138 category="so", 69139 description="APL FUNCTIONAL SYMBOL STAR DIAERESIS", 69140 direction="l", 69141 linebreak="al", 69142 unicodeslot=0x2363, 69143 }, 69144 [0x2364]={ 69145 category="so", 69146 description="APL FUNCTIONAL SYMBOL JOT DIAERESIS", 69147 direction="l", 69148 linebreak="al", 69149 synonyms={ "hoot" }, 69150 unicodeslot=0x2364, 69151 }, 69152 [0x2365]={ 69153 category="so", 69154 description="APL FUNCTIONAL SYMBOL CIRCLE DIAERESIS", 69155 direction="l", 69156 linebreak="al", 69157 synonyms={ "holler" }, 69158 unicodeslot=0x2365, 69159 }, 69160 [0x2366]={ 69161 category="so", 69162 description="APL FUNCTIONAL SYMBOL DOWN SHOE STILE", 69163 direction="l", 69164 linebreak="al", 69165 unicodeslot=0x2366, 69166 }, 69167 [0x2367]={ 69168 category="so", 69169 description="APL FUNCTIONAL SYMBOL LEFT SHOE STILE", 69170 direction="l", 69171 linebreak="al", 69172 unicodeslot=0x2367, 69173 }, 69174 [0x2368]={ 69175 category="so", 69176 description="APL FUNCTIONAL SYMBOL TILDE DIAERESIS", 69177 direction="l", 69178 linebreak="al", 69179 synonyms={ "smirk" }, 69180 unicodeslot=0x2368, 69181 }, 69182 [0x2369]={ 69183 category="so", 69184 description="APL FUNCTIONAL SYMBOL GREATER-THAN DIAERESIS", 69185 direction="l", 69186 linebreak="al", 69187 unicodeslot=0x2369, 69188 }, 69189 [0x236A]={ 69190 category="so", 69191 description="APL FUNCTIONAL SYMBOL COMMA BAR", 69192 direction="l", 69193 linebreak="al", 69194 unicodeslot=0x236A, 69195 }, 69196 [0x236B]={ 69197 category="so", 69198 description="APL FUNCTIONAL SYMBOL DEL TILDE", 69199 direction="l", 69200 linebreak="al", 69201 unicodeslot=0x236B, 69202 }, 69203 [0x236C]={ 69204 category="so", 69205 description="APL FUNCTIONAL SYMBOL ZILDE", 69206 direction="l", 69207 linebreak="al", 69208 unicodeslot=0x236C, 69209 }, 69210 [0x236D]={ 69211 category="so", 69212 description="APL FUNCTIONAL SYMBOL STILE TILDE", 69213 direction="l", 69214 linebreak="al", 69215 unicodeslot=0x236D, 69216 }, 69217 [0x236E]={ 69218 category="so", 69219 description="APL FUNCTIONAL SYMBOL SEMICOLON UNDERBAR", 69220 direction="l", 69221 linebreak="al", 69222 unicodeslot=0x236E, 69223 }, 69224 [0x236F]={ 69225 category="so", 69226 description="APL FUNCTIONAL SYMBOL QUAD NOT EQUAL", 69227 direction="l", 69228 linebreak="al", 69229 unicodeslot=0x236F, 69230 }, 69231 [0x2370]={ 69232 category="so", 69233 description="APL FUNCTIONAL SYMBOL QUAD QUESTION", 69234 direction="l", 69235 linebreak="al", 69236 unicodeslot=0x2370, 69237 }, 69238 [0x2371]={ 69239 category="so", 69240 description="APL FUNCTIONAL SYMBOL DOWN CARET TILDE", 69241 direction="l", 69242 linebreak="al", 69243 unicodeslot=0x2371, 69244 }, 69245 [0x2372]={ 69246 category="so", 69247 description="APL FUNCTIONAL SYMBOL UP CARET TILDE", 69248 direction="l", 69249 linebreak="al", 69250 unicodeslot=0x2372, 69251 }, 69252 [0x2373]={ 69253 category="so", 69254 description="APL FUNCTIONAL SYMBOL IOTA", 69255 direction="l", 69256 linebreak="al", 69257 unicodeslot=0x2373, 69258 }, 69259 [0x2374]={ 69260 category="so", 69261 description="APL FUNCTIONAL SYMBOL RHO", 69262 direction="l", 69263 linebreak="al", 69264 unicodeslot=0x2374, 69265 }, 69266 [0x2375]={ 69267 category="so", 69268 description="APL FUNCTIONAL SYMBOL OMEGA", 69269 direction="l", 69270 linebreak="al", 69271 unicodeslot=0x2375, 69272 }, 69273 [0x2376]={ 69274 category="so", 69275 description="APL FUNCTIONAL SYMBOL ALPHA UNDERBAR", 69276 direction="l", 69277 linebreak="al", 69278 unicodeslot=0x2376, 69279 }, 69280 [0x2377]={ 69281 category="so", 69282 description="APL FUNCTIONAL SYMBOL EPSILON UNDERBAR", 69283 direction="l", 69284 linebreak="al", 69285 unicodeslot=0x2377, 69286 }, 69287 [0x2378]={ 69288 category="so", 69289 description="APL FUNCTIONAL SYMBOL IOTA UNDERBAR", 69290 direction="l", 69291 linebreak="al", 69292 unicodeslot=0x2378, 69293 }, 69294 [0x2379]={ 69295 category="so", 69296 description="APL FUNCTIONAL SYMBOL OMEGA UNDERBAR", 69297 direction="l", 69298 linebreak="al", 69299 unicodeslot=0x2379, 69300 }, 69301 [0x237A]={ 69302 category="so", 69303 description="APL FUNCTIONAL SYMBOL ALPHA", 69304 direction="l", 69305 linebreak="al", 69306 unicodeslot=0x237A, 69307 }, 69308 [0x237B]={ 69309 category="so", 69310 description="NOT CHECK MARK", 69311 direction="on", 69312 linebreak="al", 69313 unicodeslot=0x237B, 69314 }, 69315 [0x237C]={ 69316 category="sm", 69317 description="RIGHT ANGLE WITH DOWNWARDS ZIGZAG ARROW", 69318 direction="on", 69319 linebreak="al", 69320 unicodeslot=0x237C, 69321 }, 69322 [0x237D]={ 69323 category="so", 69324 description="SHOULDERED OPEN BOX", 69325 direction="on", 69326 linebreak="al", 69327 synonyms={ "keyboard symbol for no break space" }, 69328 unicodeslot=0x237D, 69329 }, 69330 [0x237E]={ 69331 category="so", 69332 description="BELL SYMBOL", 69333 direction="on", 69334 linebreak="al", 69335 unicodeslot=0x237E, 69336 }, 69337 [0x237F]={ 69338 category="so", 69339 description="VERTICAL LINE WITH MIDDLE DOT", 69340 direction="on", 69341 linebreak="al", 69342 synonyms={ "symbol for end of medium" }, 69343 unicodeslot=0x237F, 69344 }, 69345 [0x2380]={ 69346 category="so", 69347 description="INSERTION SYMBOL", 69348 direction="on", 69349 linebreak="al", 69350 unicodeslot=0x2380, 69351 }, 69352 [0x2381]={ 69353 category="so", 69354 description="CONTINUOUS UNDERLINE SYMBOL", 69355 direction="on", 69356 linebreak="al", 69357 unicodeslot=0x2381, 69358 }, 69359 [0x2382]={ 69360 category="so", 69361 description="DISCONTINUOUS UNDERLINE SYMBOL", 69362 direction="on", 69363 linebreak="al", 69364 unicodeslot=0x2382, 69365 }, 69366 [0x2383]={ 69367 category="so", 69368 description="EMPHASIS SYMBOL", 69369 direction="on", 69370 linebreak="al", 69371 unicodeslot=0x2383, 69372 }, 69373 [0x2384]={ 69374 category="so", 69375 description="COMPOSITION SYMBOL", 69376 direction="on", 69377 linebreak="al", 69378 unicodeslot=0x2384, 69379 }, 69380 [0x2385]={ 69381 category="so", 69382 description="WHITE SQUARE WITH CENTRE VERTICAL LINE", 69383 direction="on", 69384 linebreak="al", 69385 synonyms={ "center" }, 69386 unicodeslot=0x2385, 69387 }, 69388 [0x2386]={ 69389 category="so", 69390 description="ENTER SYMBOL", 69391 direction="on", 69392 linebreak="al", 69393 unicodeslot=0x2386, 69394 }, 69395 [0x2387]={ 69396 category="so", 69397 description="ALTERNATIVE KEY SYMBOL", 69398 direction="on", 69399 linebreak="al", 69400 unicodeslot=0x2387, 69401 }, 69402 [0x2388]={ 69403 category="so", 69404 description="HELM SYMBOL", 69405 direction="on", 69406 linebreak="al", 69407 synonyms={ "control" }, 69408 unicodeslot=0x2388, 69409 }, 69410 [0x2389]={ 69411 category="so", 69412 description="CIRCLED HORIZONTAL BAR WITH NOTCH", 69413 direction="on", 69414 linebreak="al", 69415 synonyms={ "pause" }, 69416 unicodeslot=0x2389, 69417 }, 69418 [0x238A]={ 69419 category="so", 69420 description="CIRCLED TRIANGLE DOWN", 69421 direction="on", 69422 linebreak="al", 69423 synonyms={ "interrupt" }, 69424 unicodeslot=0x238A, 69425 }, 69426 [0x238B]={ 69427 category="so", 69428 description="BROKEN CIRCLE WITH NORTHWEST ARROW", 69429 direction="on", 69430 linebreak="al", 69431 unicodeslot=0x238B, 69432 }, 69433 [0x238C]={ 69434 category="so", 69435 description="UNDO SYMBOL", 69436 direction="on", 69437 linebreak="al", 69438 unicodeslot=0x238C, 69439 }, 69440 [0x238D]={ 69441 category="so", 69442 description="MONOSTABLE SYMBOL", 69443 direction="on", 69444 linebreak="al", 69445 unicodeslot=0x238D, 69446 }, 69447 [0x238E]={ 69448 category="so", 69449 description="HYSTERESIS SYMBOL", 69450 direction="on", 69451 linebreak="al", 69452 unicodeslot=0x238E, 69453 }, 69454 [0x238F]={ 69455 category="so", 69456 description="OPEN-CIRCUIT-OUTPUT H-TYPE SYMBOL", 69457 direction="on", 69458 linebreak="al", 69459 unicodeslot=0x238F, 69460 }, 69461 [0x2390]={ 69462 category="so", 69463 description="OPEN-CIRCUIT-OUTPUT L-TYPE SYMBOL", 69464 direction="on", 69465 linebreak="al", 69466 unicodeslot=0x2390, 69467 }, 69468 [0x2391]={ 69469 category="so", 69470 description="PASSIVE-PULL-DOWN-OUTPUT SYMBOL", 69471 direction="on", 69472 linebreak="al", 69473 unicodeslot=0x2391, 69474 }, 69475 [0x2392]={ 69476 category="so", 69477 description="PASSIVE-PULL-UP-OUTPUT SYMBOL", 69478 direction="on", 69479 linebreak="al", 69480 unicodeslot=0x2392, 69481 }, 69482 [0x2393]={ 69483 category="so", 69484 description="DIRECT CURRENT SYMBOL FORM TWO", 69485 direction="on", 69486 linebreak="al", 69487 unicodeslot=0x2393, 69488 }, 69489 [0x2394]={ 69490 category="so", 69491 description="SOFTWARE-FUNCTION SYMBOL", 69492 direction="on", 69493 linebreak="al", 69494 unicodeslot=0x2394, 69495 }, 69496 [0x2395]={ 69497 category="so", 69498 description="APL FUNCTIONAL SYMBOL QUAD", 69499 direction="l", 69500 linebreak="al", 69501 unicodeslot=0x2395, 69502 }, 69503 [0x2396]={ 69504 category="so", 69505 description="DECIMAL SEPARATOR KEY SYMBOL", 69506 direction="on", 69507 linebreak="al", 69508 unicodeslot=0x2396, 69509 }, 69510 [0x2397]={ 69511 category="so", 69512 description="PREVIOUS PAGE", 69513 direction="on", 69514 linebreak="al", 69515 unicodeslot=0x2397, 69516 }, 69517 [0x2398]={ 69518 category="so", 69519 description="NEXT PAGE", 69520 direction="on", 69521 linebreak="al", 69522 unicodeslot=0x2398, 69523 }, 69524 [0x2399]={ 69525 category="so", 69526 description="PRINT SCREEN SYMBOL", 69527 direction="on", 69528 linebreak="al", 69529 unicodeslot=0x2399, 69530 }, 69531 [0x239A]={ 69532 category="so", 69533 description="CLEAR SCREEN SYMBOL", 69534 direction="on", 69535 linebreak="al", 69536 unicodeslot=0x239A, 69537 }, 69538 [0x239B]={ 69539 category="sm", 69540 description="LEFT PARENTHESIS UPPER HOOK", 69541 direction="on", 69542 linebreak="al", 69543 unicodeslot=0x239B, 69544 }, 69545 [0x239C]={ 69546 category="sm", 69547 description="LEFT PARENTHESIS EXTENSION", 69548 direction="on", 69549 linebreak="al", 69550 unicodeslot=0x239C, 69551 }, 69552 [0x239D]={ 69553 category="sm", 69554 description="LEFT PARENTHESIS LOWER HOOK", 69555 direction="on", 69556 linebreak="al", 69557 unicodeslot=0x239D, 69558 }, 69559 [0x239E]={ 69560 category="sm", 69561 description="RIGHT PARENTHESIS UPPER HOOK", 69562 direction="on", 69563 linebreak="al", 69564 unicodeslot=0x239E, 69565 }, 69566 [0x239F]={ 69567 category="sm", 69568 description="RIGHT PARENTHESIS EXTENSION", 69569 direction="on", 69570 linebreak="al", 69571 unicodeslot=0x239F, 69572 }, 69573 [0x23A0]={ 69574 category="sm", 69575 description="RIGHT PARENTHESIS LOWER HOOK", 69576 direction="on", 69577 linebreak="al", 69578 unicodeslot=0x23A0, 69579 }, 69580 [0x23A1]={ 69581 category="sm", 69582 description="LEFT SQUARE BRACKET UPPER CORNER", 69583 direction="on", 69584 linebreak="al", 69585 unicodeslot=0x23A1, 69586 }, 69587 [0x23A2]={ 69588 category="sm", 69589 description="LEFT SQUARE BRACKET EXTENSION", 69590 direction="on", 69591 linebreak="al", 69592 unicodeslot=0x23A2, 69593 }, 69594 [0x23A3]={ 69595 category="sm", 69596 description="LEFT SQUARE BRACKET LOWER CORNER", 69597 direction="on", 69598 linebreak="al", 69599 unicodeslot=0x23A3, 69600 }, 69601 [0x23A4]={ 69602 category="sm", 69603 description="RIGHT SQUARE BRACKET UPPER CORNER", 69604 direction="on", 69605 linebreak="al", 69606 unicodeslot=0x23A4, 69607 }, 69608 [0x23A5]={ 69609 category="sm", 69610 description="RIGHT SQUARE BRACKET EXTENSION", 69611 direction="on", 69612 linebreak="al", 69613 unicodeslot=0x23A5, 69614 }, 69615 [0x23A6]={ 69616 category="sm", 69617 description="RIGHT SQUARE BRACKET LOWER CORNER", 69618 direction="on", 69619 linebreak="al", 69620 unicodeslot=0x23A6, 69621 }, 69622 [0x23A7]={ 69623 category="sm", 69624 description="LEFT CURLY BRACKET UPPER HOOK", 69625 direction="on", 69626 linebreak="al", 69627 unicodeslot=0x23A7, 69628 }, 69629 [0x23A8]={ 69630 category="sm", 69631 description="LEFT CURLY BRACKET MIDDLE PIECE", 69632 direction="on", 69633 linebreak="al", 69634 unicodeslot=0x23A8, 69635 }, 69636 [0x23A9]={ 69637 category="sm", 69638 description="LEFT CURLY BRACKET LOWER HOOK", 69639 direction="on", 69640 linebreak="al", 69641 unicodeslot=0x23A9, 69642 }, 69643 [0x23AA]={ 69644 category="sm", 69645 description="CURLY BRACKET EXTENSION", 69646 direction="on", 69647 linebreak="al", 69648 unicodeslot=0x23AA, 69649 }, 69650 [0x23AB]={ 69651 category="sm", 69652 description="RIGHT CURLY BRACKET UPPER HOOK", 69653 direction="on", 69654 linebreak="al", 69655 unicodeslot=0x23AB, 69656 }, 69657 [0x23AC]={ 69658 category="sm", 69659 description="RIGHT CURLY BRACKET MIDDLE PIECE", 69660 direction="on", 69661 linebreak="al", 69662 unicodeslot=0x23AC, 69663 }, 69664 [0x23AD]={ 69665 category="sm", 69666 description="RIGHT CURLY BRACKET LOWER HOOK", 69667 direction="on", 69668 linebreak="al", 69669 unicodeslot=0x23AD, 69670 }, 69671 [0x23AE]={ 69672 category="sm", 69673 description="INTEGRAL EXTENSION", 69674 direction="on", 69675 linebreak="al", 69676 unicodeslot=0x23AE, 69677 }, 69678 [0x23AF]={ 69679 category="sm", 69680 description="HORIZONTAL LINE EXTENSION", 69681 direction="on", 69682 linebreak="al", 69683 unicodeslot=0x23AF, 69684 }, 69685 [0x23B0]={ 69686 category="sm", 69687 description="UPPER LEFT OR LOWER RIGHT CURLY BRACKET SECTION", 69688 direction="on", 69689 linebreak="al", 69690 mathclass="open", 69691 mathname="lmoustache", 69692 synonyms={ "left moustache" }, 69693 unicodeslot=0x23B0, 69694 }, 69695 [0x23B1]={ 69696 category="sm", 69697 description="UPPER RIGHT OR LOWER LEFT CURLY BRACKET SECTION", 69698 direction="on", 69699 linebreak="al", 69700 mathclass="close", 69701 mathname="rmoustache", 69702 synonyms={ "right moustache" }, 69703 unicodeslot=0x23B1, 69704 }, 69705 [0x23B2]={ 69706 category="sm", 69707 description="SUMMATION TOP", 69708 direction="on", 69709 linebreak="al", 69710 unicodeslot=0x23B2, 69711 }, 69712 [0x23B3]={ 69713 category="sm", 69714 description="SUMMATION BOTTOM", 69715 direction="on", 69716 linebreak="al", 69717 unicodeslot=0x23B3, 69718 }, 69719 [0x23B4]={ 69720 category="so", 69721 description="TOP SQUARE BRACKET", 69722 direction="on", 69723 linebreak="al", 69724 mathclass="topaccent", 69725 mathextensible="h", 69726 mathfiller="overbracketfill", 69727 mathname="overbracket", 69728 unicodeslot=0x23B4, 69729 }, 69730 [0x23B5]={ 69731 category="so", 69732 description="BOTTOM SQUARE BRACKET", 69733 direction="on", 69734 linebreak="al", 69735 mathclass="botaccent", 69736 mathextensible="h", 69737 mathfiller="underbracketfill", 69738 mathname="underbracket", 69739 unicodeslot=0x23B5, 69740 }, 69741 [0x23B6]={ 69742 category="so", 69743 description="BOTTOM SQUARE BRACKET OVER TOP SQUARE BRACKET", 69744 direction="on", 69745 linebreak="al", 69746 unicodeslot=0x23B6, 69747 }, 69748 [0x23B7]={ 69749 category="so", 69750 description="RADICAL SYMBOL BOTTOM", 69751 direction="on", 69752 linebreak="al", 69753 unicodeslot=0x23B7, 69754 }, 69755 [0x23B8]={ 69756 category="so", 69757 description="LEFT VERTICAL BOX LINE", 69758 direction="on", 69759 linebreak="al", 69760 unicodeslot=0x23B8, 69761 }, 69762 [0x23B9]={ 69763 category="so", 69764 description="RIGHT VERTICAL BOX LINE", 69765 direction="on", 69766 linebreak="al", 69767 unicodeslot=0x23B9, 69768 }, 69769 [0x23BA]={ 69770 category="so", 69771 description="HORIZONTAL SCAN LINE-0x0001", 69772 direction="on", 69773 linebreak="al", 69774 unicodeslot=0x23BA, 69775 }, 69776 [0x23BB]={ 69777 category="so", 69778 description="HORIZONTAL SCAN LINE-0x0003", 69779 direction="on", 69780 linebreak="al", 69781 unicodeslot=0x23BB, 69782 }, 69783 [0x23BC]={ 69784 category="so", 69785 description="HORIZONTAL SCAN LINE-0x0007", 69786 direction="on", 69787 linebreak="al", 69788 unicodeslot=0x23BC, 69789 }, 69790 [0x23BD]={ 69791 category="so", 69792 description="HORIZONTAL SCAN LINE-0x0009", 69793 direction="on", 69794 linebreak="al", 69795 unicodeslot=0x23BD, 69796 }, 69797 [0x23BE]={ 69798 category="so", 69799 description="DENTISTRY SYMBOL LIGHT VERTICAL AND TOP RIGHT", 69800 direction="on", 69801 linebreak="al", 69802 unicodeslot=0x23BE, 69803 }, 69804 [0x23BF]={ 69805 category="so", 69806 description="DENTISTRY SYMBOL LIGHT VERTICAL AND BOTTOM RIGHT", 69807 direction="on", 69808 linebreak="al", 69809 unicodeslot=0x23BF, 69810 }, 69811 [0x23C0]={ 69812 category="so", 69813 description="DENTISTRY SYMBOL LIGHT VERTICAL WITH CIRCLE", 69814 direction="on", 69815 linebreak="al", 69816 unicodeslot=0x23C0, 69817 }, 69818 [0x23C1]={ 69819 category="so", 69820 description="DENTISTRY SYMBOL LIGHT DOWN AND HORIZONTAL WITH CIRCLE", 69821 direction="on", 69822 linebreak="al", 69823 unicodeslot=0x23C1, 69824 }, 69825 [0x23C2]={ 69826 category="so", 69827 description="DENTISTRY SYMBOL LIGHT UP AND HORIZONTAL WITH CIRCLE", 69828 direction="on", 69829 linebreak="al", 69830 unicodeslot=0x23C2, 69831 }, 69832 [0x23C3]={ 69833 category="so", 69834 description="DENTISTRY SYMBOL LIGHT VERTICAL WITH TRIANGLE", 69835 direction="on", 69836 linebreak="al", 69837 unicodeslot=0x23C3, 69838 }, 69839 [0x23C4]={ 69840 category="so", 69841 description="DENTISTRY SYMBOL LIGHT DOWN AND HORIZONTAL WITH TRIANGLE", 69842 direction="on", 69843 linebreak="al", 69844 unicodeslot=0x23C4, 69845 }, 69846 [0x23C5]={ 69847 category="so", 69848 description="DENTISTRY SYMBOL LIGHT UP AND HORIZONTAL WITH TRIANGLE", 69849 direction="on", 69850 linebreak="al", 69851 unicodeslot=0x23C5, 69852 }, 69853 [0x23C6]={ 69854 category="so", 69855 description="DENTISTRY SYMBOL LIGHT VERTICAL AND WAVE", 69856 direction="on", 69857 linebreak="al", 69858 unicodeslot=0x23C6, 69859 }, 69860 [0x23C7]={ 69861 category="so", 69862 description="DENTISTRY SYMBOL LIGHT DOWN AND HORIZONTAL WITH WAVE", 69863 direction="on", 69864 linebreak="al", 69865 unicodeslot=0x23C7, 69866 }, 69867 [0x23C8]={ 69868 category="so", 69869 description="DENTISTRY SYMBOL LIGHT UP AND HORIZONTAL WITH WAVE", 69870 direction="on", 69871 linebreak="al", 69872 unicodeslot=0x23C8, 69873 }, 69874 [0x23C9]={ 69875 category="so", 69876 description="DENTISTRY SYMBOL LIGHT DOWN AND HORIZONTAL", 69877 direction="on", 69878 linebreak="al", 69879 unicodeslot=0x23C9, 69880 }, 69881 [0x23CA]={ 69882 category="so", 69883 description="DENTISTRY SYMBOL LIGHT UP AND HORIZONTAL", 69884 direction="on", 69885 linebreak="al", 69886 unicodeslot=0x23CA, 69887 }, 69888 [0x23CB]={ 69889 category="so", 69890 description="DENTISTRY SYMBOL LIGHT VERTICAL AND TOP LEFT", 69891 direction="on", 69892 linebreak="al", 69893 unicodeslot=0x23CB, 69894 }, 69895 [0x23CC]={ 69896 category="so", 69897 description="DENTISTRY SYMBOL LIGHT VERTICAL AND BOTTOM LEFT", 69898 direction="on", 69899 linebreak="al", 69900 unicodeslot=0x23CC, 69901 }, 69902 [0x23CD]={ 69903 category="so", 69904 description="SQUARE FOOT", 69905 direction="on", 69906 linebreak="al", 69907 unicodeslot=0x23CD, 69908 }, 69909 [0x23CE]={ 69910 category="so", 69911 description="RETURN SYMBOL", 69912 direction="on", 69913 linebreak="al", 69914 unicodeslot=0x23CE, 69915 }, 69916 [0x23CF]={ 69917 category="so", 69918 description="EJECT SYMBOL", 69919 direction="on", 69920 linebreak="al", 69921 synonyms={ "eject media" }, 69922 unicodeslot=0x23CF, 69923 variants=variants_emoji, 69924 }, 69925 [0x23D0]={ 69926 category="so", 69927 description="VERTICAL LINE EXTENSION", 69928 direction="on", 69929 linebreak="al", 69930 unicodeslot=0x23D0, 69931 }, 69932 [0x23D1]={ 69933 category="so", 69934 description="METRICAL BREVE", 69935 direction="on", 69936 linebreak="al", 69937 unicodeslot=0x23D1, 69938 }, 69939 [0x23D2]={ 69940 category="so", 69941 description="METRICAL LONG OVER SHORT", 69942 direction="on", 69943 linebreak="al", 69944 unicodeslot=0x23D2, 69945 }, 69946 [0x23D3]={ 69947 category="so", 69948 description="METRICAL SHORT OVER LONG", 69949 direction="on", 69950 linebreak="al", 69951 unicodeslot=0x23D3, 69952 }, 69953 [0x23D4]={ 69954 category="so", 69955 description="METRICAL LONG OVER TWO SHORTS", 69956 direction="on", 69957 linebreak="al", 69958 unicodeslot=0x23D4, 69959 }, 69960 [0x23D5]={ 69961 category="so", 69962 description="METRICAL TWO SHORTS OVER LONG", 69963 direction="on", 69964 linebreak="al", 69965 unicodeslot=0x23D5, 69966 }, 69967 [0x23D6]={ 69968 category="so", 69969 description="METRICAL TWO SHORTS JOINED", 69970 direction="on", 69971 linebreak="al", 69972 unicodeslot=0x23D6, 69973 }, 69974 [0x23D7]={ 69975 category="so", 69976 description="METRICAL TRISEME", 69977 direction="on", 69978 linebreak="al", 69979 unicodeslot=0x23D7, 69980 }, 69981 [0x23D8]={ 69982 category="so", 69983 description="METRICAL TETRASEME", 69984 direction="on", 69985 linebreak="al", 69986 unicodeslot=0x23D8, 69987 }, 69988 [0x23D9]={ 69989 category="so", 69990 description="METRICAL PENTASEME", 69991 direction="on", 69992 linebreak="al", 69993 unicodeslot=0x23D9, 69994 }, 69995 [0x23DA]={ 69996 category="so", 69997 description="EARTH GROUND", 69998 direction="on", 69999 linebreak="al", 70000 unicodeslot=0x23DA, 70001 }, 70002 [0x23DB]={ 70003 category="so", 70004 description="FUSE", 70005 direction="on", 70006 linebreak="al", 70007 unicodeslot=0x23DB, 70008 }, 70009 [0x23DC]={ 70010 category="sm", 70011 description="TOP PARENTHESIS", 70012 direction="on", 70013 linebreak="al", 70014 mathclass="topaccent", 70015 mathextensible="h", 70016 mathfiller="overparentfill", 70017 mathname="overparent", 70018 unicodeslot=0x23DC, 70019 }, 70020 [0x23DD]={ 70021 category="sm", 70022 description="BOTTOM PARENTHESIS", 70023 direction="on", 70024 linebreak="al", 70025 mathclass="botaccent", 70026 mathextensible="h", 70027 mathfiller="underparentfill", 70028 mathname="underparent", 70029 unicodeslot=0x23DD, 70030 }, 70031 [0x23DE]={ 70032 category="sm", 70033 description="TOP CURLY BRACKET", 70034 direction="on", 70035 linebreak="al", 70036 mathclass="topaccent", 70037 mathextensible="h", 70038 mathfiller="overbracefill", 70039 mathname="overbrace", 70040 unicodeslot=0x23DE, 70041 }, 70042 [0x23DF]={ 70043 category="sm", 70044 description="BOTTOM CURLY BRACKET", 70045 direction="on", 70046 linebreak="al", 70047 mathclass="botaccent", 70048 mathextensible="h", 70049 mathfiller="underbracefill", 70050 mathname="underbrace", 70051 unicodeslot=0x23DF, 70052 }, 70053 [0x23E0]={ 70054 category="sm", 70055 description="TOP TORTOISE SHELL BRACKET", 70056 direction="on", 70057 linebreak="al", 70058 mathclass="topaccent", 70059 unicodeslot=0x23E0, 70060 }, 70061 [0x23E1]={ 70062 category="sm", 70063 description="BOTTOM TORTOISE SHELL BRACKET", 70064 direction="on", 70065 linebreak="al", 70066 mathclass="botaccent", 70067 unicodeslot=0x23E1, 70068 }, 70069 [0x23E2]={ 70070 category="so", 70071 description="WHITE TRAPEZIUM", 70072 direction="on", 70073 linebreak="al", 70074 unicodeslot=0x23E2, 70075 }, 70076 [0x23E3]={ 70077 category="so", 70078 description="BENZENE RING WITH CIRCLE", 70079 direction="on", 70080 linebreak="al", 70081 unicodeslot=0x23E3, 70082 }, 70083 [0x23E4]={ 70084 category="so", 70085 description="STRAIGHTNESS", 70086 direction="on", 70087 linebreak="al", 70088 unicodeslot=0x23E4, 70089 }, 70090 [0x23E5]={ 70091 category="so", 70092 description="FLATNESS", 70093 direction="on", 70094 linebreak="al", 70095 unicodeslot=0x23E5, 70096 }, 70097 [0x23E6]={ 70098 category="so", 70099 description="AC CURRENT", 70100 direction="on", 70101 linebreak="al", 70102 unicodeslot=0x23E6, 70103 }, 70104 [0x23E7]={ 70105 category="so", 70106 description="ELECTRICAL INTERSECTION", 70107 direction="on", 70108 linebreak="al", 70109 unicodeslot=0x23E7, 70110 }, 70111 [0x23E8]={ 70112 category="so", 70113 description="DECIMAL EXPONENT SYMBOL", 70114 direction="on", 70115 linebreak="al", 70116 unicodeslot=0x23E8, 70117 }, 70118 [0x23E9]={ 70119 category="so", 70120 cjkwd="w", 70121 description="BLACK RIGHT-POINTING DOUBLE TRIANGLE", 70122 direction="on", 70123 linebreak="al", 70124 synonyms={ "fast forward" }, 70125 unicodeslot=0x23E9, 70126 }, 70127 [0x23EA]={ 70128 category="so", 70129 cjkwd="w", 70130 description="BLACK LEFT-POINTING DOUBLE TRIANGLE", 70131 direction="on", 70132 linebreak="al", 70133 synonyms={ "fast rewind" }, 70134 unicodeslot=0x23EA, 70135 }, 70136 [0x23EB]={ 70137 category="so", 70138 cjkwd="w", 70139 description="BLACK UP-POINTING DOUBLE TRIANGLE", 70140 direction="on", 70141 linebreak="al", 70142 unicodeslot=0x23EB, 70143 }, 70144 [0x23EC]={ 70145 category="so", 70146 cjkwd="w", 70147 description="BLACK DOWN-POINTING DOUBLE TRIANGLE", 70148 direction="on", 70149 linebreak="al", 70150 unicodeslot=0x23EC, 70151 }, 70152 [0x23ED]={ 70153 category="so", 70154 description="BLACK RIGHT-POINTING DOUBLE TRIANGLE WITH VERTICAL BAR", 70155 direction="on", 70156 linebreak="al", 70157 unicodeslot=0x23ED, 70158 variants=variants_emoji, 70159 }, 70160 [0x23EE]={ 70161 category="so", 70162 description="BLACK LEFT-POINTING DOUBLE TRIANGLE WITH VERTICAL BAR", 70163 direction="on", 70164 linebreak="al", 70165 unicodeslot=0x23EE, 70166 variants=variants_emoji, 70167 }, 70168 [0x23EF]={ 70169 category="so", 70170 description="BLACK RIGHT-POINTING TRIANGLE WITH DOUBLE VERTICAL BAR", 70171 direction="on", 70172 linebreak="al", 70173 unicodeslot=0x23EF, 70174 variants=variants_emoji, 70175 }, 70176 [0x23F0]={ 70177 category="so", 70178 cjkwd="w", 70179 description="ALARM CLOCK", 70180 direction="on", 70181 linebreak="id", 70182 unicodeslot=0x23F0, 70183 }, 70184 [0x23F1]={ 70185 category="so", 70186 description="STOPWATCH", 70187 direction="on", 70188 linebreak="id", 70189 unicodeslot=0x23F1, 70190 variants=variants_emoji, 70191 }, 70192 [0x23F2]={ 70193 category="so", 70194 description="TIMER CLOCK", 70195 direction="on", 70196 linebreak="id", 70197 unicodeslot=0x23F2, 70198 variants=variants_emoji, 70199 }, 70200 [0x23F3]={ 70201 category="so", 70202 cjkwd="w", 70203 description="HOURGLASS WITH FLOWING SAND", 70204 direction="on", 70205 linebreak="id", 70206 unicodeslot=0x23F3, 70207 }, 70208 [0x23F4]={ 70209 category="so", 70210 description="BLACK MEDIUM LEFT-POINTING TRIANGLE", 70211 direction="on", 70212 linebreak="al", 70213 synonyms={ "reverse play" }, 70214 unicodeslot=0x23F4, 70215 }, 70216 [0x23F5]={ 70217 category="so", 70218 description="BLACK MEDIUM RIGHT-POINTING TRIANGLE", 70219 direction="on", 70220 linebreak="al", 70221 synonyms={ "forward play" }, 70222 unicodeslot=0x23F5, 70223 }, 70224 [0x23F6]={ 70225 category="so", 70226 description="BLACK MEDIUM UP-POINTING TRIANGLE", 70227 direction="on", 70228 linebreak="al", 70229 synonyms={ "increase" }, 70230 unicodeslot=0x23F6, 70231 }, 70232 [0x23F7]={ 70233 category="so", 70234 description="BLACK MEDIUM DOWN-POINTING TRIANGLE", 70235 direction="on", 70236 linebreak="al", 70237 synonyms={ "decrease" }, 70238 unicodeslot=0x23F7, 70239 }, 70240 [0x23F8]={ 70241 category="so", 70242 description="DOUBLE VERTICAL BAR", 70243 direction="on", 70244 linebreak="al", 70245 synonyms={ "pause play" }, 70246 unicodeslot=0x23F8, 70247 variants=variants_emoji, 70248 }, 70249 [0x23F9]={ 70250 category="so", 70251 description="BLACK SQUARE FOR STOP", 70252 direction="on", 70253 linebreak="al", 70254 synonyms={ "stop play" }, 70255 unicodeslot=0x23F9, 70256 variants=variants_emoji, 70257 }, 70258 [0x23FA]={ 70259 category="so", 70260 description="BLACK CIRCLE FOR RECORD", 70261 direction="on", 70262 linebreak="al", 70263 synonyms={ "record" }, 70264 unicodeslot=0x23FA, 70265 variants=variants_emoji, 70266 }, 70267 [0x23FB]={ 70268 category="so", 70269 description="POWER SYMBOL", 70270 direction="on", 70271 linebreak="al", 70272 unicodeslot=0x23FB, 70273 }, 70274 [0x23FC]={ 70275 category="so", 70276 description="POWER ON-OFF SYMBOL", 70277 direction="on", 70278 linebreak="al", 70279 unicodeslot=0x23FC, 70280 }, 70281 [0x23FD]={ 70282 category="so", 70283 description="POWER ON SYMBOL", 70284 direction="on", 70285 linebreak="al", 70286 unicodeslot=0x23FD, 70287 }, 70288 [0x23FE]={ 70289 category="so", 70290 description="POWER SLEEP SYMBOL", 70291 direction="on", 70292 linebreak="al", 70293 unicodeslot=0x23FE, 70294 }, 70295 [0x23FF]={ 70296 category="so", 70297 description="OBSERVER EYE SYMBOL", 70298 direction="on", 70299 linebreak="al", 70300 unicodeslot=0x23FF, 70301 }, 70302 [0x2400]={ 70303 category="so", 70304 description="SYMBOL FOR NULL", 70305 direction="on", 70306 linebreak="al", 70307 unicodeslot=0x2400, 70308 }, 70309 [0x2401]={ 70310 category="so", 70311 description="SYMBOL FOR START OF HEADING", 70312 direction="on", 70313 linebreak="al", 70314 unicodeslot=0x2401, 70315 }, 70316 [0x2402]={ 70317 category="so", 70318 description="SYMBOL FOR START OF TEXT", 70319 direction="on", 70320 linebreak="al", 70321 unicodeslot=0x2402, 70322 }, 70323 [0x2403]={ 70324 category="so", 70325 description="SYMBOL FOR END OF TEXT", 70326 direction="on", 70327 linebreak="al", 70328 unicodeslot=0x2403, 70329 }, 70330 [0x2404]={ 70331 category="so", 70332 description="SYMBOL FOR END OF TRANSMISSION", 70333 direction="on", 70334 linebreak="al", 70335 unicodeslot=0x2404, 70336 }, 70337 [0x2405]={ 70338 category="so", 70339 description="SYMBOL FOR ENQUIRY", 70340 direction="on", 70341 linebreak="al", 70342 unicodeslot=0x2405, 70343 }, 70344 [0x2406]={ 70345 category="so", 70346 description="SYMBOL FOR ACKNOWLEDGE", 70347 direction="on", 70348 linebreak="al", 70349 unicodeslot=0x2406, 70350 }, 70351 [0x2407]={ 70352 category="so", 70353 description="SYMBOL FOR BELL", 70354 direction="on", 70355 linebreak="al", 70356 unicodeslot=0x2407, 70357 }, 70358 [0x2408]={ 70359 category="so", 70360 description="SYMBOL FOR BACKSPACE", 70361 direction="on", 70362 linebreak="al", 70363 unicodeslot=0x2408, 70364 }, 70365 [0x2409]={ 70366 category="so", 70367 description="SYMBOL FOR HORIZONTAL TABULATION", 70368 direction="on", 70369 linebreak="al", 70370 unicodeslot=0x2409, 70371 }, 70372 [0x240A]={ 70373 category="so", 70374 description="SYMBOL FOR LINE FEED", 70375 direction="on", 70376 linebreak="al", 70377 unicodeslot=0x240A, 70378 }, 70379 [0x240B]={ 70380 category="so", 70381 description="SYMBOL FOR VERTICAL TABULATION", 70382 direction="on", 70383 linebreak="al", 70384 unicodeslot=0x240B, 70385 }, 70386 [0x240C]={ 70387 category="so", 70388 description="SYMBOL FOR FORM FEED", 70389 direction="on", 70390 linebreak="al", 70391 unicodeslot=0x240C, 70392 }, 70393 [0x240D]={ 70394 category="so", 70395 description="SYMBOL FOR CARRIAGE RETURN", 70396 direction="on", 70397 linebreak="al", 70398 unicodeslot=0x240D, 70399 }, 70400 [0x240E]={ 70401 category="so", 70402 description="SYMBOL FOR SHIFT OUT", 70403 direction="on", 70404 linebreak="al", 70405 unicodeslot=0x240E, 70406 }, 70407 [0x240F]={ 70408 category="so", 70409 description="SYMBOL FOR SHIFT IN", 70410 direction="on", 70411 linebreak="al", 70412 unicodeslot=0x240F, 70413 }, 70414 [0x2410]={ 70415 category="so", 70416 description="SYMBOL FOR DATA LINK ESCAPE", 70417 direction="on", 70418 linebreak="al", 70419 unicodeslot=0x2410, 70420 }, 70421 [0x2411]={ 70422 category="so", 70423 description="SYMBOL FOR DEVICE CONTROL ONE", 70424 direction="on", 70425 linebreak="al", 70426 unicodeslot=0x2411, 70427 }, 70428 [0x2412]={ 70429 category="so", 70430 description="SYMBOL FOR DEVICE CONTROL TWO", 70431 direction="on", 70432 linebreak="al", 70433 unicodeslot=0x2412, 70434 }, 70435 [0x2413]={ 70436 category="so", 70437 description="SYMBOL FOR DEVICE CONTROL THREE", 70438 direction="on", 70439 linebreak="al", 70440 unicodeslot=0x2413, 70441 }, 70442 [0x2414]={ 70443 category="so", 70444 description="SYMBOL FOR DEVICE CONTROL FOUR", 70445 direction="on", 70446 linebreak="al", 70447 unicodeslot=0x2414, 70448 }, 70449 [0x2415]={ 70450 category="so", 70451 description="SYMBOL FOR NEGATIVE ACKNOWLEDGE", 70452 direction="on", 70453 linebreak="al", 70454 unicodeslot=0x2415, 70455 }, 70456 [0x2416]={ 70457 category="so", 70458 description="SYMBOL FOR SYNCHRONOUS IDLE", 70459 direction="on", 70460 linebreak="al", 70461 unicodeslot=0x2416, 70462 }, 70463 [0x2417]={ 70464 category="so", 70465 description="SYMBOL FOR END OF TRANSMISSION BLOCK", 70466 direction="on", 70467 linebreak="al", 70468 unicodeslot=0x2417, 70469 }, 70470 [0x2418]={ 70471 category="so", 70472 description="SYMBOL FOR CANCEL", 70473 direction="on", 70474 linebreak="al", 70475 unicodeslot=0x2418, 70476 }, 70477 [0x2419]={ 70478 category="so", 70479 description="SYMBOL FOR END OF MEDIUM", 70480 direction="on", 70481 linebreak="al", 70482 unicodeslot=0x2419, 70483 }, 70484 [0x241A]={ 70485 category="so", 70486 description="SYMBOL FOR SUBSTITUTE", 70487 direction="on", 70488 linebreak="al", 70489 unicodeslot=0x241A, 70490 }, 70491 [0x241B]={ 70492 category="so", 70493 description="SYMBOL FOR ESCAPE", 70494 direction="on", 70495 linebreak="al", 70496 unicodeslot=0x241B, 70497 }, 70498 [0x241C]={ 70499 category="so", 70500 description="SYMBOL FOR FILE SEPARATOR", 70501 direction="on", 70502 linebreak="al", 70503 unicodeslot=0x241C, 70504 }, 70505 [0x241D]={ 70506 category="so", 70507 description="SYMBOL FOR GROUP SEPARATOR", 70508 direction="on", 70509 linebreak="al", 70510 unicodeslot=0x241D, 70511 }, 70512 [0x241E]={ 70513 category="so", 70514 description="SYMBOL FOR RECORD SEPARATOR", 70515 direction="on", 70516 linebreak="al", 70517 unicodeslot=0x241E, 70518 }, 70519 [0x241F]={ 70520 category="so", 70521 description="SYMBOL FOR UNIT SEPARATOR", 70522 direction="on", 70523 linebreak="al", 70524 unicodeslot=0x241F, 70525 }, 70526 [0x2420]={ 70527 category="so", 70528 description="SYMBOL FOR SPACE", 70529 direction="on", 70530 linebreak="al", 70531 unicodeslot=0x2420, 70532 }, 70533 [0x2421]={ 70534 category="so", 70535 description="SYMBOL FOR DELETE", 70536 direction="on", 70537 linebreak="al", 70538 unicodeslot=0x2421, 70539 }, 70540 [0x2422]={ 70541 category="so", 70542 description="BLANK SYMBOL", 70543 direction="on", 70544 linebreak="al", 70545 unicodeslot=0x2422, 70546 }, 70547 [0x2423]={ 70548 category="so", 70549 contextname="textcontrolspace", 70550 description="OPEN BOX", 70551 direction="on", 70552 linebreak="al", 70553 synonyms={ "graphic for space" }, 70554 unicodeslot=0x2423, 70555 }, 70556 [0x2424]={ 70557 category="so", 70558 description="SYMBOL FOR NEWLINE", 70559 direction="on", 70560 linebreak="al", 70561 unicodeslot=0x2424, 70562 }, 70563 [0x2425]={ 70564 category="so", 70565 description="SYMBOL FOR DELETE FORM TWO", 70566 direction="on", 70567 linebreak="al", 70568 unicodeslot=0x2425, 70569 }, 70570 [0x2426]={ 70571 category="so", 70572 description="SYMBOL FOR SUBSTITUTE FORM TWO", 70573 direction="on", 70574 linebreak="al", 70575 unicodeslot=0x2426, 70576 }, 70577 [0x2427]={ 70578 category="so", 70579 description="SYMBOL FOR DELETE SQUARE CHECKER BOARD FORM", 70580 direction="on", 70581 linebreak="al", 70582 unicodeslot=0x2427, 70583 }, 70584 [0x2428]={ 70585 category="so", 70586 description="SYMBOL FOR DELETE RECTANGULAR CHECKER BOARD FORM", 70587 direction="on", 70588 linebreak="al", 70589 unicodeslot=0x2428, 70590 }, 70591 [0x2429]={ 70592 category="so", 70593 description="SYMBOL FOR DELETE MEDIUM SHADE FORM", 70594 direction="on", 70595 linebreak="al", 70596 unicodeslot=0x2429, 70597 }, 70598 [0x2440]={ 70599 category="so", 70600 description="OCR HOOK", 70601 direction="on", 70602 linebreak="al", 70603 unicodeslot=0x2440, 70604 }, 70605 [0x2441]={ 70606 category="so", 70607 description="OCR CHAIR", 70608 direction="on", 70609 linebreak="al", 70610 unicodeslot=0x2441, 70611 }, 70612 [0x2442]={ 70613 category="so", 70614 description="OCR FORK", 70615 direction="on", 70616 linebreak="al", 70617 unicodeslot=0x2442, 70618 }, 70619 [0x2443]={ 70620 category="so", 70621 description="OCR INVERTED FORK", 70622 direction="on", 70623 linebreak="al", 70624 unicodeslot=0x2443, 70625 }, 70626 [0x2444]={ 70627 category="so", 70628 description="OCR BELT BUCKLE", 70629 direction="on", 70630 linebreak="al", 70631 unicodeslot=0x2444, 70632 }, 70633 [0x2445]={ 70634 category="so", 70635 description="OCR BOW TIE", 70636 direction="on", 70637 linebreak="al", 70638 unicodeslot=0x2445, 70639 }, 70640 [0x2446]={ 70641 category="so", 70642 description="OCR BRANCH BANK IDENTIFICATION", 70643 direction="on", 70644 linebreak="al", 70645 unicodeslot=0x2446, 70646 }, 70647 [0x2447]={ 70648 category="so", 70649 description="OCR AMOUNT OF CHECK", 70650 direction="on", 70651 linebreak="al", 70652 unicodeslot=0x2447, 70653 }, 70654 [0x2448]={ 70655 category="so", 70656 description="OCR DASH", 70657 direction="on", 70658 linebreak="al", 70659 unicodeslot=0x2448, 70660 }, 70661 [0x2449]={ 70662 category="so", 70663 description="OCR CUSTOMER ACCOUNT NUMBER", 70664 direction="on", 70665 linebreak="al", 70666 unicodeslot=0x2449, 70667 }, 70668 [0x244A]={ 70669 category="so", 70670 description="OCR DOUBLE BACKSLASH", 70671 direction="on", 70672 linebreak="al", 70673 unicodeslot=0x244A, 70674 }, 70675 [0x2460]={ 70676 category="no", 70677 cjkwd="a", 70678 description="CIRCLED DIGIT ONE", 70679 direction="on", 70680 linebreak="ai", 70681 specials={ "circle", 0x31 }, 70682 unicodeslot=0x2460, 70683 }, 70684 [0x2461]={ 70685 category="no", 70686 cjkwd="a", 70687 description="CIRCLED DIGIT TWO", 70688 direction="on", 70689 linebreak="ai", 70690 specials={ "circle", 0x32 }, 70691 unicodeslot=0x2461, 70692 }, 70693 [0x2462]={ 70694 category="no", 70695 cjkwd="a", 70696 description="CIRCLED DIGIT THREE", 70697 direction="on", 70698 linebreak="ai", 70699 specials={ "circle", 0x33 }, 70700 unicodeslot=0x2462, 70701 }, 70702 [0x2463]={ 70703 category="no", 70704 cjkwd="a", 70705 description="CIRCLED DIGIT FOUR", 70706 direction="on", 70707 linebreak="ai", 70708 specials={ "circle", 0x34 }, 70709 unicodeslot=0x2463, 70710 }, 70711 [0x2464]={ 70712 category="no", 70713 cjkwd="a", 70714 description="CIRCLED DIGIT FIVE", 70715 direction="on", 70716 linebreak="ai", 70717 specials={ "circle", 0x35 }, 70718 unicodeslot=0x2464, 70719 }, 70720 [0x2465]={ 70721 category="no", 70722 cjkwd="a", 70723 description="CIRCLED DIGIT SIX", 70724 direction="on", 70725 linebreak="ai", 70726 specials={ "circle", 0x36 }, 70727 unicodeslot=0x2465, 70728 }, 70729 [0x2466]={ 70730 category="no", 70731 cjkwd="a", 70732 description="CIRCLED DIGIT SEVEN", 70733 direction="on", 70734 linebreak="ai", 70735 specials={ "circle", 0x37 }, 70736 unicodeslot=0x2466, 70737 }, 70738 [0x2467]={ 70739 category="no", 70740 cjkwd="a", 70741 description="CIRCLED DIGIT EIGHT", 70742 direction="on", 70743 linebreak="ai", 70744 specials={ "circle", 0x38 }, 70745 unicodeslot=0x2467, 70746 }, 70747 [0x2468]={ 70748 category="no", 70749 cjkwd="a", 70750 description="CIRCLED DIGIT NINE", 70751 direction="on", 70752 linebreak="ai", 70753 specials={ "circle", 0x39 }, 70754 unicodeslot=0x2468, 70755 }, 70756 [0x2469]={ 70757 category="no", 70758 cjkwd="a", 70759 description="CIRCLED NUMBER TEN", 70760 direction="on", 70761 linebreak="ai", 70762 specials={ "circle", 0x31, 0x30 }, 70763 unicodeslot=0x2469, 70764 }, 70765 [0x246A]={ 70766 category="no", 70767 cjkwd="a", 70768 description="CIRCLED NUMBER ELEVEN", 70769 direction="on", 70770 linebreak="ai", 70771 specials={ "circle", 0x31, 0x31 }, 70772 unicodeslot=0x246A, 70773 }, 70774 [0x246B]={ 70775 category="no", 70776 cjkwd="a", 70777 description="CIRCLED NUMBER TWELVE", 70778 direction="on", 70779 linebreak="ai", 70780 specials={ "circle", 0x31, 0x32 }, 70781 unicodeslot=0x246B, 70782 }, 70783 [0x246C]={ 70784 category="no", 70785 cjkwd="a", 70786 description="CIRCLED NUMBER THIRTEEN", 70787 direction="on", 70788 linebreak="ai", 70789 specials={ "circle", 0x31, 0x33 }, 70790 unicodeslot=0x246C, 70791 }, 70792 [0x246D]={ 70793 category="no", 70794 cjkwd="a", 70795 description="CIRCLED NUMBER FOURTEEN", 70796 direction="on", 70797 linebreak="ai", 70798 specials={ "circle", 0x31, 0x34 }, 70799 unicodeslot=0x246D, 70800 }, 70801 [0x246E]={ 70802 category="no", 70803 cjkwd="a", 70804 description="CIRCLED NUMBER FIFTEEN", 70805 direction="on", 70806 linebreak="ai", 70807 specials={ "circle", 0x31, 0x35 }, 70808 unicodeslot=0x246E, 70809 }, 70810 [0x246F]={ 70811 category="no", 70812 cjkwd="a", 70813 description="CIRCLED NUMBER SIXTEEN", 70814 direction="on", 70815 linebreak="ai", 70816 specials={ "circle", 0x31, 0x36 }, 70817 unicodeslot=0x246F, 70818 }, 70819 [0x2470]={ 70820 category="no", 70821 cjkwd="a", 70822 description="CIRCLED NUMBER SEVENTEEN", 70823 direction="on", 70824 linebreak="ai", 70825 specials={ "circle", 0x31, 0x37 }, 70826 unicodeslot=0x2470, 70827 }, 70828 [0x2471]={ 70829 category="no", 70830 cjkwd="a", 70831 description="CIRCLED NUMBER EIGHTEEN", 70832 direction="on", 70833 linebreak="ai", 70834 specials={ "circle", 0x31, 0x38 }, 70835 unicodeslot=0x2471, 70836 }, 70837 [0x2472]={ 70838 category="no", 70839 cjkwd="a", 70840 description="CIRCLED NUMBER NINETEEN", 70841 direction="on", 70842 linebreak="ai", 70843 specials={ "circle", 0x31, 0x39 }, 70844 unicodeslot=0x2472, 70845 }, 70846 [0x2473]={ 70847 category="no", 70848 cjkwd="a", 70849 description="CIRCLED NUMBER TWENTY", 70850 direction="on", 70851 linebreak="ai", 70852 specials={ "circle", 0x32, 0x30 }, 70853 unicodeslot=0x2473, 70854 }, 70855 [0x2474]={ 70856 category="no", 70857 cjkwd="a", 70858 description="PARENTHESIZED DIGIT ONE", 70859 direction="on", 70860 linebreak="ai", 70861 specials={ "compat", 0x28, 0x31, 0x29 }, 70862 unicodeslot=0x2474, 70863 }, 70864 [0x2475]={ 70865 category="no", 70866 cjkwd="a", 70867 description="PARENTHESIZED DIGIT TWO", 70868 direction="on", 70869 linebreak="ai", 70870 specials={ "compat", 0x28, 0x32, 0x29 }, 70871 unicodeslot=0x2475, 70872 }, 70873 [0x2476]={ 70874 category="no", 70875 cjkwd="a", 70876 description="PARENTHESIZED DIGIT THREE", 70877 direction="on", 70878 linebreak="ai", 70879 specials={ "compat", 0x28, 0x33, 0x29 }, 70880 unicodeslot=0x2476, 70881 }, 70882 [0x2477]={ 70883 category="no", 70884 cjkwd="a", 70885 description="PARENTHESIZED DIGIT FOUR", 70886 direction="on", 70887 linebreak="ai", 70888 specials={ "compat", 0x28, 0x34, 0x29 }, 70889 unicodeslot=0x2477, 70890 }, 70891 [0x2478]={ 70892 category="no", 70893 cjkwd="a", 70894 description="PARENTHESIZED DIGIT FIVE", 70895 direction="on", 70896 linebreak="ai", 70897 specials={ "compat", 0x28, 0x35, 0x29 }, 70898 unicodeslot=0x2478, 70899 }, 70900 [0x2479]={ 70901 category="no", 70902 cjkwd="a", 70903 description="PARENTHESIZED DIGIT SIX", 70904 direction="on", 70905 linebreak="ai", 70906 specials={ "compat", 0x28, 0x36, 0x29 }, 70907 unicodeslot=0x2479, 70908 }, 70909 [0x247A]={ 70910 category="no", 70911 cjkwd="a", 70912 description="PARENTHESIZED DIGIT SEVEN", 70913 direction="on", 70914 linebreak="ai", 70915 specials={ "compat", 0x28, 0x37, 0x29 }, 70916 unicodeslot=0x247A, 70917 }, 70918 [0x247B]={ 70919 category="no", 70920 cjkwd="a", 70921 description="PARENTHESIZED DIGIT EIGHT", 70922 direction="on", 70923 linebreak="ai", 70924 specials={ "compat", 0x28, 0x38, 0x29 }, 70925 unicodeslot=0x247B, 70926 }, 70927 [0x247C]={ 70928 category="no", 70929 cjkwd="a", 70930 description="PARENTHESIZED DIGIT NINE", 70931 direction="on", 70932 linebreak="ai", 70933 specials={ "compat", 0x28, 0x39, 0x29 }, 70934 unicodeslot=0x247C, 70935 }, 70936 [0x247D]={ 70937 category="no", 70938 cjkwd="a", 70939 description="PARENTHESIZED NUMBER TEN", 70940 direction="on", 70941 linebreak="ai", 70942 specials={ "compat", 0x28, 0x31, 0x30, 0x29 }, 70943 unicodeslot=0x247D, 70944 }, 70945 [0x247E]={ 70946 category="no", 70947 cjkwd="a", 70948 description="PARENTHESIZED NUMBER ELEVEN", 70949 direction="on", 70950 linebreak="ai", 70951 specials={ "compat", 0x28, 0x31, 0x31, 0x29 }, 70952 unicodeslot=0x247E, 70953 }, 70954 [0x247F]={ 70955 category="no", 70956 cjkwd="a", 70957 description="PARENTHESIZED NUMBER TWELVE", 70958 direction="on", 70959 linebreak="ai", 70960 specials={ "compat", 0x28, 0x31, 0x32, 0x29 }, 70961 unicodeslot=0x247F, 70962 }, 70963 [0x2480]={ 70964 category="no", 70965 cjkwd="a", 70966 description="PARENTHESIZED NUMBER THIRTEEN", 70967 direction="on", 70968 linebreak="ai", 70969 specials={ "compat", 0x28, 0x31, 0x33, 0x29 }, 70970 unicodeslot=0x2480, 70971 }, 70972 [0x2481]={ 70973 category="no", 70974 cjkwd="a", 70975 description="PARENTHESIZED NUMBER FOURTEEN", 70976 direction="on", 70977 linebreak="ai", 70978 specials={ "compat", 0x28, 0x31, 0x34, 0x29 }, 70979 unicodeslot=0x2481, 70980 }, 70981 [0x2482]={ 70982 category="no", 70983 cjkwd="a", 70984 description="PARENTHESIZED NUMBER FIFTEEN", 70985 direction="on", 70986 linebreak="ai", 70987 specials={ "compat", 0x28, 0x31, 0x35, 0x29 }, 70988 unicodeslot=0x2482, 70989 }, 70990 [0x2483]={ 70991 category="no", 70992 cjkwd="a", 70993 description="PARENTHESIZED NUMBER SIXTEEN", 70994 direction="on", 70995 linebreak="ai", 70996 specials={ "compat", 0x28, 0x31, 0x36, 0x29 }, 70997 unicodeslot=0x2483, 70998 }, 70999 [0x2484]={ 71000 category="no", 71001 cjkwd="a", 71002 description="PARENTHESIZED NUMBER SEVENTEEN", 71003 direction="on", 71004 linebreak="ai", 71005 specials={ "compat", 0x28, 0x31, 0x37, 0x29 }, 71006 unicodeslot=0x2484, 71007 }, 71008 [0x2485]={ 71009 category="no", 71010 cjkwd="a", 71011 description="PARENTHESIZED NUMBER EIGHTEEN", 71012 direction="on", 71013 linebreak="ai", 71014 specials={ "compat", 0x28, 0x31, 0x38, 0x29 }, 71015 unicodeslot=0x2485, 71016 }, 71017 [0x2486]={ 71018 category="no", 71019 cjkwd="a", 71020 description="PARENTHESIZED NUMBER NINETEEN", 71021 direction="on", 71022 linebreak="ai", 71023 specials={ "compat", 0x28, 0x31, 0x39, 0x29 }, 71024 unicodeslot=0x2486, 71025 }, 71026 [0x2487]={ 71027 category="no", 71028 cjkwd="a", 71029 description="PARENTHESIZED NUMBER TWENTY", 71030 direction="on", 71031 linebreak="ai", 71032 specials={ "compat", 0x28, 0x32, 0x30, 0x29 }, 71033 unicodeslot=0x2487, 71034 }, 71035 [0x2488]={ 71036 category="no", 71037 cjkwd="a", 71038 description="DIGIT ONE FULL STOP", 71039 direction="en", 71040 linebreak="ai", 71041 specials={ "compat", 0x31, 0x2E }, 71042 unicodeslot=0x2488, 71043 }, 71044 [0x2489]={ 71045 category="no", 71046 cjkwd="a", 71047 description="DIGIT TWO FULL STOP", 71048 direction="en", 71049 linebreak="ai", 71050 specials={ "compat", 0x32, 0x2E }, 71051 unicodeslot=0x2489, 71052 }, 71053 [0x248A]={ 71054 category="no", 71055 cjkwd="a", 71056 description="DIGIT THREE FULL STOP", 71057 direction="en", 71058 linebreak="ai", 71059 specials={ "compat", 0x33, 0x2E }, 71060 unicodeslot=0x248A, 71061 }, 71062 [0x248B]={ 71063 category="no", 71064 cjkwd="a", 71065 description="DIGIT FOUR FULL STOP", 71066 direction="en", 71067 linebreak="ai", 71068 specials={ "compat", 0x34, 0x2E }, 71069 unicodeslot=0x248B, 71070 }, 71071 [0x248C]={ 71072 category="no", 71073 cjkwd="a", 71074 description="DIGIT FIVE FULL STOP", 71075 direction="en", 71076 linebreak="ai", 71077 specials={ "compat", 0x35, 0x2E }, 71078 unicodeslot=0x248C, 71079 }, 71080 [0x248D]={ 71081 category="no", 71082 cjkwd="a", 71083 description="DIGIT SIX FULL STOP", 71084 direction="en", 71085 linebreak="ai", 71086 specials={ "compat", 0x36, 0x2E }, 71087 unicodeslot=0x248D, 71088 }, 71089 [0x248E]={ 71090 category="no", 71091 cjkwd="a", 71092 description="DIGIT SEVEN FULL STOP", 71093 direction="en", 71094 linebreak="ai", 71095 specials={ "compat", 0x37, 0x2E }, 71096 unicodeslot=0x248E, 71097 }, 71098 [0x248F]={ 71099 category="no", 71100 cjkwd="a", 71101 description="DIGIT EIGHT FULL STOP", 71102 direction="en", 71103 linebreak="ai", 71104 specials={ "compat", 0x38, 0x2E }, 71105 unicodeslot=0x248F, 71106 }, 71107 [0x2490]={ 71108 category="no", 71109 cjkwd="a", 71110 description="DIGIT NINE FULL STOP", 71111 direction="en", 71112 linebreak="ai", 71113 specials={ "compat", 0x39, 0x2E }, 71114 unicodeslot=0x2490, 71115 }, 71116 [0x2491]={ 71117 category="no", 71118 cjkwd="a", 71119 description="NUMBER TEN FULL STOP", 71120 direction="en", 71121 linebreak="ai", 71122 specials={ "compat", 0x31, 0x30, 0x2E }, 71123 unicodeslot=0x2491, 71124 }, 71125 [0x2492]={ 71126 category="no", 71127 cjkwd="a", 71128 description="NUMBER ELEVEN FULL STOP", 71129 direction="en", 71130 linebreak="ai", 71131 specials={ "compat", 0x31, 0x31, 0x2E }, 71132 unicodeslot=0x2492, 71133 }, 71134 [0x2493]={ 71135 category="no", 71136 cjkwd="a", 71137 description="NUMBER TWELVE FULL STOP", 71138 direction="en", 71139 linebreak="ai", 71140 specials={ "compat", 0x31, 0x32, 0x2E }, 71141 unicodeslot=0x2493, 71142 }, 71143 [0x2494]={ 71144 category="no", 71145 cjkwd="a", 71146 description="NUMBER THIRTEEN FULL STOP", 71147 direction="en", 71148 linebreak="ai", 71149 specials={ "compat", 0x31, 0x33, 0x2E }, 71150 unicodeslot=0x2494, 71151 }, 71152 [0x2495]={ 71153 category="no", 71154 cjkwd="a", 71155 description="NUMBER FOURTEEN FULL STOP", 71156 direction="en", 71157 linebreak="ai", 71158 specials={ "compat", 0x31, 0x34, 0x2E }, 71159 unicodeslot=0x2495, 71160 }, 71161 [0x2496]={ 71162 category="no", 71163 cjkwd="a", 71164 description="NUMBER FIFTEEN FULL STOP", 71165 direction="en", 71166 linebreak="ai", 71167 specials={ "compat", 0x31, 0x35, 0x2E }, 71168 unicodeslot=0x2496, 71169 }, 71170 [0x2497]={ 71171 category="no", 71172 cjkwd="a", 71173 description="NUMBER SIXTEEN FULL STOP", 71174 direction="en", 71175 linebreak="ai", 71176 specials={ "compat", 0x31, 0x36, 0x2E }, 71177 unicodeslot=0x2497, 71178 }, 71179 [0x2498]={ 71180 category="no", 71181 cjkwd="a", 71182 description="NUMBER SEVENTEEN FULL STOP", 71183 direction="en", 71184 linebreak="ai", 71185 specials={ "compat", 0x31, 0x37, 0x2E }, 71186 unicodeslot=0x2498, 71187 }, 71188 [0x2499]={ 71189 category="no", 71190 cjkwd="a", 71191 description="NUMBER EIGHTEEN FULL STOP", 71192 direction="en", 71193 linebreak="ai", 71194 specials={ "compat", 0x31, 0x38, 0x2E }, 71195 unicodeslot=0x2499, 71196 }, 71197 [0x249A]={ 71198 category="no", 71199 cjkwd="a", 71200 description="NUMBER NINETEEN FULL STOP", 71201 direction="en", 71202 linebreak="ai", 71203 specials={ "compat", 0x31, 0x39, 0x2E }, 71204 unicodeslot=0x249A, 71205 }, 71206 [0x249B]={ 71207 category="no", 71208 cjkwd="a", 71209 description="NUMBER TWENTY FULL STOP", 71210 direction="en", 71211 linebreak="ai", 71212 specials={ "compat", 0x32, 0x30, 0x2E }, 71213 unicodeslot=0x249B, 71214 }, 71215 [0x249C]={ 71216 category="so", 71217 cjkwd="a", 71218 description="PARENTHESIZED LATIN SMALL LETTER A", 71219 direction="l", 71220 linebreak="ai", 71221 specials={ "compat", 0x28, 0x61, 0x29 }, 71222 unicodeslot=0x249C, 71223 }, 71224 [0x249D]={ 71225 category="so", 71226 cjkwd="a", 71227 description="PARENTHESIZED LATIN SMALL LETTER B", 71228 direction="l", 71229 linebreak="ai", 71230 specials={ "compat", 0x28, 0x62, 0x29 }, 71231 unicodeslot=0x249D, 71232 }, 71233 [0x249E]={ 71234 category="so", 71235 cjkwd="a", 71236 description="PARENTHESIZED LATIN SMALL LETTER C", 71237 direction="l", 71238 linebreak="ai", 71239 specials={ "compat", 0x28, 0x63, 0x29 }, 71240 unicodeslot=0x249E, 71241 }, 71242 [0x249F]={ 71243 category="so", 71244 cjkwd="a", 71245 description="PARENTHESIZED LATIN SMALL LETTER D", 71246 direction="l", 71247 linebreak="ai", 71248 specials={ "compat", 0x28, 0x64, 0x29 }, 71249 unicodeslot=0x249F, 71250 }, 71251 [0x24A0]={ 71252 category="so", 71253 cjkwd="a", 71254 description="PARENTHESIZED LATIN SMALL LETTER E", 71255 direction="l", 71256 linebreak="ai", 71257 specials={ "compat", 0x28, 0x65, 0x29 }, 71258 unicodeslot=0x24A0, 71259 }, 71260 [0x24A1]={ 71261 category="so", 71262 cjkwd="a", 71263 description="PARENTHESIZED LATIN SMALL LETTER F", 71264 direction="l", 71265 linebreak="ai", 71266 specials={ "compat", 0x28, 0x66, 0x29 }, 71267 unicodeslot=0x24A1, 71268 }, 71269 [0x24A2]={ 71270 category="so", 71271 cjkwd="a", 71272 description="PARENTHESIZED LATIN SMALL LETTER G", 71273 direction="l", 71274 linebreak="ai", 71275 specials={ "compat", 0x28, 0x67, 0x29 }, 71276 unicodeslot=0x24A2, 71277 }, 71278 [0x24A3]={ 71279 category="so", 71280 cjkwd="a", 71281 description="PARENTHESIZED LATIN SMALL LETTER H", 71282 direction="l", 71283 linebreak="ai", 71284 specials={ "compat", 0x28, 0x68, 0x29 }, 71285 unicodeslot=0x24A3, 71286 }, 71287 [0x24A4]={ 71288 category="so", 71289 cjkwd="a", 71290 description="PARENTHESIZED LATIN SMALL LETTER I", 71291 direction="l", 71292 linebreak="ai", 71293 specials={ "compat", 0x28, 0x69, 0x29 }, 71294 unicodeslot=0x24A4, 71295 }, 71296 [0x24A5]={ 71297 category="so", 71298 cjkwd="a", 71299 description="PARENTHESIZED LATIN SMALL LETTER J", 71300 direction="l", 71301 linebreak="ai", 71302 specials={ "compat", 0x28, 0x6A, 0x29 }, 71303 unicodeslot=0x24A5, 71304 }, 71305 [0x24A6]={ 71306 category="so", 71307 cjkwd="a", 71308 description="PARENTHESIZED LATIN SMALL LETTER K", 71309 direction="l", 71310 linebreak="ai", 71311 specials={ "compat", 0x28, 0x6B, 0x29 }, 71312 unicodeslot=0x24A6, 71313 }, 71314 [0x24A7]={ 71315 category="so", 71316 cjkwd="a", 71317 description="PARENTHESIZED LATIN SMALL LETTER L", 71318 direction="l", 71319 linebreak="ai", 71320 specials={ "compat", 0x28, 0x6C, 0x29 }, 71321 unicodeslot=0x24A7, 71322 }, 71323 [0x24A8]={ 71324 category="so", 71325 cjkwd="a", 71326 description="PARENTHESIZED LATIN SMALL LETTER M", 71327 direction="l", 71328 linebreak="ai", 71329 specials={ "compat", 0x28, 0x6D, 0x29 }, 71330 unicodeslot=0x24A8, 71331 }, 71332 [0x24A9]={ 71333 category="so", 71334 cjkwd="a", 71335 description="PARENTHESIZED LATIN SMALL LETTER N", 71336 direction="l", 71337 linebreak="ai", 71338 specials={ "compat", 0x28, 0x6E, 0x29 }, 71339 unicodeslot=0x24A9, 71340 }, 71341 [0x24AA]={ 71342 category="so", 71343 cjkwd="a", 71344 description="PARENTHESIZED LATIN SMALL LETTER O", 71345 direction="l", 71346 linebreak="ai", 71347 specials={ "compat", 0x28, 0x6F, 0x29 }, 71348 unicodeslot=0x24AA, 71349 }, 71350 [0x24AB]={ 71351 category="so", 71352 cjkwd="a", 71353 description="PARENTHESIZED LATIN SMALL LETTER P", 71354 direction="l", 71355 linebreak="ai", 71356 specials={ "compat", 0x28, 0x70, 0x29 }, 71357 unicodeslot=0x24AB, 71358 }, 71359 [0x24AC]={ 71360 category="so", 71361 cjkwd="a", 71362 description="PARENTHESIZED LATIN SMALL LETTER Q", 71363 direction="l", 71364 linebreak="ai", 71365 specials={ "compat", 0x28, 0x71, 0x29 }, 71366 unicodeslot=0x24AC, 71367 }, 71368 [0x24AD]={ 71369 category="so", 71370 cjkwd="a", 71371 description="PARENTHESIZED LATIN SMALL LETTER R", 71372 direction="l", 71373 linebreak="ai", 71374 specials={ "compat", 0x28, 0x72, 0x29 }, 71375 unicodeslot=0x24AD, 71376 }, 71377 [0x24AE]={ 71378 category="so", 71379 cjkwd="a", 71380 description="PARENTHESIZED LATIN SMALL LETTER S", 71381 direction="l", 71382 linebreak="ai", 71383 specials={ "compat", 0x28, 0x73, 0x29 }, 71384 unicodeslot=0x24AE, 71385 }, 71386 [0x24AF]={ 71387 category="so", 71388 cjkwd="a", 71389 description="PARENTHESIZED LATIN SMALL LETTER T", 71390 direction="l", 71391 linebreak="ai", 71392 specials={ "compat", 0x28, 0x74, 0x29 }, 71393 unicodeslot=0x24AF, 71394 }, 71395 [0x24B0]={ 71396 category="so", 71397 cjkwd="a", 71398 description="PARENTHESIZED LATIN SMALL LETTER U", 71399 direction="l", 71400 linebreak="ai", 71401 specials={ "compat", 0x28, 0x75, 0x29 }, 71402 unicodeslot=0x24B0, 71403 }, 71404 [0x24B1]={ 71405 category="so", 71406 cjkwd="a", 71407 description="PARENTHESIZED LATIN SMALL LETTER V", 71408 direction="l", 71409 linebreak="ai", 71410 specials={ "compat", 0x28, 0x76, 0x29 }, 71411 unicodeslot=0x24B1, 71412 }, 71413 [0x24B2]={ 71414 category="so", 71415 cjkwd="a", 71416 description="PARENTHESIZED LATIN SMALL LETTER W", 71417 direction="l", 71418 linebreak="ai", 71419 specials={ "compat", 0x28, 0x77, 0x29 }, 71420 unicodeslot=0x24B2, 71421 }, 71422 [0x24B3]={ 71423 category="so", 71424 cjkwd="a", 71425 description="PARENTHESIZED LATIN SMALL LETTER X", 71426 direction="l", 71427 linebreak="ai", 71428 specials={ "compat", 0x28, 0x78, 0x29 }, 71429 unicodeslot=0x24B3, 71430 }, 71431 [0x24B4]={ 71432 category="so", 71433 cjkwd="a", 71434 description="PARENTHESIZED LATIN SMALL LETTER Y", 71435 direction="l", 71436 linebreak="ai", 71437 specials={ "compat", 0x28, 0x79, 0x29 }, 71438 unicodeslot=0x24B4, 71439 }, 71440 [0x24B5]={ 71441 category="so", 71442 cjkwd="a", 71443 description="PARENTHESIZED LATIN SMALL LETTER Z", 71444 direction="l", 71445 linebreak="ai", 71446 specials={ "compat", 0x28, 0x7A, 0x29 }, 71447 unicodeslot=0x24B5, 71448 }, 71449 [0x24B6]={ 71450 category="so", 71451 cjkwd="a", 71452 description="CIRCLED LATIN CAPITAL LETTER A", 71453 direction="l", 71454 lccode=0x24D0, 71455 linebreak="ai", 71456 specials={ "circle", 0x41 }, 71457 unicodeslot=0x24B6, 71458 }, 71459 [0x24B7]={ 71460 category="so", 71461 cjkwd="a", 71462 description="CIRCLED LATIN CAPITAL LETTER B", 71463 direction="l", 71464 lccode=0x24D1, 71465 linebreak="ai", 71466 specials={ "circle", 0x42 }, 71467 unicodeslot=0x24B7, 71468 }, 71469 [0x24B8]={ 71470 category="so", 71471 cjkwd="a", 71472 description="CIRCLED LATIN CAPITAL LETTER C", 71473 direction="l", 71474 lccode=0x24D2, 71475 linebreak="ai", 71476 specials={ "circle", 0x43 }, 71477 unicodeslot=0x24B8, 71478 }, 71479 [0x24B9]={ 71480 category="so", 71481 cjkwd="a", 71482 description="CIRCLED LATIN CAPITAL LETTER D", 71483 direction="l", 71484 lccode=0x24D3, 71485 linebreak="ai", 71486 specials={ "circle", 0x44 }, 71487 unicodeslot=0x24B9, 71488 }, 71489 [0x24BA]={ 71490 category="so", 71491 cjkwd="a", 71492 description="CIRCLED LATIN CAPITAL LETTER E", 71493 direction="l", 71494 lccode=0x24D4, 71495 linebreak="ai", 71496 specials={ "circle", 0x45 }, 71497 unicodeslot=0x24BA, 71498 }, 71499 [0x24BB]={ 71500 category="so", 71501 cjkwd="a", 71502 description="CIRCLED LATIN CAPITAL LETTER F", 71503 direction="l", 71504 lccode=0x24D5, 71505 linebreak="ai", 71506 specials={ "circle", 0x46 }, 71507 unicodeslot=0x24BB, 71508 }, 71509 [0x24BC]={ 71510 category="so", 71511 cjkwd="a", 71512 description="CIRCLED LATIN CAPITAL LETTER G", 71513 direction="l", 71514 lccode=0x24D6, 71515 linebreak="ai", 71516 specials={ "circle", 0x47 }, 71517 unicodeslot=0x24BC, 71518 }, 71519 [0x24BD]={ 71520 category="so", 71521 cjkwd="a", 71522 description="CIRCLED LATIN CAPITAL LETTER H", 71523 direction="l", 71524 lccode=0x24D7, 71525 linebreak="ai", 71526 specials={ "circle", 0x48 }, 71527 unicodeslot=0x24BD, 71528 }, 71529 [0x24BE]={ 71530 category="so", 71531 cjkwd="a", 71532 description="CIRCLED LATIN CAPITAL LETTER I", 71533 direction="l", 71534 lccode=0x24D8, 71535 linebreak="ai", 71536 specials={ "circle", 0x49 }, 71537 unicodeslot=0x24BE, 71538 }, 71539 [0x24BF]={ 71540 category="so", 71541 cjkwd="a", 71542 description="CIRCLED LATIN CAPITAL LETTER J", 71543 direction="l", 71544 lccode=0x24D9, 71545 linebreak="ai", 71546 specials={ "circle", 0x4A }, 71547 unicodeslot=0x24BF, 71548 }, 71549 [0x24C0]={ 71550 category="so", 71551 cjkwd="a", 71552 description="CIRCLED LATIN CAPITAL LETTER K", 71553 direction="l", 71554 lccode=0x24DA, 71555 linebreak="ai", 71556 specials={ "circle", 0x4B }, 71557 unicodeslot=0x24C0, 71558 }, 71559 [0x24C1]={ 71560 category="so", 71561 cjkwd="a", 71562 description="CIRCLED LATIN CAPITAL LETTER L", 71563 direction="l", 71564 lccode=0x24DB, 71565 linebreak="ai", 71566 specials={ "circle", 0x4C }, 71567 unicodeslot=0x24C1, 71568 }, 71569 [0x24C2]={ 71570 category="so", 71571 cjkwd="a", 71572 description="CIRCLED LATIN CAPITAL LETTER M", 71573 direction="l", 71574 lccode=0x24DC, 71575 linebreak="ai", 71576 specials={ "circle", 0x4D }, 71577 unicodeslot=0x24C2, 71578 variants=variants_emoji, 71579 }, 71580 [0x24C3]={ 71581 category="so", 71582 cjkwd="a", 71583 description="CIRCLED LATIN CAPITAL LETTER N", 71584 direction="l", 71585 lccode=0x24DD, 71586 linebreak="ai", 71587 specials={ "circle", 0x4E }, 71588 unicodeslot=0x24C3, 71589 }, 71590 [0x24C4]={ 71591 category="so", 71592 cjkwd="a", 71593 description="CIRCLED LATIN CAPITAL LETTER O", 71594 direction="l", 71595 lccode=0x24DE, 71596 linebreak="ai", 71597 specials={ "circle", 0x4F }, 71598 unicodeslot=0x24C4, 71599 }, 71600 [0x24C5]={ 71601 category="so", 71602 cjkwd="a", 71603 description="CIRCLED LATIN CAPITAL LETTER P", 71604 direction="l", 71605 lccode=0x24DF, 71606 linebreak="ai", 71607 specials={ "circle", 0x50 }, 71608 unicodeslot=0x24C5, 71609 }, 71610 [0x24C6]={ 71611 category="so", 71612 cjkwd="a", 71613 description="CIRCLED LATIN CAPITAL LETTER Q", 71614 direction="l", 71615 lccode=0x24E0, 71616 linebreak="ai", 71617 specials={ "circle", 0x51 }, 71618 unicodeslot=0x24C6, 71619 }, 71620 [0x24C7]={ 71621 category="so", 71622 cjkwd="a", 71623 description="CIRCLED LATIN CAPITAL LETTER R", 71624 direction="l", 71625 lccode=0x24E1, 71626 linebreak="ai", 71627 mathclass="ordinary", 71628 mathname="circledR", 71629 specials={ "circle", 0x52 }, 71630 unicodeslot=0x24C7, 71631 }, 71632 [0x24C8]={ 71633 category="so", 71634 cjkwd="a", 71635 description="CIRCLED LATIN CAPITAL LETTER S", 71636 direction="l", 71637 lccode=0x24E2, 71638 linebreak="ai", 71639 mathclass="ordinary", 71640 mathname="circledS", 71641 specials={ "circle", 0x53 }, 71642 unicodeslot=0x24C8, 71643 }, 71644 [0x24C9]={ 71645 category="so", 71646 cjkwd="a", 71647 description="CIRCLED LATIN CAPITAL LETTER T", 71648 direction="l", 71649 lccode=0x24E3, 71650 linebreak="ai", 71651 specials={ "circle", 0x54 }, 71652 unicodeslot=0x24C9, 71653 }, 71654 [0x24CA]={ 71655 category="so", 71656 cjkwd="a", 71657 description="CIRCLED LATIN CAPITAL LETTER U", 71658 direction="l", 71659 lccode=0x24E4, 71660 linebreak="ai", 71661 specials={ "circle", 0x55 }, 71662 unicodeslot=0x24CA, 71663 }, 71664 [0x24CB]={ 71665 category="so", 71666 cjkwd="a", 71667 description="CIRCLED LATIN CAPITAL LETTER V", 71668 direction="l", 71669 lccode=0x24E5, 71670 linebreak="ai", 71671 specials={ "circle", 0x56 }, 71672 unicodeslot=0x24CB, 71673 }, 71674 [0x24CC]={ 71675 category="so", 71676 cjkwd="a", 71677 description="CIRCLED LATIN CAPITAL LETTER W", 71678 direction="l", 71679 lccode=0x24E6, 71680 linebreak="ai", 71681 specials={ "circle", 0x57 }, 71682 unicodeslot=0x24CC, 71683 }, 71684 [0x24CD]={ 71685 category="so", 71686 cjkwd="a", 71687 description="CIRCLED LATIN CAPITAL LETTER X", 71688 direction="l", 71689 lccode=0x24E7, 71690 linebreak="ai", 71691 specials={ "circle", 0x58 }, 71692 unicodeslot=0x24CD, 71693 }, 71694 [0x24CE]={ 71695 category="so", 71696 cjkwd="a", 71697 description="CIRCLED LATIN CAPITAL LETTER Y", 71698 direction="l", 71699 lccode=0x24E8, 71700 linebreak="ai", 71701 specials={ "circle", 0x59 }, 71702 unicodeslot=0x24CE, 71703 }, 71704 [0x24CF]={ 71705 category="so", 71706 cjkwd="a", 71707 description="CIRCLED LATIN CAPITAL LETTER Z", 71708 direction="l", 71709 lccode=0x24E9, 71710 linebreak="ai", 71711 specials={ "circle", 0x5A }, 71712 unicodeslot=0x24CF, 71713 }, 71714 [0x24D0]={ 71715 category="so", 71716 cjkwd="a", 71717 description="CIRCLED LATIN SMALL LETTER A", 71718 direction="l", 71719 linebreak="ai", 71720 specials={ "circle", 0x61 }, 71721 uccode=0x24B6, 71722 unicodeslot=0x24D0, 71723 }, 71724 [0x24D1]={ 71725 category="so", 71726 cjkwd="a", 71727 description="CIRCLED LATIN SMALL LETTER B", 71728 direction="l", 71729 linebreak="ai", 71730 specials={ "circle", 0x62 }, 71731 uccode=0x24B7, 71732 unicodeslot=0x24D1, 71733 }, 71734 [0x24D2]={ 71735 category="so", 71736 cjkwd="a", 71737 description="CIRCLED LATIN SMALL LETTER C", 71738 direction="l", 71739 linebreak="ai", 71740 specials={ "circle", 0x63 }, 71741 uccode=0x24B8, 71742 unicodeslot=0x24D2, 71743 }, 71744 [0x24D3]={ 71745 category="so", 71746 cjkwd="a", 71747 description="CIRCLED LATIN SMALL LETTER D", 71748 direction="l", 71749 linebreak="ai", 71750 specials={ "circle", 0x64 }, 71751 uccode=0x24B9, 71752 unicodeslot=0x24D3, 71753 }, 71754 [0x24D4]={ 71755 category="so", 71756 cjkwd="a", 71757 description="CIRCLED LATIN SMALL LETTER E", 71758 direction="l", 71759 linebreak="ai", 71760 specials={ "circle", 0x65 }, 71761 uccode=0x24BA, 71762 unicodeslot=0x24D4, 71763 }, 71764 [0x24D5]={ 71765 category="so", 71766 cjkwd="a", 71767 description="CIRCLED LATIN SMALL LETTER F", 71768 direction="l", 71769 linebreak="ai", 71770 specials={ "circle", 0x66 }, 71771 uccode=0x24BB, 71772 unicodeslot=0x24D5, 71773 }, 71774 [0x24D6]={ 71775 category="so", 71776 cjkwd="a", 71777 description="CIRCLED LATIN SMALL LETTER G", 71778 direction="l", 71779 linebreak="ai", 71780 specials={ "circle", 0x67 }, 71781 uccode=0x24BC, 71782 unicodeslot=0x24D6, 71783 }, 71784 [0x24D7]={ 71785 category="so", 71786 cjkwd="a", 71787 description="CIRCLED LATIN SMALL LETTER H", 71788 direction="l", 71789 linebreak="ai", 71790 specials={ "circle", 0x68 }, 71791 uccode=0x24BD, 71792 unicodeslot=0x24D7, 71793 }, 71794 [0x24D8]={ 71795 category="so", 71796 cjkwd="a", 71797 description="CIRCLED LATIN SMALL LETTER I", 71798 direction="l", 71799 linebreak="ai", 71800 specials={ "circle", 0x69 }, 71801 uccode=0x24BE, 71802 unicodeslot=0x24D8, 71803 }, 71804 [0x24D9]={ 71805 category="so", 71806 cjkwd="a", 71807 description="CIRCLED LATIN SMALL LETTER J", 71808 direction="l", 71809 linebreak="ai", 71810 specials={ "circle", 0x6A }, 71811 uccode=0x24BF, 71812 unicodeslot=0x24D9, 71813 }, 71814 [0x24DA]={ 71815 category="so", 71816 cjkwd="a", 71817 description="CIRCLED LATIN SMALL LETTER K", 71818 direction="l", 71819 linebreak="ai", 71820 specials={ "circle", 0x6B }, 71821 uccode=0x24C0, 71822 unicodeslot=0x24DA, 71823 }, 71824 [0x24DB]={ 71825 category="so", 71826 cjkwd="a", 71827 description="CIRCLED LATIN SMALL LETTER L", 71828 direction="l", 71829 linebreak="ai", 71830 specials={ "circle", 0x6C }, 71831 uccode=0x24C1, 71832 unicodeslot=0x24DB, 71833 }, 71834 [0x24DC]={ 71835 category="so", 71836 cjkwd="a", 71837 description="CIRCLED LATIN SMALL LETTER M", 71838 direction="l", 71839 linebreak="ai", 71840 specials={ "circle", 0x6D }, 71841 uccode=0x24C2, 71842 unicodeslot=0x24DC, 71843 }, 71844 [0x24DD]={ 71845 category="so", 71846 cjkwd="a", 71847 description="CIRCLED LATIN SMALL LETTER N", 71848 direction="l", 71849 linebreak="ai", 71850 specials={ "circle", 0x6E }, 71851 uccode=0x24C3, 71852 unicodeslot=0x24DD, 71853 }, 71854 [0x24DE]={ 71855 category="so", 71856 cjkwd="a", 71857 description="CIRCLED LATIN SMALL LETTER O", 71858 direction="l", 71859 linebreak="ai", 71860 specials={ "circle", 0x6F }, 71861 uccode=0x24C4, 71862 unicodeslot=0x24DE, 71863 }, 71864 [0x24DF]={ 71865 category="so", 71866 cjkwd="a", 71867 description="CIRCLED LATIN SMALL LETTER P", 71868 direction="l", 71869 linebreak="ai", 71870 specials={ "circle", 0x70 }, 71871 uccode=0x24C5, 71872 unicodeslot=0x24DF, 71873 }, 71874 [0x24E0]={ 71875 category="so", 71876 cjkwd="a", 71877 description="CIRCLED LATIN SMALL LETTER Q", 71878 direction="l", 71879 linebreak="ai", 71880 specials={ "circle", 0x71 }, 71881 uccode=0x24C6, 71882 unicodeslot=0x24E0, 71883 }, 71884 [0x24E1]={ 71885 category="so", 71886 cjkwd="a", 71887 description="CIRCLED LATIN SMALL LETTER R", 71888 direction="l", 71889 linebreak="ai", 71890 specials={ "circle", 0x72 }, 71891 uccode=0x24C7, 71892 unicodeslot=0x24E1, 71893 }, 71894 [0x24E2]={ 71895 category="so", 71896 cjkwd="a", 71897 description="CIRCLED LATIN SMALL LETTER S", 71898 direction="l", 71899 linebreak="ai", 71900 specials={ "circle", 0x73 }, 71901 uccode=0x24C8, 71902 unicodeslot=0x24E2, 71903 }, 71904 [0x24E3]={ 71905 category="so", 71906 cjkwd="a", 71907 description="CIRCLED LATIN SMALL LETTER T", 71908 direction="l", 71909 linebreak="ai", 71910 specials={ "circle", 0x74 }, 71911 uccode=0x24C9, 71912 unicodeslot=0x24E3, 71913 }, 71914 [0x24E4]={ 71915 category="so", 71916 cjkwd="a", 71917 description="CIRCLED LATIN SMALL LETTER U", 71918 direction="l", 71919 linebreak="ai", 71920 specials={ "circle", 0x75 }, 71921 uccode=0x24CA, 71922 unicodeslot=0x24E4, 71923 }, 71924 [0x24E5]={ 71925 category="so", 71926 cjkwd="a", 71927 description="CIRCLED LATIN SMALL LETTER V", 71928 direction="l", 71929 linebreak="ai", 71930 specials={ "circle", 0x76 }, 71931 uccode=0x24CB, 71932 unicodeslot=0x24E5, 71933 }, 71934 [0x24E6]={ 71935 category="so", 71936 cjkwd="a", 71937 description="CIRCLED LATIN SMALL LETTER W", 71938 direction="l", 71939 linebreak="ai", 71940 specials={ "circle", 0x77 }, 71941 uccode=0x24CC, 71942 unicodeslot=0x24E6, 71943 }, 71944 [0x24E7]={ 71945 category="so", 71946 cjkwd="a", 71947 description="CIRCLED LATIN SMALL LETTER X", 71948 direction="l", 71949 linebreak="ai", 71950 specials={ "circle", 0x78 }, 71951 uccode=0x24CD, 71952 unicodeslot=0x24E7, 71953 }, 71954 [0x24E8]={ 71955 category="so", 71956 cjkwd="a", 71957 description="CIRCLED LATIN SMALL LETTER Y", 71958 direction="l", 71959 linebreak="ai", 71960 specials={ "circle", 0x79 }, 71961 uccode=0x24CE, 71962 unicodeslot=0x24E8, 71963 }, 71964 [0x24E9]={ 71965 category="so", 71966 cjkwd="a", 71967 description="CIRCLED LATIN SMALL LETTER Z", 71968 direction="l", 71969 linebreak="ai", 71970 specials={ "circle", 0x7A }, 71971 uccode=0x24CF, 71972 unicodeslot=0x24E9, 71973 }, 71974 [0x24EA]={ 71975 category="no", 71976 description="CIRCLED DIGIT ZERO", 71977 direction="on", 71978 linebreak="ai", 71979 specials={ "circle", 0x30 }, 71980 unicodeslot=0x24EA, 71981 }, 71982 [0x24EB]={ 71983 category="no", 71984 cjkwd="a", 71985 description="NEGATIVE CIRCLED NUMBER ELEVEN", 71986 direction="on", 71987 linebreak="ai", 71988 unicodeslot=0x24EB, 71989 }, 71990 [0x24EC]={ 71991 category="no", 71992 cjkwd="a", 71993 description="NEGATIVE CIRCLED NUMBER TWELVE", 71994 direction="on", 71995 linebreak="ai", 71996 unicodeslot=0x24EC, 71997 }, 71998 [0x24ED]={ 71999 category="no", 72000 cjkwd="a", 72001 description="NEGATIVE CIRCLED NUMBER THIRTEEN", 72002 direction="on", 72003 linebreak="ai", 72004 unicodeslot=0x24ED, 72005 }, 72006 [0x24EE]={ 72007 category="no", 72008 cjkwd="a", 72009 description="NEGATIVE CIRCLED NUMBER FOURTEEN", 72010 direction="on", 72011 linebreak="ai", 72012 unicodeslot=0x24EE, 72013 }, 72014 [0x24EF]={ 72015 category="no", 72016 cjkwd="a", 72017 description="NEGATIVE CIRCLED NUMBER FIFTEEN", 72018 direction="on", 72019 linebreak="ai", 72020 unicodeslot=0x24EF, 72021 }, 72022 [0x24F0]={ 72023 category="no", 72024 cjkwd="a", 72025 description="NEGATIVE CIRCLED NUMBER SIXTEEN", 72026 direction="on", 72027 linebreak="ai", 72028 unicodeslot=0x24F0, 72029 }, 72030 [0x24F1]={ 72031 category="no", 72032 cjkwd="a", 72033 description="NEGATIVE CIRCLED NUMBER SEVENTEEN", 72034 direction="on", 72035 linebreak="ai", 72036 unicodeslot=0x24F1, 72037 }, 72038 [0x24F2]={ 72039 category="no", 72040 cjkwd="a", 72041 description="NEGATIVE CIRCLED NUMBER EIGHTEEN", 72042 direction="on", 72043 linebreak="ai", 72044 unicodeslot=0x24F2, 72045 }, 72046 [0x24F3]={ 72047 category="no", 72048 cjkwd="a", 72049 description="NEGATIVE CIRCLED NUMBER NINETEEN", 72050 direction="on", 72051 linebreak="ai", 72052 unicodeslot=0x24F3, 72053 }, 72054 [0x24F4]={ 72055 category="no", 72056 cjkwd="a", 72057 description="NEGATIVE CIRCLED NUMBER TWENTY", 72058 direction="on", 72059 linebreak="ai", 72060 unicodeslot=0x24F4, 72061 }, 72062 [0x24F5]={ 72063 category="no", 72064 cjkwd="a", 72065 description="DOUBLE CIRCLED DIGIT ONE", 72066 direction="on", 72067 linebreak="ai", 72068 unicodeslot=0x24F5, 72069 }, 72070 [0x24F6]={ 72071 category="no", 72072 cjkwd="a", 72073 description="DOUBLE CIRCLED DIGIT TWO", 72074 direction="on", 72075 linebreak="ai", 72076 unicodeslot=0x24F6, 72077 }, 72078 [0x24F7]={ 72079 category="no", 72080 cjkwd="a", 72081 description="DOUBLE CIRCLED DIGIT THREE", 72082 direction="on", 72083 linebreak="ai", 72084 unicodeslot=0x24F7, 72085 }, 72086 [0x24F8]={ 72087 category="no", 72088 cjkwd="a", 72089 description="DOUBLE CIRCLED DIGIT FOUR", 72090 direction="on", 72091 linebreak="ai", 72092 unicodeslot=0x24F8, 72093 }, 72094 [0x24F9]={ 72095 category="no", 72096 cjkwd="a", 72097 description="DOUBLE CIRCLED DIGIT FIVE", 72098 direction="on", 72099 linebreak="ai", 72100 unicodeslot=0x24F9, 72101 }, 72102 [0x24FA]={ 72103 category="no", 72104 cjkwd="a", 72105 description="DOUBLE CIRCLED DIGIT SIX", 72106 direction="on", 72107 linebreak="ai", 72108 unicodeslot=0x24FA, 72109 }, 72110 [0x24FB]={ 72111 category="no", 72112 cjkwd="a", 72113 description="DOUBLE CIRCLED DIGIT SEVEN", 72114 direction="on", 72115 linebreak="ai", 72116 unicodeslot=0x24FB, 72117 }, 72118 [0x24FC]={ 72119 category="no", 72120 cjkwd="a", 72121 description="DOUBLE CIRCLED DIGIT EIGHT", 72122 direction="on", 72123 linebreak="ai", 72124 unicodeslot=0x24FC, 72125 }, 72126 [0x24FD]={ 72127 category="no", 72128 cjkwd="a", 72129 description="DOUBLE CIRCLED DIGIT NINE", 72130 direction="on", 72131 linebreak="ai", 72132 unicodeslot=0x24FD, 72133 }, 72134 [0x24FE]={ 72135 category="no", 72136 cjkwd="a", 72137 description="DOUBLE CIRCLED NUMBER TEN", 72138 direction="on", 72139 linebreak="ai", 72140 unicodeslot=0x24FE, 72141 }, 72142 [0x24FF]={ 72143 category="no", 72144 cjkwd="a", 72145 description="NEGATIVE CIRCLED DIGIT ZERO", 72146 direction="on", 72147 linebreak="al", 72148 unicodeslot=0x24FF, 72149 }, 72150 [0x2500]={ 72151 category="so", 72152 cjkwd="a", 72153 description="BOX DRAWINGS LIGHT HORIZONTAL", 72154 direction="on", 72155 linebreak="ai", 72156 unicodeslot=0x2500, 72157 }, 72158 [0x2501]={ 72159 category="so", 72160 cjkwd="a", 72161 description="BOX DRAWINGS HEAVY HORIZONTAL", 72162 direction="on", 72163 linebreak="ai", 72164 unicodeslot=0x2501, 72165 }, 72166 [0x2502]={ 72167 category="so", 72168 cjkwd="a", 72169 description="BOX DRAWINGS LIGHT VERTICAL", 72170 direction="on", 72171 linebreak="ai", 72172 unicodeslot=0x2502, 72173 }, 72174 [0x2503]={ 72175 category="so", 72176 cjkwd="a", 72177 description="BOX DRAWINGS HEAVY VERTICAL", 72178 direction="on", 72179 linebreak="ai", 72180 unicodeslot=0x2503, 72181 }, 72182 [0x2504]={ 72183 category="so", 72184 cjkwd="a", 72185 description="BOX DRAWINGS LIGHT TRIPLE DASH HORIZONTAL", 72186 direction="on", 72187 linebreak="ai", 72188 unicodeslot=0x2504, 72189 }, 72190 [0x2505]={ 72191 category="so", 72192 cjkwd="a", 72193 description="BOX DRAWINGS HEAVY TRIPLE DASH HORIZONTAL", 72194 direction="on", 72195 linebreak="ai", 72196 unicodeslot=0x2505, 72197 }, 72198 [0x2506]={ 72199 category="so", 72200 cjkwd="a", 72201 description="BOX DRAWINGS LIGHT TRIPLE DASH VERTICAL", 72202 direction="on", 72203 linebreak="ai", 72204 unicodeslot=0x2506, 72205 }, 72206 [0x2507]={ 72207 category="so", 72208 cjkwd="a", 72209 description="BOX DRAWINGS HEAVY TRIPLE DASH VERTICAL", 72210 direction="on", 72211 linebreak="ai", 72212 unicodeslot=0x2507, 72213 }, 72214 [0x2508]={ 72215 category="so", 72216 cjkwd="a", 72217 description="BOX DRAWINGS LIGHT QUADRUPLE DASH HORIZONTAL", 72218 direction="on", 72219 linebreak="ai", 72220 unicodeslot=0x2508, 72221 }, 72222 [0x2509]={ 72223 category="so", 72224 cjkwd="a", 72225 description="BOX DRAWINGS HEAVY QUADRUPLE DASH HORIZONTAL", 72226 direction="on", 72227 linebreak="ai", 72228 unicodeslot=0x2509, 72229 }, 72230 [0x250A]={ 72231 category="so", 72232 cjkwd="a", 72233 description="BOX DRAWINGS LIGHT QUADRUPLE DASH VERTICAL", 72234 direction="on", 72235 linebreak="ai", 72236 unicodeslot=0x250A, 72237 }, 72238 [0x250B]={ 72239 category="so", 72240 cjkwd="a", 72241 description="BOX DRAWINGS HEAVY QUADRUPLE DASH VERTICAL", 72242 direction="on", 72243 linebreak="ai", 72244 unicodeslot=0x250B, 72245 }, 72246 [0x250C]={ 72247 category="so", 72248 cjkwd="a", 72249 description="BOX DRAWINGS LIGHT DOWN AND RIGHT", 72250 direction="on", 72251 linebreak="ai", 72252 unicodeslot=0x250C, 72253 }, 72254 [0x250D]={ 72255 category="so", 72256 cjkwd="a", 72257 description="BOX DRAWINGS DOWN LIGHT AND RIGHT HEAVY", 72258 direction="on", 72259 linebreak="ai", 72260 unicodeslot=0x250D, 72261 }, 72262 [0x250E]={ 72263 category="so", 72264 cjkwd="a", 72265 description="BOX DRAWINGS DOWN HEAVY AND RIGHT LIGHT", 72266 direction="on", 72267 linebreak="ai", 72268 unicodeslot=0x250E, 72269 }, 72270 [0x250F]={ 72271 category="so", 72272 cjkwd="a", 72273 description="BOX DRAWINGS HEAVY DOWN AND RIGHT", 72274 direction="on", 72275 linebreak="ai", 72276 unicodeslot=0x250F, 72277 }, 72278 [0x2510]={ 72279 category="so", 72280 cjkwd="a", 72281 description="BOX DRAWINGS LIGHT DOWN AND LEFT", 72282 direction="on", 72283 linebreak="ai", 72284 unicodeslot=0x2510, 72285 }, 72286 [0x2511]={ 72287 category="so", 72288 cjkwd="a", 72289 description="BOX DRAWINGS DOWN LIGHT AND LEFT HEAVY", 72290 direction="on", 72291 linebreak="ai", 72292 unicodeslot=0x2511, 72293 }, 72294 [0x2512]={ 72295 category="so", 72296 cjkwd="a", 72297 description="BOX DRAWINGS DOWN HEAVY AND LEFT LIGHT", 72298 direction="on", 72299 linebreak="ai", 72300 unicodeslot=0x2512, 72301 }, 72302 [0x2513]={ 72303 category="so", 72304 cjkwd="a", 72305 description="BOX DRAWINGS HEAVY DOWN AND LEFT", 72306 direction="on", 72307 linebreak="ai", 72308 unicodeslot=0x2513, 72309 }, 72310 [0x2514]={ 72311 category="so", 72312 cjkwd="a", 72313 description="BOX DRAWINGS LIGHT UP AND RIGHT", 72314 direction="on", 72315 linebreak="ai", 72316 unicodeslot=0x2514, 72317 }, 72318 [0x2515]={ 72319 category="so", 72320 cjkwd="a", 72321 description="BOX DRAWINGS UP LIGHT AND RIGHT HEAVY", 72322 direction="on", 72323 linebreak="ai", 72324 unicodeslot=0x2515, 72325 }, 72326 [0x2516]={ 72327 category="so", 72328 cjkwd="a", 72329 description="BOX DRAWINGS UP HEAVY AND RIGHT LIGHT", 72330 direction="on", 72331 linebreak="ai", 72332 unicodeslot=0x2516, 72333 }, 72334 [0x2517]={ 72335 category="so", 72336 cjkwd="a", 72337 description="BOX DRAWINGS HEAVY UP AND RIGHT", 72338 direction="on", 72339 linebreak="ai", 72340 unicodeslot=0x2517, 72341 }, 72342 [0x2518]={ 72343 category="so", 72344 cjkwd="a", 72345 description="BOX DRAWINGS LIGHT UP AND LEFT", 72346 direction="on", 72347 linebreak="ai", 72348 unicodeslot=0x2518, 72349 }, 72350 [0x2519]={ 72351 category="so", 72352 cjkwd="a", 72353 description="BOX DRAWINGS UP LIGHT AND LEFT HEAVY", 72354 direction="on", 72355 linebreak="ai", 72356 unicodeslot=0x2519, 72357 }, 72358 [0x251A]={ 72359 category="so", 72360 cjkwd="a", 72361 description="BOX DRAWINGS UP HEAVY AND LEFT LIGHT", 72362 direction="on", 72363 linebreak="ai", 72364 unicodeslot=0x251A, 72365 }, 72366 [0x251B]={ 72367 category="so", 72368 cjkwd="a", 72369 description="BOX DRAWINGS HEAVY UP AND LEFT", 72370 direction="on", 72371 linebreak="ai", 72372 unicodeslot=0x251B, 72373 }, 72374 [0x251C]={ 72375 category="so", 72376 cjkwd="a", 72377 description="BOX DRAWINGS LIGHT VERTICAL AND RIGHT", 72378 direction="on", 72379 linebreak="ai", 72380 unicodeslot=0x251C, 72381 }, 72382 [0x251D]={ 72383 category="so", 72384 cjkwd="a", 72385 description="BOX DRAWINGS VERTICAL LIGHT AND RIGHT HEAVY", 72386 direction="on", 72387 linebreak="ai", 72388 unicodeslot=0x251D, 72389 }, 72390 [0x251E]={ 72391 category="so", 72392 cjkwd="a", 72393 description="BOX DRAWINGS UP HEAVY AND RIGHT DOWN LIGHT", 72394 direction="on", 72395 linebreak="ai", 72396 unicodeslot=0x251E, 72397 }, 72398 [0x251F]={ 72399 category="so", 72400 cjkwd="a", 72401 description="BOX DRAWINGS DOWN HEAVY AND RIGHT UP LIGHT", 72402 direction="on", 72403 linebreak="ai", 72404 unicodeslot=0x251F, 72405 }, 72406 [0x2520]={ 72407 category="so", 72408 cjkwd="a", 72409 description="BOX DRAWINGS VERTICAL HEAVY AND RIGHT LIGHT", 72410 direction="on", 72411 linebreak="ai", 72412 unicodeslot=0x2520, 72413 }, 72414 [0x2521]={ 72415 category="so", 72416 cjkwd="a", 72417 description="BOX DRAWINGS DOWN LIGHT AND RIGHT UP HEAVY", 72418 direction="on", 72419 linebreak="ai", 72420 unicodeslot=0x2521, 72421 }, 72422 [0x2522]={ 72423 category="so", 72424 cjkwd="a", 72425 description="BOX DRAWINGS UP LIGHT AND RIGHT DOWN HEAVY", 72426 direction="on", 72427 linebreak="ai", 72428 unicodeslot=0x2522, 72429 }, 72430 [0x2523]={ 72431 category="so", 72432 cjkwd="a", 72433 description="BOX DRAWINGS HEAVY VERTICAL AND RIGHT", 72434 direction="on", 72435 linebreak="ai", 72436 unicodeslot=0x2523, 72437 }, 72438 [0x2524]={ 72439 category="so", 72440 cjkwd="a", 72441 description="BOX DRAWINGS LIGHT VERTICAL AND LEFT", 72442 direction="on", 72443 linebreak="ai", 72444 unicodeslot=0x2524, 72445 }, 72446 [0x2525]={ 72447 category="so", 72448 cjkwd="a", 72449 description="BOX DRAWINGS VERTICAL LIGHT AND LEFT HEAVY", 72450 direction="on", 72451 linebreak="ai", 72452 unicodeslot=0x2525, 72453 }, 72454 [0x2526]={ 72455 category="so", 72456 cjkwd="a", 72457 description="BOX DRAWINGS UP HEAVY AND LEFT DOWN LIGHT", 72458 direction="on", 72459 linebreak="ai", 72460 unicodeslot=0x2526, 72461 }, 72462 [0x2527]={ 72463 category="so", 72464 cjkwd="a", 72465 description="BOX DRAWINGS DOWN HEAVY AND LEFT UP LIGHT", 72466 direction="on", 72467 linebreak="ai", 72468 unicodeslot=0x2527, 72469 }, 72470 [0x2528]={ 72471 category="so", 72472 cjkwd="a", 72473 description="BOX DRAWINGS VERTICAL HEAVY AND LEFT LIGHT", 72474 direction="on", 72475 linebreak="ai", 72476 unicodeslot=0x2528, 72477 }, 72478 [0x2529]={ 72479 category="so", 72480 cjkwd="a", 72481 description="BOX DRAWINGS DOWN LIGHT AND LEFT UP HEAVY", 72482 direction="on", 72483 linebreak="ai", 72484 unicodeslot=0x2529, 72485 }, 72486 [0x252A]={ 72487 category="so", 72488 cjkwd="a", 72489 description="BOX DRAWINGS UP LIGHT AND LEFT DOWN HEAVY", 72490 direction="on", 72491 linebreak="ai", 72492 unicodeslot=0x252A, 72493 }, 72494 [0x252B]={ 72495 category="so", 72496 cjkwd="a", 72497 description="BOX DRAWINGS HEAVY VERTICAL AND LEFT", 72498 direction="on", 72499 linebreak="ai", 72500 unicodeslot=0x252B, 72501 }, 72502 [0x252C]={ 72503 category="so", 72504 cjkwd="a", 72505 description="BOX DRAWINGS LIGHT DOWN AND HORIZONTAL", 72506 direction="on", 72507 linebreak="ai", 72508 unicodeslot=0x252C, 72509 }, 72510 [0x252D]={ 72511 category="so", 72512 cjkwd="a", 72513 description="BOX DRAWINGS LEFT HEAVY AND RIGHT DOWN LIGHT", 72514 direction="on", 72515 linebreak="ai", 72516 unicodeslot=0x252D, 72517 }, 72518 [0x252E]={ 72519 category="so", 72520 cjkwd="a", 72521 description="BOX DRAWINGS RIGHT HEAVY AND LEFT DOWN LIGHT", 72522 direction="on", 72523 linebreak="ai", 72524 unicodeslot=0x252E, 72525 }, 72526 [0x252F]={ 72527 category="so", 72528 cjkwd="a", 72529 description="BOX DRAWINGS DOWN LIGHT AND HORIZONTAL HEAVY", 72530 direction="on", 72531 linebreak="ai", 72532 unicodeslot=0x252F, 72533 }, 72534 [0x2530]={ 72535 category="so", 72536 cjkwd="a", 72537 description="BOX DRAWINGS DOWN HEAVY AND HORIZONTAL LIGHT", 72538 direction="on", 72539 linebreak="ai", 72540 unicodeslot=0x2530, 72541 }, 72542 [0x2531]={ 72543 category="so", 72544 cjkwd="a", 72545 description="BOX DRAWINGS RIGHT LIGHT AND LEFT DOWN HEAVY", 72546 direction="on", 72547 linebreak="ai", 72548 unicodeslot=0x2531, 72549 }, 72550 [0x2532]={ 72551 category="so", 72552 cjkwd="a", 72553 description="BOX DRAWINGS LEFT LIGHT AND RIGHT DOWN HEAVY", 72554 direction="on", 72555 linebreak="ai", 72556 unicodeslot=0x2532, 72557 }, 72558 [0x2533]={ 72559 category="so", 72560 cjkwd="a", 72561 description="BOX DRAWINGS HEAVY DOWN AND HORIZONTAL", 72562 direction="on", 72563 linebreak="ai", 72564 unicodeslot=0x2533, 72565 }, 72566 [0x2534]={ 72567 category="so", 72568 cjkwd="a", 72569 description="BOX DRAWINGS LIGHT UP AND HORIZONTAL", 72570 direction="on", 72571 linebreak="ai", 72572 unicodeslot=0x2534, 72573 }, 72574 [0x2535]={ 72575 category="so", 72576 cjkwd="a", 72577 description="BOX DRAWINGS LEFT HEAVY AND RIGHT UP LIGHT", 72578 direction="on", 72579 linebreak="ai", 72580 unicodeslot=0x2535, 72581 }, 72582 [0x2536]={ 72583 category="so", 72584 cjkwd="a", 72585 description="BOX DRAWINGS RIGHT HEAVY AND LEFT UP LIGHT", 72586 direction="on", 72587 linebreak="ai", 72588 unicodeslot=0x2536, 72589 }, 72590 [0x2537]={ 72591 category="so", 72592 cjkwd="a", 72593 description="BOX DRAWINGS UP LIGHT AND HORIZONTAL HEAVY", 72594 direction="on", 72595 linebreak="ai", 72596 unicodeslot=0x2537, 72597 }, 72598 [0x2538]={ 72599 category="so", 72600 cjkwd="a", 72601 description="BOX DRAWINGS UP HEAVY AND HORIZONTAL LIGHT", 72602 direction="on", 72603 linebreak="ai", 72604 unicodeslot=0x2538, 72605 }, 72606 [0x2539]={ 72607 category="so", 72608 cjkwd="a", 72609 description="BOX DRAWINGS RIGHT LIGHT AND LEFT UP HEAVY", 72610 direction="on", 72611 linebreak="ai", 72612 unicodeslot=0x2539, 72613 }, 72614 [0x253A]={ 72615 category="so", 72616 cjkwd="a", 72617 description="BOX DRAWINGS LEFT LIGHT AND RIGHT UP HEAVY", 72618 direction="on", 72619 linebreak="ai", 72620 unicodeslot=0x253A, 72621 }, 72622 [0x253B]={ 72623 category="so", 72624 cjkwd="a", 72625 description="BOX DRAWINGS HEAVY UP AND HORIZONTAL", 72626 direction="on", 72627 linebreak="ai", 72628 unicodeslot=0x253B, 72629 }, 72630 [0x253C]={ 72631 category="so", 72632 cjkwd="a", 72633 description="BOX DRAWINGS LIGHT VERTICAL AND HORIZONTAL", 72634 direction="on", 72635 linebreak="ai", 72636 unicodeslot=0x253C, 72637 }, 72638 [0x253D]={ 72639 category="so", 72640 cjkwd="a", 72641 description="BOX DRAWINGS LEFT HEAVY AND RIGHT VERTICAL LIGHT", 72642 direction="on", 72643 linebreak="ai", 72644 unicodeslot=0x253D, 72645 }, 72646 [0x253E]={ 72647 category="so", 72648 cjkwd="a", 72649 description="BOX DRAWINGS RIGHT HEAVY AND LEFT VERTICAL LIGHT", 72650 direction="on", 72651 linebreak="ai", 72652 unicodeslot=0x253E, 72653 }, 72654 [0x253F]={ 72655 category="so", 72656 cjkwd="a", 72657 description="BOX DRAWINGS VERTICAL LIGHT AND HORIZONTAL HEAVY", 72658 direction="on", 72659 linebreak="ai", 72660 unicodeslot=0x253F, 72661 }, 72662 [0x2540]={ 72663 category="so", 72664 cjkwd="a", 72665 description="BOX DRAWINGS UP HEAVY AND DOWN HORIZONTAL LIGHT", 72666 direction="on", 72667 linebreak="ai", 72668 unicodeslot=0x2540, 72669 }, 72670 [0x2541]={ 72671 category="so", 72672 cjkwd="a", 72673 description="BOX DRAWINGS DOWN HEAVY AND UP HORIZONTAL LIGHT", 72674 direction="on", 72675 linebreak="ai", 72676 unicodeslot=0x2541, 72677 }, 72678 [0x2542]={ 72679 category="so", 72680 cjkwd="a", 72681 description="BOX DRAWINGS VERTICAL HEAVY AND HORIZONTAL LIGHT", 72682 direction="on", 72683 linebreak="ai", 72684 unicodeslot=0x2542, 72685 }, 72686 [0x2543]={ 72687 category="so", 72688 cjkwd="a", 72689 description="BOX DRAWINGS LEFT UP HEAVY AND RIGHT DOWN LIGHT", 72690 direction="on", 72691 linebreak="ai", 72692 unicodeslot=0x2543, 72693 }, 72694 [0x2544]={ 72695 category="so", 72696 cjkwd="a", 72697 description="BOX DRAWINGS RIGHT UP HEAVY AND LEFT DOWN LIGHT", 72698 direction="on", 72699 linebreak="ai", 72700 unicodeslot=0x2544, 72701 }, 72702 [0x2545]={ 72703 category="so", 72704 cjkwd="a", 72705 description="BOX DRAWINGS LEFT DOWN HEAVY AND RIGHT UP LIGHT", 72706 direction="on", 72707 linebreak="ai", 72708 unicodeslot=0x2545, 72709 }, 72710 [0x2546]={ 72711 category="so", 72712 cjkwd="a", 72713 description="BOX DRAWINGS RIGHT DOWN HEAVY AND LEFT UP LIGHT", 72714 direction="on", 72715 linebreak="ai", 72716 unicodeslot=0x2546, 72717 }, 72718 [0x2547]={ 72719 category="so", 72720 cjkwd="a", 72721 description="BOX DRAWINGS DOWN LIGHT AND UP HORIZONTAL HEAVY", 72722 direction="on", 72723 linebreak="ai", 72724 unicodeslot=0x2547, 72725 }, 72726 [0x2548]={ 72727 category="so", 72728 cjkwd="a", 72729 description="BOX DRAWINGS UP LIGHT AND DOWN HORIZONTAL HEAVY", 72730 direction="on", 72731 linebreak="ai", 72732 unicodeslot=0x2548, 72733 }, 72734 [0x2549]={ 72735 category="so", 72736 cjkwd="a", 72737 description="BOX DRAWINGS RIGHT LIGHT AND LEFT VERTICAL HEAVY", 72738 direction="on", 72739 linebreak="ai", 72740 unicodeslot=0x2549, 72741 }, 72742 [0x254A]={ 72743 category="so", 72744 cjkwd="a", 72745 description="BOX DRAWINGS LEFT LIGHT AND RIGHT VERTICAL HEAVY", 72746 direction="on", 72747 linebreak="ai", 72748 unicodeslot=0x254A, 72749 }, 72750 [0x254B]={ 72751 category="so", 72752 cjkwd="a", 72753 description="BOX DRAWINGS HEAVY VERTICAL AND HORIZONTAL", 72754 direction="on", 72755 linebreak="ai", 72756 unicodeslot=0x254B, 72757 }, 72758 [0x254C]={ 72759 category="so", 72760 description="BOX DRAWINGS LIGHT DOUBLE DASH HORIZONTAL", 72761 direction="on", 72762 linebreak="al", 72763 unicodeslot=0x254C, 72764 }, 72765 [0x254D]={ 72766 category="so", 72767 description="BOX DRAWINGS HEAVY DOUBLE DASH HORIZONTAL", 72768 direction="on", 72769 linebreak="al", 72770 unicodeslot=0x254D, 72771 }, 72772 [0x254E]={ 72773 category="so", 72774 description="BOX DRAWINGS LIGHT DOUBLE DASH VERTICAL", 72775 direction="on", 72776 linebreak="al", 72777 unicodeslot=0x254E, 72778 }, 72779 [0x254F]={ 72780 category="so", 72781 description="BOX DRAWINGS HEAVY DOUBLE DASH VERTICAL", 72782 direction="on", 72783 linebreak="al", 72784 unicodeslot=0x254F, 72785 }, 72786 [0x2550]={ 72787 category="so", 72788 cjkwd="a", 72789 description="BOX DRAWINGS DOUBLE HORIZONTAL", 72790 direction="on", 72791 linebreak="ai", 72792 unicodeslot=0x2550, 72793 }, 72794 [0x2551]={ 72795 category="so", 72796 cjkwd="a", 72797 description="BOX DRAWINGS DOUBLE VERTICAL", 72798 direction="on", 72799 linebreak="ai", 72800 unicodeslot=0x2551, 72801 }, 72802 [0x2552]={ 72803 category="so", 72804 cjkwd="a", 72805 description="BOX DRAWINGS DOWN SINGLE AND RIGHT DOUBLE", 72806 direction="on", 72807 linebreak="ai", 72808 unicodeslot=0x2552, 72809 }, 72810 [0x2553]={ 72811 category="so", 72812 cjkwd="a", 72813 description="BOX DRAWINGS DOWN DOUBLE AND RIGHT SINGLE", 72814 direction="on", 72815 linebreak="ai", 72816 unicodeslot=0x2553, 72817 }, 72818 [0x2554]={ 72819 category="so", 72820 cjkwd="a", 72821 description="BOX DRAWINGS DOUBLE DOWN AND RIGHT", 72822 direction="on", 72823 linebreak="ai", 72824 unicodeslot=0x2554, 72825 }, 72826 [0x2555]={ 72827 category="so", 72828 cjkwd="a", 72829 description="BOX DRAWINGS DOWN SINGLE AND LEFT DOUBLE", 72830 direction="on", 72831 linebreak="ai", 72832 unicodeslot=0x2555, 72833 }, 72834 [0x2556]={ 72835 category="so", 72836 cjkwd="a", 72837 description="BOX DRAWINGS DOWN DOUBLE AND LEFT SINGLE", 72838 direction="on", 72839 linebreak="ai", 72840 unicodeslot=0x2556, 72841 }, 72842 [0x2557]={ 72843 category="so", 72844 cjkwd="a", 72845 description="BOX DRAWINGS DOUBLE DOWN AND LEFT", 72846 direction="on", 72847 linebreak="ai", 72848 unicodeslot=0x2557, 72849 }, 72850 [0x2558]={ 72851 category="so", 72852 cjkwd="a", 72853 description="BOX DRAWINGS UP SINGLE AND RIGHT DOUBLE", 72854 direction="on", 72855 linebreak="ai", 72856 unicodeslot=0x2558, 72857 }, 72858 [0x2559]={ 72859 category="so", 72860 cjkwd="a", 72861 description="BOX DRAWINGS UP DOUBLE AND RIGHT SINGLE", 72862 direction="on", 72863 linebreak="ai", 72864 unicodeslot=0x2559, 72865 }, 72866 [0x255A]={ 72867 category="so", 72868 cjkwd="a", 72869 description="BOX DRAWINGS DOUBLE UP AND RIGHT", 72870 direction="on", 72871 linebreak="ai", 72872 unicodeslot=0x255A, 72873 }, 72874 [0x255B]={ 72875 category="so", 72876 cjkwd="a", 72877 description="BOX DRAWINGS UP SINGLE AND LEFT DOUBLE", 72878 direction="on", 72879 linebreak="ai", 72880 unicodeslot=0x255B, 72881 }, 72882 [0x255C]={ 72883 category="so", 72884 cjkwd="a", 72885 description="BOX DRAWINGS UP DOUBLE AND LEFT SINGLE", 72886 direction="on", 72887 linebreak="ai", 72888 unicodeslot=0x255C, 72889 }, 72890 [0x255D]={ 72891 category="so", 72892 cjkwd="a", 72893 description="BOX DRAWINGS DOUBLE UP AND LEFT", 72894 direction="on", 72895 linebreak="ai", 72896 unicodeslot=0x255D, 72897 }, 72898 [0x255E]={ 72899 category="so", 72900 cjkwd="a", 72901 description="BOX DRAWINGS VERTICAL SINGLE AND RIGHT DOUBLE", 72902 direction="on", 72903 linebreak="ai", 72904 unicodeslot=0x255E, 72905 }, 72906 [0x255F]={ 72907 category="so", 72908 cjkwd="a", 72909 description="BOX DRAWINGS VERTICAL DOUBLE AND RIGHT SINGLE", 72910 direction="on", 72911 linebreak="ai", 72912 unicodeslot=0x255F, 72913 }, 72914 [0x2560]={ 72915 category="so", 72916 cjkwd="a", 72917 description="BOX DRAWINGS DOUBLE VERTICAL AND RIGHT", 72918 direction="on", 72919 linebreak="ai", 72920 unicodeslot=0x2560, 72921 }, 72922 [0x2561]={ 72923 category="so", 72924 cjkwd="a", 72925 description="BOX DRAWINGS VERTICAL SINGLE AND LEFT DOUBLE", 72926 direction="on", 72927 linebreak="ai", 72928 unicodeslot=0x2561, 72929 }, 72930 [0x2562]={ 72931 category="so", 72932 cjkwd="a", 72933 description="BOX DRAWINGS VERTICAL DOUBLE AND LEFT SINGLE", 72934 direction="on", 72935 linebreak="ai", 72936 unicodeslot=0x2562, 72937 }, 72938 [0x2563]={ 72939 category="so", 72940 cjkwd="a", 72941 description="BOX DRAWINGS DOUBLE VERTICAL AND LEFT", 72942 direction="on", 72943 linebreak="ai", 72944 unicodeslot=0x2563, 72945 }, 72946 [0x2564]={ 72947 category="so", 72948 cjkwd="a", 72949 description="BOX DRAWINGS DOWN SINGLE AND HORIZONTAL DOUBLE", 72950 direction="on", 72951 linebreak="ai", 72952 unicodeslot=0x2564, 72953 }, 72954 [0x2565]={ 72955 category="so", 72956 cjkwd="a", 72957 description="BOX DRAWINGS DOWN DOUBLE AND HORIZONTAL SINGLE", 72958 direction="on", 72959 linebreak="ai", 72960 unicodeslot=0x2565, 72961 }, 72962 [0x2566]={ 72963 category="so", 72964 cjkwd="a", 72965 description="BOX DRAWINGS DOUBLE DOWN AND HORIZONTAL", 72966 direction="on", 72967 linebreak="ai", 72968 unicodeslot=0x2566, 72969 }, 72970 [0x2567]={ 72971 category="so", 72972 cjkwd="a", 72973 description="BOX DRAWINGS UP SINGLE AND HORIZONTAL DOUBLE", 72974 direction="on", 72975 linebreak="ai", 72976 unicodeslot=0x2567, 72977 }, 72978 [0x2568]={ 72979 category="so", 72980 cjkwd="a", 72981 description="BOX DRAWINGS UP DOUBLE AND HORIZONTAL SINGLE", 72982 direction="on", 72983 linebreak="ai", 72984 unicodeslot=0x2568, 72985 }, 72986 [0x2569]={ 72987 category="so", 72988 cjkwd="a", 72989 description="BOX DRAWINGS DOUBLE UP AND HORIZONTAL", 72990 direction="on", 72991 linebreak="ai", 72992 unicodeslot=0x2569, 72993 }, 72994 [0x256A]={ 72995 category="so", 72996 cjkwd="a", 72997 description="BOX DRAWINGS VERTICAL SINGLE AND HORIZONTAL DOUBLE", 72998 direction="on", 72999 linebreak="ai", 73000 unicodeslot=0x256A, 73001 }, 73002 [0x256B]={ 73003 category="so", 73004 cjkwd="a", 73005 description="BOX DRAWINGS VERTICAL DOUBLE AND HORIZONTAL SINGLE", 73006 direction="on", 73007 linebreak="ai", 73008 unicodeslot=0x256B, 73009 }, 73010 [0x256C]={ 73011 category="so", 73012 cjkwd="a", 73013 description="BOX DRAWINGS DOUBLE VERTICAL AND HORIZONTAL", 73014 direction="on", 73015 linebreak="ai", 73016 unicodeslot=0x256C, 73017 }, 73018 [0x256D]={ 73019 category="so", 73020 cjkwd="a", 73021 description="BOX DRAWINGS LIGHT ARC DOWN AND RIGHT", 73022 direction="on", 73023 linebreak="ai", 73024 unicodeslot=0x256D, 73025 }, 73026 [0x256E]={ 73027 category="so", 73028 cjkwd="a", 73029 description="BOX DRAWINGS LIGHT ARC DOWN AND LEFT", 73030 direction="on", 73031 linebreak="ai", 73032 unicodeslot=0x256E, 73033 }, 73034 [0x256F]={ 73035 category="so", 73036 cjkwd="a", 73037 description="BOX DRAWINGS LIGHT ARC UP AND LEFT", 73038 direction="on", 73039 linebreak="ai", 73040 unicodeslot=0x256F, 73041 }, 73042 [0x2570]={ 73043 category="so", 73044 cjkwd="a", 73045 description="BOX DRAWINGS LIGHT ARC UP AND RIGHT", 73046 direction="on", 73047 linebreak="ai", 73048 unicodeslot=0x2570, 73049 }, 73050 [0x2571]={ 73051 category="so", 73052 cjkwd="a", 73053 description="BOX DRAWINGS LIGHT DIAGONAL UPPER RIGHT TO LOWER LEFT", 73054 direction="on", 73055 linebreak="ai", 73056 unicodeslot=0x2571, 73057 }, 73058 [0x2572]={ 73059 category="so", 73060 cjkwd="a", 73061 description="BOX DRAWINGS LIGHT DIAGONAL UPPER LEFT TO LOWER RIGHT", 73062 direction="on", 73063 linebreak="ai", 73064 unicodeslot=0x2572, 73065 }, 73066 [0x2573]={ 73067 category="so", 73068 cjkwd="a", 73069 description="BOX DRAWINGS LIGHT DIAGONAL CROSS", 73070 direction="on", 73071 linebreak="ai", 73072 unicodeslot=0x2573, 73073 }, 73074 [0x2574]={ 73075 category="so", 73076 description="BOX DRAWINGS LIGHT LEFT", 73077 direction="on", 73078 linebreak="ai", 73079 unicodeslot=0x2574, 73080 }, 73081 [0x2575]={ 73082 category="so", 73083 description="BOX DRAWINGS LIGHT UP", 73084 direction="on", 73085 linebreak="al", 73086 unicodeslot=0x2575, 73087 }, 73088 [0x2576]={ 73089 category="so", 73090 description="BOX DRAWINGS LIGHT RIGHT", 73091 direction="on", 73092 linebreak="al", 73093 unicodeslot=0x2576, 73094 }, 73095 [0x2577]={ 73096 category="so", 73097 description="BOX DRAWINGS LIGHT DOWN", 73098 direction="on", 73099 linebreak="al", 73100 unicodeslot=0x2577, 73101 }, 73102 [0x2578]={ 73103 category="so", 73104 description="BOX DRAWINGS HEAVY LEFT", 73105 direction="on", 73106 linebreak="al", 73107 unicodeslot=0x2578, 73108 }, 73109 [0x2579]={ 73110 category="so", 73111 description="BOX DRAWINGS HEAVY UP", 73112 direction="on", 73113 linebreak="al", 73114 unicodeslot=0x2579, 73115 }, 73116 [0x257A]={ 73117 category="so", 73118 description="BOX DRAWINGS HEAVY RIGHT", 73119 direction="on", 73120 linebreak="al", 73121 unicodeslot=0x257A, 73122 }, 73123 [0x257B]={ 73124 category="so", 73125 description="BOX DRAWINGS HEAVY DOWN", 73126 direction="on", 73127 linebreak="al", 73128 unicodeslot=0x257B, 73129 }, 73130 [0x257C]={ 73131 category="so", 73132 description="BOX DRAWINGS LIGHT LEFT AND HEAVY RIGHT", 73133 direction="on", 73134 linebreak="al", 73135 unicodeslot=0x257C, 73136 }, 73137 [0x257D]={ 73138 category="so", 73139 description="BOX DRAWINGS LIGHT UP AND HEAVY DOWN", 73140 direction="on", 73141 linebreak="al", 73142 unicodeslot=0x257D, 73143 }, 73144 [0x257E]={ 73145 category="so", 73146 description="BOX DRAWINGS HEAVY LEFT AND LIGHT RIGHT", 73147 direction="on", 73148 linebreak="al", 73149 unicodeslot=0x257E, 73150 }, 73151 [0x257F]={ 73152 category="so", 73153 description="BOX DRAWINGS HEAVY UP AND LIGHT DOWN", 73154 direction="on", 73155 linebreak="al", 73156 unicodeslot=0x257F, 73157 }, 73158 [0x2580]={ 73159 category="so", 73160 cjkwd="a", 73161 description="UPPER HALF BLOCK", 73162 direction="on", 73163 linebreak="ai", 73164 unicodeslot=0x2580, 73165 }, 73166 [0x2581]={ 73167 category="so", 73168 cjkwd="a", 73169 description="LOWER ONE EIGHTH BLOCK", 73170 direction="on", 73171 linebreak="ai", 73172 unicodeslot=0x2581, 73173 }, 73174 [0x2582]={ 73175 category="so", 73176 cjkwd="a", 73177 description="LOWER ONE QUARTER BLOCK", 73178 direction="on", 73179 linebreak="ai", 73180 unicodeslot=0x2582, 73181 }, 73182 [0x2583]={ 73183 category="so", 73184 cjkwd="a", 73185 description="LOWER THREE EIGHTHS BLOCK", 73186 direction="on", 73187 linebreak="ai", 73188 unicodeslot=0x2583, 73189 }, 73190 [0x2584]={ 73191 category="so", 73192 cjkwd="a", 73193 description="LOWER HALF BLOCK", 73194 direction="on", 73195 linebreak="ai", 73196 unicodeslot=0x2584, 73197 }, 73198 [0x2585]={ 73199 category="so", 73200 cjkwd="a", 73201 description="LOWER FIVE EIGHTHS BLOCK", 73202 direction="on", 73203 linebreak="ai", 73204 unicodeslot=0x2585, 73205 }, 73206 [0x2586]={ 73207 category="so", 73208 cjkwd="a", 73209 description="LOWER THREE QUARTERS BLOCK", 73210 direction="on", 73211 linebreak="ai", 73212 unicodeslot=0x2586, 73213 }, 73214 [0x2587]={ 73215 category="so", 73216 cjkwd="a", 73217 description="LOWER SEVEN EIGHTHS BLOCK", 73218 direction="on", 73219 linebreak="ai", 73220 unicodeslot=0x2587, 73221 }, 73222 [0x2588]={ 73223 category="so", 73224 cjkwd="a", 73225 description="FULL BLOCK", 73226 direction="on", 73227 linebreak="ai", 73228 synonyms={ "solid" }, 73229 unicodeslot=0x2588, 73230 }, 73231 [0x2589]={ 73232 category="so", 73233 cjkwd="a", 73234 description="LEFT SEVEN EIGHTHS BLOCK", 73235 direction="on", 73236 linebreak="ai", 73237 unicodeslot=0x2589, 73238 }, 73239 [0x258A]={ 73240 category="so", 73241 cjkwd="a", 73242 description="LEFT THREE QUARTERS BLOCK", 73243 direction="on", 73244 linebreak="ai", 73245 unicodeslot=0x258A, 73246 }, 73247 [0x258B]={ 73248 category="so", 73249 cjkwd="a", 73250 description="LEFT FIVE EIGHTHS BLOCK", 73251 direction="on", 73252 linebreak="ai", 73253 unicodeslot=0x258B, 73254 }, 73255 [0x258C]={ 73256 category="so", 73257 cjkwd="a", 73258 description="LEFT HALF BLOCK", 73259 direction="on", 73260 linebreak="ai", 73261 unicodeslot=0x258C, 73262 }, 73263 [0x258D]={ 73264 category="so", 73265 cjkwd="a", 73266 description="LEFT THREE EIGHTHS BLOCK", 73267 direction="on", 73268 linebreak="ai", 73269 unicodeslot=0x258D, 73270 }, 73271 [0x258E]={ 73272 category="so", 73273 cjkwd="a", 73274 description="LEFT ONE QUARTER BLOCK", 73275 direction="on", 73276 linebreak="ai", 73277 unicodeslot=0x258E, 73278 }, 73279 [0x258F]={ 73280 category="so", 73281 cjkwd="a", 73282 description="LEFT ONE EIGHTH BLOCK", 73283 direction="on", 73284 linebreak="ai", 73285 unicodeslot=0x258F, 73286 }, 73287 [0x2590]={ 73288 category="so", 73289 description="RIGHT HALF BLOCK", 73290 direction="on", 73291 linebreak="al", 73292 unicodeslot=0x2590, 73293 }, 73294 [0x2591]={ 73295 category="so", 73296 description="LIGHT SHADE", 73297 direction="on", 73298 linebreak="al", 73299 unicodeslot=0x2591, 73300 }, 73301 [0x2592]={ 73302 category="so", 73303 cjkwd="a", 73304 description="MEDIUM SHADE", 73305 direction="on", 73306 linebreak="ai", 73307 unicodeslot=0x2592, 73308 }, 73309 [0x2593]={ 73310 category="so", 73311 cjkwd="a", 73312 description="DARK SHADE", 73313 direction="on", 73314 linebreak="ai", 73315 unicodeslot=0x2593, 73316 }, 73317 [0x2594]={ 73318 category="so", 73319 cjkwd="a", 73320 description="UPPER ONE EIGHTH BLOCK", 73321 direction="on", 73322 linebreak="ai", 73323 unicodeslot=0x2594, 73324 }, 73325 [0x2595]={ 73326 category="so", 73327 cjkwd="a", 73328 description="RIGHT ONE EIGHTH BLOCK", 73329 direction="on", 73330 linebreak="ai", 73331 unicodeslot=0x2595, 73332 }, 73333 [0x2596]={ 73334 category="so", 73335 description="QUADRANT LOWER LEFT", 73336 direction="on", 73337 linebreak="al", 73338 unicodeslot=0x2596, 73339 }, 73340 [0x2597]={ 73341 category="so", 73342 description="QUADRANT LOWER RIGHT", 73343 direction="on", 73344 linebreak="al", 73345 unicodeslot=0x2597, 73346 }, 73347 [0x2598]={ 73348 category="so", 73349 description="QUADRANT UPPER LEFT", 73350 direction="on", 73351 linebreak="al", 73352 unicodeslot=0x2598, 73353 }, 73354 [0x2599]={ 73355 category="so", 73356 description="QUADRANT UPPER LEFT AND LOWER LEFT AND LOWER RIGHT", 73357 direction="on", 73358 linebreak="al", 73359 unicodeslot=0x2599, 73360 }, 73361 [0x259A]={ 73362 category="so", 73363 description="QUADRANT UPPER LEFT AND LOWER RIGHT", 73364 direction="on", 73365 linebreak="al", 73366 unicodeslot=0x259A, 73367 }, 73368 [0x259B]={ 73369 category="so", 73370 description="QUADRANT UPPER LEFT AND UPPER RIGHT AND LOWER LEFT", 73371 direction="on", 73372 linebreak="al", 73373 unicodeslot=0x259B, 73374 }, 73375 [0x259C]={ 73376 category="so", 73377 description="QUADRANT UPPER LEFT AND UPPER RIGHT AND LOWER RIGHT", 73378 direction="on", 73379 linebreak="al", 73380 unicodeslot=0x259C, 73381 }, 73382 [0x259D]={ 73383 category="so", 73384 description="QUADRANT UPPER RIGHT", 73385 direction="on", 73386 linebreak="al", 73387 unicodeslot=0x259D, 73388 }, 73389 [0x259E]={ 73390 category="so", 73391 description="QUADRANT UPPER RIGHT AND LOWER LEFT", 73392 direction="on", 73393 linebreak="al", 73394 unicodeslot=0x259E, 73395 }, 73396 [0x259F]={ 73397 category="so", 73398 description="QUADRANT UPPER RIGHT AND LOWER LEFT AND LOWER RIGHT", 73399 direction="on", 73400 linebreak="al", 73401 unicodeslot=0x259F, 73402 }, 73403 [0x25A0]={ 73404 category="so", 73405 cjkwd="a", 73406 description="BLACK SQUARE", 73407 direction="on", 73408 linebreak="ai", 73409 mathclass="ordinary", 73410 mathgroup="whatever", 73411 mathmeaning="Q.E.D.", 73412 mathname="blacksquare", 73413 unicodeslot=0x25A0, 73414 }, 73415 [0x25A1]={ 73416 category="so", 73417 cjkwd="a", 73418 description="WHITE SQUARE", 73419 direction="on", 73420 linebreak="ai", 73421 mathgroup="whatever", 73422 mathmeaning="Q.E.D.", 73423 mathspec={ 73424 { 73425 class="ordinary", 73426 name="square", 73427 }, 73428 { 73429 class="ordinary", 73430 name="Box", 73431 }, 73432 }, 73433 synonyms={ "quadrature" }, 73434 unicodeslot=0x25A1, 73435 }, 73436 [0x25A2]={ 73437 category="so", 73438 description="WHITE SQUARE WITH ROUNDED CORNERS", 73439 direction="on", 73440 linebreak="al", 73441 mathclass="ordinary", 73442 unicodeslot=0x25A2, 73443 }, 73444 [0x25A3]={ 73445 category="so", 73446 cjkwd="a", 73447 description="WHITE SQUARE CONTAINING BLACK SMALL SQUARE", 73448 direction="on", 73449 linebreak="ai", 73450 unicodeslot=0x25A3, 73451 }, 73452 [0x25A4]={ 73453 category="so", 73454 cjkwd="a", 73455 description="SQUARE WITH HORIZONTAL FILL", 73456 direction="on", 73457 linebreak="ai", 73458 unicodeslot=0x25A4, 73459 }, 73460 [0x25A5]={ 73461 category="so", 73462 cjkwd="a", 73463 description="SQUARE WITH VERTICAL FILL", 73464 direction="on", 73465 linebreak="ai", 73466 unicodeslot=0x25A5, 73467 }, 73468 [0x25A6]={ 73469 category="so", 73470 cjkwd="a", 73471 description="SQUARE WITH ORTHOGONAL CROSSHATCH FILL", 73472 direction="on", 73473 linebreak="ai", 73474 unicodeslot=0x25A6, 73475 }, 73476 [0x25A7]={ 73477 category="so", 73478 cjkwd="a", 73479 description="SQUARE WITH UPPER LEFT TO LOWER RIGHT FILL", 73480 direction="on", 73481 linebreak="ai", 73482 unicodeslot=0x25A7, 73483 }, 73484 [0x25A8]={ 73485 category="so", 73486 cjkwd="a", 73487 description="SQUARE WITH UPPER RIGHT TO LOWER LEFT FILL", 73488 direction="on", 73489 linebreak="ai", 73490 unicodeslot=0x25A8, 73491 }, 73492 [0x25A9]={ 73493 category="so", 73494 cjkwd="a", 73495 description="SQUARE WITH DIAGONAL CROSSHATCH FILL", 73496 direction="on", 73497 linebreak="ai", 73498 unicodeslot=0x25A9, 73499 }, 73500 [0x25AA]={ 73501 category="so", 73502 description="BLACK SMALL SQUARE", 73503 direction="on", 73504 linebreak="al", 73505 unicodeslot=0x25AA, 73506 variants=variants_emoji, 73507 }, 73508 [0x25AB]={ 73509 category="so", 73510 description="WHITE SMALL SQUARE", 73511 direction="on", 73512 linebreak="al", 73513 unicodeslot=0x25AB, 73514 variants=variants_emoji, 73515 }, 73516 [0x25AC]={ 73517 category="so", 73518 description="BLACK RECTANGLE", 73519 direction="on", 73520 linebreak="al", 73521 unicodeslot=0x25AC, 73522 }, 73523 [0x25AD]={ 73524 category="so", 73525 description="WHITE RECTANGLE", 73526 direction="on", 73527 linebreak="al", 73528 unicodeslot=0x25AD, 73529 }, 73530 [0x25AE]={ 73531 category="so", 73532 description="BLACK VERTICAL RECTANGLE", 73533 direction="on", 73534 linebreak="al", 73535 synonyms={ "histogram marker" }, 73536 unicodeslot=0x25AE, 73537 }, 73538 [0x25AF]={ 73539 category="so", 73540 description="WHITE VERTICAL RECTANGLE", 73541 direction="on", 73542 linebreak="al", 73543 unicodeslot=0x25AF, 73544 }, 73545 [0x25B0]={ 73546 category="so", 73547 description="BLACK PARALLELOGRAM", 73548 direction="on", 73549 linebreak="al", 73550 unicodeslot=0x25B0, 73551 }, 73552 [0x25B1]={ 73553 category="so", 73554 description="WHITE PARALLELOGRAM", 73555 direction="on", 73556 linebreak="al", 73557 unicodeslot=0x25B1, 73558 }, 73559 [0x25B2]={ 73560 category="so", 73561 cjkwd="a", 73562 description="BLACK UP-POINTING TRIANGLE", 73563 direction="on", 73564 linebreak="ai", 73565 mathclass="binary", 73566 mathname="blacktriangle", 73567 unicodeslot=0x25B2, 73568 }, 73569 [0x25B3]={ 73570 category="so", 73571 cjkwd="a", 73572 description="WHITE UP-POINTING TRIANGLE", 73573 direction="on", 73574 linebreak="ai", 73575 mathspec={ 73576 { 73577 class="ordinary", 73578 name="triangle", 73579 }, 73580 { 73581 class="binary", 73582 name="bigtriangleup", 73583 }, 73584 }, 73585 synonyms={ "trine" }, 73586 unicodeslot=0x25B3, 73587 }, 73588 [0x25B4]={ 73589 category="so", 73590 description="BLACK UP-POINTING SMALL TRIANGLE", 73591 direction="on", 73592 linebreak="al", 73593 unicodeslot=0x25B4, 73594 }, 73595 [0x25B5]={ 73596 category="so", 73597 description="WHITE UP-POINTING SMALL TRIANGLE", 73598 direction="on", 73599 linebreak="al", 73600 unicodeslot=0x25B5, 73601 }, 73602 [0x25B6]={ 73603 category="so", 73604 cjkwd="a", 73605 description="BLACK RIGHT-POINTING TRIANGLE", 73606 direction="on", 73607 linebreak="ai", 73608 mathclass="binary", 73609 mathname="blacktriangleright", 73610 unicodeslot=0x25B6, 73611 variants=variants_emoji, 73612 }, 73613 [0x25B7]={ 73614 category="sm", 73615 cjkwd="a", 73616 description="WHITE RIGHT-POINTING TRIANGLE", 73617 direction="on", 73618 linebreak="ai", 73619 mathclass="binary", 73620 mathname="triangleright", 73621 synonyms={ "range restriction" }, 73622 unicodeslot=0x25B7, 73623 }, 73624 [0x25B8]={ 73625 category="so", 73626 description="BLACK RIGHT-POINTING SMALL TRIANGLE", 73627 direction="on", 73628 linebreak="al", 73629 unicodeslot=0x25B8, 73630 }, 73631 [0x25B9]={ 73632 category="so", 73633 description="WHITE RIGHT-POINTING SMALL TRIANGLE", 73634 direction="on", 73635 linebreak="al", 73636 unicodeslot=0x25B9, 73637 }, 73638 [0x25BA]={ 73639 category="so", 73640 description="BLACK RIGHT-POINTING POINTER", 73641 direction="on", 73642 linebreak="al", 73643 unicodeslot=0x25BA, 73644 }, 73645 [0x25BB]={ 73646 category="so", 73647 description="WHITE RIGHT-POINTING POINTER", 73648 direction="on", 73649 linebreak="al", 73650 synonyms={ "forward arrow indicator" }, 73651 unicodeslot=0x25BB, 73652 }, 73653 [0x25BC]={ 73654 category="so", 73655 cjkwd="a", 73656 description="BLACK DOWN-POINTING TRIANGLE", 73657 direction="on", 73658 linebreak="ai", 73659 mathclass="binary", 73660 mathname="blacktriangledown", 73661 unicodeslot=0x25BC, 73662 }, 73663 [0x25BD]={ 73664 category="so", 73665 cjkwd="a", 73666 description="WHITE DOWN-POINTING TRIANGLE", 73667 direction="on", 73668 linebreak="ai", 73669 mathspec={ 73670 { 73671 class="binary", 73672 name="triangledown", 73673 }, 73674 { 73675 class="binary", 73676 name="bigtriangledown", 73677 }, 73678 }, 73679 synonyms={ "hamilton operator" }, 73680 unicodeslot=0x25BD, 73681 }, 73682 [0x25BE]={ 73683 category="so", 73684 description="BLACK DOWN-POINTING SMALL TRIANGLE", 73685 direction="on", 73686 linebreak="al", 73687 unicodeslot=0x25BE, 73688 }, 73689 [0x25BF]={ 73690 category="so", 73691 description="WHITE DOWN-POINTING SMALL TRIANGLE", 73692 direction="on", 73693 linebreak="al", 73694 unicodeslot=0x25BF, 73695 }, 73696 [0x25C0]={ 73697 category="so", 73698 cjkwd="a", 73699 description="BLACK LEFT-POINTING TRIANGLE", 73700 direction="on", 73701 linebreak="ai", 73702 mathclass="binary", 73703 mathname="blacktriangleleft", 73704 unicodeslot=0x25C0, 73705 variants=variants_emoji, 73706 }, 73707 [0x25C1]={ 73708 category="sm", 73709 cjkwd="a", 73710 description="WHITE LEFT-POINTING TRIANGLE", 73711 direction="on", 73712 linebreak="ai", 73713 mathclass="binary", 73714 mathname="triangleleft", 73715 synonyms={ "domain restriction" }, 73716 unicodeslot=0x25C1, 73717 }, 73718 [0x25C2]={ 73719 category="so", 73720 description="BLACK LEFT-POINTING SMALL TRIANGLE", 73721 direction="on", 73722 linebreak="al", 73723 unicodeslot=0x25C2, 73724 }, 73725 [0x25C3]={ 73726 category="so", 73727 description="WHITE LEFT-POINTING SMALL TRIANGLE", 73728 direction="on", 73729 linebreak="al", 73730 unicodeslot=0x25C3, 73731 }, 73732 [0x25C4]={ 73733 category="so", 73734 description="BLACK LEFT-POINTING POINTER", 73735 direction="on", 73736 linebreak="al", 73737 unicodeslot=0x25C4, 73738 }, 73739 [0x25C5]={ 73740 category="so", 73741 description="WHITE LEFT-POINTING POINTER", 73742 direction="on", 73743 linebreak="al", 73744 synonyms={ "backward arrow indicator" }, 73745 unicodeslot=0x25C5, 73746 }, 73747 [0x25C6]={ 73748 category="so", 73749 cjkwd="a", 73750 description="BLACK DIAMOND", 73751 direction="on", 73752 linebreak="ai", 73753 unicodeslot=0x25C6, 73754 }, 73755 [0x25C7]={ 73756 category="so", 73757 cjkwd="a", 73758 description="WHITE DIAMOND", 73759 direction="on", 73760 linebreak="ai", 73761 unicodeslot=0x25C7, 73762 }, 73763 [0x25C8]={ 73764 category="so", 73765 cjkwd="a", 73766 description="WHITE DIAMOND CONTAINING BLACK SMALL DIAMOND", 73767 direction="on", 73768 linebreak="ai", 73769 unicodeslot=0x25C8, 73770 }, 73771 [0x25C9]={ 73772 category="so", 73773 description="FISHEYE", 73774 direction="on", 73775 linebreak="al", 73776 synonyms={ "tainome japanese bullet" }, 73777 unicodeslot=0x25C9, 73778 }, 73779 [0x25CA]={ 73780 category="so", 73781 description="LOZENGE", 73782 direction="on", 73783 linebreak="al", 73784 mathclass="ordinary", 73785 mathname="lozenge", 73786 unicodeslot=0x25CA, 73787 }, 73788 [0x25CB]={ 73789 category="so", 73790 cjkwd="a", 73791 description="WHITE CIRCLE", 73792 direction="on", 73793 linebreak="ai", 73794 unicodeslot=0x25CB, 73795 }, 73796 [0x25CC]={ 73797 category="so", 73798 contextname="dottedcircle", 73799 description="DOTTED CIRCLE", 73800 direction="on", 73801 linebreak="al", 73802 mongolian="nj", 73803 unicodeslot=0x25CC, 73804 }, 73805 [0x25CD]={ 73806 category="so", 73807 description="CIRCLE WITH VERTICAL FILL", 73808 direction="on", 73809 linebreak="al", 73810 unicodeslot=0x25CD, 73811 }, 73812 [0x25CE]={ 73813 category="so", 73814 cjkwd="a", 73815 description="BULLSEYE", 73816 direction="on", 73817 linebreak="ai", 73818 unicodeslot=0x25CE, 73819 }, 73820 [0x25CF]={ 73821 category="so", 73822 cjkwd="a", 73823 description="BLACK CIRCLE", 73824 direction="on", 73825 linebreak="ai", 73826 unicodeslot=0x25CF, 73827 }, 73828 [0x25D0]={ 73829 category="so", 73830 cjkwd="a", 73831 description="CIRCLE WITH LEFT HALF BLACK", 73832 direction="on", 73833 linebreak="ai", 73834 unicodeslot=0x25D0, 73835 }, 73836 [0x25D1]={ 73837 category="so", 73838 cjkwd="a", 73839 description="CIRCLE WITH RIGHT HALF BLACK", 73840 direction="on", 73841 linebreak="ai", 73842 unicodeslot=0x25D1, 73843 }, 73844 [0x25D2]={ 73845 category="so", 73846 description="CIRCLE WITH LOWER HALF BLACK", 73847 direction="on", 73848 linebreak="al", 73849 unicodeslot=0x25D2, 73850 }, 73851 [0x25D3]={ 73852 category="so", 73853 description="CIRCLE WITH UPPER HALF BLACK", 73854 direction="on", 73855 linebreak="al", 73856 unicodeslot=0x25D3, 73857 }, 73858 [0x25D4]={ 73859 category="so", 73860 description="CIRCLE WITH UPPER RIGHT QUADRANT BLACK", 73861 direction="on", 73862 linebreak="al", 73863 unicodeslot=0x25D4, 73864 }, 73865 [0x25D5]={ 73866 category="so", 73867 description="CIRCLE WITH ALL BUT UPPER LEFT QUADRANT BLACK", 73868 direction="on", 73869 linebreak="al", 73870 unicodeslot=0x25D5, 73871 }, 73872 [0x25D6]={ 73873 category="so", 73874 description="LEFT HALF BLACK CIRCLE", 73875 direction="on", 73876 linebreak="al", 73877 unicodeslot=0x25D6, 73878 }, 73879 [0x25D7]={ 73880 category="so", 73881 description="RIGHT HALF BLACK CIRCLE", 73882 direction="on", 73883 linebreak="al", 73884 unicodeslot=0x25D7, 73885 }, 73886 [0x25D8]={ 73887 category="so", 73888 description="INVERSE BULLET", 73889 direction="on", 73890 linebreak="al", 73891 unicodeslot=0x25D8, 73892 }, 73893 [0x25D9]={ 73894 category="so", 73895 description="INVERSE WHITE CIRCLE", 73896 direction="on", 73897 linebreak="al", 73898 unicodeslot=0x25D9, 73899 }, 73900 [0x25DA]={ 73901 category="so", 73902 description="UPPER HALF INVERSE WHITE CIRCLE", 73903 direction="on", 73904 linebreak="al", 73905 unicodeslot=0x25DA, 73906 }, 73907 [0x25DB]={ 73908 category="so", 73909 description="LOWER HALF INVERSE WHITE CIRCLE", 73910 direction="on", 73911 linebreak="al", 73912 unicodeslot=0x25DB, 73913 }, 73914 [0x25DC]={ 73915 category="so", 73916 description="UPPER LEFT QUADRANT CIRCULAR ARC", 73917 direction="on", 73918 linebreak="al", 73919 unicodeslot=0x25DC, 73920 }, 73921 [0x25DD]={ 73922 category="so", 73923 description="UPPER RIGHT QUADRANT CIRCULAR ARC", 73924 direction="on", 73925 linebreak="al", 73926 unicodeslot=0x25DD, 73927 }, 73928 [0x25DE]={ 73929 category="so", 73930 description="LOWER RIGHT QUADRANT CIRCULAR ARC", 73931 direction="on", 73932 linebreak="al", 73933 unicodeslot=0x25DE, 73934 }, 73935 [0x25DF]={ 73936 category="so", 73937 description="LOWER LEFT QUADRANT CIRCULAR ARC", 73938 direction="on", 73939 linebreak="al", 73940 unicodeslot=0x25DF, 73941 }, 73942 [0x25E0]={ 73943 category="so", 73944 description="UPPER HALF CIRCLE", 73945 direction="on", 73946 linebreak="al", 73947 unicodeslot=0x25E0, 73948 }, 73949 [0x25E1]={ 73950 category="so", 73951 description="LOWER HALF CIRCLE", 73952 direction="on", 73953 linebreak="al", 73954 unicodeslot=0x25E1, 73955 }, 73956 [0x25E2]={ 73957 category="so", 73958 cjkwd="a", 73959 description="BLACK LOWER RIGHT TRIANGLE", 73960 direction="on", 73961 linebreak="ai", 73962 unicodeslot=0x25E2, 73963 }, 73964 [0x25E3]={ 73965 category="so", 73966 cjkwd="a", 73967 description="BLACK LOWER LEFT TRIANGLE", 73968 direction="on", 73969 linebreak="ai", 73970 unicodeslot=0x25E3, 73971 }, 73972 [0x25E4]={ 73973 category="so", 73974 cjkwd="a", 73975 description="BLACK UPPER LEFT TRIANGLE", 73976 direction="on", 73977 linebreak="ai", 73978 unicodeslot=0x25E4, 73979 }, 73980 [0x25E5]={ 73981 category="so", 73982 cjkwd="a", 73983 description="BLACK UPPER RIGHT TRIANGLE", 73984 direction="on", 73985 linebreak="ai", 73986 unicodeslot=0x25E5, 73987 }, 73988 [0x25E6]={ 73989 category="so", 73990 description="WHITE BULLET", 73991 direction="on", 73992 linebreak="al", 73993 unicodeslot=0x25E6, 73994 }, 73995 [0x25E7]={ 73996 category="so", 73997 description="SQUARE WITH LEFT HALF BLACK", 73998 direction="on", 73999 linebreak="al", 74000 unicodeslot=0x25E7, 74001 }, 74002 [0x25E8]={ 74003 category="so", 74004 description="SQUARE WITH RIGHT HALF BLACK", 74005 direction="on", 74006 linebreak="al", 74007 unicodeslot=0x25E8, 74008 }, 74009 [0x25E9]={ 74010 category="so", 74011 description="SQUARE WITH UPPER LEFT DIAGONAL HALF BLACK", 74012 direction="on", 74013 linebreak="al", 74014 unicodeslot=0x25E9, 74015 }, 74016 [0x25EA]={ 74017 category="so", 74018 description="SQUARE WITH LOWER RIGHT DIAGONAL HALF BLACK", 74019 direction="on", 74020 linebreak="al", 74021 unicodeslot=0x25EA, 74022 }, 74023 [0x25EB]={ 74024 category="so", 74025 description="WHITE SQUARE WITH VERTICAL BISECTING LINE", 74026 direction="on", 74027 linebreak="al", 74028 unicodeslot=0x25EB, 74029 }, 74030 [0x25EC]={ 74031 category="so", 74032 description="WHITE UP-POINTING TRIANGLE WITH DOT", 74033 direction="on", 74034 linebreak="al", 74035 unicodeslot=0x25EC, 74036 }, 74037 [0x25ED]={ 74038 category="so", 74039 description="UP-POINTING TRIANGLE WITH LEFT HALF BLACK", 74040 direction="on", 74041 linebreak="al", 74042 unicodeslot=0x25ED, 74043 }, 74044 [0x25EE]={ 74045 category="so", 74046 description="UP-POINTING TRIANGLE WITH RIGHT HALF BLACK", 74047 direction="on", 74048 linebreak="al", 74049 unicodeslot=0x25EE, 74050 }, 74051 [0x25EF]={ 74052 category="so", 74053 cjkwd="a", 74054 description="LARGE CIRCLE", 74055 direction="on", 74056 linebreak="ai", 74057 mathclass="binary", 74058 mathname="bigcirc", 74059 unicodeslot=0x25EF, 74060 }, 74061 [0x25F0]={ 74062 category="so", 74063 description="WHITE SQUARE WITH UPPER LEFT QUADRANT", 74064 direction="on", 74065 linebreak="al", 74066 unicodeslot=0x25F0, 74067 }, 74068 [0x25F1]={ 74069 category="so", 74070 description="WHITE SQUARE WITH LOWER LEFT QUADRANT", 74071 direction="on", 74072 linebreak="al", 74073 unicodeslot=0x25F1, 74074 }, 74075 [0x25F2]={ 74076 category="so", 74077 description="WHITE SQUARE WITH LOWER RIGHT QUADRANT", 74078 direction="on", 74079 linebreak="al", 74080 unicodeslot=0x25F2, 74081 }, 74082 [0x25F3]={ 74083 category="so", 74084 description="WHITE SQUARE WITH UPPER RIGHT QUADRANT", 74085 direction="on", 74086 linebreak="al", 74087 unicodeslot=0x25F3, 74088 }, 74089 [0x25F4]={ 74090 category="so", 74091 description="WHITE CIRCLE WITH UPPER LEFT QUADRANT", 74092 direction="on", 74093 linebreak="al", 74094 unicodeslot=0x25F4, 74095 }, 74096 [0x25F5]={ 74097 category="so", 74098 description="WHITE CIRCLE WITH LOWER LEFT QUADRANT", 74099 direction="on", 74100 linebreak="al", 74101 unicodeslot=0x25F5, 74102 }, 74103 [0x25F6]={ 74104 category="so", 74105 description="WHITE CIRCLE WITH LOWER RIGHT QUADRANT", 74106 direction="on", 74107 linebreak="al", 74108 unicodeslot=0x25F6, 74109 }, 74110 [0x25F7]={ 74111 category="so", 74112 description="WHITE CIRCLE WITH UPPER RIGHT QUADRANT", 74113 direction="on", 74114 linebreak="al", 74115 unicodeslot=0x25F7, 74116 }, 74117 [0x25F8]={ 74118 category="sm", 74119 description="UPPER LEFT TRIANGLE", 74120 direction="on", 74121 linebreak="al", 74122 unicodeslot=0x25F8, 74123 }, 74124 [0x25F9]={ 74125 category="sm", 74126 description="UPPER RIGHT TRIANGLE", 74127 direction="on", 74128 linebreak="al", 74129 unicodeslot=0x25F9, 74130 }, 74131 [0x25FA]={ 74132 category="sm", 74133 description="LOWER LEFT TRIANGLE", 74134 direction="on", 74135 linebreak="al", 74136 unicodeslot=0x25FA, 74137 }, 74138 [0x25FB]={ 74139 category="sm", 74140 description="WHITE MEDIUM SQUARE", 74141 direction="on", 74142 linebreak="al", 74143 synonyms={ "always" }, 74144 unicodeslot=0x25FB, 74145 variants=variants_emoji, 74146 }, 74147 [0x25FC]={ 74148 category="sm", 74149 description="BLACK MEDIUM SQUARE", 74150 direction="on", 74151 linebreak="al", 74152 unicodeslot=0x25FC, 74153 variants=variants_emoji, 74154 }, 74155 [0x25FD]={ 74156 category="sm", 74157 cjkwd="w", 74158 description="WHITE MEDIUM SMALL SQUARE", 74159 direction="on", 74160 linebreak="al", 74161 unicodeslot=0x25FD, 74162 variants=variants_emoji, 74163 }, 74164 [0x25FE]={ 74165 category="sm", 74166 cjkwd="w", 74167 description="BLACK MEDIUM SMALL SQUARE", 74168 direction="on", 74169 linebreak="al", 74170 unicodeslot=0x25FE, 74171 variants=variants_emoji, 74172 }, 74173 [0x25FF]={ 74174 category="sm", 74175 description="LOWER RIGHT TRIANGLE", 74176 direction="on", 74177 linebreak="al", 74178 unicodeslot=0x25FF, 74179 }, 74180 [0x2600]={ 74181 category="so", 74182 description="BLACK SUN WITH RAYS", 74183 direction="on", 74184 linebreak="id", 74185 synonyms={ "clear weather" }, 74186 unicodeslot=0x2600, 74187 variants=variants_emoji, 74188 }, 74189 [0x2601]={ 74190 category="so", 74191 description="CLOUD", 74192 direction="on", 74193 linebreak="id", 74194 synonyms={ "cloudy weather" }, 74195 unicodeslot=0x2601, 74196 variants=variants_emoji, 74197 }, 74198 [0x2602]={ 74199 category="so", 74200 description="UMBRELLA", 74201 direction="on", 74202 linebreak="id", 74203 synonyms={ "rainy weather" }, 74204 unicodeslot=0x2602, 74205 variants=variants_emoji, 74206 }, 74207 [0x2603]={ 74208 category="so", 74209 description="SNOWMAN", 74210 direction="on", 74211 linebreak="id", 74212 synonyms={ "snowy weather" }, 74213 unicodeslot=0x2603, 74214 variants=variants_emoji, 74215 }, 74216 [0x2604]={ 74217 category="so", 74218 description="COMET", 74219 direction="on", 74220 linebreak="al", 74221 unicodeslot=0x2604, 74222 variants=variants_emoji, 74223 }, 74224 [0x2605]={ 74225 category="so", 74226 cjkwd="a", 74227 description="BLACK STAR", 74228 direction="on", 74229 linebreak="ai", 74230 mathclass="ordinary", 74231 mathname="bigstar", 74232 unicodeslot=0x2605, 74233 }, 74234 [0x2606]={ 74235 category="so", 74236 cjkwd="a", 74237 description="WHITE STAR", 74238 direction="on", 74239 linebreak="ai", 74240 unicodeslot=0x2606, 74241 }, 74242 [0x2607]={ 74243 category="so", 74244 description="LIGHTNING", 74245 direction="on", 74246 linebreak="al", 74247 unicodeslot=0x2607, 74248 }, 74249 [0x2608]={ 74250 category="so", 74251 description="THUNDERSTORM", 74252 direction="on", 74253 linebreak="al", 74254 unicodeslot=0x2608, 74255 }, 74256 [0x2609]={ 74257 category="so", 74258 cjkwd="a", 74259 description="SUN", 74260 direction="on", 74261 linebreak="ai", 74262 unicodeslot=0x2609, 74263 }, 74264 [0x260A]={ 74265 category="so", 74266 description="ASCENDING NODE", 74267 direction="on", 74268 linebreak="al", 74269 unicodeslot=0x260A, 74270 }, 74271 [0x260B]={ 74272 category="so", 74273 description="DESCENDING NODE", 74274 direction="on", 74275 linebreak="al", 74276 unicodeslot=0x260B, 74277 }, 74278 [0x260C]={ 74279 category="so", 74280 description="CONJUNCTION", 74281 direction="on", 74282 linebreak="al", 74283 unicodeslot=0x260C, 74284 }, 74285 [0x260D]={ 74286 category="so", 74287 description="OPPOSITION", 74288 direction="on", 74289 linebreak="al", 74290 unicodeslot=0x260D, 74291 }, 74292 [0x260E]={ 74293 category="so", 74294 cjkwd="a", 74295 description="BLACK TELEPHONE", 74296 direction="on", 74297 linebreak="ai", 74298 unicodeslot=0x260E, 74299 variants=variants_emoji, 74300 }, 74301 [0x260F]={ 74302 category="so", 74303 cjkwd="a", 74304 description="WHITE TELEPHONE", 74305 direction="on", 74306 linebreak="ai", 74307 unicodeslot=0x260F, 74308 }, 74309 [0x2610]={ 74310 category="so", 74311 description="BALLOT BOX", 74312 direction="on", 74313 linebreak="al", 74314 unicodeslot=0x2610, 74315 }, 74316 [0x2611]={ 74317 category="so", 74318 description="BALLOT BOX WITH CHECK", 74319 direction="on", 74320 linebreak="al", 74321 unicodeslot=0x2611, 74322 variants=variants_emoji, 74323 }, 74324 [0x2612]={ 74325 category="so", 74326 description="BALLOT BOX WITH X", 74327 direction="on", 74328 linebreak="al", 74329 unicodeslot=0x2612, 74330 }, 74331 [0x2613]={ 74332 category="so", 74333 description="SALTIRE", 74334 direction="on", 74335 linebreak="al", 74336 synonyms={ "st. andrew's cross" }, 74337 unicodeslot=0x2613, 74338 }, 74339 [0x2614]={ 74340 category="so", 74341 cjkwd="w", 74342 description="UMBRELLA WITH RAIN DROPS", 74343 direction="on", 74344 linebreak="id", 74345 synonyms={ "showery weather" }, 74346 unicodeslot=0x2614, 74347 variants=variants_emoji, 74348 }, 74349 [0x2615]={ 74350 category="so", 74351 cjkwd="w", 74352 description="HOT BEVERAGE", 74353 direction="on", 74354 linebreak="id", 74355 synonyms={ "cup of coffee", "cup of tea" }, 74356 unicodeslot=0x2615, 74357 variants=variants_emoji, 74358 }, 74359 [0x2616]={ 74360 category="so", 74361 description="WHITE SHOGI PIECE", 74362 direction="on", 74363 linebreak="ai", 74364 unicodeslot=0x2616, 74365 }, 74366 [0x2617]={ 74367 category="so", 74368 description="BLACK SHOGI PIECE", 74369 direction="on", 74370 linebreak="ai", 74371 unicodeslot=0x2617, 74372 }, 74373 [0x2618]={ 74374 category="so", 74375 description="SHAMROCK", 74376 direction="on", 74377 linebreak="id", 74378 unicodeslot=0x2618, 74379 variants=variants_emoji, 74380 }, 74381 [0x2619]={ 74382 category="so", 74383 description="REVERSED ROTATED FLORAL HEART BULLET", 74384 direction="on", 74385 linebreak="al", 74386 unicodeslot=0x2619, 74387 }, 74388 [0x261A]={ 74389 category="so", 74390 description="BLACK LEFT POINTING INDEX", 74391 direction="on", 74392 linebreak="id", 74393 unicodeslot=0x261A, 74394 }, 74395 [0x261B]={ 74396 category="so", 74397 description="BLACK RIGHT POINTING INDEX", 74398 direction="on", 74399 linebreak="id", 74400 unicodeslot=0x261B, 74401 }, 74402 [0x261C]={ 74403 category="so", 74404 cjkwd="a", 74405 description="WHITE LEFT POINTING INDEX", 74406 direction="on", 74407 linebreak="id", 74408 unicodeslot=0x261C, 74409 }, 74410 [0x261D]={ 74411 category="so", 74412 description="WHITE UP POINTING INDEX", 74413 direction="on", 74414 linebreak="eb", 74415 unicodeslot=0x261D, 74416 variants=variants_emoji, 74417 }, 74418 [0x261E]={ 74419 category="so", 74420 cjkwd="a", 74421 description="WHITE RIGHT POINTING INDEX", 74422 direction="on", 74423 linebreak="id", 74424 synonyms={ "fist" }, 74425 unicodeslot=0x261E, 74426 }, 74427 [0x261F]={ 74428 category="so", 74429 description="WHITE DOWN POINTING INDEX", 74430 direction="on", 74431 linebreak="id", 74432 unicodeslot=0x261F, 74433 }, 74434 [0x2620]={ 74435 category="so", 74436 description="SKULL AND CROSSBONES", 74437 direction="on", 74438 linebreak="al", 74439 synonyms={ "jolly roger", "poison" }, 74440 unicodeslot=0x2620, 74441 variants=variants_emoji, 74442 }, 74443 [0x2621]={ 74444 category="so", 74445 description="CAUTION SIGN", 74446 direction="on", 74447 linebreak="al", 74448 unicodeslot=0x2621, 74449 }, 74450 [0x2622]={ 74451 category="so", 74452 description="RADIOACTIVE SIGN", 74453 direction="on", 74454 linebreak="al", 74455 unicodeslot=0x2622, 74456 variants=variants_emoji, 74457 }, 74458 [0x2623]={ 74459 category="so", 74460 description="BIOHAZARD SIGN", 74461 direction="on", 74462 linebreak="al", 74463 unicodeslot=0x2623, 74464 variants=variants_emoji, 74465 }, 74466 [0x2624]={ 74467 category="so", 74468 description="CADUCEUS", 74469 direction="on", 74470 linebreak="al", 74471 unicodeslot=0x2624, 74472 }, 74473 [0x2625]={ 74474 category="so", 74475 description="ANKH", 74476 direction="on", 74477 linebreak="al", 74478 unicodeslot=0x2625, 74479 }, 74480 [0x2626]={ 74481 category="so", 74482 description="ORTHODOX CROSS", 74483 direction="on", 74484 linebreak="al", 74485 unicodeslot=0x2626, 74486 variants=variants_emoji, 74487 }, 74488 [0x2627]={ 74489 category="so", 74490 description="CHI RHO", 74491 direction="on", 74492 linebreak="al", 74493 synonyms={ "christogram", "constantine's cross" }, 74494 unicodeslot=0x2627, 74495 }, 74496 [0x2628]={ 74497 category="so", 74498 description="CROSS OF LORRAINE", 74499 direction="on", 74500 linebreak="al", 74501 unicodeslot=0x2628, 74502 }, 74503 [0x2629]={ 74504 category="so", 74505 description="CROSS OF JERUSALEM", 74506 direction="on", 74507 linebreak="al", 74508 unicodeslot=0x2629, 74509 }, 74510 [0x262A]={ 74511 category="so", 74512 description="STAR AND CRESCENT", 74513 direction="on", 74514 linebreak="al", 74515 unicodeslot=0x262A, 74516 variants=variants_emoji, 74517 }, 74518 [0x262B]={ 74519 category="so", 74520 description="FARSI SYMBOL", 74521 direction="on", 74522 linebreak="al", 74523 unicodeslot=0x262B, 74524 }, 74525 [0x262C]={ 74526 category="so", 74527 description="ADI SHAKTI", 74528 direction="on", 74529 linebreak="al", 74530 synonyms={ "gurmukhi khanda" }, 74531 unicodeslot=0x262C, 74532 }, 74533 [0x262D]={ 74534 category="so", 74535 description="HAMMER AND SICKLE", 74536 direction="on", 74537 linebreak="al", 74538 unicodeslot=0x262D, 74539 }, 74540 [0x262E]={ 74541 category="so", 74542 description="PEACE SYMBOL", 74543 direction="on", 74544 linebreak="al", 74545 unicodeslot=0x262E, 74546 variants=variants_emoji, 74547 }, 74548 [0x262F]={ 74549 category="so", 74550 description="YIN YANG", 74551 direction="on", 74552 linebreak="al", 74553 unicodeslot=0x262F, 74554 variants=variants_emoji, 74555 }, 74556 [0x2630]={ 74557 category="so", 74558 cjkwd="w", 74559 description="TRIGRAM FOR HEAVEN", 74560 direction="on", 74561 linebreak="al", 74562 unicodeslot=0x2630, 74563 }, 74564 [0x2631]={ 74565 category="so", 74566 cjkwd="w", 74567 description="TRIGRAM FOR LAKE", 74568 direction="on", 74569 linebreak="al", 74570 unicodeslot=0x2631, 74571 }, 74572 [0x2632]={ 74573 category="so", 74574 cjkwd="w", 74575 description="TRIGRAM FOR FIRE", 74576 direction="on", 74577 linebreak="al", 74578 unicodeslot=0x2632, 74579 }, 74580 [0x2633]={ 74581 category="so", 74582 cjkwd="w", 74583 description="TRIGRAM FOR THUNDER", 74584 direction="on", 74585 linebreak="al", 74586 unicodeslot=0x2633, 74587 }, 74588 [0x2634]={ 74589 category="so", 74590 cjkwd="w", 74591 description="TRIGRAM FOR WIND", 74592 direction="on", 74593 linebreak="al", 74594 unicodeslot=0x2634, 74595 }, 74596 [0x2635]={ 74597 category="so", 74598 cjkwd="w", 74599 description="TRIGRAM FOR WATER", 74600 direction="on", 74601 linebreak="al", 74602 unicodeslot=0x2635, 74603 }, 74604 [0x2636]={ 74605 category="so", 74606 cjkwd="w", 74607 description="TRIGRAM FOR MOUNTAIN", 74608 direction="on", 74609 linebreak="al", 74610 unicodeslot=0x2636, 74611 }, 74612 [0x2637]={ 74613 category="so", 74614 cjkwd="w", 74615 description="TRIGRAM FOR EARTH", 74616 direction="on", 74617 linebreak="al", 74618 unicodeslot=0x2637, 74619 }, 74620 [0x2638]={ 74621 category="so", 74622 description="WHEEL OF DHARMA", 74623 direction="on", 74624 linebreak="al", 74625 unicodeslot=0x2638, 74626 variants=variants_emoji, 74627 }, 74628 [0x2639]={ 74629 category="so", 74630 description="WHITE FROWNING FACE", 74631 direction="on", 74632 linebreak="id", 74633 unicodeslot=0x2639, 74634 variants=variants_emoji, 74635 }, 74636 [0x263A]={ 74637 category="so", 74638 description="WHITE SMILING FACE", 74639 direction="on", 74640 linebreak="id", 74641 synonyms={ "have a nice day!" }, 74642 unicodeslot=0x263A, 74643 variants=variants_emoji, 74644 }, 74645 [0x263B]={ 74646 category="so", 74647 description="BLACK SMILING FACE", 74648 direction="on", 74649 linebreak="id", 74650 unicodeslot=0x263B, 74651 }, 74652 [0x263C]={ 74653 category="so", 74654 description="WHITE SUN WITH RAYS", 74655 direction="on", 74656 linebreak="al", 74657 synonyms={ "compass" }, 74658 unicodeslot=0x263C, 74659 }, 74660 [0x263D]={ 74661 category="so", 74662 description="FIRST QUARTER MOON", 74663 direction="on", 74664 linebreak="al", 74665 unicodeslot=0x263D, 74666 }, 74667 [0x263E]={ 74668 category="so", 74669 description="LAST QUARTER MOON", 74670 direction="on", 74671 linebreak="al", 74672 unicodeslot=0x263E, 74673 }, 74674 [0x263F]={ 74675 category="so", 74676 description="MERCURY", 74677 direction="on", 74678 linebreak="al", 74679 unicodeslot=0x263F, 74680 }, 74681 [0x2640]={ 74682 category="so", 74683 cjkwd="a", 74684 description="FEMALE SIGN", 74685 direction="on", 74686 linebreak="ai", 74687 synonyms={ "venus" }, 74688 unicodeslot=0x2640, 74689 }, 74690 [0x2641]={ 74691 category="so", 74692 description="EARTH", 74693 direction="on", 74694 linebreak="al", 74695 unicodeslot=0x2641, 74696 }, 74697 [0x2642]={ 74698 category="so", 74699 cjkwd="a", 74700 description="MALE SIGN", 74701 direction="on", 74702 linebreak="ai", 74703 synonyms={ "mars" }, 74704 unicodeslot=0x2642, 74705 }, 74706 [0x2643]={ 74707 category="so", 74708 description="JUPITER", 74709 direction="on", 74710 linebreak="al", 74711 unicodeslot=0x2643, 74712 }, 74713 [0x2644]={ 74714 category="so", 74715 description="SATURN", 74716 direction="on", 74717 linebreak="al", 74718 unicodeslot=0x2644, 74719 }, 74720 [0x2645]={ 74721 category="so", 74722 description="URANUS", 74723 direction="on", 74724 linebreak="al", 74725 unicodeslot=0x2645, 74726 }, 74727 [0x2646]={ 74728 category="so", 74729 description="NEPTUNE", 74730 direction="on", 74731 linebreak="al", 74732 unicodeslot=0x2646, 74733 }, 74734 [0x2647]={ 74735 category="so", 74736 description="PLUTO", 74737 direction="on", 74738 linebreak="al", 74739 unicodeslot=0x2647, 74740 }, 74741 [0x2648]={ 74742 category="so", 74743 cjkwd="w", 74744 description="ARIES", 74745 direction="on", 74746 linebreak="al", 74747 unicodeslot=0x2648, 74748 variants=variants_emoji, 74749 }, 74750 [0x2649]={ 74751 category="so", 74752 cjkwd="w", 74753 description="TAURUS", 74754 direction="on", 74755 linebreak="al", 74756 unicodeslot=0x2649, 74757 variants=variants_emoji, 74758 }, 74759 [0x264A]={ 74760 category="so", 74761 cjkwd="w", 74762 description="GEMINI", 74763 direction="on", 74764 linebreak="al", 74765 unicodeslot=0x264A, 74766 variants=variants_emoji, 74767 }, 74768 [0x264B]={ 74769 category="so", 74770 cjkwd="w", 74771 description="CANCER", 74772 direction="on", 74773 linebreak="al", 74774 unicodeslot=0x264B, 74775 variants=variants_emoji, 74776 }, 74777 [0x264C]={ 74778 category="so", 74779 cjkwd="w", 74780 description="LEO", 74781 direction="on", 74782 linebreak="al", 74783 unicodeslot=0x264C, 74784 variants=variants_emoji, 74785 }, 74786 [0x264D]={ 74787 category="so", 74788 cjkwd="w", 74789 description="VIRGO", 74790 direction="on", 74791 linebreak="al", 74792 synonyms={ "minim alternate glyph" }, 74793 unicodeslot=0x264D, 74794 variants=variants_emoji, 74795 }, 74796 [0x264E]={ 74797 category="so", 74798 cjkwd="w", 74799 description="LIBRA", 74800 direction="on", 74801 linebreak="al", 74802 unicodeslot=0x264E, 74803 variants=variants_emoji, 74804 }, 74805 [0x264F]={ 74806 category="so", 74807 cjkwd="w", 74808 description="SCORPIUS", 74809 direction="on", 74810 linebreak="al", 74811 synonyms={ "drop", "minim" }, 74812 unicodeslot=0x264F, 74813 variants=variants_emoji, 74814 }, 74815 [0x2650]={ 74816 category="so", 74817 cjkwd="w", 74818 description="SAGITTARIUS", 74819 direction="on", 74820 linebreak="al", 74821 unicodeslot=0x2650, 74822 variants=variants_emoji, 74823 }, 74824 [0x2651]={ 74825 category="so", 74826 cjkwd="w", 74827 description="CAPRICORN", 74828 direction="on", 74829 linebreak="al", 74830 unicodeslot=0x2651, 74831 variants=variants_emoji, 74832 }, 74833 [0x2652]={ 74834 category="so", 74835 cjkwd="w", 74836 description="AQUARIUS", 74837 direction="on", 74838 linebreak="al", 74839 unicodeslot=0x2652, 74840 variants=variants_emoji, 74841 }, 74842 [0x2653]={ 74843 category="so", 74844 cjkwd="w", 74845 description="PISCES", 74846 direction="on", 74847 linebreak="al", 74848 unicodeslot=0x2653, 74849 variants=variants_emoji, 74850 }, 74851 [0x2654]={ 74852 category="so", 74853 description="WHITE CHESS KING", 74854 direction="on", 74855 linebreak="al", 74856 unicodeslot=0x2654, 74857 }, 74858 [0x2655]={ 74859 category="so", 74860 description="WHITE CHESS QUEEN", 74861 direction="on", 74862 linebreak="al", 74863 unicodeslot=0x2655, 74864 }, 74865 [0x2656]={ 74866 category="so", 74867 description="WHITE CHESS ROOK", 74868 direction="on", 74869 linebreak="al", 74870 unicodeslot=0x2656, 74871 }, 74872 [0x2657]={ 74873 category="so", 74874 description="WHITE CHESS BISHOP", 74875 direction="on", 74876 linebreak="al", 74877 unicodeslot=0x2657, 74878 }, 74879 [0x2658]={ 74880 category="so", 74881 description="WHITE CHESS KNIGHT", 74882 direction="on", 74883 linebreak="al", 74884 unicodeslot=0x2658, 74885 }, 74886 [0x2659]={ 74887 category="so", 74888 description="WHITE CHESS PAWN", 74889 direction="on", 74890 linebreak="al", 74891 unicodeslot=0x2659, 74892 }, 74893 [0x265A]={ 74894 category="so", 74895 description="BLACK CHESS KING", 74896 direction="on", 74897 linebreak="al", 74898 unicodeslot=0x265A, 74899 }, 74900 [0x265B]={ 74901 category="so", 74902 description="BLACK CHESS QUEEN", 74903 direction="on", 74904 linebreak="al", 74905 unicodeslot=0x265B, 74906 }, 74907 [0x265C]={ 74908 category="so", 74909 description="BLACK CHESS ROOK", 74910 direction="on", 74911 linebreak="al", 74912 unicodeslot=0x265C, 74913 }, 74914 [0x265D]={ 74915 category="so", 74916 description="BLACK CHESS BISHOP", 74917 direction="on", 74918 linebreak="al", 74919 unicodeslot=0x265D, 74920 }, 74921 [0x265E]={ 74922 category="so", 74923 description="BLACK CHESS KNIGHT", 74924 direction="on", 74925 linebreak="al", 74926 unicodeslot=0x265E, 74927 }, 74928 [0x265F]={ 74929 category="so", 74930 description="BLACK CHESS PAWN", 74931 direction="on", 74932 linebreak="al", 74933 unicodeslot=0x265F, 74934 }, 74935 [0x2660]={ 74936 category="so", 74937 cjkwd="a", 74938 description="BLACK SPADE SUIT", 74939 direction="on", 74940 linebreak="ai", 74941 mathclass="ordinary", 74942 mathname="spadesuit", 74943 unicodeslot=0x2660, 74944 variants=variants_emoji, 74945 }, 74946 [0x2661]={ 74947 category="so", 74948 cjkwd="a", 74949 description="WHITE HEART SUIT", 74950 direction="on", 74951 linebreak="ai", 74952 mathclass="ordinary", 74953 mathname="heartsuit", 74954 unicodeslot=0x2661, 74955 }, 74956 [0x2662]={ 74957 category="so", 74958 description="WHITE DIAMOND SUIT", 74959 direction="on", 74960 linebreak="al", 74961 mathclass="ordinary", 74962 mathname="diamondsuit", 74963 unicodeslot=0x2662, 74964 }, 74965 [0x2663]={ 74966 category="so", 74967 cjkwd="a", 74968 description="BLACK CLUB SUIT", 74969 direction="on", 74970 linebreak="ai", 74971 mathclass="ordinary", 74972 mathname="clubsuit", 74973 synonyms={ "shamrock" }, 74974 unicodeslot=0x2663, 74975 variants=variants_emoji, 74976 }, 74977 [0x2664]={ 74978 category="so", 74979 cjkwd="a", 74980 description="WHITE SPADE SUIT", 74981 direction="on", 74982 linebreak="ai", 74983 unicodeslot=0x2664, 74984 }, 74985 [0x2665]={ 74986 category="so", 74987 cjkwd="a", 74988 description="BLACK HEART SUIT", 74989 direction="on", 74990 linebreak="ai", 74991 synonyms={ "valentine" }, 74992 unicodeslot=0x2665, 74993 variants=variants_emoji, 74994 }, 74995 [0x2666]={ 74996 category="so", 74997 description="BLACK DIAMOND SUIT", 74998 direction="on", 74999 linebreak="al", 75000 mathclass="ordinary", 75001 mathname="blacklozenge", 75002 unicodeslot=0x2666, 75003 variants=variants_emoji, 75004 }, 75005 [0x2667]={ 75006 category="so", 75007 cjkwd="a", 75008 description="WHITE CLUB SUIT", 75009 direction="on", 75010 linebreak="ai", 75011 unicodeslot=0x2667, 75012 }, 75013 [0x2668]={ 75014 category="so", 75015 cjkwd="a", 75016 description="HOT SPRINGS", 75017 direction="on", 75018 linebreak="id", 75019 unicodeslot=0x2668, 75020 variants=variants_emoji, 75021 }, 75022 [0x2669]={ 75023 category="so", 75024 cjkwd="a", 75025 description="QUARTER NOTE", 75026 direction="on", 75027 linebreak="ai", 75028 synonyms={ "crotchet" }, 75029 unicodeslot=0x2669, 75030 }, 75031 [0x266A]={ 75032 category="so", 75033 cjkwd="a", 75034 description="EIGHTH NOTE", 75035 direction="on", 75036 linebreak="ai", 75037 synonyms={ "quaver" }, 75038 unicodeslot=0x266A, 75039 }, 75040 [0x266B]={ 75041 category="so", 75042 description="BEAMED EIGHTH NOTES", 75043 direction="on", 75044 linebreak="al", 75045 synonyms={ "beamed quavers" }, 75046 unicodeslot=0x266B, 75047 }, 75048 [0x266C]={ 75049 category="so", 75050 cjkwd="a", 75051 description="BEAMED SIXTEENTH NOTES", 75052 direction="on", 75053 linebreak="ai", 75054 synonyms={ "beamed semiquavers" }, 75055 unicodeslot=0x266C, 75056 }, 75057 [0x266D]={ 75058 category="so", 75059 cjkwd="a", 75060 description="MUSIC FLAT SIGN", 75061 direction="on", 75062 linebreak="ai", 75063 mathclass="ordinary", 75064 mathname="flat", 75065 unicodeslot=0x266D, 75066 }, 75067 [0x266E]={ 75068 category="so", 75069 description="MUSIC NATURAL SIGN", 75070 direction="on", 75071 linebreak="al", 75072 mathclass="ordinary", 75073 mathname="natural", 75074 unicodeslot=0x266E, 75075 }, 75076 [0x266F]={ 75077 category="sm", 75078 cjkwd="a", 75079 description="MUSIC SHARP SIGN", 75080 direction="on", 75081 linebreak="ai", 75082 mathclass="ordinary", 75083 mathname="sharp", 75084 synonyms={ "infix bag count" }, 75085 unicodeslot=0x266F, 75086 }, 75087 [0x2670]={ 75088 category="so", 75089 description="WEST SYRIAC CROSS", 75090 direction="on", 75091 linebreak="al", 75092 unicodeslot=0x2670, 75093 }, 75094 [0x2671]={ 75095 category="so", 75096 description="EAST SYRIAC CROSS", 75097 direction="on", 75098 linebreak="al", 75099 unicodeslot=0x2671, 75100 }, 75101 [0x2672]={ 75102 category="so", 75103 description="UNIVERSAL RECYCLING SYMBOL", 75104 direction="on", 75105 linebreak="al", 75106 unicodeslot=0x2672, 75107 }, 75108 [0x2673]={ 75109 category="so", 75110 description="RECYCLING SYMBOL FOR TYPE-0x0001 PLASTICS", 75111 direction="on", 75112 linebreak="al", 75113 unicodeslot=0x2673, 75114 }, 75115 [0x2674]={ 75116 category="so", 75117 description="RECYCLING SYMBOL FOR TYPE-0x0002 PLASTICS", 75118 direction="on", 75119 linebreak="al", 75120 unicodeslot=0x2674, 75121 }, 75122 [0x2675]={ 75123 category="so", 75124 description="RECYCLING SYMBOL FOR TYPE-0x0003 PLASTICS", 75125 direction="on", 75126 linebreak="al", 75127 unicodeslot=0x2675, 75128 }, 75129 [0x2676]={ 75130 category="so", 75131 description="RECYCLING SYMBOL FOR TYPE-0x0004 PLASTICS", 75132 direction="on", 75133 linebreak="al", 75134 unicodeslot=0x2676, 75135 }, 75136 [0x2677]={ 75137 category="so", 75138 description="RECYCLING SYMBOL FOR TYPE-0x0005 PLASTICS", 75139 direction="on", 75140 linebreak="al", 75141 unicodeslot=0x2677, 75142 }, 75143 [0x2678]={ 75144 category="so", 75145 description="RECYCLING SYMBOL FOR TYPE-0x0006 PLASTICS", 75146 direction="on", 75147 linebreak="al", 75148 unicodeslot=0x2678, 75149 }, 75150 [0x2679]={ 75151 category="so", 75152 description="RECYCLING SYMBOL FOR TYPE-0x0007 PLASTICS", 75153 direction="on", 75154 linebreak="al", 75155 unicodeslot=0x2679, 75156 }, 75157 [0x267A]={ 75158 category="so", 75159 description="RECYCLING SYMBOL FOR GENERIC MATERIALS", 75160 direction="on", 75161 linebreak="al", 75162 unicodeslot=0x267A, 75163 }, 75164 [0x267B]={ 75165 category="so", 75166 description="BLACK UNIVERSAL RECYCLING SYMBOL", 75167 direction="on", 75168 linebreak="al", 75169 unicodeslot=0x267B, 75170 variants=variants_emoji, 75171 }, 75172 [0x267C]={ 75173 category="so", 75174 description="RECYCLED PAPER SYMBOL", 75175 direction="on", 75176 linebreak="al", 75177 unicodeslot=0x267C, 75178 }, 75179 [0x267D]={ 75180 category="so", 75181 description="PARTIALLY-RECYCLED PAPER SYMBOL", 75182 direction="on", 75183 linebreak="al", 75184 unicodeslot=0x267D, 75185 }, 75186 [0x267E]={ 75187 category="so", 75188 description="PERMANENT PAPER SIGN", 75189 direction="on", 75190 linebreak="al", 75191 unicodeslot=0x267E, 75192 }, 75193 [0x267F]={ 75194 category="so", 75195 cjkwd="w", 75196 description="WHEELCHAIR SYMBOL", 75197 direction="on", 75198 linebreak="id", 75199 unicodeslot=0x267F, 75200 variants=variants_emoji, 75201 }, 75202 [0x2680]={ 75203 category="so", 75204 description="DIE FACE-0x0001", 75205 direction="on", 75206 linebreak="al", 75207 unicodeslot=0x2680, 75208 }, 75209 [0x2681]={ 75210 category="so", 75211 description="DIE FACE-0x0002", 75212 direction="on", 75213 linebreak="al", 75214 unicodeslot=0x2681, 75215 }, 75216 [0x2682]={ 75217 category="so", 75218 description="DIE FACE-0x0003", 75219 direction="on", 75220 linebreak="al", 75221 unicodeslot=0x2682, 75222 }, 75223 [0x2683]={ 75224 category="so", 75225 description="DIE FACE-0x0004", 75226 direction="on", 75227 linebreak="al", 75228 unicodeslot=0x2683, 75229 }, 75230 [0x2684]={ 75231 category="so", 75232 description="DIE FACE-0x0005", 75233 direction="on", 75234 linebreak="al", 75235 unicodeslot=0x2684, 75236 }, 75237 [0x2685]={ 75238 category="so", 75239 description="DIE FACE-0x0006", 75240 direction="on", 75241 linebreak="al", 75242 unicodeslot=0x2685, 75243 }, 75244 [0x2686]={ 75245 category="so", 75246 description="WHITE CIRCLE WITH DOT RIGHT", 75247 direction="on", 75248 linebreak="al", 75249 unicodeslot=0x2686, 75250 }, 75251 [0x2687]={ 75252 category="so", 75253 description="WHITE CIRCLE WITH TWO DOTS", 75254 direction="on", 75255 linebreak="al", 75256 unicodeslot=0x2687, 75257 }, 75258 [0x2688]={ 75259 category="so", 75260 description="BLACK CIRCLE WITH WHITE DOT RIGHT", 75261 direction="on", 75262 linebreak="al", 75263 unicodeslot=0x2688, 75264 }, 75265 [0x2689]={ 75266 category="so", 75267 description="BLACK CIRCLE WITH TWO WHITE DOTS", 75268 direction="on", 75269 linebreak="al", 75270 unicodeslot=0x2689, 75271 }, 75272 [0x268A]={ 75273 category="so", 75274 cjkwd="w", 75275 description="MONOGRAM FOR YANG", 75276 direction="on", 75277 linebreak="al", 75278 unicodeslot=0x268A, 75279 }, 75280 [0x268B]={ 75281 category="so", 75282 cjkwd="w", 75283 description="MONOGRAM FOR YIN", 75284 direction="on", 75285 linebreak="al", 75286 unicodeslot=0x268B, 75287 }, 75288 [0x268C]={ 75289 category="so", 75290 cjkwd="w", 75291 description="DIGRAM FOR GREATER YANG", 75292 direction="on", 75293 linebreak="al", 75294 unicodeslot=0x268C, 75295 }, 75296 [0x268D]={ 75297 category="so", 75298 cjkwd="w", 75299 description="DIGRAM FOR LESSER YIN", 75300 direction="on", 75301 linebreak="al", 75302 unicodeslot=0x268D, 75303 }, 75304 [0x268E]={ 75305 category="so", 75306 cjkwd="w", 75307 description="DIGRAM FOR LESSER YANG", 75308 direction="on", 75309 linebreak="al", 75310 unicodeslot=0x268E, 75311 }, 75312 [0x268F]={ 75313 category="so", 75314 cjkwd="w", 75315 description="DIGRAM FOR GREATER YIN", 75316 direction="on", 75317 linebreak="al", 75318 unicodeslot=0x268F, 75319 }, 75320 [0x2690]={ 75321 category="so", 75322 description="WHITE FLAG", 75323 direction="on", 75324 linebreak="al", 75325 unicodeslot=0x2690, 75326 }, 75327 [0x2691]={ 75328 category="so", 75329 description="BLACK FLAG", 75330 direction="on", 75331 linebreak="al", 75332 unicodeslot=0x2691, 75333 }, 75334 [0x2692]={ 75335 category="so", 75336 description="HAMMER AND PICK", 75337 direction="on", 75338 linebreak="al", 75339 synonyms={ "mining symbol", "working day symbol" }, 75340 unicodeslot=0x2692, 75341 variants=variants_emoji, 75342 }, 75343 [0x2693]={ 75344 category="so", 75345 cjkwd="w", 75346 description="ANCHOR", 75347 direction="on", 75348 linebreak="al", 75349 synonyms={ "harbor symbol" }, 75350 unicodeslot=0x2693, 75351 variants=variants_emoji, 75352 }, 75353 [0x2694]={ 75354 category="so", 75355 description="CROSSED SWORDS", 75356 direction="on", 75357 linebreak="al", 75358 synonyms={ "battleground symbol" }, 75359 unicodeslot=0x2694, 75360 variants=variants_emoji, 75361 }, 75362 [0x2695]={ 75363 category="so", 75364 description="STAFF OF AESCULAPIUS", 75365 direction="on", 75366 linebreak="al", 75367 unicodeslot=0x2695, 75368 }, 75369 [0x2696]={ 75370 category="so", 75371 description="SCALES", 75372 direction="on", 75373 linebreak="al", 75374 synonyms={ "jurisprudence symbol" }, 75375 unicodeslot=0x2696, 75376 variants=variants_emoji, 75377 }, 75378 [0x2697]={ 75379 category="so", 75380 description="ALEMBIC", 75381 direction="on", 75382 linebreak="al", 75383 unicodeslot=0x2697, 75384 variants=variants_emoji, 75385 }, 75386 [0x2698]={ 75387 category="so", 75388 description="FLOWER", 75389 direction="on", 75390 linebreak="al", 75391 unicodeslot=0x2698, 75392 }, 75393 [0x2699]={ 75394 category="so", 75395 description="GEAR", 75396 direction="on", 75397 linebreak="al", 75398 unicodeslot=0x2699, 75399 variants=variants_emoji, 75400 }, 75401 [0x269A]={ 75402 category="so", 75403 description="STAFF OF HERMES", 75404 direction="on", 75405 linebreak="al", 75406 unicodeslot=0x269A, 75407 }, 75408 [0x269B]={ 75409 category="so", 75410 description="ATOM SYMBOL", 75411 direction="on", 75412 linebreak="al", 75413 unicodeslot=0x269B, 75414 variants=variants_emoji, 75415 }, 75416 [0x269C]={ 75417 category="so", 75418 description="FLEUR-DE-LIS", 75419 direction="on", 75420 linebreak="al", 75421 unicodeslot=0x269C, 75422 variants=variants_emoji, 75423 }, 75424 [0x269D]={ 75425 category="so", 75426 description="OUTLINED WHITE STAR", 75427 direction="on", 75428 linebreak="al", 75429 unicodeslot=0x269D, 75430 }, 75431 [0x269E]={ 75432 category="so", 75433 cjkwd="a", 75434 description="THREE LINES CONVERGING RIGHT", 75435 direction="on", 75436 linebreak="ai", 75437 unicodeslot=0x269E, 75438 }, 75439 [0x269F]={ 75440 category="so", 75441 cjkwd="a", 75442 description="THREE LINES CONVERGING LEFT", 75443 direction="on", 75444 linebreak="ai", 75445 unicodeslot=0x269F, 75446 }, 75447 [0x26A0]={ 75448 category="so", 75449 description="WARNING SIGN", 75450 direction="on", 75451 linebreak="al", 75452 unicodeslot=0x26A0, 75453 variants=variants_emoji, 75454 }, 75455 [0x26A1]={ 75456 category="so", 75457 cjkwd="w", 75458 description="HIGH VOLTAGE SIGN", 75459 direction="on", 75460 linebreak="al", 75461 synonyms={ "lightning", "thunder" }, 75462 unicodeslot=0x26A1, 75463 variants=variants_emoji, 75464 }, 75465 [0x26A2]={ 75466 category="so", 75467 description="DOUBLED FEMALE SIGN", 75468 direction="on", 75469 linebreak="al", 75470 unicodeslot=0x26A2, 75471 }, 75472 [0x26A3]={ 75473 category="so", 75474 description="DOUBLED MALE SIGN", 75475 direction="on", 75476 linebreak="al", 75477 unicodeslot=0x26A3, 75478 }, 75479 [0x26A4]={ 75480 category="so", 75481 description="INTERLOCKED FEMALE AND MALE SIGN", 75482 direction="on", 75483 linebreak="al", 75484 unicodeslot=0x26A4, 75485 }, 75486 [0x26A5]={ 75487 category="so", 75488 description="MALE AND FEMALE SIGN", 75489 direction="on", 75490 linebreak="al", 75491 unicodeslot=0x26A5, 75492 }, 75493 [0x26A6]={ 75494 category="so", 75495 description="MALE WITH STROKE SIGN", 75496 direction="on", 75497 linebreak="al", 75498 unicodeslot=0x26A6, 75499 }, 75500 [0x26A7]={ 75501 category="so", 75502 description="MALE WITH STROKE AND MALE AND FEMALE SIGN", 75503 direction="on", 75504 linebreak="al", 75505 unicodeslot=0x26A7, 75506 }, 75507 [0x26A8]={ 75508 category="so", 75509 description="VERTICAL MALE WITH STROKE SIGN", 75510 direction="on", 75511 linebreak="al", 75512 unicodeslot=0x26A8, 75513 }, 75514 [0x26A9]={ 75515 category="so", 75516 description="HORIZONTAL MALE WITH STROKE SIGN", 75517 direction="on", 75518 linebreak="al", 75519 unicodeslot=0x26A9, 75520 }, 75521 [0x26AA]={ 75522 category="so", 75523 cjkwd="w", 75524 description="MEDIUM WHITE CIRCLE", 75525 direction="on", 75526 linebreak="al", 75527 unicodeslot=0x26AA, 75528 variants=variants_emoji, 75529 }, 75530 [0x26AB]={ 75531 category="so", 75532 cjkwd="w", 75533 description="MEDIUM BLACK CIRCLE", 75534 direction="on", 75535 linebreak="al", 75536 unicodeslot=0x26AB, 75537 variants=variants_emoji, 75538 }, 75539 [0x26AC]={ 75540 category="so", 75541 description="MEDIUM SMALL WHITE CIRCLE", 75542 direction="l", 75543 linebreak="al", 75544 unicodeslot=0x26AC, 75545 }, 75546 [0x26AD]={ 75547 category="so", 75548 description="MARRIAGE SYMBOL", 75549 direction="on", 75550 linebreak="al", 75551 unicodeslot=0x26AD, 75552 }, 75553 [0x26AE]={ 75554 category="so", 75555 description="DIVORCE SYMBOL", 75556 direction="on", 75557 linebreak="al", 75558 unicodeslot=0x26AE, 75559 }, 75560 [0x26AF]={ 75561 category="so", 75562 description="UNMARRIED PARTNERSHIP SYMBOL", 75563 direction="on", 75564 linebreak="al", 75565 unicodeslot=0x26AF, 75566 }, 75567 [0x26B0]={ 75568 category="so", 75569 description="COFFIN", 75570 direction="on", 75571 linebreak="al", 75572 synonyms={ "buried symbol" }, 75573 unicodeslot=0x26B0, 75574 variants=variants_emoji, 75575 }, 75576 [0x26B1]={ 75577 category="so", 75578 description="FUNERAL URN", 75579 direction="on", 75580 linebreak="al", 75581 synonyms={ "cremated symbol" }, 75582 unicodeslot=0x26B1, 75583 variants=variants_emoji, 75584 }, 75585 [0x26B2]={ 75586 category="so", 75587 description="NEUTER", 75588 direction="on", 75589 linebreak="al", 75590 unicodeslot=0x26B2, 75591 }, 75592 [0x26B3]={ 75593 category="so", 75594 description="CERES", 75595 direction="on", 75596 linebreak="al", 75597 unicodeslot=0x26B3, 75598 }, 75599 [0x26B4]={ 75600 category="so", 75601 description="PALLAS", 75602 direction="on", 75603 linebreak="al", 75604 unicodeslot=0x26B4, 75605 }, 75606 [0x26B5]={ 75607 category="so", 75608 description="JUNO", 75609 direction="on", 75610 linebreak="al", 75611 unicodeslot=0x26B5, 75612 }, 75613 [0x26B6]={ 75614 category="so", 75615 description="VESTA", 75616 direction="on", 75617 linebreak="al", 75618 unicodeslot=0x26B6, 75619 }, 75620 [0x26B7]={ 75621 category="so", 75622 description="CHIRON", 75623 direction="on", 75624 linebreak="al", 75625 unicodeslot=0x26B7, 75626 }, 75627 [0x26B8]={ 75628 category="so", 75629 description="BLACK MOON LILITH", 75630 direction="on", 75631 linebreak="al", 75632 unicodeslot=0x26B8, 75633 }, 75634 [0x26B9]={ 75635 category="so", 75636 description="SEXTILE", 75637 direction="on", 75638 linebreak="al", 75639 unicodeslot=0x26B9, 75640 }, 75641 [0x26BA]={ 75642 category="so", 75643 description="SEMISEXTILE", 75644 direction="on", 75645 linebreak="al", 75646 unicodeslot=0x26BA, 75647 }, 75648 [0x26BB]={ 75649 category="so", 75650 description="QUINCUNX", 75651 direction="on", 75652 linebreak="al", 75653 unicodeslot=0x26BB, 75654 }, 75655 [0x26BC]={ 75656 category="so", 75657 description="SESQUIQUADRATE", 75658 direction="on", 75659 linebreak="al", 75660 unicodeslot=0x26BC, 75661 }, 75662 [0x26BD]={ 75663 category="so", 75664 cjkwd="w", 75665 description="SOCCER BALL", 75666 direction="on", 75667 linebreak="id", 75668 unicodeslot=0x26BD, 75669 variants=variants_emoji, 75670 }, 75671 [0x26BE]={ 75672 category="so", 75673 cjkwd="w", 75674 description="BASEBALL", 75675 direction="on", 75676 linebreak="id", 75677 unicodeslot=0x26BE, 75678 variants=variants_emoji, 75679 }, 75680 [0x26BF]={ 75681 category="so", 75682 cjkwd="a", 75683 description="SQUARED KEY", 75684 direction="on", 75685 linebreak="id", 75686 synonyms={ "parental lock" }, 75687 unicodeslot=0x26BF, 75688 }, 75689 [0x26C0]={ 75690 category="so", 75691 description="WHITE DRAUGHTS MAN", 75692 direction="on", 75693 linebreak="id", 75694 unicodeslot=0x26C0, 75695 }, 75696 [0x26C1]={ 75697 category="so", 75698 description="WHITE DRAUGHTS KING", 75699 direction="on", 75700 linebreak="id", 75701 unicodeslot=0x26C1, 75702 }, 75703 [0x26C2]={ 75704 category="so", 75705 description="BLACK DRAUGHTS MAN", 75706 direction="on", 75707 linebreak="id", 75708 unicodeslot=0x26C2, 75709 }, 75710 [0x26C3]={ 75711 category="so", 75712 description="BLACK DRAUGHTS KING", 75713 direction="on", 75714 linebreak="id", 75715 unicodeslot=0x26C3, 75716 }, 75717 [0x26C4]={ 75718 category="so", 75719 cjkwd="w", 75720 description="SNOWMAN WITHOUT SNOW", 75721 direction="on", 75722 linebreak="id", 75723 synonyms={ "light snow" }, 75724 unicodeslot=0x26C4, 75725 variants=variants_emoji, 75726 }, 75727 [0x26C5]={ 75728 category="so", 75729 cjkwd="w", 75730 description="SUN BEHIND CLOUD", 75731 direction="on", 75732 linebreak="id", 75733 synonyms={ "partly cloudy" }, 75734 unicodeslot=0x26C5, 75735 variants=variants_emoji, 75736 }, 75737 [0x26C6]={ 75738 category="so", 75739 cjkwd="a", 75740 description="RAIN", 75741 direction="on", 75742 linebreak="id", 75743 unicodeslot=0x26C6, 75744 }, 75745 [0x26C7]={ 75746 category="so", 75747 cjkwd="a", 75748 description="BLACK SNOWMAN", 75749 direction="on", 75750 linebreak="id", 75751 synonyms={ "heavy snow" }, 75752 unicodeslot=0x26C7, 75753 }, 75754 [0x26C8]={ 75755 category="so", 75756 cjkwd="a", 75757 description="THUNDER CLOUD AND RAIN", 75758 direction="on", 75759 linebreak="id", 75760 synonyms={ "thunderstorm" }, 75761 unicodeslot=0x26C8, 75762 variants=variants_emoji, 75763 }, 75764 [0x26C9]={ 75765 category="so", 75766 cjkwd="a", 75767 description="TURNED WHITE SHOGI PIECE", 75768 direction="on", 75769 linebreak="ai", 75770 unicodeslot=0x26C9, 75771 }, 75772 [0x26CA]={ 75773 category="so", 75774 cjkwd="a", 75775 description="TURNED BLACK SHOGI PIECE", 75776 direction="on", 75777 linebreak="ai", 75778 unicodeslot=0x26CA, 75779 }, 75780 [0x26CB]={ 75781 category="so", 75782 cjkwd="a", 75783 description="WHITE DIAMOND IN SQUARE", 75784 direction="on", 75785 linebreak="ai", 75786 unicodeslot=0x26CB, 75787 }, 75788 [0x26CC]={ 75789 category="so", 75790 cjkwd="a", 75791 description="CROSSING LANES", 75792 direction="on", 75793 linebreak="ai", 75794 synonyms={ "accident" }, 75795 unicodeslot=0x26CC, 75796 }, 75797 [0x26CD]={ 75798 category="so", 75799 cjkwd="a", 75800 description="DISABLED CAR", 75801 direction="on", 75802 linebreak="id", 75803 unicodeslot=0x26CD, 75804 }, 75805 [0x26CE]={ 75806 category="so", 75807 cjkwd="w", 75808 description="OPHIUCHUS", 75809 direction="on", 75810 linebreak="al", 75811 unicodeslot=0x26CE, 75812 }, 75813 [0x26CF]={ 75814 category="so", 75815 cjkwd="a", 75816 description="PICK", 75817 direction="on", 75818 linebreak="id", 75819 synonyms={ "construction" }, 75820 unicodeslot=0x26CF, 75821 variants=variants_emoji, 75822 }, 75823 [0x26D0]={ 75824 category="so", 75825 cjkwd="a", 75826 description="CAR SLIDING", 75827 direction="on", 75828 linebreak="id", 75829 synonyms={ "icy road" }, 75830 unicodeslot=0x26D0, 75831 }, 75832 [0x26D1]={ 75833 category="so", 75834 cjkwd="a", 75835 description="HELMET WITH WHITE CROSS", 75836 direction="on", 75837 linebreak="id", 75838 unicodeslot=0x26D1, 75839 variants=variants_emoji, 75840 }, 75841 [0x26D2]={ 75842 category="so", 75843 cjkwd="a", 75844 description="CIRCLED CROSSING LANES", 75845 direction="on", 75846 linebreak="ai", 75847 synonyms={ "road closed" }, 75848 unicodeslot=0x26D2, 75849 }, 75850 [0x26D3]={ 75851 category="so", 75852 cjkwd="a", 75853 description="CHAINS", 75854 direction="on", 75855 linebreak="id", 75856 unicodeslot=0x26D3, 75857 variants=variants_emoji, 75858 }, 75859 [0x26D4]={ 75860 category="so", 75861 cjkwd="w", 75862 description="NO ENTRY", 75863 direction="on", 75864 linebreak="id", 75865 synonyms={ "do not enter" }, 75866 unicodeslot=0x26D4, 75867 variants=variants_emoji, 75868 }, 75869 [0x26D5]={ 75870 category="so", 75871 cjkwd="a", 75872 description="ALTERNATE ONE-WAY LEFT WAY TRAFFIC", 75873 direction="on", 75874 linebreak="ai", 75875 unicodeslot=0x26D5, 75876 }, 75877 [0x26D6]={ 75878 category="so", 75879 cjkwd="a", 75880 description="BLACK TWO-WAY LEFT WAY TRAFFIC", 75881 direction="on", 75882 linebreak="ai", 75883 unicodeslot=0x26D6, 75884 }, 75885 [0x26D7]={ 75886 category="so", 75887 cjkwd="a", 75888 description="WHITE TWO-WAY LEFT WAY TRAFFIC", 75889 direction="on", 75890 linebreak="ai", 75891 unicodeslot=0x26D7, 75892 }, 75893 [0x26D8]={ 75894 category="so", 75895 cjkwd="a", 75896 description="BLACK LEFT LANE MERGE", 75897 direction="on", 75898 linebreak="id", 75899 unicodeslot=0x26D8, 75900 }, 75901 [0x26D9]={ 75902 category="so", 75903 cjkwd="a", 75904 description="WHITE LEFT LANE MERGE", 75905 direction="on", 75906 linebreak="id", 75907 unicodeslot=0x26D9, 75908 }, 75909 [0x26DA]={ 75910 category="so", 75911 cjkwd="a", 75912 description="DRIVE SLOW SIGN", 75913 direction="on", 75914 linebreak="ai", 75915 unicodeslot=0x26DA, 75916 }, 75917 [0x26DB]={ 75918 category="so", 75919 cjkwd="a", 75920 description="HEAVY WHITE DOWN-POINTING TRIANGLE", 75921 direction="on", 75922 linebreak="ai", 75923 synonyms={ "yield" }, 75924 unicodeslot=0x26DB, 75925 }, 75926 [0x26DC]={ 75927 category="so", 75928 cjkwd="a", 75929 description="LEFT CLOSED ENTRY", 75930 direction="on", 75931 linebreak="id", 75932 unicodeslot=0x26DC, 75933 }, 75934 [0x26DD]={ 75935 category="so", 75936 cjkwd="a", 75937 description="SQUARED SALTIRE", 75938 direction="on", 75939 linebreak="ai", 75940 unicodeslot=0x26DD, 75941 }, 75942 [0x26DE]={ 75943 category="so", 75944 cjkwd="a", 75945 description="FALLING DIAGONAL IN WHITE CIRCLE IN BLACK SQUARE", 75946 direction="on", 75947 linebreak="ai", 75948 unicodeslot=0x26DE, 75949 }, 75950 [0x26DF]={ 75951 category="so", 75952 cjkwd="a", 75953 description="BLACK TRUCK", 75954 direction="on", 75955 linebreak="id", 75956 synonyms={ "black lorry" }, 75957 unicodeslot=0x26DF, 75958 }, 75959 [0x26E0]={ 75960 category="so", 75961 cjkwd="a", 75962 description="RESTRICTED LEFT ENTRY-1", 75963 direction="on", 75964 linebreak="id", 75965 unicodeslot=0x26E0, 75966 }, 75967 [0x26E1]={ 75968 category="so", 75969 cjkwd="a", 75970 description="RESTRICTED LEFT ENTRY-2", 75971 direction="on", 75972 linebreak="id", 75973 unicodeslot=0x26E1, 75974 }, 75975 [0x26E2]={ 75976 category="so", 75977 description="ASTRONOMICAL SYMBOL FOR URANUS", 75978 direction="on", 75979 linebreak="al", 75980 synonyms={ "uranus" }, 75981 unicodeslot=0x26E2, 75982 }, 75983 [0x26E3]={ 75984 category="so", 75985 cjkwd="a", 75986 description="HEAVY CIRCLE WITH STROKE AND TWO DOTS ABOVE", 75987 direction="on", 75988 linebreak="ai", 75989 unicodeslot=0x26E3, 75990 }, 75991 [0x26E4]={ 75992 category="so", 75993 description="PENTAGRAM", 75994 direction="on", 75995 linebreak="al", 75996 synonyms={ "pentangle pentalpha" }, 75997 unicodeslot=0x26E4, 75998 }, 75999 [0x26E5]={ 76000 category="so", 76001 description="RIGHT-HANDED INTERLACED PENTAGRAM", 76002 direction="on", 76003 linebreak="al", 76004 unicodeslot=0x26E5, 76005 }, 76006 [0x26E6]={ 76007 category="so", 76008 description="LEFT-HANDED INTERLACED PENTAGRAM", 76009 direction="on", 76010 linebreak="al", 76011 unicodeslot=0x26E6, 76012 }, 76013 [0x26E7]={ 76014 category="so", 76015 description="INVERTED PENTAGRAM", 76016 direction="on", 76017 linebreak="al", 76018 unicodeslot=0x26E7, 76019 }, 76020 [0x26E8]={ 76021 category="so", 76022 cjkwd="a", 76023 description="BLACK CROSS ON SHIELD", 76024 direction="on", 76025 linebreak="ai", 76026 synonyms={ "hospital" }, 76027 unicodeslot=0x26E8, 76028 }, 76029 [0x26E9]={ 76030 category="so", 76031 cjkwd="a", 76032 description="SHINTO SHRINE", 76033 direction="on", 76034 linebreak="ai", 76035 synonyms={ "torii" }, 76036 unicodeslot=0x26E9, 76037 variants=variants_emoji, 76038 }, 76039 [0x26EA]={ 76040 category="so", 76041 cjkwd="w", 76042 description="CHURCH", 76043 direction="on", 76044 linebreak="id", 76045 unicodeslot=0x26EA, 76046 variants=variants_emoji, 76047 }, 76048 [0x26EB]={ 76049 category="so", 76050 cjkwd="a", 76051 description="CASTLE", 76052 direction="on", 76053 linebreak="ai", 76054 unicodeslot=0x26EB, 76055 }, 76056 [0x26EC]={ 76057 category="so", 76058 cjkwd="a", 76059 description="HISTORIC SITE", 76060 direction="on", 76061 linebreak="ai", 76062 unicodeslot=0x26EC, 76063 }, 76064 [0x26ED]={ 76065 category="so", 76066 cjkwd="a", 76067 description="GEAR WITHOUT HUB", 76068 direction="on", 76069 linebreak="ai", 76070 synonyms={ "factory" }, 76071 unicodeslot=0x26ED, 76072 }, 76073 [0x26EE]={ 76074 category="so", 76075 cjkwd="a", 76076 description="GEAR WITH HANDLES", 76077 direction="on", 76078 linebreak="ai", 76079 synonyms={ "power plant" }, 76080 unicodeslot=0x26EE, 76081 }, 76082 [0x26EF]={ 76083 category="so", 76084 cjkwd="a", 76085 description="MAP SYMBOL FOR LIGHTHOUSE", 76086 direction="on", 76087 linebreak="ai", 76088 unicodeslot=0x26EF, 76089 }, 76090 [0x26F0]={ 76091 category="so", 76092 cjkwd="a", 76093 description="MOUNTAIN", 76094 direction="on", 76095 linebreak="ai", 76096 unicodeslot=0x26F0, 76097 variants=variants_emoji, 76098 }, 76099 [0x26F1]={ 76100 category="so", 76101 cjkwd="a", 76102 description="UMBRELLA ON GROUND", 76103 direction="on", 76104 linebreak="id", 76105 synonyms={ "bathing beach" }, 76106 unicodeslot=0x26F1, 76107 variants=variants_emoji, 76108 }, 76109 [0x26F2]={ 76110 category="so", 76111 cjkwd="w", 76112 description="FOUNTAIN", 76113 direction="on", 76114 linebreak="id", 76115 synonyms={ "park" }, 76116 unicodeslot=0x26F2, 76117 variants=variants_emoji, 76118 }, 76119 [0x26F3]={ 76120 category="so", 76121 cjkwd="w", 76122 description="FLAG IN HOLE", 76123 direction="on", 76124 linebreak="id", 76125 synonyms={ "golf course" }, 76126 unicodeslot=0x26F3, 76127 variants=variants_emoji, 76128 }, 76129 [0x26F4]={ 76130 category="so", 76131 cjkwd="a", 76132 description="FERRY", 76133 direction="on", 76134 linebreak="id", 76135 synonyms={ "boat terminal", "marina or yacht harbour" }, 76136 unicodeslot=0x26F4, 76137 variants=variants_emoji, 76138 }, 76139 [0x26F5]={ 76140 category="so", 76141 cjkwd="w", 76142 description="SAILBOAT", 76143 direction="on", 76144 linebreak="id", 76145 unicodeslot=0x26F5, 76146 variants=variants_emoji, 76147 }, 76148 [0x26F6]={ 76149 category="so", 76150 cjkwd="a", 76151 description="SQUARE FOUR CORNERS", 76152 direction="on", 76153 linebreak="ai", 76154 unicodeslot=0x26F6, 76155 }, 76156 [0x26F7]={ 76157 category="so", 76158 cjkwd="a", 76159 description="SKIER", 76160 direction="on", 76161 linebreak="id", 76162 unicodeslot=0x26F7, 76163 variants=variants_emoji, 76164 }, 76165 [0x26F8]={ 76166 category="so", 76167 cjkwd="a", 76168 description="ICE SKATE", 76169 direction="on", 76170 linebreak="id", 76171 unicodeslot=0x26F8, 76172 variants=variants_emoji, 76173 }, 76174 [0x26F9]={ 76175 category="so", 76176 cjkwd="a", 76177 description="PERSON WITH BALL", 76178 direction="on", 76179 linebreak="eb", 76180 unicodeslot=0x26F9, 76181 variants=variants_emoji, 76182 }, 76183 [0x26FA]={ 76184 category="so", 76185 cjkwd="w", 76186 description="TENT", 76187 direction="on", 76188 linebreak="id", 76189 synonyms={ "camping site" }, 76190 unicodeslot=0x26FA, 76191 variants=variants_emoji, 76192 }, 76193 [0x26FB]={ 76194 category="so", 76195 cjkwd="a", 76196 description="JAPANESE BANK SYMBOL", 76197 direction="on", 76198 linebreak="ai", 76199 unicodeslot=0x26FB, 76200 }, 76201 [0x26FC]={ 76202 category="so", 76203 cjkwd="a", 76204 description="HEADSTONE GRAVEYARD SYMBOL", 76205 direction="on", 76206 linebreak="ai", 76207 synonyms={ "cemetery", "graveyard" }, 76208 unicodeslot=0x26FC, 76209 }, 76210 [0x26FD]={ 76211 category="so", 76212 cjkwd="w", 76213 description="FUEL PUMP", 76214 direction="on", 76215 linebreak="id", 76216 synonyms={ "gas station", "petrol station" }, 76217 unicodeslot=0x26FD, 76218 variants=variants_emoji, 76219 }, 76220 [0x26FE]={ 76221 category="so", 76222 cjkwd="a", 76223 description="CUP ON BLACK SQUARE", 76224 direction="on", 76225 linebreak="id", 76226 synonyms={ "drive-in restaurant" }, 76227 unicodeslot=0x26FE, 76228 }, 76229 [0x26FF]={ 76230 category="so", 76231 cjkwd="a", 76232 description="WHITE FLAG WITH HORIZONTAL MIDDLE BLACK STRIPE", 76233 direction="on", 76234 linebreak="id", 76235 unicodeslot=0x26FF, 76236 }, 76237 [0x2700]={ 76238 category="so", 76239 description="BLACK SAFETY SCISSORS", 76240 direction="on", 76241 linebreak="id", 76242 unicodeslot=0x2700, 76243 }, 76244 [0x2701]={ 76245 category="so", 76246 description="UPPER BLADE SCISSORS", 76247 direction="on", 76248 linebreak="id", 76249 unicodeslot=0x2701, 76250 }, 76251 [0x2702]={ 76252 category="so", 76253 description="BLACK SCISSORS", 76254 direction="on", 76255 linebreak="id", 76256 unicodeslot=0x2702, 76257 variants=variants_emoji, 76258 }, 76259 [0x2703]={ 76260 category="so", 76261 description="LOWER BLADE SCISSORS", 76262 direction="on", 76263 linebreak="id", 76264 unicodeslot=0x2703, 76265 }, 76266 [0x2704]={ 76267 category="so", 76268 description="WHITE SCISSORS", 76269 direction="on", 76270 linebreak="id", 76271 unicodeslot=0x2704, 76272 }, 76273 [0x2705]={ 76274 category="so", 76275 cjkwd="w", 76276 description="WHITE HEAVY CHECK MARK", 76277 direction="on", 76278 linebreak="al", 76279 unicodeslot=0x2705, 76280 }, 76281 [0x2706]={ 76282 category="so", 76283 description="TELEPHONE LOCATION SIGN", 76284 direction="on", 76285 linebreak="al", 76286 unicodeslot=0x2706, 76287 }, 76288 [0x2707]={ 76289 category="so", 76290 description="TAPE DRIVE", 76291 direction="on", 76292 linebreak="al", 76293 unicodeslot=0x2707, 76294 }, 76295 [0x2708]={ 76296 category="so", 76297 description="AIRPLANE", 76298 direction="on", 76299 linebreak="id", 76300 unicodeslot=0x2708, 76301 variants=variants_emoji, 76302 }, 76303 [0x2709]={ 76304 category="so", 76305 description="ENVELOPE", 76306 direction="on", 76307 linebreak="id", 76308 unicodeslot=0x2709, 76309 variants=variants_emoji, 76310 }, 76311 [0x270A]={ 76312 category="so", 76313 cjkwd="w", 76314 description="RAISED FIST", 76315 direction="on", 76316 linebreak="eb", 76317 synonyms={ "paper, scissors game rock in rock" }, 76318 unicodeslot=0x270A, 76319 }, 76320 [0x270B]={ 76321 category="so", 76322 cjkwd="w", 76323 description="RAISED HAND", 76324 direction="on", 76325 linebreak="eb", 76326 synonyms={ "paper, scissors game paper in rock" }, 76327 unicodeslot=0x270B, 76328 }, 76329 [0x270C]={ 76330 category="so", 76331 description="VICTORY HAND", 76332 direction="on", 76333 linebreak="eb", 76334 synonyms={ "paper, scissors game scissors in rock" }, 76335 unicodeslot=0x270C, 76336 variants=variants_emoji, 76337 }, 76338 [0x270D]={ 76339 category="so", 76340 description="WRITING HAND", 76341 direction="on", 76342 linebreak="eb", 76343 unicodeslot=0x270D, 76344 variants=variants_emoji, 76345 }, 76346 [0x270E]={ 76347 category="so", 76348 description="LOWER RIGHT PENCIL", 76349 direction="on", 76350 linebreak="al", 76351 unicodeslot=0x270E, 76352 }, 76353 [0x270F]={ 76354 category="so", 76355 description="PENCIL", 76356 direction="on", 76357 linebreak="al", 76358 unicodeslot=0x270F, 76359 variants=variants_emoji, 76360 }, 76361 [0x2710]={ 76362 category="so", 76363 description="UPPER RIGHT PENCIL", 76364 direction="on", 76365 linebreak="al", 76366 unicodeslot=0x2710, 76367 }, 76368 [0x2711]={ 76369 category="so", 76370 description="WHITE NIB", 76371 direction="on", 76372 linebreak="al", 76373 unicodeslot=0x2711, 76374 }, 76375 [0x2712]={ 76376 category="so", 76377 description="BLACK NIB", 76378 direction="on", 76379 linebreak="al", 76380 unicodeslot=0x2712, 76381 variants=variants_emoji, 76382 }, 76383 [0x2713]={ 76384 category="so", 76385 description="CHECK MARK", 76386 direction="on", 76387 linebreak="al", 76388 mathclass="ordinary", 76389 mathname="checkmark", 76390 unicodeslot=0x2713, 76391 }, 76392 [0x2714]={ 76393 category="so", 76394 description="HEAVY CHECK MARK", 76395 direction="on", 76396 linebreak="al", 76397 unicodeslot=0x2714, 76398 variants=variants_emoji, 76399 }, 76400 [0x2715]={ 76401 category="so", 76402 description="MULTIPLICATION X", 76403 direction="on", 76404 linebreak="al", 76405 unicodeslot=0x2715, 76406 }, 76407 [0x2716]={ 76408 category="so", 76409 description="HEAVY MULTIPLICATION X", 76410 direction="on", 76411 linebreak="al", 76412 unicodeslot=0x2716, 76413 variants=variants_emoji, 76414 }, 76415 [0x2717]={ 76416 category="so", 76417 description="BALLOT X", 76418 direction="on", 76419 linebreak="al", 76420 unicodeslot=0x2717, 76421 }, 76422 [0x2718]={ 76423 category="so", 76424 description="HEAVY BALLOT X", 76425 direction="on", 76426 linebreak="al", 76427 unicodeslot=0x2718, 76428 }, 76429 [0x2719]={ 76430 category="so", 76431 description="OUTLINED GREEK CROSS", 76432 direction="on", 76433 linebreak="al", 76434 unicodeslot=0x2719, 76435 }, 76436 [0x271A]={ 76437 category="so", 76438 description="HEAVY GREEK CROSS", 76439 direction="on", 76440 linebreak="al", 76441 unicodeslot=0x271A, 76442 }, 76443 [0x271B]={ 76444 category="so", 76445 description="OPEN CENTRE CROSS", 76446 direction="on", 76447 linebreak="al", 76448 unicodeslot=0x271B, 76449 }, 76450 [0x271C]={ 76451 category="so", 76452 description="HEAVY OPEN CENTRE CROSS", 76453 direction="on", 76454 linebreak="al", 76455 unicodeslot=0x271C, 76456 }, 76457 [0x271D]={ 76458 category="so", 76459 description="LATIN CROSS", 76460 direction="on", 76461 linebreak="al", 76462 unicodeslot=0x271D, 76463 variants=variants_emoji, 76464 }, 76465 [0x271E]={ 76466 category="so", 76467 description="SHADOWED WHITE LATIN CROSS", 76468 direction="on", 76469 linebreak="al", 76470 unicodeslot=0x271E, 76471 }, 76472 [0x271F]={ 76473 category="so", 76474 description="OUTLINED LATIN CROSS", 76475 direction="on", 76476 linebreak="al", 76477 unicodeslot=0x271F, 76478 }, 76479 [0x2720]={ 76480 category="so", 76481 description="MALTESE CROSS", 76482 direction="on", 76483 linebreak="al", 76484 mathclass="ordinary", 76485 mathname="maltese", 76486 unicodeslot=0x2720, 76487 }, 76488 [0x2721]={ 76489 category="so", 76490 description="STAR OF DAVID", 76491 direction="on", 76492 linebreak="al", 76493 unicodeslot=0x2721, 76494 variants=variants_emoji, 76495 }, 76496 [0x2722]={ 76497 category="so", 76498 description="FOUR TEARDROP-SPOKED ASTERISK", 76499 direction="on", 76500 linebreak="al", 76501 unicodeslot=0x2722, 76502 }, 76503 [0x2723]={ 76504 category="so", 76505 description="FOUR BALLOON-SPOKED ASTERISK", 76506 direction="on", 76507 linebreak="al", 76508 unicodeslot=0x2723, 76509 }, 76510 [0x2724]={ 76511 category="so", 76512 description="HEAVY FOUR BALLOON-SPOKED ASTERISK", 76513 direction="on", 76514 linebreak="al", 76515 unicodeslot=0x2724, 76516 }, 76517 [0x2725]={ 76518 category="so", 76519 description="FOUR CLUB-SPOKED ASTERISK", 76520 direction="on", 76521 linebreak="al", 76522 unicodeslot=0x2725, 76523 }, 76524 [0x2726]={ 76525 category="so", 76526 description="BLACK FOUR POINTED STAR", 76527 direction="on", 76528 linebreak="al", 76529 unicodeslot=0x2726, 76530 }, 76531 [0x2727]={ 76532 category="so", 76533 description="WHITE FOUR POINTED STAR", 76534 direction="on", 76535 linebreak="al", 76536 unicodeslot=0x2727, 76537 }, 76538 [0x2728]={ 76539 category="so", 76540 cjkwd="w", 76541 description="SPARKLES", 76542 direction="on", 76543 linebreak="al", 76544 unicodeslot=0x2728, 76545 }, 76546 [0x2729]={ 76547 category="so", 76548 description="STRESS OUTLINED WHITE STAR", 76549 direction="on", 76550 linebreak="al", 76551 unicodeslot=0x2729, 76552 }, 76553 [0x272A]={ 76554 category="so", 76555 description="CIRCLED WHITE STAR", 76556 direction="on", 76557 linebreak="al", 76558 unicodeslot=0x272A, 76559 }, 76560 [0x272B]={ 76561 category="so", 76562 description="OPEN CENTRE BLACK STAR", 76563 direction="on", 76564 linebreak="al", 76565 unicodeslot=0x272B, 76566 }, 76567 [0x272C]={ 76568 category="so", 76569 description="BLACK CENTRE WHITE STAR", 76570 direction="on", 76571 linebreak="al", 76572 unicodeslot=0x272C, 76573 }, 76574 [0x272D]={ 76575 category="so", 76576 description="OUTLINED BLACK STAR", 76577 direction="on", 76578 linebreak="al", 76579 unicodeslot=0x272D, 76580 }, 76581 [0x272E]={ 76582 category="so", 76583 description="HEAVY OUTLINED BLACK STAR", 76584 direction="on", 76585 linebreak="al", 76586 unicodeslot=0x272E, 76587 }, 76588 [0x272F]={ 76589 category="so", 76590 description="PINWHEEL STAR", 76591 direction="on", 76592 linebreak="al", 76593 unicodeslot=0x272F, 76594 }, 76595 [0x2730]={ 76596 category="so", 76597 description="SHADOWED WHITE STAR", 76598 direction="on", 76599 linebreak="al", 76600 unicodeslot=0x2730, 76601 }, 76602 [0x2731]={ 76603 category="so", 76604 description="HEAVY ASTERISK", 76605 direction="on", 76606 linebreak="al", 76607 unicodeslot=0x2731, 76608 }, 76609 [0x2732]={ 76610 category="so", 76611 description="OPEN CENTRE ASTERISK", 76612 direction="on", 76613 linebreak="al", 76614 unicodeslot=0x2732, 76615 }, 76616 [0x2733]={ 76617 category="so", 76618 description="EIGHT SPOKED ASTERISK", 76619 direction="on", 76620 linebreak="al", 76621 unicodeslot=0x2733, 76622 variants=variants_emoji, 76623 }, 76624 [0x2734]={ 76625 category="so", 76626 description="EIGHT POINTED BLACK STAR", 76627 direction="on", 76628 linebreak="al", 76629 unicodeslot=0x2734, 76630 variants=variants_emoji, 76631 }, 76632 [0x2735]={ 76633 category="so", 76634 description="EIGHT POINTED PINWHEEL STAR", 76635 direction="on", 76636 linebreak="al", 76637 unicodeslot=0x2735, 76638 }, 76639 [0x2736]={ 76640 category="so", 76641 description="SIX POINTED BLACK STAR", 76642 direction="on", 76643 linebreak="al", 76644 synonyms={ "sextile" }, 76645 unicodeslot=0x2736, 76646 }, 76647 [0x2737]={ 76648 category="so", 76649 description="EIGHT POINTED RECTILINEAR BLACK STAR", 76650 direction="on", 76651 linebreak="al", 76652 unicodeslot=0x2737, 76653 }, 76654 [0x2738]={ 76655 category="so", 76656 description="HEAVY EIGHT POINTED RECTILINEAR BLACK STAR", 76657 direction="on", 76658 linebreak="al", 76659 unicodeslot=0x2738, 76660 }, 76661 [0x2739]={ 76662 category="so", 76663 description="TWELVE POINTED BLACK STAR", 76664 direction="on", 76665 linebreak="al", 76666 unicodeslot=0x2739, 76667 }, 76668 [0x273A]={ 76669 category="so", 76670 description="SIXTEEN POINTED ASTERISK", 76671 direction="on", 76672 linebreak="al", 76673 synonyms={ "starburst" }, 76674 unicodeslot=0x273A, 76675 }, 76676 [0x273B]={ 76677 category="so", 76678 description="TEARDROP-SPOKED ASTERISK", 76679 direction="on", 76680 linebreak="al", 76681 unicodeslot=0x273B, 76682 }, 76683 [0x273C]={ 76684 category="so", 76685 description="OPEN CENTRE TEARDROP-SPOKED ASTERISK", 76686 direction="on", 76687 linebreak="al", 76688 unicodeslot=0x273C, 76689 }, 76690 [0x273D]={ 76691 category="so", 76692 cjkwd="a", 76693 description="HEAVY TEARDROP-SPOKED ASTERISK", 76694 direction="on", 76695 linebreak="al", 76696 unicodeslot=0x273D, 76697 }, 76698 [0x273E]={ 76699 category="so", 76700 description="SIX PETALLED BLACK AND WHITE FLORETTE", 76701 direction="on", 76702 linebreak="al", 76703 unicodeslot=0x273E, 76704 }, 76705 [0x273F]={ 76706 category="so", 76707 description="BLACK FLORETTE", 76708 direction="on", 76709 linebreak="al", 76710 unicodeslot=0x273F, 76711 }, 76712 [0x2740]={ 76713 category="so", 76714 description="WHITE FLORETTE", 76715 direction="on", 76716 linebreak="al", 76717 unicodeslot=0x2740, 76718 }, 76719 [0x2741]={ 76720 category="so", 76721 description="EIGHT PETALLED OUTLINED BLACK FLORETTE", 76722 direction="on", 76723 linebreak="al", 76724 unicodeslot=0x2741, 76725 }, 76726 [0x2742]={ 76727 category="so", 76728 description="CIRCLED OPEN CENTRE EIGHT POINTED STAR", 76729 direction="on", 76730 linebreak="al", 76731 unicodeslot=0x2742, 76732 }, 76733 [0x2743]={ 76734 category="so", 76735 description="HEAVY TEARDROP-SPOKED PINWHEEL ASTERISK", 76736 direction="on", 76737 linebreak="al", 76738 unicodeslot=0x2743, 76739 }, 76740 [0x2744]={ 76741 category="so", 76742 description="SNOWFLAKE", 76743 direction="on", 76744 linebreak="al", 76745 unicodeslot=0x2744, 76746 variants=variants_emoji, 76747 }, 76748 [0x2745]={ 76749 category="so", 76750 description="TIGHT TRIFOLIATE SNOWFLAKE", 76751 direction="on", 76752 linebreak="al", 76753 unicodeslot=0x2745, 76754 }, 76755 [0x2746]={ 76756 category="so", 76757 description="HEAVY CHEVRON SNOWFLAKE", 76758 direction="on", 76759 linebreak="al", 76760 unicodeslot=0x2746, 76761 }, 76762 [0x2747]={ 76763 category="so", 76764 description="SPARKLE", 76765 direction="on", 76766 linebreak="al", 76767 unicodeslot=0x2747, 76768 variants=variants_emoji, 76769 }, 76770 [0x2748]={ 76771 category="so", 76772 description="HEAVY SPARKLE", 76773 direction="on", 76774 linebreak="al", 76775 unicodeslot=0x2748, 76776 }, 76777 [0x2749]={ 76778 category="so", 76779 description="BALLOON-SPOKED ASTERISK", 76780 direction="on", 76781 linebreak="al", 76782 synonyms={ "jack" }, 76783 unicodeslot=0x2749, 76784 }, 76785 [0x274A]={ 76786 category="so", 76787 description="EIGHT TEARDROP-SPOKED PROPELLER ASTERISK", 76788 direction="on", 76789 linebreak="al", 76790 unicodeslot=0x274A, 76791 }, 76792 [0x274B]={ 76793 category="so", 76794 description="HEAVY EIGHT TEARDROP-SPOKED PROPELLER ASTERISK", 76795 direction="on", 76796 linebreak="al", 76797 synonyms={ "turbofan" }, 76798 unicodeslot=0x274B, 76799 }, 76800 [0x274C]={ 76801 category="so", 76802 cjkwd="w", 76803 description="CROSS MARK", 76804 direction="on", 76805 linebreak="al", 76806 unicodeslot=0x274C, 76807 }, 76808 [0x274D]={ 76809 category="so", 76810 description="SHADOWED WHITE CIRCLE", 76811 direction="on", 76812 linebreak="al", 76813 unicodeslot=0x274D, 76814 }, 76815 [0x274E]={ 76816 category="so", 76817 cjkwd="w", 76818 description="NEGATIVE SQUARED CROSS MARK", 76819 direction="on", 76820 linebreak="al", 76821 unicodeslot=0x274E, 76822 }, 76823 [0x274F]={ 76824 category="so", 76825 description="LOWER RIGHT DROP-SHADOWED WHITE SQUARE", 76826 direction="on", 76827 linebreak="al", 76828 unicodeslot=0x274F, 76829 }, 76830 [0x2750]={ 76831 category="so", 76832 description="UPPER RIGHT DROP-SHADOWED WHITE SQUARE", 76833 direction="on", 76834 linebreak="al", 76835 unicodeslot=0x2750, 76836 }, 76837 [0x2751]={ 76838 category="so", 76839 description="LOWER RIGHT SHADOWED WHITE SQUARE", 76840 direction="on", 76841 linebreak="al", 76842 unicodeslot=0x2751, 76843 }, 76844 [0x2752]={ 76845 category="so", 76846 description="UPPER RIGHT SHADOWED WHITE SQUARE", 76847 direction="on", 76848 linebreak="al", 76849 unicodeslot=0x2752, 76850 }, 76851 [0x2753]={ 76852 category="so", 76853 cjkwd="w", 76854 description="BLACK QUESTION MARK ORNAMENT", 76855 direction="on", 76856 linebreak="al", 76857 unicodeslot=0x2753, 76858 }, 76859 [0x2754]={ 76860 category="so", 76861 cjkwd="w", 76862 description="WHITE QUESTION MARK ORNAMENT", 76863 direction="on", 76864 linebreak="al", 76865 unicodeslot=0x2754, 76866 }, 76867 [0x2755]={ 76868 category="so", 76869 cjkwd="w", 76870 description="WHITE EXCLAMATION MARK ORNAMENT", 76871 direction="on", 76872 linebreak="al", 76873 unicodeslot=0x2755, 76874 }, 76875 [0x2756]={ 76876 category="so", 76877 description="BLACK DIAMOND MINUS WHITE X", 76878 direction="on", 76879 linebreak="al", 76880 unicodeslot=0x2756, 76881 }, 76882 [0x2757]={ 76883 category="so", 76884 cjkwd="w", 76885 description="HEAVY EXCLAMATION MARK SYMBOL", 76886 direction="on", 76887 linebreak="ai", 76888 unicodeslot=0x2757, 76889 variants=variants_emoji, 76890 }, 76891 [0x2758]={ 76892 category="so", 76893 description="LIGHT VERTICAL BAR", 76894 direction="on", 76895 linebreak="al", 76896 unicodeslot=0x2758, 76897 }, 76898 [0x2759]={ 76899 category="so", 76900 description="MEDIUM VERTICAL BAR", 76901 direction="on", 76902 linebreak="al", 76903 unicodeslot=0x2759, 76904 }, 76905 [0x275A]={ 76906 category="so", 76907 description="HEAVY VERTICAL BAR", 76908 direction="on", 76909 linebreak="al", 76910 unicodeslot=0x275A, 76911 }, 76912 [0x275B]={ 76913 category="so", 76914 description="HEAVY SINGLE TURNED COMMA QUOTATION MARK ORNAMENT", 76915 direction="on", 76916 linebreak="qu", 76917 unicodeslot=0x275B, 76918 }, 76919 [0x275C]={ 76920 category="so", 76921 description="HEAVY SINGLE COMMA QUOTATION MARK ORNAMENT", 76922 direction="on", 76923 linebreak="qu", 76924 unicodeslot=0x275C, 76925 }, 76926 [0x275D]={ 76927 category="so", 76928 description="HEAVY DOUBLE TURNED COMMA QUOTATION MARK ORNAMENT", 76929 direction="on", 76930 linebreak="qu", 76931 unicodeslot=0x275D, 76932 }, 76933 [0x275E]={ 76934 category="so", 76935 description="HEAVY DOUBLE COMMA QUOTATION MARK ORNAMENT", 76936 direction="on", 76937 linebreak="qu", 76938 unicodeslot=0x275E, 76939 }, 76940 [0x275F]={ 76941 category="so", 76942 description="HEAVY LOW SINGLE COMMA QUOTATION MARK ORNAMENT", 76943 direction="on", 76944 linebreak="qu", 76945 unicodeslot=0x275F, 76946 }, 76947 [0x2760]={ 76948 category="so", 76949 description="HEAVY LOW DOUBLE COMMA QUOTATION MARK ORNAMENT", 76950 direction="on", 76951 linebreak="qu", 76952 unicodeslot=0x2760, 76953 }, 76954 [0x2761]={ 76955 category="so", 76956 description="CURVED STEM PARAGRAPH SIGN ORNAMENT", 76957 direction="on", 76958 linebreak="al", 76959 unicodeslot=0x2761, 76960 }, 76961 [0x2762]={ 76962 category="so", 76963 description="HEAVY EXCLAMATION MARK ORNAMENT", 76964 direction="on", 76965 linebreak="ex", 76966 unicodeslot=0x2762, 76967 }, 76968 [0x2763]={ 76969 category="so", 76970 description="HEAVY HEART EXCLAMATION MARK ORNAMENT", 76971 direction="on", 76972 linebreak="ex", 76973 unicodeslot=0x2763, 76974 variants=variants_emoji, 76975 }, 76976 [0x2764]={ 76977 category="so", 76978 description="HEAVY BLACK HEART", 76979 direction="on", 76980 linebreak="id", 76981 unicodeslot=0x2764, 76982 variants=variants_emoji, 76983 }, 76984 [0x2765]={ 76985 category="so", 76986 description="ROTATED HEAVY BLACK HEART BULLET", 76987 direction="on", 76988 linebreak="al", 76989 unicodeslot=0x2765, 76990 }, 76991 [0x2766]={ 76992 category="so", 76993 description="FLORAL HEART", 76994 direction="on", 76995 linebreak="al", 76996 synonyms={ "aldus leaf" }, 76997 unicodeslot=0x2766, 76998 }, 76999 [0x2767]={ 77000 category="so", 77001 description="ROTATED FLORAL HEART BULLET", 77002 direction="on", 77003 linebreak="al", 77004 synonyms={ "hedera", "ivy leaf" }, 77005 unicodeslot=0x2767, 77006 }, 77007 [0x2768]={ 77008 category="ps", 77009 description="MEDIUM LEFT PARENTHESIS ORNAMENT", 77010 direction="on", 77011 linebreak="op", 77012 mirror=0x2769, 77013 unicodeslot=0x2768, 77014 }, 77015 [0x2769]={ 77016 category="pe", 77017 description="MEDIUM RIGHT PARENTHESIS ORNAMENT", 77018 direction="on", 77019 linebreak="cl", 77020 mirror=0x2768, 77021 unicodeslot=0x2769, 77022 }, 77023 [0x276A]={ 77024 category="ps", 77025 description="MEDIUM FLATTENED LEFT PARENTHESIS ORNAMENT", 77026 direction="on", 77027 linebreak="op", 77028 mirror=0x276B, 77029 unicodeslot=0x276A, 77030 }, 77031 [0x276B]={ 77032 category="pe", 77033 description="MEDIUM FLATTENED RIGHT PARENTHESIS ORNAMENT", 77034 direction="on", 77035 linebreak="cl", 77036 mirror=0x276A, 77037 unicodeslot=0x276B, 77038 }, 77039 [0x276C]={ 77040 category="ps", 77041 description="MEDIUM LEFT-POINTING ANGLE BRACKET ORNAMENT", 77042 direction="on", 77043 linebreak="op", 77044 mirror=0x276D, 77045 unicodeslot=0x276C, 77046 }, 77047 [0x276D]={ 77048 category="pe", 77049 description="MEDIUM RIGHT-POINTING ANGLE BRACKET ORNAMENT", 77050 direction="on", 77051 linebreak="cl", 77052 mirror=0x276C, 77053 unicodeslot=0x276D, 77054 }, 77055 [0x276E]={ 77056 category="ps", 77057 description="HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT", 77058 direction="on", 77059 linebreak="op", 77060 mirror=0x276F, 77061 unicodeslot=0x276E, 77062 }, 77063 [0x276F]={ 77064 category="pe", 77065 description="HEAVY RIGHT-POINTING ANGLE QUOTATION MARK ORNAMENT", 77066 direction="on", 77067 linebreak="cl", 77068 mirror=0x276E, 77069 unicodeslot=0x276F, 77070 }, 77071 [0x2770]={ 77072 category="ps", 77073 description="HEAVY LEFT-POINTING ANGLE BRACKET ORNAMENT", 77074 direction="on", 77075 linebreak="op", 77076 mirror=0x2771, 77077 unicodeslot=0x2770, 77078 }, 77079 [0x2771]={ 77080 category="pe", 77081 description="HEAVY RIGHT-POINTING ANGLE BRACKET ORNAMENT", 77082 direction="on", 77083 linebreak="cl", 77084 mirror=0x2770, 77085 unicodeslot=0x2771, 77086 }, 77087 [0x2772]={ 77088 category="ps", 77089 description="LIGHT LEFT TORTOISE SHELL BRACKET ORNAMENT", 77090 direction="on", 77091 linebreak="op", 77092 mirror=0x2773, 77093 unicodeslot=0x2772, 77094 }, 77095 [0x2773]={ 77096 category="pe", 77097 description="LIGHT RIGHT TORTOISE SHELL BRACKET ORNAMENT", 77098 direction="on", 77099 linebreak="cl", 77100 mirror=0x2772, 77101 unicodeslot=0x2773, 77102 }, 77103 [0x2774]={ 77104 category="ps", 77105 description="MEDIUM LEFT CURLY BRACKET ORNAMENT", 77106 direction="on", 77107 linebreak="op", 77108 mirror=0x2775, 77109 unicodeslot=0x2774, 77110 }, 77111 [0x2775]={ 77112 category="pe", 77113 description="MEDIUM RIGHT CURLY BRACKET ORNAMENT", 77114 direction="on", 77115 linebreak="cl", 77116 mirror=0x2774, 77117 unicodeslot=0x2775, 77118 }, 77119 [0x2776]={ 77120 category="no", 77121 cjkwd="a", 77122 description="DINGBAT NEGATIVE CIRCLED DIGIT ONE", 77123 direction="on", 77124 linebreak="ai", 77125 unicodeslot=0x2776, 77126 }, 77127 [0x2777]={ 77128 category="no", 77129 cjkwd="a", 77130 description="DINGBAT NEGATIVE CIRCLED DIGIT TWO", 77131 direction="on", 77132 linebreak="ai", 77133 unicodeslot=0x2777, 77134 }, 77135 [0x2778]={ 77136 category="no", 77137 cjkwd="a", 77138 description="DINGBAT NEGATIVE CIRCLED DIGIT THREE", 77139 direction="on", 77140 linebreak="ai", 77141 unicodeslot=0x2778, 77142 }, 77143 [0x2779]={ 77144 category="no", 77145 cjkwd="a", 77146 description="DINGBAT NEGATIVE CIRCLED DIGIT FOUR", 77147 direction="on", 77148 linebreak="ai", 77149 unicodeslot=0x2779, 77150 }, 77151 [0x277A]={ 77152 category="no", 77153 cjkwd="a", 77154 description="DINGBAT NEGATIVE CIRCLED DIGIT FIVE", 77155 direction="on", 77156 linebreak="ai", 77157 unicodeslot=0x277A, 77158 }, 77159 [0x277B]={ 77160 category="no", 77161 cjkwd="a", 77162 description="DINGBAT NEGATIVE CIRCLED DIGIT SIX", 77163 direction="on", 77164 linebreak="ai", 77165 unicodeslot=0x277B, 77166 }, 77167 [0x277C]={ 77168 category="no", 77169 cjkwd="a", 77170 description="DINGBAT NEGATIVE CIRCLED DIGIT SEVEN", 77171 direction="on", 77172 linebreak="ai", 77173 unicodeslot=0x277C, 77174 }, 77175 [0x277D]={ 77176 category="no", 77177 cjkwd="a", 77178 description="DINGBAT NEGATIVE CIRCLED DIGIT EIGHT", 77179 direction="on", 77180 linebreak="ai", 77181 unicodeslot=0x277D, 77182 }, 77183 [0x277E]={ 77184 category="no", 77185 cjkwd="a", 77186 description="DINGBAT NEGATIVE CIRCLED DIGIT NINE", 77187 direction="on", 77188 linebreak="ai", 77189 unicodeslot=0x277E, 77190 }, 77191 [0x277F]={ 77192 category="no", 77193 cjkwd="a", 77194 description="DINGBAT NEGATIVE CIRCLED NUMBER TEN", 77195 direction="on", 77196 linebreak="ai", 77197 unicodeslot=0x277F, 77198 }, 77199 [0x2780]={ 77200 category="no", 77201 description="DINGBAT CIRCLED SANS-SERIF DIGIT ONE", 77202 direction="on", 77203 linebreak="ai", 77204 unicodeslot=0x2780, 77205 }, 77206 [0x2781]={ 77207 category="no", 77208 description="DINGBAT CIRCLED SANS-SERIF DIGIT TWO", 77209 direction="on", 77210 linebreak="ai", 77211 unicodeslot=0x2781, 77212 }, 77213 [0x2782]={ 77214 category="no", 77215 description="DINGBAT CIRCLED SANS-SERIF DIGIT THREE", 77216 direction="on", 77217 linebreak="ai", 77218 unicodeslot=0x2782, 77219 }, 77220 [0x2783]={ 77221 category="no", 77222 description="DINGBAT CIRCLED SANS-SERIF DIGIT FOUR", 77223 direction="on", 77224 linebreak="ai", 77225 unicodeslot=0x2783, 77226 }, 77227 [0x2784]={ 77228 category="no", 77229 description="DINGBAT CIRCLED SANS-SERIF DIGIT FIVE", 77230 direction="on", 77231 linebreak="ai", 77232 unicodeslot=0x2784, 77233 }, 77234 [0x2785]={ 77235 category="no", 77236 description="DINGBAT CIRCLED SANS-SERIF DIGIT SIX", 77237 direction="on", 77238 linebreak="ai", 77239 unicodeslot=0x2785, 77240 }, 77241 [0x2786]={ 77242 category="no", 77243 description="DINGBAT CIRCLED SANS-SERIF DIGIT SEVEN", 77244 direction="on", 77245 linebreak="ai", 77246 unicodeslot=0x2786, 77247 }, 77248 [0x2787]={ 77249 category="no", 77250 description="DINGBAT CIRCLED SANS-SERIF DIGIT EIGHT", 77251 direction="on", 77252 linebreak="ai", 77253 unicodeslot=0x2787, 77254 }, 77255 [0x2788]={ 77256 category="no", 77257 description="DINGBAT CIRCLED SANS-SERIF DIGIT NINE", 77258 direction="on", 77259 linebreak="ai", 77260 unicodeslot=0x2788, 77261 }, 77262 [0x2789]={ 77263 category="no", 77264 description="DINGBAT CIRCLED SANS-SERIF NUMBER TEN", 77265 direction="on", 77266 linebreak="ai", 77267 unicodeslot=0x2789, 77268 }, 77269 [0x278A]={ 77270 category="no", 77271 description="DINGBAT NEGATIVE CIRCLED SANS-SERIF DIGIT ONE", 77272 direction="on", 77273 linebreak="ai", 77274 unicodeslot=0x278A, 77275 }, 77276 [0x278B]={ 77277 category="no", 77278 description="DINGBAT NEGATIVE CIRCLED SANS-SERIF DIGIT TWO", 77279 direction="on", 77280 linebreak="ai", 77281 unicodeslot=0x278B, 77282 }, 77283 [0x278C]={ 77284 category="no", 77285 description="DINGBAT NEGATIVE CIRCLED SANS-SERIF DIGIT THREE", 77286 direction="on", 77287 linebreak="ai", 77288 unicodeslot=0x278C, 77289 }, 77290 [0x278D]={ 77291 category="no", 77292 description="DINGBAT NEGATIVE CIRCLED SANS-SERIF DIGIT FOUR", 77293 direction="on", 77294 linebreak="ai", 77295 unicodeslot=0x278D, 77296 }, 77297 [0x278E]={ 77298 category="no", 77299 description="DINGBAT NEGATIVE CIRCLED SANS-SERIF DIGIT FIVE", 77300 direction="on", 77301 linebreak="ai", 77302 unicodeslot=0x278E, 77303 }, 77304 [0x278F]={ 77305 category="no", 77306 description="DINGBAT NEGATIVE CIRCLED SANS-SERIF DIGIT SIX", 77307 direction="on", 77308 linebreak="ai", 77309 unicodeslot=0x278F, 77310 }, 77311 [0x2790]={ 77312 category="no", 77313 description="DINGBAT NEGATIVE CIRCLED SANS-SERIF DIGIT SEVEN", 77314 direction="on", 77315 linebreak="ai", 77316 unicodeslot=0x2790, 77317 }, 77318 [0x2791]={ 77319 category="no", 77320 description="DINGBAT NEGATIVE CIRCLED SANS-SERIF DIGIT EIGHT", 77321 direction="on", 77322 linebreak="ai", 77323 unicodeslot=0x2791, 77324 }, 77325 [0x2792]={ 77326 category="no", 77327 description="DINGBAT NEGATIVE CIRCLED SANS-SERIF DIGIT NINE", 77328 direction="on", 77329 linebreak="ai", 77330 unicodeslot=0x2792, 77331 }, 77332 [0x2793]={ 77333 category="no", 77334 description="DINGBAT NEGATIVE CIRCLED SANS-SERIF NUMBER TEN", 77335 direction="on", 77336 linebreak="ai", 77337 unicodeslot=0x2793, 77338 }, 77339 [0x2794]={ 77340 category="so", 77341 description="HEAVY WIDE-HEADED RIGHTWARDS ARROW", 77342 direction="on", 77343 linebreak="al", 77344 unicodeslot=0x2794, 77345 }, 77346 [0x2795]={ 77347 category="so", 77348 cjkwd="w", 77349 description="HEAVY PLUS SIGN", 77350 direction="on", 77351 linebreak="al", 77352 unicodeslot=0x2795, 77353 }, 77354 [0x2796]={ 77355 category="so", 77356 cjkwd="w", 77357 description="HEAVY MINUS SIGN", 77358 direction="on", 77359 linebreak="al", 77360 unicodeslot=0x2796, 77361 }, 77362 [0x2797]={ 77363 category="so", 77364 cjkwd="w", 77365 description="HEAVY DIVISION SIGN", 77366 direction="on", 77367 linebreak="al", 77368 unicodeslot=0x2797, 77369 }, 77370 [0x2798]={ 77371 category="so", 77372 description="HEAVY SOUTH EAST ARROW", 77373 direction="on", 77374 linebreak="al", 77375 unicodeslot=0x2798, 77376 }, 77377 [0x2799]={ 77378 category="so", 77379 description="HEAVY RIGHTWARDS ARROW", 77380 direction="on", 77381 linebreak="al", 77382 unicodeslot=0x2799, 77383 }, 77384 [0x279A]={ 77385 category="so", 77386 description="HEAVY NORTH EAST ARROW", 77387 direction="on", 77388 linebreak="al", 77389 unicodeslot=0x279A, 77390 }, 77391 [0x279B]={ 77392 category="so", 77393 description="DRAFTING POINT RIGHTWARDS ARROW", 77394 direction="on", 77395 linebreak="al", 77396 unicodeslot=0x279B, 77397 }, 77398 [0x279C]={ 77399 category="so", 77400 description="HEAVY ROUND-TIPPED RIGHTWARDS ARROW", 77401 direction="on", 77402 linebreak="al", 77403 unicodeslot=0x279C, 77404 }, 77405 [0x279D]={ 77406 category="so", 77407 description="TRIANGLE-HEADED RIGHTWARDS ARROW", 77408 direction="on", 77409 linebreak="al", 77410 unicodeslot=0x279D, 77411 }, 77412 [0x279E]={ 77413 category="so", 77414 description="HEAVY TRIANGLE-HEADED RIGHTWARDS ARROW", 77415 direction="on", 77416 linebreak="al", 77417 unicodeslot=0x279E, 77418 }, 77419 [0x279F]={ 77420 category="so", 77421 description="DASHED TRIANGLE-HEADED RIGHTWARDS ARROW", 77422 direction="on", 77423 linebreak="al", 77424 unicodeslot=0x279F, 77425 }, 77426 [0x27A0]={ 77427 category="so", 77428 description="HEAVY DASHED TRIANGLE-HEADED RIGHTWARDS ARROW", 77429 direction="on", 77430 linebreak="al", 77431 unicodeslot=0x27A0, 77432 }, 77433 [0x27A1]={ 77434 category="so", 77435 description="BLACK RIGHTWARDS ARROW", 77436 direction="on", 77437 linebreak="al", 77438 unicodeslot=0x27A1, 77439 variants=variants_emoji, 77440 }, 77441 [0x27A2]={ 77442 category="so", 77443 description="THREE-D TOP-LIGHTED RIGHTWARDS ARROWHEAD", 77444 direction="on", 77445 linebreak="al", 77446 unicodeslot=0x27A2, 77447 }, 77448 [0x27A3]={ 77449 category="so", 77450 description="THREE-D BOTTOM-LIGHTED RIGHTWARDS ARROWHEAD", 77451 direction="on", 77452 linebreak="al", 77453 unicodeslot=0x27A3, 77454 }, 77455 [0x27A4]={ 77456 category="so", 77457 description="BLACK RIGHTWARDS ARROWHEAD", 77458 direction="on", 77459 linebreak="al", 77460 unicodeslot=0x27A4, 77461 }, 77462 [0x27A5]={ 77463 category="so", 77464 description="HEAVY BLACK CURVED DOWNWARDS AND RIGHTWARDS ARROW", 77465 direction="on", 77466 linebreak="al", 77467 unicodeslot=0x27A5, 77468 }, 77469 [0x27A6]={ 77470 category="so", 77471 description="HEAVY BLACK CURVED UPWARDS AND RIGHTWARDS ARROW", 77472 direction="on", 77473 linebreak="al", 77474 unicodeslot=0x27A6, 77475 }, 77476 [0x27A7]={ 77477 category="so", 77478 description="SQUAT BLACK RIGHTWARDS ARROW", 77479 direction="on", 77480 linebreak="al", 77481 unicodeslot=0x27A7, 77482 }, 77483 [0x27A8]={ 77484 category="so", 77485 description="HEAVY CONCAVE-POINTED BLACK RIGHTWARDS ARROW", 77486 direction="on", 77487 linebreak="al", 77488 unicodeslot=0x27A8, 77489 }, 77490 [0x27A9]={ 77491 category="so", 77492 description="RIGHT-SHADED WHITE RIGHTWARDS ARROW", 77493 direction="on", 77494 linebreak="al", 77495 unicodeslot=0x27A9, 77496 }, 77497 [0x27AA]={ 77498 category="so", 77499 description="LEFT-SHADED WHITE RIGHTWARDS ARROW", 77500 direction="on", 77501 linebreak="al", 77502 unicodeslot=0x27AA, 77503 }, 77504 [0x27AB]={ 77505 category="so", 77506 description="BACK-TILTED SHADOWED WHITE RIGHTWARDS ARROW", 77507 direction="on", 77508 linebreak="al", 77509 unicodeslot=0x27AB, 77510 }, 77511 [0x27AC]={ 77512 category="so", 77513 description="FRONT-TILTED SHADOWED WHITE RIGHTWARDS ARROW", 77514 direction="on", 77515 linebreak="al", 77516 unicodeslot=0x27AC, 77517 }, 77518 [0x27AD]={ 77519 category="so", 77520 description="HEAVY LOWER RIGHT-SHADOWED WHITE RIGHTWARDS ARROW", 77521 direction="on", 77522 linebreak="al", 77523 unicodeslot=0x27AD, 77524 }, 77525 [0x27AE]={ 77526 category="so", 77527 description="HEAVY UPPER RIGHT-SHADOWED WHITE RIGHTWARDS ARROW", 77528 direction="on", 77529 linebreak="al", 77530 unicodeslot=0x27AE, 77531 }, 77532 [0x27AF]={ 77533 category="so", 77534 description="NOTCHED LOWER RIGHT-SHADOWED WHITE RIGHTWARDS ARROW", 77535 direction="on", 77536 linebreak="al", 77537 unicodeslot=0x27AF, 77538 }, 77539 [0x27B0]={ 77540 category="so", 77541 cjkwd="w", 77542 description="CURLY LOOP", 77543 direction="on", 77544 linebreak="al", 77545 unicodeslot=0x27B0, 77546 }, 77547 [0x27B1]={ 77548 category="so", 77549 description="NOTCHED UPPER RIGHT-SHADOWED WHITE RIGHTWARDS ARROW", 77550 direction="on", 77551 linebreak="al", 77552 unicodeslot=0x27B1, 77553 }, 77554 [0x27B2]={ 77555 category="so", 77556 description="CIRCLED HEAVY WHITE RIGHTWARDS ARROW", 77557 direction="on", 77558 linebreak="al", 77559 unicodeslot=0x27B2, 77560 }, 77561 [0x27B3]={ 77562 category="so", 77563 description="WHITE-FEATHERED RIGHTWARDS ARROW", 77564 direction="on", 77565 linebreak="al", 77566 unicodeslot=0x27B3, 77567 }, 77568 [0x27B4]={ 77569 category="so", 77570 description="BLACK-FEATHERED SOUTH EAST ARROW", 77571 direction="on", 77572 linebreak="al", 77573 unicodeslot=0x27B4, 77574 }, 77575 [0x27B5]={ 77576 category="so", 77577 description="BLACK-FEATHERED RIGHTWARDS ARROW", 77578 direction="on", 77579 linebreak="al", 77580 unicodeslot=0x27B5, 77581 }, 77582 [0x27B6]={ 77583 category="so", 77584 description="BLACK-FEATHERED NORTH EAST ARROW", 77585 direction="on", 77586 linebreak="al", 77587 unicodeslot=0x27B6, 77588 }, 77589 [0x27B7]={ 77590 category="so", 77591 description="HEAVY BLACK-FEATHERED SOUTH EAST ARROW", 77592 direction="on", 77593 linebreak="al", 77594 unicodeslot=0x27B7, 77595 }, 77596 [0x27B8]={ 77597 category="so", 77598 description="HEAVY BLACK-FEATHERED RIGHTWARDS ARROW", 77599 direction="on", 77600 linebreak="al", 77601 unicodeslot=0x27B8, 77602 }, 77603 [0x27B9]={ 77604 category="so", 77605 description="HEAVY BLACK-FEATHERED NORTH EAST ARROW", 77606 direction="on", 77607 linebreak="al", 77608 unicodeslot=0x27B9, 77609 }, 77610 [0x27BA]={ 77611 category="so", 77612 description="TEARDROP-BARBED RIGHTWARDS ARROW", 77613 direction="on", 77614 linebreak="al", 77615 unicodeslot=0x27BA, 77616 }, 77617 [0x27BB]={ 77618 category="so", 77619 description="HEAVY TEARDROP-SHANKED RIGHTWARDS ARROW", 77620 direction="on", 77621 linebreak="al", 77622 unicodeslot=0x27BB, 77623 }, 77624 [0x27BC]={ 77625 category="so", 77626 description="WEDGE-TAILED RIGHTWARDS ARROW", 77627 direction="on", 77628 linebreak="al", 77629 unicodeslot=0x27BC, 77630 }, 77631 [0x27BD]={ 77632 category="so", 77633 description="HEAVY WEDGE-TAILED RIGHTWARDS ARROW", 77634 direction="on", 77635 linebreak="al", 77636 unicodeslot=0x27BD, 77637 }, 77638 [0x27BE]={ 77639 category="so", 77640 description="OPEN-OUTLINED RIGHTWARDS ARROW", 77641 direction="on", 77642 linebreak="al", 77643 unicodeslot=0x27BE, 77644 }, 77645 [0x27BF]={ 77646 category="so", 77647 cjkwd="w", 77648 description="DOUBLE CURLY LOOP", 77649 direction="on", 77650 linebreak="al", 77651 unicodeslot=0x27BF, 77652 }, 77653 [0x27C0]={ 77654 category="sm", 77655 description="THREE DIMENSIONAL ANGLE", 77656 direction="on", 77657 linebreak="al", 77658 unicodeslot=0x27C0, 77659 }, 77660 [0x27C1]={ 77661 category="sm", 77662 description="WHITE TRIANGLE CONTAINING SMALL WHITE TRIANGLE", 77663 direction="on", 77664 linebreak="al", 77665 unicodeslot=0x27C1, 77666 }, 77667 [0x27C2]={ 77668 category="sm", 77669 description="PERPENDICULAR", 77670 direction="on", 77671 linebreak="al", 77672 unicodeslot=0x27C2, 77673 }, 77674 [0x27C3]={ 77675 category="sm", 77676 description="OPEN SUBSET", 77677 direction="on", 77678 linebreak="al", 77679 mirror=0x27C4, 77680 unicodeslot=0x27C3, 77681 }, 77682 [0x27C4]={ 77683 category="sm", 77684 description="OPEN SUPERSET", 77685 direction="on", 77686 linebreak="al", 77687 mirror=0x27C3, 77688 unicodeslot=0x27C4, 77689 }, 77690 [0x27C5]={ 77691 category="ps", 77692 description="LEFT S-SHAPED BAG DELIMITER", 77693 direction="on", 77694 linebreak="op", 77695 mirror=0x27C6, 77696 unicodeslot=0x27C5, 77697 }, 77698 [0x27C6]={ 77699 category="pe", 77700 description="RIGHT S-SHAPED BAG DELIMITER", 77701 direction="on", 77702 linebreak="cl", 77703 mirror=0x27C5, 77704 unicodeslot=0x27C6, 77705 }, 77706 [0x27C7]={ 77707 category="sm", 77708 description="OR WITH DOT INSIDE", 77709 direction="on", 77710 linebreak="al", 77711 unicodeslot=0x27C7, 77712 }, 77713 [0x27C8]={ 77714 category="sm", 77715 description="REVERSE SOLIDUS PRECEDING SUBSET", 77716 direction="on", 77717 linebreak="al", 77718 mirror=0x27C9, 77719 unicodeslot=0x27C8, 77720 }, 77721 [0x27C9]={ 77722 category="sm", 77723 description="SUPERSET PRECEDING SOLIDUS", 77724 direction="on", 77725 linebreak="al", 77726 mirror=0x27C8, 77727 unicodeslot=0x27C9, 77728 }, 77729 [0x27CA]={ 77730 category="sm", 77731 description="VERTICAL BAR WITH HORIZONTAL STROKE", 77732 direction="on", 77733 linebreak="al", 77734 unicodeslot=0x27CA, 77735 }, 77736 [0x27CB]={ 77737 category="sm", 77738 comment="check math properties", 77739 description="MATHEMATICAL RISING DIAGONAL", 77740 direction="on", 77741 linebreak="al", 77742 mirror=0x27CD, 77743 unicodeslot=0x27CB, 77744 }, 77745 [0x27CC]={ 77746 category="sm", 77747 description="LONG DIVISION", 77748 direction="on", 77749 linebreak="al", 77750 unicodeslot=0x27CC, 77751 }, 77752 [0x27CD]={ 77753 category="sm", 77754 comment="check math properties", 77755 description="MATHEMATICAL FALLING DIAGONAL", 77756 direction="on", 77757 linebreak="al", 77758 mirror=0x27CB, 77759 unicodeslot=0x27CD, 77760 }, 77761 [0x27CE]={ 77762 category="sm", 77763 description="SQUARED LOGICAL AND", 77764 direction="on", 77765 linebreak="al", 77766 unicodeslot=0x27CE, 77767 }, 77768 [0x27CF]={ 77769 category="sm", 77770 description="SQUARED LOGICAL OR", 77771 direction="on", 77772 linebreak="al", 77773 unicodeslot=0x27CF, 77774 }, 77775 [0x27D0]={ 77776 category="sm", 77777 description="WHITE DIAMOND WITH CENTRED DOT", 77778 direction="on", 77779 linebreak="al", 77780 unicodeslot=0x27D0, 77781 }, 77782 [0x27D1]={ 77783 category="sm", 77784 description="AND WITH DOT", 77785 direction="on", 77786 linebreak="al", 77787 unicodeslot=0x27D1, 77788 }, 77789 [0x27D2]={ 77790 category="sm", 77791 description="ELEMENT OF OPENING UPWARDS", 77792 direction="on", 77793 linebreak="al", 77794 unicodeslot=0x27D2, 77795 }, 77796 [0x27D3]={ 77797 category="sm", 77798 description="LOWER RIGHT CORNER WITH DOT", 77799 direction="on", 77800 linebreak="al", 77801 synonyms={ "pullback" }, 77802 unicodeslot=0x27D3, 77803 }, 77804 [0x27D4]={ 77805 category="sm", 77806 description="UPPER LEFT CORNER WITH DOT", 77807 direction="on", 77808 linebreak="al", 77809 synonyms={ "pushout" }, 77810 unicodeslot=0x27D4, 77811 }, 77812 [0x27D5]={ 77813 category="sm", 77814 description="LEFT OUTER JOIN", 77815 direction="on", 77816 linebreak="al", 77817 mirror=0x27D6, 77818 unicodeslot=0x27D5, 77819 }, 77820 [0x27D6]={ 77821 category="sm", 77822 description="RIGHT OUTER JOIN", 77823 direction="on", 77824 linebreak="al", 77825 mirror=0x27D5, 77826 unicodeslot=0x27D6, 77827 }, 77828 [0x27D7]={ 77829 category="sm", 77830 description="FULL OUTER JOIN", 77831 direction="on", 77832 linebreak="al", 77833 unicodeslot=0x27D7, 77834 }, 77835 [0x27D8]={ 77836 category="sm", 77837 description="LARGE UP TACK", 77838 direction="on", 77839 linebreak="al", 77840 unicodeslot=0x27D8, 77841 }, 77842 [0x27D9]={ 77843 category="sm", 77844 description="LARGE DOWN TACK", 77845 direction="on", 77846 linebreak="al", 77847 unicodeslot=0x27D9, 77848 }, 77849 [0x27DA]={ 77850 category="sm", 77851 description="LEFT AND RIGHT DOUBLE TURNSTILE", 77852 direction="on", 77853 linebreak="al", 77854 unicodeslot=0x27DA, 77855 }, 77856 [0x27DB]={ 77857 category="sm", 77858 description="LEFT AND RIGHT TACK", 77859 direction="on", 77860 linebreak="al", 77861 unicodeslot=0x27DB, 77862 }, 77863 [0x27DC]={ 77864 category="sm", 77865 description="LEFT MULTIMAP", 77866 direction="on", 77867 linebreak="al", 77868 mirror=0x22B8, 77869 unicodeslot=0x27DC, 77870 }, 77871 [0x27DD]={ 77872 category="sm", 77873 description="LONG RIGHT TACK", 77874 direction="on", 77875 linebreak="al", 77876 mirror=0x27DE, 77877 unicodeslot=0x27DD, 77878 }, 77879 [0x27DE]={ 77880 category="sm", 77881 description="LONG LEFT TACK", 77882 direction="on", 77883 linebreak="al", 77884 mirror=0x27DD, 77885 unicodeslot=0x27DE, 77886 }, 77887 [0x27DF]={ 77888 category="sm", 77889 description="UP TACK WITH CIRCLE ABOVE", 77890 direction="on", 77891 linebreak="al", 77892 synonyms={ "radial component" }, 77893 unicodeslot=0x27DF, 77894 }, 77895 [0x27E0]={ 77896 category="sm", 77897 description="LOZENGE DIVIDED BY HORIZONTAL RULE", 77898 direction="on", 77899 linebreak="al", 77900 unicodeslot=0x27E0, 77901 }, 77902 [0x27E1]={ 77903 category="sm", 77904 description="WHITE CONCAVE-SIDED DIAMOND", 77905 direction="on", 77906 linebreak="al", 77907 unicodeslot=0x27E1, 77908 }, 77909 [0x27E2]={ 77910 category="sm", 77911 description="WHITE CONCAVE-SIDED DIAMOND WITH LEFTWARDS TICK", 77912 direction="on", 77913 linebreak="al", 77914 mirror=0x27E3, 77915 unicodeslot=0x27E2, 77916 }, 77917 [0x27E3]={ 77918 category="sm", 77919 description="WHITE CONCAVE-SIDED DIAMOND WITH RIGHTWARDS TICK", 77920 direction="on", 77921 linebreak="al", 77922 mirror=0x27E2, 77923 unicodeslot=0x27E3, 77924 }, 77925 [0x27E4]={ 77926 category="sm", 77927 description="WHITE SQUARE WITH LEFTWARDS TICK", 77928 direction="on", 77929 linebreak="al", 77930 mirror=0x27E5, 77931 unicodeslot=0x27E4, 77932 }, 77933 [0x27E5]={ 77934 category="sm", 77935 description="WHITE SQUARE WITH RIGHTWARDS TICK", 77936 direction="on", 77937 linebreak="al", 77938 mirror=0x27E4, 77939 unicodeslot=0x27E5, 77940 }, 77941 [0x27E6]={ 77942 category="ps", 77943 cjkwd="na", 77944 description="MATHEMATICAL LEFT WHITE SQUARE BRACKET", 77945 direction="on", 77946 linebreak="op", 77947 mathclass="open", 77948 mathname="llbracket", 77949 mirror=0x27E7, 77950 synonyms={ "left bag bracket" }, 77951 unicodeslot=0x27E6, 77952 }, 77953 [0x27E7]={ 77954 category="pe", 77955 cjkwd="na", 77956 description="MATHEMATICAL RIGHT WHITE SQUARE BRACKET", 77957 direction="on", 77958 linebreak="cl", 77959 mathclass="close", 77960 mathname="rrbracket", 77961 mirror=0x27E6, 77962 synonyms={ "right bag bracket" }, 77963 unicodeslot=0x27E7, 77964 }, 77965 [0x27E8]={ 77966 category="ps", 77967 cjkwd="na", 77968 description="MATHEMATICAL LEFT ANGLE BRACKET", 77969 direction="on", 77970 linebreak="op", 77971 mathclass="open", 77972 mathname="langle", 77973 mirror=0x27E9, 77974 synonyms={ "bra", "left sequence bracket" }, 77975 unicodeslot=0x27E8, 77976 }, 77977 [0x27E9]={ 77978 category="pe", 77979 cjkwd="na", 77980 description="MATHEMATICAL RIGHT ANGLE BRACKET", 77981 direction="on", 77982 linebreak="cl", 77983 mathclass="close", 77984 mathname="rangle", 77985 mirror=0x27E8, 77986 synonyms={ "ket", "right sequence bracket" }, 77987 unicodeslot=0x27E9, 77988 }, 77989 [0x27EA]={ 77990 category="ps", 77991 cjkwd="na", 77992 description="MATHEMATICAL LEFT DOUBLE ANGLE BRACKET", 77993 direction="on", 77994 linebreak="op", 77995 mathclass="open", 77996 mathname="llangle", 77997 mirror=0x27EB, 77998 synonyms={ "left chevron bracket" }, 77999 unicodeslot=0x27EA, 78000 }, 78001 [0x27EB]={ 78002 category="pe", 78003 cjkwd="na", 78004 description="MATHEMATICAL RIGHT DOUBLE ANGLE BRACKET", 78005 direction="on", 78006 linebreak="cl", 78007 mathclass="close", 78008 mathname="rrangle", 78009 mirror=0x27EA, 78010 synonyms={ "right chevron bracket" }, 78011 unicodeslot=0x27EB, 78012 }, 78013 [0x27EC]={ 78014 category="ps", 78015 cjkwd="na", 78016 description="MATHEMATICAL LEFT WHITE TORTOISE SHELL BRACKET", 78017 direction="on", 78018 linebreak="op", 78019 mirror=0x27ED, 78020 unicodeslot=0x27EC, 78021 }, 78022 [0x27ED]={ 78023 category="pe", 78024 cjkwd="na", 78025 description="MATHEMATICAL RIGHT WHITE TORTOISE SHELL BRACKET", 78026 direction="on", 78027 linebreak="cl", 78028 mirror=0x27EC, 78029 unicodeslot=0x27ED, 78030 }, 78031 [0x27EE]={ 78032 category="ps", 78033 description="MATHEMATICAL LEFT FLATTENED PARENTHESIS", 78034 direction="on", 78035 linebreak="op", 78036 mathclass="open", 78037 mathname="lgroup", 78038 mirror=0x27EF, 78039 synonyms={ "lgroup" }, 78040 unicodeslot=0x27EE, 78041 }, 78042 [0x27EF]={ 78043 category="pe", 78044 description="MATHEMATICAL RIGHT FLATTENED PARENTHESIS", 78045 direction="on", 78046 linebreak="cl", 78047 mathclass="close", 78048 mathname="rgroup", 78049 mirror=0x27EE, 78050 synonyms={ "rgroup" }, 78051 unicodeslot=0x27EF, 78052 }, 78053 [0x27F0]={ 78054 category="sm", 78055 description="UPWARDS QUADRUPLE ARROW", 78056 direction="on", 78057 linebreak="al", 78058 mathextensible="u", 78059 unicodeslot=0x27F0, 78060 }, 78061 [0x27F1]={ 78062 category="sm", 78063 description="DOWNWARDS QUADRUPLE ARROW", 78064 direction="on", 78065 linebreak="al", 78066 mathextensible="v", 78067 unicodeslot=0x27F1, 78068 }, 78069 [0x27F2]={ 78070 category="sm", 78071 description="ANTICLOCKWISE GAPPED CIRCLE ARROW", 78072 direction="on", 78073 linebreak="al", 78074 unicodeslot=0x27F2, 78075 }, 78076 [0x27F3]={ 78077 category="sm", 78078 description="CLOCKWISE GAPPED CIRCLE ARROW", 78079 direction="on", 78080 linebreak="al", 78081 unicodeslot=0x27F3, 78082 }, 78083 [0x27F4]={ 78084 category="sm", 78085 description="RIGHT ARROW WITH CIRCLED PLUS", 78086 direction="on", 78087 linebreak="al", 78088 mathextensible="r", 78089 unicodeslot=0x27F4, 78090 }, 78091 [0x27F5]={ 78092 category="sm", 78093 description="LONG LEFTWARDS ARROW", 78094 direction="on", 78095 linebreak="al", 78096 mathclass="relation", 78097 mathextensible="l", 78098 mathlist={ 0x3C, 0x2212, 0x2212 }, 78099 mathname="longleftarrow", 78100 unicodeslot=0x27F5, 78101 }, 78102 [0x27F6]={ 78103 category="sm", 78104 comment="the parent hack is needed for mathml", 78105 description="LONG RIGHTWARDS ARROW", 78106 direction="on", 78107 linebreak="al", 78108 mathclass="relation", 78109 mathextensible="r", 78110 mathfiller="rightarrowfill", 78111 mathgroup="binary relation", 78112 mathlist={ 0x2212, 0x2212, 0x3E }, 78113 mathmeaning="to", 78114 mathname="longrightarrow", 78115 mathparent=0x2192, 78116 unicodeslot=0x27F6, 78117 }, 78118 [0x27F7]={ 78119 category="sm", 78120 comment="the parent hack is needed for mathml", 78121 description="LONG LEFT RIGHT ARROW", 78122 direction="on", 78123 linebreak="al", 78124 mathclass="relation", 78125 mathextensible="h", 78126 mathfiller="leftrightarrowfill", 78127 mathlist={ 0x3C, 0x2212, 0x2212, 0x3E }, 78128 mathname="longleftrightarrow", 78129 mathparent=0x2190, 78130 unicodeslot=0x27F7, 78131 }, 78132 [0x27F8]={ 78133 category="sm", 78134 description="LONG LEFTWARDS DOUBLE ARROW", 78135 direction="on", 78136 linebreak="al", 78137 mathclass="relation", 78138 mathextensible="l", 78139 mathfiller="Leftarrowfill", 78140 mathgroup="binary relation", 78141 mathlist={ 0x3C, 0x3D, 0x3D, 0x3D }, 78142 mathmeaning="is implied by", 78143 mathname="Longleftarrow", 78144 unicodeslot=0x27F8, 78145 }, 78146 [0x27F9]={ 78147 category="sm", 78148 comment="watch the virtual mathpair", 78149 description="LONG RIGHTWARDS DOUBLE ARROW", 78150 direction="on", 78151 linebreak="al", 78152 mathclass="relation", 78153 mathextensible="r", 78154 mathfiller="Rightarrowfill", 78155 mathgroup="binary relation", 78156 mathlist={ 0x3D, 0x3D, 0x3D, 0x3E }, 78157 mathmeaning="implies", 78158 mathname="Longrightarrow", 78159 unicodeslot=0x27F9, 78160 }, 78161 [0x27FA]={ 78162 category="sm", 78163 description="LONG LEFT RIGHT DOUBLE ARROW", 78164 direction="on", 78165 linebreak="al", 78166 mathclass="relation", 78167 mathextensible="h", 78168 mathfiller="Leftrightarrowfill", 78169 mathgroup="binary relation", 78170 mathlist={ 0x3C, 0x3D, 0x3D, 0x3D, 0x3E }, 78171 mathmeaning="if, and only if", 78172 mathname="Longleftrightarrow", 78173 unicodeslot=0x27FA, 78174 }, 78175 [0x27FB]={ 78176 category="sm", 78177 description="LONG LEFTWARDS ARROW FROM BAR", 78178 direction="on", 78179 linebreak="al", 78180 mathclass="relation", 78181 mathextensible="l", 78182 mathgroup="binary relation", 78183 mathmeaning="maps from", 78184 mathname="longmapsfrom", 78185 unicodeslot=0x27FB, 78186 }, 78187 [0x27FC]={ 78188 category="sm", 78189 description="LONG RIGHTWARDS ARROW FROM BAR", 78190 direction="on", 78191 linebreak="al", 78192 mathclass="relation", 78193 mathextensible="r", 78194 mathgroup="binary relation", 78195 mathmeaning="maps to", 78196 mathname="longmapsto", 78197 unicodeslot=0x27FC, 78198 }, 78199 [0x27FD]={ 78200 category="sm", 78201 description="LONG LEFTWARDS DOUBLE ARROW FROM BAR", 78202 direction="on", 78203 linebreak="al", 78204 mathclass="relation", 78205 mathextensible="l", 78206 mathname="Longmapsfrom", 78207 unicodeslot=0x27FD, 78208 }, 78209 [0x27FE]={ 78210 category="sm", 78211 description="LONG RIGHTWARDS DOUBLE ARROW FROM BAR", 78212 direction="on", 78213 linebreak="al", 78214 mathclass="relation", 78215 mathextensible="r", 78216 mathname="Longmapsto", 78217 unicodeslot=0x27FE, 78218 }, 78219 [0x27FF]={ 78220 category="sm", 78221 description="LONG RIGHTWARDS SQUIGGLE ARROW", 78222 direction="on", 78223 linebreak="al", 78224 mathclass="relation", 78225 mathextensible="r", 78226 mathname="longrightsquigarrow", 78227 unicodeslot=0x27FF, 78228 }, 78229 [0x2800]={ 78230 category="so", 78231 description="BRAILLE PATTERN BLANK", 78232 direction="l", 78233 linebreak="al", 78234 unicodeslot=0x2800, 78235 }, 78236 [0x2801]={ 78237 category="so", 78238 description="BRAILLE PATTERN DOTS-0x0001", 78239 direction="l", 78240 linebreak="al", 78241 unicodeslot=0x2801, 78242 }, 78243 [0x2802]={ 78244 category="so", 78245 description="BRAILLE PATTERN DOTS-0x0002", 78246 direction="l", 78247 linebreak="al", 78248 unicodeslot=0x2802, 78249 }, 78250 [0x2803]={ 78251 category="so", 78252 description="BRAILLE PATTERN DOTS-0x000C", 78253 direction="l", 78254 linebreak="al", 78255 unicodeslot=0x2803, 78256 }, 78257 [0x2804]={ 78258 category="so", 78259 description="BRAILLE PATTERN DOTS-0x0003", 78260 direction="l", 78261 linebreak="al", 78262 unicodeslot=0x2804, 78263 }, 78264 [0x2805]={ 78265 category="so", 78266 description="BRAILLE PATTERN DOTS-0x000D", 78267 direction="l", 78268 linebreak="al", 78269 unicodeslot=0x2805, 78270 }, 78271 [0x2806]={ 78272 category="so", 78273 description="BRAILLE PATTERN DOTS-0x0017", 78274 direction="l", 78275 linebreak="al", 78276 unicodeslot=0x2806, 78277 }, 78278 [0x2807]={ 78279 category="so", 78280 description="BRAILLE PATTERN DOTS-0x007B", 78281 direction="l", 78282 linebreak="al", 78283 unicodeslot=0x2807, 78284 }, 78285 [0x2808]={ 78286 category="so", 78287 description="BRAILLE PATTERN DOTS-0x0004", 78288 direction="l", 78289 linebreak="al", 78290 unicodeslot=0x2808, 78291 }, 78292 [0x2809]={ 78293 category="so", 78294 description="BRAILLE PATTERN DOTS-0x000E", 78295 direction="l", 78296 linebreak="al", 78297 unicodeslot=0x2809, 78298 }, 78299 [0x280A]={ 78300 category="so", 78301 description="BRAILLE PATTERN DOTS-0x0018", 78302 direction="l", 78303 linebreak="al", 78304 unicodeslot=0x280A, 78305 }, 78306 [0x280B]={ 78307 category="so", 78308 description="BRAILLE PATTERN DOTS-0x007C", 78309 direction="l", 78310 linebreak="al", 78311 unicodeslot=0x280B, 78312 }, 78313 [0x280C]={ 78314 category="so", 78315 description="BRAILLE PATTERN DOTS-0x0022", 78316 direction="l", 78317 linebreak="al", 78318 unicodeslot=0x280C, 78319 }, 78320 [0x280D]={ 78321 category="so", 78322 description="BRAILLE PATTERN DOTS-0x0086", 78323 direction="l", 78324 linebreak="al", 78325 unicodeslot=0x280D, 78326 }, 78327 [0x280E]={ 78328 category="so", 78329 description="BRAILLE PATTERN DOTS-0x00EA", 78330 direction="l", 78331 linebreak="al", 78332 unicodeslot=0x280E, 78333 }, 78334 [0x280F]={ 78335 category="so", 78336 description="BRAILLE PATTERN DOTS-0x04D2", 78337 direction="l", 78338 linebreak="al", 78339 unicodeslot=0x280F, 78340 }, 78341 [0x2810]={ 78342 category="so", 78343 description="BRAILLE PATTERN DOTS-0x0005", 78344 direction="l", 78345 linebreak="al", 78346 unicodeslot=0x2810, 78347 }, 78348 [0x2811]={ 78349 category="so", 78350 description="BRAILLE PATTERN DOTS-0x000F", 78351 direction="l", 78352 linebreak="al", 78353 unicodeslot=0x2811, 78354 }, 78355 [0x2812]={ 78356 category="so", 78357 description="BRAILLE PATTERN DOTS-0x0019", 78358 direction="l", 78359 linebreak="al", 78360 unicodeslot=0x2812, 78361 }, 78362 [0x2813]={ 78363 category="so", 78364 description="BRAILLE PATTERN DOTS-0x007D", 78365 direction="l", 78366 linebreak="al", 78367 unicodeslot=0x2813, 78368 }, 78369 [0x2814]={ 78370 category="so", 78371 description="BRAILLE PATTERN DOTS-0x0023", 78372 direction="l", 78373 linebreak="al", 78374 unicodeslot=0x2814, 78375 }, 78376 [0x2815]={ 78377 category="so", 78378 description="BRAILLE PATTERN DOTS-0x0087", 78379 direction="l", 78380 linebreak="al", 78381 unicodeslot=0x2815, 78382 }, 78383 [0x2816]={ 78384 category="so", 78385 description="BRAILLE PATTERN DOTS-0x00EB", 78386 direction="l", 78387 linebreak="al", 78388 unicodeslot=0x2816, 78389 }, 78390 [0x2817]={ 78391 category="so", 78392 description="BRAILLE PATTERN DOTS-0x04D3", 78393 direction="l", 78394 linebreak="al", 78395 unicodeslot=0x2817, 78396 }, 78397 [0x2818]={ 78398 category="so", 78399 description="BRAILLE PATTERN DOTS-0x002D", 78400 direction="l", 78401 linebreak="al", 78402 unicodeslot=0x2818, 78403 }, 78404 [0x2819]={ 78405 category="so", 78406 description="BRAILLE PATTERN DOTS-0x0091", 78407 direction="l", 78408 linebreak="al", 78409 unicodeslot=0x2819, 78410 }, 78411 [0x281A]={ 78412 category="so", 78413 description="BRAILLE PATTERN DOTS-0x00F5", 78414 direction="l", 78415 linebreak="al", 78416 unicodeslot=0x281A, 78417 }, 78418 [0x281B]={ 78419 category="so", 78420 description="BRAILLE PATTERN DOTS-0x04DD", 78421 direction="l", 78422 linebreak="al", 78423 unicodeslot=0x281B, 78424 }, 78425 [0x281C]={ 78426 category="so", 78427 description="BRAILLE PATTERN DOTS-0x0159", 78428 direction="l", 78429 linebreak="al", 78430 unicodeslot=0x281C, 78431 }, 78432 [0x281D]={ 78433 category="so", 78434 description="BRAILLE PATTERN DOTS-0x0541", 78435 direction="l", 78436 linebreak="al", 78437 unicodeslot=0x281D, 78438 }, 78439 [0x281E]={ 78440 category="so", 78441 description="BRAILLE PATTERN DOTS-0x0929", 78442 direction="l", 78443 linebreak="al", 78444 unicodeslot=0x281E, 78445 }, 78446 [0x281F]={ 78447 category="so", 78448 description="BRAILLE PATTERN DOTS-0x3039", 78449 direction="l", 78450 linebreak="al", 78451 unicodeslot=0x281F, 78452 }, 78453 [0x2820]={ 78454 category="so", 78455 description="BRAILLE PATTERN DOTS-0x0006", 78456 direction="l", 78457 linebreak="al", 78458 unicodeslot=0x2820, 78459 }, 78460 [0x2821]={ 78461 category="so", 78462 description="BRAILLE PATTERN DOTS-0x0010", 78463 direction="l", 78464 linebreak="al", 78465 unicodeslot=0x2821, 78466 }, 78467 [0x2822]={ 78468 category="so", 78469 description="BRAILLE PATTERN DOTS-0x001A", 78470 direction="l", 78471 linebreak="al", 78472 unicodeslot=0x2822, 78473 }, 78474 [0x2823]={ 78475 category="so", 78476 description="BRAILLE PATTERN DOTS-0x007E", 78477 direction="l", 78478 linebreak="al", 78479 unicodeslot=0x2823, 78480 }, 78481 [0x2824]={ 78482 category="so", 78483 description="BRAILLE PATTERN DOTS-0x0024", 78484 direction="l", 78485 linebreak="al", 78486 unicodeslot=0x2824, 78487 }, 78488 [0x2825]={ 78489 category="so", 78490 description="BRAILLE PATTERN DOTS-0x0088", 78491 direction="l", 78492 linebreak="al", 78493 unicodeslot=0x2825, 78494 }, 78495 [0x2826]={ 78496 category="so", 78497 description="BRAILLE PATTERN DOTS-0x00EC", 78498 direction="l", 78499 linebreak="al", 78500 unicodeslot=0x2826, 78501 }, 78502 [0x2827]={ 78503 category="so", 78504 description="BRAILLE PATTERN DOTS-0x04D4", 78505 direction="l", 78506 linebreak="al", 78507 unicodeslot=0x2827, 78508 }, 78509 [0x2828]={ 78510 category="so", 78511 description="BRAILLE PATTERN DOTS-0x002E", 78512 direction="l", 78513 linebreak="al", 78514 unicodeslot=0x2828, 78515 }, 78516 [0x2829]={ 78517 category="so", 78518 description="BRAILLE PATTERN DOTS-0x0092", 78519 direction="l", 78520 linebreak="al", 78521 unicodeslot=0x2829, 78522 }, 78523 [0x282A]={ 78524 category="so", 78525 description="BRAILLE PATTERN DOTS-0x00F6", 78526 direction="l", 78527 linebreak="al", 78528 unicodeslot=0x282A, 78529 }, 78530 [0x282B]={ 78531 category="so", 78532 description="BRAILLE PATTERN DOTS-0x04DE", 78533 direction="l", 78534 linebreak="al", 78535 unicodeslot=0x282B, 78536 }, 78537 [0x282C]={ 78538 category="so", 78539 description="BRAILLE PATTERN DOTS-0x015A", 78540 direction="l", 78541 linebreak="al", 78542 unicodeslot=0x282C, 78543 }, 78544 [0x282D]={ 78545 category="so", 78546 description="BRAILLE PATTERN DOTS-0x0542", 78547 direction="l", 78548 linebreak="al", 78549 unicodeslot=0x282D, 78550 }, 78551 [0x282E]={ 78552 category="so", 78553 description="BRAILLE PATTERN DOTS-0x092A", 78554 direction="l", 78555 linebreak="al", 78556 unicodeslot=0x282E, 78557 }, 78558 [0x282F]={ 78559 category="so", 78560 description="BRAILLE PATTERN DOTS-0x303A", 78561 direction="l", 78562 linebreak="al", 78563 unicodeslot=0x282F, 78564 }, 78565 [0x2830]={ 78566 category="so", 78567 description="BRAILLE PATTERN DOTS-0x0038", 78568 direction="l", 78569 linebreak="al", 78570 unicodeslot=0x2830, 78571 }, 78572 [0x2831]={ 78573 category="so", 78574 description="BRAILLE PATTERN DOTS-0x009C", 78575 direction="l", 78576 linebreak="al", 78577 unicodeslot=0x2831, 78578 }, 78579 [0x2832]={ 78580 category="so", 78581 description="BRAILLE PATTERN DOTS-0x0100", 78582 direction="l", 78583 linebreak="al", 78584 unicodeslot=0x2832, 78585 }, 78586 [0x2833]={ 78587 category="so", 78588 description="BRAILLE PATTERN DOTS-0x04E8", 78589 direction="l", 78590 linebreak="al", 78591 unicodeslot=0x2833, 78592 }, 78593 [0x2834]={ 78594 category="so", 78595 description="BRAILLE PATTERN DOTS-0x0164", 78596 direction="l", 78597 linebreak="al", 78598 unicodeslot=0x2834, 78599 }, 78600 [0x2835]={ 78601 category="so", 78602 description="BRAILLE PATTERN DOTS-0x054C", 78603 direction="l", 78604 linebreak="al", 78605 unicodeslot=0x2835, 78606 }, 78607 [0x2836]={ 78608 category="so", 78609 description="BRAILLE PATTERN DOTS-0x0934", 78610 direction="l", 78611 linebreak="al", 78612 unicodeslot=0x2836, 78613 }, 78614 [0x2837]={ 78615 category="so", 78616 description="BRAILLE PATTERN DOTS-0x3044", 78617 direction="l", 78618 linebreak="al", 78619 unicodeslot=0x2837, 78620 }, 78621 [0x2838]={ 78622 category="so", 78623 description="BRAILLE PATTERN DOTS-0x01C8", 78624 direction="l", 78625 linebreak="al", 78626 unicodeslot=0x2838, 78627 }, 78628 [0x2839]={ 78629 category="so", 78630 description="BRAILLE PATTERN DOTS-0x05B0", 78631 direction="l", 78632 linebreak="al", 78633 unicodeslot=0x2839, 78634 }, 78635 [0x283A]={ 78636 category="so", 78637 description="BRAILLE PATTERN DOTS-0x0998", 78638 direction="l", 78639 linebreak="al", 78640 unicodeslot=0x283A, 78641 }, 78642 [0x283B]={ 78643 category="so", 78644 description="BRAILLE PATTERN DOTS-0x30A8", 78645 direction="l", 78646 linebreak="al", 78647 unicodeslot=0x283B, 78648 }, 78649 [0x283C]={ 78650 category="so", 78651 description="BRAILLE PATTERN DOTS-0x0D80", 78652 direction="l", 78653 linebreak="al", 78654 unicodeslot=0x283C, 78655 }, 78656 [0x283D]={ 78657 category="so", 78658 description="BRAILLE PATTERN DOTS-0x3490", 78659 direction="l", 78660 linebreak="al", 78661 unicodeslot=0x283D, 78662 }, 78663 [0x283E]={ 78664 category="so", 78665 description="BRAILLE PATTERN DOTS-0x5BA0", 78666 direction="l", 78667 linebreak="al", 78668 unicodeslot=0x283E, 78669 }, 78670 [0x283F]={ 78671 category="so", 78672 description="BRAILLE PATTERN DOTS-0x1E240", 78673 direction="l", 78674 linebreak="al", 78675 unicodeslot=0x283F, 78676 }, 78677 [0x2840]={ 78678 category="so", 78679 description="BRAILLE PATTERN DOTS-0x0007", 78680 direction="l", 78681 linebreak="al", 78682 unicodeslot=0x2840, 78683 }, 78684 [0x2841]={ 78685 category="so", 78686 description="BRAILLE PATTERN DOTS-0x0011", 78687 direction="l", 78688 linebreak="al", 78689 unicodeslot=0x2841, 78690 }, 78691 [0x2842]={ 78692 category="so", 78693 description="BRAILLE PATTERN DOTS-0x001B", 78694 direction="l", 78695 linebreak="al", 78696 unicodeslot=0x2842, 78697 }, 78698 [0x2843]={ 78699 category="so", 78700 description="BRAILLE PATTERN DOTS-0x007F", 78701 direction="l", 78702 linebreak="al", 78703 unicodeslot=0x2843, 78704 }, 78705 [0x2844]={ 78706 category="so", 78707 description="BRAILLE PATTERN DOTS-0x0025", 78708 direction="l", 78709 linebreak="al", 78710 unicodeslot=0x2844, 78711 }, 78712 [0x2845]={ 78713 category="so", 78714 description="BRAILLE PATTERN DOTS-0x0089", 78715 direction="l", 78716 linebreak="al", 78717 unicodeslot=0x2845, 78718 }, 78719 [0x2846]={ 78720 category="so", 78721 description="BRAILLE PATTERN DOTS-0x00ED", 78722 direction="l", 78723 linebreak="al", 78724 unicodeslot=0x2846, 78725 }, 78726 [0x2847]={ 78727 category="so", 78728 description="BRAILLE PATTERN DOTS-0x04D5", 78729 direction="l", 78730 linebreak="al", 78731 unicodeslot=0x2847, 78732 }, 78733 [0x2848]={ 78734 category="so", 78735 description="BRAILLE PATTERN DOTS-0x002F", 78736 direction="l", 78737 linebreak="al", 78738 unicodeslot=0x2848, 78739 }, 78740 [0x2849]={ 78741 category="so", 78742 description="BRAILLE PATTERN DOTS-0x0093", 78743 direction="l", 78744 linebreak="al", 78745 unicodeslot=0x2849, 78746 }, 78747 [0x284A]={ 78748 category="so", 78749 description="BRAILLE PATTERN DOTS-0x00F7", 78750 direction="l", 78751 linebreak="al", 78752 unicodeslot=0x284A, 78753 }, 78754 [0x284B]={ 78755 category="so", 78756 description="BRAILLE PATTERN DOTS-0x04DF", 78757 direction="l", 78758 linebreak="al", 78759 unicodeslot=0x284B, 78760 }, 78761 [0x284C]={ 78762 category="so", 78763 description="BRAILLE PATTERN DOTS-0x015B", 78764 direction="l", 78765 linebreak="al", 78766 unicodeslot=0x284C, 78767 }, 78768 [0x284D]={ 78769 category="so", 78770 description="BRAILLE PATTERN DOTS-0x0543", 78771 direction="l", 78772 linebreak="al", 78773 unicodeslot=0x284D, 78774 }, 78775 [0x284E]={ 78776 category="so", 78777 description="BRAILLE PATTERN DOTS-0x092B", 78778 direction="l", 78779 linebreak="al", 78780 unicodeslot=0x284E, 78781 }, 78782 [0x284F]={ 78783 category="so", 78784 description="BRAILLE PATTERN DOTS-0x303B", 78785 direction="l", 78786 linebreak="al", 78787 unicodeslot=0x284F, 78788 }, 78789 [0x2850]={ 78790 category="so", 78791 description="BRAILLE PATTERN DOTS-0x0039", 78792 direction="l", 78793 linebreak="al", 78794 unicodeslot=0x2850, 78795 }, 78796 [0x2851]={ 78797 category="so", 78798 description="BRAILLE PATTERN DOTS-0x009D", 78799 direction="l", 78800 linebreak="al", 78801 unicodeslot=0x2851, 78802 }, 78803 [0x2852]={ 78804 category="so", 78805 description="BRAILLE PATTERN DOTS-0x0101", 78806 direction="l", 78807 linebreak="al", 78808 unicodeslot=0x2852, 78809 }, 78810 [0x2853]={ 78811 category="so", 78812 description="BRAILLE PATTERN DOTS-0x04E9", 78813 direction="l", 78814 linebreak="al", 78815 unicodeslot=0x2853, 78816 }, 78817 [0x2854]={ 78818 category="so", 78819 description="BRAILLE PATTERN DOTS-0x0165", 78820 direction="l", 78821 linebreak="al", 78822 unicodeslot=0x2854, 78823 }, 78824 [0x2855]={ 78825 category="so", 78826 description="BRAILLE PATTERN DOTS-0x054D", 78827 direction="l", 78828 linebreak="al", 78829 unicodeslot=0x2855, 78830 }, 78831 [0x2856]={ 78832 category="so", 78833 description="BRAILLE PATTERN DOTS-0x0935", 78834 direction="l", 78835 linebreak="al", 78836 unicodeslot=0x2856, 78837 }, 78838 [0x2857]={ 78839 category="so", 78840 description="BRAILLE PATTERN DOTS-0x3045", 78841 direction="l", 78842 linebreak="al", 78843 unicodeslot=0x2857, 78844 }, 78845 [0x2858]={ 78846 category="so", 78847 description="BRAILLE PATTERN DOTS-0x01C9", 78848 direction="l", 78849 linebreak="al", 78850 unicodeslot=0x2858, 78851 }, 78852 [0x2859]={ 78853 category="so", 78854 description="BRAILLE PATTERN DOTS-0x05B1", 78855 direction="l", 78856 linebreak="al", 78857 unicodeslot=0x2859, 78858 }, 78859 [0x285A]={ 78860 category="so", 78861 description="BRAILLE PATTERN DOTS-0x0999", 78862 direction="l", 78863 linebreak="al", 78864 unicodeslot=0x285A, 78865 }, 78866 [0x285B]={ 78867 category="so", 78868 description="BRAILLE PATTERN DOTS-0x30A9", 78869 direction="l", 78870 linebreak="al", 78871 unicodeslot=0x285B, 78872 }, 78873 [0x285C]={ 78874 category="so", 78875 description="BRAILLE PATTERN DOTS-0x0D81", 78876 direction="l", 78877 linebreak="al", 78878 unicodeslot=0x285C, 78879 }, 78880 [0x285D]={ 78881 category="so", 78882 description="BRAILLE PATTERN DOTS-0x3491", 78883 direction="l", 78884 linebreak="al", 78885 unicodeslot=0x285D, 78886 }, 78887 [0x285E]={ 78888 category="so", 78889 description="BRAILLE PATTERN DOTS-0x5BA1", 78890 direction="l", 78891 linebreak="al", 78892 unicodeslot=0x285E, 78893 }, 78894 [0x285F]={ 78895 category="so", 78896 description="BRAILLE PATTERN DOTS-0x1E241", 78897 direction="l", 78898 linebreak="al", 78899 unicodeslot=0x285F, 78900 }, 78901 [0x2860]={ 78902 category="so", 78903 description="BRAILLE PATTERN DOTS-0x0043", 78904 direction="l", 78905 linebreak="al", 78906 unicodeslot=0x2860, 78907 }, 78908 [0x2861]={ 78909 category="so", 78910 description="BRAILLE PATTERN DOTS-0x00A7", 78911 direction="l", 78912 linebreak="al", 78913 unicodeslot=0x2861, 78914 }, 78915 [0x2862]={ 78916 category="so", 78917 description="BRAILLE PATTERN DOTS-0x010B", 78918 direction="l", 78919 linebreak="al", 78920 unicodeslot=0x2862, 78921 }, 78922 [0x2863]={ 78923 category="so", 78924 description="BRAILLE PATTERN DOTS-0x04F3", 78925 direction="l", 78926 linebreak="al", 78927 unicodeslot=0x2863, 78928 }, 78929 [0x2864]={ 78930 category="so", 78931 description="BRAILLE PATTERN DOTS-0x016F", 78932 direction="l", 78933 linebreak="al", 78934 unicodeslot=0x2864, 78935 }, 78936 [0x2865]={ 78937 category="so", 78938 description="BRAILLE PATTERN DOTS-0x0557", 78939 direction="l", 78940 linebreak="al", 78941 unicodeslot=0x2865, 78942 }, 78943 [0x2866]={ 78944 category="so", 78945 description="BRAILLE PATTERN DOTS-0x093F", 78946 direction="l", 78947 linebreak="al", 78948 unicodeslot=0x2866, 78949 }, 78950 [0x2867]={ 78951 category="so", 78952 description="BRAILLE PATTERN DOTS-0x304F", 78953 direction="l", 78954 linebreak="al", 78955 unicodeslot=0x2867, 78956 }, 78957 [0x2868]={ 78958 category="so", 78959 description="BRAILLE PATTERN DOTS-0x01D3", 78960 direction="l", 78961 linebreak="al", 78962 unicodeslot=0x2868, 78963 }, 78964 [0x2869]={ 78965 category="so", 78966 description="BRAILLE PATTERN DOTS-0x05BB", 78967 direction="l", 78968 linebreak="al", 78969 unicodeslot=0x2869, 78970 }, 78971 [0x286A]={ 78972 category="so", 78973 description="BRAILLE PATTERN DOTS-0x09A3", 78974 direction="l", 78975 linebreak="al", 78976 unicodeslot=0x286A, 78977 }, 78978 [0x286B]={ 78979 category="so", 78980 description="BRAILLE PATTERN DOTS-0x30B3", 78981 direction="l", 78982 linebreak="al", 78983 unicodeslot=0x286B, 78984 }, 78985 [0x286C]={ 78986 category="so", 78987 description="BRAILLE PATTERN DOTS-0x0D8B", 78988 direction="l", 78989 linebreak="al", 78990 unicodeslot=0x286C, 78991 }, 78992 [0x286D]={ 78993 category="so", 78994 description="BRAILLE PATTERN DOTS-0x349B", 78995 direction="l", 78996 linebreak="al", 78997 unicodeslot=0x286D, 78998 }, 78999 [0x286E]={ 79000 category="so", 79001 description="BRAILLE PATTERN DOTS-0x5BAB", 79002 direction="l", 79003 linebreak="al", 79004 unicodeslot=0x286E, 79005 }, 79006 [0x286F]={ 79007 category="so", 79008 description="BRAILLE PATTERN DOTS-0x1E24B", 79009 direction="l", 79010 linebreak="al", 79011 unicodeslot=0x286F, 79012 }, 79013 [0x2870]={ 79014 category="so", 79015 description="BRAILLE PATTERN DOTS-0x0237", 79016 direction="l", 79017 linebreak="al", 79018 unicodeslot=0x2870, 79019 }, 79020 [0x2871]={ 79021 category="so", 79022 description="BRAILLE PATTERN DOTS-0x061F", 79023 direction="l", 79024 linebreak="al", 79025 unicodeslot=0x2871, 79026 }, 79027 [0x2872]={ 79028 category="so", 79029 description="BRAILLE PATTERN DOTS-0x0A07", 79030 direction="l", 79031 linebreak="al", 79032 unicodeslot=0x2872, 79033 }, 79034 [0x2873]={ 79035 category="so", 79036 description="BRAILLE PATTERN DOTS-0x3117", 79037 direction="l", 79038 linebreak="al", 79039 unicodeslot=0x2873, 79040 }, 79041 [0x2874]={ 79042 category="so", 79043 description="BRAILLE PATTERN DOTS-0x0DEF", 79044 direction="l", 79045 linebreak="al", 79046 unicodeslot=0x2874, 79047 }, 79048 [0x2875]={ 79049 category="so", 79050 description="BRAILLE PATTERN DOTS-0x34FF", 79051 direction="l", 79052 linebreak="al", 79053 unicodeslot=0x2875, 79054 }, 79055 [0x2876]={ 79056 category="so", 79057 description="BRAILLE PATTERN DOTS-0x5C0F", 79058 direction="l", 79059 linebreak="al", 79060 unicodeslot=0x2876, 79061 }, 79062 [0x2877]={ 79063 category="so", 79064 description="BRAILLE PATTERN DOTS-0x1E2AF", 79065 direction="l", 79066 linebreak="al", 79067 unicodeslot=0x2877, 79068 }, 79069 [0x2878]={ 79070 category="so", 79071 description="BRAILLE PATTERN DOTS-0x11D7", 79072 direction="l", 79073 linebreak="al", 79074 unicodeslot=0x2878, 79075 }, 79076 [0x2879]={ 79077 category="so", 79078 description="BRAILLE PATTERN DOTS-0x38E7", 79079 direction="l", 79080 linebreak="al", 79081 unicodeslot=0x2879, 79082 }, 79083 [0x287A]={ 79084 category="so", 79085 description="BRAILLE PATTERN DOTS-0x5FF7", 79086 direction="l", 79087 linebreak="al", 79088 unicodeslot=0x287A, 79089 }, 79090 [0x287B]={ 79091 category="so", 79092 description="BRAILLE PATTERN DOTS-0x1E697", 79093 direction="l", 79094 linebreak="al", 79095 unicodeslot=0x287B, 79096 }, 79097 [0x287C]={ 79098 category="so", 79099 description="BRAILLE PATTERN DOTS-0x8707", 79100 direction="l", 79101 linebreak="al", 79102 unicodeslot=0x287C, 79103 }, 79104 [0x287D]={ 79105 category="so", 79106 description="BRAILLE PATTERN DOTS-0x20DA7", 79107 direction="l", 79108 linebreak="al", 79109 unicodeslot=0x287D, 79110 }, 79111 [0x287E]={ 79112 category="so", 79113 description="BRAILLE PATTERN DOTS-0x39447", 79114 direction="l", 79115 linebreak="al", 79116 unicodeslot=0x287E, 79117 }, 79118 [0x287F]={ 79119 category="so", 79120 description="BRAILLE PATTERN DOTS-0x12D687", 79121 direction="l", 79122 linebreak="al", 79123 unicodeslot=0x287F, 79124 }, 79125 [0x2880]={ 79126 category="so", 79127 description="BRAILLE PATTERN DOTS-0x0008", 79128 direction="l", 79129 linebreak="al", 79130 unicodeslot=0x2880, 79131 }, 79132 [0x2881]={ 79133 category="so", 79134 description="BRAILLE PATTERN DOTS-0x0012", 79135 direction="l", 79136 linebreak="al", 79137 unicodeslot=0x2881, 79138 }, 79139 [0x2882]={ 79140 category="so", 79141 description="BRAILLE PATTERN DOTS-0x001C", 79142 direction="l", 79143 linebreak="al", 79144 unicodeslot=0x2882, 79145 }, 79146 [0x2883]={ 79147 category="so", 79148 description="BRAILLE PATTERN DOTS-0x0080", 79149 direction="l", 79150 linebreak="al", 79151 unicodeslot=0x2883, 79152 }, 79153 [0x2884]={ 79154 category="so", 79155 description="BRAILLE PATTERN DOTS-0x0026", 79156 direction="l", 79157 linebreak="al", 79158 unicodeslot=0x2884, 79159 }, 79160 [0x2885]={ 79161 category="so", 79162 description="BRAILLE PATTERN DOTS-0x008A", 79163 direction="l", 79164 linebreak="al", 79165 unicodeslot=0x2885, 79166 }, 79167 [0x2886]={ 79168 category="so", 79169 description="BRAILLE PATTERN DOTS-0x00EE", 79170 direction="l", 79171 linebreak="al", 79172 unicodeslot=0x2886, 79173 }, 79174 [0x2887]={ 79175 category="so", 79176 description="BRAILLE PATTERN DOTS-0x04D6", 79177 direction="l", 79178 linebreak="al", 79179 unicodeslot=0x2887, 79180 }, 79181 [0x2888]={ 79182 category="so", 79183 description="BRAILLE PATTERN DOTS-0x0030", 79184 direction="l", 79185 linebreak="al", 79186 unicodeslot=0x2888, 79187 }, 79188 [0x2889]={ 79189 category="so", 79190 description="BRAILLE PATTERN DOTS-0x0094", 79191 direction="l", 79192 linebreak="al", 79193 unicodeslot=0x2889, 79194 }, 79195 [0x288A]={ 79196 category="so", 79197 description="BRAILLE PATTERN DOTS-0x00F8", 79198 direction="l", 79199 linebreak="al", 79200 unicodeslot=0x288A, 79201 }, 79202 [0x288B]={ 79203 category="so", 79204 description="BRAILLE PATTERN DOTS-0x04E0", 79205 direction="l", 79206 linebreak="al", 79207 unicodeslot=0x288B, 79208 }, 79209 [0x288C]={ 79210 category="so", 79211 description="BRAILLE PATTERN DOTS-0x015C", 79212 direction="l", 79213 linebreak="al", 79214 unicodeslot=0x288C, 79215 }, 79216 [0x288D]={ 79217 category="so", 79218 description="BRAILLE PATTERN DOTS-0x0544", 79219 direction="l", 79220 linebreak="al", 79221 unicodeslot=0x288D, 79222 }, 79223 [0x288E]={ 79224 category="so", 79225 description="BRAILLE PATTERN DOTS-0x092C", 79226 direction="l", 79227 linebreak="al", 79228 unicodeslot=0x288E, 79229 }, 79230 [0x288F]={ 79231 category="so", 79232 description="BRAILLE PATTERN DOTS-0x303C", 79233 direction="l", 79234 linebreak="al", 79235 unicodeslot=0x288F, 79236 }, 79237 [0x2890]={ 79238 category="so", 79239 description="BRAILLE PATTERN DOTS-0x003A", 79240 direction="l", 79241 linebreak="al", 79242 unicodeslot=0x2890, 79243 }, 79244 [0x2891]={ 79245 category="so", 79246 description="BRAILLE PATTERN DOTS-0x009E", 79247 direction="l", 79248 linebreak="al", 79249 unicodeslot=0x2891, 79250 }, 79251 [0x2892]={ 79252 category="so", 79253 description="BRAILLE PATTERN DOTS-0x0102", 79254 direction="l", 79255 linebreak="al", 79256 unicodeslot=0x2892, 79257 }, 79258 [0x2893]={ 79259 category="so", 79260 description="BRAILLE PATTERN DOTS-0x04EA", 79261 direction="l", 79262 linebreak="al", 79263 unicodeslot=0x2893, 79264 }, 79265 [0x2894]={ 79266 category="so", 79267 description="BRAILLE PATTERN DOTS-0x0166", 79268 direction="l", 79269 linebreak="al", 79270 unicodeslot=0x2894, 79271 }, 79272 [0x2895]={ 79273 category="so", 79274 description="BRAILLE PATTERN DOTS-0x054E", 79275 direction="l", 79276 linebreak="al", 79277 unicodeslot=0x2895, 79278 }, 79279 [0x2896]={ 79280 category="so", 79281 description="BRAILLE PATTERN DOTS-0x0936", 79282 direction="l", 79283 linebreak="al", 79284 unicodeslot=0x2896, 79285 }, 79286 [0x2897]={ 79287 category="so", 79288 description="BRAILLE PATTERN DOTS-0x3046", 79289 direction="l", 79290 linebreak="al", 79291 unicodeslot=0x2897, 79292 }, 79293 [0x2898]={ 79294 category="so", 79295 description="BRAILLE PATTERN DOTS-0x01CA", 79296 direction="l", 79297 linebreak="al", 79298 unicodeslot=0x2898, 79299 }, 79300 [0x2899]={ 79301 category="so", 79302 description="BRAILLE PATTERN DOTS-0x05B2", 79303 direction="l", 79304 linebreak="al", 79305 unicodeslot=0x2899, 79306 }, 79307 [0x289A]={ 79308 category="so", 79309 description="BRAILLE PATTERN DOTS-0x099A", 79310 direction="l", 79311 linebreak="al", 79312 unicodeslot=0x289A, 79313 }, 79314 [0x289B]={ 79315 category="so", 79316 description="BRAILLE PATTERN DOTS-0x30AA", 79317 direction="l", 79318 linebreak="al", 79319 unicodeslot=0x289B, 79320 }, 79321 [0x289C]={ 79322 category="so", 79323 description="BRAILLE PATTERN DOTS-0x0D82", 79324 direction="l", 79325 linebreak="al", 79326 unicodeslot=0x289C, 79327 }, 79328 [0x289D]={ 79329 category="so", 79330 description="BRAILLE PATTERN DOTS-0x3492", 79331 direction="l", 79332 linebreak="al", 79333 unicodeslot=0x289D, 79334 }, 79335 [0x289E]={ 79336 category="so", 79337 description="BRAILLE PATTERN DOTS-0x5BA2", 79338 direction="l", 79339 linebreak="al", 79340 unicodeslot=0x289E, 79341 }, 79342 [0x289F]={ 79343 category="so", 79344 description="BRAILLE PATTERN DOTS-0x1E242", 79345 direction="l", 79346 linebreak="al", 79347 unicodeslot=0x289F, 79348 }, 79349 [0x28A0]={ 79350 category="so", 79351 description="BRAILLE PATTERN DOTS-0x0044", 79352 direction="l", 79353 linebreak="al", 79354 unicodeslot=0x28A0, 79355 }, 79356 [0x28A1]={ 79357 category="so", 79358 description="BRAILLE PATTERN DOTS-0x00A8", 79359 direction="l", 79360 linebreak="al", 79361 unicodeslot=0x28A1, 79362 }, 79363 [0x28A2]={ 79364 category="so", 79365 description="BRAILLE PATTERN DOTS-0x010C", 79366 direction="l", 79367 linebreak="al", 79368 unicodeslot=0x28A2, 79369 }, 79370 [0x28A3]={ 79371 category="so", 79372 description="BRAILLE PATTERN DOTS-0x04F4", 79373 direction="l", 79374 linebreak="al", 79375 unicodeslot=0x28A3, 79376 }, 79377 [0x28A4]={ 79378 category="so", 79379 description="BRAILLE PATTERN DOTS-0x0170", 79380 direction="l", 79381 linebreak="al", 79382 unicodeslot=0x28A4, 79383 }, 79384 [0x28A5]={ 79385 category="so", 79386 description="BRAILLE PATTERN DOTS-0x0558", 79387 direction="l", 79388 linebreak="al", 79389 unicodeslot=0x28A5, 79390 }, 79391 [0x28A6]={ 79392 category="so", 79393 description="BRAILLE PATTERN DOTS-0x0940", 79394 direction="l", 79395 linebreak="al", 79396 unicodeslot=0x28A6, 79397 }, 79398 [0x28A7]={ 79399 category="so", 79400 description="BRAILLE PATTERN DOTS-0x3050", 79401 direction="l", 79402 linebreak="al", 79403 unicodeslot=0x28A7, 79404 }, 79405 [0x28A8]={ 79406 category="so", 79407 description="BRAILLE PATTERN DOTS-0x01D4", 79408 direction="l", 79409 linebreak="al", 79410 unicodeslot=0x28A8, 79411 }, 79412 [0x28A9]={ 79413 category="so", 79414 description="BRAILLE PATTERN DOTS-0x05BC", 79415 direction="l", 79416 linebreak="al", 79417 unicodeslot=0x28A9, 79418 }, 79419 [0x28AA]={ 79420 category="so", 79421 description="BRAILLE PATTERN DOTS-0x09A4", 79422 direction="l", 79423 linebreak="al", 79424 unicodeslot=0x28AA, 79425 }, 79426 [0x28AB]={ 79427 category="so", 79428 description="BRAILLE PATTERN DOTS-0x30B4", 79429 direction="l", 79430 linebreak="al", 79431 unicodeslot=0x28AB, 79432 }, 79433 [0x28AC]={ 79434 category="so", 79435 description="BRAILLE PATTERN DOTS-0x0D8C", 79436 direction="l", 79437 linebreak="al", 79438 unicodeslot=0x28AC, 79439 }, 79440 [0x28AD]={ 79441 category="so", 79442 description="BRAILLE PATTERN DOTS-0x349C", 79443 direction="l", 79444 linebreak="al", 79445 unicodeslot=0x28AD, 79446 }, 79447 [0x28AE]={ 79448 category="so", 79449 description="BRAILLE PATTERN DOTS-0x5BAC", 79450 direction="l", 79451 linebreak="al", 79452 unicodeslot=0x28AE, 79453 }, 79454 [0x28AF]={ 79455 category="so", 79456 description="BRAILLE PATTERN DOTS-0x1E24C", 79457 direction="l", 79458 linebreak="al", 79459 unicodeslot=0x28AF, 79460 }, 79461 [0x28B0]={ 79462 category="so", 79463 description="BRAILLE PATTERN DOTS-0x0238", 79464 direction="l", 79465 linebreak="al", 79466 unicodeslot=0x28B0, 79467 }, 79468 [0x28B1]={ 79469 category="so", 79470 description="BRAILLE PATTERN DOTS-0x0620", 79471 direction="l", 79472 linebreak="al", 79473 unicodeslot=0x28B1, 79474 }, 79475 [0x28B2]={ 79476 category="so", 79477 description="BRAILLE PATTERN DOTS-0x0A08", 79478 direction="l", 79479 linebreak="al", 79480 unicodeslot=0x28B2, 79481 }, 79482 [0x28B3]={ 79483 category="so", 79484 description="BRAILLE PATTERN DOTS-0x3118", 79485 direction="l", 79486 linebreak="al", 79487 unicodeslot=0x28B3, 79488 }, 79489 [0x28B4]={ 79490 category="so", 79491 description="BRAILLE PATTERN DOTS-0x0DF0", 79492 direction="l", 79493 linebreak="al", 79494 unicodeslot=0x28B4, 79495 }, 79496 [0x28B5]={ 79497 category="so", 79498 description="BRAILLE PATTERN DOTS-0x3500", 79499 direction="l", 79500 linebreak="al", 79501 unicodeslot=0x28B5, 79502 }, 79503 [0x28B6]={ 79504 category="so", 79505 description="BRAILLE PATTERN DOTS-0x5C10", 79506 direction="l", 79507 linebreak="al", 79508 unicodeslot=0x28B6, 79509 }, 79510 [0x28B7]={ 79511 category="so", 79512 description="BRAILLE PATTERN DOTS-0x1E2B0", 79513 direction="l", 79514 linebreak="al", 79515 unicodeslot=0x28B7, 79516 }, 79517 [0x28B8]={ 79518 category="so", 79519 description="BRAILLE PATTERN DOTS-0x11D8", 79520 direction="l", 79521 linebreak="al", 79522 unicodeslot=0x28B8, 79523 }, 79524 [0x28B9]={ 79525 category="so", 79526 description="BRAILLE PATTERN DOTS-0x38E8", 79527 direction="l", 79528 linebreak="al", 79529 unicodeslot=0x28B9, 79530 }, 79531 [0x28BA]={ 79532 category="so", 79533 description="BRAILLE PATTERN DOTS-0x5FF8", 79534 direction="l", 79535 linebreak="al", 79536 unicodeslot=0x28BA, 79537 }, 79538 [0x28BB]={ 79539 category="so", 79540 description="BRAILLE PATTERN DOTS-0x1E698", 79541 direction="l", 79542 linebreak="al", 79543 unicodeslot=0x28BB, 79544 }, 79545 [0x28BC]={ 79546 category="so", 79547 description="BRAILLE PATTERN DOTS-0x8708", 79548 direction="l", 79549 linebreak="al", 79550 unicodeslot=0x28BC, 79551 }, 79552 [0x28BD]={ 79553 category="so", 79554 description="BRAILLE PATTERN DOTS-0x20DA8", 79555 direction="l", 79556 linebreak="al", 79557 unicodeslot=0x28BD, 79558 }, 79559 [0x28BE]={ 79560 category="so", 79561 description="BRAILLE PATTERN DOTS-0x39448", 79562 direction="l", 79563 linebreak="al", 79564 unicodeslot=0x28BE, 79565 }, 79566 [0x28BF]={ 79567 category="so", 79568 description="BRAILLE PATTERN DOTS-0x12D688", 79569 direction="l", 79570 linebreak="al", 79571 unicodeslot=0x28BF, 79572 }, 79573 [0x28C0]={ 79574 category="so", 79575 description="BRAILLE PATTERN DOTS-0x004E", 79576 direction="l", 79577 linebreak="al", 79578 unicodeslot=0x28C0, 79579 }, 79580 [0x28C1]={ 79581 category="so", 79582 description="BRAILLE PATTERN DOTS-0x00B2", 79583 direction="l", 79584 linebreak="al", 79585 unicodeslot=0x28C1, 79586 }, 79587 [0x28C2]={ 79588 category="so", 79589 description="BRAILLE PATTERN DOTS-0x0116", 79590 direction="l", 79591 linebreak="al", 79592 unicodeslot=0x28C2, 79593 }, 79594 [0x28C3]={ 79595 category="so", 79596 description="BRAILLE PATTERN DOTS-0x04FE", 79597 direction="l", 79598 linebreak="al", 79599 unicodeslot=0x28C3, 79600 }, 79601 [0x28C4]={ 79602 category="so", 79603 description="BRAILLE PATTERN DOTS-0x017A", 79604 direction="l", 79605 linebreak="al", 79606 unicodeslot=0x28C4, 79607 }, 79608 [0x28C5]={ 79609 category="so", 79610 description="BRAILLE PATTERN DOTS-0x0562", 79611 direction="l", 79612 linebreak="al", 79613 unicodeslot=0x28C5, 79614 }, 79615 [0x28C6]={ 79616 category="so", 79617 description="BRAILLE PATTERN DOTS-0x094A", 79618 direction="l", 79619 linebreak="al", 79620 unicodeslot=0x28C6, 79621 }, 79622 [0x28C7]={ 79623 category="so", 79624 description="BRAILLE PATTERN DOTS-0x305A", 79625 direction="l", 79626 linebreak="al", 79627 unicodeslot=0x28C7, 79628 }, 79629 [0x28C8]={ 79630 category="so", 79631 description="BRAILLE PATTERN DOTS-0x01DE", 79632 direction="l", 79633 linebreak="al", 79634 unicodeslot=0x28C8, 79635 }, 79636 [0x28C9]={ 79637 category="so", 79638 description="BRAILLE PATTERN DOTS-0x05C6", 79639 direction="l", 79640 linebreak="al", 79641 unicodeslot=0x28C9, 79642 }, 79643 [0x28CA]={ 79644 category="so", 79645 description="BRAILLE PATTERN DOTS-0x09AE", 79646 direction="l", 79647 linebreak="al", 79648 unicodeslot=0x28CA, 79649 }, 79650 [0x28CB]={ 79651 category="so", 79652 description="BRAILLE PATTERN DOTS-0x30BE", 79653 direction="l", 79654 linebreak="al", 79655 unicodeslot=0x28CB, 79656 }, 79657 [0x28CC]={ 79658 category="so", 79659 description="BRAILLE PATTERN DOTS-0x0D96", 79660 direction="l", 79661 linebreak="al", 79662 unicodeslot=0x28CC, 79663 }, 79664 [0x28CD]={ 79665 category="so", 79666 description="BRAILLE PATTERN DOTS-0x34A6", 79667 direction="l", 79668 linebreak="al", 79669 unicodeslot=0x28CD, 79670 }, 79671 [0x28CE]={ 79672 category="so", 79673 description="BRAILLE PATTERN DOTS-0x5BB6", 79674 direction="l", 79675 linebreak="al", 79676 unicodeslot=0x28CE, 79677 }, 79678 [0x28CF]={ 79679 category="so", 79680 description="BRAILLE PATTERN DOTS-0x1E256", 79681 direction="l", 79682 linebreak="al", 79683 unicodeslot=0x28CF, 79684 }, 79685 [0x28D0]={ 79686 category="so", 79687 description="BRAILLE PATTERN DOTS-0x0242", 79688 direction="l", 79689 linebreak="al", 79690 unicodeslot=0x28D0, 79691 }, 79692 [0x28D1]={ 79693 category="so", 79694 description="BRAILLE PATTERN DOTS-0x062A", 79695 direction="l", 79696 linebreak="al", 79697 unicodeslot=0x28D1, 79698 }, 79699 [0x28D2]={ 79700 category="so", 79701 description="BRAILLE PATTERN DOTS-0x0A12", 79702 direction="l", 79703 linebreak="al", 79704 unicodeslot=0x28D2, 79705 }, 79706 [0x28D3]={ 79707 category="so", 79708 description="BRAILLE PATTERN DOTS-0x3122", 79709 direction="l", 79710 linebreak="al", 79711 unicodeslot=0x28D3, 79712 }, 79713 [0x28D4]={ 79714 category="so", 79715 description="BRAILLE PATTERN DOTS-0x0DFA", 79716 direction="l", 79717 linebreak="al", 79718 unicodeslot=0x28D4, 79719 }, 79720 [0x28D5]={ 79721 category="so", 79722 description="BRAILLE PATTERN DOTS-0x350A", 79723 direction="l", 79724 linebreak="al", 79725 unicodeslot=0x28D5, 79726 }, 79727 [0x28D6]={ 79728 category="so", 79729 description="BRAILLE PATTERN DOTS-0x5C1A", 79730 direction="l", 79731 linebreak="al", 79732 unicodeslot=0x28D6, 79733 }, 79734 [0x28D7]={ 79735 category="so", 79736 description="BRAILLE PATTERN DOTS-0x1E2BA", 79737 direction="l", 79738 linebreak="al", 79739 unicodeslot=0x28D7, 79740 }, 79741 [0x28D8]={ 79742 category="so", 79743 description="BRAILLE PATTERN DOTS-0x11E2", 79744 direction="l", 79745 linebreak="al", 79746 unicodeslot=0x28D8, 79747 }, 79748 [0x28D9]={ 79749 category="so", 79750 description="BRAILLE PATTERN DOTS-0x38F2", 79751 direction="l", 79752 linebreak="al", 79753 unicodeslot=0x28D9, 79754 }, 79755 [0x28DA]={ 79756 category="so", 79757 description="BRAILLE PATTERN DOTS-0x6002", 79758 direction="l", 79759 linebreak="al", 79760 unicodeslot=0x28DA, 79761 }, 79762 [0x28DB]={ 79763 category="so", 79764 description="BRAILLE PATTERN DOTS-0x1E6A2", 79765 direction="l", 79766 linebreak="al", 79767 unicodeslot=0x28DB, 79768 }, 79769 [0x28DC]={ 79770 category="so", 79771 description="BRAILLE PATTERN DOTS-0x8712", 79772 direction="l", 79773 linebreak="al", 79774 unicodeslot=0x28DC, 79775 }, 79776 [0x28DD]={ 79777 category="so", 79778 description="BRAILLE PATTERN DOTS-0x20DB2", 79779 direction="l", 79780 linebreak="al", 79781 unicodeslot=0x28DD, 79782 }, 79783 [0x28DE]={ 79784 category="so", 79785 description="BRAILLE PATTERN DOTS-0x39452", 79786 direction="l", 79787 linebreak="al", 79788 unicodeslot=0x28DE, 79789 }, 79790 [0x28DF]={ 79791 category="so", 79792 description="BRAILLE PATTERN DOTS-0x12D692", 79793 direction="l", 79794 linebreak="al", 79795 unicodeslot=0x28DF, 79796 }, 79797 [0x28E0]={ 79798 category="so", 79799 description="BRAILLE PATTERN DOTS-0x02A6", 79800 direction="l", 79801 linebreak="al", 79802 unicodeslot=0x28E0, 79803 }, 79804 [0x28E1]={ 79805 category="so", 79806 description="BRAILLE PATTERN DOTS-0x068E", 79807 direction="l", 79808 linebreak="al", 79809 unicodeslot=0x28E1, 79810 }, 79811 [0x28E2]={ 79812 category="so", 79813 description="BRAILLE PATTERN DOTS-0x0A76", 79814 direction="l", 79815 linebreak="al", 79816 unicodeslot=0x28E2, 79817 }, 79818 [0x28E3]={ 79819 category="so", 79820 description="BRAILLE PATTERN DOTS-0x3186", 79821 direction="l", 79822 linebreak="al", 79823 unicodeslot=0x28E3, 79824 }, 79825 [0x28E4]={ 79826 category="so", 79827 description="BRAILLE PATTERN DOTS-0x0E5E", 79828 direction="l", 79829 linebreak="al", 79830 unicodeslot=0x28E4, 79831 }, 79832 [0x28E5]={ 79833 category="so", 79834 description="BRAILLE PATTERN DOTS-0x356E", 79835 direction="l", 79836 linebreak="al", 79837 unicodeslot=0x28E5, 79838 }, 79839 [0x28E6]={ 79840 category="so", 79841 description="BRAILLE PATTERN DOTS-0x5C7E", 79842 direction="l", 79843 linebreak="al", 79844 unicodeslot=0x28E6, 79845 }, 79846 [0x28E7]={ 79847 category="so", 79848 description="BRAILLE PATTERN DOTS-0x1E31E", 79849 direction="l", 79850 linebreak="al", 79851 unicodeslot=0x28E7, 79852 }, 79853 [0x28E8]={ 79854 category="so", 79855 description="BRAILLE PATTERN DOTS-0x1246", 79856 direction="l", 79857 linebreak="al", 79858 unicodeslot=0x28E8, 79859 }, 79860 [0x28E9]={ 79861 category="so", 79862 description="BRAILLE PATTERN DOTS-0x3956", 79863 direction="l", 79864 linebreak="al", 79865 unicodeslot=0x28E9, 79866 }, 79867 [0x28EA]={ 79868 category="so", 79869 description="BRAILLE PATTERN DOTS-0x6066", 79870 direction="l", 79871 linebreak="al", 79872 unicodeslot=0x28EA, 79873 }, 79874 [0x28EB]={ 79875 category="so", 79876 description="BRAILLE PATTERN DOTS-0x1E706", 79877 direction="l", 79878 linebreak="al", 79879 unicodeslot=0x28EB, 79880 }, 79881 [0x28EC]={ 79882 category="so", 79883 description="BRAILLE PATTERN DOTS-0x8776", 79884 direction="l", 79885 linebreak="al", 79886 unicodeslot=0x28EC, 79887 }, 79888 [0x28ED]={ 79889 category="so", 79890 description="BRAILLE PATTERN DOTS-0x20E16", 79891 direction="l", 79892 linebreak="al", 79893 unicodeslot=0x28ED, 79894 }, 79895 [0x28EE]={ 79896 category="so", 79897 description="BRAILLE PATTERN DOTS-0x394B6", 79898 direction="l", 79899 linebreak="al", 79900 unicodeslot=0x28EE, 79901 }, 79902 [0x28EF]={ 79903 category="so", 79904 description="BRAILLE PATTERN DOTS-0x12D6F6", 79905 direction="l", 79906 linebreak="al", 79907 unicodeslot=0x28EF, 79908 }, 79909 [0x28F0]={ 79910 category="so", 79911 description="BRAILLE PATTERN DOTS-0x162E", 79912 direction="l", 79913 linebreak="al", 79914 unicodeslot=0x28F0, 79915 }, 79916 [0x28F1]={ 79917 category="so", 79918 description="BRAILLE PATTERN DOTS-0x3D3E", 79919 direction="l", 79920 linebreak="al", 79921 unicodeslot=0x28F1, 79922 }, 79923 [0x28F2]={ 79924 category="so", 79925 description="BRAILLE PATTERN DOTS-0x644E", 79926 direction="l", 79927 linebreak="al", 79928 unicodeslot=0x28F2, 79929 }, 79930 [0x28F3]={ 79931 category="so", 79932 description="BRAILLE PATTERN DOTS-0x1EAEE", 79933 direction="l", 79934 linebreak="al", 79935 unicodeslot=0x28F3, 79936 }, 79937 [0x28F4]={ 79938 category="so", 79939 description="BRAILLE PATTERN DOTS-0x8B5E", 79940 direction="l", 79941 linebreak="al", 79942 unicodeslot=0x28F4, 79943 }, 79944 [0x28F5]={ 79945 category="so", 79946 description="BRAILLE PATTERN DOTS-0x211FE", 79947 direction="l", 79948 linebreak="al", 79949 unicodeslot=0x28F5, 79950 }, 79951 [0x28F6]={ 79952 category="so", 79953 description="BRAILLE PATTERN DOTS-0x3989E", 79954 direction="l", 79955 linebreak="al", 79956 unicodeslot=0x28F6, 79957 }, 79958 [0x28F7]={ 79959 category="so", 79960 description="BRAILLE PATTERN DOTS-0x12DADE", 79961 direction="l", 79962 linebreak="al", 79963 unicodeslot=0x28F7, 79964 }, 79965 [0x28F8]={ 79966 category="so", 79967 description="BRAILLE PATTERN DOTS-0xB26E", 79968 direction="l", 79969 linebreak="al", 79970 unicodeslot=0x28F8, 79971 }, 79972 [0x28F9]={ 79973 category="so", 79974 description="BRAILLE PATTERN DOTS-0x2390E", 79975 direction="l", 79976 linebreak="al", 79977 unicodeslot=0x28F9, 79978 }, 79979 [0x28FA]={ 79980 category="so", 79981 description="BRAILLE PATTERN DOTS-0x3BFAE", 79982 direction="l", 79983 linebreak="al", 79984 unicodeslot=0x28FA, 79985 }, 79986 [0x28FB]={ 79987 category="so", 79988 description="BRAILLE PATTERN DOTS-0x1301EE", 79989 direction="l", 79990 linebreak="al", 79991 unicodeslot=0x28FB, 79992 }, 79993 [0x28FC]={ 79994 category="so", 79995 description="BRAILLE PATTERN DOTS-0x5464E", 79996 direction="l", 79997 linebreak="al", 79998 unicodeslot=0x28FC, 79999 }, 80000 [0x28FD]={ 80001 category="so", 80002 description="BRAILLE PATTERN DOTS-0x14888E", 80003 direction="l", 80004 linebreak="al", 80005 unicodeslot=0x28FD, 80006 }, 80007 [0x28FE]={ 80008 category="so", 80009 description="BRAILLE PATTERN DOTS-0x23CACE", 80010 direction="l", 80011 linebreak="al", 80012 unicodeslot=0x28FE, 80013 }, 80014 [0x28FF]={ 80015 category="so", 80016 description="BRAILLE PATTERN DOTS-0xBC614E", 80017 direction="l", 80018 linebreak="al", 80019 unicodeslot=0x28FF, 80020 }, 80021 [0x2900]={ 80022 category="sm", 80023 description="RIGHTWARDS TWO-HEADED ARROW WITH VERTICAL STROKE", 80024 direction="on", 80025 linebreak="al", 80026 mathextensible="r", 80027 synonyms={ "partial surjection" }, 80028 unicodeslot=0x2900, 80029 }, 80030 [0x2901]={ 80031 category="sm", 80032 description="RIGHTWARDS TWO-HEADED ARROW WITH DOUBLE VERTICAL STROKE", 80033 direction="on", 80034 linebreak="al", 80035 mathextensible="r", 80036 synonyms={ "finite surjection" }, 80037 unicodeslot=0x2901, 80038 }, 80039 [0x2902]={ 80040 category="sm", 80041 description="LEFTWARDS DOUBLE ARROW WITH VERTICAL STROKE", 80042 direction="on", 80043 linebreak="al", 80044 mathextensible="l", 80045 unicodeslot=0x2902, 80046 }, 80047 [0x2903]={ 80048 category="sm", 80049 description="RIGHTWARDS DOUBLE ARROW WITH VERTICAL STROKE", 80050 direction="on", 80051 linebreak="al", 80052 mathextensible="r", 80053 unicodeslot=0x2903, 80054 }, 80055 [0x2904]={ 80056 category="sm", 80057 description="LEFT RIGHT DOUBLE ARROW WITH VERTICAL STROKE", 80058 direction="on", 80059 linebreak="al", 80060 mathextensible="h", 80061 unicodeslot=0x2904, 80062 }, 80063 [0x2905]={ 80064 category="sm", 80065 description="RIGHTWARDS TWO-HEADED ARROW FROM BAR", 80066 direction="on", 80067 linebreak="al", 80068 mathextensible="r", 80069 unicodeslot=0x2905, 80070 }, 80071 [0x2906]={ 80072 category="sm", 80073 description="LEFTWARDS DOUBLE ARROW FROM BAR", 80074 direction="on", 80075 linebreak="al", 80076 mathclass="relation", 80077 mathextensible="l", 80078 mathname="Mapsfrom", 80079 synonyms={ "maps from" }, 80080 unicodeslot=0x2906, 80081 }, 80082 [0x2907]={ 80083 category="sm", 80084 description="RIGHTWARDS DOUBLE ARROW FROM BAR", 80085 direction="on", 80086 linebreak="al", 80087 mathclass="relation", 80088 mathextensible="r", 80089 mathname="Mapsto", 80090 synonyms={ "maps to" }, 80091 unicodeslot=0x2907, 80092 }, 80093 [0x2908]={ 80094 category="sm", 80095 description="DOWNWARDS ARROW WITH HORIZONTAL STROKE", 80096 direction="on", 80097 linebreak="al", 80098 mathextensible="d", 80099 unicodeslot=0x2908, 80100 }, 80101 [0x2909]={ 80102 category="sm", 80103 description="UPWARDS ARROW WITH HORIZONTAL STROKE", 80104 direction="on", 80105 linebreak="al", 80106 mathextensible="u", 80107 unicodeslot=0x2909, 80108 }, 80109 [0x290A]={ 80110 category="sm", 80111 description="UPWARDS TRIPLE ARROW", 80112 direction="on", 80113 linebreak="al", 80114 mathclass="relation", 80115 mathextensible="u", 80116 mathname="Uuparrow", 80117 unicodeslot=0x290A, 80118 }, 80119 [0x290B]={ 80120 category="sm", 80121 description="DOWNWARDS TRIPLE ARROW", 80122 direction="on", 80123 linebreak="al", 80124 mathclass="relation", 80125 mathextensible="d", 80126 mathname="Ddownarrow", 80127 unicodeslot=0x290B, 80128 }, 80129 [0x290C]={ 80130 category="sm", 80131 description="LEFTWARDS DOUBLE DASH ARROW", 80132 direction="on", 80133 linebreak="al", 80134 mathclass="relation", 80135 mathextensible="l", 80136 mathname="dashedleftarrow", 80137 unicodeslot=0x290C, 80138 }, 80139 [0x290D]={ 80140 category="sm", 80141 description="RIGHTWARDS DOUBLE DASH ARROW", 80142 direction="on", 80143 linebreak="al", 80144 mathclass="relation", 80145 mathextensible="r", 80146 mathname="dashedrightarrow", 80147 unicodeslot=0x290D, 80148 }, 80149 [0x290E]={ 80150 category="sm", 80151 description="LEFTWARDS TRIPLE DASH ARROW", 80152 direction="on", 80153 linebreak="al", 80154 mathextensible="l", 80155 unicodeslot=0x290E, 80156 }, 80157 [0x290F]={ 80158 category="sm", 80159 description="RIGHTWARDS TRIPLE DASH ARROW", 80160 direction="on", 80161 linebreak="al", 80162 mathextensible="r", 80163 unicodeslot=0x290F, 80164 }, 80165 [0x2910]={ 80166 category="sm", 80167 description="RIGHTWARDS TWO-HEADED TRIPLE DASH ARROW", 80168 direction="on", 80169 linebreak="al", 80170 mathextensible="r", 80171 unicodeslot=0x2910, 80172 }, 80173 [0x2911]={ 80174 category="sm", 80175 description="RIGHTWARDS ARROW WITH DOTTED STEM", 80176 direction="on", 80177 linebreak="al", 80178 mathclass="relation", 80179 mathextensible="r", 80180 mathname="dottedrightarrow", 80181 unicodeslot=0x2911, 80182 }, 80183 [0x2912]={ 80184 category="sm", 80185 description="UPWARDS ARROW TO BAR", 80186 direction="on", 80187 linebreak="al", 80188 mathextensible="u", 80189 unicodeslot=0x2912, 80190 }, 80191 [0x2913]={ 80192 category="sm", 80193 description="DOWNWARDS ARROW TO BAR", 80194 direction="on", 80195 linebreak="al", 80196 mathextensible="d", 80197 unicodeslot=0x2913, 80198 }, 80199 [0x2914]={ 80200 category="sm", 80201 description="RIGHTWARDS ARROW WITH TAIL WITH VERTICAL STROKE", 80202 direction="on", 80203 linebreak="al", 80204 mathextensible="r", 80205 synonyms={ "partial injection" }, 80206 unicodeslot=0x2914, 80207 }, 80208 [0x2915]={ 80209 category="sm", 80210 description="RIGHTWARDS ARROW WITH TAIL WITH DOUBLE VERTICAL STROKE", 80211 direction="on", 80212 linebreak="al", 80213 mathextensible="r", 80214 synonyms={ "finite injection" }, 80215 unicodeslot=0x2915, 80216 }, 80217 [0x2916]={ 80218 category="sm", 80219 description="RIGHTWARDS TWO-HEADED ARROW WITH TAIL", 80220 direction="on", 80221 linebreak="al", 80222 mathclass="relation", 80223 mathextensible="r", 80224 mathname="twoheadrightarrowtail", 80225 synonyms={ "bijection" }, 80226 unicodeslot=0x2916, 80227 }, 80228 [0x2917]={ 80229 category="sm", 80230 description="RIGHTWARDS TWO-HEADED ARROW WITH TAIL WITH VERTICAL STROKE", 80231 direction="on", 80232 linebreak="al", 80233 mathclass="relation", 80234 mathextensible="r", 80235 synonyms={ "surjective injection" }, 80236 unicodeslot=0x2917, 80237 }, 80238 [0x2918]={ 80239 category="sm", 80240 description="RIGHTWARDS TWO-HEADED ARROW WITH TAIL WITH DOUBLE VERTICAL STROKE", 80241 direction="on", 80242 linebreak="al", 80243 mathextensible="r", 80244 synonyms={ "finite surjective injection" }, 80245 unicodeslot=0x2918, 80246 }, 80247 [0x2919]={ 80248 category="sm", 80249 description="LEFTWARDS ARROW-TAIL", 80250 direction="on", 80251 linebreak="al", 80252 mathextensible="l", 80253 unicodeslot=0x2919, 80254 }, 80255 [0x291A]={ 80256 category="sm", 80257 description="RIGHTWARDS ARROW-TAIL", 80258 direction="on", 80259 linebreak="al", 80260 mathextensible="r", 80261 unicodeslot=0x291A, 80262 }, 80263 [0x291B]={ 80264 category="sm", 80265 description="LEFTWARDS DOUBLE ARROW-TAIL", 80266 direction="on", 80267 linebreak="al", 80268 mathextensible="l", 80269 unicodeslot=0x291B, 80270 }, 80271 [0x291C]={ 80272 category="sm", 80273 description="RIGHTWARDS DOUBLE ARROW-TAIL", 80274 direction="on", 80275 linebreak="al", 80276 mathextensible="r", 80277 unicodeslot=0x291C, 80278 }, 80279 [0x291D]={ 80280 category="sm", 80281 description="LEFTWARDS ARROW TO BLACK DIAMOND", 80282 direction="on", 80283 linebreak="al", 80284 mathextensible="l", 80285 unicodeslot=0x291D, 80286 }, 80287 [0x291E]={ 80288 category="sm", 80289 description="RIGHTWARDS ARROW TO BLACK DIAMOND", 80290 direction="on", 80291 linebreak="al", 80292 mathextensible="r", 80293 unicodeslot=0x291E, 80294 }, 80295 [0x291F]={ 80296 category="sm", 80297 description="LEFTWARDS ARROW FROM BAR TO BLACK DIAMOND", 80298 direction="on", 80299 linebreak="al", 80300 mathextensible="l", 80301 unicodeslot=0x291F, 80302 }, 80303 [0x2920]={ 80304 category="sm", 80305 description="RIGHTWARDS ARROW FROM BAR TO BLACK DIAMOND", 80306 direction="on", 80307 linebreak="al", 80308 mathextensible="r", 80309 unicodeslot=0x2920, 80310 }, 80311 [0x2921]={ 80312 category="sm", 80313 description="NORTH WEST AND SOUTH EAST ARROW", 80314 direction="on", 80315 linebreak="al", 80316 mathclass="relation", 80317 mathname="nwsearrow", 80318 unicodeslot=0x2921, 80319 }, 80320 [0x2922]={ 80321 category="sm", 80322 description="NORTH EAST AND SOUTH WEST ARROW", 80323 direction="on", 80324 linebreak="al", 80325 mathclass="relation", 80326 mathname="neswarrow", 80327 unicodeslot=0x2922, 80328 }, 80329 [0x2923]={ 80330 category="sm", 80331 description="NORTH WEST ARROW WITH HOOK", 80332 direction="on", 80333 linebreak="al", 80334 mathclass="relation", 80335 mathname="lhooknwarrow", 80336 unicodeslot=0x2923, 80337 }, 80338 [0x2924]={ 80339 category="sm", 80340 description="NORTH EAST ARROW WITH HOOK", 80341 direction="on", 80342 linebreak="al", 80343 mathclass="relation", 80344 mathname="rhooknearrow", 80345 unicodeslot=0x2924, 80346 }, 80347 [0x2925]={ 80348 category="sm", 80349 description="SOUTH EAST ARROW WITH HOOK", 80350 direction="on", 80351 linebreak="al", 80352 mathclass="relation", 80353 mathname="lhooksearrow", 80354 unicodeslot=0x2925, 80355 }, 80356 [0x2926]={ 80357 category="sm", 80358 description="SOUTH WEST ARROW WITH HOOK", 80359 direction="on", 80360 linebreak="al", 80361 mathclass="relation", 80362 mathname="rhookswarrow", 80363 unicodeslot=0x2926, 80364 }, 80365 [0x2927]={ 80366 category="sm", 80367 description="NORTH WEST ARROW AND NORTH EAST ARROW", 80368 direction="on", 80369 linebreak="al", 80370 unicodeslot=0x2927, 80371 }, 80372 [0x2928]={ 80373 category="sm", 80374 description="NORTH EAST ARROW AND SOUTH EAST ARROW", 80375 direction="on", 80376 linebreak="al", 80377 unicodeslot=0x2928, 80378 }, 80379 [0x2929]={ 80380 category="sm", 80381 description="SOUTH EAST ARROW AND SOUTH WEST ARROW", 80382 direction="on", 80383 linebreak="al", 80384 unicodeslot=0x2929, 80385 }, 80386 [0x292A]={ 80387 category="sm", 80388 description="SOUTH WEST ARROW AND NORTH WEST ARROW", 80389 direction="on", 80390 linebreak="al", 80391 unicodeslot=0x292A, 80392 }, 80393 [0x292B]={ 80394 category="sm", 80395 description="RISING DIAGONAL CROSSING FALLING DIAGONAL", 80396 direction="on", 80397 linebreak="al", 80398 unicodeslot=0x292B, 80399 }, 80400 [0x292C]={ 80401 category="sm", 80402 description="FALLING DIAGONAL CROSSING RISING DIAGONAL", 80403 direction="on", 80404 linebreak="al", 80405 unicodeslot=0x292C, 80406 }, 80407 [0x292D]={ 80408 category="sm", 80409 description="SOUTH EAST ARROW CROSSING NORTH EAST ARROW", 80410 direction="on", 80411 linebreak="al", 80412 unicodeslot=0x292D, 80413 }, 80414 [0x292E]={ 80415 category="sm", 80416 description="NORTH EAST ARROW CROSSING SOUTH EAST ARROW", 80417 direction="on", 80418 linebreak="al", 80419 unicodeslot=0x292E, 80420 }, 80421 [0x292F]={ 80422 category="sm", 80423 description="FALLING DIAGONAL CROSSING NORTH EAST ARROW", 80424 direction="on", 80425 linebreak="al", 80426 unicodeslot=0x292F, 80427 }, 80428 [0x2930]={ 80429 category="sm", 80430 description="RISING DIAGONAL CROSSING SOUTH EAST ARROW", 80431 direction="on", 80432 linebreak="al", 80433 unicodeslot=0x2930, 80434 }, 80435 [0x2931]={ 80436 category="sm", 80437 description="NORTH EAST ARROW CROSSING NORTH WEST ARROW", 80438 direction="on", 80439 linebreak="al", 80440 unicodeslot=0x2931, 80441 }, 80442 [0x2932]={ 80443 category="sm", 80444 description="NORTH WEST ARROW CROSSING NORTH EAST ARROW", 80445 direction="on", 80446 linebreak="al", 80447 unicodeslot=0x2932, 80448 }, 80449 [0x2933]={ 80450 category="sm", 80451 description="WAVE ARROW POINTING DIRECTLY RIGHT", 80452 direction="on", 80453 linebreak="al", 80454 mathextensible="r", 80455 unicodeslot=0x2933, 80456 }, 80457 [0x2934]={ 80458 category="sm", 80459 description="ARROW POINTING RIGHTWARDS THEN CURVING UPWARDS", 80460 direction="on", 80461 linebreak="al", 80462 mathextensible="m", 80463 unicodeslot=0x2934, 80464 variants=variants_emoji, 80465 }, 80466 [0x2935]={ 80467 category="sm", 80468 description="ARROW POINTING RIGHTWARDS THEN CURVING DOWNWARDS", 80469 direction="on", 80470 linebreak="al", 80471 mathextensible="m", 80472 unicodeslot=0x2935, 80473 variants=variants_emoji, 80474 }, 80475 [0x2936]={ 80476 category="sm", 80477 description="ARROW POINTING DOWNWARDS THEN CURVING LEFTWARDS", 80478 direction="on", 80479 linebreak="al", 80480 mathextensible="m", 80481 unicodeslot=0x2936, 80482 }, 80483 [0x2937]={ 80484 category="sm", 80485 description="ARROW POINTING DOWNWARDS THEN CURVING RIGHTWARDS", 80486 direction="on", 80487 linebreak="al", 80488 mathextensible="m", 80489 unicodeslot=0x2937, 80490 }, 80491 [0x2938]={ 80492 category="sm", 80493 description="RIGHT-SIDE ARC CLOCKWISE ARROW", 80494 direction="on", 80495 linebreak="al", 80496 mathextensible="r", 80497 unicodeslot=0x2938, 80498 }, 80499 [0x2939]={ 80500 category="sm", 80501 description="LEFT-SIDE ARC ANTICLOCKWISE ARROW", 80502 direction="on", 80503 linebreak="al", 80504 mathextensible="l", 80505 unicodeslot=0x2939, 80506 }, 80507 [0x293A]={ 80508 category="sm", 80509 description="TOP ARC ANTICLOCKWISE ARROW", 80510 direction="on", 80511 linebreak="al", 80512 unicodeslot=0x293A, 80513 }, 80514 [0x293B]={ 80515 category="sm", 80516 description="BOTTOM ARC ANTICLOCKWISE ARROW", 80517 direction="on", 80518 linebreak="al", 80519 unicodeslot=0x293B, 80520 }, 80521 [0x293C]={ 80522 category="sm", 80523 description="TOP ARC CLOCKWISE ARROW WITH MINUS", 80524 direction="on", 80525 linebreak="al", 80526 unicodeslot=0x293C, 80527 }, 80528 [0x293D]={ 80529 category="sm", 80530 description="TOP ARC ANTICLOCKWISE ARROW WITH PLUS", 80531 direction="on", 80532 linebreak="al", 80533 unicodeslot=0x293D, 80534 }, 80535 [0x293E]={ 80536 category="sm", 80537 description="LOWER RIGHT SEMICIRCULAR CLOCKWISE ARROW", 80538 direction="on", 80539 linebreak="al", 80540 mathextensible="r", 80541 unicodeslot=0x293E, 80542 }, 80543 [0x293F]={ 80544 category="sm", 80545 description="LOWER LEFT SEMICIRCULAR ANTICLOCKWISE ARROW", 80546 direction="on", 80547 linebreak="al", 80548 mathextensible="l", 80549 unicodeslot=0x293F, 80550 }, 80551 [0x2940]={ 80552 category="sm", 80553 description="ANTICLOCKWISE CLOSED CIRCLE ARROW", 80554 direction="on", 80555 linebreak="al", 80556 unicodeslot=0x2940, 80557 }, 80558 [0x2941]={ 80559 category="sm", 80560 description="CLOCKWISE CLOSED CIRCLE ARROW", 80561 direction="on", 80562 linebreak="al", 80563 unicodeslot=0x2941, 80564 }, 80565 [0x2942]={ 80566 category="sm", 80567 description="RIGHTWARDS ARROW ABOVE SHORT LEFTWARDS ARROW", 80568 direction="on", 80569 linebreak="al", 80570 unicodeslot=0x2942, 80571 }, 80572 [0x2943]={ 80573 category="sm", 80574 description="LEFTWARDS ARROW ABOVE SHORT RIGHTWARDS ARROW", 80575 direction="on", 80576 linebreak="al", 80577 unicodeslot=0x2943, 80578 }, 80579 [0x2944]={ 80580 category="sm", 80581 description="SHORT RIGHTWARDS ARROW ABOVE LEFTWARDS ARROW", 80582 direction="on", 80583 linebreak="al", 80584 unicodeslot=0x2944, 80585 }, 80586 [0x2945]={ 80587 category="sm", 80588 description="RIGHTWARDS ARROW WITH PLUS BELOW", 80589 direction="on", 80590 linebreak="al", 80591 mathextensible="r", 80592 unicodeslot=0x2945, 80593 }, 80594 [0x2946]={ 80595 category="sm", 80596 description="LEFTWARDS ARROW WITH PLUS BELOW", 80597 direction="on", 80598 linebreak="al", 80599 mathextensible="l", 80600 unicodeslot=0x2946, 80601 }, 80602 [0x2947]={ 80603 category="sm", 80604 description="RIGHTWARDS ARROW THROUGH X", 80605 direction="on", 80606 linebreak="al", 80607 unicodeslot=0x2947, 80608 }, 80609 [0x2948]={ 80610 category="sm", 80611 description="LEFT RIGHT ARROW THROUGH SMALL CIRCLE", 80612 direction="on", 80613 linebreak="al", 80614 unicodeslot=0x2948, 80615 }, 80616 [0x2949]={ 80617 category="sm", 80618 description="UPWARDS TWO-HEADED ARROW FROM SMALL CIRCLE", 80619 direction="on", 80620 linebreak="al", 80621 mathextensible="u", 80622 unicodeslot=0x2949, 80623 }, 80624 [0x294A]={ 80625 category="sm", 80626 description="LEFT BARB UP RIGHT BARB DOWN HARPOON", 80627 direction="on", 80628 linebreak="al", 80629 unicodeslot=0x294A, 80630 }, 80631 [0x294B]={ 80632 category="sm", 80633 description="LEFT BARB DOWN RIGHT BARB UP HARPOON", 80634 direction="on", 80635 linebreak="al", 80636 unicodeslot=0x294B, 80637 }, 80638 [0x294C]={ 80639 category="sm", 80640 description="UP BARB RIGHT DOWN BARB LEFT HARPOON", 80641 direction="on", 80642 linebreak="al", 80643 unicodeslot=0x294C, 80644 }, 80645 [0x294D]={ 80646 category="sm", 80647 description="UP BARB LEFT DOWN BARB RIGHT HARPOON", 80648 direction="on", 80649 linebreak="al", 80650 unicodeslot=0x294D, 80651 }, 80652 [0x294E]={ 80653 category="sm", 80654 description="LEFT BARB UP RIGHT BARB UP HARPOON", 80655 direction="on", 80656 linebreak="al", 80657 unicodeslot=0x294E, 80658 }, 80659 [0x294F]={ 80660 category="sm", 80661 description="UP BARB RIGHT DOWN BARB RIGHT HARPOON", 80662 direction="on", 80663 linebreak="al", 80664 unicodeslot=0x294F, 80665 }, 80666 [0x2950]={ 80667 category="sm", 80668 description="LEFT BARB DOWN RIGHT BARB DOWN HARPOON", 80669 direction="on", 80670 linebreak="al", 80671 unicodeslot=0x2950, 80672 }, 80673 [0x2951]={ 80674 category="sm", 80675 description="UP BARB LEFT DOWN BARB LEFT HARPOON", 80676 direction="on", 80677 linebreak="al", 80678 unicodeslot=0x2951, 80679 }, 80680 [0x2952]={ 80681 category="sm", 80682 description="LEFTWARDS HARPOON WITH BARB UP TO BAR", 80683 direction="on", 80684 linebreak="al", 80685 unicodeslot=0x2952, 80686 }, 80687 [0x2953]={ 80688 category="sm", 80689 description="RIGHTWARDS HARPOON WITH BARB UP TO BAR", 80690 direction="on", 80691 linebreak="al", 80692 unicodeslot=0x2953, 80693 }, 80694 [0x2954]={ 80695 category="sm", 80696 description="UPWARDS HARPOON WITH BARB RIGHT TO BAR", 80697 direction="on", 80698 linebreak="al", 80699 unicodeslot=0x2954, 80700 }, 80701 [0x2955]={ 80702 category="sm", 80703 description="DOWNWARDS HARPOON WITH BARB RIGHT TO BAR", 80704 direction="on", 80705 linebreak="al", 80706 unicodeslot=0x2955, 80707 }, 80708 [0x2956]={ 80709 category="sm", 80710 description="LEFTWARDS HARPOON WITH BARB DOWN TO BAR", 80711 direction="on", 80712 linebreak="al", 80713 unicodeslot=0x2956, 80714 }, 80715 [0x2957]={ 80716 category="sm", 80717 description="RIGHTWARDS HARPOON WITH BARB DOWN TO BAR", 80718 direction="on", 80719 linebreak="al", 80720 unicodeslot=0x2957, 80721 }, 80722 [0x2958]={ 80723 category="sm", 80724 description="UPWARDS HARPOON WITH BARB LEFT TO BAR", 80725 direction="on", 80726 linebreak="al", 80727 unicodeslot=0x2958, 80728 }, 80729 [0x2959]={ 80730 category="sm", 80731 description="DOWNWARDS HARPOON WITH BARB LEFT TO BAR", 80732 direction="on", 80733 linebreak="al", 80734 unicodeslot=0x2959, 80735 }, 80736 [0x295A]={ 80737 category="sm", 80738 description="LEFTWARDS HARPOON WITH BARB UP FROM BAR", 80739 direction="on", 80740 linebreak="al", 80741 unicodeslot=0x295A, 80742 }, 80743 [0x295B]={ 80744 category="sm", 80745 description="RIGHTWARDS HARPOON WITH BARB UP FROM BAR", 80746 direction="on", 80747 linebreak="al", 80748 unicodeslot=0x295B, 80749 }, 80750 [0x295C]={ 80751 category="sm", 80752 description="UPWARDS HARPOON WITH BARB RIGHT FROM BAR", 80753 direction="on", 80754 linebreak="al", 80755 unicodeslot=0x295C, 80756 }, 80757 [0x295D]={ 80758 category="sm", 80759 description="DOWNWARDS HARPOON WITH BARB RIGHT FROM BAR", 80760 direction="on", 80761 linebreak="al", 80762 unicodeslot=0x295D, 80763 }, 80764 [0x295E]={ 80765 category="sm", 80766 description="LEFTWARDS HARPOON WITH BARB DOWN FROM BAR", 80767 direction="on", 80768 linebreak="al", 80769 unicodeslot=0x295E, 80770 }, 80771 [0x295F]={ 80772 category="sm", 80773 description="RIGHTWARDS HARPOON WITH BARB DOWN FROM BAR", 80774 direction="on", 80775 linebreak="al", 80776 unicodeslot=0x295F, 80777 }, 80778 [0x2960]={ 80779 category="sm", 80780 description="UPWARDS HARPOON WITH BARB LEFT FROM BAR", 80781 direction="on", 80782 linebreak="al", 80783 unicodeslot=0x2960, 80784 }, 80785 [0x2961]={ 80786 category="sm", 80787 description="DOWNWARDS HARPOON WITH BARB LEFT FROM BAR", 80788 direction="on", 80789 linebreak="al", 80790 unicodeslot=0x2961, 80791 }, 80792 [0x2962]={ 80793 category="sm", 80794 description="LEFTWARDS HARPOON WITH BARB UP ABOVE LEFTWARDS HARPOON WITH BARB DOWN", 80795 direction="on", 80796 linebreak="al", 80797 unicodeslot=0x2962, 80798 }, 80799 [0x2963]={ 80800 category="sm", 80801 description="UPWARDS HARPOON WITH BARB LEFT BESIDE UPWARDS HARPOON WITH BARB RIGHT", 80802 direction="on", 80803 linebreak="al", 80804 unicodeslot=0x2963, 80805 }, 80806 [0x2964]={ 80807 category="sm", 80808 description="RIGHTWARDS HARPOON WITH BARB UP ABOVE RIGHTWARDS HARPOON WITH BARB DOWN", 80809 direction="on", 80810 linebreak="al", 80811 unicodeslot=0x2964, 80812 }, 80813 [0x2965]={ 80814 category="sm", 80815 description="DOWNWARDS HARPOON WITH BARB LEFT BESIDE DOWNWARDS HARPOON WITH BARB RIGHT", 80816 direction="on", 80817 linebreak="al", 80818 unicodeslot=0x2965, 80819 }, 80820 [0x2966]={ 80821 category="sm", 80822 description="LEFTWARDS HARPOON WITH BARB UP ABOVE RIGHTWARDS HARPOON WITH BARB UP", 80823 direction="on", 80824 linebreak="al", 80825 unicodeslot=0x2966, 80826 }, 80827 [0x2967]={ 80828 category="sm", 80829 description="LEFTWARDS HARPOON WITH BARB DOWN ABOVE RIGHTWARDS HARPOON WITH BARB DOWN", 80830 direction="on", 80831 linebreak="al", 80832 unicodeslot=0x2967, 80833 }, 80834 [0x2968]={ 80835 category="sm", 80836 description="RIGHTWARDS HARPOON WITH BARB UP ABOVE LEFTWARDS HARPOON WITH BARB UP", 80837 direction="on", 80838 linebreak="al", 80839 unicodeslot=0x2968, 80840 }, 80841 [0x2969]={ 80842 category="sm", 80843 description="RIGHTWARDS HARPOON WITH BARB DOWN ABOVE LEFTWARDS HARPOON WITH BARB DOWN", 80844 direction="on", 80845 linebreak="al", 80846 unicodeslot=0x2969, 80847 }, 80848 [0x296A]={ 80849 category="sm", 80850 description="LEFTWARDS HARPOON WITH BARB UP ABOVE LONG DASH", 80851 direction="on", 80852 linebreak="al", 80853 unicodeslot=0x296A, 80854 }, 80855 [0x296B]={ 80856 category="sm", 80857 description="LEFTWARDS HARPOON WITH BARB DOWN BELOW LONG DASH", 80858 direction="on", 80859 linebreak="al", 80860 unicodeslot=0x296B, 80861 }, 80862 [0x296C]={ 80863 category="sm", 80864 description="RIGHTWARDS HARPOON WITH BARB UP ABOVE LONG DASH", 80865 direction="on", 80866 linebreak="al", 80867 unicodeslot=0x296C, 80868 }, 80869 [0x296D]={ 80870 category="sm", 80871 description="RIGHTWARDS HARPOON WITH BARB DOWN BELOW LONG DASH", 80872 direction="on", 80873 linebreak="al", 80874 unicodeslot=0x296D, 80875 }, 80876 [0x296E]={ 80877 category="sm", 80878 description="UPWARDS HARPOON WITH BARB LEFT BESIDE DOWNWARDS HARPOON WITH BARB RIGHT", 80879 direction="on", 80880 linebreak="al", 80881 unicodeslot=0x296E, 80882 }, 80883 [0x296F]={ 80884 category="sm", 80885 description="DOWNWARDS HARPOON WITH BARB LEFT BESIDE UPWARDS HARPOON WITH BARB RIGHT", 80886 direction="on", 80887 linebreak="al", 80888 unicodeslot=0x296F, 80889 }, 80890 [0x2970]={ 80891 category="sm", 80892 description="RIGHT DOUBLE ARROW WITH ROUNDED HEAD", 80893 direction="on", 80894 linebreak="al", 80895 mathextensible="r", 80896 unicodeslot=0x2970, 80897 }, 80898 [0x2971]={ 80899 category="sm", 80900 description="EQUALS SIGN ABOVE RIGHTWARDS ARROW", 80901 direction="on", 80902 linebreak="al", 80903 unicodeslot=0x2971, 80904 }, 80905 [0x2972]={ 80906 category="sm", 80907 description="TILDE OPERATOR ABOVE RIGHTWARDS ARROW", 80908 direction="on", 80909 linebreak="al", 80910 unicodeslot=0x2972, 80911 }, 80912 [0x2973]={ 80913 category="sm", 80914 description="LEFTWARDS ARROW ABOVE TILDE OPERATOR", 80915 direction="on", 80916 linebreak="al", 80917 unicodeslot=0x2973, 80918 }, 80919 [0x2974]={ 80920 category="sm", 80921 description="RIGHTWARDS ARROW ABOVE TILDE OPERATOR", 80922 direction="on", 80923 linebreak="al", 80924 unicodeslot=0x2974, 80925 }, 80926 [0x2975]={ 80927 category="sm", 80928 description="RIGHTWARDS ARROW ABOVE ALMOST EQUAL TO", 80929 direction="on", 80930 linebreak="al", 80931 unicodeslot=0x2975, 80932 }, 80933 [0x2976]={ 80934 category="sm", 80935 description="LESS-THAN ABOVE LEFTWARDS ARROW", 80936 direction="on", 80937 linebreak="al", 80938 unicodeslot=0x2976, 80939 }, 80940 [0x2977]={ 80941 category="sm", 80942 description="LEFTWARDS ARROW THROUGH LESS-THAN", 80943 direction="on", 80944 linebreak="al", 80945 unicodeslot=0x2977, 80946 }, 80947 [0x2978]={ 80948 category="sm", 80949 description="GREATER-THAN ABOVE RIGHTWARDS ARROW", 80950 direction="on", 80951 linebreak="al", 80952 unicodeslot=0x2978, 80953 }, 80954 [0x2979]={ 80955 category="sm", 80956 description="SUBSET ABOVE RIGHTWARDS ARROW", 80957 direction="on", 80958 linebreak="al", 80959 unicodeslot=0x2979, 80960 }, 80961 [0x297A]={ 80962 category="sm", 80963 description="LEFTWARDS ARROW THROUGH SUBSET", 80964 direction="on", 80965 linebreak="al", 80966 unicodeslot=0x297A, 80967 }, 80968 [0x297B]={ 80969 category="sm", 80970 description="SUPERSET ABOVE LEFTWARDS ARROW", 80971 direction="on", 80972 linebreak="al", 80973 unicodeslot=0x297B, 80974 }, 80975 [0x297C]={ 80976 category="sm", 80977 description="LEFT FISH TAIL", 80978 direction="on", 80979 linebreak="al", 80980 unicodeslot=0x297C, 80981 }, 80982 [0x297D]={ 80983 category="sm", 80984 description="RIGHT FISH TAIL", 80985 direction="on", 80986 linebreak="al", 80987 unicodeslot=0x297D, 80988 }, 80989 [0x297E]={ 80990 category="sm", 80991 description="UP FISH TAIL", 80992 direction="on", 80993 linebreak="al", 80994 unicodeslot=0x297E, 80995 }, 80996 [0x297F]={ 80997 category="sm", 80998 description="DOWN FISH TAIL", 80999 direction="on", 81000 linebreak="al", 81001 unicodeslot=0x297F, 81002 }, 81003 [0x2980]={ 81004 category="sm", 81005 description="TRIPLE VERTICAL BAR DELIMITER", 81006 direction="on", 81007 linebreak="al", 81008 mathlist={ 0x7C, 0x7C, 0x7C }, 81009 mathspec={ 81010 { 81011 class="delimiter", 81012 name="tripleverticalbar", 81013 }, 81014 }, 81015 unicodeslot=0x2980, 81016 }, 81017 [0x2981]={ 81018 category="sm", 81019 description="Z NOTATION SPOT", 81020 direction="on", 81021 linebreak="al", 81022 unicodeslot=0x2981, 81023 }, 81024 [0x2982]={ 81025 category="sm", 81026 description="Z NOTATION TYPE COLON", 81027 direction="on", 81028 linebreak="al", 81029 unicodeslot=0x2982, 81030 }, 81031 [0x2983]={ 81032 category="ps", 81033 description="LEFT WHITE CURLY BRACKET", 81034 direction="on", 81035 linebreak="op", 81036 mirror=0x2984, 81037 unicodeslot=0x2983, 81038 }, 81039 [0x2984]={ 81040 category="pe", 81041 description="RIGHT WHITE CURLY BRACKET", 81042 direction="on", 81043 linebreak="cl", 81044 mirror=0x2983, 81045 unicodeslot=0x2984, 81046 }, 81047 [0x2985]={ 81048 category="ps", 81049 cjkwd="na", 81050 description="LEFT WHITE PARENTHESIS", 81051 direction="on", 81052 linebreak="op", 81053 mirror=0x2986, 81054 unicodeslot=0x2985, 81055 }, 81056 [0x2986]={ 81057 category="pe", 81058 cjkwd="na", 81059 description="RIGHT WHITE PARENTHESIS", 81060 direction="on", 81061 linebreak="cl", 81062 mirror=0x2985, 81063 unicodeslot=0x2986, 81064 }, 81065 [0x2987]={ 81066 category="ps", 81067 description="Z NOTATION LEFT IMAGE BRACKET", 81068 direction="on", 81069 linebreak="op", 81070 mirror=0x2988, 81071 unicodeslot=0x2987, 81072 }, 81073 [0x2988]={ 81074 category="pe", 81075 description="Z NOTATION RIGHT IMAGE BRACKET", 81076 direction="on", 81077 linebreak="cl", 81078 mirror=0x2987, 81079 unicodeslot=0x2988, 81080 }, 81081 [0x2989]={ 81082 category="ps", 81083 description="Z NOTATION LEFT BINDING BRACKET", 81084 direction="on", 81085 linebreak="op", 81086 mirror=0x298A, 81087 unicodeslot=0x2989, 81088 }, 81089 [0x298A]={ 81090 category="pe", 81091 description="Z NOTATION RIGHT BINDING BRACKET", 81092 direction="on", 81093 linebreak="cl", 81094 mirror=0x2989, 81095 unicodeslot=0x298A, 81096 }, 81097 [0x298B]={ 81098 category="ps", 81099 description="LEFT SQUARE BRACKET WITH UNDERBAR", 81100 direction="on", 81101 linebreak="op", 81102 mirror=0x298C, 81103 unicodeslot=0x298B, 81104 }, 81105 [0x298C]={ 81106 category="pe", 81107 description="RIGHT SQUARE BRACKET WITH UNDERBAR", 81108 direction="on", 81109 linebreak="cl", 81110 mirror=0x298B, 81111 unicodeslot=0x298C, 81112 }, 81113 [0x298D]={ 81114 category="ps", 81115 description="LEFT SQUARE BRACKET WITH TICK IN TOP CORNER", 81116 direction="on", 81117 linebreak="op", 81118 mirror=0x2990, 81119 unicodeslot=0x298D, 81120 }, 81121 [0x298E]={ 81122 category="pe", 81123 description="RIGHT SQUARE BRACKET WITH TICK IN BOTTOM CORNER", 81124 direction="on", 81125 linebreak="cl", 81126 mirror=0x298F, 81127 unicodeslot=0x298E, 81128 }, 81129 [0x298F]={ 81130 category="ps", 81131 description="LEFT SQUARE BRACKET WITH TICK IN BOTTOM CORNER", 81132 direction="on", 81133 linebreak="op", 81134 mirror=0x298E, 81135 unicodeslot=0x298F, 81136 }, 81137 [0x2990]={ 81138 category="pe", 81139 description="RIGHT SQUARE BRACKET WITH TICK IN TOP CORNER", 81140 direction="on", 81141 linebreak="cl", 81142 mirror=0x298D, 81143 unicodeslot=0x2990, 81144 }, 81145 [0x2991]={ 81146 category="ps", 81147 description="LEFT ANGLE BRACKET WITH DOT", 81148 direction="on", 81149 linebreak="op", 81150 mirror=0x2992, 81151 unicodeslot=0x2991, 81152 }, 81153 [0x2992]={ 81154 category="pe", 81155 description="RIGHT ANGLE BRACKET WITH DOT", 81156 direction="on", 81157 linebreak="cl", 81158 mirror=0x2991, 81159 unicodeslot=0x2992, 81160 }, 81161 [0x2993]={ 81162 category="ps", 81163 description="LEFT ARC LESS-THAN BRACKET", 81164 direction="on", 81165 linebreak="op", 81166 mirror=0x2994, 81167 unicodeslot=0x2993, 81168 }, 81169 [0x2994]={ 81170 category="pe", 81171 description="RIGHT ARC GREATER-THAN BRACKET", 81172 direction="on", 81173 linebreak="cl", 81174 mirror=0x2993, 81175 unicodeslot=0x2994, 81176 }, 81177 [0x2995]={ 81178 category="ps", 81179 description="DOUBLE LEFT ARC GREATER-THAN BRACKET", 81180 direction="on", 81181 linebreak="op", 81182 mirror=0x2996, 81183 unicodeslot=0x2995, 81184 }, 81185 [0x2996]={ 81186 category="pe", 81187 description="DOUBLE RIGHT ARC LESS-THAN BRACKET", 81188 direction="on", 81189 linebreak="cl", 81190 mirror=0x2995, 81191 unicodeslot=0x2996, 81192 }, 81193 [0x2997]={ 81194 category="ps", 81195 description="LEFT BLACK TORTOISE SHELL BRACKET", 81196 direction="on", 81197 linebreak="op", 81198 mathspec={ 81199 { 81200 class="open", 81201 name="linterval", 81202 }, 81203 { 81204 class="close", 81205 name="rointerval", 81206 }, 81207 { 81208 class="open", 81209 name="llointerval", 81210 }, 81211 { 81212 class="close", 81213 name="rlointerval", 81214 }, 81215 }, 81216 mirror=0x2998, 81217 textclass="open", 81218 unicodeslot=0x2997, 81219 }, 81220 [0x2998]={ 81221 category="pe", 81222 description="RIGHT BLACK TORTOISE SHELL BRACKET", 81223 direction="on", 81224 linebreak="cl", 81225 mathspec={ 81226 { 81227 class="close", 81228 name="rinterval", 81229 }, 81230 { 81231 class="open", 81232 name="lointerval", 81233 }, 81234 { 81235 class="open", 81236 name="lrointerval", 81237 }, 81238 { 81239 class="close", 81240 name="rrointerval", 81241 }, 81242 }, 81243 mirror=0x2997, 81244 textclass="close", 81245 unicodeslot=0x2998, 81246 }, 81247 [0x2999]={ 81248 category="sm", 81249 description="DOTTED FENCE", 81250 direction="on", 81251 linebreak="al", 81252 unicodeslot=0x2999, 81253 }, 81254 [0x299A]={ 81255 category="sm", 81256 description="VERTICAL ZIGZAG LINE", 81257 direction="on", 81258 linebreak="al", 81259 unicodeslot=0x299A, 81260 }, 81261 [0x299B]={ 81262 category="sm", 81263 description="MEASURED ANGLE OPENING LEFT", 81264 direction="on", 81265 linebreak="al", 81266 mirror=0x2221, 81267 unicodeslot=0x299B, 81268 }, 81269 [0x299C]={ 81270 category="sm", 81271 description="RIGHT ANGLE VARIANT WITH SQUARE", 81272 direction="on", 81273 linebreak="al", 81274 unicodeslot=0x299C, 81275 }, 81276 [0x299D]={ 81277 category="sm", 81278 description="MEASURED RIGHT ANGLE WITH DOT", 81279 direction="on", 81280 linebreak="al", 81281 unicodeslot=0x299D, 81282 }, 81283 [0x299E]={ 81284 category="sm", 81285 description="ANGLE WITH S INSIDE", 81286 direction="on", 81287 linebreak="al", 81288 unicodeslot=0x299E, 81289 }, 81290 [0x299F]={ 81291 category="sm", 81292 description="ACUTE ANGLE", 81293 direction="on", 81294 linebreak="al", 81295 unicodeslot=0x299F, 81296 }, 81297 [0x29A0]={ 81298 category="sm", 81299 description="SPHERICAL ANGLE OPENING LEFT", 81300 direction="on", 81301 linebreak="al", 81302 mirror=0x2222, 81303 unicodeslot=0x29A0, 81304 }, 81305 [0x29A1]={ 81306 category="sm", 81307 description="SPHERICAL ANGLE OPENING UP", 81308 direction="on", 81309 linebreak="al", 81310 unicodeslot=0x29A1, 81311 }, 81312 [0x29A2]={ 81313 category="sm", 81314 description="TURNED ANGLE", 81315 direction="on", 81316 linebreak="al", 81317 unicodeslot=0x29A2, 81318 }, 81319 [0x29A3]={ 81320 category="sm", 81321 description="REVERSED ANGLE", 81322 direction="on", 81323 linebreak="al", 81324 mirror=0x2220, 81325 unicodeslot=0x29A3, 81326 }, 81327 [0x29A4]={ 81328 category="sm", 81329 description="ANGLE WITH UNDERBAR", 81330 direction="on", 81331 linebreak="al", 81332 mirror=0x29A5, 81333 unicodeslot=0x29A4, 81334 }, 81335 [0x29A5]={ 81336 category="sm", 81337 description="REVERSED ANGLE WITH UNDERBAR", 81338 direction="on", 81339 linebreak="al", 81340 mirror=0x29A4, 81341 unicodeslot=0x29A5, 81342 }, 81343 [0x29A6]={ 81344 category="sm", 81345 description="OBLIQUE ANGLE OPENING UP", 81346 direction="on", 81347 linebreak="al", 81348 unicodeslot=0x29A6, 81349 }, 81350 [0x29A7]={ 81351 category="sm", 81352 description="OBLIQUE ANGLE OPENING DOWN", 81353 direction="on", 81354 linebreak="al", 81355 unicodeslot=0x29A7, 81356 }, 81357 [0x29A8]={ 81358 category="sm", 81359 description="MEASURED ANGLE WITH OPEN ARM ENDING IN ARROW POINTING UP AND RIGHT", 81360 direction="on", 81361 linebreak="al", 81362 mirror=0x29A9, 81363 unicodeslot=0x29A8, 81364 }, 81365 [0x29A9]={ 81366 category="sm", 81367 description="MEASURED ANGLE WITH OPEN ARM ENDING IN ARROW POINTING UP AND LEFT", 81368 direction="on", 81369 linebreak="al", 81370 mirror=0x29A8, 81371 unicodeslot=0x29A9, 81372 }, 81373 [0x29AA]={ 81374 category="sm", 81375 description="MEASURED ANGLE WITH OPEN ARM ENDING IN ARROW POINTING DOWN AND RIGHT", 81376 direction="on", 81377 linebreak="al", 81378 mirror=0x29AB, 81379 unicodeslot=0x29AA, 81380 }, 81381 [0x29AB]={ 81382 category="sm", 81383 description="MEASURED ANGLE WITH OPEN ARM ENDING IN ARROW POINTING DOWN AND LEFT", 81384 direction="on", 81385 linebreak="al", 81386 mirror=0x29AA, 81387 unicodeslot=0x29AB, 81388 }, 81389 [0x29AC]={ 81390 category="sm", 81391 description="MEASURED ANGLE WITH OPEN ARM ENDING IN ARROW POINTING RIGHT AND UP", 81392 direction="on", 81393 linebreak="al", 81394 mirror=0x29AD, 81395 unicodeslot=0x29AC, 81396 }, 81397 [0x29AD]={ 81398 category="sm", 81399 description="MEASURED ANGLE WITH OPEN ARM ENDING IN ARROW POINTING LEFT AND UP", 81400 direction="on", 81401 linebreak="al", 81402 mirror=0x29AC, 81403 unicodeslot=0x29AD, 81404 }, 81405 [0x29AE]={ 81406 category="sm", 81407 description="MEASURED ANGLE WITH OPEN ARM ENDING IN ARROW POINTING RIGHT AND DOWN", 81408 direction="on", 81409 linebreak="al", 81410 mirror=0x29AF, 81411 unicodeslot=0x29AE, 81412 }, 81413 [0x29AF]={ 81414 category="sm", 81415 description="MEASURED ANGLE WITH OPEN ARM ENDING IN ARROW POINTING LEFT AND DOWN", 81416 direction="on", 81417 linebreak="al", 81418 mirror=0x29AE, 81419 unicodeslot=0x29AF, 81420 }, 81421 [0x29B0]={ 81422 category="sm", 81423 description="REVERSED EMPTY SET", 81424 direction="on", 81425 linebreak="al", 81426 unicodeslot=0x29B0, 81427 }, 81428 [0x29B1]={ 81429 category="sm", 81430 description="EMPTY SET WITH OVERBAR", 81431 direction="on", 81432 linebreak="al", 81433 unicodeslot=0x29B1, 81434 }, 81435 [0x29B2]={ 81436 category="sm", 81437 description="EMPTY SET WITH SMALL CIRCLE ABOVE", 81438 direction="on", 81439 linebreak="al", 81440 unicodeslot=0x29B2, 81441 }, 81442 [0x29B3]={ 81443 category="sm", 81444 description="EMPTY SET WITH RIGHT ARROW ABOVE", 81445 direction="on", 81446 linebreak="al", 81447 unicodeslot=0x29B3, 81448 }, 81449 [0x29B4]={ 81450 category="sm", 81451 description="EMPTY SET WITH LEFT ARROW ABOVE", 81452 direction="on", 81453 linebreak="al", 81454 unicodeslot=0x29B4, 81455 }, 81456 [0x29B5]={ 81457 category="sm", 81458 description="CIRCLE WITH HORIZONTAL BAR", 81459 direction="on", 81460 linebreak="al", 81461 unicodeslot=0x29B5, 81462 }, 81463 [0x29B6]={ 81464 category="sm", 81465 description="CIRCLED VERTICAL BAR", 81466 direction="on", 81467 linebreak="al", 81468 unicodeslot=0x29B6, 81469 }, 81470 [0x29B7]={ 81471 category="sm", 81472 description="CIRCLED PARALLEL", 81473 direction="on", 81474 linebreak="al", 81475 unicodeslot=0x29B7, 81476 }, 81477 [0x29B8]={ 81478 category="sm", 81479 description="CIRCLED REVERSE SOLIDUS", 81480 direction="on", 81481 linebreak="al", 81482 mirror=0x2298, 81483 unicodeslot=0x29B8, 81484 }, 81485 [0x29B9]={ 81486 category="sm", 81487 description="CIRCLED PERPENDICULAR", 81488 direction="on", 81489 linebreak="al", 81490 unicodeslot=0x29B9, 81491 }, 81492 [0x29BA]={ 81493 category="sm", 81494 description="CIRCLE DIVIDED BY HORIZONTAL BAR AND TOP HALF DIVIDED BY VERTICAL BAR", 81495 direction="on", 81496 linebreak="al", 81497 unicodeslot=0x29BA, 81498 }, 81499 [0x29BB]={ 81500 category="sm", 81501 description="CIRCLE WITH SUPERIMPOSED X", 81502 direction="on", 81503 linebreak="al", 81504 unicodeslot=0x29BB, 81505 }, 81506 [0x29BC]={ 81507 category="sm", 81508 description="CIRCLED ANTICLOCKWISE-ROTATED DIVISION SIGN", 81509 direction="on", 81510 linebreak="al", 81511 unicodeslot=0x29BC, 81512 }, 81513 [0x29BD]={ 81514 category="sm", 81515 description="UP ARROW THROUGH CIRCLE", 81516 direction="on", 81517 linebreak="al", 81518 unicodeslot=0x29BD, 81519 }, 81520 [0x29BE]={ 81521 category="sm", 81522 description="CIRCLED WHITE BULLET", 81523 direction="on", 81524 linebreak="al", 81525 unicodeslot=0x29BE, 81526 }, 81527 [0x29BF]={ 81528 category="sm", 81529 description="CIRCLED BULLET", 81530 direction="on", 81531 linebreak="al", 81532 unicodeslot=0x29BF, 81533 }, 81534 [0x29C0]={ 81535 category="sm", 81536 description="CIRCLED LESS-THAN", 81537 direction="on", 81538 linebreak="al", 81539 mirror=0x29C1, 81540 unicodeslot=0x29C0, 81541 }, 81542 [0x29C1]={ 81543 category="sm", 81544 description="CIRCLED GREATER-THAN", 81545 direction="on", 81546 linebreak="al", 81547 mirror=0x29C0, 81548 unicodeslot=0x29C1, 81549 }, 81550 [0x29C2]={ 81551 category="sm", 81552 description="CIRCLE WITH SMALL CIRCLE TO THE RIGHT", 81553 direction="on", 81554 linebreak="al", 81555 unicodeslot=0x29C2, 81556 }, 81557 [0x29C3]={ 81558 category="sm", 81559 description="CIRCLE WITH TWO HORIZONTAL STROKES TO THE RIGHT", 81560 direction="on", 81561 linebreak="al", 81562 unicodeslot=0x29C3, 81563 }, 81564 [0x29C4]={ 81565 category="sm", 81566 description="SQUARED RISING DIAGONAL SLASH", 81567 direction="on", 81568 linebreak="al", 81569 mirror=0x29C5, 81570 unicodeslot=0x29C4, 81571 }, 81572 [0x29C5]={ 81573 category="sm", 81574 description="SQUARED FALLING DIAGONAL SLASH", 81575 direction="on", 81576 linebreak="al", 81577 mirror=0x29C4, 81578 unicodeslot=0x29C5, 81579 }, 81580 [0x29C6]={ 81581 category="sm", 81582 description="SQUARED ASTERISK", 81583 direction="on", 81584 linebreak="al", 81585 unicodeslot=0x29C6, 81586 }, 81587 [0x29C7]={ 81588 category="sm", 81589 description="SQUARED SMALL CIRCLE", 81590 direction="on", 81591 linebreak="al", 81592 unicodeslot=0x29C7, 81593 }, 81594 [0x29C8]={ 81595 category="sm", 81596 description="SQUARED SQUARE", 81597 direction="on", 81598 linebreak="al", 81599 unicodeslot=0x29C8, 81600 }, 81601 [0x29C9]={ 81602 category="sm", 81603 description="TWO JOINED SQUARES", 81604 direction="on", 81605 linebreak="al", 81606 unicodeslot=0x29C9, 81607 }, 81608 [0x29CA]={ 81609 category="sm", 81610 description="TRIANGLE WITH DOT ABOVE", 81611 direction="on", 81612 linebreak="al", 81613 unicodeslot=0x29CA, 81614 }, 81615 [0x29CB]={ 81616 category="sm", 81617 description="TRIANGLE WITH UNDERBAR", 81618 direction="on", 81619 linebreak="al", 81620 unicodeslot=0x29CB, 81621 }, 81622 [0x29CC]={ 81623 category="sm", 81624 description="S IN TRIANGLE", 81625 direction="on", 81626 linebreak="al", 81627 unicodeslot=0x29CC, 81628 },