Changeset 873

Show
Ignore:
Timestamp:
09/15/08 03:30:54 (5 years ago)
Author:
martin_r
Message:

Tabs entfernt

Location:
windows/autohotkey
Files:
4 modified

Legend:

Unmodified
Added
Removed
  • windows/autohotkey/Changelog-and-Todo.txt

    r872 r873  
    2424=== Änderungshistorie === 
    2525 
     26Revision 873 (von Martin Roppelt) 
     27‐ Tabulatoren entfernt. 
    2628Revision 872 (von Martin Roppelt) 
    2729‐ Alle Cokos automatisch eingefügt. 
  • windows/autohotkey/Source/Compose.ahk

    r872 r873  
    330330CheckCompUni("<malesymbol> <femalesymbol>", 0x26A5) 
    331331CheckCompUni("<underscore> <underscore>", 0x332) 
    332 CheckCompUni("<apostrophe> <space>      ", 0x27) 
    333 CheckCompUni("<space> <greater>         ", 0x5E) 
    334 CheckCompUni("<greater> <space>         ", 0x5E) 
    335 CheckCompUni("<space> <asciicircum>     ", 0x5E) 
    336 CheckCompUni("<asciicircum> <space>     ", 0x5E) 
    337 CheckCompUni("<space> <minus>           ", 0x7E) 
    338 CheckCompUni("<minus> <space>           ", 0x7E) 
    339 CheckCompUni("<space> <asciitilde>      ", 0x7E) 
    340 CheckCompUni("<asciitilde> <space>      ", 0x7E) 
    341 CheckCompUni("<A> <T>                   ", 0x40) 
    342 CheckCompUni("<less> <slash>            ", 0x5C5C) 
    343 CheckCompUni("<slash> <less>            ", 0x5C5C) 
    344 CheckCompUni("<slash> <slash>           ", 0x5C5C) 
    345 CheckCompUni("<l> <v>                   ", 0x7C) 
    346 CheckCompUni("<v> <l>                   ", 0x7C) 
    347 CheckCompUni("<L> <V>                   ", 0x7C) 
    348 CheckCompUni("<V> <L>                   ", 0x7C) 
    349 CheckCompUni("<asciicircum> <slash>     ", 0x7C) 
    350 CheckCompUni("<slash> <asciicircum>     ", 0x7C) 
    351 CheckCompUni("<minus> <parenleft>               ", 0x7B) 
    352 CheckCompUni("<parenleft> <minus>               ", 0x7B) 
    353 CheckCompUni("<minus> <parenright>      ", 0x7D) 
    354 CheckCompUni("<parenright> <minus>      ", 0x7D) 
    355 CheckCompUni("<parenleft> <parenleft>   ", 0x5B) 
    356 CheckCompUni("<parenright> <parenright> ", 0x5D) 
    357 CheckCompUni("<space> <comma>           ", 0xB8) 
    358 CheckCompUni("<comma> <space>           ", 0xB8) 
    359 CheckCompUni("<space> <grave>           ", 0x60) 
    360 CheckCompUni("<grave> <space>           ", 0x60) 
    361 CheckCompUni("<plus> <plus>             ", 0x23) 
    362 CheckCompUni("<apostrophe> <A>  ", 0xC1) 
    363 CheckCompUni("<acute> <A>       ", 0xC1) 
    364 CheckCompUni("<apostrophe> <a>  ", 0xE1) 
    365 CheckCompUni("<acute> <a>       ", 0xE1) 
    366 CheckCompUni("<b> <A>   ", 0x102) 
    367 CheckCompUni("<U> <A>   ", 0x102) 
    368 CheckCompUni("<b> <a>   ", 0x103) 
    369 CheckCompUni("<U> <a>   ", 0x103) 
    370 CheckCompUni("<asciicircum> <A> ", 0xC2) 
    371 CheckCompUni("<asciicircum> <a> ", 0xE2) 
    372 CheckCompUni("<quotedbl> <A>    ", 0xC4) 
    373 CheckCompUni("<quotedbl> <a>    ", 0xE4) 
     332CheckCompUni("<apostrophe> <space>", 0x27) 
     333CheckCompUni("<space> <greater>", 0x5E) 
     334CheckCompUni("<greater> <space>", 0x5E) 
     335CheckCompUni("<space> <asciicircum>", 0x5E) 
     336CheckCompUni("<asciicircum> <space>", 0x5E) 
     337CheckCompUni("<space> <minus>", 0x7E) 
     338CheckCompUni("<minus> <space>", 0x7E) 
     339CheckCompUni("<space> <asciitilde>", 0x7E) 
     340CheckCompUni("<asciitilde> <space>", 0x7E) 
     341CheckCompUni("<A> <T>", 0x40) 
     342CheckCompUni("<less> <slash>", 0x5C5C) 
     343CheckCompUni("<slash> <less>", 0x5C5C) 
     344CheckCompUni("<slash> <slash>", 0x5C5C) 
     345CheckCompUni("<l> <v>", 0x7C) 
     346CheckCompUni("<v> <l>", 0x7C) 
     347CheckCompUni("<L> <V>", 0x7C) 
     348CheckCompUni("<V> <L>", 0x7C) 
     349CheckCompUni("<asciicircum> <slash>", 0x7C) 
     350CheckCompUni("<slash> <asciicircum>", 0x7C) 
     351CheckCompUni("<minus> <parenleft>", 0x7B) 
     352CheckCompUni("<parenleft> <minus>", 0x7B) 
     353CheckCompUni("<minus> <parenright>", 0x7D) 
     354CheckCompUni("<parenright> <minus>", 0x7D) 
     355CheckCompUni("<parenleft> <parenleft>", 0x5B) 
     356CheckCompUni("<parenright> <parenright>", 0x5D) 
     357CheckCompUni("<space> <comma>", 0xB8) 
     358CheckCompUni("<comma> <space>", 0xB8) 
     359CheckCompUni("<space> <grave>", 0x60) 
     360CheckCompUni("<grave> <space>", 0x60) 
     361CheckCompUni("<plus> <plus>", 0x23) 
     362CheckCompUni("<apostrophe> <A>", 0xC1) 
     363CheckCompUni("<acute> <A>", 0xC1) 
     364CheckCompUni("<apostrophe> <a>", 0xE1) 
     365CheckCompUni("<acute> <a>", 0xE1) 
     366CheckCompUni("<b> <A>", 0x102) 
     367CheckCompUni("<U> <A>", 0x102) 
     368CheckCompUni("<b> <a>", 0x103) 
     369CheckCompUni("<U> <a>", 0x103) 
     370CheckCompUni("<asciicircum> <A>", 0xC2) 
     371CheckCompUni("<asciicircum> <a>", 0xE2) 
     372CheckCompUni("<quotedbl> <A>", 0xC4) 
     373CheckCompUni("<quotedbl> <a>", 0xE4) 
    374374CheckCompUni("<A> <E>", 0xC6) 
    375375CheckCompUni("<a> <e>", 0xE6) 
    376 CheckCompUni("<grave> <A>       ", 0xC0) 
    377 CheckCompUni("<grave> <a>       ", 0xE0) 
    378 CheckCompUni("<underscore> <A>  ", 0x100) 
    379 CheckCompUni("<macron> <A>      ", 0x100) 
    380 CheckCompUni("<underscore> <a>  ", 0x101) 
    381 CheckCompUni("<macron> <a>      ", 0x101) 
    382 CheckCompUni("<semicolon> <A>   ", 0x104) 
    383 CheckCompUni("<semicolon> <a>   ", 0x105) 
    384 CheckCompUni("<o> <A>   ", 0xC5) 
    385 CheckCompUni("<o> <a>   ", 0xE5) 
    386 CheckCompUni("<asciitilde> <A>  ", 0xC3) 
    387 CheckCompUni("<asciitilde> <a>  ", 0xE3) 
     376CheckCompUni("<grave> <A>", 0xC0) 
     377CheckCompUni("<grave> <a>", 0xE0) 
     378CheckCompUni("<underscore> <A>", 0x100) 
     379CheckCompUni("<macron> <A>", 0x100) 
     380CheckCompUni("<underscore> <a>", 0x101) 
     381CheckCompUni("<macron> <a>", 0x101) 
     382CheckCompUni("<semicolon> <A>", 0x104) 
     383CheckCompUni("<semicolon> <a>", 0x105) 
     384CheckCompUni("<o> <A>", 0xC5) 
     385CheckCompUni("<o> <a>", 0xE5) 
     386CheckCompUni("<asciitilde> <A>", 0xC3) 
     387CheckCompUni("<asciitilde> <a>", 0xE3) 
    388388CheckCompUni("<exclam> <asciicircum>", 0xA6) 
    389 CheckCompUni("<period> <C>      ", 0x10A) 
    390 CheckCompUni("<period> <c>      ", 0x10B) 
    391 CheckCompUni("<apostrophe> <C>  ", 0x106) 
    392 CheckCompUni("<acute> <C>       ", 0x106) 
    393 CheckCompUni("<apostrophe> <c>  ", 0x107) 
    394 CheckCompUni("<acute> <c>       ", 0x107) 
    395 CheckCompUni("<c> <C>   ", 0x10C) 
    396 CheckCompUni("<c> <c>   ", 0x10D) 
    397 CheckCompUni("<comma> <C>       ", 0xC7) 
    398 CheckCompUni("<comma> <c>       ", 0xE7) 
    399 CheckCompUni("<asciicircum> <C> ", 0x108) 
    400 CheckCompUni("<asciicircum> <c> ", 0x109) 
    401 CheckCompUni("<slash> <C>                       ", 0xA2) 
    402 CheckCompUni("<slash> <c>                       ", 0xA2) 
    403 CheckCompUni("<C> <slash>                       ", 0xA2) 
    404 CheckCompUni("<c> <slash>                       ", 0xA2) 
    405 CheckCompUni("<C> <bar>                 ", 0xA2) 
    406 CheckCompUni("<c> <bar>                 ", 0xA2) 
    407 CheckCompUni("<bar> <C>                 ", 0xA2) 
    408 CheckCompUni("<bar> <c>                 ", 0xA2) 
    409 CheckCompUni("<slash> <C>                       ", 0x20A1) 
    410 CheckCompUni("<C> <slash>                       ", 0x20A1) 
     389CheckCompUni("<period> <C>", 0x10A) 
     390CheckCompUni("<period> <c>", 0x10B) 
     391CheckCompUni("<apostrophe> <C>", 0x106) 
     392CheckCompUni("<acute> <C>", 0x106) 
     393CheckCompUni("<apostrophe> <c>", 0x107) 
     394CheckCompUni("<acute> <c>", 0x107) 
     395CheckCompUni("<c> <C>", 0x10C) 
     396CheckCompUni("<c> <c>", 0x10D) 
     397CheckCompUni("<comma> <C>", 0xC7) 
     398CheckCompUni("<comma> <c>", 0xE7) 
     399CheckCompUni("<asciicircum> <C>", 0x108) 
     400CheckCompUni("<asciicircum> <c>", 0x109) 
     401CheckCompUni("<slash> <C>", 0xA2) 
     402CheckCompUni("<slash> <c>", 0xA2) 
     403CheckCompUni("<C> <slash>", 0xA2) 
     404CheckCompUni("<c> <slash>", 0xA2) 
     405CheckCompUni("<C> <bar>", 0xA2) 
     406CheckCompUni("<c> <bar>", 0xA2) 
     407CheckCompUni("<bar> <C>", 0xA2) 
     408CheckCompUni("<bar> <c>", 0xA2) 
     409CheckCompUni("<slash> <C>", 0x20A1) 
     410CheckCompUni("<C> <slash>", 0x20A1) 
    411411CheckCompUni("<O> <C>", 0xA9) 
    412412CheckCompUni("<O> <c>", 0xA9) 
    413413CheckCompUni("<o> <C>", 0xA9) 
    414414CheckCompUni("<o> <c>", 0xA9) 
    415 CheckCompUni("<C> <r>                   ", 0x20A2) 
    416 CheckCompUni("<x> <o>           ", 0xA4) 
    417 CheckCompUni("<o> <x>           ", 0xA4) 
    418 CheckCompUni("<c> <D>   ", 0x10E) 
    419 CheckCompUni("<c> <d>   ", 0x10F) 
     415CheckCompUni("<C> <r>", 0x20A2) 
     416CheckCompUni("<x> <o>", 0xA4) 
     417CheckCompUni("<o> <x>", 0xA4) 
     418CheckCompUni("<c> <D>", 0x10E) 
     419CheckCompUni("<c> <d>", 0x10F) 
    420420CheckCompUni("<o> <o>", 0xB0) 
    421 CheckCompUni("<minus> <colon>   ", 0xF7) 
    422 CheckCompUni("<colon> <minus>   ", 0xF7) 
    423 CheckCompUni("<d> <minus>                       ", 0x20AB) 
     421CheckCompUni("<minus> <colon>", 0xF7) 
     422CheckCompUni("<colon> <minus>", 0xF7) 
     423CheckCompUni("<d> <minus>", 0x20AB) 
    424424CheckCompUni("<quotedbl> <comma>", 0x201E) 
    425425CheckCompUni("<comma> <quotedbl>", 0x201E) 
    426426CheckCompUni("<minus> <D>", 0x110) 
    427427CheckCompUni("<minus> <d>", 0x111) 
    428 CheckCompUni("<KP_Divide> <D>   ", 0x110) 
    429 CheckCompUni("<slash> <D>       ", 0x110) 
    430 CheckCompUni("<KP_Divide> <d>   ", 0x111) 
    431 CheckCompUni("<slash> <d>       ", 0x111) 
    432 CheckCompUni("<period> <E>      ", 0x116) 
    433 CheckCompUni("<period> <e>      ", 0x117) 
    434 CheckCompUni("<apostrophe> <E>  ", 0xC9) 
    435 CheckCompUni("<acute> <E>       ", 0xC9) 
    436 CheckCompUni("<apostrophe> <e>  ", 0xE9) 
    437 CheckCompUni("<acute> <e>       ", 0xE9) 
    438 CheckCompUni("<c> <E>   ", 0x11A) 
    439 CheckCompUni("<c> <e>   ", 0x11B) 
    440 CheckCompUni("<asciicircum> <E> ", 0xCA) 
    441 CheckCompUni("<asciicircum> <e> ", 0xEA) 
    442 CheckCompUni("<C> <E>                   ", 0x20A0) 
    443 CheckCompUni("<quotedbl> <E>    ", 0xCB) 
    444 CheckCompUni("<quotedbl> <e>    ", 0xEB) 
    445 CheckCompUni("<grave> <E>       ", 0xC8) 
    446 CheckCompUni("<grave> <e>       ", 0xE8) 
    447 CheckCompUni("<underscore> <E>  ", 0x112) 
    448 CheckCompUni("<macron> <E>      ", 0x112) 
    449 CheckCompUni("<underscore> <e>  ", 0x113) 
    450 CheckCompUni("<macron> <e>      ", 0x113) 
     428CheckCompUni("<KP_Divide> <D>", 0x110) 
     429CheckCompUni("<slash> <D>", 0x110) 
     430CheckCompUni("<KP_Divide> <d>", 0x111) 
     431CheckCompUni("<slash> <d>", 0x111) 
     432CheckCompUni("<period> <E>", 0x116) 
     433CheckCompUni("<period> <e>", 0x117) 
     434CheckCompUni("<apostrophe> <E>", 0xC9) 
     435CheckCompUni("<acute> <E>", 0xC9) 
     436CheckCompUni("<apostrophe> <e>", 0xE9) 
     437CheckCompUni("<acute> <e>", 0xE9) 
     438CheckCompUni("<c> <E>", 0x11A) 
     439CheckCompUni("<c> <e>", 0x11B) 
     440CheckCompUni("<asciicircum> <E>", 0xCA) 
     441CheckCompUni("<asciicircum> <e>", 0xEA) 
     442CheckCompUni("<C> <E>", 0x20A0) 
     443CheckCompUni("<quotedbl> <E>", 0xCB) 
     444CheckCompUni("<quotedbl> <e>", 0xEB) 
     445CheckCompUni("<grave> <E>", 0xC8) 
     446CheckCompUni("<grave> <e>", 0xE8) 
     447CheckCompUni("<underscore> <E>", 0x112) 
     448CheckCompUni("<macron> <E>", 0x112) 
     449CheckCompUni("<underscore> <e>", 0x113) 
     450CheckCompUni("<macron> <e>", 0x113) 
    451451CheckCompUni("<minus> <minus> <minus>", 0x2014) 
    452452CheckCompUni("<minus> <minus> <period>", 0x2013) 
    453 CheckCompUni("<N> <G>   ", 0x14A) 
    454 CheckCompUni("<n> <g>   ", 0x14B) 
    455 CheckCompUni("<semicolon> <E>   ", 0x118) 
    456 CheckCompUni("<semicolon> <e>   ", 0x119) 
    457 CheckCompUni("<D> <H>   ", 0xD0) 
    458 CheckCompUni("<d> <h>   ", 0xF0) 
    459 CheckCompUni("<equal> <E>                       ", 0x20AC) 
    460 CheckCompUni("<E> <equal>                       ", 0x20AC) 
    461 CheckCompUni("<equal> <C>                       ", 0x20AC) 
    462 CheckCompUni("<C> <equal>                       ", 0x20AC) 
     453CheckCompUni("<N> <G>", 0x14A) 
     454CheckCompUni("<n> <g>", 0x14B) 
     455CheckCompUni("<semicolon> <E>", 0x118) 
     456CheckCompUni("<semicolon> <e>", 0x119) 
     457CheckCompUni("<D> <H>", 0xD0) 
     458CheckCompUni("<d> <h>", 0xF0) 
     459CheckCompUni("<equal> <E>", 0x20AC) 
     460CheckCompUni("<E> <equal>", 0x20AC) 
     461CheckCompUni("<equal> <C>", 0x20AC) 
     462CheckCompUni("<C> <equal>", 0x20AC) 
    463463CheckCompUni("<exclam> <exclam>", 0xA1) 
    464 CheckCompUni("<F> <r>                   ", 0x20A3) 
    465 CheckCompUni("<period> <G>      ", 0x120) 
    466 CheckCompUni("<period> <g>      ", 0x121) 
    467 CheckCompUni("<b> <G>   ", 0x11E) 
    468 CheckCompUni("<U> <G>   ", 0x11E) 
    469 CheckCompUni("<b> <g>   ", 0x11F) 
    470 CheckCompUni("<U> <g>   ", 0x11F) 
    471 CheckCompUni("<comma> <G>       ", 0x122) 
    472 CheckCompUni("<comma> <g>       ", 0x123) 
    473 CheckCompUni("<asciicircum> <G> ", 0x11C) 
    474 CheckCompUni("<asciicircum> <g> ", 0x11D) 
    475 CheckCompUni("<diaeresis> <combining_acute>     ", 0x385) 
    476 CheckCompUni("<diaeresis> <apostrophe>  ", 0x385) 
    477 CheckCompUni("<diaeresis> <acute>       ", 0x385) 
    478 CheckCompUni("<diaeresis> <dead_acute>  ", 0x385) 
    479 CheckCompUni("<apostrophe> <Greek_ALPHA>        ", 0x386) 
    480 CheckCompUni("<acute> <Greek_ALPHA>     ", 0x386) 
    481 CheckCompUni("<apostrophe> <Greek_alpha>        ", 0x3AC) 
    482 CheckCompUni("<acute> <Greek_alpha>     ", 0x3AC) 
    483 CheckCompUni("<apostrophe> <Greek_EPSILON>      ", 0x388) 
    484 CheckCompUni("<acute> <Greek_EPSILON>   ", 0x388) 
    485 CheckCompUni("<apostrophe> <Greek_epsilon>      ", 0x3AD) 
    486 CheckCompUni("<acute> <Greek_epsilon>   ", 0x3AD) 
    487 CheckCompUni("<apostrophe> <Greek_ETA>  ", 0x389) 
    488 CheckCompUni("<acute> <Greek_ETA>       ", 0x389) 
    489 CheckCompUni("<apostrophe> <Greek_eta>  ", 0x3AE) 
    490 CheckCompUni("<acute> <Greek_eta>       ", 0x3AE) 
    491 CheckCompUni("<apostrophe> <Greek_IOTA> ", 0x38A) 
    492 CheckCompUni("<acute> <Greek_IOTA>      ", 0x38A) 
    493 CheckCompUni("<apostrophe> <Greek_iota> ", 0x3AF) 
    494 CheckCompUni("<acute> <Greek_iota>      ", 0x3AF) 
    495 CheckCompUni("<apostrophe> <quotedbl> <Greek_iota>      ", 0x390) 
    496 CheckCompUni("<apostrophe> <dead_diaeresis> <Greek_iota>        ", 0x390) 
    497 CheckCompUni("<acute> <quotedbl> <Greek_iota>   ", 0x390) 
    498 CheckCompUni("<acute> <dead_diaeresis> <Greek_iota>     ", 0x390) 
    499 CheckCompUni("<apostrophe> <Greek_iotadieresis> ", 0x390) 
    500 CheckCompUni("<acute> <Greek_iotadieresis>      ", 0x390) 
    501 CheckCompUni("<quotedbl> <Greek_IOTA>   ", 0x3AA) 
    502 CheckCompUni("<quotedbl> <Greek_iota>   ", 0x3CA) 
    503 CheckCompUni("<apostrophe> <Greek_OMEGA>        ", 0x38F) 
    504 CheckCompUni("<acute> <Greek_OMEGA>     ", 0x38F) 
    505 CheckCompUni("<apostrophe> <Greek_omega>        ", 0x3CE) 
    506 CheckCompUni("<acute> <Greek_omega>     ", 0x3CE) 
    507 CheckCompUni("<apostrophe> <Greek_OMICRON>      ", 0x38C) 
    508 CheckCompUni("<acute> <Greek_OMICRON>   ", 0x38C) 
    509 CheckCompUni("<apostrophe> <Greek_omicron>      ", 0x3CC) 
    510 CheckCompUni("<acute> <Greek_omicron>   ", 0x3CC) 
    511 CheckCompUni("<apostrophe> <Greek_UPSILON>      ", 0x38E) 
    512 CheckCompUni("<acute> <Greek_UPSILON>   ", 0x38E) 
    513 CheckCompUni("<apostrophe> <Greek_upsilon>      ", 0x3CD) 
    514 CheckCompUni("<acute> <Greek_upsilon>   ", 0x3CD) 
    515 CheckCompUni("<apostrophe> <quotedbl> <Greek_upsilon>   ", 0x3B0) 
    516 CheckCompUni("<apostrophe> <dead_diaeresis> <Greek_upsilon>     ", 0x3B0) 
    517 CheckCompUni("<acute> <quotedbl> <Greek_upsilon>        ", 0x3B0) 
    518 CheckCompUni("<acute> <dead_diaeresis> <Greek_upsilon>  ", 0x3B0) 
    519 CheckCompUni("<apostrophe> <Greek_upsilondieresis>      ", 0x3B0) 
    520 CheckCompUni("<acute> <Greek_upsilondieresis>   ", 0x3B0) 
    521 CheckCompUni("<quotedbl> <Greek_UPSILON>        ", 0x3AB) 
    522 CheckCompUni("<quotedbl> <Greek_upsilon>        ", 0x3CB) 
    523 CheckCompUni("<less> <less>             ", 0xAB) 
    524 CheckCompUni("<greater> <greater>               ", 0xBB) 
    525 CheckCompUni("<asciicircum> <H> ", 0x124) 
    526 CheckCompUni("<asciicircum> <h> ", 0x125) 
    527 CheckCompUni("<KP_Divide> <H>   ", 0x126) 
    528 CheckCompUni("<slash> <H>       ", 0x126) 
    529 CheckCompUni("<KP_Divide> <h>   ", 0x127) 
    530 CheckCompUni("<slash> <h>       ", 0x127) 
    531 CheckCompUni("<period> <I>      ", 0x130) 
    532 CheckCompUni("<apostrophe> <I>  ", 0xCD) 
    533 CheckCompUni("<acute> <I>       ", 0xCD) 
    534 CheckCompUni("<apostrophe> <i>  ", 0xED) 
    535 CheckCompUni("<acute> <i>       ", 0xED) 
    536 CheckCompUni("<asciicircum> <I> ", 0xCE) 
    537 CheckCompUni("<asciicircum> <i> ", 0xEE) 
    538 CheckCompUni("<quotedbl> <I>    ", 0xCF) 
    539 CheckCompUni("<quotedbl> <i>    ", 0xEF) 
    540 CheckCompUni("<i> <period>      ", 0x131) 
    541 CheckCompUni("<grave> <I>       ", 0xCC) 
    542 CheckCompUni("<grave> <i>       ", 0xEC) 
    543 CheckCompUni("<underscore> <I>  ", 0x12A) 
    544 CheckCompUni("<macron> <I>      ", 0x12A) 
    545 CheckCompUni("<underscore> <i>  ", 0x12B) 
    546 CheckCompUni("<macron> <i>      ", 0x12B) 
    547 CheckCompUni("<semicolon> <I>   ", 0x12E) 
    548 CheckCompUni("<semicolon> <i>   ", 0x12F) 
    549 CheckCompUni("<asciitilde> <I>  ", 0x128) 
    550 CheckCompUni("<asciitilde> <i>  ", 0x129) 
    551 CheckCompUni("<asciicircum> <J> ", 0x134) 
    552 CheckCompUni("<asciicircum> <j> ", 0x135) 
    553 CheckCompUni("<comma> <K>       ", 0x136) 
    554 CheckCompUni("<comma> <k>       ", 0x137) 
    555 CheckCompUni("<k> <k>   ", 0x138) 
    556 CheckCompUni("<apostrophe> <L>  ", 0x139) 
    557 CheckCompUni("<acute> <L>       ", 0x139) 
    558 CheckCompUni("<apostrophe> <l>  ", 0x13A) 
    559 CheckCompUni("<acute> <l>       ", 0x13A) 
    560 CheckCompUni("<c> <L>   ", 0x13D) 
    561 CheckCompUni("<c> <l>   ", 0x13E) 
    562 CheckCompUni("<comma> <L>       ", 0x13B) 
    563 CheckCompUni("<comma> <l>       ", 0x13C) 
    564 CheckCompUni("<quotedbl> <less>         ", 0x201C) 
    565 CheckCompUni("<less> <quotedbl>         ", 0x201C) 
    566 CheckCompUni("<apostrophe> <less>               ", 0x2018) 
    567 CheckCompUni("<less> <apostrophe>               ", 0x2018) 
    568 CheckCompUni("<equal> <L>                       ", 0x20A4) 
    569 CheckCompUni("<L> <equal>                       ", 0x20A4) 
    570 CheckCompUni("<KP_Divide> <L>   ", 0x141) 
    571 CheckCompUni("<slash> <L>       ", 0x141) 
    572 CheckCompUni("<KP_Divide> <l>   ", 0x142) 
    573 CheckCompUni("<slash> <l>       ", 0x142) 
    574 CheckCompUni("<asciicircum> <underbar> <o>      ", 0xBA) 
    575 CheckCompUni("<asciicircum> <underscore> <o>    ", 0xBA) 
    576 CheckCompUni("<slash> <m>                       ", 0x20A5) 
    577 CheckCompUni("<m> <slash>                       ", 0x20A5) 
    578 CheckCompUni("<m> <u>   ", 0xB5) 
    579 CheckCompUni("<x> <x>   ", 0xD7) 
    580 CheckCompUni("<numbersign> <b>          ", 0x266D) 
    581 CheckCompUni("<numbersign> <numbersign> ", 0x266F) 
    582 CheckCompUni("<apostrophe> <N>  ", 0x143) 
    583 CheckCompUni("<acute> <N>       ", 0x143) 
    584 CheckCompUni("<apostrophe> <n>  ", 0x144) 
    585 CheckCompUni("<acute> <n>       ", 0x144) 
    586 CheckCompUni("<equal> <N>                       ", 0x20A6) 
    587 CheckCompUni("<N> <equal>                       ", 0x20A6) 
    588 CheckCompUni("<c> <N>   ", 0x147) 
    589 CheckCompUni("<c> <n>   ", 0x148) 
    590 CheckCompUni("<comma> <N>       ", 0x145) 
    591 CheckCompUni("<comma> <n>       ", 0x146) 
     464CheckCompUni("<F> <r>", 0x20A3) 
     465CheckCompUni("<period> <G>", 0x120) 
     466CheckCompUni("<period> <g>", 0x121) 
     467CheckCompUni("<b> <G>", 0x11E) 
     468CheckCompUni("<U> <G>", 0x11E) 
     469CheckCompUni("<b> <g>", 0x11F) 
     470CheckCompUni("<U> <g>", 0x11F) 
     471CheckCompUni("<comma> <G>", 0x122) 
     472CheckCompUni("<comma> <g>", 0x123) 
     473CheckCompUni("<asciicircum> <G>", 0x11C) 
     474CheckCompUni("<asciicircum> <g>", 0x11D) 
     475CheckCompUni("<diaeresis> <combining_acute>", 0x385) 
     476CheckCompUni("<diaeresis> <apostrophe>", 0x385) 
     477CheckCompUni("<diaeresis> <acute>", 0x385) 
     478CheckCompUni("<diaeresis> <dead_acute>", 0x385) 
     479CheckCompUni("<apostrophe> <Greek_ALPHA>", 0x386) 
     480CheckCompUni("<acute> <Greek_ALPHA>", 0x386) 
     481CheckCompUni("<apostrophe> <Greek_alpha>", 0x3AC) 
     482CheckCompUni("<acute> <Greek_alpha>", 0x3AC) 
     483CheckCompUni("<apostrophe> <Greek_EPSILON>", 0x388) 
     484CheckCompUni("<acute> <Greek_EPSILON>", 0x388) 
     485CheckCompUni("<apostrophe> <Greek_epsilon>", 0x3AD) 
     486CheckCompUni("<acute> <Greek_epsilon>", 0x3AD) 
     487CheckCompUni("<apostrophe> <Greek_ETA>", 0x389) 
     488CheckCompUni("<acute> <Greek_ETA>", 0x389) 
     489CheckCompUni("<apostrophe> <Greek_eta>", 0x3AE) 
     490CheckCompUni("<acute> <Greek_eta>", 0x3AE) 
     491CheckCompUni("<apostrophe> <Greek_IOTA>", 0x38A) 
     492CheckCompUni("<acute> <Greek_IOTA>", 0x38A) 
     493CheckCompUni("<apostrophe> <Greek_iota>", 0x3AF) 
     494CheckCompUni("<acute> <Greek_iota>", 0x3AF) 
     495CheckCompUni("<apostrophe> <quotedbl> <Greek_iota>", 0x390) 
     496CheckCompUni("<apostrophe> <dead_diaeresis> <Greek_iota>", 0x390) 
     497CheckCompUni("<acute> <quotedbl> <Greek_iota>", 0x390) 
     498CheckCompUni("<acute> <dead_diaeresis> <Greek_iota>", 0x390) 
     499CheckCompUni("<apostrophe> <Greek_iotadieresis>", 0x390) 
     500CheckCompUni("<acute> <Greek_iotadieresis>", 0x390) 
     501CheckCompUni("<quotedbl> <Greek_IOTA>", 0x3AA) 
     502CheckCompUni("<quotedbl> <Greek_iota>", 0x3CA) 
     503CheckCompUni("<apostrophe> <Greek_OMEGA>", 0x38F) 
     504CheckCompUni("<acute> <Greek_OMEGA>", 0x38F) 
     505CheckCompUni("<apostrophe> <Greek_omega>", 0x3CE) 
     506CheckCompUni("<acute> <Greek_omega>", 0x3CE) 
     507CheckCompUni("<apostrophe> <Greek_OMICRON>", 0x38C) 
     508CheckCompUni("<acute> <Greek_OMICRON>", 0x38C) 
     509CheckCompUni("<apostrophe> <Greek_omicron>", 0x3CC) 
     510CheckCompUni("<acute> <Greek_omicron>", 0x3CC) 
     511CheckCompUni("<apostrophe> <Greek_UPSILON>", 0x38E) 
     512CheckCompUni("<acute> <Greek_UPSILON>", 0x38E) 
     513CheckCompUni("<apostrophe> <Greek_upsilon>", 0x3CD) 
     514CheckCompUni("<acute> <Greek_upsilon>", 0x3CD) 
     515CheckCompUni("<apostrophe> <quotedbl> <Greek_upsilon>", 0x3B0) 
     516CheckCompUni("<apostrophe> <dead_diaeresis> <Greek_upsilon>", 0x3B0) 
     517CheckCompUni("<acute> <quotedbl> <Greek_upsilon>", 0x3B0) 
     518CheckCompUni("<acute> <dead_diaeresis> <Greek_upsilon>", 0x3B0) 
     519CheckCompUni("<apostrophe> <Greek_upsilondieresis>", 0x3B0) 
     520CheckCompUni("<acute> <Greek_upsilondieresis>", 0x3B0) 
     521CheckCompUni("<quotedbl> <Greek_UPSILON>", 0x3AB) 
     522CheckCompUni("<quotedbl> <Greek_upsilon>", 0x3CB) 
     523CheckCompUni("<less> <less>", 0xAB) 
     524CheckCompUni("<greater> <greater>", 0xBB) 
     525CheckCompUni("<asciicircum> <H>", 0x124) 
     526CheckCompUni("<asciicircum> <h>", 0x125) 
     527CheckCompUni("<KP_Divide> <H>", 0x126) 
     528CheckCompUni("<slash> <H>", 0x126) 
     529CheckCompUni("<KP_Divide> <h>", 0x127) 
     530CheckCompUni("<slash> <h>", 0x127) 
     531CheckCompUni("<period> <I>", 0x130) 
     532CheckCompUni("<apostrophe> <I>", 0xCD) 
     533CheckCompUni("<acute> <I>", 0xCD) 
     534CheckCompUni("<apostrophe> <i>", 0xED) 
     535CheckCompUni("<acute> <i>", 0xED) 
     536CheckCompUni("<asciicircum> <I>", 0xCE) 
     537CheckCompUni("<asciicircum> <i>", 0xEE) 
     538CheckCompUni("<quotedbl> <I>", 0xCF) 
     539CheckCompUni("<quotedbl> <i>", 0xEF) 
     540CheckCompUni("<i> <period>", 0x131) 
     541CheckCompUni("<grave> <I>", 0xCC) 
     542CheckCompUni("<grave> <i>", 0xEC) 
     543CheckCompUni("<underscore> <I>", 0x12A) 
     544CheckCompUni("<macron> <I>", 0x12A) 
     545CheckCompUni("<underscore> <i>", 0x12B) 
     546CheckCompUni("<macron> <i>", 0x12B) 
     547CheckCompUni("<semicolon> <I>", 0x12E) 
     548CheckCompUni("<semicolon> <i>", 0x12F) 
     549CheckCompUni("<asciitilde> <I>", 0x128) 
     550CheckCompUni("<asciitilde> <i>", 0x129) 
     551CheckCompUni("<asciicircum> <J>", 0x134) 
     552CheckCompUni("<asciicircum> <j>", 0x135) 
     553CheckCompUni("<comma> <K>", 0x136) 
     554CheckCompUni("<comma> <k>", 0x137) 
     555CheckCompUni("<k> <k>", 0x138) 
     556CheckCompUni("<apostrophe> <L>", 0x139) 
     557CheckCompUni("<acute> <L>", 0x139) 
     558CheckCompUni("<apostrophe> <l>", 0x13A) 
     559CheckCompUni("<acute> <l>", 0x13A) 
     560CheckCompUni("<c> <L>", 0x13D) 
     561CheckCompUni("<c> <l>", 0x13E) 
     562CheckCompUni("<comma> <L>", 0x13B) 
     563CheckCompUni("<comma> <l>", 0x13C) 
     564CheckCompUni("<quotedbl> <less>", 0x201C) 
     565CheckCompUni("<less> <quotedbl>", 0x201C) 
     566CheckCompUni("<apostrophe> <less>", 0x2018) 
     567CheckCompUni("<less> <apostrophe>", 0x2018) 
     568CheckCompUni("<equal> <L>", 0x20A4) 
     569CheckCompUni("<L> <equal>", 0x20A4) 
     570CheckCompUni("<KP_Divide> <L>", 0x141) 
     571CheckCompUni("<slash> <L>", 0x141) 
     572CheckCompUni("<KP_Divide> <l>", 0x142) 
     573CheckCompUni("<slash> <l>", 0x142) 
     574CheckCompUni("<asciicircum> <underbar> <o>", 0xBA) 
     575CheckCompUni("<asciicircum> <underscore> <o>", 0xBA) 
     576CheckCompUni("<slash> <m>", 0x20A5) 
     577CheckCompUni("<m> <slash>", 0x20A5) 
     578CheckCompUni("<m> <u>", 0xB5) 
     579CheckCompUni("<x> <x>", 0xD7) 
     580CheckCompUni("<numbersign> <b>", 0x266D) 
     581CheckCompUni("<numbersign> <numbersign>", 0x266F) 
     582CheckCompUni("<apostrophe> <N>", 0x143) 
     583CheckCompUni("<acute> <N>", 0x143) 
     584CheckCompUni("<apostrophe> <n>", 0x144) 
     585CheckCompUni("<acute> <n>", 0x144) 
     586CheckCompUni("<equal> <N>", 0x20A6) 
     587CheckCompUni("<N> <equal>", 0x20A6) 
     588CheckCompUni("<c> <N>", 0x147) 
     589CheckCompUni("<c> <n>", 0x148) 
     590CheckCompUni("<comma> <N>", 0x145) 
     591CheckCompUni("<comma> <n>", 0x146) 
    592592CheckCompUni("<space> <space>", 0xA0) 
    593 CheckCompUni("<KP_Equal> <U0338>        ", 0x2260) 
    594 CheckCompUni("<equal> <U0338>   ", 0x2260) 
    595 CheckCompUni("<minus> <comma>   ", 0xAC) 
    596 CheckCompUni("<comma> <minus>   ", 0xAC) 
    597 CheckCompUni("<asciitilde> <N>  ", 0xD1) 
    598 CheckCompUni("<asciitilde> <n>  ", 0xF1) 
    599 CheckCompUni("<apostrophe> <O>  ", 0xD3) 
    600 CheckCompUni("<acute> <O>       ", 0xD3) 
    601 CheckCompUni("<apostrophe> <o>  ", 0xF3) 
    602 CheckCompUni("<acute> <o>       ", 0xF3) 
    603 CheckCompUni("<asciicircum> <O> ", 0xD4) 
    604 CheckCompUni("<asciicircum> <o> ", 0xF4) 
    605 CheckCompUni("<quotedbl> <O>    ", 0xD6) 
    606 CheckCompUni("<quotedbl> <o>    ", 0xF6) 
    607 CheckCompUni("<equal> <O>       ", 0x150) 
    608 CheckCompUni("<equal> <o>       ", 0x151) 
     593CheckCompUni("<KP_Equal> <U0338>", 0x2260) 
     594CheckCompUni("<equal> <U0338>", 0x2260) 
     595CheckCompUni("<minus> <comma>", 0xAC) 
     596CheckCompUni("<comma> <minus>", 0xAC) 
     597CheckCompUni("<asciitilde> <N>", 0xD1) 
     598CheckCompUni("<asciitilde> <n>", 0xF1) 
     599CheckCompUni("<apostrophe> <O>", 0xD3) 
     600CheckCompUni("<acute> <O>", 0xD3) 
     601CheckCompUni("<apostrophe> <o>", 0xF3) 
     602CheckCompUni("<acute> <o>", 0xF3) 
     603CheckCompUni("<asciicircum> <O>", 0xD4) 
     604CheckCompUni("<asciicircum> <o>", 0xF4) 
     605CheckCompUni("<quotedbl> <O>", 0xD6) 
     606CheckCompUni("<quotedbl> <o>", 0xF6) 
     607CheckCompUni("<equal> <O>", 0x150) 
     608CheckCompUni("<equal> <o>", 0x151) 
    609609CheckCompUni("<O> <E>", 0x152) 
    610610CheckCompUni("<o> <e>", 0x153) 
    611 CheckCompUni("<grave> <O>       ", 0xD2) 
    612 CheckCompUni("<grave> <o>       ", 0xF2) 
    613 CheckCompUni("<underscore> <O>  ", 0x14C) 
    614 CheckCompUni("<macron> <O>      ", 0x14C) 
    615 CheckCompUni("<underscore> <o>  ", 0x14D) 
    616 CheckCompUni("<macron> <o>      ", 0x14D) 
    617 CheckCompUni("<1> <2>   ", 0xBD) 
    618 CheckCompUni("<1> <4>   ", 0xBC) 
    619 CheckCompUni("<asciicircum> <KP_1>      ", 0xB9) 
    620 CheckCompUni("<asciicircum> <1> ", 0xB9) 
    621 CheckCompUni("<KP_Divide> <O>   ", 0xD8) 
    622 CheckCompUni("<slash> <O>       ", 0xD8) 
    623 CheckCompUni("<asciicircum> <underbar> <a>      ", 0xAA) 
    624 CheckCompUni("<asciicircum> <underscore> <a>    ", 0xAA) 
    625 CheckCompUni("<KP_Divide> <o>   ", 0xF8) 
    626 CheckCompUni("<slash> <o>       ", 0xF8) 
    627 CheckCompUni("<asciitilde> <O>  ", 0xD5) 
    628 CheckCompUni("<asciitilde> <o>  ", 0xF5) 
     611CheckCompUni("<grave> <O>", 0xD2) 
     612CheckCompUni("<grave> <o>", 0xF2) 
     613CheckCompUni("<underscore> <O>", 0x14C) 
     614CheckCompUni("<macron> <O>", 0x14C) 
     615CheckCompUni("<underscore> <o>", 0x14D) 
     616CheckCompUni("<macron> <o>", 0x14D) 
     617CheckCompUni("<1> <2>", 0xBD) 
     618CheckCompUni("<1> <4>", 0xBC) 
     619CheckCompUni("<asciicircum> <KP_1>", 0xB9) 
     620CheckCompUni("<asciicircum> <1>", 0xB9) 
     621CheckCompUni("<KP_Divide> <O>", 0xD8) 
     622CheckCompUni("<slash> <O>", 0xD8) 
     623CheckCompUni("<asciicircum> <underbar> <a>", 0xAA) 
     624CheckCompUni("<asciicircum> <underscore> <a>", 0xAA) 
     625CheckCompUni("<KP_Divide> <o>", 0xF8) 
     626CheckCompUni("<slash> <o>", 0xF8) 
     627CheckCompUni("<asciitilde> <O>", 0xD5) 
     628CheckCompUni("<asciitilde> <o>", 0xF5) 
    629629CheckCompUni("<P> <exclam>", 0xB6) 
    630630CheckCompUni("<p> <exclam>", 0xB6) 
    631 CheckCompUni("<P> <P>           ", 0xB6) 
     631CheckCompUni("<P> <P>", 0xB6) 
    632632CheckCompUni("<period> <period>", 0xB7) 
    633 CheckCompUni("<P> <t>                   ", 0x20A7) 
     633CheckCompUni("<P> <t>", 0x20A7) 
    634634CheckCompUni("<plus> <minus>", 0xB1) 
    635635CheckCompUni("<space> <period>", 0x2008) 
    636636CheckCompUni("<question> <question>", 0xBF) 
    637 CheckCompUni("<apostrophe> <R>  ", 0x154) 
    638 CheckCompUni("<acute> <R>       ", 0x154) 
    639 CheckCompUni("<apostrophe> <r>  ", 0x155) 
    640 CheckCompUni("<acute> <r>       ", 0x155) 
    641 CheckCompUni("<c> <R>   ", 0x158) 
    642 CheckCompUni("<c> <r>   ", 0x159) 
    643 CheckCompUni("<comma> <R>       ", 0x156) 
    644 CheckCompUni("<comma> <r>       ", 0x157) 
     637CheckCompUni("<apostrophe> <R>", 0x154) 
     638CheckCompUni("<acute> <R>", 0x154) 
     639CheckCompUni("<apostrophe> <r>", 0x155) 
     640CheckCompUni("<acute> <r>", 0x155) 
     641CheckCompUni("<c> <R>", 0x158) 
     642CheckCompUni("<c> <r>", 0x159) 
     643CheckCompUni("<comma> <R>", 0x156) 
     644CheckCompUni("<comma> <r>", 0x157) 
    645645CheckCompUni("<O> <R>", 0xAE) 
    646646CheckCompUni("<O> <r>", 0xAE) 
    647647CheckCompUni("<o> <R>", 0xAE) 
    648648CheckCompUni("<o> <r>", 0xAE) 
    649 CheckCompUni("<quotedbl> <greater>      ", 0x201D) 
    650 CheckCompUni("<greater> <quotedbl>      ", 0x201D) 
    651 CheckCompUni("<apostrophe> <greater>    ", 0x2019) 
    652 CheckCompUni("<greater> <apostrophe>    ", 0x2019) 
    653 CheckCompUni("<R> <s>                   ", 0x20A8) 
    654 CheckCompUni("<apostrophe> <S>  ", 0x15A) 
    655 CheckCompUni("<acute> <S>       ", 0x15A) 
    656 CheckCompUni("<apostrophe> <s>  ", 0x15B) 
    657 CheckCompUni("<acute> <s>       ", 0x15B) 
    658 CheckCompUni("<c> <S>   ", 0x160) 
    659 CheckCompUni("<c> <s>   ", 0x161) 
    660 CheckCompUni("<comma> <S>       ", 0x15E) 
    661 CheckCompUni("<comma> <s>       ", 0x15F) 
    662 CheckCompUni("<asciicircum> <S> ", 0x15C) 
    663 CheckCompUni("<asciicircum> <s> ", 0x15D) 
     649CheckCompUni("<quotedbl> <greater>", 0x201D) 
     650CheckCompUni("<greater> <quotedbl>", 0x201D) 
     651CheckCompUni("<apostrophe> <greater>", 0x2019) 
     652CheckCompUni("<greater> <apostrophe>", 0x2019) 
     653CheckCompUni("<R> <s>", 0x20A8) 
     654CheckCompUni("<apostrophe> <S>", 0x15A) 
     655CheckCompUni("<acute> <S>", 0x15A) 
     656CheckCompUni("<apostrophe> <s>", 0x15B) 
     657CheckCompUni("<acute> <s>", 0x15B) 
     658CheckCompUni("<c> <S>", 0x160) 
     659CheckCompUni("<c> <s>", 0x161) 
     660CheckCompUni("<comma> <S>", 0x15E) 
     661CheckCompUni("<comma> <s>", 0x15F) 
     662CheckCompUni("<asciicircum> <S>", 0x15C) 
     663CheckCompUni("<asciicircum> <s>", 0x15D) 
    664664CheckCompUni("<o> <s>", 0xA7) 
    665665CheckCompUni("<s> <o>", 0xA7) 
     
    667667CheckCompUni("<comma> <apostrophe>", 0x201A) 
    668668CheckCompUni("<s> <s>", 0xDF) 
    669 CheckCompUni("<minus> <L>               ", 0xA3) 
    670 CheckCompUni("<L> <minus>               ", 0xA3) 
    671 CheckCompUni("<c> <T>   ", 0x164) 
    672 CheckCompUni("<c> <t>   ", 0x165) 
    673 CheckCompUni("<comma> <T>       ", 0x162) 
    674 CheckCompUni("<comma> <t>       ", 0x163) 
    675 CheckCompUni("<T> <H>   ", 0xDE) 
    676 CheckCompUni("<t> <h>   ", 0xFE) 
    677 CheckCompUni("<3> <4>   ", 0xBE) 
    678 CheckCompUni("<asciicircum> <KP_3>      ", 0xB3) 
    679 CheckCompUni("<asciicircum> <3> ", 0xB3) 
    680 CheckCompUni("<asciicircum> <T> <M>     ", 0x2122) 
    681 CheckCompUni("<KP_Divide> <T>   ", 0x166) 
    682 CheckCompUni("<slash> <T>       ", 0x166) 
    683 CheckCompUni("<KP_Divide> <t>   ", 0x167) 
    684 CheckCompUni("<slash> <t>       ", 0x167) 
    685 CheckCompUni("<asciicircum> <KP_2>      ", 0xB2) 
    686 CheckCompUni("<asciicircum> <KP_Space>  ", 0xB2) 
    687 CheckCompUni("<asciicircum> <2> ", 0xB2) 
    688 CheckCompUni("<b> <E>   ", 0x114) 
    689 CheckCompUni("<U> <E>   ", 0x114) 
    690 CheckCompUni("<b> <e>   ", 0x115) 
    691 CheckCompUni("<U> <e>   ", 0x115) 
    692 CheckCompUni("<b> <I>   ", 0x12C) 
    693 CheckCompUni("<U> <I>   ", 0x12C) 
    694 CheckCompUni("<b> <i>   ", 0x12D) 
    695 CheckCompUni("<U> <i>   ", 0x12D) 
    696 CheckCompUni("<b> <O>   ", 0x14E) 
    697 CheckCompUni("<U> <O>   ", 0x14E) 
    698 CheckCompUni("<b> <o>   ", 0x14F) 
    699 CheckCompUni("<U> <o>   ", 0x14F) 
    700 CheckCompUni("<asciicircum> <W> ", 0x174) 
    701 CheckCompUni("<asciicircum> <w> ", 0x175) 
    702 CheckCompUni("<asciicircum> <Y> ", 0x176) 
    703 CheckCompUni("<asciicircum> <y> ", 0x177) 
    704 CheckCompUni("<f> <S>   ", 0x17F) 
    705 CheckCompUni("<f> <s>   ", 0x17F) 
    706 CheckCompUni("<KP_Divide> <b>   ", 0x180) 
    707 CheckCompUni("<slash> <b>       ", 0x180) 
    708 CheckCompUni("<KP_Divide> <I>   ", 0x197) 
    709 CheckCompUni("<slash> <I>       ", 0x197) 
    710 CheckCompUni("<plus> <O>        ", 0x1A0) 
    711 CheckCompUni("<plus> <o>        ", 0x1A1) 
    712 CheckCompUni("<plus> <U>        ", 0x1AF) 
    713 CheckCompUni("<plus> <u>        ", 0x1B0) 
    714 CheckCompUni("<KP_Divide> <Z>   ", 0x1B5) 
    715 CheckCompUni("<slash> <Z>       ", 0x1B5) 
    716 CheckCompUni("<KP_Divide> <z>   ", 0x1B6) 
    717 CheckCompUni("<slash> <z>       ", 0x1B6) 
    718 CheckCompUni("<c> <A>   ", 0x1CD) 
    719 CheckCompUni("<c> <a>   ", 0x1CE) 
    720 CheckCompUni("<c> <I>   ", 0x1CF) 
    721 CheckCompUni("<c> <i>   ", 0x1D0) 
    722 CheckCompUni("<c> <O>   ", 0x1D1) 
    723 CheckCompUni("<c> <o>   ", 0x1D2) 
    724 CheckCompUni("<c> <U>   ", 0x1D3) 
    725 CheckCompUni("<c> <u>   ", 0x1D4) 
    726 CheckCompUni("<underscore> <quotedbl> <U>       ", 0x1D5) 
    727 CheckCompUni("<underscore> <dead_diaeresis> <U> ", 0x1D5) 
    728 CheckCompUni("<macron> <quotedbl> <U>   ", 0x1D5) 
    729 CheckCompUni("<macron> <dead_diaeresis> <U>     ", 0x1D5) 
    730 CheckCompUni("<underscore> <Udiaeresis> ", 0x1D5) 
    731 CheckCompUni("<macron> <Udiaeresis>     ", 0x1D5) 
    732 CheckCompUni("<underscore> <quotedbl> <u>       ", 0x1D6) 
    733 CheckCompUni("<underscore> <dead_diaeresis> <u> ", 0x1D6) 
    734 CheckCompUni("<macron> <quotedbl> <u>   ", 0x1D6) 
    735 CheckCompUni("<macron> <dead_diaeresis> <u>     ", 0x1D6) 
    736 CheckCompUni("<underscore> <udiaeresis> ", 0x1D6) 
    737 CheckCompUni("<macron> <udiaeresis>     ", 0x1D6) 
    738 CheckCompUni("<apostrophe> <quotedbl> <U>       ", 0x1D7) 
    739 CheckCompUni("<apostrophe> <dead_diaeresis> <U> ", 0x1D7) 
    740 CheckCompUni("<acute> <quotedbl> <U>    ", 0x1D7) 
    741 CheckCompUni("<acute> <dead_diaeresis> <U>      ", 0x1D7) 
    742 CheckCompUni("<apostrophe> <Udiaeresis> ", 0x1D7) 
    743 CheckCompUni("<acute> <Udiaeresis>      ", 0x1D7) 
    744 CheckCompUni("<apostrophe> <quotedbl> <u>       ", 0x1D8) 
    745 CheckCompUni("<apostrophe> <dead_diaeresis> <u> ", 0x1D8) 
    746 CheckCompUni("<acute> <quotedbl> <u>    ", 0x1D8) 
    747 CheckCompUni("<acute> <dead_diaeresis> <u>      ", 0x1D8) 
    748 CheckCompUni("<apostrophe> <udiaeresis> ", 0x1D8) 
    749 CheckCompUni("<acute> <udiaeresis>      ", 0x1D8) 
    750 CheckCompUni("<c> <quotedbl> <U>        ", 0x1D9) 
    751 CheckCompUni("<c> <dead_diaeresis> <U>  ", 0x1D9) 
    752 CheckCompUni("<c> <Udiaeresis>  ", 0x1D9) 
    753 CheckCompUni("<c> <quotedbl> <u>        ", 0x1DA) 
    754 CheckCompUni("<c> <dead_diaeresis> <u>  ", 0x1DA) 
    755 CheckCompUni("<c> <udiaeresis>  ", 0x1DA) 
    756 CheckCompUni("<grave> <quotedbl> <U>    ", 0x1DB) 
    757 CheckCompUni("<grave> <dead_diaeresis> <U>      ", 0x1DB) 
    758 CheckCompUni("<grave> <Udiaeresis>      ", 0x1DB) 
    759 CheckCompUni("<grave> <quotedbl> <u>    ", 0x1DC) 
    760 CheckCompUni("<grave> <dead_diaeresis> <u>      ", 0x1DC) 
    761 CheckCompUni("<grave> <udiaeresis>      ", 0x1DC) 
    762 CheckCompUni("<underscore> <quotedbl> <A>       ", 0x1DE) 
    763 CheckCompUni("<underscore> <dead_diaeresis> <A> ", 0x1DE) 
    764 CheckCompUni("<macron> <quotedbl> <A>   ", 0x1DE) 
    765 CheckCompUni("<macron> <dead_diaeresis> <A>     ", 0x1DE) 
    766 CheckCompUni("<underscore> <Adiaeresis> ", 0x1DE) 
    767 CheckCompUni("<macron> <Adiaeresis>     ", 0x1DE) 
    768 CheckCompUni("<underscore> <quotedbl> <a>       ", 0x1DF) 
    769 CheckCompUni("<underscore> <dead_diaeresis> <a> ", 0x1DF) 
    770 CheckCompUni("<macron> <quotedbl> <a>   ", 0x1DF) 
    771 CheckCompUni("<macron> <dead_diaeresis> <a>     ", 0x1DF) 
    772 CheckCompUni("<underscore> <adiaeresis> ", 0x1DF) 
    773 CheckCompUni("<macron> <adiaeresis>     ", 0x1DF) 
    774 CheckCompUni("<underscore> <period> <A> ", 0x1E0) 
    775 CheckCompUni("<underscore> <dead_abovedot> <A>  ", 0x1E0) 
    776 CheckCompUni("<macron> <period> <A>     ", 0x1E0) 
    777 CheckCompUni("<macron> <dead_abovedot> <A>      ", 0x1E0) 
    778 CheckCompUni("<underscore> <U0226>      ", 0x1E0) 
    779 CheckCompUni("<macron> <U0226>  ", 0x1E0) 
    780 CheckCompUni("<underscore> <period> <a> ", 0x1E1) 
    781 CheckCompUni("<underscore> <dead_abovedot> <a>  ", 0x1E1) 
    782 CheckCompUni("<macron> <period> <a>     ", 0x1E1) 
    783 CheckCompUni("<macron> <dead_abovedot> <a>      ", 0x1E1) 
    784 CheckCompUni("<underscore> <U0227>      ", 0x1E1) 
    785 CheckCompUni("<macron> <U0227>  ", 0x1E1) 
    786 CheckCompUni("<underscore> <AE> ", 0x1E2) 
    787 CheckCompUni("<macron> <AE>     ", 0x1E2) 
    788 CheckCompUni("<underscore> <ae> ", 0x1E3) 
    789 CheckCompUni("<macron> <ae>     ", 0x1E3) 
    790 CheckCompUni("<KP_Divide> <G>   ", 0x1E4) 
    791 CheckCompUni("<slash> <G>       ", 0x1E4) 
    792 CheckCompUni("<KP_Divide> <g>   ", 0x1E5) 
    793 CheckCompUni("<slash> <g>       ", 0x1E5) 
    794 CheckCompUni("<c> <G>   ", 0x1E6) 
    795 CheckCompUni("<c> <g>   ", 0x1E7) 
    796 CheckCompUni("<c> <K>   ", 0x1E8) 
    797 CheckCompUni("<c> <k>   ", 0x1E9) 
    798 CheckCompUni("<semicolon> <O>   ", 0x1EA) 
    799 CheckCompUni("<semicolon> <o>   ", 0x1EB) 
    800 CheckCompUni("<underscore> <semicolon> <O>      ", 0x1EC) 
    801 CheckCompUni("<underscore> <dead_ogonek> <O>    ", 0x1EC) 
    802 CheckCompUni("<macron> <semicolon> <O>  ", 0x1EC) 
    803 CheckCompUni("<macron> <dead_ogonek> <O>        ", 0x1EC) 
    804 CheckCompUni("<underscore> <U01ea>      ", 0x1EC) 
    805 CheckCompUni("<macron> <U01ea>  ", 0x1EC) 
    806 CheckCompUni("<underscore> <semicolon> <o>      ", 0x1ED) 
    807 CheckCompUni("<underscore> <dead_ogonek> <o>    ", 0x1ED) 
    808 CheckCompUni("<macron> <semicolon> <o>  ", 0x1ED) 
    809 CheckCompUni("<macron> <dead_ogonek> <o>        ", 0x1ED) 
    810 CheckCompUni("<underscore> <U01eb>      ", 0x1ED) 
    811 CheckCompUni("<macron> <U01eb>  ", 0x1ED) 
    812 CheckCompUni("<c> <U01b7>       ", 0x1EE) 
    813 CheckCompUni("<c> <U0292>       ", 0x1EF) 
    814 CheckCompUni("<c> <j>   ", 0x1F0) 
    815 CheckCompUni("<apostrophe> <G>  ", 0x1F4) 
    816 CheckCompUni("<acute> <G>       ", 0x1F4) 
    817 CheckCompUni("<apostrophe> <g>  ", 0x1F5) 
    818 CheckCompUni("<acute> <g>       ", 0x1F5) 
    819 CheckCompUni("<grave> <N>       ", 0x1F8) 
    820 CheckCompUni("<grave> <n>       ", 0x1F9) 
    821 CheckCompUni("<o> <apostrophe> <A>      ", 0x1FA) 
    822 CheckCompUni("<apostrophe> <dead_abovering> <A> ", 0x1FA) 
    823 CheckCompUni("<acute> <o> <A>   ", 0x1FA) 
    824 CheckCompUni("<acute> <dead_abovering> <A>      ", 0x1FA) 
    825 CheckCompUni("<apostrophe> <Aring>      ", 0x1FA) 
    826 CheckCompUni("<acute> <Aring>   ", 0x1FA) 
    827 CheckCompUni("<o> <apostrophe> <a>      ", 0x1FB) 
    828 CheckCompUni("<apostrophe> <dead_abovering> <a> ", 0x1FB) 
    829 CheckCompUni("<acute> <o> <a>   ", 0x1FB) 
    830 CheckCompUni("<acute> <dead_abovering> <a>      ", 0x1FB) 
    831 CheckCompUni("<apostrophe> <aring>      ", 0x1FB) 
    832 CheckCompUni("<acute> <aring>   ", 0x1FB) 
    833 CheckCompUni("<apostrophe> <AE> ", 0x1FC) 
    834 CheckCompUni("<acute> <AE>      ", 0x1FC) 
    835 CheckCompUni("<apostrophe> <ae> ", 0x1FD) 
    836 CheckCompUni("<acute> <ae>      ", 0x1FD) 
    837 CheckCompUni("<apostrophe> <KP_Divide> <O>      ", 0x1FE) 
    838 CheckCompUni("<acute> <KP_Divide> <O>   ", 0x1FE) 
    839 CheckCompUni("<apostrophe> <slash> <O>  ", 0x1FE) 
    840 CheckCompUni("<acute> <slash> <O>       ", 0x1FE) 
    841 CheckCompUni("<apostrophe> <Ooblique>   ", 0x1FE) 
    842 CheckCompUni("<acute> <Ooblique>        ", 0x1FE) 
    843 CheckCompUni("<apostrophe> <KP_Divide> <o>      ", 0x1FF) 
    844 CheckCompUni("<acute> <KP_Divide> <o>   ", 0x1FF) 
    845 CheckCompUni("<apostrophe> <slash> <o>  ", 0x1FF) 
    846 CheckCompUni("<acute> <slash> <o>       ", 0x1FF) 
    847 CheckCompUni("<apostrophe> <oslash>     ", 0x1FF) 
    848 CheckCompUni("<acute> <oslash>  ", 0x1FF) 
    849 CheckCompUni("<c> <H>   ", 0x21E) 
    850 CheckCompUni("<c> <h>   ", 0x21F) 
    851 CheckCompUni("<period> <A>      ", 0x226) 
    852 CheckCompUni("<period> <a>      ", 0x227) 
    853 CheckCompUni("<comma> <E>       ", 0x228) 
    854 CheckCompUni("<comma> <e>       ", 0x229) 
    855 CheckCompUni("<underscore> <quotedbl> <O>       ", 0x22A) 
    856 CheckCompUni("<underscore> <dead_diaeresis> <O> ", 0x22A) 
    857 CheckCompUni("<macron> <quotedbl> <O>   ", 0x22A) 
    858 CheckCompUni("<macron> <dead_diaeresis> <O>     ", 0x22A) 
    859 CheckCompUni("<underscore> <Odiaeresis> ", 0x22A) 
    860 CheckCompUni("<macron> <Odiaeresis>     ", 0x22A) 
    861 CheckCompUni("<underscore> <quotedbl> <o>       ", 0x22B) 
    862 CheckCompUni("<underscore> <dead_diaeresis> <o> ", 0x22B) 
    863 CheckCompUni("<macron> <quotedbl> <o>   ", 0x22B) 
    864 CheckCompUni("<macron> <dead_diaeresis> <o>     ", 0x22B) 
    865 CheckCompUni("<underscore> <odiaeresis> ", 0x22B) 
    866 CheckCompUni("<macron> <odiaeresis>     ", 0x22B) 
    867 CheckCompUni("<underscore> <combining_tilde> <O>        ", 0x22C) 
    868 CheckCompUni("<macron> <combining_tilde> <O>    ", 0x22C) 
    869 CheckCompUni("<underscore> <asciitilde> <O>     ", 0x22C) 
    870 CheckCompUni("<underscore> <dead_tilde> <O>     ", 0x22C) 
    871 CheckCompUni("<macron> <asciitilde> <O> ", 0x22C) 
    872 CheckCompUni("<macron> <dead_tilde> <O> ", 0x22C) 
    873 CheckCompUni("<underscore> <Otilde>     ", 0x22C) 
    874 CheckCompUni("<macron> <Otilde> ", 0x22C) 
    875 CheckCompUni("<underscore> <combining_tilde> <o>        ", 0x22D) 
    876 CheckCompUni("<macron> <combining_tilde> <o>    ", 0x22D) 
    877 CheckCompUni("<underscore> <asciitilde> <o>     ", 0x22D) 
    878 CheckCompUni("<underscore> <dead_tilde> <o>     ", 0x22D) 
    879 CheckCompUni("<macron> <asciitilde> <o> ", 0x22D) 
    880 CheckCompUni("<macron> <dead_tilde> <o> ", 0x22D) 
    881 CheckCompUni("<underscore> <otilde>     ", 0x22D) 
    882 CheckCompUni("<macron> <otilde> ", 0x22D) 
    883 CheckCompUni("<period> <O>      ", 0x22E) 
    884 CheckCompUni("<period> <o>      ", 0x22F) 
    885 CheckCompUni("<underscore> <period> <O> ", 0x230) 
    886 CheckCompUni("<underscore> <dead_abovedot> <O>  ", 0x230) 
    887 CheckCompUni("<macron> <period> <O>     ", 0x230) 
    888 CheckCompUni("<macron> <dead_abovedot> <O>      ", 0x230) 
    889 CheckCompUni("<underscore> <U022e>      ", 0x230) 
    890 CheckCompUni("<macron> <U022e>  ", 0x230) 
    891 CheckCompUni("<underscore> <period> <o> ", 0x231) 
    892 CheckCompUni("<underscore> <dead_abovedot> <o>  ", 0x231) 
    893 CheckCompUni("<macron> <period> <o>     ", 0x231) 
    894 CheckCompUni("<macron> <dead_abovedot> <o>      ", 0x231) 
    895 CheckCompUni("<underscore> <U022f>      ", 0x231) 
    896 CheckCompUni("<macron> <U022f>  ", 0x231) 
    897 CheckCompUni("<underscore> <Y>  ", 0x232) 
    898 CheckCompUni("<macron> <Y>      ", 0x232) 
    899 CheckCompUni("<underscore> <y>  ", 0x233) 
    900 CheckCompUni("<macron> <y>      ", 0x233) 
    901 CheckCompUni("<e> <e>   ", 0x259) 
    902 CheckCompUni("<KP_Divide> <i>   ", 0x268) 
    903 CheckCompUni("<slash> <i>       ", 0x268) 
    904 CheckCompUni("<KP_Divide> <U0294>       ", 0x2A1) 
    905 CheckCompUni("<slash> <U0294>   ", 0x2A1) 
    906 CheckCompUni("<asciicircum> <underbar> <h>      ", 0x2B0) 
    907 CheckCompUni("<asciicircum> <underscore> <h>    ", 0x2B0) 
    908 CheckCompUni("<asciicircum> <underbar> <U0266>  ", 0x2B1) 
    909 CheckCompUni("<asciicircum> <underscore> <U0266>        ", 0x2B1) 
    910 CheckCompUni("<asciicircum> <underbar> <j>      ", 0x2B2) 
    911 CheckCompUni("<asciicircum> <underscore> <j>    ", 0x2B2) 
    912 CheckCompUni("<asciicircum> <underbar> <r>      ", 0x2B3) 
    913 CheckCompUni("<asciicircum> <underscore> <r>    ", 0x2B3) 
    914 CheckCompUni("<asciicircum> <underbar> <U0279>  ", 0x2B4) 
    915 CheckCompUni("<asciicircum> <underscore> <U0279>        ", 0x2B4) 
    916 CheckCompUni("<asciicircum> <underbar> <U027b>  ", 0x2B5) 
    917 CheckCompUni("<asciicircum> <underscore> <U027b>        ", 0x2B5) 
    918 CheckCompUni("<asciicircum> <underbar> <U0281>  ", 0x2B6) 
    919 CheckCompUni("<asciicircum> <underscore> <U0281>        ", 0x2B6) 
    920 CheckCompUni("<asciicircum> <underbar> <w>      ", 0x2B7) 
    921 CheckCompUni("<asciicircum> <underscore> <w>    ", 0x2B7) 
    922 CheckCompUni("<asciicircum> <underbar> <y>      ", 0x2B8) 
    923 CheckCompUni("<asciicircum> <underscore> <y>    ", 0x2B8) 
    924 CheckCompUni("<asciicircum> <underbar> <U0263>  ", 0x2E0) 
    925 CheckCompUni("<asciicircum> <underscore> <U0263>        ", 0x2E0) 
    926 CheckCompUni("<asciicircum> <underbar> <l>      ", 0x2E1) 
    927 CheckCompUni("<asciicircum> <underscore> <l>    ", 0x2E1) 
    928 CheckCompUni("<asciicircum> <underbar> <s>      ", 0x2E2) 
    929 CheckCompUni("<asciicircum> <underscore> <s>    ", 0x2E2) 
    930 CheckCompUni("<asciicircum> <underbar> <x>      ", 0x2E3) 
    931 CheckCompUni("<asciicircum> <underscore> <x>    ", 0x2E3) 
    932 CheckCompUni("<asciicircum> <underbar> <U0295>  ", 0x2E4) 
    933 CheckCompUni("<asciicircum> <underscore> <U0295>        ", 0x2E4) 
    934 CheckCompUni("<quotedbl> <combining_acute>      ", 0x344) 
    935 CheckCompUni("<quotedbl> <apostrophe>   ", 0x344) 
    936 CheckCompUni("<quotedbl> <acute>        ", 0x344) 
    937 CheckCompUni("<quotedbl> <dead_acute>   ", 0x344) 
    938 CheckCompUni("<apostrophe> <U03d2>      ", 0x3D3) 
    939 CheckCompUni("<acute> <U03d2>   ", 0x3D3) 
    940 CheckCompUni("<quotedbl> <U03d2>        ", 0x3D4) 
    941 CheckCompUni("<period> <B>      ", 0x1E02) 
    942 CheckCompUni("<period> <b>      ", 0x1E03) 
    943 CheckCompUni("<exclam> <B>      ", 0x1E04) 
    944 CheckCompUni("<exclam> <b>      ", 0x1E05) 
    945 CheckCompUni("<apostrophe> <comma> <C>  ", 0x1E08) 
    946 CheckCompUni("<apostrophe> <dead_cedilla> <C>   ", 0x1E08) 
    947 CheckCompUni("<acute> <comma> <C>       ", 0x1E08) 
    948 CheckCompUni("<acute> <dead_cedilla> <C>        ", 0x1E08) 
    949 CheckCompUni("<apostrophe> <Ccedilla>   ", 0x1E08) 
    950 CheckCompUni("<acute> <Ccedilla>        ", 0x1E08) 
    951 CheckCompUni("<apostrophe> <comma> <c>  ", 0x1E09) 
    952 CheckCompUni("<apostrophe> <dead_cedilla> <c>   ", 0x1E09) 
    953 CheckCompUni("<acute> <comma> <c>       ", 0x1E09) 
    954 CheckCompUni("<acute> <dead_cedilla> <c>        ", 0x1E09) 
    955 CheckCompUni("<apostrophe> <ccedilla>   ", 0x1E09) 
    956 CheckCompUni("<acute> <ccedilla>        ", 0x1E09) 
    957 CheckCompUni("<period> <D>      ", 0x1E0A) 
    958 CheckCompUni("<period> <d>      ", 0x1E0B) 
    959 CheckCompUni("<exclam> <D>      ", 0x1E0C) 
    960 CheckCompUni("<exclam> <d>      ", 0x1E0D) 
    961 CheckCompUni("<comma> <D>       ", 0x1E10) 
    962 CheckCompUni("<comma> <d>       ", 0x1E11) 
    963 CheckCompUni("<grave> <underscore> <E>  ", 0x1E14) 
    964 CheckCompUni("<grave> <macron> <E>      ", 0x1E14) 
    965 CheckCompUni("<grave> <dead_macron> <E> ", 0x1E14) 
    966 CheckCompUni("<grave> <Emacron> ", 0x1E14) 
    967 CheckCompUni("<grave> <underscore> <e>  ", 0x1E15) 
    968 CheckCompUni("<grave> <macron> <e>      ", 0x1E15) 
    969 CheckCompUni("<grave> <dead_macron> <e> ", 0x1E15) 
    970 CheckCompUni("<grave> <emacron> ", 0x1E15) 
    971 CheckCompUni("<apostrophe> <underscore> <E>     ", 0x1E16) 
    972 CheckCompUni("<apostrophe> <macron> <E> ", 0x1E16) 
    973 CheckCompUni("<apostrophe> <dead_macron> <E>    ", 0x1E16) 
    974 CheckCompUni("<acute> <underscore> <E>  ", 0x1E16) 
    975 CheckCompUni("<acute> <macron> <E>      ", 0x1E16) 
    976 CheckCompUni("<acute> <dead_macron> <E> ", 0x1E16) 
    977 CheckCompUni("<apostrophe> <Emacron>    ", 0x1E16) 
    978 CheckCompUni("<acute> <Emacron> ", 0x1E16) 
    979 CheckCompUni("<apostrophe> <underscore> <e>     ", 0x1E17) 
    980 CheckCompUni("<apostrophe> <macron> <e> ", 0x1E17) 
    981 CheckCompUni("<apostrophe> <dead_macron> <e>    ", 0x1E17) 
    982 CheckCompUni("<acute> <underscore> <e>  ", 0x1E17) 
    983 CheckCompUni("<acute> <macron> <e>      ", 0x1E17) 
    984 CheckCompUni("<acute> <dead_macron> <e> ", 0x1E17) 
    985 CheckCompUni("<apostrophe> <emacron>    ", 0x1E17) 
    986 CheckCompUni("<acute> <emacron> ", 0x1E17) 
    987 CheckCompUni("<b> <comma> <E>   ", 0x1E1C) 
    988 CheckCompUni("<b> <dead_cedilla> <E>    ", 0x1E1C) 
    989 CheckCompUni("<U> <comma> <E>   ", 0x1E1C) 
    990 CheckCompUni("<U> <dead_cedilla> <E>    ", 0x1E1C) 
    991 CheckCompUni("<b> <U0228>       ", 0x1E1C) 
    992 CheckCompUni("<U> <U0228>       ", 0x1E1C) 
    993 CheckCompUni("<b> <comma> <e>   ", 0x1E1D) 
    994 CheckCompUni("<b> <dead_cedilla> <e>    ", 0x1E1D) 
    995 CheckCompUni("<U> <comma> <e>   ", 0x1E1D) 
    996 CheckCompUni("<U> <dead_cedilla> <e>    ", 0x1E1D) 
    997 CheckCompUni("<b> <U0229>       ", 0x1E1D) 
    998 CheckCompUni("<U> <U0229>       ", 0x1E1D) 
    999 CheckCompUni("<period> <F>      ", 0x1E1E) 
    1000 CheckCompUni("<period> <f>      ", 0x1E1F) 
    1001 CheckCompUni("<underscore> <G>  ", 0x1E20) 
    1002 CheckCompUni("<macron> <G>      ", 0x1E20) 
    1003 CheckCompUni("<underscore> <g>  ", 0x1E21) 
    1004 CheckCompUni("<macron> <g>      ", 0x1E21) 
    1005 CheckCompUni("<period> <H>      ", 0x1E22) 
    1006 CheckCompUni("<period> <h>      ", 0x1E23) 
    1007 CheckCompUni("<exclam> <H>      ", 0x1E24) 
    1008 CheckCompUni("<exclam> <h>      ", 0x1E25) 
    1009 CheckCompUni("<quotedbl> <H>    ", 0x1E26) 
    1010 CheckCompUni("<quotedbl> <h>    ", 0x1E27) 
    1011 CheckCompUni("<comma> <H>       ", 0x1E28) 
    1012 CheckCompUni("<comma> <h>       ", 0x1E29) 
    1013 CheckCompUni("<apostrophe> <quotedbl> <I>       ", 0x1E2E) 
    1014 CheckCompUni("<apostrophe> <dead_diaeresis> <I> ", 0x1E2E) 
    1015 CheckCompUni("<acute> <quotedbl> <I>    ", 0x1E2E) 
    1016 CheckCompUni("<acute> <dead_diaeresis> <I>      ", 0x1E2E) 
    1017 CheckCompUni("<apostrophe> <Idiaeresis> ", 0x1E2E) 
    1018 CheckCompUni("<acute> <Idiaeresis>      ", 0x1E2E) 
    1019 CheckCompUni("<apostrophe> <quotedbl> <i>       ", 0x1E2F) 
    1020 CheckCompUni("<apostrophe> <dead_diaeresis> <i> ", 0x1E2F) 
    1021 CheckCompUni("<acute> <quotedbl> <i>    ", 0x1E2F) 
    1022 CheckCompUni("<acute> <dead_diaeresis> <i>      ", 0x1E2F) 
    1023 CheckCompUni("<apostrophe> <idiaeresis> ", 0x1E2F) 
    1024 CheckCompUni("<acute> <idiaeresis>      ", 0x1E2F) 
    1025 CheckCompUni("<apostrophe> <K>  ", 0x1E30) 
    1026 CheckCompUni("<acute> <K>       ", 0x1E30) 
    1027 CheckCompUni("<apostrophe> <k>  ", 0x1E31) 
    1028 CheckCompUni("<acute> <k>       ", 0x1E31) 
    1029 CheckCompUni("<exclam> <K>      ", 0x1E32) 
    1030 CheckCompUni("<exclam> <k>      ", 0x1E33) 
    1031 CheckCompUni("<exclam> <L>      ", 0x1E36) 
    1032 CheckCompUni("<exclam> <l>      ", 0x1E37) 
    1033 CheckCompUni("<underscore> <combining_belowdot> <L>     ", 0x1E38) 
    1034 CheckCompUni("<macron> <combining_belowdot> <L> ", 0x1E38) 
    1035 CheckCompUni("<underscore> <exclam> <L> ", 0x1E38) 
    1036 CheckCompUni("<underscore> <dead_belowdot> <L>  ", 0x1E38) 
    1037 CheckCompUni("<macron> <exclam> <L>     ", 0x1E38) 
    1038 CheckCompUni("<macron> <dead_belowdot> <L>      ", 0x1E38) 
    1039 CheckCompUni("<underscore> <U1e36>      ", 0x1E38) 
    1040 CheckCompUni("<macron> <U1e36>  ", 0x1E38) 
    1041 CheckCompUni("<underscore> <combining_belowdot> <l>     ", 0x1E39) 
    1042 CheckCompUni("<macron> <combining_belowdot> <l> ", 0x1E39) 
    1043 CheckCompUni("<underscore> <exclam> <l> ", 0x1E39) 
    1044 CheckCompUni("<underscore> <dead_belowdot> <l>  ", 0x1E39) 
    1045 CheckCompUni("<macron> <exclam> <l>     ", 0x1E39) 
    1046 CheckCompUni("<macron> <dead_belowdot> <l>      ", 0x1E39) 
    1047 CheckCompUni("<underscore> <U1e37>      ", 0x1E39) 
    1048 CheckCompUni("<macron> <U1e37>  ", 0x1E39) 
    1049 CheckCompUni("<apostrophe> <M>  ", 0x1E3E) 
    1050 CheckCompUni("<acute> <M>       ", 0x1E3E) 
    1051 CheckCompUni("<apostrophe> <m>  ", 0x1E3F) 
    1052 CheckCompUni("<acute> <m>       ", 0x1E3F) 
    1053 CheckCompUni("<period> <M>      ", 0x1E40) 
    1054 CheckCompUni("<period> <m>      ", 0x1E41) 
    1055 CheckCompUni("<exclam> <M>      ", 0x1E42) 
    1056 CheckCompUni("<exclam> <m>      ", 0x1E43) 
    1057 CheckCompUni("<period> <N>      ", 0x1E44) 
    1058 CheckCompUni("<period> <n>      ", 0x1E45) 
    1059 CheckCompUni("<exclam> <N>      ", 0x1E46) 
    1060 CheckCompUni("<exclam> <n>      ", 0x1E47) 
    1061 CheckCompUni("<apostrophe> <combining_tilde> <O>        ", 0x1E4C) 
    1062 CheckCompUni("<acute> <combining_tilde> <O>     ", 0x1E4C) 
    1063 CheckCompUni("<apostrophe> <asciitilde> <O>     ", 0x1E4C) 
    1064 CheckCompUni("<apostrophe> <dead_tilde> <O>     ", 0x1E4C) 
    1065 CheckCompUni("<acute> <asciitilde> <O>  ", 0x1E4C) 
    1066 CheckCompUni("<acute> <dead_tilde> <O>  ", 0x1E4C) 
    1067 CheckCompUni("<apostrophe> <Otilde>     ", 0x1E4C) 
    1068 CheckCompUni("<acute> <Otilde>  ", 0x1E4C) 
    1069 CheckCompUni("<apostrophe> <combining_tilde> <o>        ", 0x1E4D) 
    1070 CheckCompUni("<acute> <combining_tilde> <o>     ", 0x1E4D) 
    1071 CheckCompUni("<apostrophe> <asciitilde> <o>     ", 0x1E4D) 
    1072 CheckCompUni("<apostrophe> <dead_tilde> <o>     ", 0x1E4D) 
    1073 CheckCompUni("<acute> <asciitilde> <o>  ", 0x1E4D) 
    1074 CheckCompUni("<acute> <dead_tilde> <o>  ", 0x1E4D) 
    1075 CheckCompUni("<apostrophe> <otilde>     ", 0x1E4D) 
    1076 CheckCompUni("<acute> <otilde>  ", 0x1E4D) 
    1077 CheckCompUni("<quotedbl> <combining_tilde> <O>  ", 0x1E4E) 
    1078 CheckCompUni("<quotedbl> <asciitilde> <O>       ", 0x1E4E) 
    1079 CheckCompUni("<quotedbl> <dead_tilde> <O>       ", 0x1E4E) 
    1080 CheckCompUni("<quotedbl> <Otilde>       ", 0x1E4E) 
    1081 CheckCompUni("<quotedbl> <combining_tilde> <o>  ", 0x1E4F) 
    1082 CheckCompUni("<quotedbl> <asciitilde> <o>       ", 0x1E4F) 
    1083 CheckCompUni("<quotedbl> <dead_tilde> <o>       ", 0x1E4F) 
    1084 CheckCompUni("<quotedbl> <otilde>       ", 0x1E4F) 
    1085 CheckCompUni("<grave> <underscore> <O>  ", 0x1E50) 
    1086 CheckCompUni("<grave> <macron> <O>      ", 0x1E50) 
    1087 CheckCompUni("<grave> <dead_macron> <O> ", 0x1E50) 
    1088 CheckCompUni("<grave> <Omacron> ", 0x1E50) 
    1089 CheckCompUni("<grave> <underscore> <o>  ", 0x1E51) 
    1090 CheckCompUni("<grave> <macron> <o>      ", 0x1E51) 
    1091 CheckCompUni("<grave> <dead_macron> <o> ", 0x1E51) 
    1092 CheckCompUni("<grave> <omacron> ", 0x1E51) 
    1093 CheckCompUni("<apostrophe> <underscore> <O>     ", 0x1E52) 
    1094 CheckCompUni("<apostrophe> <macron> <O> ", 0x1E52) 
    1095 CheckCompUni("<apostrophe> <dead_macron> <O>    ", 0x1E52) 
    1096 CheckCompUni("<acute> <underscore> <O>  ", 0x1E52) 
    1097 CheckCompUni("<acute> <macron> <O>      ", 0x1E52) 
    1098 CheckCompUni("<acute> <dead_macron> <O> ", 0x1E52) 
    1099 CheckCompUni("<apostrophe> <Omacron>    ", 0x1E52) 
    1100 CheckCompUni("<acute> <Omacron> ", 0x1E52) 
    1101 CheckCompUni("<apostrophe> <underscore> <o>     ", 0x1E53) 
    1102 CheckCompUni("<apostrophe> <macron> <o> ", 0x1E53) 
    1103 CheckCompUni("<apostrophe> <dead_macron> <o>    ", 0x1E53) 
    1104 CheckCompUni("<acute> <underscore> <o>  ", 0x1E53) 
    1105 CheckCompUni("<acute> <macron> <o>      ", 0x1E53) 
    1106 CheckCompUni("<acute> <dead_macron> <o> ", 0x1E53) 
    1107 CheckCompUni("<apostrophe> <omacron>    ", 0x1E53) 
    1108 CheckCompUni("<acute> <omacron> ", 0x1E53) 
    1109 CheckCompUni("<apostrophe> <P>  ", 0x1E54) 
    1110 CheckCompUni("<acute> <P>       ", 0x1E54) 
    1111 CheckCompUni("<apostrophe> <p>  ", 0x1E55) 
    1112 CheckCompUni("<acute> <p>       ", 0x1E55) 
    1113 CheckCompUni("<period> <P>      ", 0x1E56) 
    1114 CheckCompUni("<period> <p>      ", 0x1E57) 
    1115 CheckCompUni("<period> <R>      ", 0x1E58) 
    1116 CheckCompUni("<period> <r>      ", 0x1E59) 
    1117 CheckCompUni("<exclam> <R>      ", 0x1E5A) 
    1118 CheckCompUni("<exclam> <r>      ", 0x1E5B) 
    1119 CheckCompUni("<underscore> <combining_belowdot> <R>     ", 0x1E5C) 
    1120 CheckCompUni("<macron> <combining_belowdot> <R> ", 0x1E5C) 
    1121 CheckCompUni("<underscore> <exclam> <R> ", 0x1E5C) 
    1122 CheckCompUni("<underscore> <dead_belowdot> <R>  ", 0x1E5C) 
    1123 CheckCompUni("<macron> <exclam> <R>     ", 0x1E5C) 
    1124 CheckCompUni("<macron> <dead_belowdot> <R>      ", 0x1E5C) 
    1125 CheckCompUni("<underscore> <U1e5a>      ", 0x1E5C) 
    1126 CheckCompUni("<macron> <U1e5a>  ", 0x1E5C) 
    1127 CheckCompUni("<underscore> <combining_belowdot> <r>     ", 0x1E5D) 
    1128 CheckCompUni("<macron> <combining_belowdot> <r> ", 0x1E5D) 
    1129 CheckCompUni("<underscore> <exclam> <r> ", 0x1E5D) 
    1130 CheckCompUni("<underscore> <dead_belowdot> <r>  ", 0x1E5D) 
    1131 CheckCompUni("<macron> <exclam> <r>     ", 0x1E5D) 
    1132 CheckCompUni("<macron> <dead_belowdot> <r>      ", 0x1E5D) 
    1133 CheckCompUni("<underscore> <U1e5b>      ", 0x1E5D) 
    1134 CheckCompUni("<macron> <U1e5b>  ", 0x1E5D) 
    1135 CheckCompUni("<period> <S>      ", 0x1E60) 
    1136 CheckCompUni("<period> <s>      ", 0x1E61) 
    1137 CheckCompUni("<exclam> <S>      ", 0x1E62) 
    1138 CheckCompUni("<exclam> <s>      ", 0x1E63) 
    1139 CheckCompUni("<period> <combining_acute> <S>    ", 0x1E64) 
    1140 CheckCompUni("<period> <apostrophe> <S> ", 0x1E64) 
    1141 CheckCompUni("<period> <acute> <S>      ", 0x1E64) 
    1142 CheckCompUni("<period> <dead_acute> <S> ", 0x1E64) 
    1143 CheckCompUni("<period> <Sacute> ", 0x1E64) 
    1144 CheckCompUni("<period> <combining_acute> <s>    ", 0x1E65) 
    1145 CheckCompUni("<period> <apostrophe> <s> ", 0x1E65) 
    1146 CheckCompUni("<period> <acute> <s>      ", 0x1E65) 
    1147 CheckCompUni("<period> <dead_acute> <s> ", 0x1E65) 
    1148 CheckCompUni("<period> <sacute> ", 0x1E65) 
    1149 CheckCompUni("<period> <c> <S>  ", 0x1E66) 
    1150 CheckCompUni("<period> <dead_caron> <S> ", 0x1E66) 
    1151 CheckCompUni("<period> <Scaron> ", 0x1E66) 
    1152 CheckCompUni("<period> <c> <s>  ", 0x1E67) 
    1153 CheckCompUni("<period> <dead_caron> <s> ", 0x1E67) 
    1154 CheckCompUni("<period> <scaron> ", 0x1E67) 
    1155 CheckCompUni("<period> <combining_belowdot> <S> ", 0x1E68) 
    1156 CheckCompUni("<period> <exclam> <S>     ", 0x1E68) 
    1157 CheckCompUni("<period> <dead_belowdot> <S>      ", 0x1E68) 
    1158 CheckCompUni("<period> <U1e62>  ", 0x1E68) 
    1159 CheckCompUni("<period> <combining_belowdot> <s> ", 0x1E69) 
    1160 CheckCompUni("<period> <exclam> <s>     ", 0x1E69) 
    1161 CheckCompUni("<period> <dead_belowdot> <s>      ", 0x1E69) 
    1162 CheckCompUni("<period> <U1e63>  ", 0x1E69) 
    1163 CheckCompUni("<period> <T>      ", 0x1E6A) 
    1164 CheckCompUni("<period> <t>      ", 0x1E6B) 
    1165 CheckCompUni("<exclam> <T>      ", 0x1E6C) 
    1166 CheckCompUni("<exclam> <t>      ", 0x1E6D) 
    1167 CheckCompUni("<apostrophe> <combining_tilde> <U>        ", 0x1E78) 
    1168 CheckCompUni("<acute> <combining_tilde> <U>     ", 0x1E78) 
    1169 CheckCompUni("<apostrophe> <asciitilde> <U>     ", 0x1E78) 
    1170 CheckCompUni("<apostrophe> <dead_tilde> <U>     ", 0x1E78) 
    1171 CheckCompUni("<acute> <asciitilde> <U>  ", 0x1E78) 
    1172 CheckCompUni("<acute> <dead_tilde> <U>  ", 0x1E78) 
    1173 CheckCompUni("<apostrophe> <Utilde>     ", 0x1E78) 
    1174 CheckCompUni("<acute> <Utilde>  ", 0x1E78) 
    1175 CheckCompUni("<apostrophe> <combining_tilde> <u>        ", 0x1E79) 
    1176 CheckCompUni("<acute> <combining_tilde> <u>     ", 0x1E79) 
    1177 CheckCompUni("<apostrophe> <asciitilde> <u>     ", 0x1E79) 
    1178 CheckCompUni("<apostrophe> <dead_tilde> <u>     ", 0x1E79) 
    1179 CheckCompUni("<acute> <asciitilde> <u>  ", 0x1E79) 
    1180 CheckCompUni("<acute> <dead_tilde> <u>  ", 0x1E79) 
    1181 CheckCompUni("<apostrophe> <utilde>     ", 0x1E79) 
    1182 CheckCompUni("<acute> <utilde>  ", 0x1E79) 
    1183 CheckCompUni("<quotedbl> <underscore> <U>       ", 0x1E7A) 
    1184 CheckCompUni("<quotedbl> <macron> <U>   ", 0x1E7A) 
    1185 CheckCompUni("<quotedbl> <dead_macron> <U>      ", 0x1E7A) 
    1186 CheckCompUni("<quotedbl> <Umacron>      ", 0x1E7A) 
    1187 CheckCompUni("<quotedbl> <underscore> <u>       ", 0x1E7B) 
    1188 CheckCompUni("<quotedbl> <macron> <u>   ", 0x1E7B) 
    1189 CheckCompUni("<quotedbl> <dead_macron> <u>      ", 0x1E7B) 
    1190 CheckCompUni("<quotedbl> <umacron>      ", 0x1E7B) 
    1191 CheckCompUni("<asciitilde> <V>  ", 0x1E7C) 
    1192 CheckCompUni("<asciitilde> <v>  ", 0x1E7D) 
    1193 CheckCompUni("<exclam> <V>      ", 0x1E7E) 
    1194 CheckCompUni("<exclam> <v>      ", 0x1E7F) 
    1195 CheckCompUni("<grave> <W>       ", 0x1E80) 
    1196 CheckCompUni("<grave> <w>       ", 0x1E81) 
    1197 CheckCompUni("<apostrophe> <W>  ", 0x1E82) 
    1198 CheckCompUni("<acute> <W>       ", 0x1E82) 
    1199 CheckCompUni("<apostrophe> <w>  ", 0x1E83) 
    1200 CheckCompUni("<acute> <w>       ", 0x1E83) 
    1201 CheckCompUni("<quotedbl> <W>    ", 0x1E84) 
    1202 CheckCompUni("<quotedbl> <w>    ", 0x1E85) 
    1203 CheckCompUni("<period> <W>      ", 0x1E86) 
    1204 CheckCompUni("<period> <w>      ", 0x1E87) 
    1205 CheckCompUni("<exclam> <W>      ", 0x1E88) 
    1206 CheckCompUni("<exclam> <w>      ", 0x1E89) 
    1207 CheckCompUni("<period> <X>      ", 0x1E8A) 
    1208 CheckCompUni("<period> <x>      ", 0x1E8B) 
    1209 CheckCompUni("<quotedbl> <X>    ", 0x1E8C) 
    1210 CheckCompUni("<quotedbl> <x>    ", 0x1E8D) 
    1211 CheckCompUni("<period> <Y>      ", 0x1E8E) 
    1212 CheckCompUni("<period> <y>      ", 0x1E8F) 
    1213 CheckCompUni("<asciicircum> <Z> ", 0x1E90) 
    1214 CheckCompUni("<asciicircum> <z> ", 0x1E91) 
    1215 CheckCompUni("<exclam> <Z>      ", 0x1E92) 
    1216 CheckCompUni("<exclam> <z>      ", 0x1E93) 
    1217 CheckCompUni("<quotedbl> <t>    ", 0x1E97) 
    1218 CheckCompUni("<o> <w>   ", 0x1E98) 
    1219 CheckCompUni("<o> <y>   ", 0x1E99) 
    1220 CheckCompUni("<period> <U017f>  ", 0x1E9B) 
    1221 CheckCompUni("<exclam> <A>      ", 0x1EA0) 
    1222 CheckCompUni("<exclam> <a>      ", 0x1EA1) 
    1223 CheckCompUni("<question> <A>    ", 0x1EA2) 
    1224 CheckCompUni("<question> <a>    ", 0x1EA3) 
    1225 CheckCompUni("<apostrophe> <asciicircum> <A>    ", 0x1EA4) 
    1226 CheckCompUni("<apostrophe> <dead_circumflex> <A>        ", 0x1EA4) 
    1227 CheckCompUni("<acute> <asciicircum> <A> ", 0x1EA4) 
    1228 CheckCompUni("<acute> <dead_circumflex> <A>     ", 0x1EA4) 
    1229 CheckCompUni("<apostrophe> <Acircumflex>        ", 0x1EA4) 
    1230 CheckCompUni("<acute> <Acircumflex>     ", 0x1EA4) 
    1231 CheckCompUni("<apostrophe> <asciicircum> <a>    ", 0x1EA5) 
    1232 CheckCompUni("<apostrophe> <dead_circumflex> <a>        ", 0x1EA5) 
    1233 CheckCompUni("<acute> <asciicircum> <a> ", 0x1EA5) 
    1234 CheckCompUni("<acute> <dead_circumflex> <a>     ", 0x1EA5) 
    1235 CheckCompUni("<apostrophe> <acircumflex>        ", 0x1EA5) 
    1236 CheckCompUni("<acute> <acircumflex>     ", 0x1EA5) 
    1237 CheckCompUni("<grave> <asciicircum> <A> ", 0x1EA6) 
    1238 CheckCompUni("<grave> <dead_circumflex> <A>     ", 0x1EA6) 
    1239 CheckCompUni("<grave> <Acircumflex>     ", 0x1EA6) 
    1240 CheckCompUni("<grave> <asciicircum> <a> ", 0x1EA7) 
    1241 CheckCompUni("<grave> <dead_circumflex> <a>     ", 0x1EA7) 
    1242 CheckCompUni("<grave> <acircumflex>     ", 0x1EA7) 
    1243 CheckCompUni("<question> <asciicircum> <A>      ", 0x1EA8) 
    1244 CheckCompUni("<question> <dead_circumflex> <A>  ", 0x1EA8) 
    1245 CheckCompUni("<question> <Acircumflex>  ", 0x1EA8) 
    1246 CheckCompUni("<question> <asciicircum> <a>      ", 0x1EA9) 
    1247 CheckCompUni("<question> <dead_circumflex> <a>  ", 0x1EA9) 
    1248 CheckCompUni("<question> <acircumflex>  ", 0x1EA9) 
    1249 CheckCompUni("<asciitilde> <asciicircum> <A>    ", 0x1EAA) 
    1250 CheckCompUni("<asciitilde> <dead_circumflex> <A>        ", 0x1EAA) 
    1251 CheckCompUni("<asciitilde> <Acircumflex>        ", 0x1EAA) 
    1252 CheckCompUni("<asciitilde> <asciicircum> <a>    ", 0x1EAB) 
    1253 CheckCompUni("<asciitilde> <dead_circumflex> <a>        ", 0x1EAB) 
    1254 CheckCompUni("<asciitilde> <acircumflex>        ", 0x1EAB) 
    1255 CheckCompUni("<asciicircum> <combining_belowdot> <A>    ", 0x1EAC) 
    1256 CheckCompUni("<asciicircum> <exclam> <A>        ", 0x1EAC) 
    1257 CheckCompUni("<asciicircum> <dead_belowdot> <A> ", 0x1EAC) 
    1258 CheckCompUni("<asciicircum> <U1ea0>     ", 0x1EAC) 
    1259 CheckCompUni("<asciicircum> <combining_belowdot> <a>    ", 0x1EAD) 
    1260 CheckCompUni("<asciicircum> <exclam> <a>        ", 0x1EAD) 
    1261 CheckCompUni("<asciicircum> <dead_belowdot> <a> ", 0x1EAD) 
    1262 CheckCompUni("<asciicircum> <U1ea1>     ", 0x1EAD) 
    1263 CheckCompUni("<apostrophe> <b> <A>      ", 0x1EAE) 
    1264 CheckCompUni("<apostrophe> <U> <A>      ", 0x1EAE) 
    1265 CheckCompUni("<apostrophe> <dead_breve> <A>     ", 0x1EAE) 
    1266 CheckCompUni("<acute> <b> <A>   ", 0x1EAE) 
    1267 CheckCompUni("<acute> <U> <A>   ", 0x1EAE) 
    1268 CheckCompUni("<acute> <dead_breve> <A>  ", 0x1EAE) 
    1269 CheckCompUni("<apostrophe> <Abreve>     ", 0x1EAE) 
    1270 CheckCompUni("<acute> <Abreve>  ", 0x1EAE) 
    1271 CheckCompUni("<apostrophe> <b> <a>      ", 0x1EAF) 
    1272 CheckCompUni("<apostrophe> <U> <a>      ", 0x1EAF) 
    1273 CheckCompUni("<apostrophe> <dead_breve> <a>     ", 0x1EAF) 
    1274 CheckCompUni("<acute> <b> <a>   ", 0x1EAF) 
    1275 CheckCompUni("<acute> <U> <a>   ", 0x1EAF) 
    1276 CheckCompUni("<acute> <dead_breve> <a>  ", 0x1EAF) 
    1277 CheckCompUni("<apostrophe> <abreve>     ", 0x1EAF) 
    1278 CheckCompUni("<acute> <abreve>  ", 0x1EAF) 
    1279 CheckCompUni("<grave> <b> <A>   ", 0x1EB0) 
    1280 CheckCompUni("<grave> <U> <A>   ", 0x1EB0) 
    1281 CheckCompUni("<grave> <dead_breve> <A>  ", 0x1EB0) 
    1282 CheckCompUni("<grave> <Abreve>  ", 0x1EB0) 
    1283 CheckCompUni("<grave> <b> <a>   ", 0x1EB1) 
    1284 CheckCompUni("<grave> <U> <a>   ", 0x1EB1) 
    1285 CheckCompUni("<grave> <dead_breve> <a>  ", 0x1EB1) 
    1286 CheckCompUni("<grave> <abreve>  ", 0x1EB1) 
    1287 CheckCompUni("<question> <b> <A>        ", 0x1EB2) 
    1288 CheckCompUni("<question> <U> <A>        ", 0x1EB2) 
    1289 CheckCompUni("<question> <dead_breve> <A>       ", 0x1EB2) 
    1290 CheckCompUni("<question> <Abreve>       ", 0x1EB2) 
    1291 CheckCompUni("<question> <b> <a>        ", 0x1EB3) 
    1292 CheckCompUni("<question> <U> <a>        ", 0x1EB3) 
    1293 CheckCompUni("<question> <dead_breve> <a>       ", 0x1EB3) 
    1294 CheckCompUni("<question> <abreve>       ", 0x1EB3) 
    1295 CheckCompUni("<asciitilde> <b> <A>      ", 0x1EB4) 
    1296 CheckCompUni("<asciitilde> <U> <A>      ", 0x1EB4) 
    1297 CheckCompUni("<asciitilde> <dead_breve> <A>     ", 0x1EB4) 
    1298 CheckCompUni("<asciitilde> <Abreve>     ", 0x1EB4) 
    1299 CheckCompUni("<asciitilde> <b> <a>      ", 0x1EB5) 
    1300 CheckCompUni("<asciitilde> <U> <a>      ", 0x1EB5) 
    1301 CheckCompUni("<asciitilde> <dead_breve> <a>     ", 0x1EB5) 
    1302 CheckCompUni("<asciitilde> <abreve>     ", 0x1EB5) 
    1303 CheckCompUni("<b> <combining_belowdot> <A>      ", 0x1EB6) 
    1304 CheckCompUni("<U> <combining_belowdot> <A>      ", 0x1EB6) 
    1305 CheckCompUni("<b> <exclam> <A>  ", 0x1EB6) 
    1306 CheckCompUni("<b> <dead_belowdot> <A>   ", 0x1EB6) 
    1307 CheckCompUni("<U> <exclam> <A>  ", 0x1EB6) 
    1308 CheckCompUni("<U> <dead_belowdot> <A>   ", 0x1EB6) 
    1309 CheckCompUni("<b> <U1ea0>       ", 0x1EB6) 
    1310 CheckCompUni("<U> <U1ea0>       ", 0x1EB6) 
    1311 CheckCompUni("<b> <combining_belowdot> <a>      ", 0x1EB7) 
    1312 CheckCompUni("<U> <combining_belowdot> <a>      ", 0x1EB7) 
    1313 CheckCompUni("<b> <exclam> <a>  ", 0x1EB7) 
    1314 CheckCompUni("<b> <dead_belowdot> <a>   ", 0x1EB7) 
    1315 CheckCompUni("<U> <exclam> <a>  ", 0x1EB7) 
    1316 CheckCompUni("<U> <dead_belowdot> <a>   ", 0x1EB7) 
    1317 CheckCompUni("<b> <U1ea1>       ", 0x1EB7) 
    1318 CheckCompUni("<U> <U1ea1>       ", 0x1EB7) 
    1319 CheckCompUni("<exclam> <E>      ", 0x1EB8) 
    1320 CheckCompUni("<exclam> <e>      ", 0x1EB9) 
    1321 CheckCompUni("<question> <E>    ", 0x1EBA) 
    1322 CheckCompUni("<question> <e>    ", 0x1EBB) 
    1323 CheckCompUni("<asciitilde> <E>  ", 0x1EBC) 
    1324 CheckCompUni("<asciitilde> <e>  ", 0x1EBD) 
    1325 CheckCompUni("<apostrophe> <asciicircum> <E>    ", 0x1EBE) 
    1326 CheckCompUni("<apostrophe> <dead_circumflex> <E>        ", 0x1EBE) 
    1327 CheckCompUni("<acute> <asciicircum> <E> ", 0x1EBE) 
    1328 CheckCompUni("<acute> <dead_circumflex> <E>     ", 0x1EBE) 
    1329 CheckCompUni("<apostrophe> <Ecircumflex>        ", 0x1EBE) 
    1330 CheckCompUni("<acute> <Ecircumflex>     ", 0x1EBE) 
    1331 CheckCompUni("<apostrophe> <asciicircum> <e>    ", 0x1EBF) 
    1332 CheckCompUni("<apostrophe> <dead_circumflex> <e>        ", 0x1EBF) 
    1333 CheckCompUni("<acute> <asciicircum> <e> ", 0x1EBF) 
    1334 CheckCompUni("<acute> <dead_circumflex> <e>     ", 0x1EBF) 
    1335 CheckCompUni("<apostrophe> <ecircumflex>        ", 0x1EBF) 
    1336 CheckCompUni("<acute> <ecircumflex>     ", 0x1EBF) 
    1337 CheckCompUni("<grave> <asciicircum> <E> ", 0x1EC0) 
    1338 CheckCompUni("<grave> <dead_circumflex> <E>     ", 0x1EC0) 
    1339 CheckCompUni("<grave> <Ecircumflex>     ", 0x1EC0) 
    1340 CheckCompUni("<grave> <asciicircum> <e> ", 0x1EC1) 
    1341 CheckCompUni("<grave> <dead_circumflex> <e>     ", 0x1EC1) 
    1342 CheckCompUni("<grave> <ecircumflex>     ", 0x1EC1) 
    1343 CheckCompUni("<question> <asciicircum> <E>      ", 0x1EC2) 
    1344 CheckCompUni("<question> <dead_circumflex> <E>  ", 0x1EC2) 
    1345 CheckCompUni("<question> <Ecircumflex>  ", 0x1EC2) 
    1346 CheckCompUni("<question> <asciicircum> <e>      ", 0x1EC3) 
    1347 CheckCompUni("<question> <dead_circumflex> <e>  ", 0x1EC3) 
    1348 CheckCompUni("<question> <ecircumflex>  ", 0x1EC3) 
    1349 CheckCompUni("<asciitilde> <asciicircum> <E>    ", 0x1EC4) 
    1350 CheckCompUni("<asciitilde> <dead_circumflex> <E>        ", 0x1EC4) 
    1351 CheckCompUni("<asciitilde> <Ecircumflex>        ", 0x1EC4) 
    1352 CheckCompUni("<asciitilde> <asciicircum> <e>    ", 0x1EC5) 
    1353 CheckCompUni("<asciitilde> <dead_circumflex> <e>        ", 0x1EC5) 
    1354 CheckCompUni("<asciitilde> <ecircumflex>        ", 0x1EC5) 
    1355 CheckCompUni("<asciicircum> <combining_belowdot> <E>    ", 0x1EC6) 
    1356 CheckCompUni("<asciicircum> <exclam> <E>        ", 0x1EC6) 
    1357 CheckCompUni("<asciicircum> <dead_belowdot> <E> ", 0x1EC6) 
    1358 CheckCompUni("<asciicircum> <U1eb8>     ", 0x1EC6) 
    1359 CheckCompUni("<asciicircum> <combining_belowdot> <e>    ", 0x1EC7) 
    1360 CheckCompUni("<asciicircum> <exclam> <e>        ", 0x1EC7) 
    1361 CheckCompUni("<asciicircum> <dead_belowdot> <e> ", 0x1EC7) 
    1362 CheckCompUni("<asciicircum> <U1eb9>     ", 0x1EC7) 
    1363 CheckCompUni("<question> <I>    ", 0x1EC8) 
    1364 CheckCompUni("<question> <i>    ", 0x1EC9) 
    1365 CheckCompUni("<exclam> <I>      ", 0x1ECA) 
    1366 CheckCompUni("<exclam> <i>      ", 0x1ECB) 
    1367 CheckCompUni("<exclam> <O>      ", 0x1ECC) 
    1368 CheckCompUni("<exclam> <o>      ", 0x1ECD) 
    1369 CheckCompUni("<question> <O>    ", 0x1ECE) 
    1370 CheckCompUni("<question> <o>    ", 0x1ECF) 
    1371 CheckCompUni("<apostrophe> <asciicircum> <O>    ", 0x1ED0) 
    1372 CheckCompUni("<apostrophe> <dead_circumflex> <O>        ", 0x1ED0) 
    1373 CheckCompUni("<acute> <asciicircum> <O> ", 0x1ED0) 
    1374 CheckCompUni("<acute> <dead_circumflex> <O>     ", 0x1ED0) 
    1375 CheckCompUni("<apostrophe> <Ocircumflex>        ", 0x1ED0) 
    1376 CheckCompUni("<acute> <Ocircumflex>     ", 0x1ED0) 
    1377 CheckCompUni("<apostrophe> <asciicircum> <o>    ", 0x1ED1) 
    1378 CheckCompUni("<apostrophe> <dead_circumflex> <o>        ", 0x1ED1) 
    1379 CheckCompUni("<acute> <asciicircum> <o> ", 0x1ED1) 
    1380 CheckCompUni("<acute> <dead_circumflex> <o>     ", 0x1ED1) 
    1381 CheckCompUni("<apostrophe> <ocircumflex>        ", 0x1ED1) 
    1382 CheckCompUni("<acute> <ocircumflex>     ", 0x1ED1) 
    1383 CheckCompUni("<grave> <asciicircum> <O> ", 0x1ED2) 
    1384 CheckCompUni("<grave> <dead_circumflex> <O>     ", 0x1ED2) 
    1385 CheckCompUni("<grave> <Ocircumflex>     ", 0x1ED2) 
    1386 CheckCompUni("<grave> <asciicircum> <o> ", 0x1ED3) 
    1387 CheckCompUni("<grave> <dead_circumflex> <o>     ", 0x1ED3) 
    1388 CheckCompUni("<grave> <ocircumflex>     ", 0x1ED3) 
    1389 CheckCompUni("<question> <asciicircum> <O>      ", 0x1ED4) 
    1390 CheckCompUni("<question> <dead_circumflex> <O>  ", 0x1ED4) 
    1391 CheckCompUni("<question> <Ocircumflex>  ", 0x1ED4) 
    1392 CheckCompUni("<question> <asciicircum> <o>      ", 0x1ED5) 
    1393 CheckCompUni("<question> <dead_circumflex> <o>  ", 0x1ED5) 
    1394 CheckCompUni("<question> <ocircumflex>  ", 0x1ED5) 
    1395 CheckCompUni("<asciitilde> <asciicircum> <O>    ", 0x1ED6) 
    1396 CheckCompUni("<asciitilde> <dead_circumflex> <O>        ", 0x1ED6) 
    1397 CheckCompUni("<asciitilde> <Ocircumflex>        ", 0x1ED6) 
    1398 CheckCompUni("<asciitilde> <asciicircum> <o>    ", 0x1ED7) 
    1399 CheckCompUni("<asciitilde> <dead_circumflex> <o>        ", 0x1ED7) 
    1400 CheckCompUni("<asciitilde> <ocircumflex>        ", 0x1ED7) 
    1401 CheckCompUni("<asciicircum> <combining_belowdot> <O>    ", 0x1ED8) 
    1402 CheckCompUni("<asciicircum> <exclam> <O>        ", 0x1ED8) 
    1403 CheckCompUni("<asciicircum> <dead_belowdot> <O> ", 0x1ED8) 
    1404 CheckCompUni("<asciicircum> <U1ecc>     ", 0x1ED8) 
    1405 CheckCompUni("<asciicircum> <combining_belowdot> <o>    ", 0x1ED9) 
    1406 CheckCompUni("<asciicircum> <exclam> <o>        ", 0x1ED9) 
    1407 CheckCompUni("<asciicircum> <dead_belowdot> <o> ", 0x1ED9) 
    1408 CheckCompUni("<asciicircum> <U1ecd>     ", 0x1ED9) 
    1409 CheckCompUni("<apostrophe> <plus> <O>   ", 0x1EDA) 
    1410 CheckCompUni("<apostrophe> <dead_horn> <O>      ", 0x1EDA) 
    1411 CheckCompUni("<acute> <plus> <O>        ", 0x1EDA) 
    1412 CheckCompUni("<acute> <dead_horn> <O>   ", 0x1EDA) 
    1413 CheckCompUni("<apostrophe> <Ohorn>      ", 0x1EDA) 
    1414 CheckCompUni("<acute> <Ohorn>   ", 0x1EDA) 
    1415 CheckCompUni("<apostrophe> <plus> <o>   ", 0x1EDB) 
    1416 CheckCompUni("<apostrophe> <dead_horn> <o>      ", 0x1EDB) 
    1417 CheckCompUni("<acute> <plus> <o>        ", 0x1EDB) 
    1418 CheckCompUni("<acute> <dead_horn> <o>   ", 0x1EDB) 
    1419 CheckCompUni("<apostrophe> <ohorn>      ", 0x1EDB) 
    1420 CheckCompUni("<acute> <ohorn>   ", 0x1EDB) 
    1421 CheckCompUni("<grave> <plus> <O>        ", 0x1EDC) 
    1422 CheckCompUni("<grave> <dead_horn> <O>   ", 0x1EDC) 
    1423 CheckCompUni("<grave> <Ohorn>   ", 0x1EDC) 
    1424 CheckCompUni("<grave> <plus> <o>        ", 0x1EDD) 
    1425 CheckCompUni("<grave> <dead_horn> <o>   ", 0x1EDD) 
    1426 CheckCompUni("<grave> <ohorn>   ", 0x1EDD) 
    1427 CheckCompUni("<question> <plus> <O>     ", 0x1EDE) 
    1428 CheckCompUni("<question> <dead_horn> <O>        ", 0x1EDE) 
    1429 CheckCompUni("<question> <Ohorn>        ", 0x1EDE) 
    1430 CheckCompUni("<question> <plus> <o>     ", 0x1EDF) 
    1431 CheckCompUni("<question> <dead_horn> <o>        ", 0x1EDF) 
    1432 CheckCompUni("<question> <ohorn>        ", 0x1EDF) 
    1433 CheckCompUni("<asciitilde> <plus> <O>   ", 0x1EE0) 
    1434 CheckCompUni("<asciitilde> <dead_horn> <O>      ", 0x1EE0) 
    1435 CheckCompUni("<asciitilde> <Ohorn>      ", 0x1EE0) 
    1436 CheckCompUni("<asciitilde> <plus> <o>   ", 0x1EE1) 
    1437 CheckCompUni("<asciitilde> <dead_horn> <o>      ", 0x1EE1) 
    1438 CheckCompUni("<asciitilde> <ohorn>      ", 0x1EE1) 
    1439 CheckCompUni("<exclam> <plus> <O>       ", 0x1EE2) 
    1440 CheckCompUni("<exclam> <dead_horn> <O>  ", 0x1EE2) 
    1441 CheckCompUni("<exclam> <Ohorn>  ", 0x1EE2) 
    1442 CheckCompUni("<exclam> <plus> <o>       ", 0x1EE3) 
    1443 CheckCompUni("<exclam> <dead_horn> <o>  ", 0x1EE3) 
    1444 CheckCompUni("<exclam> <ohorn>  ", 0x1EE3) 
    1445 CheckCompUni("<exclam> <U>      ", 0x1EE4) 
    1446 CheckCompUni("<exclam> <u>      ", 0x1EE5) 
    1447 CheckCompUni("<question> <U>    ", 0x1EE6) 
    1448 CheckCompUni("<question> <u>    ", 0x1EE7) 
    1449 CheckCompUni("<apostrophe> <plus> <U>   ", 0x1EE8) 
    1450 CheckCompUni("<apostrophe> <dead_horn> <U>      ", 0x1EE8) 
    1451 CheckCompUni("<acute> <plus> <U>        ", 0x1EE8) 
    1452 CheckCompUni("<acute> <dead_horn> <U>   ", 0x1EE8) 
    1453 CheckCompUni("<apostrophe> <Uhorn>      ", 0x1EE8) 
    1454 CheckCompUni("<acute> <Uhorn>   ", 0x1EE8) 
    1455 CheckCompUni("<apostrophe> <plus> <u>   ", 0x1EE9) 
    1456 CheckCompUni("<apostrophe> <dead_horn> <u>      ", 0x1EE9) 
    1457 CheckCompUni("<acute> <plus> <u>        ", 0x1EE9) 
    1458 CheckCompUni("<acute> <dead_horn> <u>   ", 0x1EE9) 
    1459 CheckCompUni("<apostrophe> <uhorn>      ", 0x1EE9) 
    1460 CheckCompUni("<acute> <uhorn>   ", 0x1EE9) 
    1461 CheckCompUni("<grave> <plus> <U>        ", 0x1EEA) 
    1462 CheckCompUni("<grave> <dead_horn> <U>   ", 0x1EEA) 
    1463 CheckCompUni("<grave> <Uhorn>   ", 0x1EEA) 
    1464 CheckCompUni("<grave> <plus> <u>        ", 0x1EEB) 
    1465 CheckCompUni("<grave> <dead_horn> <u>   ", 0x1EEB) 
    1466 CheckCompUni("<grave> <uhorn>   ", 0x1EEB) 
    1467 CheckCompUni("<question> <plus> <U>     ", 0x1EEC) 
    1468 CheckCompUni("<question> <dead_horn> <U>        ", 0x1EEC) 
    1469 CheckCompUni("<question> <Uhorn>        ", 0x1EEC) 
    1470 CheckCompUni("<question> <plus> <u>     ", 0x1EED) 
    1471 CheckCompUni("<question> <dead_horn> <u>        ", 0x1EED) 
    1472 CheckCompUni("<question> <uhorn>        ", 0x1EED) 
    1473 CheckCompUni("<asciitilde> <plus> <U>   ", 0x1EEE) 
    1474 CheckCompUni("<asciitilde> <dead_horn> <U>      ", 0x1EEE) 
    1475 CheckCompUni("<asciitilde> <Uhorn>      ", 0x1EEE) 
    1476 CheckCompUni("<asciitilde> <plus> <u>   ", 0x1EEF) 
    1477 CheckCompUni("<asciitilde> <dead_horn> <u>      ", 0x1EEF) 
    1478 CheckCompUni("<asciitilde> <uhorn>      ", 0x1EEF) 
    1479 CheckCompUni("<exclam> <plus> <U>       ", 0x1EF0) 
    1480 CheckCompUni("<exclam> <dead_horn> <U>  ", 0x1EF0) 
    1481 CheckCompUni("<exclam> <Uhorn>  ", 0x1EF0) 
    1482 CheckCompUni("<exclam> <plus> <u>       ", 0x1EF1) 
    1483 CheckCompUni("<exclam> <dead_horn> <u>  ", 0x1EF1) 
    1484 CheckCompUni("<exclam> <uhorn>  ", 0x1EF1) 
    1485 CheckCompUni("<grave> <Y>       ", 0x1EF2) 
    1486 CheckCompUni("<grave> <y>       ", 0x1EF3) 
    1487 CheckCompUni("<exclam> <Y>      ", 0x1EF4) 
    1488 CheckCompUni("<exclam> <y>      ", 0x1EF5) 
    1489 CheckCompUni("<question> <Y>    ", 0x1EF6) 
    1490 CheckCompUni("<question> <y>    ", 0x1EF7) 
    1491 CheckCompUni("<asciitilde> <Y>  ", 0x1EF8) 
    1492 CheckCompUni("<asciitilde> <y>  ", 0x1EF9) 
    1493 CheckCompUni("<parenright> <Greek_alpha>        ", 0x1F00) 
    1494 CheckCompUni("<parenleft> <Greek_alpha> ", 0x1F01) 
    1495 CheckCompUni("<grave> <parenright> <Greek_alpha>        ", 0x1F02) 
    1496 CheckCompUni("<grave> <U0313> <Greek_alpha>     ", 0x1F02) 
    1497 CheckCompUni("<grave> <U1f00>   ", 0x1F02) 
    1498 CheckCompUni("<grave> <parenleft> <Greek_alpha> ", 0x1F03) 
    1499 CheckCompUni("<grave> <U0314> <Greek_alpha>     ", 0x1F03) 
    1500 CheckCompUni("<grave> <U1f01>   ", 0x1F03) 
    1501 CheckCompUni("<apostrophe> <parenright> <Greek_alpha>   ", 0x1F04) 
    1502 CheckCompUni("<apostrophe> <U0313> <Greek_alpha>        ", 0x1F04) 
    1503 CheckCompUni("<acute> <parenright> <Greek_alpha>        ", 0x1F04) 
    1504 CheckCompUni("<acute> <U0313> <Greek_alpha>     ", 0x1F04) 
    1505 CheckCompUni("<apostrophe> <U1f00>      ", 0x1F04) 
    1506 CheckCompUni("<acute> <U1f00>   ", 0x1F04) 
    1507 CheckCompUni("<apostrophe> <parenleft> <Greek_alpha>    ", 0x1F05) 
    1508 CheckCompUni("<apostrophe> <U0314> <Greek_alpha>        ", 0x1F05) 
    1509 CheckCompUni("<acute> <parenleft> <Greek_alpha> ", 0x1F05) 
    1510 CheckCompUni("<acute> <U0314> <Greek_alpha>     ", 0x1F05) 
    1511 CheckCompUni("<apostrophe> <U1f01>      ", 0x1F05) 
    1512 CheckCompUni("<acute> <U1f01>   ", 0x1F05) 
    1513 CheckCompUni("<asciitilde> <parenright> <Greek_alpha>   ", 0x1F06) 
    1514 CheckCompUni("<asciitilde> <U0313> <Greek_alpha>        ", 0x1F06) 
    1515 CheckCompUni("<asciitilde> <U1f00>      ", 0x1F06) 
    1516 CheckCompUni("<asciitilde> <parenleft> <Greek_alpha>    ", 0x1F07) 
    1517 CheckCompUni("<asciitilde> <U0314> <Greek_alpha>        ", 0x1F07) 
    1518 CheckCompUni("<asciitilde> <U1f01>      ", 0x1F07) 
    1519 CheckCompUni("<parenright> <Greek_ALPHA>        ", 0x1F08) 
    1520 CheckCompUni("<parenleft> <Greek_ALPHA> ", 0x1F09) 
    1521 CheckCompUni("<grave> <parenright> <Greek_ALPHA>        ", 0x1F0A) 
    1522 CheckCompUni("<grave> <U0313> <Greek_ALPHA>     ", 0x1F0A) 
    1523 CheckCompUni("<grave> <U1f08>   ", 0x1F0A) 
    1524 CheckCompUni("<grave> <parenleft> <Greek_ALPHA> ", 0x1F0B) 
    1525 CheckCompUni("<grave> <U0314> <Greek_ALPHA>     ", 0x1F0B) 
    1526 CheckCompUni("<grave> <U1f09>   ", 0x1F0B) 
    1527 CheckCompUni("<apostrophe> <parenright> <Greek_ALPHA>   ", 0x1F0C) 
    1528 CheckCompUni("<apostrophe> <U0313> <Greek_ALPHA>        ", 0x1F0C) 
    1529 CheckCompUni("<acute> <parenright> <Greek_ALPHA>        ", 0x1F0C) 
    1530 CheckCompUni("<acute> <U0313> <Greek_ALPHA>     ", 0x1F0C) 
    1531 CheckCompUni("<apostrophe> <U1f08>      ", 0x1F0C) 
    1532 CheckCompUni("<acute> <U1f08>   ", 0x1F0C) 
    1533 CheckCompUni("<apostrophe> <parenleft> <Greek_ALPHA>    ", 0x1F0D) 
    1534 CheckCompUni("<apostrophe> <U0314> <Greek_ALPHA>        ", 0x1F0D) 
    1535 CheckCompUni("<acute> <parenleft> <Greek_ALPHA> ", 0x1F0D) 
    1536 CheckCompUni("<acute> <U0314> <Greek_ALPHA>     ", 0x1F0D) 
    1537 CheckCompUni("<apostrophe> <U1f09>      ", 0x1F0D) 
    1538 CheckCompUni("<acute> <U1f09>   ", 0x1F0D) 
    1539 CheckCompUni("<asciitilde> <parenright> <Greek_ALPHA>   ", 0x1F0E) 
    1540 CheckCompUni("<asciitilde> <U0313> <Greek_ALPHA>        ", 0x1F0E) 
    1541 CheckCompUni("<asciitilde> <U1f08>      ", 0x1F0E) 
    1542 CheckCompUni("<asciitilde> <parenleft> <Greek_ALPHA>    ", 0x1F0F) 
    1543 CheckCompUni("<asciitilde> <U0314> <Greek_ALPHA>        ", 0x1F0F) 
    1544 CheckCompUni("<asciitilde> <U1f09>      ", 0x1F0F) 
    1545 CheckCompUni("<parenright> <Greek_epsilon>      ", 0x1F10) 
    1546 CheckCompUni("<parenleft> <Greek_epsilon>       ", 0x1F11) 
    1547 CheckCompUni("<grave> <parenright> <Greek_epsilon>      ", 0x1F12) 
    1548 CheckCompUni("<grave> <U0313> <Greek_epsilon>   ", 0x1F12) 
    1549 CheckCompUni("<grave> <U1f10>   ", 0x1F12) 
    1550 CheckCompUni("<grave> <parenleft> <Greek_epsilon>       ", 0x1F13) 
    1551 CheckCompUni("<grave> <U0314> <Greek_epsilon>   ", 0x1F13) 
    1552 CheckCompUni("<grave> <U1f11>   ", 0x1F13) 
    1553 CheckCompUni("<apostrophe> <parenright> <Greek_epsilon> ", 0x1F14) 
    1554 CheckCompUni("<apostrophe> <U0313> <Greek_epsilon>      ", 0x1F14) 
    1555 CheckCompUni("<acute> <parenright> <Greek_epsilon>      ", 0x1F14) 
    1556 CheckCompUni("<acute> <U0313> <Greek_epsilon>   ", 0x1F14) 
    1557 CheckCompUni("<apostrophe> <U1f10>      ", 0x1F14) 
    1558 CheckCompUni("<acute> <U1f10>   ", 0x1F14) 
    1559 CheckCompUni("<apostrophe> <parenleft> <Greek_epsilon>  ", 0x1F15) 
    1560 CheckCompUni("<apostrophe> <U0314> <Greek_epsilon>      ", 0x1F15) 
    1561 CheckCompUni("<acute> <parenleft> <Greek_epsilon>       ", 0x1F15) 
    1562 CheckCompUni("<acute> <U0314> <Greek_epsilon>   ", 0x1F15) 
    1563 CheckCompUni("<apostrophe> <U1f11>      ", 0x1F15) 
    1564 CheckCompUni("<acute> <U1f11>   ", 0x1F15) 
    1565 CheckCompUni("<parenright> <Greek_EPSILON>      ", 0x1F18) 
    1566 CheckCompUni("<parenleft> <Greek_EPSILON>       ", 0x1F19) 
    1567 CheckCompUni("<grave> <parenright> <Greek_EPSILON>      ", 0x1F1A) 
    1568 CheckCompUni("<grave> <U0313> <Greek_EPSILON>   ", 0x1F1A) 
    1569 CheckCompUni("<grave> <U1f18>   ", 0x1F1A) 
    1570 CheckCompUni("<grave> <parenleft> <Greek_EPSILON>       ", 0x1F1B) 
    1571 CheckCompUni("<grave> <U0314> <Greek_EPSILON>   ", 0x1F1B) 
    1572 CheckCompUni("<grave> <U1f19>   ", 0x1F1B) 
    1573 CheckCompUni("<apostrophe> <parenright> <Greek_EPSILON> ", 0x1F1C) 
    1574 CheckCompUni("<apostrophe> <U0313> <Greek_EPSILON>      ", 0x1F1C) 
    1575 CheckCompUni("<acute> <parenright> <Greek_EPSILON>      ", 0x1F1C) 
    1576 CheckCompUni("<acute> <U0313> <Greek_EPSILON>   ", 0x1F1C) 
    1577 CheckCompUni("<apostrophe> <U1f18>      ", 0x1F1C) 
    1578 CheckCompUni("<acute> <U1f18>   ", 0x1F1C) 
    1579 CheckCompUni("<apostrophe> <parenleft> <Greek_EPSILON>  ", 0x1F1D) 
    1580 CheckCompUni("<apostrophe> <U0314> <Greek_EPSILON>      ", 0x1F1D) 
    1581 CheckCompUni("<acute> <parenleft> <Greek_EPSILON>       ", 0x1F1D) 
    1582 CheckCompUni("<acute> <U0314> <Greek_EPSILON>   ", 0x1F1D) 
    1583 CheckCompUni("<apostrophe> <U1f19>      ", 0x1F1D) 
    1584 CheckCompUni("<acute> <U1f19>   ", 0x1F1D) 
    1585 CheckCompUni("<parenright> <Greek_eta>  ", 0x1F20) 
    1586 CheckCompUni("<parenleft> <Greek_eta>   ", 0x1F21) 
    1587 CheckCompUni("<grave> <parenright> <Greek_eta>  ", 0x1F22) 
    1588 CheckCompUni("<grave> <U0313> <Greek_eta>       ", 0x1F22) 
    1589 CheckCompUni("<grave> <U1f20>   ", 0x1F22) 
    1590 CheckCompUni("<grave> <parenleft> <Greek_eta>   ", 0x1F23) 
    1591 CheckCompUni("<grave> <U0314> <Greek_eta>       ", 0x1F23) 
    1592 CheckCompUni("<grave> <U1f21>   ", 0x1F23) 
    1593 CheckCompUni("<apostrophe> <parenright> <Greek_eta>     ", 0x1F24) 
    1594 CheckCompUni("<apostrophe> <U0313> <Greek_eta>  ", 0x1F24) 
    1595 CheckCompUni("<acute> <parenright> <Greek_eta>  ", 0x1F24) 
    1596 CheckCompUni("<acute> <U0313> <Greek_eta>       ", 0x1F24) 
    1597 CheckCompUni("<apostrophe> <U1f20>      ", 0x1F24) 
    1598 CheckCompUni("<acute> <U1f20>   ", 0x1F24) 
    1599 CheckCompUni("<apostrophe> <parenleft> <Greek_eta>      ", 0x1F25) 
    1600 CheckCompUni("<apostrophe> <U0314> <Greek_eta>  ", 0x1F25) 
    1601 CheckCompUni("<acute> <parenleft> <Greek_eta>   ", 0x1F25) 
    1602 CheckCompUni("<acute> <U0314> <Greek_eta>       ", 0x1F25) 
    1603 CheckCompUni("<apostrophe> <U1f21>      ", 0x1F25) 
    1604 CheckCompUni("<acute> <U1f21>   ", 0x1F25) 
    1605 CheckCompUni("<asciitilde> <parenright> <Greek_eta>     ", 0x1F26) 
    1606 CheckCompUni("<asciitilde> <U0313> <Greek_eta>  ", 0x1F26) 
    1607 CheckCompUni("<asciitilde> <U1f20>      ", 0x1F26) 
    1608 CheckCompUni("<asciitilde> <parenleft> <Greek_eta>      ", 0x1F27) 
    1609 CheckCompUni("<asciitilde> <U0314> <Greek_eta>  ", 0x1F27) 
    1610 CheckCompUni("<asciitilde> <U1f21>      ", 0x1F27) 
    1611 CheckCompUni("<parenright> <Greek_ETA>  ", 0x1F28) 
    1612 CheckCompUni("<parenleft> <Greek_ETA>   ", 0x1F29) 
    1613 CheckCompUni("<grave> <parenright> <Greek_ETA>  ", 0x1F2A) 
    1614 CheckCompUni("<grave> <U0313> <Greek_ETA>       ", 0x1F2A) 
    1615 CheckCompUni("<grave> <U1f28>   ", 0x1F2A) 
    1616 CheckCompUni("<grave> <parenleft> <Greek_ETA>   ", 0x1F2B) 
    1617 CheckCompUni("<grave> <U0314> <Greek_ETA>       ", 0x1F2B) 
    1618 CheckCompUni("<grave> <U1f29>   ", 0x1F2B) 
    1619 CheckCompUni("<apostrophe> <parenright> <Greek_ETA>     ", 0x1F2C) 
    1620 CheckCompUni("<apostrophe> <U0313> <Greek_ETA>  ", 0x1F2C) 
    1621 CheckCompUni("<acute> <parenright> <Greek_ETA>  ", 0x1F2C) 
    1622 CheckCompUni("<acute> <U0313> <Greek_ETA>       ", 0x1F2C) 
    1623 CheckCompUni("<apostrophe> <U1f28>      ", 0x1F2C) 
    1624 CheckCompUni("<acute> <U1f28>   ", 0x1F2C) 
    1625 CheckCompUni("<apostrophe> <parenleft> <Greek_ETA>      ", 0x1F2D) 
    1626 CheckCompUni("<apostrophe> <U0314> <Greek_ETA>  ", 0x1F2D) 
    1627 CheckCompUni("<acute> <parenleft> <Greek_ETA>   ", 0x1F2D) 
    1628 CheckCompUni("<acute> <U0314> <Greek_ETA>       ", 0x1F2D) 
    1629 CheckCompUni("<apostrophe> <U1f29>      ", 0x1F2D) 
    1630 CheckCompUni("<acute> <U1f29>   ", 0x1F2D) 
    1631 CheckCompUni("<asciitilde> <parenright> <Greek_ETA>     ", 0x1F2E) 
    1632 CheckCompUni("<asciitilde> <U0313> <Greek_ETA>  ", 0x1F2E) 
    1633 CheckCompUni("<asciitilde> <U1f28>      ", 0x1F2E) 
    1634 CheckCompUni("<asciitilde> <parenleft> <Greek_ETA>      ", 0x1F2F) 
    1635 CheckCompUni("<asciitilde> <U0314> <Greek_ETA>  ", 0x1F2F) 
    1636 CheckCompUni("<asciitilde> <U1f29>      ", 0x1F2F) 
    1637 CheckCompUni("<parenright> <Greek_iota> ", 0x1F30) 
    1638 CheckCompUni("<parenleft> <Greek_iota>  ", 0x1F31) 
    1639 CheckCompUni("<grave> <parenright> <Greek_iota> ", 0x1F32) 
    1640 CheckCompUni("<grave> <U0313> <Greek_iota>      ", 0x1F32) 
    1641 CheckCompUni("<grave> <U1f30>   ", 0x1F32) 
    1642 CheckCompUni("<grave> <parenleft> <Greek_iota>  ", 0x1F33) 
    1643 CheckCompUni("<grave> <U0314> <Greek_iota>      ", 0x1F33) 
    1644 CheckCompUni("<grave> <U1f31>   ", 0x1F33) 
    1645 CheckCompUni("<apostrophe> <parenright> <Greek_iota>    ", 0x1F34) 
    1646 CheckCompUni("<apostrophe> <U0313> <Greek_iota> ", 0x1F34) 
    1647 CheckCompUni("<acute> <parenright> <Greek_iota> ", 0x1F34) 
    1648 CheckCompUni("<acute> <U0313> <Greek_iota>      ", 0x1F34) 
    1649 CheckCompUni("<apostrophe> <U1f30>      ", 0x1F34) 
    1650 CheckCompUni("<acute> <U1f30>   ", 0x1F34) 
    1651 CheckCompUni("<apostrophe> <parenleft> <Greek_iota>     ", 0x1F35) 
    1652 CheckCompUni("<apostrophe> <U0314> <Greek_iota> ", 0x1F35) 
    1653 CheckCompUni("<acute> <parenleft> <Greek_iota>  ", 0x1F35) 
    1654 CheckCompUni("<acute> <U0314> <Greek_iota>      ", 0x1F35) 
    1655 CheckCompUni("<apostrophe> <U1f31>      ", 0x1F35) 
    1656 CheckCompUni("<acute> <U1f31>   ", 0x1F35) 
    1657 CheckCompUni("<asciitilde> <parenright> <Greek_iota>    ", 0x1F36) 
    1658 CheckCompUni("<asciitilde> <U0313> <Greek_iota> ", 0x1F36) 
    1659 CheckCompUni("<asciitilde> <U1f30>      ", 0x1F36) 
    1660 CheckCompUni("<asciitilde> <parenleft> <Greek_iota>     ", 0x1F37) 
    1661 CheckCompUni("<asciitilde> <U0314> <Greek_iota> ", 0x1F37) 
    1662 CheckCompUni("<asciitilde> <U1f31>      ", 0x1F37) 
    1663 CheckCompUni("<parenright> <Greek_IOTA> ", 0x1F38) 
    1664 CheckCompUni("<parenleft> <Greek_IOTA>  ", 0x1F39) 
    1665 CheckCompUni("<grave> <parenright> <Greek_IOTA> ", 0x1F3A) 
    1666 CheckCompUni("<grave> <U0313> <Greek_IOTA>      ", 0x1F3A) 
    1667 CheckCompUni("<grave> <U1f38>   ", 0x1F3A) 
    1668 CheckCompUni("<grave> <parenleft> <Greek_IOTA>  ", 0x1F3B) 
    1669 CheckCompUni("<grave> <U0314> <Greek_IOTA>      ", 0x1F3B) 
    1670 CheckCompUni("<grave> <U1f39>   ", 0x1F3B) 
    1671 CheckCompUni("<apostrophe> <parenright> <Greek_IOTA>    ", 0x1F3C) 
    1672 CheckCompUni("<apostrophe> <U0313> <Greek_IOTA> ", 0x1F3C) 
    1673 CheckCompUni("<acute> <parenright> <Greek_IOTA> ", 0x1F3C) 
    1674 CheckCompUni("<acute> <U0313> <Greek_IOTA>      ", 0x1F3C) 
    1675 CheckCompUni("<apostrophe> <U1f38>      ", 0x1F3C) 
    1676 CheckCompUni("<acute> <U1f38>   ", 0x1F3C) 
    1677 CheckCompUni("<apostrophe> <parenleft> <Greek_IOTA>     ", 0x1F3D) 
    1678 CheckCompUni("<apostrophe> <U0314> <Greek_IOTA> ", 0x1F3D) 
    1679 CheckCompUni("<acute> <parenleft> <Greek_IOTA>  ", 0x1F3D) 
    1680 CheckCompUni("<acute> <U0314> <Greek_IOTA>      ", 0x1F3D) 
    1681 CheckCompUni("<apostrophe> <U1f39>      ", 0x1F3D) 
    1682 CheckCompUni("<acute> <U1f39>   ", 0x1F3D) 
    1683 CheckCompUni("<asciitilde> <parenright> <Greek_IOTA>    ", 0x1F3E) 
    1684 CheckCompUni("<asciitilde> <U0313> <Greek_IOTA> ", 0x1F3E) 
    1685 CheckCompUni("<asciitilde> <U1f38>      ", 0x1F3E) 
    1686 CheckCompUni("<asciitilde> <parenleft> <Greek_IOTA>     ", 0x1F3F) 
    1687 CheckCompUni("<asciitilde> <U0314> <Greek_IOTA> ", 0x1F3F) 
    1688 CheckCompUni("<asciitilde> <U1f39>      ", 0x1F3F) 
    1689 CheckCompUni("<parenright> <Greek_omicron>      ", 0x1F40) 
    1690 CheckCompUni("<parenleft> <Greek_omicron>       ", 0x1F41) 
    1691 CheckCompUni("<grave> <parenright> <Greek_omicron>      ", 0x1F42) 
    1692 CheckCompUni("<grave> <U0313> <Greek_omicron>   ", 0x1F42) 
    1693 CheckCompUni("<grave> <U1f40>   ", 0x1F42) 
    1694 CheckCompUni("<grave> <parenleft> <Greek_omicron>       ", 0x1F43) 
    1695 CheckCompUni("<grave> <U0314> <Greek_omicron>   ", 0x1F43) 
    1696 CheckCompUni("<grave> <U1f41>   ", 0x1F43) 
    1697 CheckCompUni("<apostrophe> <parenright> <Greek_omicron> ", 0x1F44) 
    1698 CheckCompUni("<apostrophe> <U0313> <Greek_omicron>      ", 0x1F44) 
    1699 CheckCompUni("<acute> <parenright> <Greek_omicron>      ", 0x1F44) 
    1700 CheckCompUni("<acute> <U0313> <Greek_omicron>   ", 0x1F44) 
    1701 CheckCompUni("<apostrophe> <U1f40>      ", 0x1F44) 
    1702 CheckCompUni("<acute> <U1f40>   ", 0x1F44) 
    1703 CheckCompUni("<apostrophe> <parenleft> <Greek_omicron>  ", 0x1F45) 
    1704 CheckCompUni("<apostrophe> <U0314> <Greek_omicron>      ", 0x1F45) 
    1705 CheckCompUni("<acute> <parenleft> <Greek_omicron>       ", 0x1F45) 
    1706 CheckCompUni("<acute> <U0314> <Greek_omicron>   ", 0x1F45) 
    1707 CheckCompUni("<apostrophe> <U1f41>      ", 0x1F45) 
    1708 CheckCompUni("<acute> <U1f41>   ", 0x1F45) 
    1709 CheckCompUni("<parenright> <Greek_OMICRON>      ", 0x1F48) 
    1710 CheckCompUni("<parenleft> <Greek_OMICRON>       ", 0x1F49) 
    1711 CheckCompUni("<grave> <parenright> <Greek_OMICRON>      ", 0x1F4A) 
    1712 CheckCompUni("<grave> <U0313> <Greek_OMICRON>   ", 0x1F4A) 
    1713 CheckCompUni("<grave> <U1f48>   ", 0x1F4A) 
    1714 CheckCompUni("<grave> <parenleft> <Greek_OMICRON>       ", 0x1F4B) 
    1715 CheckCompUni("<grave> <U0314> <Greek_OMICRON>   ", 0x1F4B) 
    1716 CheckCompUni("<grave> <U1f49>   ", 0x1F4B) 
    1717 CheckCompUni("<apostrophe> <parenright> <Greek_OMICRON> ", 0x1F4C) 
    1718 CheckCompUni("<apostrophe> <U0313> <Greek_OMICRON>      ", 0x1F4C) 
    1719 CheckCompUni("<acute> <parenright> <Greek_OMICRON>      ", 0x1F4C) 
    1720 CheckCompUni("<acute> <U0313> <Greek_OMICRON>   ", 0x1F4C) 
    1721 CheckCompUni("<apostrophe> <U1f48>      ", 0x1F4C) 
    1722 CheckCompUni("<acute> <U1f48>   ", 0x1F4C) 
    1723 CheckCompUni("<apostrophe> <parenleft> <Greek_OMICRON>  ", 0x1F4D) 
    1724 CheckCompUni("<apostrophe> <U0314> <Greek_OMICRON>      ", 0x1F4D) 
    1725 CheckCompUni("<acute> <parenleft> <Greek_OMICRON>       ", 0x1F4D) 
    1726 CheckCompUni("<acute> <U0314> <Greek_OMICRON>   ", 0x1F4D) 
    1727 CheckCompUni("<apostrophe> <U1f49>      ", 0x1F4D) 
    1728 CheckCompUni("<acute> <U1f49>   ", 0x1F4D) 
    1729 CheckCompUni("<parenright> <Greek_upsilon>      ", 0x1F50) 
    1730 CheckCompUni("<parenleft> <Greek_upsilon>       ", 0x1F51) 
    1731 CheckCompUni("<grave> <parenright> <Greek_upsilon>      ", 0x1F52) 
    1732 CheckCompUni("<grave> <U0313> <Greek_upsilon>   ", 0x1F52) 
    1733 CheckCompUni("<grave> <U1f50>   ", 0x1F52) 
    1734 CheckCompUni("<grave> <parenleft> <Greek_upsilon>       ", 0x1F53) 
    1735 CheckCompUni("<grave> <U0314> <Greek_upsilon>   ", 0x1F53) 
    1736 CheckCompUni("<grave> <U1f51>   ", 0x1F53) 
    1737 CheckCompUni("<apostrophe> <parenright> <Greek_upsilon> ", 0x1F54) 
    1738 CheckCompUni("<apostrophe> <U0313> <Greek_upsilon>      ", 0x1F54) 
    1739 CheckCompUni("<acute> <parenright> <Greek_upsilon>      ", 0x1F54) 
    1740 CheckCompUni("<acute> <U0313> <Greek_upsilon>   ", 0x1F54) 
    1741 CheckCompUni("<apostrophe> <U1f50>      ", 0x1F54) 
    1742 CheckCompUni("<acute> <U1f50>   ", 0x1F54) 
    1743 CheckCompUni("<apostrophe> <parenleft> <Greek_upsilon>  ", 0x1F55) 
    1744 CheckCompUni("<apostrophe> <U0314> <Greek_upsilon>      ", 0x1F55) 
    1745 CheckCompUni("<acute> <parenleft> <Greek_upsilon>       ", 0x1F55) 
    1746 CheckCompUni("<acute> <U0314> <Greek_upsilon>   ", 0x1F55) 
    1747 CheckCompUni("<apostrophe> <U1f51>      ", 0x1F55) 
    1748 CheckCompUni("<acute> <U1f51>   ", 0x1F55) 
    1749 CheckCompUni("<asciitilde> <parenright> <Greek_upsilon> ", 0x1F56) 
    1750 CheckCompUni("<asciitilde> <U0313> <Greek_upsilon>      ", 0x1F56) 
    1751 CheckCompUni("<asciitilde> <U1f50>      ", 0x1F56) 
    1752 CheckCompUni("<asciitilde> <parenleft> <Greek_upsilon>  ", 0x1F57) 
    1753 CheckCompUni("<asciitilde> <U0314> <Greek_upsilon>      ", 0x1F57) 
    1754 CheckCompUni("<asciitilde> <U1f51>      ", 0x1F57) 
    1755 CheckCompUni("<parenleft> <Greek_UPSILON>       ", 0x1F59) 
    1756 CheckCompUni("<grave> <parenleft> <Greek_UPSILON>       ", 0x1F5B) 
    1757 CheckCompUni("<grave> <U0314> <Greek_UPSILON>   ", 0x1F5B) 
    1758 CheckCompUni("<grave> <U1f59>   ", 0x1F5B) 
    1759 CheckCompUni("<apostrophe> <parenleft> <Greek_UPSILON>  ", 0x1F5D) 
    1760 CheckCompUni("<apostrophe> <U0314> <Greek_UPSILON>      ", 0x1F5D) 
    1761 CheckCompUni("<acute> <parenleft> <Greek_UPSILON>       ", 0x1F5D) 
    1762 CheckCompUni("<acute> <U0314> <Greek_UPSILON>   ", 0x1F5D) 
    1763 CheckCompUni("<apostrophe> <U1f59>      ", 0x1F5D) 
    1764 CheckCompUni("<acute> <U1f59>   ", 0x1F5D) 
    1765 CheckCompUni("<asciitilde> <parenleft> <Greek_UPSILON>  ", 0x1F5F) 
    1766 CheckCompUni("<asciitilde> <U0314> <Greek_UPSILON>      ", 0x1F5F) 
    1767 CheckCompUni("<asciitilde> <U1f59>      ", 0x1F5F) 
    1768 CheckCompUni("<parenright> <Greek_omega>        ", 0x1F60) 
    1769 CheckCompUni("<parenleft> <Greek_omega> ", 0x1F61) 
    1770 CheckCompUni("<grave> <parenright> <Greek_omega>        ", 0x1F62) 
    1771 CheckCompUni("<grave> <U0313> <Greek_omega>     ", 0x1F62) 
    1772 CheckCompUni("<grave> <U1f60>   ", 0x1F62) 
    1773 CheckCompUni("<grave> <parenleft> <Greek_omega> ", 0x1F63) 
    1774 CheckCompUni("<grave> <U0314> <Greek_omega>     ", 0x1F63) 
    1775 CheckCompUni("<grave> <U1f61>   ", 0x1F63) 
    1776 CheckCompUni("<apostrophe> <parenright> <Greek_omega>   ", 0x1F64) 
    1777 CheckCompUni("<apostrophe> <U0313> <Greek_omega>        ", 0x1F64) 
    1778 CheckCompUni("<acute> <parenright> <Greek_omega>        ", 0x1F64) 
    1779 CheckCompUni("<acute> <U0313> <Greek_omega>     ", 0x1F64) 
    1780 CheckCompUni("<apostrophe> <U1f60>      ", 0x1F64) 
    1781 CheckCompUni("<acute> <U1f60>   ", 0x1F64) 
    1782 CheckCompUni("<apostrophe> <parenleft> <Greek_omega>    ", 0x1F65) 
    1783 CheckCompUni("<apostrophe> <U0314> <Greek_omega>        ", 0x1F65) 
    1784 CheckCompUni("<acute> <parenleft> <Greek_omega> ", 0x1F65) 
    1785 CheckCompUni("<acute> <U0314> <Greek_omega>     ", 0x1F65) 
    1786 CheckCompUni("<apostrophe> <U1f61>      ", 0x1F65) 
    1787 CheckCompUni("<acute> <U1f61>   ", 0x1F65) 
    1788 CheckCompUni("<asciitilde> <parenright> <Greek_omega>   ", 0x1F66) 
    1789 CheckCompUni("<asciitilde> <U0313> <Greek_omega>        ", 0x1F66) 
    1790 CheckCompUni("<asciitilde> <U1f60>      ", 0x1F66) 
    1791 CheckCompUni("<asciitilde> <parenleft> <Greek_omega>    ", 0x1F67) 
    1792 CheckCompUni("<asciitilde> <U0314> <Greek_omega>        ", 0x1F67) 
    1793 CheckCompUni("<asciitilde> <U1f61>      ", 0x1F67) 
    1794 CheckCompUni("<parenright> <Greek_OMEGA>        ", 0x1F68) 
    1795 CheckCompUni("<parenleft> <Greek_OMEGA> ", 0x1F69) 
    1796 CheckCompUni("<grave> <parenright> <Greek_OMEGA>        ", 0x1F6A) 
    1797 CheckCompUni("<grave> <U0313> <Greek_OMEGA>     ", 0x1F6A) 
    1798 CheckCompUni("<grave> <U1f68>   ", 0x1F6A) 
    1799 CheckCompUni("<grave> <parenleft> <Greek_OMEGA> ", 0x1F6B) 
    1800 CheckCompUni("<grave> <U0314> <Greek_OMEGA>     ", 0x1F6B) 
    1801 CheckCompUni("<grave> <U1f69>   ", 0x1F6B) 
    1802 CheckCompUni("<apostrophe> <parenright> <Greek_OMEGA>   ", 0x1F6C) 
    1803 CheckCompUni("<apostrophe> <U0313> <Greek_OMEGA>        ", 0x1F6C) 
    1804 CheckCompUni("<acute> <parenright> <Greek_OMEGA>        ", 0x1F6C) 
    1805 CheckCompUni("<acute> <U0313> <Greek_OMEGA>     ", 0x1F6C) 
    1806 CheckCompUni("<apostrophe> <U1f68>      ", 0x1F6C) 
    1807 CheckCompUni("<acute> <U1f68>   ", 0x1F6C) 
    1808 CheckCompUni("<apostrophe> <parenleft> <Greek_OMEGA>    ", 0x1F6D) 
    1809 CheckCompUni("<apostrophe> <U0314> <Greek_OMEGA>        ", 0x1F6D) 
    1810 CheckCompUni("<acute> <parenleft> <Greek_OMEGA> ", 0x1F6D) 
    1811 CheckCompUni("<acute> <U0314> <Greek_OMEGA>     ", 0x1F6D) 
    1812 CheckCompUni("<apostrophe> <U1f69>      ", 0x1F6D) 
    1813 CheckCompUni("<acute> <U1f69>   ", 0x1F6D) 
    1814 CheckCompUni("<asciitilde> <parenright> <Greek_OMEGA>   ", 0x1F6E) 
    1815 CheckCompUni("<asciitilde> <U0313> <Greek_OMEGA>        ", 0x1F6E) 
    1816 CheckCompUni("<asciitilde> <U1f68>      ", 0x1F6E) 
    1817 CheckCompUni("<asciitilde> <parenleft> <Greek_OMEGA>    ", 0x1F6F) 
    1818 CheckCompUni("<asciitilde> <U0314> <Greek_OMEGA>        ", 0x1F6F) 
    1819 CheckCompUni("<asciitilde> <U1f69>      ", 0x1F6F) 
    1820 CheckCompUni("<grave> <Greek_alpha>     ", 0x1F70) 
    1821 CheckCompUni("<grave> <Greek_epsilon>   ", 0x1F72) 
    1822 CheckCompUni("<grave> <Greek_eta>       ", 0x1F74) 
    1823 CheckCompUni("<grave> <Greek_iota>      ", 0x1F76) 
    1824 CheckCompUni("<grave> <Greek_omicron>   ", 0x1F78) 
    1825 CheckCompUni("<grave> <Greek_upsilon>   ", 0x1F7A) 
    1826 CheckCompUni("<grave> <Greek_omega>     ", 0x1F7C) 
    1827 CheckCompUni("<Greek_iota> <parenright> <Greek_alpha>   ", 0x1F80) 
    1828 CheckCompUni("<Greek_iota> <U0313> <Greek_alpha>        ", 0x1F80) 
    1829 CheckCompUni("<Greek_iota> <U1f00>      ", 0x1F80) 
    1830 CheckCompUni("<Greek_iota> <parenleft> <Greek_alpha>    ", 0x1F81) 
    1831 CheckCompUni("<Greek_iota> <U0314> <Greek_alpha>        ", 0x1F81) 
    1832 CheckCompUni("<Greek_iota> <U1f01>      ", 0x1F81) 
    1833 CheckCompUni("<Greek_iota> <combining_grave> <parenright> <Greek_alpha> ", 0x1F82) 
    1834 CheckCompUni("<Greek_iota> <combining_grave> <U0313> <Greek_alpha>      ", 0x1F82) 
    1835 CheckCompUni("<Greek_iota> <combining_grave> <U1f00>    ", 0x1F82) 
    1836 CheckCompUni("<Greek_iota> <grave> <parenright> <Greek_alpha>   ", 0x1F82) 
    1837 CheckCompUni("<Greek_iota> <grave> <U0313> <Greek_alpha>        ", 0x1F82) 
    1838 CheckCompUni("<Greek_iota> <dead_grave> <parenright> <Greek_alpha>      ", 0x1F82) 
    1839 CheckCompUni("<Greek_iota> <dead_grave> <U0313> <Greek_alpha>   ", 0x1F82) 
    1840 CheckCompUni("<Greek_iota> <grave> <U1f00>      ", 0x1F82) 
    1841 CheckCompUni("<Greek_iota> <dead_grave> <U1f00> ", 0x1F82) 
    1842 CheckCompUni("<Greek_iota> <U1f02>      ", 0x1F82) 
    1843 CheckCompUni("<Greek_iota> <combining_grave> <parenleft> <Greek_alpha>  ", 0x1F83) 
    1844 CheckCompUni("<Greek_iota> <combining_grave> <U0314> <Greek_alpha>      ", 0x1F83) 
    1845 CheckCompUni("<Greek_iota> <combining_grave> <U1f01>    ", 0x1F83) 
    1846 CheckCompUni("<Greek_iota> <grave> <parenleft> <Greek_alpha>    ", 0x1F83) 
    1847 CheckCompUni("<Greek_iota> <grave> <U0314> <Greek_alpha>        ", 0x1F83) 
    1848 CheckCompUni("<Greek_iota> <dead_grave> <parenleft> <Greek_alpha>       ", 0x1F83) 
    1849 CheckCompUni("<Greek_iota> <dead_grave> <U0314> <Greek_alpha>   ", 0x1F83) 
    1850 CheckCompUni("<Greek_iota> <grave> <U1f01>      ", 0x1F83) 
    1851 CheckCompUni("<Greek_iota> <dead_grave> <U1f01> ", 0x1F83) 
    1852 CheckCompUni("<Greek_iota> <U1f03>      ", 0x1F83) 
    1853 CheckCompUni("<Greek_iota> <combining_acute> <parenright> <Greek_alpha> ", 0x1F84) 
    1854 CheckCompUni("<Greek_iota> <combining_acute> <U0313> <Greek_alpha>      ", 0x1F84) 
    1855 CheckCompUni("<Greek_iota> <combining_acute> <U1f00>    ", 0x1F84) 
    1856 CheckCompUni("<Greek_iota> <apostrophe> <parenright> <Greek_alpha>      ", 0x1F84) 
    1857 CheckCompUni("<Greek_iota> <apostrophe> <U0313> <Greek_alpha>   ", 0x1F84) 
    1858 CheckCompUni("<Greek_iota> <acute> <parenright> <Greek_alpha>   ", 0x1F84) 
    1859 CheckCompUni("<Greek_iota> <acute> <U0313> <Greek_alpha>        ", 0x1F84) 
    1860 CheckCompUni("<Greek_iota> <dead_acute> <parenright> <Greek_alpha>      ", 0x1F84) 
    1861 CheckCompUni("<Greek_iota> <dead_acute> <U0313> <Greek_alpha>   ", 0x1F84) 
    1862 CheckCompUni("<Greek_iota> <apostrophe> <U1f00> ", 0x1F84) 
    1863 CheckCompUni("<Greek_iota> <acute> <U1f00>      ", 0x1F84) 
    1864 CheckCompUni("<Greek_iota> <dead_acute> <U1f00> ", 0x1F84) 
    1865 CheckCompUni("<Greek_iota> <U1f04>      ", 0x1F84) 
    1866 CheckCompUni("<Greek_iota> <combining_acute> <parenleft> <Greek_alpha>  ", 0x1F85) 
    1867 CheckCompUni("<Greek_iota> <combining_acute> <U0314> <Greek_alpha>      ", 0x1F85) 
    1868 CheckCompUni("<Greek_iota> <combining_acute> <U1f01>    ", 0x1F85) 
    1869 CheckCompUni("<Greek_iota> <apostrophe> <parenleft> <Greek_alpha>       ", 0x1F85) 
    1870 CheckCompUni("<Greek_iota> <apostrophe> <U0314> <Greek_alpha>   ", 0x1F85) 
    1871 CheckCompUni("<Greek_iota> <acute> <parenleft> <Greek_alpha>    ", 0x1F85) 
    1872 CheckCompUni("<Greek_iota> <acute> <U0314> <Greek_alpha>        ", 0x1F85) 
    1873 CheckCompUni("<Greek_iota> <dead_acute> <parenleft> <Greek_alpha>       ", 0x1F85) 
    1874 CheckCompUni("<Greek_iota> <dead_acute> <U0314> <Greek_alpha>   ", 0x1F85) 
    1875 CheckCompUni("<Greek_iota> <apostrophe> <U1f01> ", 0x1F85) 
    1876 CheckCompUni("<Greek_iota> <acute> <U1f01>      ", 0x1F85) 
    1877 CheckCompUni("<Greek_iota> <dead_acute> <U1f01> ", 0x1F85) 
    1878 CheckCompUni("<Greek_iota> <U1f05>      ", 0x1F85) 
    1879 CheckCompUni("<Greek_iota> <asciitilde> <parenright> <Greek_alpha>      ", 0x1F86) 
    1880 CheckCompUni("<Greek_iota> <asciitilde> <U0313> <Greek_alpha>   ", 0x1F86) 
    1881 CheckCompUni("<Greek_iota> <dead_tilde> <parenright> <Greek_alpha>      ", 0x1F86) 
    1882 CheckCompUni("<Greek_iota> <dead_tilde> <U0313> <Greek_alpha>   ", 0x1F86) 
    1883 CheckCompUni("<Greek_iota> <U0342> <parenright> <Greek_alpha>   ", 0x1F86) 
    1884 CheckCompUni("<Greek_iota> <U0342> <U0313> <Greek_alpha>        ", 0x1F86) 
    1885 CheckCompUni("<Greek_iota> <asciitilde> <U1f00> ", 0x1F86) 
    1886 CheckCompUni("<Greek_iota> <dead_tilde> <U1f00> ", 0x1F86) 
    1887 CheckCompUni("<Greek_iota> <U0342> <U1f00>      ", 0x1F86) 
    1888 CheckCompUni("<Greek_iota> <U1f06>      ", 0x1F86) 
    1889 CheckCompUni("<Greek_iota> <asciitilde> <parenleft> <Greek_alpha>       ", 0x1F87) 
    1890 CheckCompUni("<Greek_iota> <asciitilde> <U0314> <Greek_alpha>   ", 0x1F87) 
    1891 CheckCompUni("<Greek_iota> <dead_tilde> <parenleft> <Greek_alpha>       ", 0x1F87) 
    1892 CheckCompUni("<Greek_iota> <dead_tilde> <U0314> <Greek_alpha>   ", 0x1F87) 
    1893 CheckCompUni("<Greek_iota> <U0342> <parenleft> <Greek_alpha>    ", 0x1F87) 
    1894 CheckCompUni("<Greek_iota> <U0342> <U0314> <Greek_alpha>        ", 0x1F87) 
    1895 CheckCompUni("<Greek_iota> <asciitilde> <U1f01> ", 0x1F87) 
    1896 CheckCompUni("<Greek_iota> <dead_tilde> <U1f01> ", 0x1F87) 
    1897 CheckCompUni("<Greek_iota> <U0342> <U1f01>      ", 0x1F87) 
    1898 CheckCompUni("<Greek_iota> <U1f07>      ", 0x1F87) 
    1899 CheckCompUni("<Greek_iota> <parenright> <Greek_ALPHA>   ", 0x1F88) 
    1900 CheckCompUni("<Greek_iota> <U0313> <Greek_ALPHA>        ", 0x1F88) 
    1901 CheckCompUni("<Greek_iota> <U1f08>      ", 0x1F88) 
    1902 CheckCompUni("<Greek_iota> <parenleft> <Greek_ALPHA>    ", 0x1F89) 
    1903 CheckCompUni("<Greek_iota> <U0314> <Greek_ALPHA>        ", 0x1F89) 
    1904 CheckCompUni("<Greek_iota> <U1f09>      ", 0x1F89) 
    1905 CheckCompUni("<Greek_iota> <combining_grave> <parenright> <Greek_ALPHA> ", 0x1F8A) 
    1906 CheckCompUni("<Greek_iota> <combining_grave> <U0313> <Greek_ALPHA>      ", 0x1F8A) 
    1907 CheckCompUni("<Greek_iota> <combining_grave> <U1f08>    ", 0x1F8A) 
    1908 CheckCompUni("<Greek_iota> <grave> <parenright> <Greek_ALPHA>   ", 0x1F8A) 
    1909 CheckCompUni("<Greek_iota> <grave> <U0313> <Greek_ALPHA>        ", 0x1F8A) 
    1910 CheckCompUni("<Greek_iota> <dead_grave> <parenright> <Greek_ALPHA>      ", 0x1F8A) 
    1911 CheckCompUni("<Greek_iota> <dead_grave> <U0313> <Greek_ALPHA>   ", 0x1F8A) 
    1912 CheckCompUni("<Greek_iota> <grave> <U1f08>      ", 0x1F8A) 
    1913 CheckCompUni("<Greek_iota> <dead_grave> <U1f08> ", 0x1F8A) 
    1914 CheckCompUni("<Greek_iota> <U1f0a>      ", 0x1F8A) 
    1915 CheckCompUni("<Greek_iota> <combining_grave> <parenleft> <Greek_ALPHA>  ", 0x1F8B) 
    1916 CheckCompUni("<Greek_iota> <combining_grave> <U0314> <Greek_ALPHA>      ", 0x1F8B) 
    1917 CheckCompUni("<Greek_iota> <combining_grave> <U1f09>    ", 0x1F8B) 
    1918 CheckCompUni("<Greek_iota> <grave> <parenleft> <Greek_ALPHA>    ", 0x1F8B) 
    1919 CheckCompUni("<Greek_iota> <grave> <U0314> <Greek_ALPHA>        ", 0x1F8B) 
    1920 CheckCompUni("<Greek_iota> <dead_grave> <parenleft> <Greek_ALPHA>       ", 0x1F8B) 
    1921 CheckCompUni("<Greek_iota> <dead_grave> <U0314> <Greek_ALPHA>   ", 0x1F8B) 
    1922 CheckCompUni("<Greek_iota> <grave> <U1f09>      ", 0x1F8B) 
    1923 CheckCompUni("<Greek_iota> <dead_grave> <U1f09> ", 0x1F8B) 
    1924 CheckCompUni("<Greek_iota> <U1f0b>      ", 0x1F8B) 
    1925 CheckCompUni("<Greek_iota> <combining_acute> <parenright> <Greek_ALPHA> ", 0x1F8C) 
    1926 CheckCompUni("<Greek_iota> <combining_acute> <U0313> <Greek_ALPHA>      ", 0x1F8C) 
    1927 CheckCompUni("<Greek_iota> <combining_acute> <U1f08>    ", 0x1F8C) 
    1928 CheckCompUni("<Greek_iota> <apostrophe> <parenright> <Greek_ALPHA>      ", 0x1F8C) 
    1929 CheckCompUni("<Greek_iota> <apostrophe> <U0313> <Greek_ALPHA>   ", 0x1F8C) 
    1930 CheckCompUni("<Greek_iota> <acute> <parenright> <Greek_ALPHA>   ", 0x1F8C) 
    1931 CheckCompUni("<Greek_iota> <acute> <U0313> <Greek_ALPHA>        ", 0x1F8C) 
    1932 CheckCompUni("<Greek_iota> <dead_acute> <parenright> <Greek_ALPHA>      ", 0x1F8C) 
    1933 CheckCompUni("<Greek_iota> <dead_acute> <U0313> <Greek_ALPHA>   ", 0x1F8C) 
    1934 CheckCompUni("<Greek_iota> <apostrophe> <U1f08> ", 0x1F8C) 
    1935 CheckCompUni("<Greek_iota> <acute> <U1f08>      ", 0x1F8C) 
    1936 CheckCompUni("<Greek_iota> <dead_acute> <U1f08> ", 0x1F8C) 
    1937 CheckCompUni("<Greek_iota> <U1f0c>      ", 0x1F8C) 
    1938 CheckCompUni("<Greek_iota> <combining_acute> <parenleft> <Greek_ALPHA>  ", 0x1F8D) 
    1939 CheckCompUni("<Greek_iota> <combining_acute> <U0314> <Greek_ALPHA>      ", 0x1F8D) 
    1940 CheckCompUni("<Greek_iota> <combining_acute> <U1f09>    ", 0x1F8D) 
    1941 CheckCompUni("<Greek_iota> <apostrophe> <parenleft> <Greek_ALPHA>       ", 0x1F8D) 
    1942 CheckCompUni("<Greek_iota> <apostrophe> <U0314> <Greek_ALPHA>   ", 0x1F8D) 
    1943 CheckCompUni("<Greek_iota> <acute> <parenleft> <Greek_ALPHA>    ", 0x1F8D) 
    1944 CheckCompUni("<Greek_iota> <acute> <U0314> <Greek_ALPHA>        ", 0x1F8D) 
    1945 CheckCompUni("<Greek_iota> <dead_acute> <parenleft> <Greek_ALPHA>       ", 0x1F8D) 
    1946 CheckCompUni("<Greek_iota> <dead_acute> <U0314> <Greek_ALPHA>   ", 0x1F8D) 
    1947 CheckCompUni("<Greek_iota> <apostrophe> <U1f09> ", 0x1F8D) 
    1948 CheckCompUni("<Greek_iota> <acute> <U1f09>      ", 0x1F8D) 
    1949 CheckCompUni("<Greek_iota> <dead_acute> <U1f09> ", 0x1F8D) 
    1950 CheckCompUni("<Greek_iota> <U1f0d>      ", 0x1F8D) 
    1951 CheckCompUni("<Greek_iota> <asciitilde> <parenright> <Greek_ALPHA>      ", 0x1F8E) 
    1952 CheckCompUni("<Greek_iota> <asciitilde> <U0313> <Greek_ALPHA>   ", 0x1F8E) 
    1953 CheckCompUni("<Greek_iota> <dead_tilde> <parenright> <Greek_ALPHA>      ", 0x1F8E) 
    1954 CheckCompUni("<Greek_iota> <dead_tilde> <U0313> <Greek_ALPHA>   ", 0x1F8E) 
    1955 CheckCompUni("<Greek_iota> <U0342> <parenright> <Greek_ALPHA>   ", 0x1F8E) 
    1956 CheckCompUni("<Greek_iota> <U0342> <U0313> <Greek_ALPHA>        ", 0x1F8E) 
    1957 CheckCompUni("<Greek_iota> <asciitilde> <U1f08> ", 0x1F8E) 
    1958 CheckCompUni("<Greek_iota> <dead_tilde> <U1f08> ", 0x1F8E) 
    1959 CheckCompUni("<Greek_iota> <U0342> <U1f08>      ", 0x1F8E) 
    1960 CheckCompUni("<Greek_iota> <U1f0e>      ", 0x1F8E) 
    1961 CheckCompUni("<Greek_iota> <asciitilde> <parenleft> <Greek_ALPHA>       ", 0x1F8F) 
    1962 CheckCompUni("<Greek_iota> <asciitilde> <U0314> <Greek_ALPHA>   ", 0x1F8F) 
    1963 CheckCompUni("<Greek_iota> <dead_tilde> <parenleft> <Greek_ALPHA>       ", 0x1F8F) 
    1964 CheckCompUni("<Greek_iota> <dead_tilde> <U0314> <Greek_ALPHA>   ", 0x1F8F) 
    1965 CheckCompUni("<Greek_iota> <U0342> <parenleft> <Greek_ALPHA>    ", 0x1F8F) 
    1966 CheckCompUni("<Greek_iota> <U0342> <U0314> <Greek_ALPHA>        ", 0x1F8F) 
    1967 CheckCompUni("<Greek_iota> <asciitilde> <U1f09> ", 0x1F8F) 
    1968 CheckCompUni("<Greek_iota> <dead_tilde> <U1f09> ", 0x1F8F) 
    1969 CheckCompUni("<Greek_iota> <U0342> <U1f09>      ", 0x1F8F) 
    1970 CheckCompUni("<Greek_iota> <U1f0f>      ", 0x1F8F) 
    1971 CheckCompUni("<Greek_iota> <parenright> <Greek_eta>     ", 0x1F90) 
    1972 CheckCompUni("<Greek_iota> <U0313> <Greek_eta>  ", 0x1F90) 
    1973 CheckCompUni("<Greek_iota> <U1f20>      ", 0x1F90) 
    1974 CheckCompUni("<Greek_iota> <parenleft> <Greek_eta>      ", 0x1F91) 
    1975 CheckCompUni("<Greek_iota> <U0314> <Greek_eta>  ", 0x1F91) 
    1976 CheckCompUni("<Greek_iota> <U1f21>      ", 0x1F91) 
    1977 CheckCompUni("<Greek_iota> <combining_grave> <parenright> <Greek_eta>   ", 0x1F92) 
    1978 CheckCompUni("<Greek_iota> <combining_grave> <U0313> <Greek_eta>        ", 0x1F92) 
    1979 CheckCompUni("<Greek_iota> <combining_grave> <U1f20>    ", 0x1F92) 
    1980 CheckCompUni("<Greek_iota> <grave> <parenright> <Greek_eta>     ", 0x1F92) 
    1981 CheckCompUni("<Greek_iota> <grave> <U0313> <Greek_eta>  ", 0x1F92) 
    1982 CheckCompUni("<Greek_iota> <dead_grave> <parenright> <Greek_eta>        ", 0x1F92) 
    1983 CheckCompUni("<Greek_iota> <dead_grave> <U0313> <Greek_eta>     ", 0x1F92) 
    1984 CheckCompUni("<Greek_iota> <grave> <U1f20>      ", 0x1F92) 
    1985 CheckCompUni("<Greek_iota> <dead_grave> <U1f20> ", 0x1F92) 
    1986 CheckCompUni("<Greek_iota> <U1f22>      ", 0x1F92) 
    1987 CheckCompUni("<Greek_iota> <combining_grave> <parenleft> <Greek_eta>    ", 0x1F93) 
    1988 CheckCompUni("<Greek_iota> <combining_grave> <U0314> <Greek_eta>        ", 0x1F93) 
    1989 CheckCompUni("<Greek_iota> <combining_grave> <U1f21>    ", 0x1F93) 
    1990 CheckCompUni("<Greek_iota> <grave> <parenleft> <Greek_eta>      ", 0x1F93) 
    1991 CheckCompUni("<Greek_iota> <grave> <U0314> <Greek_eta>  ", 0x1F93) 
    1992 CheckCompUni("<Greek_iota> <dead_grave> <parenleft> <Greek_eta> ", 0x1F93) 
    1993 CheckCompUni("<Greek_iota> <dead_grave> <U0314> <Greek_eta>     ", 0x1F93) 
    1994 CheckCompUni("<Greek_iota> <grave> <U1f21>      ", 0x1F93) 
    1995 CheckCompUni("<Greek_iota> <dead_grave> <U1f21> ", 0x1F93) 
    1996 CheckCompUni("<Greek_iota> <U1f23>      ", 0x1F93) 
    1997 CheckCompUni("<Greek_iota> <combining_acute> <parenright> <Greek_eta>   ", 0x1F94) 
    1998 CheckCompUni("<Greek_iota> <combining_acute> <U0313> <Greek_eta>        ", 0x1F94) 
    1999 CheckCompUni("<Greek_iota> <combining_acute> <U1f20>    ", 0x1F94) 
    2000 CheckCompUni("<Greek_iota> <apostrophe> <parenright> <Greek_eta>        ", 0x1F94) 
    2001 CheckCompUni("<Greek_iota> <apostrophe> <U0313> <Greek_eta>     ", 0x1F94) 
    2002 CheckCompUni("<Greek_iota> <acute> <parenright> <Greek_eta>     ", 0x1F94) 
    2003 CheckCompUni("<Greek_iota> <acute> <U0313> <Greek_eta>  ", 0x1F94) 
    2004 CheckCompUni("<Greek_iota> <dead_acute> <parenright> <Greek_eta>        ", 0x1F94) 
    2005 CheckCompUni("<Greek_iota> <dead_acute> <U0313> <Greek_eta>     ", 0x1F94) 
    2006 CheckCompUni("<Greek_iota> <apostrophe> <U1f20> ", 0x1F94) 
    2007 CheckCompUni("<Greek_iota> <acute> <U1f20>      ", 0x1F94) 
    2008 CheckCompUni("<Greek_iota> <dead_acute> <U1f20> ", 0x1F94) 
    2009 CheckCompUni("<Greek_iota> <U1f24>      ", 0x1F94) 
    2010 CheckCompUni("<Greek_iota> <combining_acute> <parenleft> <Greek_eta>    ", 0x1F95) 
    2011 CheckCompUni("<Greek_iota> <combining_acute> <U0314> <Greek_eta>        ", 0x1F95) 
    2012 CheckCompUni("<Greek_iota> <combining_acute> <U1f21>    ", 0x1F95) 
    2013 CheckCompUni("<Greek_iota> <apostrophe> <parenleft> <Greek_eta> ", 0x1F95) 
    2014 CheckCompUni("<Greek_iota> <apostrophe> <U0314> <Greek_eta>     ", 0x1F95) 
    2015 CheckCompUni("<Greek_iota> <acute> <parenleft> <Greek_eta>      ", 0x1F95) 
    2016 CheckCompUni("<Greek_iota> <acute> <U0314> <Greek_eta>  ", 0x1F95) 
    2017 CheckCompUni("<Greek_iota> <dead_acute> <parenleft> <Greek_eta> ", 0x1F95) 
    2018 CheckCompUni("<Greek_iota> <dead_acute> <U0314> <Greek_eta>     ", 0x1F95) 
    2019 CheckCompUni("<Greek_iota> <apostrophe> <U1f21> ", 0x1F95) 
    2020 CheckCompUni("<Greek_iota> <acute> <U1f21>      ", 0x1F95) 
    2021 CheckCompUni("<Greek_iota> <dead_acute> <U1f21> ", 0x1F95) 
    2022 CheckCompUni("<Greek_iota> <U1f25>      ", 0x1F95) 
    2023 CheckCompUni("<Greek_iota> <asciitilde> <parenright> <Greek_eta>        ", 0x1F96) 
    2024 CheckCompUni("<Greek_iota> <asciitilde> <U0313> <Greek_eta>     ", 0x1F96) 
    2025 CheckCompUni("<Greek_iota> <dead_tilde> <parenright> <Greek_eta>        ", 0x1F96) 
    2026 CheckCompUni("<Greek_iota> <dead_tilde> <U0313> <Greek_eta>     ", 0x1F96) 
    2027 CheckCompUni("<Greek_iota> <U0342> <parenright> <Greek_eta>     ", 0x1F96) 
    2028 CheckCompUni("<Greek_iota> <U0342> <U0313> <Greek_eta>  ", 0x1F96) 
    2029 CheckCompUni("<Greek_iota> <asciitilde> <U1f20> ", 0x1F96) 
    2030 CheckCompUni("<Greek_iota> <dead_tilde> <U1f20> ", 0x1F96) 
    2031 CheckCompUni("<Greek_iota> <U0342> <U1f20>      ", 0x1F96) 
    2032 CheckCompUni("<Greek_iota> <U1f26>      ", 0x1F96) 
    2033 CheckCompUni("<Greek_iota> <asciitilde> <parenleft> <Greek_eta> ", 0x1F97) 
    2034 CheckCompUni("<Greek_iota> <asciitilde> <U0314> <Greek_eta>     ", 0x1F97) 
    2035 CheckCompUni("<Greek_iota> <dead_tilde> <parenleft> <Greek_eta> ", 0x1F97) 
    2036 CheckCompUni("<Greek_iota> <dead_tilde> <U0314> <Greek_eta>     ", 0x1F97) 
    2037 CheckCompUni("<Greek_iota> <U0342> <parenleft> <Greek_eta>      ", 0x1F97) 
    2038 CheckCompUni("<Greek_iota> <U0342> <U0314> <Greek_eta>  ", 0x1F97) 
    2039 CheckCompUni("<Greek_iota> <asciitilde> <U1f21> ", 0x1F97) 
    2040 CheckCompUni("<Greek_iota> <dead_tilde> <U1f21> ", 0x1F97) 
    2041 CheckCompUni("<Greek_iota> <U0342> <U1f21>      ", 0x1F97) 
    2042 CheckCompUni("<Greek_iota> <U1f27>      ", 0x1F97) 
    2043 CheckCompUni("<Greek_iota> <parenright> <Greek_ETA>     ", 0x1F98) 
    2044 CheckCompUni("<Greek_iota> <U0313> <Greek_ETA>  ", 0x1F98) 
    2045 CheckCompUni("<Greek_iota> <U1f28>      ", 0x1F98) 
    2046 CheckCompUni("<Greek_iota> <parenleft> <Greek_ETA>      ", 0x1F99) 
    2047 CheckCompUni("<Greek_iota> <U0314> <Greek_ETA>  ", 0x1F99) 
    2048 CheckCompUni("<Greek_iota> <U1f29>      ", 0x1F99) 
    2049 CheckCompUni("<Greek_iota> <combining_grave> <parenright> <Greek_ETA>   ", 0x1F9A) 
    2050 CheckCompUni("<Greek_iota> <combining_grave> <U0313> <Greek_ETA>        ", 0x1F9A) 
    2051 CheckCompUni("<Greek_iota> <combining_grave> <U1f28>    ", 0x1F9A) 
    2052 CheckCompUni("<Greek_iota> <grave> <parenright> <Greek_ETA>     ", 0x1F9A) 
    2053 CheckCompUni("<Greek_iota> <grave> <U0313> <Greek_ETA>  ", 0x1F9A) 
    2054 CheckCompUni("<Greek_iota> <dead_grave> <parenright> <Greek_ETA>        ", 0x1F9A) 
    2055 CheckCompUni("<Greek_iota> <dead_grave> <U0313> <Greek_ETA>     ", 0x1F9A) 
    2056 CheckCompUni("<Greek_iota> <grave> <U1f28>      ", 0x1F9A) 
    2057 CheckCompUni("<Greek_iota> <dead_grave> <U1f28> ", 0x1F9A) 
    2058 CheckCompUni("<Greek_iota> <U1f2a>      ", 0x1F9A) 
    2059 CheckCompUni("<Greek_iota> <combining_grave> <parenleft> <Greek_ETA>    ", 0x1F9B) 
    2060 CheckCompUni("<Greek_iota> <combining_grave> <U0314> <Greek_ETA>        ", 0x1F9B) 
    2061 CheckCompUni("<Greek_iota> <combining_grave> <U1f29>    ", 0x1F9B) 
    2062 CheckCompUni("<Greek_iota> <grave> <parenleft> <Greek_ETA>      ", 0x1F9B) 
    2063 CheckCompUni("<Greek_iota> <grave> <U0314> <Greek_ETA>  ", 0x1F9B) 
    2064 CheckCompUni("<Greek_iota> <dead_grave> <parenleft> <Greek_ETA> ", 0x1F9B) 
    2065 CheckCompUni("<Greek_iota> <dead_grave> <U0314> <Greek_ETA>     ", 0x1F9B) 
    2066 CheckCompUni("<Greek_iota> <grave> <U1f29>      ", 0x1F9B) 
    2067 CheckCompUni("<Greek_iota> <dead_grave> <U1f29> ", 0x1F9B) 
    2068 CheckCompUni("<Greek_iota> <U1f2b>      ", 0x1F9B) 
    2069 CheckCompUni("<Greek_iota> <combining_acute> <parenright> <Greek_ETA>   ", 0x1F9C) 
    2070 CheckCompUni("<Greek_iota> <combining_acute> <U0313> <Greek_ETA>        ", 0x1F9C) 
    2071 CheckCompUni("<Greek_iota> <combining_acute> <U1f28>    ", 0x1F9C) 
    2072 CheckCompUni("<Greek_iota> <apostrophe> <parenright> <Greek_ETA>        ", 0x1F9C) 
    2073 CheckCompUni("<Greek_iota> <apostrophe> <U0313> <Greek_ETA>     ", 0x1F9C) 
    2074 CheckCompUni("<Greek_iota> <acute> <parenright> <Greek_ETA>     ", 0x1F9C) 
    2075 CheckCompUni("<Greek_iota> <acute> <U0313> <Greek_ETA>  ", 0x1F9C) 
    2076 CheckCompUni("<Greek_iota> <dead_acute> <parenright> <Greek_ETA>        ", 0x1F9C) 
    2077 CheckCompUni("<Greek_iota> <dead_acute> <U0313> <Greek_ETA>     ", 0x1F9C) 
    2078 CheckCompUni("<Greek_iota> <apostrophe> <U1f28> ", 0x1F9C) 
    2079 CheckCompUni("<Greek_iota> <acute> <U1f28>      ", 0x1F9C) 
    2080 CheckCompUni("<Greek_iota> <dead_acute> <U1f28> ", 0x1F9C) 
    2081 CheckCompUni("<Greek_iota> <U1f2c>      ", 0x1F9C) 
    2082 CheckCompUni("<Greek_iota> <combining_acute> <parenleft> <Greek_ETA>    ", 0x1F9D) 
    2083 CheckCompUni("<Greek_iota> <combining_acute> <U0314> <Greek_ETA>        ", 0x1F9D) 
    2084 CheckCompUni("<Greek_iota> <combining_acute> <U1f29>    ", 0x1F9D) 
    2085 CheckCompUni("<Greek_iota> <apostrophe> <parenleft> <Greek_ETA> ", 0x1F9D) 
    2086 CheckCompUni("<Greek_iota> <apostrophe> <U0314> <Greek_ETA>     ", 0x1F9D) 
    2087 CheckCompUni("<Greek_iota> <acute> <parenleft> <Greek_ETA>      ", 0x1F9D) 
    2088 CheckCompUni("<Greek_iota> <acute> <U0314> <Greek_ETA>  ", 0x1F9D) 
    2089 CheckCompUni("<Greek_iota> <dead_acute> <parenleft> <Greek_ETA> ", 0x1F9D) 
    2090 CheckCompUni("<Greek_iota> <dead_acute> <U0314> <Greek_ETA>     ", 0x1F9D) 
    2091 CheckCompUni("<Greek_iota> <apostrophe> <U1f29> ", 0x1F9D) 
    2092 CheckCompUni("<Greek_iota> <acute> <U1f29>      ", 0x1F9D) 
    2093 CheckCompUni("<Greek_iota> <dead_acute> <U1f29> ", 0x1F9D) 
    2094 CheckCompUni("<Greek_iota> <U1f2d>      ", 0x1F9D) 
    2095 CheckCompUni("<Greek_iota> <asciitilde> <parenright> <Greek_ETA>        ", 0x1F9E) 
    2096 CheckCompUni("<Greek_iota> <asciitilde> <U0313> <Greek_ETA>     ", 0x1F9E) 
    2097 CheckCompUni("<Greek_iota> <dead_tilde> <parenright> <Greek_ETA>        ", 0x1F9E) 
    2098 CheckCompUni("<Greek_iota> <dead_tilde> <U0313> <Greek_ETA>     ", 0x1F9E) 
    2099 CheckCompUni("<Greek_iota> <U0342> <parenright> <Greek_ETA>     ", 0x1F9E) 
    2100 CheckCompUni("<Greek_iota> <U0342> <U0313> <Greek_ETA>  ", 0x1F9E) 
    2101 CheckCompUni("<Greek_iota> <asciitilde> <U1f28> ", 0x1F9E) 
    2102 CheckCompUni("<Greek_iota> <dead_tilde> <U1f28> ", 0x1F9E) 
    2103 CheckCompUni("<Greek_iota> <U0342> <U1f28>      ", 0x1F9E) 
    2104 CheckCompUni("<Greek_iota> <U1f2e>      ", 0x1F9E) 
    2105 CheckCompUni("<Greek_iota> <asciitilde> <parenleft> <Greek_ETA> ", 0x1F9F) 
    2106 CheckCompUni("<Greek_iota> <asciitilde> <U0314> <Greek_ETA>     ", 0x1F9F) 
    2107 CheckCompUni("<Greek_iota> <dead_tilde> <parenleft> <Greek_ETA> ", 0x1F9F) 
    2108 CheckCompUni("<Greek_iota> <dead_tilde> <U0314> <Greek_ETA>     ", 0x1F9F) 
    2109 CheckCompUni("<Greek_iota> <U0342> <parenleft> <Greek_ETA>      ", 0x1F9F) 
    2110 CheckCompUni("<Greek_iota> <U0342> <U0314> <Greek_ETA>  ", 0x1F9F) 
    2111 CheckCompUni("<Greek_iota> <asciitilde> <U1f29> ", 0x1F9F) 
    2112 CheckCompUni("<Greek_iota> <dead_tilde> <U1f29> ", 0x1F9F) 
    2113 CheckCompUni("<Greek_iota> <U0342> <U1f29>      ", 0x1F9F) 
    2114 CheckCompUni("<Greek_iota> <U1f2f>      ", 0x1F9F) 
    2115 CheckCompUni("<Greek_iota> <parenright> <Greek_omega>   ", 0x1FA0) 
    2116 CheckCompUni("<Greek_iota> <U0313> <Greek_omega>        ", 0x1FA0) 
    2117 CheckCompUni("<Greek_iota> <U1f60>      ", 0x1FA0) 
    2118 CheckCompUni("<Greek_iota> <parenleft> <Greek_omega>    ", 0x1FA1) 
    2119 CheckCompUni("<Greek_iota> <U0314> <Greek_omega>        ", 0x1FA1) 
    2120 CheckCompUni("<Greek_iota> <U1f61>      ", 0x1FA1) 
    2121 CheckCompUni("<Greek_iota> <combining_grave> <parenright> <Greek_omega> ", 0x1FA2) 
    2122 CheckCompUni("<Greek_iota> <combining_grave> <U0313> <Greek_omega>      ", 0x1FA2) 
    2123 CheckCompUni("<Greek_iota> <combining_grave> <U1f60>    ", 0x1FA2) 
    2124 CheckCompUni("<Greek_iota> <grave> <parenright> <Greek_omega>   ", 0x1FA2) 
    2125 CheckCompUni("<Greek_iota> <grave> <U0313> <Greek_omega>        ", 0x1FA2) 
    2126 CheckCompUni("<Greek_iota> <dead_grave> <parenright> <Greek_omega>      ", 0x1FA2) 
    2127 CheckCompUni("<Greek_iota> <dead_grave> <U0313> <Greek_omega>   ", 0x1FA2) 
    2128 CheckCompUni("<Greek_iota> <grave> <U1f60>      ", 0x1FA2) 
    2129 CheckCompUni("<Greek_iota> <dead_grave> <U1f60> ", 0x1FA2) 
    2130 CheckCompUni("<Greek_iota> <U1f62>      ", 0x1FA2) 
    2131 CheckCompUni("<Greek_iota> <combining_grave> <parenleft> <Greek_omega>  ", 0x1FA3) 
    2132 CheckCompUni("<Greek_iota> <combining_grave> <U0314> <Greek_omega>      ", 0x1FA3) 
    2133 CheckCompUni("<Greek_iota> <combining_grave> <U1f61>    ", 0x1FA3) 
    2134 CheckCompUni("<Greek_iota> <grave> <parenleft> <Greek_omega>    ", 0x1FA3) 
    2135 CheckCompUni("<Greek_iota> <grave> <U0314> <Greek_omega>        ", 0x1FA3) 
    2136 CheckCompUni("<Greek_iota> <dead_grave> <parenleft> <Greek_omega>       ", 0x1FA3) 
    2137 CheckCompUni("<Greek_iota> <dead_grave> <U0314> <Greek_omega>   ", 0x1FA3) 
    2138 CheckCompUni("<Greek_iota> <grave> <U1f61>      ", 0x1FA3) 
    2139 CheckCompUni("<Greek_iota> <dead_grave> <U1f61> ", 0x1FA3) 
    2140 CheckCompUni("<Greek_iota> <U1f63>      ", 0x1FA3) 
    2141 CheckCompUni("<Greek_iota> <combining_acute> <parenright> <Greek_omega> ", 0x1FA4) 
    2142 CheckCompUni("<Greek_iota> <combining_acute> <U0313> <Greek_omega>      ", 0x1FA4) 
    2143 CheckCompUni("<Greek_iota> <combining_acute> <U1f60>    ", 0x1FA4) 
    2144 CheckCompUni("<Greek_iota> <apostrophe> <parenright> <Greek_omega>      ", 0x1FA4) 
    2145 CheckCompUni("<Greek_iota> <apostrophe> <U0313> <Greek_omega>   ", 0x1FA4) 
    2146 CheckCompUni("<Greek_iota> <acute> <parenright> <Greek_omega>   ", 0x1FA4) 
    2147 CheckCompUni("<Greek_iota> <acute> <U0313> <Greek_omega>        ", 0x1FA4) 
    2148 CheckCompUni("<Greek_iota> <dead_acute> <parenright> <Greek_omega>      ", 0x1FA4) 
    2149 CheckCompUni("<Greek_iota> <dead_acute> <U0313> <Greek_omega>   ", 0x1FA4) 
    2150 CheckCompUni("<Greek_iota> <apostrophe> <U1f60> ", 0x1FA4) 
    2151 CheckCompUni("<Greek_iota> <acute> <U1f60>      ", 0x1FA4) 
    2152 CheckCompUni("<Greek_iota> <dead_acute> <U1f60> ", 0x1FA4) 
    2153 CheckCompUni("<Greek_iota> <U1f64>      ", 0x1FA4) 
    2154 CheckCompUni("<Greek_iota> <combining_acute> <parenleft> <Greek_omega>  ", 0x1FA5) 
    2155 CheckCompUni("<Greek_iota> <combining_acute> <U0314> <Greek_omega>      ", 0x1FA5) 
    2156 CheckCompUni("<Greek_iota> <combining_acute> <U1f61>    ", 0x1FA5) 
    2157 CheckCompUni("<Greek_iota> <apostrophe> <parenleft> <Greek_omega>       ", 0x1FA5) 
    2158 CheckCompUni("<Greek_iota> <apostrophe> <U0314> <Greek_omega>   ", 0x1FA5) 
    2159 CheckCompUni("<Greek_iota> <acute> <parenleft> <Greek_omega>    ", 0x1FA5) 
    2160 CheckCompUni("<Greek_iota> <acute> <U0314> <Greek_omega>        ", 0x1FA5) 
    2161 CheckCompUni("<Greek_iota> <dead_acute> <parenleft> <Greek_omega>       ", 0x1FA5) 
    2162 CheckCompUni("<Greek_iota> <dead_acute> <U0314> <Greek_omega>   ", 0x1FA5) 
    2163 CheckCompUni("<Greek_iota> <apostrophe> <U1f61> ", 0x1FA5) 
    2164 CheckCompUni("<Greek_iota> <acute> <U1f61>      ", 0x1FA5) 
    2165 CheckCompUni("<Greek_iota> <dead_acute> <U1f61> ", 0x1FA5) 
    2166 CheckCompUni("<Greek_iota> <U1f65>      ", 0x1FA5) 
    2167 CheckCompUni("<Greek_iota> <asciitilde> <parenright> <Greek_omega>      ", 0x1FA6) 
    2168 CheckCompUni("<Greek_iota> <asciitilde> <U0313> <Greek_omega>   ", 0x1FA6) 
    2169 CheckCompUni("<Greek_iota> <dead_tilde> <parenright> <Greek_omega>      ", 0x1FA6) 
    2170 CheckCompUni("<Greek_iota> <dead_tilde> <U0313> <Greek_omega>   ", 0x1FA6) 
    2171 CheckCompUni("<Greek_iota> <U0342> <parenright> <Greek_omega>   ", 0x1FA6) 
    2172 CheckCompUni("<Greek_iota> <U0342> <U0313> <Greek_omega>        ", 0x1FA6) 
    2173 CheckCompUni("<Greek_iota> <asciitilde> <U1f60> ", 0x1FA6) 
    2174 CheckCompUni("<Greek_iota> <dead_tilde> <U1f60> ", 0x1FA6) 
    2175 CheckCompUni("<Greek_iota> <U0342> <U1f60>      ", 0x1FA6) 
    2176 CheckCompUni("<Greek_iota> <U1f66>      ", 0x1FA6) 
    2177 CheckCompUni("<Greek_iota> <asciitilde> <parenleft> <Greek_omega>       ", 0x1FA7) 
    2178 CheckCompUni("<Greek_iota> <asciitilde> <U0314> <Greek_omega>   ", 0x1FA7) 
    2179 CheckCompUni("<Greek_iota> <dead_tilde> <parenleft> <Greek_omega>       ", 0x1FA7) 
    2180 CheckCompUni("<Greek_iota> <dead_tilde> <U0314> <Greek_omega>   ", 0x1FA7) 
    2181 CheckCompUni("<Greek_iota> <U0342> <parenleft> <Greek_omega>    ", 0x1FA7) 
    2182 CheckCompUni("<Greek_iota> <U0342> <U0314> <Greek_omega>        ", 0x1FA7) 
    2183 CheckCompUni("<Greek_iota> <asciitilde> <U1f61> ", 0x1FA7) 
    2184 CheckCompUni("<Greek_iota> <dead_tilde> <U1f61> ", 0x1FA7) 
    2185 CheckCompUni("<Greek_iota> <U0342> <U1f61>      ", 0x1FA7) 
    2186 CheckCompUni("<Greek_iota> <U1f67>      ", 0x1FA7) 
    2187 CheckCompUni("<Greek_iota> <parenright> <Greek_OMEGA>   ", 0x1FA8) 
    2188 CheckCompUni("<Greek_iota> <U0313> <Greek_OMEGA>        ", 0x1FA8) 
    2189 CheckCompUni("<Greek_iota> <U1f68>      ", 0x1FA8) 
    2190 CheckCompUni("<Greek_iota> <parenleft> <Greek_OMEGA>    ", 0x1FA9) 
    2191 CheckCompUni("<Greek_iota> <U0314> <Greek_OMEGA>        ", 0x1FA9) 
    2192 CheckCompUni("<Greek_iota> <U1f69>      ", 0x1FA9) 
    2193 CheckCompUni("<Greek_iota> <combining_grave> <parenright> <Greek_OMEGA> ", 0x1FAA) 
    2194 CheckCompUni("<Greek_iota> <combining_grave> <U0313> <Greek_OMEGA>      ", 0x1FAA) 
    2195 CheckCompUni("<Greek_iota> <combining_grave> <U1f68>    ", 0x1FAA) 
    2196 CheckCompUni("<Greek_iota> <grave> <parenright> <Greek_OMEGA>   ", 0x1FAA) 
    2197 CheckCompUni("<Greek_iota> <grave> <U0313> <Greek_OMEGA>        ", 0x1FAA) 
    2198 CheckCompUni("<Greek_iota> <dead_grave> <parenright> <Greek_OMEGA>      ", 0x1FAA) 
    2199 CheckCompUni("<Greek_iota> <dead_grave> <U0313> <Greek_OMEGA>   ", 0x1FAA) 
    2200 CheckCompUni("<Greek_iota> <grave> <U1f68>      ", 0x1FAA) 
    2201 CheckCompUni("<Greek_iota> <dead_grave> <U1f68> ", 0x1FAA) 
    2202 CheckCompUni("<Greek_iota> <U1f6a>      ", 0x1FAA) 
    2203 CheckCompUni("<Greek_iota> <combining_grave> <parenleft> <Greek_OMEGA>  ", 0x1FAB) 
    2204 CheckCompUni("<Greek_iota> <combining_grave> <U0314> <Greek_OMEGA>      ", 0x1FAB) 
    2205 CheckCompUni("<Greek_iota> <combining_grave> <U1f69>    ", 0x1FAB) 
    2206 CheckCompUni("<Greek_iota> <grave> <parenleft> <Greek_OMEGA>    ", 0x1FAB) 
    2207 CheckCompUni("<Greek_iota> <grave> <U0314> <Greek_OMEGA>        ", 0x1FAB) 
    2208 CheckCompUni("<Greek_iota> <dead_grave> <parenleft> <Greek_OMEGA>       ", 0x1FAB) 
    2209 CheckCompUni("<Greek_iota> <dead_grave> <U0314> <Greek_OMEGA>   ", 0x1FAB) 
    2210 CheckCompUni("<Greek_iota> <grave> <U1f69>      ", 0x1FAB) 
    2211 CheckCompUni("<Greek_iota> <dead_grave> <U1f69> ", 0x1FAB) 
    2212 CheckCompUni("<Greek_iota> <U1f6b>      ", 0x1FAB) 
    2213 CheckCompUni("<Greek_iota> <combining_acute> <parenright> <Greek_OMEGA> ", 0x1FAC) 
    2214 CheckCompUni("<Greek_iota> <combining_acute> <U0313> <Greek_OMEGA>      ", 0x1FAC) 
    2215 CheckCompUni("<Greek_iota> <combining_acute> <U1f68>    ", 0x1FAC) 
    2216 CheckCompUni("<Greek_iota> <apostrophe> <parenright> <Greek_OMEGA>      ", 0x1FAC) 
    2217 CheckCompUni("<Greek_iota> <apostrophe> <U0313> <Greek_OMEGA>   ", 0x1FAC) 
    2218 CheckCompUni("<Greek_iota> <acute> <parenright> <Greek_OMEGA>   ", 0x1FAC) 
    2219 CheckCompUni("<Greek_iota> <acute> <U0313> <Greek_OMEGA>        ", 0x1FAC) 
    2220 CheckCompUni("<Greek_iota> <dead_acute> <parenright> <Greek_OMEGA>      ", 0x1FAC) 
    2221 CheckCompUni("<Greek_iota> <dead_acute> <U0313> <Greek_OMEGA>   ", 0x1FAC) 
    2222 CheckCompUni("<Greek_iota> <apostrophe> <U1f68> ", 0x1FAC) 
    2223 CheckCompUni("<Greek_iota> <acute> <U1f68>      ", 0x1FAC) 
    2224 CheckCompUni("<Greek_iota> <dead_acute> <U1f68> ", 0x1FAC) 
    2225 CheckCompUni("<Greek_iota> <U1f6c>      ", 0x1FAC) 
    2226 CheckCompUni("<Greek_iota> <combining_acute> <parenleft> <Greek_OMEGA>  ", 0x1FAD) 
    2227 CheckCompUni("<Greek_iota> <combining_acute> <U0314> <Greek_OMEGA>      ", 0x1FAD) 
    2228 CheckCompUni("<Greek_iota> <combining_acute> <U1f69>    ", 0x1FAD) 
    2229 CheckCompUni("<Greek_iota> <apostrophe> <parenleft> <Greek_OMEGA>       ", 0x1FAD) 
    2230 CheckCompUni("<Greek_iota> <apostrophe> <U0314> <Greek_OMEGA>   ", 0x1FAD) 
    2231 CheckCompUni("<Greek_iota> <acute> <parenleft> <Greek_OMEGA>    ", 0x1FAD) 
    2232 CheckCompUni("<Greek_iota> <acute> <U0314> <Greek_OMEGA>        ", 0x1FAD) 
    2233 CheckCompUni("<Greek_iota> <dead_acute> <parenleft> <Greek_OMEGA>       ", 0x1FAD) 
    2234 CheckCompUni("<Greek_iota> <dead_acute> <U0314> <Greek_OMEGA>   ", 0x1FAD) 
    2235 CheckCompUni("<Greek_iota> <apostrophe> <U1f69> ", 0x1FAD) 
    2236 CheckCompUni("<Greek_iota> <acute> <U1f69>      ", 0x1FAD) 
    2237 CheckCompUni("<Greek_iota> <dead_acute> <U1f69> ", 0x1FAD) 
    2238 CheckCompUni("<Greek_iota> <U1f6d>      ", 0x1FAD) 
    2239 CheckCompUni("<Greek_iota> <asciitilde> <parenright> <Greek_OMEGA>      ", 0x1FAE) 
    2240 CheckCompUni("<Greek_iota> <asciitilde> <U0313> <Greek_OMEGA>   ", 0x1FAE) 
    2241 CheckCompUni("<Greek_iota> <dead_tilde> <parenright> <Greek_OMEGA>      ", 0x1FAE) 
    2242 CheckCompUni("<Greek_iota> <dead_tilde> <U0313> <Greek_OMEGA>   ", 0x1FAE) 
    2243 CheckCompUni("<Greek_iota> <U0342> <parenright> <Greek_OMEGA>   ", 0x1FAE) 
    2244 CheckCompUni("<Greek_iota> <U0342> <U0313> <Greek_OMEGA>        ", 0x1FAE) 
    2245 CheckCompUni("<Greek_iota> <asciitilde> <U1f68> ", 0x1FAE) 
    2246 CheckCompUni("<Greek_iota> <dead_tilde> <U1f68> ", 0x1FAE) 
    2247 CheckCompUni("<Greek_iota> <U0342> <U1f68>      ", 0x1FAE) 
    2248 CheckCompUni("<Greek_iota> <U1f6e>      ", 0x1FAE) 
    2249 CheckCompUni("<Greek_iota> <asciitilde> <parenleft> <Greek_OMEGA>       ", 0x1FAF) 
    2250 CheckCompUni("<Greek_iota> <asciitilde> <U0314> <Greek_OMEGA>   ", 0x1FAF) 
    2251 CheckCompUni("<Greek_iota> <dead_tilde> <parenleft> <Greek_OMEGA>       ", 0x1FAF) 
    2252 CheckCompUni("<Greek_iota> <dead_tilde> <U0314> <Greek_OMEGA>   ", 0x1FAF) 
    2253 CheckCompUni("<Greek_iota> <U0342> <parenleft> <Greek_OMEGA>    ", 0x1FAF) 
    2254 CheckCompUni("<Greek_iota> <U0342> <U0314> <Greek_OMEGA>        ", 0x1FAF) 
    2255 CheckCompUni("<Greek_iota> <asciitilde> <U1f69> ", 0x1FAF) 
    2256 CheckCompUni("<Greek_iota> <dead_tilde> <U1f69> ", 0x1FAF) 
    2257 CheckCompUni("<Greek_iota> <U0342> <U1f69>      ", 0x1FAF) 
    2258 CheckCompUni("<Greek_iota> <U1f6f>      ", 0x1FAF) 
    2259 CheckCompUni("<b> <Greek_alpha> ", 0x1FB0) 
    2260 CheckCompUni("<U> <Greek_alpha> ", 0x1FB0) 
    2261 CheckCompUni("<underscore> <Greek_alpha>        ", 0x1FB1) 
    2262 CheckCompUni("<macron> <Greek_alpha>    ", 0x1FB1) 
    2263 CheckCompUni("<Greek_iota> <combining_grave> <Greek_alpha>      ", 0x1FB2) 
    2264 CheckCompUni("<Greek_iota> <grave> <Greek_alpha>        ", 0x1FB2) 
    2265 CheckCompUni("<Greek_iota> <dead_grave> <Greek_alpha>   ", 0x1FB2) 
    2266 CheckCompUni("<Greek_iota> <U1f70>      ", 0x1FB2) 
    2267 CheckCompUni("<Greek_iota> <Greek_alpha>        ", 0x1FB3) 
    2268 CheckCompUni("<Greek_iota> <combining_acute> <Greek_alpha>      ", 0x1FB4) 
    2269 CheckCompUni("<Greek_iota> <apostrophe> <Greek_alpha>   ", 0x1FB4) 
    2270 CheckCompUni("<Greek_iota> <acute> <Greek_alpha>        ", 0x1FB4) 
    2271 CheckCompUni("<Greek_iota> <dead_acute> <Greek_alpha>   ", 0x1FB4) 
    2272 CheckCompUni("<Greek_iota> <Greek_alphaaccent>  ", 0x1FB4) 
    2273 CheckCompUni("<asciitilde> <Greek_alpha>        ", 0x1FB6) 
    2274 CheckCompUni("<Greek_iota> <asciitilde> <Greek_alpha>   ", 0x1FB7) 
    2275 CheckCompUni("<Greek_iota> <dead_tilde> <Greek_alpha>   ", 0x1FB7) 
    2276 CheckCompUni("<Greek_iota> <U0342> <Greek_alpha>        ", 0x1FB7) 
    2277 CheckCompUni("<Greek_iota> <U1fb6>      ", 0x1FB7) 
    2278 CheckCompUni("<b> <Greek_ALPHA> ", 0x1FB8) 
    2279 CheckCompUni("<U> <Greek_ALPHA> ", 0x1FB8) 
    2280 CheckCompUni("<underscore> <Greek_ALPHA>        ", 0x1FB9) 
    2281 CheckCompUni("<macron> <Greek_ALPHA>    ", 0x1FB9) 
    2282 CheckCompUni("<grave> <Greek_ALPHA>     ", 0x1FBA) 
    2283 CheckCompUni("<Greek_iota> <Greek_ALPHA>        ", 0x1FBC) 
    2284 CheckCompUni("<diaeresis> <asciitilde>  ", 0x1FC1) 
    2285 CheckCompUni("<diaeresis> <dead_tilde>  ", 0x1FC1) 
    2286 CheckCompUni("<diaeresis> <U0342>       ", 0x1FC1) 
    2287 CheckCompUni("<Greek_iota> <combining_grave> <Greek_eta>        ", 0x1FC2) 
    2288 CheckCompUni("<Greek_iota> <grave> <Greek_eta>  ", 0x1FC2) 
    2289 CheckCompUni("<Greek_iota> <dead_grave> <Greek_eta>     ", 0x1FC2) 
    2290 CheckCompUni("<Greek_iota> <U1f74>      ", 0x1FC2) 
    2291 CheckCompUni("<Greek_iota> <Greek_eta>  ", 0x1FC3) 
    2292 CheckCompUni("<Greek_iota> <combining_acute> <Greek_eta>        ", 0x1FC4) 
    2293 CheckCompUni("<Greek_iota> <apostrophe> <Greek_eta>     ", 0x1FC4) 
    2294 CheckCompUni("<Greek_iota> <acute> <Greek_eta>  ", 0x1FC4) 
    2295 CheckCompUni("<Greek_iota> <dead_acute> <Greek_eta>     ", 0x1FC4) 
    2296 CheckCompUni("<Greek_iota> <Greek_etaaccent>    ", 0x1FC4) 
    2297 CheckCompUni("<asciitilde> <Greek_eta>  ", 0x1FC6) 
    2298 CheckCompUni("<Greek_iota> <asciitilde> <Greek_eta>     ", 0x1FC7) 
    2299 CheckCompUni("<Greek_iota> <dead_tilde> <Greek_eta>     ", 0x1FC7) 
    2300 CheckCompUni("<Greek_iota> <U0342> <Greek_eta>  ", 0x1FC7) 
    2301 CheckCompUni("<Greek_iota> <U1fc6>      ", 0x1FC7) 
    2302 CheckCompUni("<grave> <Greek_EPSILON>   ", 0x1FC8) 
    2303 CheckCompUni("<grave> <Greek_ETA>       ", 0x1FCA) 
    2304 CheckCompUni("<Greek_iota> <Greek_ETA>  ", 0x1FCC) 
    2305 CheckCompUni("<U1fbf> <combining_grave> ", 0x1FCD) 
    2306 CheckCompUni("<U1fbf> <grave>   ", 0x1FCD) 
    2307 CheckCompUni("<U1fbf> <dead_grave>      ", 0x1FCD) 
    2308 CheckCompUni("<U1fbf> <combining_acute> ", 0x1FCE) 
    2309 CheckCompUni("<U1fbf> <apostrophe>      ", 0x1FCE) 
    2310 CheckCompUni("<U1fbf> <acute>   ", 0x1FCE) 
    2311 CheckCompUni("<U1fbf> <dead_acute>      ", 0x1FCE) 
    2312 CheckCompUni("<U1fbf> <asciitilde>      ", 0x1FCF) 
    2313 CheckCompUni("<U1fbf> <dead_tilde>      ", 0x1FCF) 
    2314 CheckCompUni("<U1fbf> <U0342>   ", 0x1FCF) 
    2315 CheckCompUni("<b> <Greek_iota>  ", 0x1FD0) 
    2316 CheckCompUni("<U> <Greek_iota>  ", 0x1FD0) 
    2317 CheckCompUni("<underscore> <Greek_iota> ", 0x1FD1) 
    2318 CheckCompUni("<macron> <Greek_iota>     ", 0x1FD1) 
    2319 CheckCompUni("<grave> <quotedbl> <Greek_iota>   ", 0x1FD2) 
    2320 CheckCompUni("<grave> <dead_diaeresis> <Greek_iota>     ", 0x1FD2) 
    2321 CheckCompUni("<grave> <Greek_iotadieresis>      ", 0x1FD2) 
    2322 CheckCompUni("<asciitilde> <Greek_iota> ", 0x1FD6) 
    2323 CheckCompUni("<asciitilde> <quotedbl> <Greek_iota>      ", 0x1FD7) 
    2324 CheckCompUni("<asciitilde> <dead_diaeresis> <Greek_iota>        ", 0x1FD7) 
    2325 CheckCompUni("<asciitilde> <Greek_iotadieresis> ", 0x1FD7) 
    2326 CheckCompUni("<b> <Greek_IOTA>  ", 0x1FD8) 
    2327 CheckCompUni("<U> <Greek_IOTA>  ", 0x1FD8) 
    2328 CheckCompUni("<underscore> <Greek_IOTA> ", 0x1FD9) 
    2329 CheckCompUni("<macron> <Greek_IOTA>     ", 0x1FD9) 
    2330 CheckCompUni("<grave> <Greek_IOTA>      ", 0x1FDA) 
    2331 CheckCompUni("<U1ffe> <combining_grave> ", 0x1FDD) 
    2332 CheckCompUni("<U1ffe> <grave>   ", 0x1FDD) 
    2333 CheckCompUni("<U1ffe> <dead_grave>      ", 0x1FDD) 
    2334 CheckCompUni("<U1ffe> <combining_acute> ", 0x1FDE) 
    2335 CheckCompUni("<U1ffe> <apostrophe>      ", 0x1FDE) 
    2336 CheckCompUni("<U1ffe> <acute>   ", 0x1FDE) 
    2337 CheckCompUni("<U1ffe> <dead_acute>      ", 0x1FDE) 
    2338 CheckCompUni("<U1ffe> <asciitilde>      ", 0x1FDF) 
    2339 CheckCompUni("<U1ffe> <dead_tilde>      ", 0x1FDF) 
    2340 CheckCompUni("<U1ffe> <U0342>   ", 0x1FDF) 
    2341 CheckCompUni("<b> <Greek_upsilon>       ", 0x1FE0) 
    2342 CheckCompUni("<U> <Greek_upsilon>       ", 0x1FE0) 
    2343 CheckCompUni("<underscore> <Greek_upsilon>      ", 0x1FE1) 
    2344 CheckCompUni("<macron> <Greek_upsilon>  ", 0x1FE1) 
    2345 CheckCompUni("<grave> <quotedbl> <Greek_upsilon>        ", 0x1FE2) 
    2346 CheckCompUni("<grave> <dead_diaeresis> <Greek_upsilon>  ", 0x1FE2) 
    2347 CheckCompUni("<grave> <Greek_upsilondieresis>   ", 0x1FE2) 
    2348 CheckCompUni("<parenright> <Greek_rho>  ", 0x1FE4) 
    2349 CheckCompUni("<parenleft> <Greek_rho>   ", 0x1FE5) 
    2350 CheckCompUni("<asciitilde> <Greek_upsilon>      ", 0x1FE6) 
    2351 CheckCompUni("<asciitilde> <quotedbl> <Greek_upsilon>   ", 0x1FE7) 
    2352 CheckCompUni("<asciitilde> <dead_diaeresis> <Greek_upsilon>     ", 0x1FE7) 
    2353 CheckCompUni("<asciitilde> <Greek_upsilondieresis>      ", 0x1FE7) 
    2354 CheckCompUni("<b> <Greek_UPSILON>       ", 0x1FE8) 
    2355 CheckCompUni("<U> <Greek_UPSILON>       ", 0x1FE8) 
    2356 CheckCompUni("<underscore> <Greek_UPSILON>      ", 0x1FE9) 
    2357 CheckCompUni("<macron> <Greek_UPSILON>  ", 0x1FE9) 
    2358 CheckCompUni("<grave> <Greek_UPSILON>   ", 0x1FEA) 
    2359 CheckCompUni("<parenleft> <Greek_RHO>   ", 0x1FEC) 
    2360 CheckCompUni("<diaeresis> <combining_grave>     ", 0x1FED) 
    2361 CheckCompUni("<diaeresis> <grave>       ", 0x1FED) 
    2362 CheckCompUni("<diaeresis> <dead_grave>  ", 0x1FED) 
    2363 CheckCompUni("<Greek_iota> <combining_grave> <Greek_omega>      ", 0x1FF2) 
    2364 CheckCompUni("<Greek_iota> <grave> <Greek_omega>        ", 0x1FF2) 
    2365 CheckCompUni("<Greek_iota> <dead_grave> <Greek_omega>   ", 0x1FF2) 
    2366 CheckCompUni("<Greek_iota> <U1f7c>      ", 0x1FF2) 
    2367 CheckCompUni("<Greek_iota> <Greek_omega>        ", 0x1FF3) 
    2368 CheckCompUni("<Greek_iota> <combining_acute> <Greek_omega>      ", 0x1FF4) 
    2369 CheckCompUni("<Greek_iota> <apostrophe> <Greek_omega>   ", 0x1FF4) 
    2370 CheckCompUni("<Greek_iota> <acute> <Greek_omega>        ", 0x1FF4) 
    2371 CheckCompUni("<Greek_iota> <dead_acute> <Greek_omega>   ", 0x1FF4) 
    2372 CheckCompUni("<Greek_iota> <Greek_omegaaccent>  ", 0x1FF4) 
    2373 CheckCompUni("<asciitilde> <Greek_omega>        ", 0x1FF6) 
    2374 CheckCompUni("<Greek_iota> <asciitilde> <Greek_omega>   ", 0x1FF7) 
    2375 CheckCompUni("<Greek_iota> <dead_tilde> <Greek_omega>   ", 0x1FF7) 
    2376 CheckCompUni("<Greek_iota> <U0342> <Greek_omega>        ", 0x1FF7) 
    2377 CheckCompUni("<Greek_iota> <U1ff6>      ", 0x1FF7) 
    2378 CheckCompUni("<grave> <Greek_OMICRON>   ", 0x1FF8) 
    2379 CheckCompUni("<grave> <Greek_OMEGA>     ", 0x1FFA) 
    2380 CheckCompUni("<Greek_iota> <Greek_OMEGA>        ", 0x1FFC) 
    2381 CheckCompUni("<percent> <o>             ", 0x2030) 
     669CheckCompUni("<minus> <L>", 0xA3) 
     670CheckCompUni("<L> <minus>", 0xA3) 
     671CheckCompUni("<c> <T>", 0x164) 
     672CheckCompUni("<c> <t>", 0x165) 
     673CheckCompUni("<comma> <T>", 0x162) 
     674CheckCompUni("<comma> <t>", 0x163) 
     675CheckCompUni("<T> <H>", 0xDE) 
     676CheckCompUni("<t> <h>", 0xFE) 
     677CheckCompUni("<3> <4>", 0xBE) 
     678CheckCompUni("<asciicircum> <KP_3>", 0xB3) 
     679CheckCompUni("<asciicircum> <3>", 0xB3) 
     680CheckCompUni("<asciicircum> <T> <M>", 0x2122) 
     681CheckCompUni("<KP_Divide> <T>", 0x166) 
     682CheckCompUni("<slash> <T>", 0x166) 
     683CheckCompUni("<KP_Divide> <t>", 0x167) 
     684CheckCompUni("<slash> <t>", 0x167) 
     685CheckCompUni("<asciicircum> <KP_2>", 0xB2) 
     686CheckCompUni("<asciicircum> <KP_Space>", 0xB2) 
     687CheckCompUni("<asciicircum> <2>", 0xB2) 
     688CheckCompUni("<b> <E>", 0x114) 
     689CheckCompUni("<U> <E>", 0x114) 
     690CheckCompUni("<b> <e>", 0x115) 
     691CheckCompUni("<U> <e>", 0x115) 
     692CheckCompUni("<b> <I>", 0x12C) 
     693CheckCompUni("<U> <I>", 0x12C) 
     694CheckCompUni("<b> <i>", 0x12D) 
     695CheckCompUni("<U> <i>", 0x12D) 
     696CheckCompUni("<b> <O>", 0x14E) 
     697CheckCompUni("<U> <O>", 0x14E) 
     698CheckCompUni("<b> <o>", 0x14F) 
     699CheckCompUni("<U> <o>", 0x14F) 
     700CheckCompUni("<asciicircum> <W>", 0x174) 
     701CheckCompUni("<asciicircum> <w>", 0x175) 
     702CheckCompUni("<asciicircum> <Y>", 0x176) 
     703CheckCompUni("<asciicircum> <y>", 0x177) 
     704CheckCompUni("<f> <S>", 0x17F) 
     705CheckCompUni("<f> <s>", 0x17F) 
     706CheckCompUni("<KP_Divide> <b>", 0x180) 
     707CheckCompUni("<slash> <b>", 0x180) 
     708CheckCompUni("<KP_Divide> <I>", 0x197) 
     709CheckCompUni("<slash> <I>", 0x197) 
     710CheckCompUni("<plus> <O>", 0x1A0) 
     711CheckCompUni("<plus> <o>", 0x1A1) 
     712CheckCompUni("<plus> <U>", 0x1AF) 
     713CheckCompUni("<plus> <u>", 0x1B0) 
     714CheckCompUni("<KP_Divide> <Z>", 0x1B5) 
     715CheckCompUni("<slash> <Z>", 0x1B5) 
     716CheckCompUni("<KP_Divide> <z>", 0x1B6) 
     717CheckCompUni("<slash> <z>", 0x1B6) 
     718CheckCompUni("<c> <A>", 0x1CD) 
     719CheckCompUni("<c> <a>", 0x1CE) 
     720CheckCompUni("<c> <I>", 0x1CF) 
     721CheckCompUni("<c> <i>", 0x1D0) 
     722CheckCompUni("<c> <O>", 0x1D1) 
     723CheckCompUni("<c> <o>", 0x1D2) 
     724CheckCompUni("<c> <U>", 0x1D3) 
     725CheckCompUni("<c> <u>", 0x1D4) 
     726CheckCompUni("<underscore> <quotedbl> <U>", 0x1D5) 
     727CheckCompUni("<underscore> <dead_diaeresis> <U>", 0x1D5) 
     728CheckCompUni("<macron> <quotedbl> <U>", 0x1D5) 
     729CheckCompUni("<macron> <dead_diaeresis> <U>", 0x1D5) 
     730CheckCompUni("<underscore> <Udiaeresis>", 0x1D5) 
     731CheckCompUni("<macron> <Udiaeresis>", 0x1D5) 
     732CheckCompUni("<underscore> <quotedbl> <u>", 0x1D6) 
     733CheckCompUni("<underscore> <dead_diaeresis> <u>", 0x1D6) 
     734CheckCompUni("<macron> <quotedbl> <u>", 0x1D6) 
     735CheckCompUni("<macron> <dead_diaeresis> <u>", 0x1D6) 
     736CheckCompUni("<underscore> <udiaeresis>", 0x1D6) 
     737CheckCompUni("<macron> <udiaeresis>", 0x1D6) 
     738CheckCompUni("<apostrophe> <quotedbl> <U>", 0x1D7) 
     739CheckCompUni("<apostrophe> <dead_diaeresis> <U>", 0x1D7) 
     740CheckCompUni("<acute> <quotedbl> <U>", 0x1D7) 
     741CheckCompUni("<acute> <dead_diaeresis> <U>", 0x1D7) 
     742CheckCompUni("<apostrophe> <Udiaeresis>", 0x1D7) 
     743CheckCompUni("<acute> <Udiaeresis>", 0x1D7) 
     744CheckCompUni("<apostrophe> <quotedbl> <u>", 0x1D8) 
     745CheckCompUni("<apostrophe> <dead_diaeresis> <u>", 0x1D8) 
     746CheckCompUni("<acute> <quotedbl> <u>", 0x1D8) 
     747CheckCompUni("<acute> <dead_diaeresis> <u>", 0x1D8) 
     748CheckCompUni("<apostrophe> <udiaeresis>", 0x1D8) 
     749CheckCompUni("<acute> <udiaeresis>", 0x1D8) 
     750CheckCompUni("<c> <quotedbl> <U>", 0x1D9) 
     751CheckCompUni("<c> <dead_diaeresis> <U>", 0x1D9) 
     752CheckCompUni("<c> <Udiaeresis>", 0x1D9) 
     753CheckCompUni("<c> <quotedbl> <u>", 0x1DA) 
     754CheckCompUni("<c> <dead_diaeresis> <u>", 0x1DA) 
     755CheckCompUni("<c> <udiaeresis>", 0x1DA) 
     756CheckCompUni("<grave> <quotedbl> <U>", 0x1DB) 
     757CheckCompUni("<grave> <dead_diaeresis> <U>", 0x1DB) 
     758CheckCompUni("<grave> <Udiaeresis>", 0x1DB) 
     759CheckCompUni("<grave> <quotedbl> <u>", 0x1DC) 
     760CheckCompUni("<grave> <dead_diaeresis> <u>", 0x1DC) 
     761CheckCompUni("<grave> <udiaeresis>", 0x1DC) 
     762CheckCompUni("<underscore> <quotedbl> <A>", 0x1DE) 
     763CheckCompUni("<underscore> <dead_diaeresis> <A>", 0x1DE) 
     764CheckCompUni("<macron> <quotedbl> <A>", 0x1DE) 
     765CheckCompUni("<macron> <dead_diaeresis> <A>", 0x1DE) 
     766CheckCompUni("<underscore> <Adiaeresis>", 0x1DE) 
     767CheckCompUni("<macron> <Adiaeresis>", 0x1DE) 
     768CheckCompUni("<underscore> <quotedbl> <a>", 0x1DF) 
     769CheckCompUni("<underscore> <dead_diaeresis> <a>", 0x1DF) 
     770CheckCompUni("<macron> <quotedbl> <a>", 0x1DF) 
     771CheckCompUni("<macron> <dead_diaeresis> <a>", 0x1DF) 
     772CheckCompUni("<underscore> <adiaeresis>", 0x1DF) 
     773CheckCompUni("<macron> <adiaeresis>", 0x1DF) 
     774CheckCompUni("<underscore> <period> <A>", 0x1E0) 
     775CheckCompUni("<underscore> <dead_abovedot> <A>", 0x1E0) 
     776CheckCompUni("<macron> <period> <A>", 0x1E0) 
     777CheckCompUni("<macron> <dead_abovedot> <A>", 0x1E0) 
     778CheckCompUni("<underscore> <U0226>", 0x1E0) 
     779CheckCompUni("<macron> <U0226>", 0x1E0) 
     780CheckCompUni("<underscore> <period> <a>", 0x1E1) 
     781CheckCompUni("<underscore> <dead_abovedot> <a>", 0x1E1) 
     782CheckCompUni("<macron> <period> <a>", 0x1E1) 
     783CheckCompUni("<macron> <dead_abovedot> <a>", 0x1E1) 
     784CheckCompUni("<underscore> <U0227>", 0x1E1) 
     785CheckCompUni("<macron> <U0227>", 0x1E1) 
     786CheckCompUni("<underscore> <AE>", 0x1E2) 
     787CheckCompUni("<macron> <AE>", 0x1E2) 
     788CheckCompUni("<underscore> <ae>", 0x1E3) 
     789CheckCompUni("<macron> <ae>", 0x1E3) 
     790CheckCompUni("<KP_Divide> <G>", 0x1E4) 
     791CheckCompUni("<slash> <G>", 0x1E4) 
     792CheckCompUni("<KP_Divide> <g>", 0x1E5) 
     793CheckCompUni("<slash> <g>", 0x1E5) 
     794CheckCompUni("<c> <G>", 0x1E6) 
     795CheckCompUni("<c> <g>", 0x1E7) 
     796CheckCompUni("<c> <K>", 0x1E8) 
     797CheckCompUni("<c> <k>", 0x1E9) 
     798CheckCompUni("<semicolon> <O>", 0x1EA) 
     799CheckCompUni("<semicolon> <o>", 0x1EB) 
     800CheckCompUni("<underscore> <semicolon> <O>", 0x1EC) 
     801CheckCompUni("<underscore> <dead_ogonek> <O>", 0x1EC) 
     802CheckCompUni("<macron> <semicolon> <O>", 0x1EC) 
     803CheckCompUni("<macron> <dead_ogonek> <O>", 0x1EC) 
     804CheckCompUni("<underscore> <U01ea>", 0x1EC) 
     805CheckCompUni("<macron> <U01ea>", 0x1EC) 
     806CheckCompUni("<underscore> <semicolon> <o>", 0x1ED) 
     807CheckCompUni("<underscore> <dead_ogonek> <o>", 0x1ED) 
     808CheckCompUni("<macron> <semicolon> <o>", 0x1ED) 
     809CheckCompUni("<macron> <dead_ogonek> <o>", 0x1ED) 
     810CheckCompUni("<underscore> <U01eb>", 0x1ED) 
     811CheckCompUni("<macron> <U01eb>", 0x1ED) 
     812CheckCompUni("<c> <U01b7>", 0x1EE) 
     813CheckCompUni("<c> <U0292>", 0x1EF) 
     814CheckCompUni("<c> <j>", 0x1F0) 
     815CheckCompUni("<apostrophe> <G>", 0x1F4) 
     816CheckCompUni("<acute> <G>", 0x1F4) 
     817CheckCompUni("<apostrophe> <g>", 0x1F5) 
     818CheckCompUni("<acute> <g>", 0x1F5) 
     819CheckCompUni("<grave> <N>", 0x1F8) 
     820CheckCompUni("<grave> <n>", 0x1F9) 
     821CheckCompUni("<o> <apostrophe> <A>", 0x1FA) 
     822CheckCompUni("<apostrophe> <dead_abovering> <A>", 0x1FA) 
     823CheckCompUni("<acute> <o> <A>", 0x1FA) 
     824CheckCompUni("<acute> <dead_abovering> <A>", 0x1FA) 
     825CheckCompUni("<apostrophe> <Aring>", 0x1FA) 
     826CheckCompUni("<acute> <Aring>", 0x1FA) 
     827CheckCompUni("<o> <apostrophe> <a>", 0x1FB) 
     828CheckCompUni("<apostrophe> <dead_abovering> <a>", 0x1FB) 
     829CheckCompUni("<acute> <o> <a>", 0x1FB) 
     830CheckCompUni("<acute> <dead_abovering> <a>", 0x1FB) 
     831CheckCompUni("<apostrophe> <aring>", 0x1FB) 
     832CheckCompUni("<acute> <aring>", 0x1FB) 
     833CheckCompUni("<apostrophe> <AE>", 0x1FC) 
     834CheckCompUni("<acute> <AE>", 0x1FC) 
     835CheckCompUni("<apostrophe> <ae>", 0x1FD) 
     836CheckCompUni("<acute> <ae>", 0x1FD) 
     837CheckCompUni("<apostrophe> <KP_Divide> <O>", 0x1FE) 
     838CheckCompUni("<acute> <KP_Divide> <O>", 0x1FE) 
     839CheckCompUni("<apostrophe> <slash> <O>", 0x1FE) 
     840CheckCompUni("<acute> <slash> <O>", 0x1FE) 
     841CheckCompUni("<apostrophe> <Ooblique>", 0x1FE) 
     842CheckCompUni("<acute> <Ooblique>", 0x1FE) 
     843CheckCompUni("<apostrophe> <KP_Divide> <o>", 0x1FF) 
     844CheckCompUni("<acute> <KP_Divide> <o>", 0x1FF) 
     845CheckCompUni("<apostrophe> <slash> <o>", 0x1FF) 
     846CheckCompUni("<acute> <slash> <o>", 0x1FF) 
     847CheckCompUni("<apostrophe> <oslash>", 0x1FF) 
     848CheckCompUni("<acute> <oslash>", 0x1FF) 
     849CheckCompUni("<c> <H>", 0x21E) 
     850CheckCompUni("<c> <h>", 0x21F) 
     851CheckCompUni("<period> <A>", 0x226) 
     852CheckCompUni("<period> <a>", 0x227) 
     853CheckCompUni("<comma> <E>", 0x228) 
     854CheckCompUni("<comma> <e>", 0x229) 
     855CheckCompUni("<underscore> <quotedbl> <O>", 0x22A) 
     856CheckCompUni("<underscore> <dead_diaeresis> <O>", 0x22A) 
     857CheckCompUni("<macron> <quotedbl> <O>", 0x22A) 
     858CheckCompUni("<macron> <dead_diaeresis> <O>", 0x22A) 
     859CheckCompUni("<underscore> <Odiaeresis>", 0x22A) 
     860CheckCompUni("<macron> <Odiaeresis>", 0x22A) 
     861CheckCompUni("<underscore> <quotedbl> <o>", 0x22B) 
     862CheckCompUni("<underscore> <dead_diaeresis> <o>", 0x22B) 
     863CheckCompUni("<macron> <quotedbl> <o>", 0x22B) 
     864CheckCompUni("<macron> <dead_diaeresis> <o>", 0x22B) 
     865CheckCompUni("<underscore> <odiaeresis>", 0x22B) 
     866CheckCompUni("<macron> <odiaeresis>", 0x22B) 
     867CheckCompUni("<underscore> <combining_tilde> <O>", 0x22C) 
     868CheckCompUni("<macron> <combining_tilde> <O>", 0x22C) 
     869CheckCompUni("<underscore> <asciitilde> <O>", 0x22C) 
     870CheckCompUni("<underscore> <dead_tilde> <O>", 0x22C) 
     871CheckCompUni("<macron> <asciitilde> <O>", 0x22C) 
     872CheckCompUni("<macron> <dead_tilde> <O>", 0x22C) 
     873CheckCompUni("<underscore> <Otilde>", 0x22C) 
     874CheckCompUni("<macron> <Otilde>", 0x22C) 
     875CheckCompUni("<underscore> <combining_tilde> <o>", 0x22D) 
     876CheckCompUni("<macron> <combining_tilde> <o>", 0x22D) 
     877CheckCompUni("<underscore> <asciitilde> <o>", 0x22D) 
     878CheckCompUni("<underscore> <dead_tilde> <o>", 0x22D) 
     879CheckCompUni("<macron> <asciitilde> <o>", 0x22D) 
     880CheckCompUni("<macron> <dead_tilde> <o>", 0x22D) 
     881CheckCompUni("<underscore> <otilde>", 0x22D) 
     882CheckCompUni("<macron> <otilde>", 0x22D) 
     883CheckCompUni("<period> <O>", 0x22E) 
     884CheckCompUni("<period> <o>", 0x22F) 
     885CheckCompUni("<underscore> <period> <O>", 0x230) 
     886CheckCompUni("<underscore> <dead_abovedot> <O>", 0x230) 
     887CheckCompUni("<macron> <period> <O>", 0x230) 
     888CheckCompUni("<macron> <dead_abovedot> <O>", 0x230) 
     889CheckCompUni("<underscore> <U022e>", 0x230) 
     890CheckCompUni("<macron> <U022e>", 0x230) 
     891CheckCompUni("<underscore> <period> <o>", 0x231) 
     892CheckCompUni("<underscore> <dead_abovedot> <o>", 0x231) 
     893CheckCompUni("<macron> <period> <o>", 0x231) 
     894CheckCompUni("<macron> <dead_abovedot> <o>", 0x231) 
     895CheckCompUni("<underscore> <U022f>", 0x231) 
     896CheckCompUni("<macron> <U022f>", 0x231) 
     897CheckCompUni("<underscore> <Y>", 0x232) 
     898CheckCompUni("<macron> <Y>", 0x232) 
     899CheckCompUni("<underscore> <y>", 0x233) 
     900CheckCompUni("<macron> <y>", 0x233) 
     901CheckCompUni("<e> <e>", 0x259) 
     902CheckCompUni("<KP_Divide> <i>", 0x268) 
     903CheckCompUni("<slash> <i>", 0x268) 
     904CheckCompUni("<KP_Divide> <U0294>", 0x2A1) 
     905CheckCompUni("<slash> <U0294>", 0x2A1) 
     906CheckCompUni("<asciicircum> <underbar> <h>", 0x2B0) 
     907CheckCompUni("<asciicircum> <underscore> <h>", 0x2B0) 
     908CheckCompUni("<asciicircum> <underbar> <U0266>", 0x2B1) 
     909CheckCompUni("<asciicircum> <underscore> <U0266>", 0x2B1) 
     910CheckCompUni("<asciicircum> <underbar> <j>", 0x2B2) 
     911CheckCompUni("<asciicircum> <underscore> <j>", 0x2B2) 
     912CheckCompUni("<asciicircum> <underbar> <r>", 0x2B3) 
     913CheckCompUni("<asciicircum> <underscore> <r>", 0x2B3) 
     914CheckCompUni("<asciicircum> <underbar> <U0279>", 0x2B4) 
     915CheckCompUni("<asciicircum> <underscore> <U0279>", 0x2B4) 
     916CheckCompUni("<asciicircum> <underbar> <U027b>", 0x2B5) 
     917CheckCompUni("<asciicircum> <underscore> <U027b>", 0x2B5) 
     918CheckCompUni("<asciicircum> <underbar> <U0281>", 0x2B6) 
     919CheckCompUni("<asciicircum> <underscore> <U0281>", 0x2B6) 
     920CheckCompUni("<asciicircum> <underbar> <w>", 0x2B7) 
     921CheckCompUni("<asciicircum> <underscore> <w>", 0x2B7) 
     922CheckCompUni("<asciicircum> <underbar> <y>", 0x2B8) 
     923CheckCompUni("<asciicircum> <underscore> <y>", 0x2B8) 
     924CheckCompUni("<asciicircum> <underbar> <U0263>", 0x2E0) 
     925CheckCompUni("<asciicircum> <underscore> <U0263>", 0x2E0) 
     926CheckCompUni("<asciicircum> <underbar> <l>", 0x2E1) 
     927CheckCompUni("<asciicircum> <underscore> <l>", 0x2E1) 
     928CheckCompUni("<asciicircum> <underbar> <s>", 0x2E2) 
     929CheckCompUni("<asciicircum> <underscore> <s>", 0x2E2) 
     930CheckCompUni("<asciicircum> <underbar> <x>", 0x2E3) 
     931CheckCompUni("<asciicircum> <underscore> <x>", 0x2E3) 
     932CheckCompUni("<asciicircum> <underbar> <U0295>", 0x2E4) 
     933CheckCompUni("<asciicircum> <underscore> <U0295>", 0x2E4) 
     934CheckCompUni("<quotedbl> <combining_acute>", 0x344) 
     935CheckCompUni("<quotedbl> <apostrophe>", 0x344) 
     936CheckCompUni("<quotedbl> <acute>", 0x344) 
     937CheckCompUni("<quotedbl> <dead_acute>", 0x344) 
     938CheckCompUni("<apostrophe> <U03d2>", 0x3D3) 
     939CheckCompUni("<acute> <U03d2>", 0x3D3) 
     940CheckCompUni("<quotedbl> <U03d2>", 0x3D4) 
     941CheckCompUni("<period> <B>", 0x1E02) 
     942CheckCompUni("<period> <b>", 0x1E03) 
     943CheckCompUni("<exclam> <B>", 0x1E04) 
     944CheckCompUni("<exclam> <b>", 0x1E05) 
     945CheckCompUni("<apostrophe> <comma> <C>", 0x1E08) 
     946CheckCompUni("<apostrophe> <dead_cedilla> <C>", 0x1E08) 
     947CheckCompUni("<acute> <comma> <C>", 0x1E08) 
     948CheckCompUni("<acute> <dead_cedilla> <C>", 0x1E08) 
     949CheckCompUni("<apostrophe> <Ccedilla>", 0x1E08) 
     950CheckCompUni("<acute> <Ccedilla>", 0x1E08) 
     951CheckCompUni("<apostrophe> <comma> <c>", 0x1E09) 
     952CheckCompUni("<apostrophe> <dead_cedilla> <c>", 0x1E09) 
     953CheckCompUni("<acute> <comma> <c>", 0x1E09) 
     954CheckCompUni("<acute> <dead_cedilla> <c>", 0x1E09) 
     955CheckCompUni("<apostrophe> <ccedilla>", 0x1E09) 
     956CheckCompUni("<acute> <ccedilla>", 0x1E09) 
     957CheckCompUni("<period> <D>", 0x1E0A) 
     958CheckCompUni("<period> <d>", 0x1E0B) 
     959CheckCompUni("<exclam> <D>", 0x1E0C) 
     960CheckCompUni("<exclam> <d>", 0x1E0D) 
     961CheckCompUni("<comma> <D>", 0x1E10) 
     962CheckCompUni("<comma> <d>", 0x1E11) 
     963CheckCompUni("<grave> <underscore> <E>", 0x1E14) 
     964CheckCompUni("<grave> <macron> <E>", 0x1E14) 
     965CheckCompUni("<grave> <dead_macron> <E>", 0x1E14) 
     966CheckCompUni("<grave> <Emacron>", 0x1E14) 
     967CheckCompUni("<grave> <underscore> <e>", 0x1E15) 
     968CheckCompUni("<grave> <macron> <e>", 0x1E15) 
     969CheckCompUni("<grave> <dead_macron> <e>", 0x1E15) 
     970CheckCompUni("<grave> <emacron>", 0x1E15) 
     971CheckCompUni("<apostrophe> <underscore> <E>", 0x1E16) 
     972CheckCompUni("<apostrophe> <macron> <E>", 0x1E16) 
     973CheckCompUni("<apostrophe> <dead_macron> <E>", 0x1E16) 
     974CheckCompUni("<acute> <underscore> <E>", 0x1E16) 
     975CheckCompUni("<acute> <macron> <E>", 0x1E16) 
     976CheckCompUni("<acute> <dead_macron> <E>", 0x1E16) 
     977CheckCompUni("<apostrophe> <Emacron>", 0x1E16) 
     978CheckCompUni("<acute> <Emacron>", 0x1E16) 
     979CheckCompUni("<apostrophe> <underscore> <e>", 0x1E17) 
     980CheckCompUni("<apostrophe> <macron> <e>", 0x1E17) 
     981CheckCompUni("<apostrophe> <dead_macron> <e>", 0x1E17) 
     982CheckCompUni("<acute> <underscore> <e>", 0x1E17) 
     983CheckCompUni("<acute> <macron> <e>", 0x1E17) 
     984CheckCompUni("<acute> <dead_macron> <e>", 0x1E17) 
     985CheckCompUni("<apostrophe> <emacron>", 0x1E17) 
     986CheckCompUni("<acute> <emacron>", 0x1E17) 
     987CheckCompUni("<b> <comma> <E>", 0x1E1C) 
     988CheckCompUni("<b> <dead_cedilla> <E>", 0x1E1C) 
     989CheckCompUni("<U> <comma> <E>", 0x1E1C) 
     990CheckCompUni("<U> <dead_cedilla> <E>", 0x1E1C) 
     991CheckCompUni("<b> <U0228>", 0x1E1C) 
     992CheckCompUni("<U> <U0228>", 0x1E1C) 
     993CheckCompUni("<b> <comma> <e>", 0x1E1D) 
     994CheckCompUni("<b> <dead_cedilla> <e>", 0x1E1D) 
     995CheckCompUni("<U> <comma> <e>", 0x1E1D) 
     996CheckCompUni("<U> <dead_cedilla> <e>", 0x1E1D) 
     997CheckCompUni("<b> <U0229>", 0x1E1D) 
     998CheckCompUni("<U> <U0229>", 0x1E1D) 
     999CheckCompUni("<period> <F>", 0x1E1E) 
     1000CheckCompUni("<period> <f>", 0x1E1F) 
     1001CheckCompUni("<underscore> <G>", 0x1E20) 
     1002CheckCompUni("<macron> <G>", 0x1E20) 
     1003CheckCompUni("<underscore> <g>", 0x1E21) 
     1004CheckCompUni("<macron> <g>", 0x1E21) 
     1005CheckCompUni("<period> <H>", 0x1E22) 
     1006CheckCompUni("<period> <h>", 0x1E23) 
     1007CheckCompUni("<exclam> <H>", 0x1E24) 
     1008CheckCompUni("<exclam> <h>", 0x1E25) 
     1009CheckCompUni("<quotedbl> <H>", 0x1E26) 
     1010CheckCompUni("<quotedbl> <h>", 0x1E27) 
     1011CheckCompUni("<comma> <H>", 0x1E28) 
     1012CheckCompUni("<comma> <h>", 0x1E29) 
     1013CheckCompUni("<apostrophe> <quotedbl> <I>", 0x1E2E) 
     1014CheckCompUni("<apostrophe> <dead_diaeresis> <I>", 0x1E2E) 
     1015CheckCompUni("<acute> <quotedbl> <I>", 0x1E2E) 
     1016CheckCompUni("<acute> <dead_diaeresis> <I>", 0x1E2E) 
     1017CheckCompUni("<apostrophe> <Idiaeresis>", 0x1E2E) 
     1018CheckCompUni("<acute> <Idiaeresis>", 0x1E2E) 
     1019CheckCompUni("<apostrophe> <quotedbl> <i>", 0x1E2F) 
     1020CheckCompUni("<apostrophe> <dead_diaeresis> <i>", 0x1E2F) 
     1021CheckCompUni("<acute> <quotedbl> <i>", 0x1E2F) 
     1022CheckCompUni("<acute> <dead_diaeresis> <i>", 0x1E2F) 
     1023CheckCompUni("<apostrophe> <idiaeresis>", 0x1E2F) 
     1024CheckCompUni("<acute> <idiaeresis>", 0x1E2F) 
     1025CheckCompUni("<apostrophe> <K>", 0x1E30) 
     1026CheckCompUni("<acute> <K>", 0x1E30) 
     1027CheckCompUni("<apostrophe> <k>", 0x1E31) 
     1028CheckCompUni("<acute> <k>", 0x1E31) 
     1029CheckCompUni("<exclam> <K>", 0x1E32) 
     1030CheckCompUni("<exclam> <k>", 0x1E33) 
     1031CheckCompUni("<exclam> <L>", 0x1E36) 
     1032CheckCompUni("<exclam> <l>", 0x1E37) 
     1033CheckCompUni("<underscore> <combining_belowdot> <L>", 0x1E38) 
     1034CheckCompUni("<macron> <combining_belowdot> <L>", 0x1E38) 
     1035CheckCompUni("<underscore> <exclam> <L>", 0x1E38) 
     1036CheckCompUni("<underscore> <dead_belowdot> <L>", 0x1E38) 
     1037CheckCompUni("<macron> <exclam> <L>", 0x1E38) 
     1038CheckCompUni("<macron> <dead_belowdot> <L>", 0x1E38) 
     1039CheckCompUni("<underscore> <U1e36>", 0x1E38) 
     1040CheckCompUni("<macron> <U1e36>", 0x1E38) 
     1041CheckCompUni("<underscore> <combining_belowdot> <l>", 0x1E39) 
     1042CheckCompUni("<macron> <combining_belowdot> <l>", 0x1E39) 
     1043CheckCompUni("<underscore> <exclam> <l>", 0x1E39) 
     1044CheckCompUni("<underscore> <dead_belowdot> <l>", 0x1E39) 
     1045CheckCompUni("<macron> <exclam> <l>", 0x1E39) 
     1046CheckCompUni("<macron> <dead_belowdot> <l>", 0x1E39) 
     1047CheckCompUni("<underscore> <U1e37>", 0x1E39) 
     1048CheckCompUni("<macron> <U1e37>", 0x1E39) 
     1049CheckCompUni("<apostrophe> <M>", 0x1E3E) 
     1050CheckCompUni("<acute> <M>", 0x1E3E) 
     1051CheckCompUni("<apostrophe> <m>", 0x1E3F) 
     1052CheckCompUni("<acute> <m>", 0x1E3F) 
     1053CheckCompUni("<period> <M>", 0x1E40) 
     1054CheckCompUni("<period> <m>", 0x1E41) 
     1055CheckCompUni("<exclam> <M>", 0x1E42) 
     1056CheckCompUni("<exclam> <m>", 0x1E43) 
     1057CheckCompUni("<period> <N>", 0x1E44) 
     1058CheckCompUni("<period> <n>", 0x1E45) 
     1059CheckCompUni("<exclam> <N>", 0x1E46) 
     1060CheckCompUni("<exclam> <n>", 0x1E47) 
     1061CheckCompUni("<apostrophe> <combining_tilde> <O>", 0x1E4C) 
     1062CheckCompUni("<acute> <combining_tilde> <O>", 0x1E4C) 
     1063CheckCompUni("<apostrophe> <asciitilde> <O>", 0x1E4C) 
     1064CheckCompUni("<apostrophe> <dead_tilde> <O>", 0x1E4C) 
     1065CheckCompUni("<acute> <asciitilde> <O>", 0x1E4C) 
     1066CheckCompUni("<acute> <dead_tilde> <O>", 0x1E4C) 
     1067CheckCompUni("<apostrophe> <Otilde>", 0x1E4C) 
     1068CheckCompUni("<acute> <Otilde>", 0x1E4C) 
     1069CheckCompUni("<apostrophe> <combining_tilde> <o>", 0x1E4D) 
     1070CheckCompUni("<acute> <combining_tilde> <o>", 0x1E4D) 
     1071CheckCompUni("<apostrophe> <asciitilde> <o>", 0x1E4D) 
     1072CheckCompUni("<apostrophe> <dead_tilde> <o>", 0x1E4D) 
     1073CheckCompUni("<acute> <asciitilde> <o>", 0x1E4D) 
     1074CheckCompUni("<acute> <dead_tilde> <o>", 0x1E4D) 
     1075CheckCompUni("<apostrophe> <otilde>", 0x1E4D) 
     1076CheckCompUni("<acute> <otilde>", 0x1E4D) 
     1077CheckCompUni("<quotedbl> <combining_tilde> <O>", 0x1E4E) 
     1078CheckCompUni("<quotedbl> <asciitilde> <O>", 0x1E4E) 
     1079CheckCompUni("<quotedbl> <dead_tilde> <O>", 0x1E4E) 
     1080CheckCompUni("<quotedbl> <Otilde>", 0x1E4E) 
     1081CheckCompUni("<quotedbl> <combining_tilde> <o>", 0x1E4F) 
     1082CheckCompUni("<quotedbl> <asciitilde> <o>", 0x1E4F) 
     1083CheckCompUni("<quotedbl> <dead_tilde> <o>", 0x1E4F) 
     1084CheckCompUni("<quotedbl> <otilde>", 0x1E4F) 
     1085CheckCompUni("<grave> <underscore> <O>", 0x1E50) 
     1086CheckCompUni("<grave> <macron> <O>", 0x1E50) 
     1087CheckCompUni("<grave> <dead_macron> <O>", 0x1E50) 
     1088CheckCompUni("<grave> <Omacron>", 0x1E50) 
     1089CheckCompUni("<grave> <underscore> <o>", 0x1E51) 
     1090CheckCompUni("<grave> <macron> <o>", 0x1E51) 
     1091CheckCompUni("<grave> <dead_macron> <o>", 0x1E51) 
     1092CheckCompUni("<grave> <omacron>", 0x1E51) 
     1093CheckCompUni("<apostrophe> <underscore> <O>", 0x1E52) 
     1094CheckCompUni("<apostrophe> <macron> <O>", 0x1E52) 
     1095CheckCompUni("<apostrophe> <dead_macron> <O>", 0x1E52) 
     1096CheckCompUni("<acute> <underscore> <O>", 0x1E52) 
     1097CheckCompUni("<acute> <macron> <O>", 0x1E52) 
     1098CheckCompUni("<acute> <dead_macron> <O>", 0x1E52) 
     1099CheckCompUni("<apostrophe> <Omacron>", 0x1E52) 
     1100CheckCompUni("<acute> <Omacron>", 0x1E52) 
     1101CheckCompUni("<apostrophe> <underscore> <o>", 0x1E53) 
     1102CheckCompUni("<apostrophe> <macron> <o>", 0x1E53) 
     1103CheckCompUni("<apostrophe> <dead_macron> <o>", 0x1E53) 
     1104CheckCompUni("<acute> <underscore> <o>", 0x1E53) 
     1105CheckCompUni("<acute> <macron> <o>", 0x1E53) 
     1106CheckCompUni("<acute> <dead_macron> <o>", 0x1E53) 
     1107CheckCompUni("<apostrophe> <omacron>", 0x1E53) 
     1108CheckCompUni("<acute> <omacron>", 0x1E53) 
     1109CheckCompUni("<apostrophe> <P>", 0x1E54) 
     1110CheckCompUni("<acute> <P>", 0x1E54) 
     1111CheckCompUni("<apostrophe> <p>", 0x1E55) 
     1112CheckCompUni("<acute> <p>", 0x1E55) 
     1113CheckCompUni("<period> <P>", 0x1E56) 
     1114CheckCompUni("<period> <p>", 0x1E57) 
     1115CheckCompUni("<period> <R>", 0x1E58) 
     1116CheckCompUni("<period> <r>", 0x1E59) 
     1117CheckCompUni("<exclam> <R>", 0x1E5A) 
     1118CheckCompUni("<exclam> <r>", 0x1E5B) 
     1119CheckCompUni("<underscore> <combining_belowdot> <R>", 0x1E5C) 
     1120CheckCompUni("<macron> <combining_belowdot> <R>", 0x1E5C) 
     1121CheckCompUni("<underscore> <exclam> <R>", 0x1E5C) 
     1122CheckCompUni("<underscore> <dead_belowdot> <R>", 0x1E5C) 
     1123CheckCompUni("<macron> <exclam> <R>", 0x1E5C) 
     1124CheckCompUni("<macron> <dead_belowdot> <R>", 0x1E5C) 
     1125CheckCompUni("<underscore> <U1e5a>", 0x1E5C) 
     1126CheckCompUni("<macron> <U1e5a>", 0x1E5C) 
     1127CheckCompUni("<underscore> <combining_belowdot> <r>", 0x1E5D) 
     1128CheckCompUni("<macron> <combining_belowdot> <r>", 0x1E5D) 
     1129CheckCompUni("<underscore> <exclam> <r>", 0x1E5D) 
     1130CheckCompUni("<underscore> <dead_belowdot> <r>", 0x1E5D) 
     1131CheckCompUni("<macron> <exclam> <r>", 0x1E5D) 
     1132CheckCompUni("<macron> <dead_belowdot> <r>", 0x1E5D) 
     1133CheckCompUni("<underscore> <U1e5b>", 0x1E5D) 
     1134CheckCompUni("<macron> <U1e5b>", 0x1E5D) 
     1135CheckCompUni("<period> <S>", 0x1E60) 
     1136CheckCompUni("<period> <s>", 0x1E61) 
     1137CheckCompUni("<exclam> <S>", 0x1E62) 
     1138CheckCompUni("<exclam> <s>", 0x1E63) 
     1139CheckCompUni("<period> <combining_acute> <S>", 0x1E64) 
     1140CheckCompUni("<period> <apostrophe> <S>", 0x1E64) 
     1141CheckCompUni("<period> <acute> <S>", 0x1E64) 
     1142CheckCompUni("<period> <dead_acute> <S>", 0x1E64) 
     1143CheckCompUni("<period> <Sacute>", 0x1E64) 
     1144CheckCompUni("<period> <combining_acute> <s>", 0x1E65) 
     1145CheckCompUni("<period> <apostrophe> <s>", 0x1E65) 
     1146CheckCompUni("<period> <acute> <s>", 0x1E65) 
     1147CheckCompUni("<period> <dead_acute> <s>", 0x1E65) 
     1148CheckCompUni("<period> <sacute>", 0x1E65) 
     1149CheckCompUni("<period> <c> <S>", 0x1E66) 
     1150CheckCompUni("<period> <dead_caron> <S>", 0x1E66) 
     1151CheckCompUni("<period> <Scaron>", 0x1E66) 
     1152CheckCompUni("<period> <c> <s>", 0x1E67) 
     1153CheckCompUni("<period> <dead_caron> <s>", 0x1E67) 
     1154CheckCompUni("<period> <scaron>", 0x1E67) 
     1155CheckCompUni("<period> <combining_belowdot> <S>", 0x1E68) 
     1156CheckCompUni("<period> <exclam> <S>", 0x1E68) 
     1157CheckCompUni("<period> <dead_belowdot> <S>", 0x1E68) 
     1158CheckCompUni("<period> <U1e62>", 0x1E68) 
     1159CheckCompUni("<period> <combining_belowdot> <s>", 0x1E69) 
     1160CheckCompUni("<period> <exclam> <s>", 0x1E69) 
     1161CheckCompUni("<period> <dead_belowdot> <s>", 0x1E69) 
     1162CheckCompUni("<period> <U1e63>", 0x1E69) 
     1163CheckCompUni("<period> <T>", 0x1E6A) 
     1164CheckCompUni("<period> <t>", 0x1E6B) 
     1165CheckCompUni("<exclam> <T>", 0x1E6C) 
     1166CheckCompUni("<exclam> <t>", 0x1E6D) 
     1167CheckCompUni("<apostrophe> <combining_tilde> <U>", 0x1E78) 
     1168CheckCompUni("<acute> <combining_tilde> <U>", 0x1E78) 
     1169CheckCompUni("<apostrophe> <asciitilde> <U>", 0x1E78) 
     1170CheckCompUni("<apostrophe> <dead_tilde> <U>", 0x1E78) 
     1171CheckCompUni("<acute> <asciitilde> <U>", 0x1E78) 
     1172CheckCompUni("<acute> <dead_tilde> <U>", 0x1E78) 
     1173CheckCompUni("<apostrophe> <Utilde>", 0x1E78) 
     1174CheckCompUni("<acute> <Utilde>", 0x1E78) 
     1175CheckCompUni("<apostrophe> <combining_tilde> <u>", 0x1E79) 
     1176CheckCompUni("<acute> <combining_tilde> <u>", 0x1E79) 
     1177CheckCompUni("<apostrophe> <asciitilde> <u>", 0x1E79) 
     1178CheckCompUni("<apostrophe> <dead_tilde> <u>", 0x1E79) 
     1179CheckCompUni("<acute> <asciitilde> <u>", 0x1E79) 
     1180CheckCompUni("<acute> <dead_tilde> <u>", 0x1E79) 
     1181CheckCompUni("<apostrophe> <utilde>", 0x1E79) 
     1182CheckCompUni("<acute> <utilde>", 0x1E79) 
     1183CheckCompUni("<quotedbl> <underscore> <U>", 0x1E7A) 
     1184CheckCompUni("<quotedbl> <macron> <U>", 0x1E7A) 
     1185CheckCompUni("<quotedbl> <dead_macron> <U>", 0x1E7A) 
     1186CheckCompUni("<quotedbl> <Umacron>", 0x1E7A) 
     1187CheckCompUni("<quotedbl> <underscore> <u>", 0x1E7B) 
     1188CheckCompUni("<quotedbl> <macron> <u>", 0x1E7B) 
     1189CheckCompUni("<quotedbl> <dead_macron> <u>", 0x1E7B) 
     1190CheckCompUni("<quotedbl> <umacron>", 0x1E7B) 
     1191CheckCompUni("<asciitilde> <V>", 0x1E7C) 
     1192CheckCompUni("<asciitilde> <v>", 0x1E7D) 
     1193CheckCompUni("<exclam> <V>", 0x1E7E) 
     1194CheckCompUni("<exclam> <v>", 0x1E7F) 
     1195CheckCompUni("<grave> <W>", 0x1E80) 
     1196CheckCompUni("<grave> <w>", 0x1E81) 
     1197CheckCompUni("<apostrophe> <W>", 0x1E82) 
     1198CheckCompUni("<acute> <W>", 0x1E82) 
     1199CheckCompUni("<apostrophe> <w>", 0x1E83) 
     1200CheckCompUni("<acute> <w>", 0x1E83) 
     1201CheckCompUni("<quotedbl> <W>", 0x1E84) 
     1202CheckCompUni("<quotedbl> <w>", 0x1E85) 
     1203CheckCompUni("<period> <W>", 0x1E86) 
     1204CheckCompUni("<period> <w>", 0x1E87) 
     1205CheckCompUni("<exclam> <W>", 0x1E88) 
     1206CheckCompUni("<exclam> <w>", 0x1E89) 
     1207CheckCompUni("<period> <X>", 0x1E8A) 
     1208CheckCompUni("<period> <x>", 0x1E8B) 
     1209CheckCompUni("<quotedbl> <X>", 0x1E8C) 
     1210CheckCompUni("<quotedbl> <x>", 0x1E8D) 
     1211CheckCompUni("<period> <Y>", 0x1E8E) 
     1212CheckCompUni("<period> <y>", 0x1E8F) 
     1213CheckCompUni("<asciicircum> <Z>", 0x1E90) 
     1214CheckCompUni("<asciicircum> <z>", 0x1E91) 
     1215CheckCompUni("<exclam> <Z>", 0x1E92) 
     1216CheckCompUni("<exclam> <z>", 0x1E93) 
     1217CheckCompUni("<quotedbl> <t>", 0x1E97) 
     1218CheckCompUni("<o> <w>", 0x1E98) 
     1219CheckCompUni("<o> <y>", 0x1E99) 
     1220CheckCompUni("<period> <U017f>", 0x1E9B) 
     1221CheckCompUni("<exclam> <A>", 0x1EA0) 
     1222CheckCompUni("<exclam> <a>", 0x1EA1) 
     1223CheckCompUni("<question> <A>", 0x1EA2) 
     1224CheckCompUni("<question> <a>", 0x1EA3) 
     1225CheckCompUni("<apostrophe> <asciicircum> <A>", 0x1EA4) 
     1226CheckCompUni("<apostrophe> <dead_circumflex> <A>", 0x1EA4) 
     1227CheckCompUni("<acute> <asciicircum> <A>", 0x1EA4) 
     1228CheckCompUni("<acute> <dead_circumflex> <A>", 0x1EA4) 
     1229CheckCompUni("<apostrophe> <Acircumflex>", 0x1EA4) 
     1230CheckCompUni("<acute> <Acircumflex>", 0x1EA4) 
     1231CheckCompUni("<apostrophe> <asciicircum> <a>", 0x1EA5) 
     1232CheckCompUni("<apostrophe> <dead_circumflex> <a>", 0x1EA5) 
     1233CheckCompUni("<acute> <asciicircum> <a>", 0x1EA5) 
     1234CheckCompUni("<acute> <dead_circumflex> <a>", 0x1EA5) 
     1235CheckCompUni("<apostrophe> <acircumflex>", 0x1EA5) 
     1236CheckCompUni("<acute> <acircumflex>", 0x1EA5) 
     1237CheckCompUni("<grave> <asciicircum> <A>", 0x1EA6) 
     1238CheckCompUni("<grave> <dead_circumflex> <A>", 0x1EA6) 
     1239CheckCompUni("<grave> <Acircumflex>", 0x1EA6) 
     1240CheckCompUni("<grave> <asciicircum> <a>", 0x1EA7) 
     1241CheckCompUni("<grave> <dead_circumflex> <a>", 0x1EA7) 
     1242CheckCompUni("<grave> <acircumflex>", 0x1EA7) 
     1243CheckCompUni("<question> <asciicircum> <A>", 0x1EA8) 
     1244CheckCompUni("<question> <dead_circumflex> <A>", 0x1EA8) 
     1245CheckCompUni("<question> <Acircumflex>", 0x1EA8) 
     1246CheckCompUni("<question> <asciicircum> <a>", 0x1EA9) 
     1247CheckCompUni("<question> <dead_circumflex> <a>", 0x1EA9) 
     1248CheckCompUni("<question> <acircumflex>", 0x1EA9) 
     1249CheckCompUni("<asciitilde> <asciicircum> <A>", 0x1EAA) 
     1250CheckCompUni("<asciitilde> <dead_circumflex> <A>", 0x1EAA) 
     1251CheckCompUni("<asciitilde> <Acircumflex>", 0x1EAA) 
     1252CheckCompUni("<asciitilde> <asciicircum> <a>", 0x1EAB) 
     1253CheckCompUni("<asciitilde> <dead_circumflex> <a>", 0x1EAB) 
     1254CheckCompUni("<asciitilde> <acircumflex>", 0x1EAB) 
     1255CheckCompUni("<asciicircum> <combining_belowdot> <A>", 0x1EAC) 
     1256CheckCompUni("<asciicircum> <exclam> <A>", 0x1EAC) 
     1257CheckCompUni("<asciicircum> <dead_belowdot> <A>", 0x1EAC) 
     1258CheckCompUni("<asciicircum> <U1ea0>", 0x1EAC) 
     1259CheckCompUni("<asciicircum> <combining_belowdot> <a>", 0x1EAD) 
     1260CheckCompUni("<asciicircum> <exclam> <a>", 0x1EAD) 
     1261CheckCompUni("<asciicircum> <dead_belowdot> <a>", 0x1EAD) 
     1262CheckCompUni("<asciicircum> <U1ea1>", 0x1EAD) 
     1263CheckCompUni("<apostrophe> <b> <A>", 0x1EAE) 
     1264CheckCompUni("<apostrophe> <U> <A>", 0x1EAE) 
     1265CheckCompUni("<apostrophe> <dead_breve> <A>", 0x1EAE) 
     1266CheckCompUni("<acute> <b> <A>", 0x1EAE) 
     1267CheckCompUni("<acute> <U> <A>", 0x1EAE) 
     1268CheckCompUni("<acute> <dead_breve> <A>", 0x1EAE) 
     1269CheckCompUni("<apostrophe> <Abreve>", 0x1EAE) 
     1270CheckCompUni("<acute> <Abreve>", 0x1EAE) 
     1271CheckCompUni("<apostrophe> <b> <a>", 0x1EAF) 
     1272CheckCompUni("<apostrophe> <U> <a>", 0x1EAF) 
     1273CheckCompUni("<apostrophe> <dead_breve> <a>", 0x1EAF) 
     1274CheckCompUni("<acute> <b> <a>", 0x1EAF) 
     1275CheckCompUni("<acute> <U> <a>", 0x1EAF) 
     1276CheckCompUni("<acute> <dead_breve> <a>", 0x1EAF) 
     1277CheckCompUni("<apostrophe> <abreve>", 0x1EAF) 
     1278CheckCompUni("<acute> <abreve>", 0x1EAF) 
     1279CheckCompUni("<grave> <b> <A>", 0x1EB0) 
     1280CheckCompUni("<grave> <U> <A>", 0x1EB0) 
     1281CheckCompUni("<grave> <dead_breve> <A>", 0x1EB0) 
     1282CheckCompUni("<grave> <Abreve>", 0x1EB0) 
     1283CheckCompUni("<grave> <b> <a>", 0x1EB1) 
     1284CheckCompUni("<grave> <U> <a>", 0x1EB1) 
     1285CheckCompUni("<grave> <dead_breve> <a>", 0x1EB1) 
     1286CheckCompUni("<grave> <abreve>", 0x1EB1) 
     1287CheckCompUni("<question> <b> <A>", 0x1EB2) 
     1288CheckCompUni("<question> <U> <A>", 0x1EB2) 
     1289CheckCompUni("<question> <dead_breve> <A>", 0x1EB2) 
     1290CheckCompUni("<question> <Abreve>", 0x1EB2) 
     1291CheckCompUni("<question> <b> <a>", 0x1EB3) 
     1292CheckCompUni("<question> <U> <a>", 0x1EB3) 
     1293CheckCompUni("<question> <dead_breve> <a>", 0x1EB3) 
     1294CheckCompUni("<question> <abreve>", 0x1EB3) 
     1295CheckCompUni("<asciitilde> <b> <A>", 0x1EB4) 
     1296CheckCompUni("<asciitilde> <U> <A>", 0x1EB4) 
     1297CheckCompUni("<asciitilde> <dead_breve> <A>", 0x1EB4) 
     1298CheckCompUni("<asciitilde> <Abreve>", 0x1EB4) 
     1299CheckCompUni("<asciitilde> <b> <a>", 0x1EB5) 
     1300CheckCompUni("<asciitilde> <U> <a>", 0x1EB5) 
     1301CheckCompUni("<asciitilde> <dead_breve> <a>", 0x1EB5) 
     1302CheckCompUni("<asciitilde> <abreve>", 0x1EB5) 
     1303CheckCompUni("<b> <combining_belowdot> <A>", 0x1EB6) 
     1304CheckCompUni("<U> <combining_belowdot> <A>", 0x1EB6) 
     1305CheckCompUni("<b> <exclam> <A>", 0x1EB6) 
     1306CheckCompUni("<b> <dead_belowdot> <A>", 0x1EB6) 
     1307CheckCompUni("<U> <exclam> <A>", 0x1EB6) 
     1308CheckCompUni("<U> <dead_belowdot> <A>", 0x1EB6) 
     1309CheckCompUni("<b> <U1ea0>", 0x1EB6) 
     1310CheckCompUni("<U> <U1ea0>", 0x1EB6) 
     1311CheckCompUni("<b> <combining_belowdot> <a>", 0x1EB7) 
     1312CheckCompUni("<U> <combining_belowdot> <a>", 0x1EB7) 
     1313CheckCompUni("<b> <exclam> <a>", 0x1EB7) 
     1314CheckCompUni("<b> <dead_belowdot> <a>", 0x1EB7) 
     1315CheckCompUni("<U> <exclam> <a>", 0x1EB7) 
     1316CheckCompUni("<U> <dead_belowdot> <a>", 0x1EB7) 
     1317CheckCompUni("<b> <U1ea1>", 0x1EB7) 
     1318CheckCompUni("<U> <U1ea1>", 0x1EB7) 
     1319CheckCompUni("<exclam> <E>", 0x1EB8) 
     1320CheckCompUni("<exclam> <e>", 0x1EB9) 
     1321CheckCompUni("<question> <E>", 0x1EBA) 
     1322CheckCompUni("<question> <e>", 0x1EBB) 
     1323CheckCompUni("<asciitilde> <E>", 0x1EBC) 
     1324CheckCompUni("<asciitilde> <e>", 0x1EBD) 
     1325CheckCompUni("<apostrophe> <asciicircum> <E>", 0x1EBE) 
     1326CheckCompUni("<apostrophe> <dead_circumflex> <E>", 0x1EBE) 
     1327CheckCompUni("<acute> <asciicircum> <E>", 0x1EBE) 
     1328CheckCompUni("<acute> <dead_circumflex> <E>", 0x1EBE) 
     1329CheckCompUni("<apostrophe> <Ecircumflex>", 0x1EBE) 
     1330CheckCompUni("<acute> <Ecircumflex>", 0x1EBE) 
     1331CheckCompUni("<apostrophe> <asciicircum> <e>", 0x1EBF) 
     1332CheckCompUni("<apostrophe> <dead_circumflex> <e>", 0x1EBF) 
     1333CheckCompUni("<acute> <asciicircum> <e>", 0x1EBF) 
     1334CheckCompUni("<acute> <dead_circumflex> <e>", 0x1EBF) 
     1335CheckCompUni("<apostrophe> <ecircumflex>", 0x1EBF) 
     1336CheckCompUni("<acute> <ecircumflex>", 0x1EBF) 
     1337CheckCompUni("<grave> <asciicircum> <E>", 0x1EC0) 
     1338CheckCompUni("<grave> <dead_circumflex> <E>", 0x1EC0) 
     1339CheckCompUni("<grave> <Ecircumflex>", 0x1EC0) 
     1340CheckCompUni("<grave> <asciicircum> <e>", 0x1EC1) 
     1341CheckCompUni("<grave> <dead_circumflex> <e>", 0x1EC1) 
     1342CheckCompUni("<grave> <ecircumflex>", 0x1EC1) 
     1343CheckCompUni("<question> <asciicircum> <E>", 0x1EC2) 
     1344CheckCompUni("<question> <dead_circumflex> <E>", 0x1EC2) 
     1345CheckCompUni("<question> <Ecircumflex>", 0x1EC2) 
     1346CheckCompUni("<question> <asciicircum> <e>", 0x1EC3) 
     1347CheckCompUni("<question> <dead_circumflex> <e>", 0x1EC3) 
     1348CheckCompUni("<question> <ecircumflex>", 0x1EC3) 
     1349CheckCompUni("<asciitilde> <asciicircum> <E>", 0x1EC4) 
     1350CheckCompUni("<asciitilde> <dead_circumflex> <E>", 0x1EC4) 
     1351CheckCompUni("<asciitilde> <Ecircumflex>", 0x1EC4) 
     1352CheckCompUni("<asciitilde> <asciicircum> <e>", 0x1EC5) 
     1353CheckCompUni("<asciitilde> <dead_circumflex> <e>", 0x1EC5) 
     1354CheckCompUni("<asciitilde> <ecircumflex>", 0x1EC5) 
     1355CheckCompUni("<asciicircum> <combining_belowdot> <E>", 0x1EC6) 
     1356CheckCompUni("<asciicircum> <exclam> <E>", 0x1EC6) 
     1357CheckCompUni("<asciicircum> <dead_belowdot> <E>", 0x1EC6) 
     1358CheckCompUni("<asciicircum> <U1eb8>", 0x1EC6) 
     1359CheckCompUni("<asciicircum> <combining_belowdot> <e>", 0x1EC7) 
     1360CheckCompUni("<asciicircum> <exclam> <e>", 0x1EC7) 
     1361CheckCompUni("<asciicircum> <dead_belowdot> <e>", 0x1EC7) 
     1362CheckCompUni("<asciicircum> <U1eb9>", 0x1EC7) 
     1363CheckCompUni("<question> <I>", 0x1EC8) 
     1364CheckCompUni("<question> <i>", 0x1EC9) 
     1365CheckCompUni("<exclam> <I>", 0x1ECA) 
     1366CheckCompUni("<exclam> <i>", 0x1ECB) 
     1367CheckCompUni("<exclam> <O>", 0x1ECC) 
     1368CheckCompUni("<exclam> <o>", 0x1ECD) 
     1369CheckCompUni("<question> <O>", 0x1ECE) 
     1370CheckCompUni("<question> <o>", 0x1ECF) 
     1371CheckCompUni("<apostrophe> <asciicircum> <O>", 0x1ED0) 
     1372CheckCompUni("<apostrophe> <dead_circumflex> <O>", 0x1ED0) 
     1373CheckCompUni("<acute> <asciicircum> <O>", 0x1ED0) 
     1374CheckCompUni("<acute> <dead_circumflex> <O>", 0x1ED0) 
     1375CheckCompUni("<apostrophe> <Ocircumflex>", 0x1ED0) 
     1376CheckCompUni("<acute> <Ocircumflex>", 0x1ED0) 
     1377CheckCompUni("<apostrophe> <asciicircum> <o>", 0x1ED1) 
     1378CheckCompUni("<apostrophe> <dead_circumflex> <o>", 0x1ED1) 
     1379CheckCompUni("<acute> <asciicircum> <o>", 0x1ED1) 
     1380CheckCompUni("<acute> <dead_circumflex> <o>", 0x1ED1) 
     1381CheckCompUni("<apostrophe> <ocircumflex>", 0x1ED1) 
     1382CheckCompUni("<acute> <ocircumflex>", 0x1ED1) 
     1383CheckCompUni("<grave> <asciicircum> <O>", 0x1ED2) 
     1384CheckCompUni("<grave> <dead_circumflex> <O>", 0x1ED2) 
     1385CheckCompUni("<grave> <Ocircumflex>", 0x1ED2) 
     1386CheckCompUni("<grave> <asciicircum> <o>", 0x1ED3) 
     1387CheckCompUni("<grave> <dead_circumflex> <o>", 0x1ED3) 
     1388CheckCompUni("<grave> <ocircumflex>", 0x1ED3) 
     1389CheckCompUni("<question> <asciicircum> <O>", 0x1ED4) 
     1390CheckCompUni("<question> <dead_circumflex> <O>", 0x1ED4) 
     1391CheckCompUni("<question> <Ocircumflex>", 0x1ED4) 
     1392CheckCompUni("<question> <asciicircum> <o>", 0x1ED5) 
     1393CheckCompUni("<question> <dead_circumflex> <o>", 0x1ED5) 
     1394CheckCompUni("<question> <ocircumflex>", 0x1ED5) 
     1395CheckCompUni("<asciitilde> <asciicircum> <O>", 0x1ED6) 
     1396CheckCompUni("<asciitilde> <dead_circumflex> <O>", 0x1ED6) 
     1397CheckCompUni("<asciitilde> <Ocircumflex>", 0x1ED6) 
     1398CheckCompUni("<asciitilde> <asciicircum> <o>", 0x1ED7) 
     1399CheckCompUni("<asciitilde> <dead_circumflex> <o>", 0x1ED7) 
     1400CheckCompUni("<asciitilde> <ocircumflex>", 0x1ED7) 
     1401CheckCompUni("<asciicircum> <combining_belowdot> <O>", 0x1ED8) 
     1402CheckCompUni("<asciicircum> <exclam> <O>", 0x1ED8) 
     1403CheckCompUni("<asciicircum> <dead_belowdot> <O>", 0x1ED8) 
     1404CheckCompUni("<asciicircum> <U1ecc>", 0x1ED8) 
     1405CheckCompUni("<asciicircum> <combining_belowdot> <o>", 0x1ED9) 
     1406CheckCompUni("<asciicircum> <exclam> <o>", 0x1ED9) 
     1407CheckCompUni("<asciicircum> <dead_belowdot> <o>", 0x1ED9) 
     1408CheckCompUni("<asciicircum> <U1ecd>", 0x1ED9) 
     1409CheckCompUni("<apostrophe> <plus> <O>", 0x1EDA) 
     1410CheckCompUni("<apostrophe> <dead_horn> <O>", 0x1EDA) 
     1411CheckCompUni("<acute> <plus> <O>", 0x1EDA) 
     1412CheckCompUni("<acute> <dead_horn> <O>", 0x1EDA) 
     1413CheckCompUni("<apostrophe> <Ohorn>", 0x1EDA) 
     1414CheckCompUni("<acute> <Ohorn>", 0x1EDA) 
     1415CheckCompUni("<apostrophe> <plus> <o>", 0x1EDB) 
     1416CheckCompUni("<apostrophe> <dead_horn> <o>", 0x1EDB) 
     1417CheckCompUni("<acute> <plus> <o>", 0x1EDB) 
     1418CheckCompUni("<acute> <dead_horn> <o>", 0x1EDB) 
     1419CheckCompUni("<apostrophe> <ohorn>", 0x1EDB) 
     1420CheckCompUni("<acute> <ohorn>", 0x1EDB) 
     1421CheckCompUni("<grave> <plus> <O>", 0x1EDC) 
     1422CheckCompUni("<grave> <dead_horn> <O>", 0x1EDC) 
     1423CheckCompUni("<grave> <Ohorn>", 0x1EDC) 
     1424CheckCompUni("<grave> <plus> <o>", 0x1EDD) 
     1425CheckCompUni("<grave> <dead_horn> <o>", 0x1EDD) 
     1426CheckCompUni("<grave> <ohorn>", 0x1EDD) 
     1427CheckCompUni("<question> <plus> <O>", 0x1EDE) 
     1428CheckCompUni("<question> <dead_horn> <O>", 0x1EDE) 
     1429CheckCompUni("<question> <Ohorn>", 0x1EDE) 
     1430CheckCompUni("<question> <plus> <o>", 0x1EDF) 
     1431CheckCompUni("<question> <dead_horn> <o>", 0x1EDF) 
     1432CheckCompUni("<question> <ohorn>", 0x1EDF) 
     1433CheckCompUni("<asciitilde> <plus> <O>", 0x1EE0) 
     1434CheckCompUni("<asciitilde> <dead_horn> <O>", 0x1EE0) 
     1435CheckCompUni("<asciitilde> <Ohorn>", 0x1EE0) 
     1436CheckCompUni("<asciitilde> <plus> <o>", 0x1EE1) 
     1437CheckCompUni("<asciitilde> <dead_horn> <o>", 0x1EE1) 
     1438CheckCompUni("<asciitilde> <ohorn>", 0x1EE1) 
     1439CheckCompUni("<exclam> <plus> <O>", 0x1EE2) 
     1440CheckCompUni("<exclam> <dead_horn> <O>", 0x1EE2) 
     1441CheckCompUni("<exclam> <Ohorn>", 0x1EE2) 
     1442CheckCompUni("<exclam> <plus> <o>", 0x1EE3) 
     1443CheckCompUni("<exclam> <dead_horn> <o>", 0x1EE3) 
     1444CheckCompUni("<exclam> <ohorn>", 0x1EE3) 
     1445CheckCompUni("<exclam> <U>", 0x1EE4) 
     1446CheckCompUni("<exclam> <u>", 0x1EE5) 
     1447CheckCompUni("<question> <U>", 0x1EE6) 
     1448CheckCompUni("<question> <u>", 0x1EE7) 
     1449CheckCompUni("<apostrophe> <plus> <U>", 0x1EE8) 
     1450CheckCompUni("<apostrophe> <dead_horn> <U>", 0x1EE8) 
     1451CheckCompUni("<acute> <plus> <U>", 0x1EE8) 
     1452CheckCompUni("<acute> <dead_horn> <U>", 0x1EE8) 
     1453CheckCompUni("<apostrophe> <Uhorn>", 0x1EE8) 
     1454CheckCompUni("<acute> <Uhorn>", 0x1EE8) 
     1455CheckCompUni("<apostrophe> <plus> <u>", 0x1EE9) 
     1456CheckCompUni("<apostrophe> <dead_horn> <u>", 0x1EE9) 
     1457CheckCompUni("<acute> <plus> <u>", 0x1EE9) 
     1458CheckCompUni("<acute> <dead_horn> <u>", 0x1EE9) 
     1459CheckCompUni("<apostrophe> <uhorn>", 0x1EE9) 
     1460CheckCompUni("<acute> <uhorn>", 0x1EE9) 
     1461CheckCompUni("<grave> <plus> <U>", 0x1EEA) 
     1462CheckCompUni("<grave> <dead_horn> <U>", 0x1EEA) 
     1463CheckCompUni("<grave> <Uhorn>", 0x1EEA) 
     1464CheckCompUni("<grave> <plus> <u>", 0x1EEB) 
     1465CheckCompUni("<grave> <dead_horn> <u>", 0x1EEB) 
     1466CheckCompUni("<grave> <uhorn>", 0x1EEB) 
     1467CheckCompUni("<question> <plus> <U>", 0x1EEC) 
     1468CheckCompUni("<question> <dead_horn> <U>", 0x1EEC) 
     1469CheckCompUni("<question> <Uhorn>", 0x1EEC) 
     1470CheckCompUni("<question> <plus> <u>", 0x1EED) 
     1471CheckCompUni("<question> <dead_horn> <u>", 0x1EED) 
     1472CheckCompUni("<question> <uhorn>", 0x1EED) 
     1473CheckCompUni("<asciitilde> <plus> <U>", 0x1EEE) 
     1474CheckCompUni("<asciitilde> <dead_horn> <U>", 0x1EEE) 
     1475CheckCompUni("<asciitilde> <Uhorn>", 0x1EEE) 
     1476CheckCompUni("<asciitilde> <plus> <u>", 0x1EEF) 
     1477CheckCompUni("<asciitilde> <dead_horn> <u>", 0x1EEF) 
     1478CheckCompUni("<asciitilde> <uhorn>", 0x1EEF) 
     1479CheckCompUni("<exclam> <plus> <U>", 0x1EF0) 
     1480CheckCompUni("<exclam> <dead_horn> <U>", 0x1EF0) 
     1481CheckCompUni("<exclam> <Uhorn>", 0x1EF0) 
     1482CheckCompUni("<exclam> <plus> <u>", 0x1EF1) 
     1483CheckCompUni("<exclam> <dead_horn> <u>", 0x1EF1) 
     1484CheckCompUni("<exclam> <uhorn>", 0x1EF1) 
     1485CheckCompUni("<grave> <Y>", 0x1EF2) 
     1486CheckCompUni("<grave> <y>", 0x1EF3) 
     1487CheckCompUni("<exclam> <Y>", 0x1EF4) 
     1488CheckCompUni("<exclam> <y>", 0x1EF5) 
     1489CheckCompUni("<question> <Y>", 0x1EF6) 
     1490CheckCompUni("<question> <y>", 0x1EF7) 
     1491CheckCompUni("<asciitilde> <Y>", 0x1EF8) 
     1492CheckCompUni("<asciitilde> <y>", 0x1EF9) 
     1493CheckCompUni("<parenright> <Greek_alpha>", 0x1F00) 
     1494CheckCompUni("<parenleft> <Greek_alpha>", 0x1F01) 
     1495CheckCompUni("<grave> <parenright> <Greek_alpha>", 0x1F02) 
     1496CheckCompUni("<grave> <U0313> <Greek_alpha>", 0x1F02) 
     1497CheckCompUni("<grave> <U1f00>", 0x1F02) 
     1498CheckCompUni("<grave> <parenleft> <Greek_alpha>", 0x1F03) 
     1499CheckCompUni("<grave> <U0314> <Greek_alpha>", 0x1F03) 
     1500CheckCompUni("<grave> <U1f01>", 0x1F03) 
     1501CheckCompUni("<apostrophe> <parenright> <Greek_alpha>", 0x1F04) 
     1502CheckCompUni("<apostrophe> <U0313> <Greek_alpha>", 0x1F04) 
     1503CheckCompUni("<acute> <parenright> <Greek_alpha>", 0x1F04) 
     1504CheckCompUni("<acute> <U0313> <Greek_alpha>", 0x1F04) 
     1505CheckCompUni("<apostrophe> <U1f00>", 0x1F04) 
     1506CheckCompUni("<acute> <U1f00>", 0x1F04) 
     1507CheckCompUni("<apostrophe> <parenleft> <Greek_alpha>", 0x1F05) 
     1508CheckCompUni("<apostrophe> <U0314> <Greek_alpha>", 0x1F05) 
     1509CheckCompUni("<acute> <parenleft> <Greek_alpha>", 0x1F05) 
     1510CheckCompUni("<acute> <U0314> <Greek_alpha>", 0x1F05) 
     1511CheckCompUni("<apostrophe> <U1f01>", 0x1F05) 
     1512CheckCompUni("<acute> <U1f01>", 0x1F05) 
     1513CheckCompUni("<asciitilde> <parenright> <Greek_alpha>", 0x1F06) 
     1514CheckCompUni("<asciitilde> <U0313> <Greek_alpha>", 0x1F06) 
     1515CheckCompUni("<asciitilde> <U1f00>", 0x1F06) 
     1516CheckCompUni("<asciitilde> <parenleft> <Greek_alpha>", 0x1F07) 
     1517CheckCompUni("<asciitilde> <U0314> <Greek_alpha>", 0x1F07) 
     1518CheckCompUni("<asciitilde> <U1f01>", 0x1F07) 
     1519CheckCompUni("<parenright> <Greek_ALPHA>", 0x1F08) 
     1520CheckCompUni("<parenleft> <Greek_ALPHA>", 0x1F09) 
     1521CheckCompUni("<grave> <parenright> <Greek_ALPHA>", 0x1F0A) 
     1522CheckCompUni("<grave> <U0313> <Greek_ALPHA>", 0x1F0A) 
     1523CheckCompUni("<grave> <U1f08>", 0x1F0A) 
     1524CheckCompUni("<grave> <parenleft> <Greek_ALPHA>", 0x1F0B) 
     1525CheckCompUni("<grave> <U0314> <Greek_ALPHA>", 0x1F0B) 
     1526CheckCompUni("<grave> <U1f09>", 0x1F0B) 
     1527CheckCompUni("<apostrophe> <parenright> <Greek_ALPHA>", 0x1F0C) 
     1528CheckCompUni("<apostrophe> <U0313> <Greek_ALPHA>", 0x1F0C) 
     1529CheckCompUni("<acute> <parenright> <Greek_ALPHA>", 0x1F0C) 
     1530CheckCompUni("<acute> <U0313> <Greek_ALPHA>", 0x1F0C) 
     1531CheckCompUni("<apostrophe> <U1f08>", 0x1F0C) 
     1532CheckCompUni("<acute> <U1f08>", 0x1F0C) 
     1533CheckCompUni("<apostrophe> <parenleft> <Greek_ALPHA>", 0x1F0D) 
     1534CheckCompUni("<apostrophe> <U0314> <Greek_ALPHA>", 0x1F0D) 
     1535CheckCompUni("<acute> <parenleft> <Greek_ALPHA>", 0x1F0D) 
     1536CheckCompUni("<acute> <U0314> <Greek_ALPHA>", 0x1F0D) 
     1537CheckCompUni("<apostrophe> <U1f09>", 0x1F0D) 
     1538CheckCompUni("<acute> <U1f09>", 0x1F0D) 
     1539CheckCompUni("<asciitilde> <parenright> <Greek_ALPHA>", 0x1F0E) 
     1540CheckCompUni("<asciitilde> <U0313> <Greek_ALPHA>", 0x1F0E) 
     1541CheckCompUni("<asciitilde> <U1f08>", 0x1F0E) 
     1542CheckCompUni("<asciitilde> <parenleft> <Greek_ALPHA>", 0x1F0F) 
     1543CheckCompUni("<asciitilde> <U0314> <Greek_ALPHA>", 0x1F0F) 
     1544CheckCompUni("<asciitilde> <U1f09>", 0x1F0F) 
     1545CheckCompUni("<parenright> <Greek_epsilon>", 0x1F10) 
     1546CheckCompUni("<parenleft> <Greek_epsilon>", 0x1F11) 
     1547CheckCompUni("<grave> <parenright> <Greek_epsilon>", 0x1F12) 
     1548CheckCompUni("<grave> <U0313> <Greek_epsilon>", 0x1F12) 
     1549CheckCompUni("<grave> <U1f10>", 0x1F12) 
     1550CheckCompUni("<grave> <parenleft> <Greek_epsilon>", 0x1F13) 
     1551CheckCompUni("<grave> <U0314> <Greek_epsilon>", 0x1F13) 
     1552CheckCompUni("<grave> <U1f11>", 0x1F13) 
     1553CheckCompUni("<apostrophe> <parenright> <Greek_epsilon>", 0x1F14) 
     1554CheckCompUni("<apostrophe> <U0313> <Greek_epsilon>", 0x1F14) 
     1555CheckCompUni("<acute> <parenright> <Greek_epsilon>", 0x1F14) 
     1556CheckCompUni("<acute> <U0313> <Greek_epsilon>", 0x1F14) 
     1557CheckCompUni("<apostrophe> <U1f10>", 0x1F14) 
     1558CheckCompUni("<acute> <U1f10>", 0x1F14) 
     1559CheckCompUni("<apostrophe> <parenleft> <Greek_epsilon>", 0x1F15) 
     1560CheckCompUni("<apostrophe> <U0314> <Greek_epsilon>", 0x1F15) 
     1561CheckCompUni("<acute> <parenleft> <Greek_epsilon>", 0x1F15) 
     1562CheckCompUni("<acute> <U0314> <Greek_epsilon>", 0x1F15) 
     1563CheckCompUni("<apostrophe> <U1f11>", 0x1F15) 
     1564CheckCompUni("<acute> <U1f11>", 0x1F15) 
     1565CheckCompUni("<parenright> <Greek_EPSILON>", 0x1F18) 
     1566CheckCompUni("<parenleft> <Greek_EPSILON>", 0x1F19) 
     1567CheckCompUni("<grave> <parenright> <Greek_EPSILON>", 0x1F1A) 
     1568CheckCompUni("<grave> <U0313> <Greek_EPSILON>", 0x1F1A) 
     1569CheckCompUni("<grave> <U1f18>", 0x1F1A) 
     1570CheckCompUni("<grave> <parenleft> <Greek_EPSILON>", 0x1F1B) 
     1571CheckCompUni("<grave> <U0314> <Greek_EPSILON>", 0x1F1B) 
     1572CheckCompUni("<grave> <U1f19>", 0x1F1B) 
     1573CheckCompUni("<apostrophe> <parenright> <Greek_EPSILON>", 0x1F1C) 
     1574CheckCompUni("<apostrophe> <U0313> <Greek_EPSILON>", 0x1F1C) 
     1575CheckCompUni("<acute> <parenright> <Greek_EPSILON>", 0x1F1C) 
     1576CheckCompUni("<acute> <U0313> <Greek_EPSILON>", 0x1F1C) 
     1577CheckCompUni("<apostrophe> <U1f18>", 0x1F1C) 
     1578CheckCompUni("<acute> <U1f18>", 0x1F1C) 
     1579CheckCompUni("<apostrophe> <parenleft> <Greek_EPSILON>", 0x1F1D) 
     1580CheckCompUni("<apostrophe> <U0314> <Greek_EPSILON>", 0x1F1D) 
     1581CheckCompUni("<acute> <parenleft> <Greek_EPSILON>", 0x1F1D) 
     1582CheckCompUni("<acute> <U0314> <Greek_EPSILON>", 0x1F1D) 
     1583CheckCompUni("<apostrophe> <U1f19>", 0x1F1D) 
     1584CheckCompUni("<acute> <U1f19>", 0x1F1D) 
     1585CheckCompUni("<parenright> <Greek_eta>", 0x1F20) 
     1586CheckCompUni("<parenleft> <Greek_eta>", 0x1F21) 
     1587CheckCompUni("<grave> <parenright> <Greek_eta>", 0x1F22) 
     1588CheckCompUni("<grave> <U0313> <Greek_eta>", 0x1F22) 
     1589CheckCompUni("<grave> <U1f20>", 0x1F22) 
     1590CheckCompUni("<grave> <parenleft> <Greek_eta>", 0x1F23) 
     1591CheckCompUni("<grave> <U0314> <Greek_eta>", 0x1F23) 
     1592CheckCompUni("<grave> <U1f21>", 0x1F23) 
     1593CheckCompUni("<apostrophe> <parenright> <Greek_eta>", 0x1F24) 
     1594CheckCompUni("<apostrophe> <U0313> <Greek_eta>", 0x1F24) 
     1595CheckCompUni("<acute> <parenright> <Greek_eta>", 0x1F24) 
     1596CheckCompUni("<acute> <U0313> <Greek_eta>", 0x1F24) 
     1597CheckCompUni("<apostrophe> <U1f20>", 0x1F24) 
     1598CheckCompUni("<acute> <U1f20>", 0x1F24) 
     1599CheckCompUni("<apostrophe> <parenleft> <Greek_eta>", 0x1F25) 
     1600CheckCompUni("<apostrophe> <U0314> <Greek_eta>", 0x1F25) 
     1601CheckCompUni("<acute> <parenleft> <Greek_eta>", 0x1F25) 
     1602CheckCompUni("<acute> <U0314> <Greek_eta>", 0x1F25) 
     1603CheckCompUni("<apostrophe> <U1f21>", 0x1F25) 
     1604CheckCompUni("<acute> <U1f21>", 0x1F25) 
     1605CheckCompUni("<asciitilde> <parenright> <Greek_eta>", 0x1F26) 
     1606CheckCompUni("<asciitilde> <U0313> <Greek_eta>", 0x1F26) 
     1607CheckCompUni("<asciitilde> <U1f20>", 0x1F26) 
     1608CheckCompUni("<asciitilde> <parenleft> <Greek_eta>", 0x1F27) 
     1609CheckCompUni("<asciitilde> <U0314> <Greek_eta>", 0x1F27) 
     1610CheckCompUni("<asciitilde> <U1f21>", 0x1F27) 
     1611CheckCompUni("<parenright> <Greek_ETA>", 0x1F28) 
     1612CheckCompUni("<parenleft> <Greek_ETA>", 0x1F29) 
     1613CheckCompUni("<grave> <parenright> <Greek_ETA>", 0x1F2A) 
     1614CheckCompUni("<grave> <U0313> <Greek_ETA>", 0x1F2A) 
     1615CheckCompUni("<grave> <U1f28>", 0x1F2A) 
     1616CheckCompUni("<grave> <parenleft> <Greek_ETA>", 0x1F2B) 
     1617CheckCompUni("<grave> <U0314> <Greek_ETA>", 0x1F2B) 
     1618CheckCompUni("<grave> <U1f29>", 0x1F2B) 
     1619CheckCompUni("<apostrophe> <parenright> <Greek_ETA>", 0x1F2C) 
     1620CheckCompUni("<apostrophe> <U0313> <Greek_ETA>", 0x1F2C) 
     1621CheckCompUni("<acute> <parenright> <Greek_ETA>", 0x1F2C) 
     1622CheckCompUni("<acute> <U0313> <Greek_ETA>", 0x1F2C) 
     1623CheckCompUni("<apostrophe> <U1f28>", 0x1F2C) 
     1624CheckCompUni("<acute> <U1f28>", 0x1F2C) 
     1625CheckCompUni("<apostrophe> <parenleft> <Greek_ETA>", 0x1F2D) 
     1626CheckCompUni("<apostrophe> <U0314> <Greek_ETA>", 0x1F2D) 
     1627CheckCompUni("<acute> <parenleft> <Greek_ETA>", 0x1F2D) 
     1628CheckCompUni("<acute> <U0314> <Greek_ETA>", 0x1F2D) 
     1629CheckCompUni("<apostrophe> <U1f29>", 0x1F2D) 
     1630CheckCompUni("<acute> <U1f29>", 0x1F2D) 
     1631CheckCompUni("<asciitilde> <parenright> <Greek_ETA>", 0x1F2E) 
     1632CheckCompUni("<asciitilde> <U0313> <Greek_ETA>", 0x1F2E) 
     1633CheckCompUni("<asciitilde> <U1f28>", 0x1F2E) 
     1634CheckCompUni("<asciitilde> <parenleft> <Greek_ETA>", 0x1F2F) 
     1635CheckCompUni("<asciitilde> <U0314> <Greek_ETA>", 0x1F2F) 
     1636CheckCompUni("<asciitilde> <U1f29>", 0x1F2F) 
     1637CheckCompUni("<parenright> <Greek_iota>", 0x1F30) 
     1638CheckCompUni("<parenleft> <Greek_iota>", 0x1F31) 
     1639CheckCompUni("<grave> <parenright> <Greek_iota>", 0x1F32) 
     1640CheckCompUni("<grave> <U0313> <Greek_iota>", 0x1F32) 
     1641CheckCompUni("<grave> <U1f30>", 0x1F32) 
     1642CheckCompUni("<grave> <parenleft> <Greek_iota>", 0x1F33) 
     1643CheckCompUni("<grave> <U0314> <Greek_iota>", 0x1F33) 
     1644CheckCompUni("<grave> <U1f31>", 0x1F33) 
     1645CheckCompUni("<apostrophe> <parenright> <Greek_iota>", 0x1F34) 
     1646CheckCompUni("<apostrophe> <U0313> <Greek_iota>", 0x1F34) 
     1647CheckCompUni("<acute> <parenright> <Greek_iota>", 0x1F34) 
     1648CheckCompUni("<acute> <U0313> <Greek_iota>", 0x1F34) 
     1649CheckCompUni("<apostrophe> <U1f30>", 0x1F34) 
     1650CheckCompUni("<acute> <U1f30>", 0x1F34) 
     1651CheckCompUni("<apostrophe> <parenleft> <Greek_iota>", 0x1F35) 
     1652CheckCompUni("<apostrophe> <U0314> <Greek_iota>", 0x1F35) 
     1653CheckCompUni("<acute> <parenleft> <Greek_iota>", 0x1F35) 
     1654CheckCompUni("<acute> <U0314> <Greek_iota>", 0x1F35) 
     1655CheckCompUni("<apostrophe> <U1f31>", 0x1F35) 
     1656CheckCompUni("<acute> <U1f31>", 0x1F35) 
     1657CheckCompUni("<asciitilde> <parenright> <Greek_iota>", 0x1F36) 
     1658CheckCompUni("<asciitilde> <U0313> <Greek_iota>", 0x1F36) 
     1659CheckCompUni("<asciitilde> <U1f30>", 0x1F36) 
     1660CheckCompUni("<asciitilde> <parenleft> <Greek_iota>", 0x1F37) 
     1661CheckCompUni("<asciitilde> <U0314> <Greek_iota>", 0x1F37) 
     1662CheckCompUni("<asciitilde> <U1f31>", 0x1F37) 
     1663CheckCompUni("<parenright> <Greek_IOTA>", 0x1F38) 
     1664CheckCompUni("<parenleft> <Greek_IOTA>", 0x1F39) 
     1665CheckCompUni("<grave> <parenright> <Greek_IOTA>", 0x1F3A) 
     1666CheckCompUni("<grave> <U0313> <Greek_IOTA>", 0x1F3A) 
     1667CheckCompUni("<grave> <U1f38>", 0x1F3A) 
     1668CheckCompUni("<grave> <parenleft> <Greek_IOTA>", 0x1F3B) 
     1669CheckCompUni("<grave> <U0314> <Greek_IOTA>", 0x1F3B) 
     1670CheckCompUni("<grave> <U1f39>", 0x1F3B) 
     1671CheckCompUni("<apostrophe> <parenright> <Greek_IOTA>", 0x1F3C) 
     1672CheckCompUni("<apostrophe> <U0313> <Greek_IOTA>", 0x1F3C) 
     1673CheckCompUni("<acute> <parenright> <Greek_IOTA>", 0x1F3C) 
     1674CheckCompUni("<acute> <U0313> <Greek_IOTA>", 0x1F3C) 
     1675CheckCompUni("<apostrophe> <U1f38>", 0x1F3C) 
     1676CheckCompUni("<acute> <U1f38>", 0x1F3C) 
     1677CheckCompUni("<apostrophe> <parenleft> <Greek_IOTA>", 0x1F3D) 
     1678CheckCompUni("<apostrophe> <U0314> <Greek_IOTA>", 0x1F3D) 
     1679CheckCompUni("<acute> <parenleft> <Greek_IOTA>", 0x1F3D) 
     1680CheckCompUni("<acute> <U0314> <Greek_IOTA>", 0x1F3D) 
     1681CheckCompUni("<apostrophe> <U1f39>", 0x1F3D) 
     1682CheckCompUni("<acute> <U1f39>", 0x1F3D) 
     1683CheckCompUni("<asciitilde> <parenright> <Greek_IOTA>", 0x1F3E) 
     1684CheckCompUni("<asciitilde> <U0313> <Greek_IOTA>", 0x1F3E) 
     1685CheckCompUni("<asciitilde> <U1f38>", 0x1F3E) 
     1686CheckCompUni("<asciitilde> <parenleft> <Greek_IOTA>", 0x1F3F) 
     1687CheckCompUni("<asciitilde> <U0314> <Greek_IOTA>", 0x1F3F) 
     1688CheckCompUni("<asciitilde> <U1f39>", 0x1F3F) 
     1689CheckCompUni("<parenright> <Greek_omicron>", 0x1F40) 
     1690CheckCompUni("<parenleft> <Greek_omicron>", 0x1F41) 
     1691CheckCompUni("<grave> <parenright> <Greek_omicron>", 0x1F42) 
     1692CheckCompUni("<grave> <U0313> <Greek_omicron>", 0x1F42) 
     1693CheckCompUni("<grave> <U1f40>", 0x1F42) 
     1694CheckCompUni("<grave> <parenleft> <Greek_omicron>", 0x1F43) 
     1695CheckCompUni("<grave> <U0314> <Greek_omicron>", 0x1F43) 
     1696CheckCompUni("<grave> <U1f41>", 0x1F43) 
     1697CheckCompUni("<apostrophe> <parenright> <Greek_omicron>", 0x1F44) 
     1698CheckCompUni("<apostrophe> <U0313> <Greek_omicron>", 0x1F44) 
     1699CheckCompUni("<acute> <parenright> <Greek_omicron>", 0x1F44) 
     1700CheckCompUni("<acute> <U0313> <Greek_omicron>", 0x1F44) 
     1701CheckCompUni("<apostrophe> <U1f40>", 0x1F44) 
     1702CheckCompUni("<acute> <U1f40>", 0x1F44) 
     1703CheckCompUni("<apostrophe> <parenleft> <Greek_omicron>", 0x1F45) 
     1704CheckCompUni("<apostrophe> <U0314> <Greek_omicron>", 0x1F45) 
     1705CheckCompUni("<acute> <parenleft> <Greek_omicron>", 0x1F45) 
     1706CheckCompUni("<acute> <U0314> <Greek_omicron>", 0x1F45) 
     1707CheckCompUni("<apostrophe> <U1f41>", 0x1F45) 
     1708CheckCompUni("<acute> <U1f41>", 0x1F45) 
     1709CheckCompUni("<parenright> <Greek_OMICRON>", 0x1F48) 
     1710CheckCompUni("<parenleft> <Greek_OMICRON>", 0x1F49) 
     1711CheckCompUni("<grave> <parenright> <Greek_OMICRON>", 0x1F4A) 
     1712CheckCompUni("<grave> <U0313> <Greek_OMICRON>", 0x1F4A) 
     1713CheckCompUni("<grave> <U1f48>", 0x1F4A) 
     1714CheckCompUni("<grave> <parenleft> <Greek_OMICRON>", 0x1F4B) 
     1715CheckCompUni("<grave> <U0314> <Greek_OMICRON>", 0x1F4B) 
     1716CheckCompUni("<grave> <U1f49>", 0x1F4B) 
     1717CheckCompUni("<apostrophe> <parenright> <Greek_OMICRON>", 0x1F4C) 
     1718CheckCompUni("<apostrophe> <U0313> <Greek_OMICRON>", 0x1F4C) 
     1719CheckCompUni("<acute> <parenright> <Greek_OMICRON>", 0x1F4C) 
     1720CheckCompUni("<acute> <U0313> <Greek_OMICRON>", 0x1F4C) 
     1721CheckCompUni("<apostrophe> <U1f48>", 0x1F4C) 
     1722CheckCompUni("<acute> <U1f48>", 0x1F4C) 
     1723CheckCompUni("<apostrophe> <parenleft> <Greek_OMICRON>", 0x1F4D) 
     1724CheckCompUni("<apostrophe> <U0314> <Greek_OMICRON>", 0x1F4D) 
     1725CheckCompUni("<acute> <parenleft> <Greek_OMICRON>", 0x1F4D) 
     1726CheckCompUni("<acute> <U0314> <Greek_OMICRON>", 0x1F4D) 
     1727CheckCompUni("<apostrophe> <U1f49>", 0x1F4D) 
     1728CheckCompUni("<acute> <U1f49>", 0x1F4D) 
     1729CheckCompUni("<parenright> <Greek_upsilon>", 0x1F50) 
     1730CheckCompUni("<parenleft> <Greek_upsilon>", 0x1F51) 
     1731CheckCompUni("<grave> <parenright> <Greek_upsilon>", 0x1F52) 
     1732CheckCompUni("<grave> <U0313> <Greek_upsilon>", 0x1F52) 
     1733CheckCompUni("<grave> <U1f50>", 0x1F52) 
     1734CheckCompUni("<grave> <parenleft> <Greek_upsilon>", 0x1F53) 
     1735CheckCompUni("<grave> <U0314> <Greek_upsilon>", 0x1F53) 
     1736CheckCompUni("<grave> <U1f51>", 0x1F53) 
     1737CheckCompUni("<apostrophe> <parenright> <Greek_upsilon>", 0x1F54) 
     1738CheckCompUni("<apostrophe> <U0313> <Greek_upsilon>", 0x1F54) 
     1739CheckCompUni("<acute> <parenright> <Greek_upsilon>", 0x1F54) 
     1740CheckCompUni("<acute> <U0313> <Greek_upsilon>", 0x1F54) 
     1741CheckCompUni("<apostrophe> <U1f50>", 0x1F54) 
     1742CheckCompUni("<acute> <U1f50>", 0x1F54) 
     1743CheckCompUni("<apostrophe> <parenleft> <Greek_upsilon>", 0x1F55) 
     1744CheckCompUni("<apostrophe> <U0314> <Greek_upsilon>", 0x1F55) 
     1745CheckCompUni("<acute> <parenleft> <Greek_upsilon>", 0x1F55) 
     1746CheckCompUni("<acute> <U0314> <Greek_upsilon>", 0x1F55) 
     1747CheckCompUni("<apostrophe> <U1f51>", 0x1F55) 
     1748CheckCompUni("<acute> <U1f51>", 0x1F55) 
     1749CheckCompUni("<asciitilde> <parenright> <Greek_upsilon>", 0x1F56) 
     1750CheckCompUni("<asciitilde> <U0313> <Greek_upsilon>", 0x1F56) 
     1751CheckCompUni("<asciitilde> <U1f50>", 0x1F56) 
     1752CheckCompUni("<asciitilde> <parenleft> <Greek_upsilon>", 0x1F57) 
     1753CheckCompUni("<asciitilde> <U0314> <Greek_upsilon>", 0x1F57) 
     1754CheckCompUni("<asciitilde> <U1f51>", 0x1F57) 
     1755CheckCompUni("<parenleft> <Greek_UPSILON>", 0x1F59) 
     1756CheckCompUni("<grave> <parenleft> <Greek_UPSILON>", 0x1F5B) 
     1757CheckCompUni("<grave> <U0314> <Greek_UPSILON>", 0x1F5B) 
     1758CheckCompUni("<grave> <U1f59>", 0x1F5B) 
     1759CheckCompUni("<apostrophe> <parenleft> <Greek_UPSILON>", 0x1F5D) 
     1760CheckCompUni("<apostrophe> <U0314> <Greek_UPSILON>", 0x1F5D) 
     1761CheckCompUni("<acute> <parenleft> <Greek_UPSILON>", 0x1F5D) 
     1762CheckCompUni("<acute> <U0314> <Greek_UPSILON>", 0x1F5D) 
     1763CheckCompUni("<apostrophe> <U1f59>", 0x1F5D) 
     1764CheckCompUni("<acute> <U1f59>", 0x1F5D) 
     1765CheckCompUni("<asciitilde> <parenleft> <Greek_UPSILON>", 0x1F5F) 
     1766CheckCompUni("<asciitilde> <U0314> <Greek_UPSILON>", 0x1F5F) 
     1767CheckCompUni("<asciitilde> <U1f59>", 0x1F5F) 
     1768CheckCompUni("<parenright> <Greek_omega>", 0x1F60) 
     1769CheckCompUni("<parenleft> <Greek_omega>", 0x1F61) 
     1770CheckCompUni("<grave> <parenright> <Greek_omega>", 0x1F62) 
     1771CheckCompUni("<grave> <U0313> <Greek_omega>", 0x1F62) 
     1772CheckCompUni("<grave> <U1f60>", 0x1F62) 
     1773CheckCompUni("<grave> <parenleft> <Greek_omega>", 0x1F63) 
     1774CheckCompUni("<grave> <U0314> <Greek_omega>", 0x1F63) 
     1775CheckCompUni("<grave> <U1f61>", 0x1F63) 
     1776CheckCompUni("<apostrophe> <parenright> <Greek_omega>", 0x1F64) 
     1777CheckCompUni("<apostrophe> <U0313> <Greek_omega>", 0x1F64) 
     1778CheckCompUni("<acute> <parenright> <Greek_omega>", 0x1F64) 
     1779CheckCompUni("<acute> <U0313> <Greek_omega>", 0x1F64) 
     1780CheckCompUni("<apostrophe> <U1f60>", 0x1F64) 
     1781CheckCompUni("<acute> <U1f60>", 0x1F64) 
     1782CheckCompUni("<apostrophe> <parenleft> <Greek_omega>", 0x1F65) 
     1783CheckCompUni("<apostrophe> <U0314> <Greek_omega>", 0x1F65) 
     1784CheckCompUni("<acute> <parenleft> <Greek_omega>", 0x1F65) 
     1785CheckCompUni("<acute> <U0314> <Greek_omega>", 0x1F65) 
     1786CheckCompUni("<apostrophe> <U1f61>", 0x1F65) 
     1787CheckCompUni("<acute> <U1f61>", 0x1F65) 
     1788CheckCompUni("<asciitilde> <parenright> <Greek_omega>", 0x1F66) 
     1789CheckCompUni("<asciitilde> <U0313> <Greek_omega>", 0x1F66) 
     1790CheckCompUni("<asciitilde> <U1f60>", 0x1F66) 
     1791CheckCompUni("<asciitilde> <parenleft> <Greek_omega>", 0x1F67) 
     1792CheckCompUni("<asciitilde> <U0314> <Greek_omega>", 0x1F67) 
     1793CheckCompUni("<asciitilde> <U1f61>", 0x1F67) 
     1794CheckCompUni("<parenright> <Greek_OMEGA>", 0x1F68) 
     1795CheckCompUni("<parenleft> <Greek_OMEGA>", 0x1F69) 
     1796CheckCompUni("<grave> <parenright> <Greek_OMEGA>", 0x1F6A) 
     1797CheckCompUni("<grave> <U0313> <Greek_OMEGA>", 0x1F6A) 
     1798CheckCompUni("<grave> <U1f68>", 0x1F6A) 
     1799CheckCompUni("<grave> <parenleft> <Greek_OMEGA>", 0x1F6B) 
     1800CheckCompUni("<grave> <U0314> <Greek_OMEGA>", 0x1F6B) 
     1801CheckCompUni("<grave> <U1f69>", 0x1F6B) 
     1802CheckCompUni("<apostrophe> <parenright> <Greek_OMEGA>", 0x1F6C) 
     1803CheckCompUni("<apostrophe> <U0313> <Greek_OMEGA>", 0x1F6C) 
     1804CheckCompUni("<acute> <parenright> <Greek_OMEGA>", 0x1F6C) 
     1805CheckCompUni("<acute> <U0313> <Greek_OMEGA>", 0x1F6C) 
     1806CheckCompUni("<apostrophe> <U1f68>", 0x1F6C) 
     1807CheckCompUni("<acute> <U1f68>", 0x1F6C) 
     1808CheckCompUni("<apostrophe> <parenleft> <Greek_OMEGA>", 0x1F6D) 
     1809CheckCompUni("<apostrophe> <U0314> <Greek_OMEGA>", 0x1F6D) 
     1810CheckCompUni("<acute> <parenleft> <Greek_OMEGA>", 0x1F6D) 
     1811CheckCompUni("<acute> <U0314> <Greek_OMEGA>", 0x1F6D) 
     1812CheckCompUni("<apostrophe> <U1f69>", 0x1F6D) 
     1813CheckCompUni("<acute> <U1f69>", 0x1F6D) 
     1814CheckCompUni("<asciitilde> <parenright> <Greek_OMEGA>", 0x1F6E) 
     1815CheckCompUni("<asciitilde> <U0313> <Greek_OMEGA>", 0x1F6E) 
     1816CheckCompUni("<asciitilde> <U1f68>", 0x1F6E) 
     1817CheckCompUni("<asciitilde> <parenleft> <Greek_OMEGA>", 0x1F6F) 
     1818CheckCompUni("<asciitilde> <U0314> <Greek_OMEGA>", 0x1F6F) 
     1819CheckCompUni("<asciitilde> <U1f69>", 0x1F6F) 
     1820CheckCompUni("<grave> <Greek_alpha>", 0x1F70) 
     1821CheckCompUni("<grave> <Greek_epsilon>", 0x1F72) 
     1822CheckCompUni("<grave> <Greek_eta>", 0x1F74) 
     1823CheckCompUni("<grave> <Greek_iota>", 0x1F76) 
     1824CheckCompUni("<grave> <Greek_omicron>", 0x1F78) 
     1825CheckCompUni("<grave> <Greek_upsilon>", 0x1F7A) 
     1826CheckCompUni("<grave> <Greek_omega>", 0x1F7C) 
     1827CheckCompUni("<Greek_iota> <parenright> <Greek_alpha>", 0x1F80) 
     1828CheckCompUni("<Greek_iota> <U0313> <Greek_alpha>", 0x1F80) 
     1829CheckCompUni("<Greek_iota> <U1f00>", 0x1F80) 
     1830CheckCompUni("<Greek_iota> <parenleft> <Greek_alpha>", 0x1F81) 
     1831CheckCompUni("<Greek_iota> <U0314> <Greek_alpha>", 0x1F81) 
     1832CheckCompUni("<Greek_iota> <U1f01>", 0x1F81) 
     1833CheckCompUni("<Greek_iota> <combining_grave> <parenright> <Greek_alpha>", 0x1F82) 
     1834CheckCompUni("<Greek_iota> <combining_grave> <U0313> <Greek_alpha>", 0x1F82) 
     1835CheckCompUni("<Greek_iota> <combining_grave> <U1f00>", 0x1F82) 
     1836CheckCompUni("<Greek_iota> <grave> <parenright> <Greek_alpha>", 0x1F82) 
     1837CheckCompUni("<Greek_iota> <grave> <U0313> <Greek_alpha>", 0x1F82) 
     1838CheckCompUni("<Greek_iota> <dead_grave> <parenright> <Greek_alpha>", 0x1F82) 
     1839CheckCompUni("<Greek_iota> <dead_grave> <U0313> <Greek_alpha>", 0x1F82) 
     1840CheckCompUni("<Greek_iota> <grave> <U1f00>", 0x1F82) 
     1841CheckCompUni("<Greek_iota> <dead_grave> <U1f00>", 0x1F82) 
     1842CheckCompUni("<Greek_iota> <U1f02>", 0x1F82) 
     1843CheckCompUni("<Greek_iota> <combining_grave> <parenleft> <Greek_alpha>", 0x1F83) 
     1844CheckCompUni("<Greek_iota> <combining_grave> <U0314> <Greek_alpha>", 0x1F83) 
     1845CheckCompUni("<Greek_iota> <combining_grave> <U1f01>", 0x1F83) 
     1846CheckCompUni("<Greek_iota> <grave> <parenleft> <Greek_alpha>", 0x1F83) 
     1847CheckCompUni("<Greek_iota> <grave> <U0314> <Greek_alpha>", 0x1F83) 
     1848CheckCompUni("<Greek_iota> <dead_grave> <parenleft> <Greek_alpha>", 0x1F83) 
     1849CheckCompUni("<Greek_iota> <dead_grave> <U0314> <Greek_alpha>", 0x1F83) 
     1850CheckCompUni("<Greek_iota> <grave> <U1f01>", 0x1F83) 
     1851CheckCompUni("<Greek_iota> <dead_grave> <U1f01>", 0x1F83) 
     1852CheckCompUni("<Greek_iota> <U1f03>", 0x1F83) 
     1853CheckCompUni("<Greek_iota> <combining_acute> <parenright> <Greek_alpha>", 0x1F84) 
     1854CheckCompUni("<Greek_iota> <combining_acute> <U0313> <Greek_alpha>", 0x1F84) 
     1855CheckCompUni("<Greek_iota> <combining_acute> <U1f00>", 0x1F84) 
     1856CheckCompUni("<Greek_iota> <apostrophe> <parenright> <Greek_alpha>", 0x1F84) 
     1857CheckCompUni("<Greek_iota> <apostrophe> <U0313> <Greek_alpha>", 0x1F84) 
     1858CheckCompUni("<Greek_iota> <acute> <parenright> <Greek_alpha>", 0x1F84) 
     1859CheckCompUni("<Greek_iota> <acute> <U0313> <Greek_alpha>", 0x1F84) 
     1860CheckCompUni("<Greek_iota> <dead_acute> <parenright> <Greek_alpha>", 0x1F84) 
     1861CheckCompUni("<Greek_iota> <dead_acute> <U0313> <Greek_alpha>", 0x1F84) 
     1862CheckCompUni("<Greek_iota> <apostrophe> <U1f00>", 0x1F84) 
     1863CheckCompUni("<Greek_iota> <acute> <U1f00>", 0x1F84) 
     1864CheckCompUni("<Greek_iota> <dead_acute> <U1f00>", 0x1F84) 
     1865CheckCompUni("<Greek_iota> <U1f04>", 0x1F84) 
     1866CheckCompUni("<Greek_iota> <combining_acute> <parenleft> <Greek_alpha>", 0x1F85) 
     1867CheckCompUni("<Greek_iota> <combining_acute> <U0314> <Greek_alpha>", 0x1F85) 
     1868CheckCompUni("<Greek_iota> <combining_acute> <U1f01>", 0x1F85) 
     1869CheckCompUni("<Greek_iota> <apostrophe> <parenleft> <Greek_alpha>", 0x1F85) 
     1870CheckCompUni("<Greek_iota> <apostrophe> <U0314> <Greek_alpha>", 0x1F85) 
     1871CheckCompUni("<Greek_iota> <acute> <parenleft> <Greek_alpha>", 0x1F85) 
     1872CheckCompUni("<Greek_iota> <acute> <U0314> <Greek_alpha>", 0x1F85) 
     1873CheckCompUni("<Greek_iota> <dead_acute> <parenleft> <Greek_alpha>", 0x1F85) 
     1874CheckCompUni("<Greek_iota> <dead_acute> <U0314> <Greek_alpha>", 0x1F85) 
     1875CheckCompUni("<Greek_iota> <apostrophe> <U1f01>", 0x1F85) 
     1876CheckCompUni("<Greek_iota> <acute> <U1f01>", 0x1F85) 
     1877CheckCompUni("<Greek_iota> <dead_acute> <U1f01>", 0x1F85) 
     1878CheckCompUni("<Greek_iota> <U1f05>", 0x1F85) 
     1879CheckCompUni("<Greek_iota> <asciitilde> <parenright> <Greek_alpha>", 0x1F86) 
     1880CheckCompUni("<Greek_iota> <asciitilde> <U0313> <Greek_alpha>", 0x1F86) 
     1881CheckCompUni("<Greek_iota> <dead_tilde> <parenright> <Greek_alpha>", 0x1F86) 
     1882CheckCompUni("<Greek_iota> <dead_tilde> <U0313> <Greek_alpha>", 0x1F86) 
     1883CheckCompUni("<Greek_iota> <U0342> <parenright> <Greek_alpha>", 0x1F86) 
     1884CheckCompUni("<Greek_iota> <U0342> <U0313> <Greek_alpha>", 0x1F86) 
     1885CheckCompUni("<Greek_iota> <asciitilde> <U1f00>", 0x1F86) 
     1886CheckCompUni("<Greek_iota> <dead_tilde> <U1f00>", 0x1F86) 
     1887CheckCompUni("<Greek_iota> <U0342> <U1f00>", 0x1F86) 
     1888CheckCompUni("<Greek_iota> <U1f06>", 0x1F86) 
     1889CheckCompUni("<Greek_iota> <asciitilde> <parenleft> <Greek_alpha>", 0x1F87) 
     1890CheckCompUni("<Greek_iota> <asciitilde> <U0314> <Greek_alpha>", 0x1F87) 
     1891CheckCompUni("<Greek_iota> <dead_tilde> <parenleft> <Greek_alpha>", 0x1F87) 
     1892CheckCompUni("<Greek_iota> <dead_tilde> <U0314> <Greek_alpha>", 0x1F87) 
     1893CheckCompUni("<Greek_iota> <U0342> <parenleft> <Greek_alpha>", 0x1F87) 
     1894CheckCompUni("<Greek_iota> <U0342> <U0314> <Greek_alpha>", 0x1F87) 
     1895CheckCompUni("<Greek_iota> <asciitilde> <U1f01>", 0x1F87) 
     1896CheckCompUni("<Greek_iota> <dead_tilde> <U1f01>", 0x1F87) 
     1897CheckCompUni("<Greek_iota> <U0342> <U1f01>", 0x1F87) 
     1898CheckCompUni("<Greek_iota> <U1f07>", 0x1F87) 
     1899CheckCompUni("<Greek_iota> <parenright> <Greek_ALPHA>", 0x1F88) 
     1900CheckCompUni("<Greek_iota> <U0313> <Greek_ALPHA>", 0x1F88) 
     1901CheckCompUni("<Greek_iota> <U1f08>", 0x1F88) 
     1902CheckCompUni("<Greek_iota> <parenleft> <Greek_ALPHA>", 0x1F89) 
     1903CheckCompUni("<Greek_iota> <U0314> <Greek_ALPHA>", 0x1F89) 
     1904CheckCompUni("<Greek_iota> <U1f09>", 0x1F89) 
     1905CheckCompUni("<Greek_iota> <combining_grave> <parenright> <Greek_ALPHA>", 0x1F8A) 
     1906CheckCompUni("<Greek_iota> <combining_grave> <U0313> <Greek_ALPHA>", 0x1F8A) 
     1907CheckCompUni("<Greek_iota> <combining_grave> <U1f08>", 0x1F8A) 
     1908CheckCompUni("<Greek_iota> <grave> <parenright> <Greek_ALPHA>", 0x1F8A) 
     1909CheckCompUni("<Greek_iota> <grave> <U0313> <Greek_ALPHA>", 0x1F8A) 
     1910CheckCompUni("<Greek_iota> <dead_grave> <parenright> <Greek_ALPHA>", 0x1F8A) 
     1911CheckCompUni("<Greek_iota> <dead_grave> <U0313> <Greek_ALPHA>", 0x1F8A) 
     1912CheckCompUni("<Greek_iota> <grave> <U1f08>", 0x1F8A) 
     1913CheckCompUni("<Greek_iota> <dead_grave> <U1f08>", 0x1F8A) 
     1914CheckCompUni("<Greek_iota> <U1f0a>", 0x1F8A) 
     1915CheckCompUni("<Greek_iota> <combining_grave> <parenleft> <Greek_ALPHA>", 0x1F8B) 
     1916CheckCompUni("<Greek_iota> <combining_grave> <U0314> <Greek_ALPHA>", 0x1F8B) 
     1917CheckCompUni("<Greek_iota> <combining_grave> <U1f09>", 0x1F8B) 
     1918CheckCompUni("<Greek_iota> <grave> <parenleft> <Greek_ALPHA>", 0x1F8B) 
     1919CheckCompUni("<Greek_iota> <grave> <U0314> <Greek_ALPHA>", 0x1F8B) 
     1920CheckCompUni("<Greek_iota> <dead_grave> <parenleft> <Greek_ALPHA>", 0x1F8B) 
     1921CheckCompUni("<Greek_iota> <dead_grave> <U0314> <Greek_ALPHA>", 0x1F8B) 
     1922CheckCompUni("<Greek_iota> <grave> <U1f09>", 0x1F8B) 
     1923CheckCompUni("<Greek_iota> <dead_grave> <U1f09>", 0x1F8B) 
     1924CheckCompUni("<Greek_iota> <U1f0b>", 0x1F8B) 
     1925CheckCompUni("<Greek_iota> <combining_acute> <parenright> <Greek_ALPHA>", 0x1F8C) 
     1926CheckCompUni("<Greek_iota> <combining_acute> <U0313> <Greek_ALPHA>", 0x1F8C) 
     1927CheckCompUni("<Greek_iota> <combining_acute> <U1f08>", 0x1F8C) 
     1928CheckCompUni("<Greek_iota> <apostrophe> <parenright> <Greek_ALPHA>", 0x1F8C) 
     1929CheckCompUni("<Greek_iota> <apostrophe> <U0313> <Greek_ALPHA>", 0x1F8C) 
     1930CheckCompUni("<Greek_iota> <acute> <parenright> <Greek_ALPHA>", 0x1F8C) 
     1931CheckCompUni("<Greek_iota> <acute> <U0313> <Greek_ALPHA>", 0x1F8C) 
     1932CheckCompUni("<Greek_iota> <dead_acute> <parenright> <Greek_ALPHA>", 0x1F8C) 
     1933CheckCompUni("<Greek_iota> <dead_acute> <U0313> <Greek_ALPHA>", 0x1F8C) 
     1934CheckCompUni("<Greek_iota> <apostrophe> <U1f08>", 0x1F8C) 
     1935CheckCompUni("<Greek_iota> <acute> <U1f08>", 0x1F8C) 
     1936CheckCompUni("<Greek_iota> <dead_acute> <U1f08>", 0x1F8C) 
     1937CheckCompUni("<Greek_iota> <U1f0c>", 0x1F8C) 
     1938CheckCompUni("<Greek_iota> <combining_acute> <parenleft> <Greek_ALPHA>", 0x1F8D) 
     1939CheckCompUni("<Greek_iota> <combining_acute> <U0314> <Greek_ALPHA>", 0x1F8D) 
     1940CheckCompUni("<Greek_iota> <combining_acute> <U1f09>", 0x1F8D) 
     1941CheckCompUni("<Greek_iota> <apostrophe> <parenleft> <Greek_ALPHA>", 0x1F8D) 
     1942CheckCompUni("<Greek_iota> <apostrophe> <U0314> <Greek_ALPHA>", 0x1F8D) 
     1943CheckCompUni("<Greek_iota> <acute> <parenleft> <Greek_ALPHA>", 0x1F8D) 
     1944CheckCompUni("<Greek_iota> <acute> <U0314> <Greek_ALPHA>", 0x1F8D) 
     1945CheckCompUni("<Greek_iota> <dead_acute> <parenleft> <Greek_ALPHA>", 0x1F8D) 
     1946CheckCompUni("<Greek_iota> <dead_acute> <U0314> <Greek_ALPHA>", 0x1F8D) 
     1947CheckCompUni("<Greek_iota> <apostrophe> <U1f09>", 0x1F8D) 
     1948CheckCompUni("<Greek_iota> <acute> <U1f09>", 0x1F8D) 
     1949CheckCompUni("<Greek_iota> <dead_acute> <U1f09>", 0x1F8D) 
     1950CheckCompUni("<Greek_iota> <U1f0d>", 0x1F8D) 
     1951CheckCompUni("<Greek_iota> <asciitilde> <parenright> <Greek_ALPHA>", 0x1F8E) 
     1952CheckCompUni("<Greek_iota> <asciitilde> <U0313> <Greek_ALPHA>", 0x1F8E) 
     1953CheckCompUni("<Greek_iota> <dead_tilde> <parenright> <Greek_ALPHA>", 0x1F8E) 
     1954CheckCompUni("<Greek_iota> <dead_tilde> <U0313> <Greek_ALPHA>", 0x1F8E) 
     1955CheckCompUni("<Greek_iota> <U0342> <parenright> <Greek_ALPHA>", 0x1F8E) 
     1956CheckCompUni("<Greek_iota> <U0342> <U0313> <Greek_ALPHA>", 0x1F8E) 
     1957CheckCompUni("<Greek_iota> <asciitilde> <U1f08>", 0x1F8E) 
     1958CheckCompUni("<Greek_iota> <dead_tilde> <U1f08>", 0x1F8E) 
     1959CheckCompUni("<Greek_iota> <U0342> <U1f08>", 0x1F8E) 
     1960CheckCompUni("<Greek_iota> <U1f0e>", 0x1F8E) 
     1961CheckCompUni("<Greek_iota> <asciitilde> <parenleft> <Greek_ALPHA>", 0x1F8F) 
     1962CheckCompUni("<Greek_iota> <asciitilde> <U0314> <Greek_ALPHA>", 0x1F8F) 
     1963CheckCompUni("<Greek_iota> <dead_tilde> <parenleft> <Greek_ALPHA>", 0x1F8F) 
     1964CheckCompUni("<Greek_iota> <dead_tilde> <U0314> <Greek_ALPHA>", 0x1F8F) 
     1965CheckCompUni("<Greek_iota> <U0342> <parenleft> <Greek_ALPHA>", 0x1F8F) 
     1966CheckCompUni("<Greek_iota> <U0342> <U0314> <Greek_ALPHA>", 0x1F8F) 
     1967CheckCompUni("<Greek_iota> <asciitilde> <U1f09>", 0x1F8F) 
     1968CheckCompUni("<Greek_iota> <dead_tilde> <U1f09>", 0x1F8F) 
     1969CheckCompUni("<Greek_iota> <U0342> <U1f09>", 0x1F8F) 
     1970CheckCompUni("<Greek_iota> <U1f0f>", 0x1F8F) 
     1971CheckCompUni("<Greek_iota> <parenright> <Greek_eta>", 0x1F90) 
     1972CheckCompUni("<Greek_iota> <U0313> <Greek_eta>", 0x1F90) 
     1973CheckCompUni("<Greek_iota> <U1f20>", 0x1F90) 
     1974CheckCompUni("<Greek_iota> <parenleft> <Greek_eta>", 0x1F91) 
     1975CheckCompUni("<Greek_iota> <U0314> <Greek_eta>", 0x1F91) 
     1976CheckCompUni("<Greek_iota> <U1f21>", 0x1F91) 
     1977CheckCompUni("<Greek_iota> <combining_grave> <parenright> <Greek_eta>", 0x1F92) 
     1978CheckCompUni("<Greek_iota> <combining_grave> <U0313> <Greek_eta>", 0x1F92) 
     1979CheckCompUni("<Greek_iota> <combining_grave> <U1f20>", 0x1F92) 
     1980CheckCompUni("<Greek_iota> <grave> <parenright> <Greek_eta>", 0x1F92) 
     1981CheckCompUni("<Greek_iota> <grave> <U0313> <Greek_eta>", 0x1F92) 
     1982CheckCompUni("<Greek_iota> <dead_grave> <parenright> <Greek_eta>", 0x1F92) 
     1983CheckCompUni("<Greek_iota> <dead_grave> <U0313> <Greek_eta>", 0x1F92) 
     1984CheckCompUni("<Greek_iota> <grave> <U1f20>", 0x1F92) 
     1985CheckCompUni("<Greek_iota> <dead_grave> <U1f20>", 0x1F92) 
     1986CheckCompUni("<Greek_iota> <U1f22>", 0x1F92) 
     1987CheckCompUni("<Greek_iota> <combining_grave> <parenleft> <Greek_eta>", 0x1F93) 
     1988CheckCompUni("<Greek_iota> <combining_grave> <U0314> <Greek_eta>", 0x1F93) 
     1989CheckCompUni("<Greek_iota> <combining_grave> <U1f21>", 0x1F93) 
     1990CheckCompUni("<Greek_iota> <grave> <parenleft> <Greek_eta>", 0x1F93) 
     1991CheckCompUni("<Greek_iota> <grave> <U0314> <Greek_eta>", 0x1F93) 
     1992CheckCompUni("<Greek_iota> <dead_grave> <parenleft> <Greek_eta>", 0x1F93) 
     1993CheckCompUni("<Greek_iota> <dead_grave> <U0314> <Greek_eta>", 0x1F93) 
     1994CheckCompUni("<Greek_iota> <grave> <U1f21>", 0x1F93) 
     1995CheckCompUni("<Greek_iota> <dead_grave> <U1f21>", 0x1F93) 
     1996CheckCompUni("<Greek_iota> <U1f23>", 0x1F93) 
     1997CheckCompUni("<Greek_iota> <combining_acute> <parenright> <Greek_eta>", 0x1F94) 
     1998CheckCompUni("<Greek_iota> <combining_acute> <U0313> <Greek_eta>", 0x1F94) 
     1999CheckCompUni("<Greek_iota> <combining_acute> <U1f20>", 0x1F94) 
     2000CheckCompUni("<Greek_iota> <apostrophe> <parenright> <Greek_eta>", 0x1F94) 
     2001CheckCompUni("<Greek_iota> <apostrophe> <U0313> <Greek_eta>", 0x1F94) 
     2002CheckCompUni("<Greek_iota> <acute> <parenright> <Greek_eta>", 0x1F94) 
     2003CheckCompUni("<Greek_iota> <acute> <U0313> <Greek_eta>", 0x1F94) 
     2004CheckCompUni("<Greek_iota> <dead_acute> <parenright> <Greek_eta>", 0x1F94) 
     2005CheckCompUni("<Greek_iota> <dead_acute> <U0313> <Greek_eta>", 0x1F94) 
     2006CheckCompUni("<Greek_iota> <apostrophe> <U1f20>", 0x1F94) 
     2007CheckCompUni("<Greek_iota> <acute> <U1f20>", 0x1F94) 
     2008CheckCompUni("<Greek_iota> <dead_acute> <U1f20>", 0x1F94) 
     2009CheckCompUni("<Greek_iota> <U1f24>", 0x1F94) 
     2010CheckCompUni("<Greek_iota> <combining_acute> <parenleft> <Greek_eta>", 0x1F95) 
     2011CheckCompUni("<Greek_iota> <combining_acute> <U0314> <Greek_eta>", 0x1F95) 
     2012CheckCompUni("<Greek_iota> <combining_acute> <U1f21>", 0x1F95) 
     2013CheckCompUni("<Greek_iota> <apostrophe> <parenleft> <Greek_eta>", 0x1F95) 
     2014CheckCompUni("<Greek_iota> <apostrophe> <U0314> <Greek_eta>", 0x1F95) 
     2015CheckCompUni("<Greek_iota> <acute> <parenleft> <Greek_eta>", 0x1F95) 
     2016CheckCompUni("<Greek_iota> <acute> <U0314> <Greek_eta>", 0x1F95) 
     2017CheckCompUni("<Greek_iota> <dead_acute> <parenleft> <Greek_eta>", 0x1F95) 
     2018CheckCompUni("<Greek_iota> <dead_acute> <U0314> <Greek_eta>", 0x1F95) 
     2019CheckCompUni("<Greek_iota> <apostrophe> <U1f21>", 0x1F95) 
     2020CheckCompUni("<Greek_iota> <acute> <U1f21>", 0x1F95) 
     2021CheckCompUni("<Greek_iota> <dead_acute> <U1f21>", 0x1F95) 
     2022CheckCompUni("<Greek_iota> <U1f25>", 0x1F95) 
     2023CheckCompUni("<Greek_iota> <asciitilde> <parenright> <Greek_eta>", 0x1F96) 
     2024CheckCompUni("<Greek_iota> <asciitilde> <U0313> <Greek_eta>", 0x1F96) 
     2025CheckCompUni("<Greek_iota> <dead_tilde> <parenright> <Greek_eta>", 0x1F96) 
     2026CheckCompUni("<Greek_iota> <dead_tilde> <U0313> <Greek_eta>", 0x1F96) 
     2027CheckCompUni("<Greek_iota> <U0342> <parenright> <Greek_eta>", 0x1F96) 
     2028CheckCompUni("<Greek_iota> <U0342> <U0313> <Greek_eta>", 0x1F96) 
     2029CheckCompUni("<Greek_iota> <asciitilde> <U1f20>", 0x1F96) 
     2030CheckCompUni("<Greek_iota> <dead_tilde> <U1f20>", 0x1F96) 
     2031CheckCompUni("<Greek_iota> <U0342> <U1f20>", 0x1F96) 
     2032CheckCompUni("<Greek_iota> <U1f26>", 0x1F96) 
     2033CheckCompUni("<Greek_iota> <asciitilde> <parenleft> <Greek_eta>", 0x1F97) 
     2034CheckCompUni("<Greek_iota> <asciitilde> <U0314> <Greek_eta>", 0x1F97) 
     2035CheckCompUni("<Greek_iota> <dead_tilde> <parenleft> <Greek_eta>", 0x1F97) 
     2036CheckCompUni("<Greek_iota> <dead_tilde> <U0314> <Greek_eta>", 0x1F97) 
     2037CheckCompUni("<Greek_iota> <U0342> <parenleft> <Greek_eta>", 0x1F97) 
     2038CheckCompUni("<Greek_iota> <U0342> <U0314> <Greek_eta>", 0x1F97) 
     2039CheckCompUni("<Greek_iota> <asciitilde> <U1f21>", 0x1F97) 
     2040CheckCompUni("<Greek_iota> <dead_tilde> <U1f21>", 0x1F97) 
     2041CheckCompUni("<Greek_iota> <U0342> <U1f21>", 0x1F97) 
     2042CheckCompUni("<Greek_iota> <U1f27>", 0x1F97) 
     2043CheckCompUni("<Greek_iota> <parenright> <Greek_ETA>", 0x1F98) 
     2044CheckCompUni("<Greek_iota> <U0313> <Greek_ETA>", 0x1F98) 
     2045CheckCompUni("<Greek_iota> <U1f28>", 0x1F98) 
     2046CheckCompUni("<Greek_iota> <parenleft> <Greek_ETA>", 0x1F99) 
     2047CheckCompUni("<Greek_iota> <U0314> <Greek_ETA>", 0x1F99) 
     2048CheckCompUni("<Greek_iota> <U1f29>", 0x1F99) 
     2049CheckCompUni("<Greek_iota> <combining_grave> <parenright> <Greek_ETA>", 0x1F9A) 
     2050CheckCompUni("<Greek_iota> <combining_grave> <U0313> <Greek_ETA>", 0x1F9A) 
     2051CheckCompUni("<Greek_iota> <combining_grave> <U1f28>", 0x1F9A) 
     2052CheckCompUni("<Greek_iota> <grave> <parenright> <Greek_ETA>", 0x1F9A) 
     2053CheckCompUni("<Greek_iota> <grave> <U0313> <Greek_ETA>", 0x1F9A) 
     2054CheckCompUni("<Greek_iota> <dead_grave> <parenright> <Greek_ETA>", 0x1F9A) 
     2055CheckCompUni("<Greek_iota> <dead_grave> <U0313> <Greek_ETA>", 0x1F9A) 
     2056CheckCompUni("<Greek_iota> <grave> <U1f28>", 0x1F9A) 
     2057CheckCompUni("<Greek_iota> <dead_grave> <U1f28>", 0x1F9A) 
     2058CheckCompUni("<Greek_iota> <U1f2a>", 0x1F9A) 
     2059CheckCompUni("<Greek_iota> <combining_grave> <parenleft> <Greek_ETA>", 0x1F9B) 
     2060CheckCompUni("<Greek_iota> <combining_grave> <U0314> <Greek_ETA>", 0x1F9B) 
     2061CheckCompUni("<Greek_iota> <combining_grave> <U1f29>", 0x1F9B) 
     2062CheckCompUni("<Greek_iota> <grave> <parenleft> <Greek_ETA>", 0x1F9B) 
     2063CheckCompUni("<Greek_iota> <grave> <U0314> <Greek_ETA>", 0x1F9B) 
     2064CheckCompUni("<Greek_iota> <dead_grave> <parenleft> <Greek_ETA>", 0x1F9B) 
     2065CheckCompUni("<Greek_iota> <dead_grave> <U0314> <Greek_ETA>", 0x1F9B) 
     2066CheckCompUni("<Greek_iota> <grave> <U1f29>", 0x1F9B) 
     2067CheckCompUni("<Greek_iota> <dead_grave> <U1f29>", 0x1F9B) 
     2068CheckCompUni("<Greek_iota> <U1f2b>", 0x1F9B) 
     2069CheckCompUni("<Greek_iota> <combining_acute> <parenright> <Greek_ETA>", 0x1F9C) 
     2070CheckCompUni("<Greek_iota> <combining_acute> <U0313> <Greek_ETA>", 0x1F9C) 
     2071CheckCompUni("<Greek_iota> <combining_acute> <U1f28>", 0x1F9C) 
     2072CheckCompUni("<Greek_iota> <apostrophe> <parenright> <Greek_ETA>", 0x1F9C) 
     2073CheckCompUni("<Greek_iota> <apostrophe> <U0313> <Greek_ETA>", 0x1F9C) 
     2074CheckCompUni("<Greek_iota> <acute> <parenright> <Greek_ETA>", 0x1F9C) 
     2075CheckCompUni("<Greek_iota> <acute> <U0313> <Greek_ETA>", 0x1F9C) 
     2076CheckCompUni("<Greek_iota> <dead_acute> <parenright> <Greek_ETA>", 0x1F9C) 
     2077CheckCompUni("<Greek_iota> <dead_acute> <U0313> <Greek_ETA>", 0x1F9C) 
     2078CheckCompUni("<Greek_iota> <apostrophe> <U1f28>", 0x1F9C) 
     2079CheckCompUni("<Greek_iota> <acute> <U1f28>", 0x1F9C) 
     2080CheckCompUni("<Greek_iota> <dead_acute> <U1f28>", 0x1F9C) 
     2081CheckCompUni("<Greek_iota> <U1f2c>", 0x1F9C) 
     2082CheckCompUni("<Greek_iota> <combining_acute> <parenleft> <Greek_ETA>", 0x1F9D) 
     2083CheckCompUni("<Greek_iota> <combining_acute> <U0314> <Greek_ETA>", 0x1F9D) 
     2084CheckCompUni("<Greek_iota> <combining_acute> <U1f29>", 0x1F9D) 
     2085CheckCompUni("<Greek_iota> <apostrophe> <parenleft> <Greek_ETA>", 0x1F9D) 
     2086CheckCompUni("<Greek_iota> <apostrophe> <U0314> <Greek_ETA>", 0x1F9D) 
     2087CheckCompUni("<Greek_iota> <acute> <parenleft> <Greek_ETA>", 0x1F9D) 
     2088CheckCompUni("<Greek_iota> <acute> <U0314> <Greek_ETA>", 0x1F9D) 
     2089CheckCompUni("<Greek_iota> <dead_acute> <parenleft> <Greek_ETA>", 0x1F9D) 
     2090CheckCompUni("<Greek_iota> <dead_acute> <U0314> <Greek_ETA>", 0x1F9D) 
     2091CheckCompUni("<Greek_iota> <apostrophe> <U1f29>", 0x1F9D) 
     2092CheckCompUni("<Greek_iota> <acute> <U1f29>", 0x1F9D) 
     2093CheckCompUni("<Greek_iota> <dead_acute> <U1f29>", 0x1F9D) 
     2094CheckCompUni("<Greek_iota> <U1f2d>", 0x1F9D) 
     2095CheckCompUni("<Greek_iota> <asciitilde> <parenright> <Greek_ETA>", 0x1F9E) 
     2096CheckCompUni("<Greek_iota> <asciitilde> <U0313> <Greek_ETA>", 0x1F9E) 
     2097CheckCompUni("<Greek_iota> <dead_tilde> <parenright> <Greek_ETA>", 0x1F9E) 
     2098CheckCompUni("<Greek_iota> <dead_tilde> <U0313> <Greek_ETA>", 0x1F9E) 
     2099CheckCompUni("<Greek_iota> <U0342> <parenright> <Greek_ETA>", 0x1F9E) 
     2100CheckCompUni("<Greek_iota> <U0342> <U0313> <Greek_ETA>", 0x1F9E) 
     2101CheckCompUni("<Greek_iota> <asciitilde> <U1f28>", 0x1F9E) 
     2102CheckCompUni("<Greek_iota> <dead_tilde> <U1f28>", 0x1F9E) 
     2103CheckCompUni("<Greek_iota> <U0342> <U1f28>", 0x1F9E) 
     2104CheckCompUni("<Greek_iota> <U1f2e>", 0x1F9E) 
     2105CheckCompUni("<Greek_iota> <asciitilde> <parenleft> <Greek_ETA>", 0x1F9F) 
     2106CheckCompUni("<Greek_iota> <asciitilde> <U0314> <Greek_ETA>", 0x1F9F) 
     2107CheckCompUni("<Greek_iota> <dead_tilde> <parenleft> <Greek_ETA>", 0x1F9F) 
     2108CheckCompUni("<Greek_iota> <dead_tilde> <U0314> <Greek_ETA>", 0x1F9F) 
     2109CheckCompUni("<Greek_iota> <U0342> <parenleft> <Greek_ETA>", 0x1F9F) 
     2110CheckCompUni("<Greek_iota> <U0342> <U0314> <Greek_ETA>", 0x1F9F) 
     2111CheckCompUni("<Greek_iota> <asciitilde> <U1f29>", 0x1F9F) 
     2112CheckCompUni("<Greek_iota> <dead_tilde> <U1f29>", 0x1F9F) 
     2113CheckCompUni("<Greek_iota> <U0342> <U1f29>", 0x1F9F) 
     2114CheckCompUni("<Greek_iota> <U1f2f>", 0x1F9F) 
     2115CheckCompUni("<Greek_iota> <parenright> <Greek_omega>", 0x1FA0) 
     2116CheckCompUni("<Greek_iota> <U0313> <Greek_omega>", 0x1FA0) 
     2117CheckCompUni("<Greek_iota> <U1f60>", 0x1FA0) 
     2118CheckCompUni("<Greek_iota> <parenleft> <Greek_omega>", 0x1FA1) 
     2119CheckCompUni("<Greek_iota> <U0314> <Greek_omega>", 0x1FA1) 
     2120CheckCompUni("<Greek_iota> <U1f61>", 0x1FA1) 
     2121CheckCompUni("<Greek_iota> <combining_grave> <parenright> <Greek_omega>", 0x1FA2) 
     2122CheckCompUni("<Greek_iota> <combining_grave> <U0313> <Greek_omega>", 0x1FA2) 
     2123CheckCompUni("<Greek_iota> <combining_grave> <U1f60>", 0x1FA2) 
     2124CheckCompUni("<Greek_iota> <grave> <parenright> <Greek_omega>", 0x1FA2) 
     2125CheckCompUni("<Greek_iota> <grave> <U0313> <Greek_omega>", 0x1FA2) 
     2126CheckCompUni("<Greek_iota> <dead_grave> <parenright> <Greek_omega>", 0x1FA2) 
     2127CheckCompUni("<Greek_iota> <dead_grave> <U0313> <Greek_omega>", 0x1FA2) 
     2128CheckCompUni("<Greek_iota> <grave> <U1f60>", 0x1FA2) 
     2129CheckCompUni("<Greek_iota> <dead_grave> <U1f60>", 0x1FA2) 
     2130CheckCompUni("<Greek_iota> <U1f62>", 0x1FA2) 
     2131CheckCompUni("<Greek_iota> <combining_grave> <parenleft> <Greek_omega>", 0x1FA3) 
     2132CheckCompUni("<Greek_iota> <combining_grave> <U0314> <Greek_omega>", 0x1FA3) 
     2133CheckCompUni("<Greek_iota> <combining_grave> <U1f61>", 0x1FA3) 
     2134CheckCompUni("<Greek_iota> <grave> <parenleft> <Greek_omega>", 0x1FA3) 
     2135CheckCompUni("<Greek_iota> <grave> <U0314> <Greek_omega>", 0x1FA3) 
     2136CheckCompUni("<Greek_iota> <dead_grave> <parenleft> <Greek_omega>", 0x1FA3) 
     2137CheckCompUni("<Greek_iota> <dead_grave> <U0314> <Greek_omega>", 0x1FA3) 
     2138CheckCompUni("<Greek_iota> <grave> <U1f61>", 0x1FA3) 
     2139CheckCompUni("<Greek_iota> <dead_grave> <U1f61>", 0x1FA3) 
     2140CheckCompUni("<Greek_iota> <U1f63>", 0x1FA3) 
     2141CheckCompUni("<Greek_iota> <combining_acute> <parenright> <Greek_omega>", 0x1FA4) 
     2142CheckCompUni("<Greek_iota> <combining_acute> <U0313> <Greek_omega>", 0x1FA4) 
     2143CheckCompUni("<Greek_iota> <combining_acute> <U1f60>", 0x1FA4) 
     2144CheckCompUni("<Greek_iota> <apostrophe> <parenright> <Greek_omega>", 0x1FA4) 
     2145CheckCompUni("<Greek_iota> <apostrophe> <U0313> <Greek_omega>", 0x1FA4) 
     2146CheckCompUni("<Greek_iota> <acute> <parenright> <Greek_omega>", 0x1FA4) 
     2147CheckCompUni("<Greek_iota> <acute> <U0313> <Greek_omega>", 0x1FA4) 
     2148CheckCompUni("<Greek_iota> <dead_acute> <parenright> <Greek_omega>", 0x1FA4) 
     2149CheckCompUni("<Greek_iota> <dead_acute> <U0313> <Greek_omega>", 0x1FA4) 
     2150CheckCompUni("<Greek_iota> <apostrophe> <U1f60>", 0x1FA4) 
     2151CheckCompUni("<Greek_iota> <acute> <U1f60>", 0x1FA4) 
     2152CheckCompUni("<Greek_iota> <dead_acute> <U1f60>", 0x1FA4) 
     2153CheckCompUni("<Greek_iota> <U1f64>", 0x1FA4) 
     2154CheckCompUni("<Greek_iota> <combining_acute> <parenleft> <Greek_omega>", 0x1FA5) 
     2155CheckCompUni("<Greek_iota> <combining_acute> <U0314> <Greek_omega>", 0x1FA5) 
     2156CheckCompUni("<Greek_iota> <combining_acute> <U1f61>", 0x1FA5) 
     2157CheckCompUni("<Greek_iota> <apostrophe> <parenleft> <Greek_omega>", 0x1FA5) 
     2158CheckCompUni("<Greek_iota> <apostrophe> <U0314> <Greek_omega>", 0x1FA5) 
     2159CheckCompUni("<Greek_iota> <acute> <parenleft> <Greek_omega>", 0x1FA5) 
     2160CheckCompUni("<Greek_iota> <acute> <U0314> <Greek_omega>", 0x1FA5) 
     2161CheckCompUni("<Greek_iota> <dead_acute> <parenleft> <Greek_omega>", 0x1FA5) 
     2162CheckCompUni("<Greek_iota> <dead_acute> <U0314> <Greek_omega>", 0x1FA5) 
     2163CheckCompUni("<Greek_iota> <apostrophe> <U1f61>", 0x1FA5) 
     2164CheckCompUni("<Greek_iota> <acute> <U1f61>", 0x1FA5) 
     2165CheckCompUni("<Greek_iota> <dead_acute> <U1f61>", 0x1FA5) 
     2166CheckCompUni("<Greek_iota> <U1f65>", 0x1FA5) 
     2167CheckCompUni("<Greek_iota> <asciitilde> <parenright> <Greek_omega>", 0x1FA6) 
     2168CheckCompUni("<Greek_iota> <asciitilde> <U0313> <Greek_omega>", 0x1FA6) 
     2169CheckCompUni("<Greek_iota> <dead_tilde> <parenright> <Greek_omega>", 0x1FA6) 
     2170CheckCompUni("<Greek_iota> <dead_tilde> <U0313> <Greek_omega>", 0x1FA6) 
     2171CheckCompUni("<Greek_iota> <U0342> <parenright> <Greek_omega>", 0x1FA6) 
     2172CheckCompUni("<Greek_iota> <U0342> <U0313> <Greek_omega>", 0x1FA6) 
     2173CheckCompUni("<Greek_iota> <asciitilde> <U1f60>", 0x1FA6) 
     2174CheckCompUni("<Greek_iota> <dead_tilde> <U1f60>", 0x1FA6) 
     2175CheckCompUni("<Greek_iota> <U0342> <U1f60>", 0x1FA6) 
     2176CheckCompUni("<Greek_iota> <U1f66>", 0x1FA6) 
     2177CheckCompUni("<Greek_iota> <asciitilde> <parenleft> <Greek_omega>", 0x1FA7) 
     2178CheckCompUni("<Greek_iota> <asciitilde> <U0314> <Greek_omega>", 0x1FA7) 
     2179CheckCompUni("<Greek_iota> <dead_tilde> <parenleft> <Greek_omega>", 0x1FA7) 
     2180CheckCompUni("<Greek_iota> <dead_tilde> <U0314> <Greek_omega>", 0x1FA7) 
     2181CheckCompUni("<Greek_iota> <U0342> <parenleft> <Greek_omega>", 0x1FA7) 
     2182CheckCompUni("<Greek_iota> <U0342> <U0314> <Greek_omega>", 0x1FA7) 
     2183CheckCompUni("<Greek_iota> <asciitilde> <U1f61>", 0x1FA7) 
     2184CheckCompUni("<Greek_iota> <dead_tilde> <U1f61>", 0x1FA7) 
     2185CheckCompUni("<Greek_iota> <U0342> <U1f61>", 0x1FA7) 
     2186CheckCompUni("<Greek_iota> <U1f67>", 0x1FA7) 
     2187CheckCompUni("<Greek_iota> <parenright> <Greek_OMEGA>", 0x1FA8) 
     2188CheckCompUni("<Greek_iota> <U0313> <Greek_OMEGA>", 0x1FA8) 
     2189CheckCompUni("<Greek_iota> <U1f68>", 0x1FA8) 
     2190CheckCompUni("<Greek_iota> <parenleft> <Greek_OMEGA>", 0x1FA9) 
     2191CheckCompUni("<Greek_iota> <U0314> <Greek_OMEGA>", 0x1FA9) 
     2192CheckCompUni("<Greek_iota> <U1f69>", 0x1FA9) 
     2193CheckCompUni("<Greek_iota> <combining_grave> <parenright> <Greek_OMEGA>", 0x1FAA) 
     2194CheckCompUni("<Greek_iota> <combining_grave> <U0313> <Greek_OMEGA>", 0x1FAA) 
     2195CheckCompUni("<Greek_iota> <combining_grave> <U1f68>", 0x1FAA) 
     2196CheckCompUni("<Greek_iota> <grave> <parenright> <Greek_OMEGA>", 0x1FAA) 
     2197CheckCompUni("<Greek_iota> <grave> <U0313> <Greek_OMEGA>", 0x1FAA) 
     2198CheckCompUni("<Greek_iota> <dead_grave> <parenright> <Greek_OMEGA>", 0x1FAA) 
     2199CheckCompUni("<Greek_iota> <dead_grave> <U0313> <Greek_OMEGA>", 0x1FAA) 
     2200CheckCompUni("<Greek_iota> <grave> <U1f68>", 0x1FAA) 
     2201CheckCompUni("<Greek_iota> <dead_grave> <U1f68>", 0x1FAA) 
     2202CheckCompUni("<Greek_iota> <U1f6a>", 0x1FAA) 
     2203CheckCompUni("<Greek_iota> <combining_grave> <parenleft> <Greek_OMEGA>", 0x1FAB) 
     2204CheckCompUni("<Greek_iota> <combining_grave> <U0314> <Greek_OMEGA>", 0x1FAB) 
     2205CheckCompUni("<Greek_iota> <combining_grave> <U1f69>", 0x1FAB) 
     2206CheckCompUni("<Greek_iota> <grave> <parenleft> <Greek_OMEGA>", 0x1FAB) 
     2207CheckCompUni("<Greek_iota> <grave> <U0314> <Greek_OMEGA>", 0x1FAB) 
     2208CheckCompUni("<Greek_iota> <dead_grave> <parenleft> <Greek_OMEGA>", 0x1FAB) 
     2209CheckCompUni("<Greek_iota> <dead_grave> <U0314> <Greek_OMEGA>", 0x1FAB) 
     2210CheckCompUni("<Greek_iota> <grave> <U1f69>", 0x1FAB) 
     2211CheckCompUni("<Greek_iota> <dead_grave> <U1f69>", 0x1FAB) 
     2212CheckCompUni("<Greek_iota> <U1f6b>", 0x1FAB) 
     2213CheckCompUni("<Greek_iota> <combining_acute> <parenright> <Greek_OMEGA>", 0x1FAC) 
     2214CheckCompUni("<Greek_iota> <combining_acute> <U0313> <Greek_OMEGA>", 0x1FAC) 
     2215CheckCompUni("<Greek_iota> <combining_acute> <U1f68>", 0x1FAC) 
     2216CheckCompUni("<Greek_iota> <apostrophe> <parenright> <Greek_OMEGA>", 0x1FAC) 
     2217CheckCompUni("<Greek_iota> <apostrophe> <U0313> <Greek_OMEGA>", 0x1FAC) 
     2218CheckCompUni("<Greek_iota> <acute> <parenright> <Greek_OMEGA>", 0x1FAC) 
     2219CheckCompUni("<Greek_iota> <acute> <U0313> <Greek_OMEGA>", 0x1FAC) 
     2220CheckCompUni("<Greek_iota> <dead_acute> <parenright> <Greek_OMEGA>", 0x1FAC) 
     2221CheckCompUni("<Greek_iota> <dead_acute> <U0313> <Greek_OMEGA>", 0x1FAC) 
     2222CheckCompUni("<Greek_iota> <apostrophe> <U1f68>", 0x1FAC) 
     2223CheckCompUni("<Greek_iota> <acute> <U1f68>", 0x1FAC) 
     2224CheckCompUni("<Greek_iota> <dead_acute> <U1f68>", 0x1FAC) 
     2225CheckCompUni("<Greek_iota> <U1f6c>", 0x1FAC) 
     2226CheckCompUni("<Greek_iota> <combining_acute> <parenleft> <Greek_OMEGA>", 0x1FAD) 
     2227CheckCompUni("<Greek_iota> <combining_acute> <U0314> <Greek_OMEGA>", 0x1FAD) 
     2228CheckCompUni("<Greek_iota> <combining_acute> <U1f69>", 0x1FAD) 
     2229CheckCompUni("<Greek_iota> <apostrophe> <parenleft> <Greek_OMEGA>", 0x1FAD) 
     2230CheckCompUni("<Greek_iota> <apostrophe> <U0314> <Greek_OMEGA>", 0x1FAD) 
     2231CheckCompUni("<Greek_iota> <acute> <parenleft> <Greek_OMEGA>", 0x1FAD) 
     2232CheckCompUni("<Greek_iota> <acute> <U0314> <Greek_OMEGA>", 0x1FAD) 
     2233CheckCompUni("<Greek_iota> <dead_acute> <parenleft> <Greek_OMEGA>", 0x1FAD) 
     2234CheckCompUni("<Greek_iota> <dead_acute> <U0314> <Greek_OMEGA>", 0x1FAD) 
     2235CheckCompUni("<Greek_iota> <apostrophe> <U1f69>", 0x1FAD) 
     2236CheckCompUni("<Greek_iota> <acute> <U1f69>", 0x1FAD) 
     2237CheckCompUni("<Greek_iota> <dead_acute> <U1f69>", 0x1FAD) 
     2238CheckCompUni("<Greek_iota> <U1f6d>", 0x1FAD) 
     2239CheckCompUni("<Greek_iota> <asciitilde> <parenright> <Greek_OMEGA>", 0x1FAE) 
     2240CheckCompUni("<Greek_iota> <asciitilde> <U0313> <Greek_OMEGA>", 0x1FAE) 
     2241CheckCompUni("<Greek_iota> <dead_tilde> <parenright> <Greek_OMEGA>", 0x1FAE) 
     2242CheckCompUni("<Greek_iota> <dead_tilde> <U0313> <Greek_OMEGA>", 0x1FAE) 
     2243CheckCompUni("<Greek_iota> <U0342> <parenright> <Greek_OMEGA>", 0x1FAE) 
     2244CheckCompUni("<Greek_iota> <U0342> <U0313> <Greek_OMEGA>", 0x1FAE) 
     2245CheckCompUni("<Greek_iota> <asciitilde> <U1f68>", 0x1FAE) 
     2246CheckCompUni("<Greek_iota> <dead_tilde> <U1f68>", 0x1FAE) 
     2247CheckCompUni("<Greek_iota> <U0342> <U1f68>", 0x1FAE) 
     2248CheckCompUni("<Greek_iota> <U1f6e>", 0x1FAE) 
     2249CheckCompUni("<Greek_iota> <asciitilde> <parenleft> <Greek_OMEGA>", 0x1FAF) 
     2250CheckCompUni("<Greek_iota> <asciitilde> <U0314> <Greek_OMEGA>", 0x1FAF) 
     2251CheckCompUni("<Greek_iota> <dead_tilde> <parenleft> <Greek_OMEGA>", 0x1FAF) 
     2252CheckCompUni("<Greek_iota> <dead_tilde> <U0314> <Greek_OMEGA>", 0x1FAF) 
     2253CheckCompUni("<Greek_iota> <U0342> <parenleft> <Greek_OMEGA>", 0x1FAF) 
     2254CheckCompUni("<Greek_iota> <U0342> <U0314> <Greek_OMEGA>", 0x1FAF) 
     2255CheckCompUni("<Greek_iota> <asciitilde> <U1f69>", 0x1FAF) 
     2256CheckCompUni("<Greek_iota> <dead_tilde> <U1f69>", 0x1FAF) 
     2257CheckCompUni("<Greek_iota> <U0342> <U1f69>", 0x1FAF) 
     2258CheckCompUni("<Greek_iota> <U1f6f>", 0x1FAF) 
     2259CheckCompUni("<b> <Greek_alpha>", 0x1FB0) 
     2260CheckCompUni("<U> <Greek_alpha>", 0x1FB0) 
     2261CheckCompUni("<underscore> <Greek_alpha>", 0x1FB1) 
     2262CheckCompUni("<macron> <Greek_alpha>", 0x1FB1) 
     2263CheckCompUni("<Greek_iota> <combining_grave> <Greek_alpha>", 0x1FB2) 
     2264CheckCompUni("<Greek_iota> <grave> <Greek_alpha>", 0x1FB2) 
     2265CheckCompUni("<Greek_iota> <dead_grave> <Greek_alpha>", 0x1FB2) 
     2266CheckCompUni("<Greek_iota> <U1f70>", 0x1FB2) 
     2267CheckCompUni("<Greek_iota> <Greek_alpha>", 0x1FB3) 
     2268CheckCompUni("<Greek_iota> <combining_acute> <Greek_alpha>", 0x1FB4) 
     2269CheckCompUni("<Greek_iota> <apostrophe> <Greek_alpha>", 0x1FB4) 
     2270CheckCompUni("<Greek_iota> <acute> <Greek_alpha>", 0x1FB4) 
     2271CheckCompUni("<Greek_iota> <dead_acute> <Greek_alpha>", 0x1FB4) 
     2272CheckCompUni("<Greek_iota> <Greek_alphaaccent>", 0x1FB4) 
     2273CheckCompUni("<asciitilde> <Greek_alpha>", 0x1FB6) 
     2274CheckCompUni("<Greek_iota> <asciitilde> <Greek_alpha>", 0x1FB7) 
     2275CheckCompUni("<Greek_iota> <dead_tilde> <Greek_alpha>", 0x1FB7) 
     2276CheckCompUni("<Greek_iota> <U0342> <Greek_alpha>", 0x1FB7) 
     2277CheckCompUni("<Greek_iota> <U1fb6>", 0x1FB7) 
     2278CheckCompUni("<b> <Greek_ALPHA>", 0x1FB8) 
     2279CheckCompUni("<U> <Greek_ALPHA>", 0x1FB8) 
     2280CheckCompUni("<underscore> <Greek_ALPHA>", 0x1FB9) 
     2281CheckCompUni("<macron> <Greek_ALPHA>", 0x1FB9) 
     2282CheckCompUni("<grave> <Greek_ALPHA>", 0x1FBA) 
     2283CheckCompUni("<Greek_iota> <Greek_ALPHA>", 0x1FBC) 
     2284CheckCompUni("<diaeresis> <asciitilde>", 0x1FC1) 
     2285CheckCompUni("<diaeresis> <dead_tilde>", 0x1FC1) 
     2286CheckCompUni("<diaeresis> <U0342>", 0x1FC1) 
     2287CheckCompUni("<Greek_iota> <combining_grave> <Greek_eta>", 0x1FC2) 
     2288CheckCompUni("<Greek_iota> <grave> <Greek_eta>", 0x1FC2) 
     2289CheckCompUni("<Greek_iota> <dead_grave> <Greek_eta>", 0x1FC2) 
     2290CheckCompUni("<Greek_iota> <U1f74>", 0x1FC2) 
     2291CheckCompUni("<Greek_iota> <Greek_eta>", 0x1FC3) 
     2292CheckCompUni("<Greek_iota> <combining_acute> <Greek_eta>", 0x1FC4) 
     2293CheckCompUni("<Greek_iota> <apostrophe> <Greek_eta>", 0x1FC4) 
     2294CheckCompUni("<Greek_iota> <acute> <Greek_eta>", 0x1FC4) 
     2295CheckCompUni("<Greek_iota> <dead_acute> <Greek_eta>", 0x1FC4) 
     2296CheckCompUni("<Greek_iota> <Greek_etaaccent>", 0x1FC4) 
     2297CheckCompUni("<asciitilde> <Greek_eta>", 0x1FC6) 
     2298CheckCompUni("<Greek_iota> <asciitilde> <Greek_eta>", 0x1FC7) 
     2299CheckCompUni("<Greek_iota> <dead_tilde> <Greek_eta>", 0x1FC7) 
     2300CheckCompUni("<Greek_iota> <U0342> <Greek_eta>", 0x1FC7) 
     2301CheckCompUni("<Greek_iota> <U1fc6>", 0x1FC7) 
     2302CheckCompUni("<grave> <Greek_EPSILON>", 0x1FC8) 
     2303CheckCompUni("<grave> <Greek_ETA>", 0x1FCA) 
     2304CheckCompUni("<Greek_iota> <Greek_ETA>", 0x1FCC) 
     2305CheckCompUni("<U1fbf> <combining_grave>", 0x1FCD) 
     2306CheckCompUni("<U1fbf> <grave>", 0x1FCD) 
     2307CheckCompUni("<U1fbf> <dead_grave>", 0x1FCD) 
     2308CheckCompUni("<U1fbf> <combining_acute>", 0x1FCE) 
     2309CheckCompUni("<U1fbf> <apostrophe>", 0x1FCE) 
     2310CheckCompUni("<U1fbf> <acute>", 0x1FCE) 
     2311CheckCompUni("<U1fbf> <dead_acute>", 0x1FCE) 
     2312CheckCompUni("<U1fbf> <asciitilde>", 0x1FCF) 
     2313CheckCompUni("<U1fbf> <dead_tilde>", 0x1FCF) 
     2314CheckCompUni("<U1fbf> <U0342>", 0x1FCF) 
     2315CheckCompUni("<b> <Greek_iota>", 0x1FD0) 
     2316CheckCompUni("<U> <Greek_iota>", 0x1FD0) 
     2317CheckCompUni("<underscore> <Greek_iota>", 0x1FD1) 
     2318CheckCompUni("<macron> <Greek_iota>", 0x1FD1) 
     2319CheckCompUni("<grave> <quotedbl> <Greek_iota>", 0x1FD2) 
     2320CheckCompUni("<grave> <dead_diaeresis> <Greek_iota>", 0x1FD2) 
     2321CheckCompUni("<grave> <Greek_iotadieresis>", 0x1FD2) 
     2322CheckCompUni("<asciitilde> <Greek_iota>", 0x1FD6) 
     2323CheckCompUni("<asciitilde> <quotedbl> <Greek_iota>", 0x1FD7) 
     2324CheckCompUni("<asciitilde> <dead_diaeresis> <Greek_iota>", 0x1FD7) 
     2325CheckCompUni("<asciitilde> <Greek_iotadieresis>", 0x1FD7) 
     2326CheckCompUni("<b> <Greek_IOTA>", 0x1FD8) 
     2327CheckCompUni("<U> <Greek_IOTA>", 0x1FD8) 
     2328CheckCompUni("<underscore> <Greek_IOTA>", 0x1FD9) 
     2329CheckCompUni("<macron> <Greek_IOTA>", 0x1FD9) 
     2330CheckCompUni("<grave> <Greek_IOTA>", 0x1FDA) 
     2331CheckCompUni("<U1ffe> <combining_grave>", 0x1FDD) 
     2332CheckCompUni("<U1ffe> <grave>", 0x1FDD) 
     2333CheckCompUni("<U1ffe> <dead_grave>", 0x1FDD) 
     2334CheckCompUni("<U1ffe> <combining_acute>", 0x1FDE) 
     2335CheckCompUni("<U1ffe> <apostrophe>", 0x1FDE) 
     2336CheckCompUni("<U1ffe> <acute>", 0x1FDE) 
     2337CheckCompUni("<U1ffe> <dead_acute>", 0x1FDE) 
     2338CheckCompUni("<U1ffe> <asciitilde>", 0x1FDF) 
     2339CheckCompUni("<U1ffe> <dead_tilde>", 0x1FDF) 
     2340CheckCompUni("<U1ffe> <U0342>", 0x1FDF) 
     2341CheckCompUni("<b> <Greek_upsilon>", 0x1FE0) 
     2342CheckCompUni("<U> <Greek_upsilon>", 0x1FE0) 
     2343CheckCompUni("<underscore> <Greek_upsilon>", 0x1FE1) 
     2344CheckCompUni("<macron> <Greek_upsilon>", 0x1FE1) 
     2345CheckCompUni("<grave> <quotedbl> <Greek_upsilon>", 0x1FE2) 
     2346CheckCompUni("<grave> <dead_diaeresis> <Greek_upsilon>", 0x1FE2) 
     2347CheckCompUni("<grave> <Greek_upsilondieresis>", 0x1FE2) 
     2348CheckCompUni("<parenright> <Greek_rho>", 0x1FE4) 
     2349CheckCompUni("<parenleft> <Greek_rho>", 0x1FE5) 
     2350CheckCompUni("<asciitilde> <Greek_upsilon>", 0x1FE6) 
     2351CheckCompUni("<asciitilde> <quotedbl> <Greek_upsilon>", 0x1FE7) 
     2352CheckCompUni("<asciitilde> <dead_diaeresis> <Greek_upsilon>", 0x1FE7) 
     2353CheckCompUni("<asciitilde> <Greek_upsilondieresis>", 0x1FE7) 
     2354CheckCompUni("<b> <Greek_UPSILON>", 0x1FE8) 
     2355CheckCompUni("<U> <Greek_UPSILON>", 0x1FE8) 
     2356CheckCompUni("<underscore> <Greek_UPSILON>", 0x1FE9) 
     2357CheckCompUni("<macron> <Greek_UPSILON>", 0x1FE9) 
     2358CheckCompUni("<grave> <Greek_UPSILON>", 0x1FEA) 
     2359CheckCompUni("<parenleft> <Greek_RHO>", 0x1FEC) 
     2360CheckCompUni("<diaeresis> <combining_grave>", 0x1FED) 
     2361CheckCompUni("<diaeresis> <grave>", 0x1FED) 
     2362CheckCompUni("<diaeresis> <dead_grave>", 0x1FED) 
     2363CheckCompUni("<Greek_iota> <combining_grave> <Greek_omega>", 0x1FF2) 
     2364CheckCompUni("<Greek_iota> <grave> <Greek_omega>", 0x1FF2) 
     2365CheckCompUni("<Greek_iota> <dead_grave> <Greek_omega>", 0x1FF2) 
     2366CheckCompUni("<Greek_iota> <U1f7c>", 0x1FF2) 
     2367CheckCompUni("<Greek_iota> <Greek_omega>", 0x1FF3) 
     2368CheckCompUni("<Greek_iota> <combining_acute> <Greek_omega>", 0x1FF4) 
     2369CheckCompUni("<Greek_iota> <apostrophe> <Greek_omega>", 0x1FF4) 
     2370CheckCompUni("<Greek_iota> <acute> <Greek_omega>", 0x1FF4) 
     2371CheckCompUni("<Greek_iota> <dead_acute> <Greek_omega>", 0x1FF4) 
     2372CheckCompUni("<Greek_iota> <Greek_omegaaccent>", 0x1FF4) 
     2373CheckCompUni("<asciitilde> <Greek_omega>", 0x1FF6) 
     2374CheckCompUni("<Greek_iota> <asciitilde> <Greek_omega>", 0x1FF7) 
     2375CheckCompUni("<Greek_iota> <dead_tilde> <Greek_omega>", 0x1FF7) 
     2376CheckCompUni("<Greek_iota> <U0342> <Greek_omega>", 0x1FF7) 
     2377CheckCompUni("<Greek_iota> <U1ff6>", 0x1FF7) 
     2378CheckCompUni("<grave> <Greek_OMICRON>", 0x1FF8) 
     2379CheckCompUni("<grave> <Greek_OMEGA>", 0x1FFA) 
     2380CheckCompUni("<Greek_iota> <Greek_OMEGA>", 0x1FFC) 
     2381CheckCompUni("<percent> <o>", 0x2030) 
    23822382CheckCompUni("<period> <less>", 0x2039) 
    23832383CheckCompUni("<period> <greater>", 0x203A) 
    2384 CheckCompUni("<asciicircum> <KP_0>      ", 0x2070) 
    2385 CheckCompUni("<asciicircum> <0> ", 0x2070) 
    2386 CheckCompUni("<asciicircum> <underbar> <i>      ", 0x2071) 
    2387 CheckCompUni("<asciicircum> <underscore> <i>    ", 0x2071) 
    2388 CheckCompUni("<asciicircum> <KP_4>      ", 0x2074) 
    2389 CheckCompUni("<asciicircum> <4> ", 0x2074) 
    2390 CheckCompUni("<asciicircum> <KP_5>      ", 0x2075) 
    2391 CheckCompUni("<asciicircum> <5> ", 0x2075) 
    2392 CheckCompUni("<asciicircum> <KP_6>      ", 0x2076) 
    2393 CheckCompUni("<asciicircum> <6> ", 0x2076) 
    2394 CheckCompUni("<asciicircum> <KP_7>      ", 0x2077) 
    2395 CheckCompUni("<asciicircum> <7> ", 0x2077) 
    2396 CheckCompUni("<asciicircum> <KP_8>      ", 0x2078) 
    2397 CheckCompUni("<asciicircum> <8> ", 0x2078) 
    2398 CheckCompUni("<asciicircum> <KP_9>      ", 0x2079) 
    2399 CheckCompUni("<asciicircum> <9> ", 0x2079) 
    2400 CheckCompUni("<asciicircum> <KP_Add>    ", 0x207A) 
    2401 CheckCompUni("<asciicircum> <plus>      ", 0x207A) 
    2402 CheckCompUni("<asciicircum> <U2212>     ", 0x207B) 
    2403 CheckCompUni("<asciicircum> <KP_Equal>  ", 0x207C) 
    2404 CheckCompUni("<asciicircum> <equal>     ", 0x207C) 
    2405 CheckCompUni("<asciicircum> <parenleft> ", 0x207D) 
    2406 CheckCompUni("<asciicircum> <parenright>        ", 0x207E) 
    2407 CheckCompUni("<asciicircum> <underbar> <n>      ", 0x207F) 
    2408 CheckCompUni("<asciicircum> <underscore> <n>    ", 0x207F) 
    2409 CheckCompUni("<underbar> <KP_0> ", 0x2080) 
    2410 CheckCompUni("<underbar> <0>    ", 0x2080) 
    2411 CheckCompUni("<underscore> <KP_0>       ", 0x2080) 
    2412 CheckCompUni("<underscore> <0>  ", 0x2080) 
    2413 CheckCompUni("<underbar> <KP_1> ", 0x2081) 
    2414 CheckCompUni("<underbar> <1>    ", 0x2081) 
    2415 CheckCompUni("<underscore> <KP_1>       ", 0x2081) 
    2416 CheckCompUni("<underscore> <1>  ", 0x2081) 
    2417 CheckCompUni("<underbar> <KP_2> ", 0x2082) 
    2418 CheckCompUni("<underbar> <KP_Space>     ", 0x2082) 
    2419 CheckCompUni("<underbar> <2>    ", 0x2082) 
    2420 CheckCompUni("<underscore> <KP_2>       ", 0x2082) 
    2421 CheckCompUni("<underscore> <KP_Space>   ", 0x2082) 
    2422 CheckCompUni("<underscore> <2>  ", 0x2082) 
    2423 CheckCompUni("<underbar> <KP_3> ", 0x2083) 
    2424 CheckCompUni("<underbar> <3>    ", 0x2083) 
    2425 CheckCompUni("<underscore> <KP_3>       ", 0x2083) 
    2426 CheckCompUni("<underscore> <3>  ", 0x2083) 
    2427 CheckCompUni("<underbar> <KP_4> ", 0x2084) 
    2428 CheckCompUni("<underbar> <4>    ", 0x2084) 
    2429 CheckCompUni("<underscore> <KP_4>       ", 0x2084) 
    2430 CheckCompUni("<underscore> <4>  ", 0x2084) 
    2431 CheckCompUni("<underbar> <KP_5> ", 0x2085) 
    2432 CheckCompUni("<underbar> <5>    ", 0x2085) 
    2433 CheckCompUni("<underscore> <KP_5>       ", 0x2085) 
    2434 CheckCompUni("<underscore> <5>  ", 0x2085) 
    2435 CheckCompUni("<underbar> <KP_6> ", 0x2086) 
    2436 CheckCompUni("<underbar> <6>    ", 0x2086) 
    2437 CheckCompUni("<underscore> <KP_6>       ", 0x2086) 
    2438 CheckCompUni("<underscore> <6>  ", 0x2086) 
    2439 CheckCompUni("<underbar> <KP_7> ", 0x2087) 
    2440 CheckCompUni("<underbar> <7>    ", 0x2087) 
    2441 CheckCompUni("<underscore> <KP_7>       ", 0x2087) 
    2442 CheckCompUni("<underscore> <7>  ", 0x2087) 
    2443 CheckCompUni("<underbar> <KP_8> ", 0x2088) 
    2444 CheckCompUni("<underbar> <8>    ", 0x2088) 
    2445 CheckCompUni("<underscore> <KP_8>       ", 0x2088) 
    2446 CheckCompUni("<underscore> <8>  ", 0x2088) 
    2447 CheckCompUni("<underbar> <KP_9> ", 0x2089) 
    2448 CheckCompUni("<underbar> <9>    ", 0x2089) 
    2449 CheckCompUni("<underscore> <KP_9>       ", 0x2089) 
    2450 CheckCompUni("<underscore> <9>  ", 0x2089) 
    2451 CheckCompUni("<underbar> <KP_Add>       ", 0x208A) 
    2452 CheckCompUni("<underbar> <plus> ", 0x208A) 
    2453 CheckCompUni("<underscore> <KP_Add>     ", 0x208A) 
    2454 CheckCompUni("<underscore> <plus>       ", 0x208A) 
    2455 CheckCompUni("<underbar> <U2212>        ", 0x208B) 
    2456 CheckCompUni("<underscore> <U2212>      ", 0x208B) 
    2457 CheckCompUni("<underbar> <KP_Equal>     ", 0x208C) 
    2458 CheckCompUni("<underbar> <equal>        ", 0x208C) 
    2459 CheckCompUni("<underscore> <KP_Equal>   ", 0x208C) 
    2460 CheckCompUni("<underscore> <equal>      ", 0x208C) 
    2461 CheckCompUni("<underbar> <parenleft>    ", 0x208D) 
    2462 CheckCompUni("<underscore> <parenleft>  ", 0x208D) 
    2463 CheckCompUni("<underbar> <parenright>   ", 0x208E) 
    2464 CheckCompUni("<underscore> <parenright> ", 0x208E) 
    2465 CheckCompUni("<asciicircum> <S> <M>     ", 0x2120) 
    2466 CheckCompUni("<KP_Divide> <leftarrow>   ", 0x219A) 
    2467 CheckCompUni("<slash> <leftarrow>       ", 0x219A) 
    2468 CheckCompUni("<KP_Divide> <rightarrow>  ", 0x219B) 
    2469 CheckCompUni("<slash> <rightarrow>      ", 0x219B) 
    2470 CheckCompUni("<KP_Divide> <U2194>       ", 0x21AE) 
    2471 CheckCompUni("<slash> <U2194>   ", 0x21AE) 
    2472 CheckCompUni("<U2203> <U0338>   ", 0x2204) 
    2473 CheckCompUni("<U2208> <U0338>   ", 0x2209) 
    2474 CheckCompUni("<U220b> <U0338>   ", 0x220C) 
    2475 CheckCompUni("<U2223> <U0338>   ", 0x2224) 
    2476 CheckCompUni("<U2225> <U0338>   ", 0x2226) 
    2477 CheckCompUni("<U223c> <U0338>   ", 0x2241) 
    2478 CheckCompUni("<U2243> <U0338>   ", 0x2244) 
    2479 CheckCompUni("<approximate> <U0338>     ", 0x2247) 
    2480 CheckCompUni("<U2248> <U0338>   ", 0x2249) 
    2481 CheckCompUni("<identical> <U0338>       ", 0x2262) 
    2482 CheckCompUni("<U224d> <U0338>   ", 0x226D) 
    2483 CheckCompUni("<leftcaret> <U0338>       ", 0x226E) 
    2484 CheckCompUni("<less> <U0338>    ", 0x226E) 
    2485 CheckCompUni("<rightcaret> <U0338>      ", 0x226F) 
    2486 CheckCompUni("<greater> <U0338> ", 0x226F) 
    2487 CheckCompUni("<lessthanequal> <U0338>   ", 0x2270) 
    2488 CheckCompUni("<greaterthanequal> <U0338>        ", 0x2271) 
    2489 CheckCompUni("<U2272> <U0338>   ", 0x2274) 
    2490 CheckCompUni("<U2273> <U0338>   ", 0x2275) 
    2491 CheckCompUni("<U2276> <U0338>   ", 0x2278) 
    2492 CheckCompUni("<U2277> <U0338>   ", 0x2279) 
    2493 CheckCompUni("<U227a> <U0338>   ", 0x2280) 
    2494 CheckCompUni("<U227b> <U0338>   ", 0x2281) 
    2495 CheckCompUni("<leftshoe> <U0338>        ", 0x2284) 
    2496 CheckCompUni("<includedin> <U0338>      ", 0x2284) 
    2497 CheckCompUni("<rightshoe> <U0338>       ", 0x2285) 
    2498 CheckCompUni("<includes> <U0338>        ", 0x2285) 
    2499 CheckCompUni("<U2286> <U0338>   ", 0x2288) 
    2500 CheckCompUni("<U2287> <U0338>   ", 0x2289) 
    2501 CheckCompUni("<righttack> <U0338>       ", 0x22AC) 
    2502 CheckCompUni("<U22a8> <U0338>   ", 0x22AD) 
    2503 CheckCompUni("<U22a9> <U0338>   ", 0x22AE) 
    2504 CheckCompUni("<U22ab> <U0338>   ", 0x22AF) 
    2505 CheckCompUni("<U227c> <U0338>   ", 0x22E0) 
    2506 CheckCompUni("<U227d> <U0338>   ", 0x22E1) 
    2507 CheckCompUni("<U2291> <U0338>   ", 0x22E2) 
    2508 CheckCompUni("<U2292> <U0338>   ", 0x22E3) 
    2509 CheckCompUni("<U22b2> <U0338>   ", 0x22EA) 
    2510 CheckCompUni("<U22b3> <U0338>   ", 0x22EB) 
    2511 CheckCompUni("<U22b4> <U0338>   ", 0x22EC) 
    2512 CheckCompUni("<U22b5> <U0338>   ", 0x22ED) 
    2513 CheckCompUni("<parenleft> <KP_1> <parenright>   ", 0x2460) 
    2514 CheckCompUni("<parenleft> <1> <parenright>      ", 0x2460) 
    2515 CheckCompUni("<parenleft> <KP_2> <parenright>   ", 0x2461) 
    2516 CheckCompUni("<parenleft> <KP_Space> <parenright>       ", 0x2461) 
    2517 CheckCompUni("<parenleft> <2> <parenright>      ", 0x2461) 
    2518 CheckCompUni("<parenleft> <KP_3> <parenright>   ", 0x2462) 
    2519 CheckCompUni("<parenleft> <3> <parenright>      ", 0x2462) 
    2520 CheckCompUni("<parenleft> <KP_4> <parenright>   ", 0x2463) 
    2521 CheckCompUni("<parenleft> <4> <parenright>      ", 0x2463) 
    2522 CheckCompUni("<parenleft> <KP_5> <parenright>   ", 0x2464) 
    2523 CheckCompUni("<parenleft> <5> <parenright>      ", 0x2464) 
    2524 CheckCompUni("<parenleft> <KP_6> <parenright>   ", 0x2465) 
    2525 CheckCompUni("<parenleft> <6> <parenright>      ", 0x2465) 
    2526 CheckCompUni("<parenleft> <KP_7> <parenright>   ", 0x2466) 
    2527 CheckCompUni("<parenleft> <7> <parenright>      ", 0x2466) 
    2528 CheckCompUni("<parenleft> <KP_8> <parenright>   ", 0x2467) 
    2529 CheckCompUni("<parenleft> <8> <parenright>      ", 0x2467) 
    2530 CheckCompUni("<parenleft> <KP_9> <parenright>   ", 0x2468) 
    2531 CheckCompUni("<parenleft> <9> <parenright>      ", 0x2468) 
    2532 CheckCompUni("<parenleft> <KP_1> <KP_0> <parenright>    ", 0x2469) 
    2533 CheckCompUni("<parenleft> <KP_1> <0> <parenright>       ", 0x2469) 
    2534 CheckCompUni("<parenleft> <1> <KP_0> <parenright>       ", 0x2469) 
    2535 CheckCompUni("<parenleft> <1> <0> <parenright>  ", 0x2469) 
    2536 CheckCompUni("<parenleft> <KP_1> <KP_1> <parenright>    ", 0x246A) 
    2537 CheckCompUni("<parenleft> <KP_1> <1> <parenright>       ", 0x246A) 
    2538 CheckCompUni("<parenleft> <1> <KP_1> <parenright>       ", 0x246A) 
    2539 CheckCompUni("<parenleft> <1> <1> <parenright>  ", 0x246A) 
    2540 CheckCompUni("<parenleft> <KP_1> <KP_2> <parenright>    ", 0x246B) 
    2541 CheckCompUni("<parenleft> <KP_1> <KP_Space> <parenright>        ", 0x246B) 
    2542 CheckCompUni("<parenleft> <KP_1> <2> <parenright>       ", 0x246B) 
    2543 CheckCompUni("<parenleft> <1> <KP_2> <parenright>       ", 0x246B) 
    2544 CheckCompUni("<parenleft> <1> <KP_Space> <parenright>   ", 0x246B) 
    2545 CheckCompUni("<parenleft> <1> <2> <parenright>  ", 0x246B) 
    2546 CheckCompUni("<parenleft> <KP_1> <KP_3> <parenright>    ", 0x246C) 
    2547 CheckCompUni("<parenleft> <KP_1> <3> <parenright>       ", 0x246C) 
    2548 CheckCompUni("<parenleft> <1> <KP_3> <parenright>       ", 0x246C) 
    2549 CheckCompUni("<parenleft> <1> <3> <parenright>  ", 0x246C) 
    2550 CheckCompUni("<parenleft> <KP_1> <KP_4> <parenright>    ", 0x246D) 
    2551 CheckCompUni("<parenleft> <KP_1> <4> <parenright>       ", 0x246D) 
    2552 CheckCompUni("<parenleft> <1> <KP_4> <parenright>       ", 0x246D) 
    2553 CheckCompUni("<parenleft> <1> <4> <parenright>  ", 0x246D) 
    2554 CheckCompUni("<parenleft> <KP_1> <KP_5> <parenright>    ", 0x246E) 
    2555 CheckCompUni("<parenleft> <KP_1> <5> <parenright>       ", 0x246E) 
    2556 CheckCompUni("<parenleft> <1> <KP_5> <parenright>       ", 0x246E) 
    2557 CheckCompUni("<parenleft> <1> <5> <parenright>  ", 0x246E) 
    2558 CheckCompUni("<parenleft> <KP_1> <KP_6> <parenright>    ", 0x246F) 
    2559 CheckCompUni("<parenleft> <KP_1> <6> <parenright>       ", 0x246F) 
    2560 CheckCompUni("<parenleft> <1> <KP_6> <parenright>       ", 0x246F) 
    2561 CheckCompUni("<parenleft> <1> <6> <parenright>  ", 0x246F) 
    2562 CheckCompUni("<parenleft> <KP_1> <KP_7> <parenright>    ", 0x2470) 
    2563 CheckCompUni("<parenleft> <KP_1> <7> <parenright>       ", 0x2470) 
    2564 CheckCompUni("<parenleft> <1> <KP_7> <parenright>       ", 0x2470) 
    2565 CheckCompUni("<parenleft> <1> <7> <parenright>  ", 0x2470) 
    2566 CheckCompUni("<parenleft> <KP_1> <KP_8> <parenright>    ", 0x2471) 
    2567 CheckCompUni("<parenleft> <KP_1> <8> <parenright>       ", 0x2471) 
    2568 CheckCompUni("<parenleft> <1> <KP_8> <parenright>       ", 0x2471) 
    2569 CheckCompUni("<parenleft> <1> <8> <parenright>  ", 0x2471) 
    2570 CheckCompUni("<parenleft> <KP_1> <KP_9> <parenright>    ", 0x2472) 
    2571 CheckCompUni("<parenleft> <KP_1> <9> <parenright>       ", 0x2472) 
    2572 CheckCompUni("<parenleft> <1> <KP_9> <parenright>       ", 0x2472) 
    2573 CheckCompUni("<parenleft> <1> <9> <parenright>  ", 0x2472) 
    2574 CheckCompUni("<parenleft> <KP_2> <KP_0> <parenright>    ", 0x2473) 
    2575 CheckCompUni("<parenleft> <KP_2> <0> <parenright>       ", 0x2473) 
    2576 CheckCompUni("<parenleft> <KP_Space> <KP_0> <parenright>        ", 0x2473) 
    2577 CheckCompUni("<parenleft> <KP_Space> <0> <parenright>   ", 0x2473) 
    2578 CheckCompUni("<parenleft> <2> <KP_0> <parenright>       ", 0x2473) 
    2579 CheckCompUni("<parenleft> <2> <0> <parenright>  ", 0x2473) 
    2580 CheckCompUni("<parenleft> <A> <parenright>      ", 0x24B6) 
    2581 CheckCompUni("<parenleft> <B> <parenright>      ", 0x24B7) 
    2582 CheckCompUni("<parenleft> <C> <parenright>      ", 0x24B8) 
    2583 CheckCompUni("<parenleft> <D> <parenright>      ", 0x24B9) 
    2584 CheckCompUni("<parenleft> <E> <parenright>      ", 0x24BA) 
    2585 CheckCompUni("<parenleft> <F> <parenright>      ", 0x24BB) 
    2586 CheckCompUni("<parenleft> <G> <parenright>      ", 0x24BC) 
    2587 CheckCompUni("<parenleft> <H> <parenright>      ", 0x24BD) 
    2588 CheckCompUni("<parenleft> <I> <parenright>      ", 0x24BE) 
    2589 CheckCompUni("<parenleft> <J> <parenright>      ", 0x24BF) 
    2590 CheckCompUni("<parenleft> <K> <parenright>      ", 0x24C0) 
    2591 CheckCompUni("<parenleft> <L> <parenright>      ", 0x24C1) 
    2592 CheckCompUni("<parenleft> <M> <parenright>      ", 0x24C2) 
    2593 CheckCompUni("<parenleft> <N> <parenright>      ", 0x24C3) 
    2594 CheckCompUni("<parenleft> <O> <parenright>      ", 0x24C4) 
    2595 CheckCompUni("<parenleft> <P> <parenright>      ", 0x24C5) 
    2596 CheckCompUni("<parenleft> <Q> <parenright>      ", 0x24C6) 
    2597 CheckCompUni("<parenleft> <R> <parenright>      ", 0x24C7) 
    2598 CheckCompUni("<parenleft> <S> <parenright>      ", 0x24C8) 
    2599 CheckCompUni("<parenleft> <T> <parenright>      ", 0x24C9) 
    2600 CheckCompUni("<parenleft> <U> <parenright>      ", 0x24CA) 
    2601 CheckCompUni("<parenleft> <V> <parenright>      ", 0x24CB) 
    2602 CheckCompUni("<parenleft> <W> <parenright>      ", 0x24CC) 
    2603 CheckCompUni("<parenleft> <X> <parenright>      ", 0x24CD) 
    2604 CheckCompUni("<parenleft> <Y> <parenright>      ", 0x24CE) 
    2605 CheckCompUni("<parenleft> <Z> <parenright>      ", 0x24CF) 
    2606 CheckCompUni("<parenleft> <a> <parenright>      ", 0x24D0) 
    2607 CheckCompUni("<parenleft> <b> <parenright>      ", 0x24D1) 
    2608 CheckCompUni("<parenleft> <c> <parenright>      ", 0x24D2) 
    2609 CheckCompUni("<parenleft> <d> <parenright>      ", 0x24D3) 
    2610 CheckCompUni("<parenleft> <e> <parenright>      ", 0x24D4) 
    2611 CheckCompUni("<parenleft> <f> <parenright>      ", 0x24D5) 
    2612 CheckCompUni("<parenleft> <g> <parenright>      ", 0x24D6) 
    2613 CheckCompUni("<parenleft> <h> <parenright>      ", 0x24D7) 
    2614 CheckCompUni("<parenleft> <i> <parenright>      ", 0x24D8) 
    2615 CheckCompUni("<parenleft> <j> <parenright>      ", 0x24D9) 
    2616 CheckCompUni("<parenleft> <k> <parenright>      ", 0x24DA) 
    2617 CheckCompUni("<parenleft> <l> <parenright>      ", 0x24DB) 
    2618 CheckCompUni("<parenleft> <m> <parenright>      ", 0x24DC) 
    2619 CheckCompUni("<parenleft> <n> <parenright>      ", 0x24DD) 
    2620 CheckCompUni("<parenleft> <o> <parenright>      ", 0x24DE) 
    2621 CheckCompUni("<parenleft> <p> <parenright>      ", 0x24DF) 
    2622 CheckCompUni("<parenleft> <q> <parenright>      ", 0x24E0) 
    2623 CheckCompUni("<parenleft> <r> <parenright>      ", 0x24E1) 
    2624 CheckCompUni("<parenleft> <s> <parenright>      ", 0x24E2) 
    2625 CheckCompUni("<parenleft> <t> <parenright>      ", 0x24E3) 
    2626 CheckCompUni("<parenleft> <u> <parenright>      ", 0x24E4) 
    2627 CheckCompUni("<parenleft> <v> <parenright>      ", 0x24E5) 
    2628 CheckCompUni("<parenleft> <w> <parenright>      ", 0x24E6) 
    2629 CheckCompUni("<parenleft> <x> <parenright>      ", 0x24E7) 
    2630 CheckCompUni("<parenleft> <y> <parenright>      ", 0x24E8) 
    2631 CheckCompUni("<parenleft> <z> <parenright>      ", 0x24E9) 
    2632 CheckCompUni("<parenleft> <KP_0> <parenright>   ", 0x24EA) 
    2633 CheckCompUni("<parenleft> <0> <parenright>      ", 0x24EA) 
    2634 CheckCompUni("<numbersign> <f>          ", 0x266E) 
    2635 CheckCompUni("<U2add> <U0338>   ", 0x2ADC) 
    2636 CheckCompUni("<quotedbl> <backslash>    ", 0x301D) 
    2637 CheckCompUni("<quotedbl> <slash>                ", 0x301E) 
    2638 CheckCompUni("<parenleft> <KP_2> <KP_1> <parenright>    ", 0x3251) 
    2639 CheckCompUni("<parenleft> <KP_2> <1> <parenright>       ", 0x3251) 
    2640 CheckCompUni("<parenleft> <KP_Space> <KP_1> <parenright>        ", 0x3251) 
    2641 CheckCompUni("<parenleft> <KP_Space> <1> <parenright>   ", 0x3251) 
    2642 CheckCompUni("<parenleft> <2> <KP_1> <parenright>       ", 0x3251) 
    2643 CheckCompUni("<parenleft> <2> <1> <parenright>  ", 0x3251) 
    2644 CheckCompUni("<parenleft> <KP_2> <KP_2> <parenright>    ", 0x3252) 
    2645 CheckCompUni("<parenleft> <KP_2> <KP_Space> <parenright>        ", 0x3252) 
    2646 CheckCompUni("<parenleft> <KP_2> <2> <parenright>       ", 0x3252) 
    2647 CheckCompUni("<parenleft> <KP_Space> <KP_2> <parenright>        ", 0x3252) 
    2648 CheckCompUni("<parenleft> <KP_Space> <KP_Space> <parenright>    ", 0x3252) 
    2649 CheckCompUni("<parenleft> <KP_Space> <2> <parenright>   ", 0x3252) 
    2650 CheckCompUni("<parenleft> <2> <KP_2> <parenright>       ", 0x3252) 
    2651 CheckCompUni("<parenleft> <2> <KP_Space> <parenright>   ", 0x3252) 
    2652 CheckCompUni("<parenleft> <2> <2> <parenright>  ", 0x3252) 
    2653 CheckCompUni("<parenleft> <KP_2> <KP_3> <parenright>    ", 0x3253) 
    2654 CheckCompUni("<parenleft> <KP_2> <3> <parenright>       ", 0x3253) 
    2655 CheckCompUni("<parenleft> <KP_Space> <KP_3> <parenright>        ", 0x3253) 
    2656 CheckCompUni("<parenleft> <KP_Space> <3> <parenright>   ", 0x3253) 
    2657 CheckCompUni("<parenleft> <2> <KP_3> <parenright>       ", 0x3253) 
    2658 CheckCompUni("<parenleft> <2> <3> <parenright>  ", 0x3253) 
    2659 CheckCompUni("<parenleft> <KP_2> <KP_4> <parenright>    ", 0x3254) 
    2660 CheckCompUni("<parenleft> <KP_2> <4> <parenright>       ", 0x3254) 
    2661 CheckCompUni("<parenleft> <KP_Space> <KP_4> <parenright>        ", 0x3254) 
    2662 CheckCompUni("<parenleft> <KP_Space> <4> <parenright>   ", 0x3254) 
    2663 CheckCompUni("<parenleft> <2> <KP_4> <parenright>       ", 0x3254) 
    2664 CheckCompUni("<parenleft> <2> <4> <parenright>  ", 0x3254) 
    2665 CheckCompUni("<parenleft> <KP_2> <KP_5> <parenright>    ", 0x3255) 
    2666 CheckCompUni("<parenleft> <KP_2> <5> <parenright>       ", 0x3255) 
    2667 CheckCompUni("<parenleft> <KP_Space> <KP_5> <parenright>        ", 0x3255) 
    2668 CheckCompUni("<parenleft> <KP_Space> <5> <parenright>   ", 0x3255) 
    2669 CheckCompUni("<parenleft> <2> <KP_5> <parenright>       ", 0x3255) 
    2670 CheckCompUni("<parenleft> <2> <5> <parenright>  ", 0x3255) 
    2671 CheckCompUni("<parenleft> <KP_2> <KP_6> <parenright>    ", 0x3256) 
    2672 CheckCompUni("<parenleft> <KP_2> <6> <parenright>       ", 0x3256) 
    2673 CheckCompUni("<parenleft> <KP_Space> <KP_6> <parenright>        ", 0x3256) 
    2674 CheckCompUni("<parenleft> <KP_Space> <6> <parenright>   ", 0x3256) 
    2675 CheckCompUni("<parenleft> <2> <KP_6> <parenright>       ", 0x3256) 
    2676 CheckCompUni("<parenleft> <2> <6> <parenright>  ", 0x3256) 
    2677 CheckCompUni("<parenleft> <KP_2> <KP_7> <parenright>    ", 0x3257) 
    2678 CheckCompUni("<parenleft> <KP_2> <7> <parenright>       ", 0x3257) 
    2679 CheckCompUni("<parenleft> <KP_Space> <KP_7> <parenright>        ", 0x3257) 
    2680 CheckCompUni("<parenleft> <KP_Space> <7> <parenright>   ", 0x3257) 
    2681 CheckCompUni("<parenleft> <2> <KP_7> <parenright>       ", 0x3257) 
    2682 CheckCompUni("<parenleft> <2> <7> <parenright>  ", 0x3257) 
    2683 CheckCompUni("<parenleft> <KP_2> <KP_8> <parenright>    ", 0x3258) 
    2684 CheckCompUni("<parenleft> <KP_2> <8> <parenright>       ", 0x3258) 
    2685 CheckCompUni("<parenleft> <KP_Space> <KP_8> <parenright>        ", 0x3258) 
    2686 CheckCompUni("<parenleft> <KP_Space> <8> <parenright>   ", 0x3258) 
    2687 CheckCompUni("<parenleft> <2> <KP_8> <parenright>       ", 0x3258) 
    2688 CheckCompUni("<parenleft> <2> <8> <parenright>  ", 0x3258) 
    2689 CheckCompUni("<parenleft> <KP_2> <KP_9> <parenright>    ", 0x3259) 
    2690 CheckCompUni("<parenleft> <KP_2> <9> <parenright>       ", 0x3259) 
    2691 CheckCompUni("<parenleft> <KP_Space> <KP_9> <parenright>        ", 0x3259) 
    2692 CheckCompUni("<parenleft> <KP_Space> <9> <parenright>   ", 0x3259) 
    2693 CheckCompUni("<parenleft> <2> <KP_9> <parenright>       ", 0x3259) 
    2694 CheckCompUni("<parenleft> <2> <9> <parenright>  ", 0x3259) 
    2695 CheckCompUni("<parenleft> <KP_3> <KP_0> <parenright>    ", 0x325A) 
    2696 CheckCompUni("<parenleft> <KP_3> <0> <parenright>       ", 0x325A) 
    2697 CheckCompUni("<parenleft> <3> <KP_0> <parenright>       ", 0x325A) 
    2698 CheckCompUni("<parenleft> <3> <0> <parenright>  ", 0x325A) 
    2699 CheckCompUni("<parenleft> <KP_3> <KP_1> <parenright>    ", 0x325B) 
    2700 CheckCompUni("<parenleft> <KP_3> <1> <parenright>       ", 0x325B) 
    2701 CheckCompUni("<parenleft> <3> <KP_1> <parenright>       ", 0x325B) 
    2702 CheckCompUni("<parenleft> <3> <1> <parenright>  ", 0x325B) 
    2703 CheckCompUni("<parenleft> <KP_3> <KP_2> <parenright>    ", 0x325C) 
    2704 CheckCompUni("<parenleft> <KP_3> <KP_Space> <parenright>        ", 0x325C) 
    2705 CheckCompUni("<parenleft> <KP_3> <2> <parenright>       ", 0x325C) 
    2706 CheckCompUni("<parenleft> <3> <KP_2> <parenright>       ", 0x325C) 
    2707 CheckCompUni("<parenleft> <3> <KP_Space> <parenright>   ", 0x325C) 
    2708 CheckCompUni("<parenleft> <3> <2> <parenright>  ", 0x325C) 
    2709 CheckCompUni("<parenleft> <KP_3> <KP_3> <parenright>    ", 0x325D) 
    2710 CheckCompUni("<parenleft> <KP_3> <3> <parenright>       ", 0x325D) 
    2711 CheckCompUni("<parenleft> <3> <KP_3> <parenright>       ", 0x325D) 
    2712 CheckCompUni("<parenleft> <3> <3> <parenright>  ", 0x325D) 
    2713 CheckCompUni("<parenleft> <KP_3> <KP_4> <parenright>    ", 0x325E) 
    2714 CheckCompUni("<parenleft> <KP_3> <4> <parenright>       ", 0x325E) 
    2715 CheckCompUni("<parenleft> <3> <KP_4> <parenright>       ", 0x325E) 
    2716 CheckCompUni("<parenleft> <3> <4> <parenright>  ", 0x325E) 
    2717 CheckCompUni("<parenleft> <KP_3> <KP_5> <parenright>    ", 0x325F) 
    2718 CheckCompUni("<parenleft> <KP_3> <5> <parenright>       ", 0x325F) 
    2719 CheckCompUni("<parenleft> <3> <KP_5> <parenright>       ", 0x325F) 
    2720 CheckCompUni("<parenleft> <3> <5> <parenright>  ", 0x325F) 
    2721 CheckCompUni("<parenleft> <KP_3> <KP_6> <parenright>    ", 0x32B1) 
    2722 CheckCompUni("<parenleft> <KP_3> <6> <parenright>       ", 0x32B1) 
    2723 CheckCompUni("<parenleft> <3> <KP_6> <parenright>       ", 0x32B1) 
    2724 CheckCompUni("<parenleft> <3> <6> <parenright>  ", 0x32B1) 
    2725 CheckCompUni("<parenleft> <KP_3> <KP_7> <parenright>    ", 0x32B2) 
    2726 CheckCompUni("<parenleft> <KP_3> <7> <parenright>       ", 0x32B2) 
    2727 CheckCompUni("<parenleft> <3> <KP_7> <parenright>       ", 0x32B2) 
    2728 CheckCompUni("<parenleft> <3> <7> <parenright>  ", 0x32B2) 
    2729 CheckCompUni("<parenleft> <KP_3> <KP_8> <parenright>    ", 0x32B3) 
    2730 CheckCompUni("<parenleft> <KP_3> <8> <parenright>       ", 0x32B3) 
    2731 CheckCompUni("<parenleft> <3> <KP_8> <parenright>       ", 0x32B3) 
    2732 CheckCompUni("<parenleft> <3> <8> <parenright>  ", 0x32B3) 
    2733 CheckCompUni("<parenleft> <KP_3> <KP_9> <parenright>    ", 0x32B4) 
    2734 CheckCompUni("<parenleft> <KP_3> <9> <parenright>       ", 0x32B4) 
    2735 CheckCompUni("<parenleft> <3> <KP_9> <parenright>       ", 0x32B4) 
    2736 CheckCompUni("<parenleft> <3> <9> <parenright>  ", 0x32B4) 
    2737 CheckCompUni("<parenleft> <KP_4> <KP_0> <parenright>    ", 0x32B5) 
    2738 CheckCompUni("<parenleft> <KP_4> <0> <parenright>       ", 0x32B5) 
    2739 CheckCompUni("<parenleft> <4> <KP_0> <parenright>       ", 0x32B5) 
    2740 CheckCompUni("<parenleft> <4> <0> <parenright>  ", 0x32B5) 
    2741 CheckCompUni("<parenleft> <KP_4> <KP_1> <parenright>    ", 0x32B6) 
    2742 CheckCompUni("<parenleft> <KP_4> <1> <parenright>       ", 0x32B6) 
    2743 CheckCompUni("<parenleft> <4> <KP_1> <parenright>       ", 0x32B6) 
    2744 CheckCompUni("<parenleft> <4> <1> <parenright>  ", 0x32B6) 
    2745 CheckCompUni("<parenleft> <KP_4> <KP_2> <parenright>    ", 0x32B7) 
    2746 CheckCompUni("<parenleft> <KP_4> <KP_Space> <parenright>        ", 0x32B7) 
    2747 CheckCompUni("<parenleft> <KP_4> <2> <parenright>       ", 0x32B7) 
    2748 CheckCompUni("<parenleft> <4> <KP_2> <parenright>       ", 0x32B7) 
    2749 CheckCompUni("<parenleft> <4> <KP_Space> <parenright>   ", 0x32B7) 
    2750 CheckCompUni("<parenleft> <4> <2> <parenright>  ", 0x32B7) 
    2751 CheckCompUni("<parenleft> <KP_4> <KP_3> <parenright>    ", 0x32B8) 
    2752 CheckCompUni("<parenleft> <KP_4> <3> <parenright>       ", 0x32B8) 
    2753 CheckCompUni("<parenleft> <4> <KP_3> <parenright>       ", 0x32B8) 
    2754 CheckCompUni("<parenleft> <4> <3> <parenright>  ", 0x32B8) 
    2755 CheckCompUni("<parenleft> <KP_4> <KP_4> <parenright>    ", 0x32B9) 
    2756 CheckCompUni("<parenleft> <KP_4> <4> <parenright>       ", 0x32B9) 
    2757 CheckCompUni("<parenleft> <4> <KP_4> <parenright>       ", 0x32B9) 
    2758 CheckCompUni("<parenleft> <4> <4> <parenright>  ", 0x32B9) 
    2759 CheckCompUni("<parenleft> <KP_4> <KP_5> <parenright>    ", 0x32BA) 
    2760 CheckCompUni("<parenleft> <KP_4> <5> <parenright>       ", 0x32BA) 
    2761 CheckCompUni("<parenleft> <4> <KP_5> <parenright>       ", 0x32BA) 
    2762 CheckCompUni("<parenleft> <4> <5> <parenright>  ", 0x32BA) 
    2763 CheckCompUni("<parenleft> <KP_4> <KP_6> <parenright>    ", 0x32BB) 
    2764 CheckCompUni("<parenleft> <KP_4> <6> <parenright>       ", 0x32BB) 
    2765 CheckCompUni("<parenleft> <4> <KP_6> <parenright>       ", 0x32BB) 
    2766 CheckCompUni("<parenleft> <4> <6> <parenright>  ", 0x32BB) 
    2767 CheckCompUni("<parenleft> <KP_4> <KP_7> <parenright>    ", 0x32BC) 
    2768 CheckCompUni("<parenleft> <KP_4> <7> <parenright>       ", 0x32BC) 
    2769 CheckCompUni("<parenleft> <4> <KP_7> <parenright>       ", 0x32BC) 
    2770 CheckCompUni("<parenleft> <4> <7> <parenright>  ", 0x32BC) 
    2771 CheckCompUni("<parenleft> <KP_4> <KP_8> <parenright>    ", 0x32BD) 
    2772 CheckCompUni("<parenleft> <KP_4> <8> <parenright>       ", 0x32BD) 
    2773 CheckCompUni("<parenleft> <4> <KP_8> <parenright>       ", 0x32BD) 
    2774 CheckCompUni("<parenleft> <4> <8> <parenright>  ", 0x32BD) 
    2775 CheckCompUni("<parenleft> <KP_4> <KP_9> <parenright>    ", 0x32BE) 
    2776 CheckCompUni("<parenleft> <KP_4> <9> <parenright>       ", 0x32BE) 
    2777 CheckCompUni("<parenleft> <4> <KP_9> <parenright>       ", 0x32BE) 
    2778 CheckCompUni("<parenleft> <4> <9> <parenright>  ", 0x32BE) 
    2779 CheckCompUni("<parenleft> <KP_5> <KP_0> <parenright>    ", 0x32BF) 
    2780 CheckCompUni("<parenleft> <KP_5> <0> <parenright>       ", 0x32BF) 
    2781 CheckCompUni("<parenleft> <5> <KP_0> <parenright>       ", 0x32BF) 
    2782 CheckCompUni("<parenleft> <5> <0> <parenright>  ", 0x32BF) 
    2783 CheckCompUni("<apostrophe> <U>  ", 0xDA) 
    2784 CheckCompUni("<acute> <U>       ", 0xDA) 
    2785 CheckCompUni("<apostrophe> <u>  ", 0xFA) 
    2786 CheckCompUni("<acute> <u>       ", 0xFA) 
    2787 CheckCompUni("<b> <U>   ", 0x16C) 
    2788 CheckCompUni("<U> <U>   ", 0x16C) 
    2789 CheckCompUni("<b> <u>   ", 0x16D) 
    2790 CheckCompUni("<U> <u>   ", 0x16D) 
    2791 CheckCompUni("<asciicircum> <U> ", 0xDB) 
    2792 CheckCompUni("<asciicircum> <u> ", 0xFB) 
    2793 CheckCompUni("<quotedbl> <U>    ", 0xDC) 
    2794 CheckCompUni("<quotedbl> <u>    ", 0xFC) 
    2795 CheckCompUni("<equal> <U>       ", 0x170) 
    2796 CheckCompUni("<equal> <u>       ", 0x171) 
    2797 CheckCompUni("<grave> <U>       ", 0xD9) 
    2798 CheckCompUni("<grave> <u>       ", 0xF9) 
    2799 CheckCompUni("<underscore> <U>  ", 0x16A) 
    2800 CheckCompUni("<macron> <U>      ", 0x16A) 
    2801 CheckCompUni("<underscore> <u>  ", 0x16B) 
    2802 CheckCompUni("<macron> <u>      ", 0x16B) 
    2803 CheckCompUni("<semicolon> <U>   ", 0x172) 
    2804 CheckCompUni("<semicolon> <u>   ", 0x173) 
    2805 CheckCompUni("<o> <U>   ", 0x16E) 
    2806 CheckCompUni("<o> <u>   ", 0x16F) 
    2807 CheckCompUni("<asciitilde> <U>  ", 0x168) 
    2808 CheckCompUni("<asciitilde> <u>  ", 0x169) 
    2809 CheckCompUni("<equal> <W>                       ", 0x20A9) 
    2810 CheckCompUni("<W> <equal>                       ", 0x20A9) 
    2811 CheckCompUni("<apostrophe> <Y>  ", 0xDD) 
    2812 CheckCompUni("<acute> <Y>       ", 0xDD) 
    2813 CheckCompUni("<apostrophe> <y>  ", 0xFD) 
    2814 CheckCompUni("<acute> <y>       ", 0xFD) 
    2815 CheckCompUni("<quotedbl> <Y>    ", 0x178) 
    2816 CheckCompUni("<quotedbl> <y>    ", 0xFF) 
    2817 CheckCompUni("<equal> <Y>                       ", 0xA5) 
    2818 CheckCompUni("<Y> <equal>                       ", 0xA5) 
    2819 CheckCompUni("<period> <Z>      ", 0x17B) 
    2820 CheckCompUni("<period> <z>      ", 0x17C) 
    2821 CheckCompUni("<apostrophe> <Z>  ", 0x179) 
    2822 CheckCompUni("<acute> <Z>       ", 0x179) 
    2823 CheckCompUni("<apostrophe> <z>  ", 0x17A) 
    2824 CheckCompUni("<acute> <z>       ", 0x17A) 
    2825 CheckCompUni("<c> <Z>   ", 0x17D) 
    2826 CheckCompUni("<c> <z>   ", 0x17E) 
     2384CheckCompUni("<asciicircum> <KP_0>", 0x2070) 
     2385CheckCompUni("<asciicircum> <0>", 0x2070) 
     2386CheckCompUni("<asciicircum> <underbar> <i>", 0x2071) 
     2387CheckCompUni("<asciicircum> <underscore> <i>", 0x2071) 
     2388CheckCompUni("<asciicircum> <KP_4>", 0x2074) 
     2389CheckCompUni("<asciicircum> <4>", 0x2074) 
     2390CheckCompUni("<asciicircum> <KP_5>", 0x2075) 
     2391CheckCompUni("<asciicircum> <5>", 0x2075) 
     2392CheckCompUni("<asciicircum> <KP_6>", 0x2076) 
     2393CheckCompUni("<asciicircum> <6>", 0x2076) 
     2394CheckCompUni("<asciicircum> <KP_7>", 0x2077) 
     2395CheckCompUni("<asciicircum> <7>", 0x2077) 
     2396CheckCompUni("<asciicircum> <KP_8>", 0x2078) 
     2397CheckCompUni("<asciicircum> <8>", 0x2078) 
     2398CheckCompUni("<asciicircum> <KP_9>", 0x2079) 
     2399CheckCompUni("<asciicircum> <9>", 0x2079) 
     2400CheckCompUni("<asciicircum> <KP_Add>", 0x207A) 
     2401CheckCompUni("<asciicircum> <plus>", 0x207A) 
     2402CheckCompUni("<asciicircum> <U2212>", 0x207B) 
     2403CheckCompUni("<asciicircum> <KP_Equal>", 0x207C) 
     2404CheckCompUni("<asciicircum> <equal>", 0x207C) 
     2405CheckCompUni("<asciicircum> <parenleft>", 0x207D) 
     2406CheckCompUni("<asciicircum> <parenright>", 0x207E) 
     2407CheckCompUni("<asciicircum> <underbar> <n>", 0x207F) 
     2408CheckCompUni("<asciicircum> <underscore> <n>", 0x207F) 
     2409CheckCompUni("<underbar> <KP_0>", 0x2080) 
     2410CheckCompUni("<underbar> <0>", 0x2080) 
     2411CheckCompUni("<underscore> <KP_0>", 0x2080) 
     2412CheckCompUni("<underscore> <0>", 0x2080) 
     2413CheckCompUni("<underbar> <KP_1>", 0x2081) 
     2414CheckCompUni("<underbar> <1>", 0x2081) 
     2415CheckCompUni("<underscore> <KP_1>", 0x2081) 
     2416CheckCompUni("<underscore> <1>", 0x2081) 
     2417CheckCompUni("<underbar> <KP_2>", 0x2082) 
     2418CheckCompUni("<underbar> <KP_Space>", 0x2082) 
     2419CheckCompUni("<underbar> <2>", 0x2082) 
     2420CheckCompUni("<underscore> <KP_2>", 0x2082) 
     2421CheckCompUni("<underscore> <KP_Space>", 0x2082) 
     2422CheckCompUni("<underscore> <2>", 0x2082) 
     2423CheckCompUni("<underbar> <KP_3>", 0x2083) 
     2424CheckCompUni("<underbar> <3>", 0x2083) 
     2425CheckCompUni("<underscore> <KP_3>", 0x2083) 
     2426CheckCompUni("<underscore> <3>", 0x2083) 
     2427CheckCompUni("<underbar> <KP_4>", 0x2084) 
     2428CheckCompUni("<underbar> <4>", 0x2084) 
     2429CheckCompUni("<underscore> <KP_4>", 0x2084) 
     2430CheckCompUni("<underscore> <4>", 0x2084) 
     2431CheckCompUni("<underbar> <KP_5>", 0x2085) 
     2432CheckCompUni("<underbar> <5>", 0x2085) 
     2433CheckCompUni("<underscore> <KP_5>", 0x2085) 
     2434CheckCompUni("<underscore> <5>", 0x2085) 
     2435CheckCompUni("<underbar> <KP_6>", 0x2086) 
     2436CheckCompUni("<underbar> <6>", 0x2086) 
     2437CheckCompUni("<underscore> <KP_6>", 0x2086) 
     2438CheckCompUni("<underscore> <6>", 0x2086) 
     2439CheckCompUni("<underbar> <KP_7>", 0x2087) 
     2440CheckCompUni("<underbar> <7>", 0x2087) 
     2441CheckCompUni("<underscore> <KP_7>", 0x2087) 
     2442CheckCompUni("<underscore> <7>", 0x2087) 
     2443CheckCompUni("<underbar> <KP_8>", 0x2088) 
     2444CheckCompUni("<underbar> <8>", 0x2088) 
     2445CheckCompUni("<underscore> <KP_8>", 0x2088) 
     2446CheckCompUni("<underscore> <8>", 0x2088) 
     2447CheckCompUni("<underbar> <KP_9>", 0x2089) 
     2448CheckCompUni("<underbar> <9>", 0x2089) 
     2449CheckCompUni("<underscore> <KP_9>", 0x2089) 
     2450CheckCompUni("<underscore> <9>", 0x2089) 
     2451CheckCompUni("<underbar> <KP_Add>", 0x208A) 
     2452CheckCompUni("<underbar> <plus>", 0x208A) 
     2453CheckCompUni("<underscore> <KP_Add>", 0x208A) 
     2454CheckCompUni("<underscore> <plus>", 0x208A) 
     2455CheckCompUni("<underbar> <U2212>", 0x208B) 
     2456CheckCompUni("<underscore> <U2212>", 0x208B) 
     2457CheckCompUni("<underbar> <KP_Equal>", 0x208C) 
     2458CheckCompUni("<underbar> <equal>", 0x208C) 
     2459CheckCompUni("<underscore> <KP_Equal>", 0x208C) 
     2460CheckCompUni("<underscore> <equal>", 0x208C) 
     2461CheckCompUni("<underbar> <parenleft>", 0x208D) 
     2462CheckCompUni("<underscore> <parenleft>", 0x208D) 
     2463CheckCompUni("<underbar> <parenright>", 0x208E) 
     2464CheckCompUni("<underscore> <parenright>", 0x208E) 
     2465CheckCompUni("<asciicircum> <S> <M>", 0x2120) 
     2466CheckCompUni("<KP_Divide> <leftarrow>", 0x219A) 
     2467CheckCompUni("<slash> <leftarrow>", 0x219A) 
     2468CheckCompUni("<KP_Divide> <rightarrow>", 0x219B) 
     2469CheckCompUni("<slash> <rightarrow>", 0x219B) 
     2470CheckCompUni("<KP_Divide> <U2194>", 0x21AE) 
     2471CheckCompUni("<slash> <U2194>", 0x21AE) 
     2472CheckCompUni("<U2203> <U0338>", 0x2204) 
     2473CheckCompUni("<U2208> <U0338>", 0x2209) 
     2474CheckCompUni("<U220b> <U0338>", 0x220C) 
     2475CheckCompUni("<U2223> <U0338>", 0x2224) 
     2476CheckCompUni("<U2225> <U0338>", 0x2226) 
     2477CheckCompUni("<U223c> <U0338>", 0x2241) 
     2478CheckCompUni("<U2243> <U0338>", 0x2244) 
     2479CheckCompUni("<approximate> <U0338>", 0x2247) 
     2480CheckCompUni("<U2248> <U0338>", 0x2249) 
     2481CheckCompUni("<identical> <U0338>", 0x2262) 
     2482CheckCompUni("<U224d> <U0338>", 0x226D) 
     2483CheckCompUni("<leftcaret> <U0338>", 0x226E) 
     2484CheckCompUni("<less> <U0338>", 0x226E) 
     2485CheckCompUni("<rightcaret> <U0338>", 0x226F) 
     2486CheckCompUni("<greater> <U0338>", 0x226F) 
     2487CheckCompUni("<lessthanequal> <U0338>", 0x2270) 
     2488CheckCompUni("<greaterthanequal> <U0338>", 0x2271) 
     2489CheckCompUni("<U2272> <U0338>", 0x2274) 
     2490CheckCompUni("<U2273> <U0338>", 0x2275) 
     2491CheckCompUni("<U2276> <U0338>", 0x2278) 
     2492CheckCompUni("<U2277> <U0338>", 0x2279) 
     2493CheckCompUni("<U227a> <U0338>", 0x2280) 
     2494CheckCompUni("<U227b> <U0338>", 0x2281) 
     2495CheckCompUni("<leftshoe> <U0338>", 0x2284) 
     2496CheckCompUni("<includedin> <U0338>", 0x2284) 
     2497CheckCompUni("<rightshoe> <U0338>", 0x2285) 
     2498CheckCompUni("<includes> <U0338>", 0x2285) 
     2499CheckCompUni("<U2286> <U0338>", 0x2288) 
     2500CheckCompUni("<U2287> <U0338>", 0x2289) 
     2501CheckCompUni("<righttack> <U0338>", 0x22AC) 
     2502CheckCompUni("<U22a8> <U0338>", 0x22AD) 
     2503CheckCompUni("<U22a9> <U0338>", 0x22AE) 
     2504CheckCompUni("<U22ab> <U0338>", 0x22AF) 
     2505CheckCompUni("<U227c> <U0338>", 0x22E0) 
     2506CheckCompUni("<U227d> <U0338>", 0x22E1) 
     2507CheckCompUni("<U2291> <U0338>", 0x22E2) 
     2508CheckCompUni("<U2292> <U0338>", 0x22E3) 
     2509CheckCompUni("<U22b2> <U0338>", 0x22EA) 
     2510CheckCompUni("<U22b3> <U0338>", 0x22EB) 
     2511CheckCompUni("<U22b4> <U0338>", 0x22EC) 
     2512CheckCompUni("<U22b5> <U0338>", 0x22ED) 
     2513CheckCompUni("<parenleft> <KP_1> <parenright>", 0x2460) 
     2514CheckCompUni("<parenleft> <1> <parenright>", 0x2460) 
     2515CheckCompUni("<parenleft> <KP_2> <parenright>", 0x2461) 
     2516CheckCompUni("<parenleft> <KP_Space> <parenright>", 0x2461) 
     2517CheckCompUni("<parenleft> <2> <parenright>", 0x2461) 
     2518CheckCompUni("<parenleft> <KP_3> <parenright>", 0x2462) 
     2519CheckCompUni("<parenleft> <3> <parenright>", 0x2462) 
     2520CheckCompUni("<parenleft> <KP_4> <parenright>", 0x2463) 
     2521CheckCompUni("<parenleft> <4> <parenright>", 0x2463) 
     2522CheckCompUni("<parenleft> <KP_5> <parenright>", 0x2464) 
     2523CheckCompUni("<parenleft> <5> <parenright>", 0x2464) 
     2524CheckCompUni("<parenleft> <KP_6> <parenright>", 0x2465) 
     2525CheckCompUni("<parenleft> <6> <parenright>", 0x2465) 
     2526CheckCompUni("<parenleft> <KP_7> <parenright>", 0x2466) 
     2527CheckCompUni("<parenleft> <7> <parenright>", 0x2466) 
     2528CheckCompUni("<parenleft> <KP_8> <parenright>", 0x2467) 
     2529CheckCompUni("<parenleft> <8> <parenright>", 0x2467) 
     2530CheckCompUni("<parenleft> <KP_9> <parenright>", 0x2468) 
     2531CheckCompUni("<parenleft> <9> <parenright>", 0x2468) 
     2532CheckCompUni("<parenleft> <KP_1> <KP_0> <parenright>", 0x2469) 
     2533CheckCompUni("<parenleft> <KP_1> <0> <parenright>", 0x2469) 
     2534CheckCompUni("<parenleft> <1> <KP_0> <parenright>", 0x2469) 
     2535CheckCompUni("<parenleft> <1> <0> <parenright>", 0x2469) 
     2536CheckCompUni("<parenleft> <KP_1> <KP_1> <parenright>", 0x246A) 
     2537CheckCompUni("<parenleft> <KP_1> <1> <parenright>", 0x246A) 
     2538CheckCompUni("<parenleft> <1> <KP_1> <parenright>", 0x246A) 
     2539CheckCompUni("<parenleft> <1> <1> <parenright>", 0x246A) 
     2540CheckCompUni("<parenleft> <KP_1> <KP_2> <parenright>", 0x246B) 
     2541CheckCompUni("<parenleft> <KP_1> <KP_Space> <parenright>", 0x246B) 
     2542CheckCompUni("<parenleft> <KP_1> <2> <parenright>", 0x246B) 
     2543CheckCompUni("<parenleft> <1> <KP_2> <parenright>", 0x246B) 
     2544CheckCompUni("<parenleft> <1> <KP_Space> <parenright>", 0x246B) 
     2545CheckCompUni("<parenleft> <1> <2> <parenright>", 0x246B) 
     2546CheckCompUni("<parenleft> <KP_1> <KP_3> <parenright>", 0x246C) 
     2547CheckCompUni("<parenleft> <KP_1> <3> <parenright>", 0x246C) 
     2548CheckCompUni("<parenleft> <1> <KP_3> <parenright>", 0x246C) 
     2549CheckCompUni("<parenleft> <1> <3> <parenright>", 0x246C) 
     2550CheckCompUni("<parenleft> <KP_1> <KP_4> <parenright>", 0x246D) 
     2551CheckCompUni("<parenleft> <KP_1> <4> <parenright>", 0x246D) 
     2552CheckCompUni("<parenleft> <1> <KP_4> <parenright>", 0x246D) 
     2553CheckCompUni("<parenleft> <1> <4> <parenright>", 0x246D) 
     2554CheckCompUni("<parenleft> <KP_1> <KP_5> <parenright>", 0x246E) 
     2555CheckCompUni("<parenleft> <KP_1> <5> <parenright>", 0x246E) 
     2556CheckCompUni("<parenleft> <1> <KP_5> <parenright>", 0x246E) 
     2557CheckCompUni("<parenleft> <1> <5> <parenright>", 0x246E) 
     2558CheckCompUni("<parenleft> <KP_1> <KP_6> <parenright>", 0x246F) 
     2559CheckCompUni("<parenleft> <KP_1> <6> <parenright>", 0x246F) 
     2560CheckCompUni("<parenleft> <1> <KP_6> <parenright>", 0x246F) 
     2561CheckCompUni("<parenleft> <1> <6> <parenright>", 0x246F) 
     2562CheckCompUni("<parenleft> <KP_1> <KP_7> <parenright>", 0x2470) 
     2563CheckCompUni("<parenleft> <KP_1> <7> <parenright>", 0x2470) 
     2564CheckCompUni("<parenleft> <1> <KP_7> <parenright>", 0x2470) 
     2565CheckCompUni("<parenleft> <1> <7> <parenright>", 0x2470) 
     2566CheckCompUni("<parenleft> <KP_1> <KP_8> <parenright>", 0x2471) 
     2567CheckCompUni("<parenleft> <KP_1> <8> <parenright>", 0x2471) 
     2568CheckCompUni("<parenleft> <1> <KP_8> <parenright>", 0x2471) 
     2569CheckCompUni("<parenleft> <1> <8> <parenright>", 0x2471) 
     2570CheckCompUni("<parenleft> <KP_1> <KP_9> <parenright>", 0x2472) 
     2571CheckCompUni("<parenleft> <KP_1> <9> <parenright>", 0x2472) 
     2572CheckCompUni("<parenleft> <1> <KP_9> <parenright>", 0x2472) 
     2573CheckCompUni("<parenleft> <1> <9> <parenright>", 0x2472) 
     2574CheckCompUni("<parenleft> <KP_2> <KP_0> <parenright>", 0x2473) 
     2575CheckCompUni("<parenleft> <KP_2> <0> <parenright>", 0x2473) 
     2576CheckCompUni("<parenleft> <KP_Space> <KP_0> <parenright>", 0x2473) 
     2577CheckCompUni("<parenleft> <KP_Space> <0> <parenright>", 0x2473) 
     2578CheckCompUni("<parenleft> <2> <KP_0> <parenright>", 0x2473) 
     2579CheckCompUni("<parenleft> <2> <0> <parenright>", 0x2473) 
     2580CheckCompUni("<parenleft> <A> <parenright>", 0x24B6) 
     2581CheckCompUni("<parenleft> <B> <parenright>", 0x24B7) 
     2582CheckCompUni("<parenleft> <C> <parenright>", 0x24B8) 
     2583CheckCompUni("<parenleft> <D> <parenright>", 0x24B9) 
     2584CheckCompUni("<parenleft> <E> <parenright>", 0x24BA) 
     2585CheckCompUni("<parenleft> <F> <parenright>", 0x24BB) 
     2586CheckCompUni("<parenleft> <G> <parenright>", 0x24BC) 
     2587CheckCompUni("<parenleft> <H> <parenright>", 0x24BD) 
     2588CheckCompUni("<parenleft> <I> <parenright>", 0x24BE) 
     2589CheckCompUni("<parenleft> <J> <parenright>", 0x24BF) 
     2590CheckCompUni("<parenleft> <K> <parenright>", 0x24C0) 
     2591CheckCompUni("<parenleft> <L> <parenright>", 0x24C1) 
     2592CheckCompUni("<parenleft> <M> <parenright>", 0x24C2) 
     2593CheckCompUni("<parenleft> <N> <parenright>", 0x24C3) 
     2594CheckCompUni("<parenleft> <O> <parenright>", 0x24C4) 
     2595CheckCompUni("<parenleft> <P> <parenright>", 0x24C5) 
     2596CheckCompUni("<parenleft> <Q> <parenright>", 0x24C6) 
     2597CheckCompUni("<parenleft> <R> <parenright>", 0x24C7) 
     2598CheckCompUni("<parenleft> <S> <parenright>", 0x24C8) 
     2599CheckCompUni("<parenleft> <T> <parenright>", 0x24C9) 
     2600CheckCompUni("<parenleft> <U> <parenright>", 0x24CA) 
     2601CheckCompUni("<parenleft> <V> <parenright>", 0x24CB) 
     2602CheckCompUni("<parenleft> <W> <parenright>", 0x24CC) 
     2603CheckCompUni("<parenleft> <X> <parenright>", 0x24CD) 
     2604CheckCompUni("<parenleft> <Y> <parenright>", 0x24CE) 
     2605CheckCompUni("<parenleft> <Z> <parenright>", 0x24CF) 
     2606CheckCompUni("<parenleft> <a> <parenright>", 0x24D0) 
     2607CheckCompUni("<parenleft> <b> <parenright>", 0x24D1) 
     2608CheckCompUni("<parenleft> <c> <parenright>", 0x24D2) 
     2609CheckCompUni("<parenleft> <d> <parenright>", 0x24D3) 
     2610CheckCompUni("<parenleft> <e> <parenright>", 0x24D4) 
     2611CheckCompUni("<parenleft> <f> <parenright>", 0x24D5) 
     2612CheckCompUni("<parenleft> <g> <parenright>", 0x24D6) 
     2613CheckCompUni("<parenleft> <h> <parenright>", 0x24D7) 
     2614CheckCompUni("<parenleft> <i> <parenright>", 0x24D8) 
     2615CheckCompUni("<parenleft> <j> <parenright>", 0x24D9) 
     2616CheckCompUni("<parenleft> <k> <parenright>", 0x24DA) 
     2617CheckCompUni("<parenleft> <l> <parenright>", 0x24DB) 
     2618CheckCompUni("<parenleft> <m> <parenright>", 0x24DC) 
     2619CheckCompUni("<parenleft> <n> <parenright>", 0x24DD) 
     2620CheckCompUni("<parenleft> <o> <parenright>", 0x24DE) 
     2621CheckCompUni("<parenleft> <p> <parenright>", 0x24DF) 
     2622CheckCompUni("<parenleft> <q> <parenright>", 0x24E0) 
     2623CheckCompUni("<parenleft> <r> <parenright>", 0x24E1) 
     2624CheckCompUni("<parenleft> <s> <parenright>", 0x24E2) 
     2625CheckCompUni("<parenleft> <t> <parenright>", 0x24E3) 
     2626CheckCompUni("<parenleft> <u> <parenright>", 0x24E4) 
     2627CheckCompUni("<parenleft> <v> <parenright>", 0x24E5) 
     2628CheckCompUni("<parenleft> <w> <parenright>", 0x24E6) 
     2629CheckCompUni("<parenleft> <x> <parenright>", 0x24E7) 
     2630CheckCompUni("<parenleft> <y> <parenright>", 0x24E8) 
     2631CheckCompUni("<parenleft> <z> <parenright>", 0x24E9) 
     2632CheckCompUni("<parenleft> <KP_0> <parenright>", 0x24EA) 
     2633CheckCompUni("<parenleft> <0> <parenright>", 0x24EA) 
     2634CheckCompUni("<numbersign> <f>", 0x266E) 
     2635CheckCompUni("<U2add> <U0338>", 0x2ADC) 
     2636CheckCompUni("<quotedbl> <backslash>", 0x301D) 
     2637CheckCompUni("<quotedbl> <slash>", 0x301E) 
     2638CheckCompUni("<parenleft> <KP_2> <KP_1> <parenright>", 0x3251) 
     2639CheckCompUni("<parenleft> <KP_2> <1> <parenright>", 0x3251) 
     2640CheckCompUni("<parenleft> <KP_Space> <KP_1> <parenright>", 0x3251) 
     2641CheckCompUni("<parenleft> <KP_Space> <1> <parenright>", 0x3251) 
     2642CheckCompUni("<parenleft> <2> <KP_1> <parenright>", 0x3251) 
     2643CheckCompUni("<parenleft> <2> <1> <parenright>", 0x3251) 
     2644CheckCompUni("<parenleft> <KP_2> <KP_2> <parenright>", 0x3252) 
     2645CheckCompUni("<parenleft> <KP_2> <KP_Space> <parenright>", 0x3252) 
     2646CheckCompUni("<parenleft> <KP_2> <2> <parenright>", 0x3252) 
     2647CheckCompUni("<parenleft> <KP_Space> <KP_2> <parenright>", 0x3252) 
     2648CheckCompUni("<parenleft> <KP_Space> <KP_Space> <parenright>", 0x3252) 
     2649CheckCompUni("<parenleft> <KP_Space> <2> <parenright>", 0x3252) 
     2650CheckCompUni("<parenleft> <2> <KP_2> <parenright>", 0x3252) 
     2651CheckCompUni("<parenleft> <2> <KP_Space> <parenright>", 0x3252) 
     2652CheckCompUni("<parenleft> <2> <2> <parenright>", 0x3252) 
     2653CheckCompUni("<parenleft> <KP_2> <KP_3> <parenright>", 0x3253) 
     2654CheckCompUni("<parenleft> <KP_2> <3> <parenright>", 0x3253) 
     2655CheckCompUni("<parenleft> <KP_Space> <KP_3> <parenright>", 0x3253) 
     2656CheckCompUni("<parenleft> <KP_Space> <3> <parenright>", 0x3253) 
     2657CheckCompUni("<parenleft> <2> <KP_3> <parenright>", 0x3253) 
     2658CheckCompUni("<parenleft> <2> <3> <parenright>", 0x3253) 
     2659CheckCompUni("<parenleft> <KP_2> <KP_4> <parenright>", 0x3254) 
     2660CheckCompUni("<parenleft> <KP_2> <4> <parenright>", 0x3254) 
     2661CheckCompUni("<parenleft> <KP_Space> <KP_4> <parenright>", 0x3254) 
     2662CheckCompUni("<parenleft> <KP_Space> <4> <parenright>", 0x3254) 
     2663CheckCompUni("<parenleft> <2> <KP_4> <parenright>", 0x3254) 
     2664CheckCompUni("<parenleft> <2> <4> <parenright>", 0x3254) 
     2665CheckCompUni("<parenleft> <KP_2> <KP_5> <parenright>", 0x3255) 
     2666CheckCompUni("<parenleft> <KP_2> <5> <parenright>", 0x3255) 
     2667CheckCompUni("<parenleft> <KP_Space> <KP_5> <parenright>", 0x3255) 
     2668CheckCompUni("<parenleft> <KP_Space> <5> <parenright>", 0x3255) 
     2669CheckCompUni("<parenleft> <2> <KP_5> <parenright>", 0x3255) 
     2670CheckCompUni("<parenleft> <2> <5> <parenright>", 0x3255) 
     2671CheckCompUni("<parenleft> <KP_2> <KP_6> <parenright>", 0x3256) 
     2672CheckCompUni("<parenleft> <KP_2> <6> <parenright>", 0x3256) 
     2673CheckCompUni("<parenleft> <KP_Space> <KP_6> <parenright>", 0x3256) 
     2674CheckCompUni("<parenleft> <KP_Space> <6> <parenright>", 0x3256) 
     2675CheckCompUni("<parenleft> <2> <KP_6> <parenright>", 0x3256) 
     2676CheckCompUni("<parenleft> <2> <6> <parenright>", 0x3256) 
     2677CheckCompUni("<parenleft> <KP_2> <KP_7> <parenright>", 0x3257) 
     2678CheckCompUni("<parenleft> <KP_2> <7> <parenright>", 0x3257) 
     2679CheckCompUni("<parenleft> <KP_Space> <KP_7> <parenright>", 0x3257) 
     2680CheckCompUni("<parenleft> <KP_Space> <7> <parenright>", 0x3257) 
     2681CheckCompUni("<parenleft> <2> <KP_7> <parenright>", 0x3257) 
     2682CheckCompUni("<parenleft> <2> <7> <parenright>", 0x3257) 
     2683CheckCompUni("<parenleft> <KP_2> <KP_8> <parenright>", 0x3258) 
     2684CheckCompUni("<parenleft> <KP_2> <8> <parenright>", 0x3258) 
     2685CheckCompUni("<parenleft> <KP_Space> <KP_8> <parenright>", 0x3258) 
     2686CheckCompUni("<parenleft> <KP_Space> <8> <parenright>", 0x3258) 
     2687CheckCompUni("<parenleft> <2> <KP_8> <parenright>", 0x3258) 
     2688CheckCompUni("<parenleft> <2> <8> <parenright>", 0x3258) 
     2689CheckCompUni("<parenleft> <KP_2> <KP_9> <parenright>", 0x3259) 
     2690CheckCompUni("<parenleft> <KP_2> <9> <parenright>", 0x3259) 
     2691CheckCompUni("<parenleft> <KP_Space> <KP_9> <parenright>", 0x3259) 
     2692CheckCompUni("<parenleft> <KP_Space> <9> <parenright>", 0x3259) 
     2693CheckCompUni("<parenleft> <2> <KP_9> <parenright>", 0x3259) 
     2694CheckCompUni("<parenleft> <2> <9> <parenright>", 0x3259) 
     2695CheckCompUni("<parenleft> <KP_3> <KP_0> <parenright>", 0x325A) 
     2696CheckCompUni("<parenleft> <KP_3> <0> <parenright>", 0x325A) 
     2697CheckCompUni("<parenleft> <3> <KP_0> <parenright>", 0x325A) 
     2698CheckCompUni("<parenleft> <3> <0> <parenright>", 0x325A) 
     2699CheckCompUni("<parenleft> <KP_3> <KP_1> <parenright>", 0x325B) 
     2700CheckCompUni("<parenleft> <KP_3> <1> <parenright>", 0x325B) 
     2701CheckCompUni("<parenleft> <3> <KP_1> <parenright>", 0x325B) 
     2702CheckCompUni("<parenleft> <3> <1> <parenright>", 0x325B) 
     2703CheckCompUni("<parenleft> <KP_3> <KP_2> <parenright>", 0x325C) 
     2704CheckCompUni("<parenleft> <KP_3> <KP_Space> <parenright>", 0x325C) 
     2705CheckCompUni("<parenleft> <KP_3> <2> <parenright>", 0x325C) 
     2706CheckCompUni("<parenleft> <3> <KP_2> <parenright>", 0x325C) 
     2707CheckCompUni("<parenleft> <3> <KP_Space> <parenright>", 0x325C) 
     2708CheckCompUni("<parenleft> <3> <2> <parenright>", 0x325C) 
     2709CheckCompUni("<parenleft> <KP_3> <KP_3> <parenright>", 0x325D) 
     2710CheckCompUni("<parenleft> <KP_3> <3> <parenright>", 0x325D) 
     2711CheckCompUni("<parenleft> <3> <KP_3> <parenright>", 0x325D) 
     2712CheckCompUni("<parenleft> <3> <3> <parenright>", 0x325D) 
     2713CheckCompUni("<parenleft> <KP_3> <KP_4> <parenright>", 0x325E) 
     2714CheckCompUni("<parenleft> <KP_3> <4> <parenright>", 0x325E) 
     2715CheckCompUni("<parenleft> <3> <KP_4> <parenright>", 0x325E) 
     2716CheckCompUni("<parenleft> <3> <4> <parenright>", 0x325E) 
     2717CheckCompUni("<parenleft> <KP_3> <KP_5> <parenright>", 0x325F) 
     2718CheckCompUni("<parenleft> <KP_3> <5> <parenright>", 0x325F) 
     2719CheckCompUni("<parenleft> <3> <KP_5> <parenright>", 0x325F) 
     2720CheckCompUni("<parenleft> <3> <5> <parenright>", 0x325F) 
     2721CheckCompUni("<parenleft> <KP_3> <KP_6> <parenright>", 0x32B1) 
     2722CheckCompUni("<parenleft> <KP_3> <6> <parenright>", 0x32B1) 
     2723CheckCompUni("<parenleft> <3> <KP_6> <parenright>", 0x32B1) 
     2724CheckCompUni("<parenleft> <3> <6> <parenright>", 0x32B1) 
     2725CheckCompUni("<parenleft> <KP_3> <KP_7> <parenright>", 0x32B2) 
     2726CheckCompUni("<parenleft> <KP_3> <7> <parenright>", 0x32B2) 
     2727CheckCompUni("<parenleft> <3> <KP_7> <parenright>", 0x32B2) 
     2728CheckCompUni("<parenleft> <3> <7> <parenright>", 0x32B2) 
     2729CheckCompUni("<parenleft> <KP_3> <KP_8> <parenright>", 0x32B3) 
     2730CheckCompUni("<parenleft> <KP_3> <8> <parenright>", 0x32B3) 
     2731CheckCompUni("<parenleft> <3> <KP_8> <parenright>", 0x32B3) 
     2732CheckCompUni("<parenleft> <3> <8> <parenright>", 0x32B3) 
     2733CheckCompUni("<parenleft> <KP_3> <KP_9> <parenright>", 0x32B4) 
     2734CheckCompUni("<parenleft> <KP_3> <9> <parenright>", 0x32B4) 
     2735CheckCompUni("<parenleft> <3> <KP_9> <parenright>", 0x32B4) 
     2736CheckCompUni("<parenleft> <3> <9> <parenright>", 0x32B4) 
     2737CheckCompUni("<parenleft> <KP_4> <KP_0> <parenright>", 0x32B5) 
     2738CheckCompUni("<parenleft> <KP_4> <0> <parenright>", 0x32B5) 
     2739CheckCompUni("<parenleft> <4> <KP_0> <parenright>", 0x32B5) 
     2740CheckCompUni("<parenleft> <4> <0> <parenright>", 0x32B5) 
     2741CheckCompUni("<parenleft> <KP_4> <KP_1> <parenright>", 0x32B6) 
     2742CheckCompUni("<parenleft> <KP_4> <1> <parenright>", 0x32B6) 
     2743CheckCompUni("<parenleft> <4> <KP_1> <parenright>", 0x32B6) 
     2744CheckCompUni("<parenleft> <4> <1> <parenright>", 0x32B6) 
     2745CheckCompUni("<parenleft> <KP_4> <KP_2> <parenright>", 0x32B7) 
     2746CheckCompUni("<parenleft> <KP_4> <KP_Space> <parenright>", 0x32B7) 
     2747CheckCompUni("<parenleft> <KP_4> <2> <parenright>", 0x32B7) 
     2748CheckCompUni("<parenleft> <4> <KP_2> <parenright>", 0x32B7) 
     2749CheckCompUni("<parenleft> <4> <KP_Space> <parenright>", 0x32B7) 
     2750CheckCompUni("<parenleft> <4> <2> <parenright>", 0x32B7) 
     2751CheckCompUni("<parenleft> <KP_4> <KP_3> <parenright>", 0x32B8) 
     2752CheckCompUni("<parenleft> <KP_4> <3> <parenright>", 0x32B8) 
     2753CheckCompUni("<parenleft> <4> <KP_3> <parenright>", 0x32B8) 
     2754CheckCompUni("<parenleft> <4> <3> <parenright>", 0x32B8) 
     2755CheckCompUni("<parenleft> <KP_4> <KP_4> <parenright>", 0x32B9) 
     2756CheckCompUni("<parenleft> <KP_4> <4> <parenright>", 0x32B9) 
     2757CheckCompUni("<parenleft> <4> <KP_4> <parenright>", 0x32B9) 
     2758CheckCompUni("<parenleft> <4> <4> <parenright>", 0x32B9) 
     2759CheckCompUni("<parenleft> <KP_4> <KP_5> <parenright>", 0x32BA) 
     2760CheckCompUni("<parenleft> <KP_4> <5> <parenright>", 0x32BA) 
     2761CheckCompUni("<parenleft> <4> <KP_5> <parenright>", 0x32BA) 
     2762CheckCompUni("<parenleft> <4> <5> <parenright>", 0x32BA) 
     2763CheckCompUni("<parenleft> <KP_4> <KP_6> <parenright>", 0x32BB) 
     2764CheckCompUni("<parenleft> <KP_4> <6> <parenright>", 0x32BB) 
     2765CheckCompUni("<parenleft> <4> <KP_6> <parenright>", 0x32BB) 
     2766CheckCompUni("<parenleft> <4> <6> <parenright>", 0x32BB) 
     2767CheckCompUni("<parenleft> <KP_4> <KP_7> <parenright>", 0x32BC) 
     2768CheckCompUni("<parenleft> <KP_4> <7> <parenright>", 0x32BC) 
     2769CheckCompUni("<parenleft> <4> <KP_7> <parenright>", 0x32BC) 
     2770CheckCompUni("<parenleft> <4> <7> <parenright>", 0x32BC) 
     2771CheckCompUni("<parenleft> <KP_4> <KP_8> <parenright>", 0x32BD) 
     2772CheckCompUni("<parenleft> <KP_4> <8> <parenright>", 0x32BD) 
     2773CheckCompUni("<parenleft> <4> <KP_8> <parenright>", 0x32BD) 
     2774CheckCompUni("<parenleft> <4> <8> <parenright>", 0x32BD) 
     2775CheckCompUni("<parenleft> <KP_4> <KP_9> <parenright>", 0x32BE) 
     2776CheckCompUni("<parenleft> <KP_4> <9> <parenright>", 0x32BE) 
     2777CheckCompUni("<parenleft> <4> <KP_9> <parenright>", 0x32BE) 
     2778CheckCompUni("<parenleft> <4> <9> <parenright>", 0x32BE) 
     2779CheckCompUni("<parenleft> <KP_5> <KP_0> <parenright>", 0x32BF) 
     2780CheckCompUni("<parenleft> <KP_5> <0> <parenright>", 0x32BF) 
     2781CheckCompUni("<parenleft> <5> <KP_0> <parenright>", 0x32BF) 
     2782CheckCompUni("<parenleft> <5> <0> <parenright>", 0x32BF) 
     2783CheckCompUni("<apostrophe> <U>", 0xDA) 
     2784CheckCompUni("<acute> <U>", 0xDA) 
     2785CheckCompUni("<apostrophe> <u>", 0xFA) 
     2786CheckCompUni("<acute> <u>", 0xFA) 
     2787CheckCompUni("<b> <U>", 0x16C) 
     2788CheckCompUni("<U> <U>", 0x16C) 
     2789CheckCompUni("<b> <u>", 0x16D) 
     2790CheckCompUni("<U> <u>", 0x16D) 
     2791CheckCompUni("<asciicircum> <U>", 0xDB) 
     2792CheckCompUni("<asciicircum> <u>", 0xFB) 
     2793CheckCompUni("<quotedbl> <U>", 0xDC) 
     2794CheckCompUni("<quotedbl> <u>", 0xFC) 
     2795CheckCompUni("<equal> <U>", 0x170) 
     2796CheckCompUni("<equal> <u>", 0x171) 
     2797CheckCompUni("<grave> <U>", 0xD9) 
     2798CheckCompUni("<grave> <u>", 0xF9) 
     2799CheckCompUni("<underscore> <U>", 0x16A) 
     2800CheckCompUni("<macron> <U>", 0x16A) 
     2801CheckCompUni("<underscore> <u>", 0x16B) 
     2802CheckCompUni("<macron> <u>", 0x16B) 
     2803CheckCompUni("<semicolon> <U>", 0x172) 
     2804CheckCompUni("<semicolon> <u>", 0x173) 
     2805CheckCompUni("<o> <U>", 0x16E) 
     2806CheckCompUni("<o> <u>", 0x16F) 
     2807CheckCompUni("<asciitilde> <U>", 0x168) 
     2808CheckCompUni("<asciitilde> <u>", 0x169) 
     2809CheckCompUni("<equal> <W>", 0x20A9) 
     2810CheckCompUni("<W> <equal>", 0x20A9) 
     2811CheckCompUni("<apostrophe> <Y>", 0xDD) 
     2812CheckCompUni("<acute> <Y>", 0xDD) 
     2813CheckCompUni("<apostrophe> <y>", 0xFD) 
     2814CheckCompUni("<acute> <y>", 0xFD) 
     2815CheckCompUni("<quotedbl> <Y>", 0x178) 
     2816CheckCompUni("<quotedbl> <y>", 0xFF) 
     2817CheckCompUni("<equal> <Y>", 0xA5) 
     2818CheckCompUni("<Y> <equal>", 0xA5) 
     2819CheckCompUni("<period> <Z>", 0x17B) 
     2820CheckCompUni("<period> <z>", 0x17C) 
     2821CheckCompUni("<apostrophe> <Z>", 0x179) 
     2822CheckCompUni("<acute> <Z>", 0x179) 
     2823CheckCompUni("<apostrophe> <z>", 0x17A) 
     2824CheckCompUni("<acute> <z>", 0x17A) 
     2825CheckCompUni("<c> <Z>", 0x17D) 
     2826CheckCompUni("<c> <z>", 0x17E) 
    28272827} 
  • windows/autohotkey/neo20.ahk

    r872 r873  
    24562456CheckCompUni("<malesymbol> <femalesymbol>", 0x26A5) 
    24572457CheckCompUni("<underscore> <underscore>", 0x332) 
    2458 CheckCompUni("<apostrophe> <space>      ", 0x27) 
    2459 CheckCompUni("<space> <greater>         ", 0x5E) 
    2460 CheckCompUni("<greater> <space>         ", 0x5E) 
    2461 CheckCompUni("<space> <asciicircum>     ", 0x5E) 
    2462 CheckCompUni("<asciicircum> <space>     ", 0x5E) 
    2463 CheckCompUni("<space> <minus>           ", 0x7E) 
    2464 CheckCompUni("<minus> <space>           ", 0x7E) 
    2465 CheckCompUni("<space> <asciitilde>      ", 0x7E) 
    2466 CheckCompUni("<asciitilde> <space>      ", 0x7E) 
    2467 CheckCompUni("<A> <T>                   ", 0x40) 
    2468 CheckCompUni("<less> <slash>            ", 0x5C5C) 
    2469 CheckCompUni("<slash> <less>            ", 0x5C5C) 
    2470 CheckCompUni("<slash> <slash>           ", 0x5C5C) 
    2471 CheckCompUni("<l> <v>                   ", 0x7C) 
    2472 CheckCompUni("<v> <l>                   ", 0x7C) 
    2473 CheckCompUni("<L> <V>                   ", 0x7C) 
    2474 CheckCompUni("<V> <L>                   ", 0x7C) 
    2475 CheckCompUni("<asciicircum> <slash>     ", 0x7C) 
    2476 CheckCompUni("<slash> <asciicircum>     ", 0x7C) 
    2477 CheckCompUni("<minus> <parenleft>               ", 0x7B) 
    2478 CheckCompUni("<parenleft> <minus>               ", 0x7B) 
    2479 CheckCompUni("<minus> <parenright>      ", 0x7D) 
    2480 CheckCompUni("<parenright> <minus>      ", 0x7D) 
    2481 CheckCompUni("<parenleft> <parenleft>   ", 0x5B) 
    2482 CheckCompUni("<parenright> <parenright> ", 0x5D) 
    2483 CheckCompUni("<space> <comma>           ", 0xB8) 
    2484 CheckCompUni("<comma> <space>           ", 0xB8) 
    2485 CheckCompUni("<space> <grave>           ", 0x60) 
    2486 CheckCompUni("<grave> <space>           ", 0x60) 
    2487 CheckCompUni("<plus> <plus>             ", 0x23) 
    2488 CheckCompUni("<apostrophe> <A>  ", 0xC1) 
    2489 CheckCompUni("<acute> <A>       ", 0xC1) 
    2490 CheckCompUni("<apostrophe> <a>  ", 0xE1) 
    2491 CheckCompUni("<acute> <a>       ", 0xE1) 
    2492 CheckCompUni("<b> <A>   ", 0x102) 
    2493 CheckCompUni("<U> <A>   ", 0x102) 
    2494 CheckCompUni("<b> <a>   ", 0x103) 
    2495 CheckCompUni("<U> <a>   ", 0x103) 
    2496 CheckCompUni("<asciicircum> <A> ", 0xC2) 
    2497 CheckCompUni("<asciicircum> <a> ", 0xE2) 
    2498 CheckCompUni("<quotedbl> <A>    ", 0xC4) 
    2499 CheckCompUni("<quotedbl> <a>    ", 0xE4) 
     2458CheckCompUni("<apostrophe> <space>", 0x27) 
     2459CheckCompUni("<space> <greater>", 0x5E) 
     2460CheckCompUni("<greater> <space>", 0x5E) 
     2461CheckCompUni("<space> <asciicircum>", 0x5E) 
     2462CheckCompUni("<asciicircum> <space>", 0x5E) 
     2463CheckCompUni("<space> <minus>", 0x7E) 
     2464CheckCompUni("<minus> <space>", 0x7E) 
     2465CheckCompUni("<space> <asciitilde>", 0x7E) 
     2466CheckCompUni("<asciitilde> <space>", 0x7E) 
     2467CheckCompUni("<A> <T>", 0x40) 
     2468CheckCompUni("<less> <slash>", 0x5C5C) 
     2469CheckCompUni("<slash> <less>", 0x5C5C) 
     2470CheckCompUni("<slash> <slash>", 0x5C5C) 
     2471CheckCompUni("<l> <v>", 0x7C) 
     2472CheckCompUni("<v> <l>", 0x7C) 
     2473CheckCompUni("<L> <V>", 0x7C) 
     2474CheckCompUni("<V> <L>", 0x7C) 
     2475CheckCompUni("<asciicircum> <slash>", 0x7C) 
     2476CheckCompUni("<slash> <asciicircum>", 0x7C) 
     2477CheckCompUni("<minus> <parenleft>", 0x7B) 
     2478CheckCompUni("<parenleft> <minus>", 0x7B) 
     2479CheckCompUni("<minus> <parenright>", 0x7D) 
     2480CheckCompUni("<parenright> <minus>", 0x7D) 
     2481CheckCompUni("<parenleft> <parenleft>", 0x5B) 
     2482CheckCompUni("<parenright> <parenright>", 0x5D) 
     2483CheckCompUni("<space> <comma>", 0xB8) 
     2484CheckCompUni("<comma> <space>", 0xB8) 
     2485CheckCompUni("<space> <grave>", 0x60) 
     2486CheckCompUni("<grave> <space>", 0x60) 
     2487CheckCompUni("<plus> <plus>", 0x23) 
     2488CheckCompUni("<apostrophe> <A>", 0xC1) 
     2489CheckCompUni("<acute> <A>", 0xC1) 
     2490CheckCompUni("<apostrophe> <a>", 0xE1) 
     2491CheckCompUni("<acute> <a>", 0xE1) 
     2492CheckCompUni("<b> <A>", 0x102) 
     2493CheckCompUni("<U> <A>", 0x102) 
     2494CheckCompUni("<b> <a>", 0x103) 
     2495CheckCompUni("<U> <a>", 0x103) 
     2496CheckCompUni("<asciicircum> <A>", 0xC2) 
     2497CheckCompUni("<asciicircum> <a>", 0xE2) 
     2498CheckCompUni("<quotedbl> <A>", 0xC4) 
     2499CheckCompUni("<quotedbl> <a>", 0xE4) 
    25002500CheckCompUni("<A> <E>", 0xC6) 
    25012501CheckCompUni("<a> <e>", 0xE6) 
    2502 CheckCompUni("<grave> <A>       ", 0xC0) 
    2503 CheckCompUni("<grave> <a>       ", 0xE0) 
    2504 CheckCompUni("<underscore> <A>  ", 0x100) 
    2505 CheckCompUni("<macron> <A>      ", 0x100) 
    2506 CheckCompUni("<underscore> <a>  ", 0x101) 
    2507 CheckCompUni("<macron> <a>      ", 0x101) 
    2508 CheckCompUni("<semicolon> <A>   ", 0x104) 
    2509 CheckCompUni("<semicolon> <a>   ", 0x105) 
    2510 CheckCompUni("<o> <A>   ", 0xC5) 
    2511 CheckCompUni("<o> <a>   ", 0xE5) 
    2512 CheckCompUni("<asciitilde> <A>  ", 0xC3) 
    2513 CheckCompUni("<asciitilde> <a>  ", 0xE3) 
     2502CheckCompUni("<grave> <A>", 0xC0) 
     2503CheckCompUni("<grave> <a>", 0xE0) 
     2504CheckCompUni("<underscore> <A>", 0x100) 
     2505CheckCompUni("<macron> <A>", 0x100) 
     2506CheckCompUni("<underscore> <a>", 0x101) 
     2507CheckCompUni("<macron> <a>", 0x101) 
     2508CheckCompUni("<semicolon> <A>", 0x104) 
     2509CheckCompUni("<semicolon> <a>", 0x105) 
     2510CheckCompUni("<o> <A>", 0xC5) 
     2511CheckCompUni("<o> <a>", 0xE5) 
     2512CheckCompUni("<asciitilde> <A>", 0xC3) 
     2513CheckCompUni("<asciitilde> <a>", 0xE3) 
    25142514CheckCompUni("<exclam> <asciicircum>", 0xA6) 
    2515 CheckCompUni("<period> <C>      ", 0x10A) 
    2516 CheckCompUni("<period> <c>      ", 0x10B) 
    2517 CheckCompUni("<apostrophe> <C>  ", 0x106) 
    2518 CheckCompUni("<acute> <C>       ", 0x106) 
    2519 CheckCompUni("<apostrophe> <c>  ", 0x107) 
    2520 CheckCompUni("<acute> <c>       ", 0x107) 
    2521 CheckCompUni("<c> <C>   ", 0x10C) 
    2522 CheckCompUni("<c> <c>   ", 0x10D) 
    2523 CheckCompUni("<comma> <C>       ", 0xC7) 
    2524 CheckCompUni("<comma> <c>       ", 0xE7) 
    2525 CheckCompUni("<asciicircum> <C> ", 0x108) 
    2526 CheckCompUni("<asciicircum> <c> ", 0x109) 
    2527 CheckCompUni("<slash> <C>                       ", 0xA2) 
    2528 CheckCompUni("<slash> <c>                       ", 0xA2) 
    2529 CheckCompUni("<C> <slash>                       ", 0xA2) 
    2530 CheckCompUni("<c> <slash>                       ", 0xA2) 
    2531 CheckCompUni("<C> <bar>                 ", 0xA2) 
    2532 CheckCompUni("<c> <bar>                 ", 0xA2) 
    2533 CheckCompUni("<bar> <C>                 ", 0xA2) 
    2534 CheckCompUni("<bar> <c>                 ", 0xA2) 
    2535 CheckCompUni("<slash> <C>                       ", 0x20A1) 
    2536 CheckCompUni("<C> <slash>                       ", 0x20A1) 
     2515CheckCompUni("<period> <C>", 0x10A) 
     2516CheckCompUni("<period> <c>", 0x10B) 
     2517CheckCompUni("<apostrophe> <C>", 0x106) 
     2518CheckCompUni("<acute> <C>", 0x106) 
     2519CheckCompUni("<apostrophe> <c>", 0x107) 
     2520CheckCompUni("<acute> <c>", 0x107) 
     2521CheckCompUni("<c> <C>", 0x10C) 
     2522CheckCompUni("<c> <c>", 0x10D) 
     2523CheckCompUni("<comma> <C>", 0xC7) 
     2524CheckCompUni("<comma> <c>", 0xE7) 
     2525CheckCompUni("<asciicircum> <C>", 0x108) 
     2526CheckCompUni("<asciicircum> <c>", 0x109) 
     2527CheckCompUni("<slash> <C>", 0xA2) 
     2528CheckCompUni("<slash> <c>", 0xA2) 
     2529CheckCompUni("<C> <slash>", 0xA2) 
     2530CheckCompUni("<c> <slash>", 0xA2) 
     2531CheckCompUni("<C> <bar>", 0xA2) 
     2532CheckCompUni("<c> <bar>", 0xA2) 
     2533CheckCompUni("<bar> <C>", 0xA2) 
     2534CheckCompUni("<bar> <c>", 0xA2) 
     2535CheckCompUni("<slash> <C>", 0x20A1) 
     2536CheckCompUni("<C> <slash>", 0x20A1) 
    25372537CheckCompUni("<O> <C>", 0xA9) 
    25382538CheckCompUni("<O> <c>", 0xA9) 
    25392539CheckCompUni("<o> <C>", 0xA9) 
    25402540CheckCompUni("<o> <c>", 0xA9) 
    2541 CheckCompUni("<C> <r>                   ", 0x20A2) 
    2542 CheckCompUni("<x> <o>           ", 0xA4) 
    2543 CheckCompUni("<o> <x>           ", 0xA4) 
    2544 CheckCompUni("<c> <D>   ", 0x10E) 
    2545 CheckCompUni("<c> <d>   ", 0x10F) 
     2541CheckCompUni("<C> <r>", 0x20A2) 
     2542CheckCompUni("<x> <o>", 0xA4) 
     2543CheckCompUni("<o> <x>", 0xA4) 
     2544CheckCompUni("<c> <D>", 0x10E) 
     2545CheckCompUni("<c> <d>", 0x10F) 
    25462546CheckCompUni("<o> <o>", 0xB0) 
    2547 CheckCompUni("<minus> <colon>   ", 0xF7) 
    2548 CheckCompUni("<colon> <minus>   ", 0xF7) 
    2549 CheckCompUni("<d> <minus>                       ", 0x20AB) 
     2547CheckCompUni("<minus> <colon>", 0xF7) 
     2548CheckCompUni("<colon> <minus>", 0xF7) 
     2549CheckCompUni("<d> <minus>", 0x20AB) 
    25502550CheckCompUni("<quotedbl> <comma>", 0x201E) 
    25512551CheckCompUni("<comma> <quotedbl>", 0x201E) 
    25522552CheckCompUni("<minus> <D>", 0x110) 
    25532553CheckCompUni("<minus> <d>", 0x111) 
    2554 CheckCompUni("<KP_Divide> <D>   ", 0x110) 
    2555 CheckCompUni("<slash> <D>       ", 0x110) 
    2556 CheckCompUni("<KP_Divide> <d>   ", 0x111) 
    2557 CheckCompUni("<slash> <d>       ", 0x111) 
    2558 CheckCompUni("<period> <E>      ", 0x116) 
    2559 CheckCompUni("<period> <e>      ", 0x117) 
    2560 CheckCompUni("<apostrophe> <E>  ", 0xC9) 
    2561 CheckCompUni("<acute> <E>       ", 0xC9) 
    2562 CheckCompUni("<apostrophe> <e>  ", 0xE9) 
    2563 CheckCompUni("<acute> <e>       ", 0xE9) 
    2564 CheckCompUni("<c> <E>   ", 0x11A) 
    2565 CheckCompUni("<c> <e>   ", 0x11B) 
    2566 CheckCompUni("<asciicircum> <E> ", 0xCA) 
    2567 CheckCompUni("<asciicircum> <e> ", 0xEA) 
    2568 CheckCompUni("<C> <E>                   ", 0x20A0) 
    2569 CheckCompUni("<quotedbl> <E>    ", 0xCB) 
    2570 CheckCompUni("<quotedbl> <e>    ", 0xEB) 
    2571 CheckCompUni("<grave> <E>       ", 0xC8) 
    2572 CheckCompUni("<grave> <e>       ", 0xE8) 
    2573 CheckCompUni("<underscore> <E>  ", 0x112) 
    2574 CheckCompUni("<macron> <E>      ", 0x112) 
    2575 CheckCompUni("<underscore> <e>  ", 0x113)