File: ipa.xml.in

package info (click to toggle)
input-pad 1.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,172 kB
  • sloc: ansic: 11,118; makefile: 451; python: 206; sh: 103; xml: 8
file content (997 lines) | stat: -rw-r--r-- 30,407 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
<dummy>
      <table>
        <column>10</column>
        <!--"IPA" stands for "International Phonetic Alphabet"-->
        <_name>IPA</_name>
        <string>
          <label>a</label>
          <_comment>Open front unrounded vowel</_comment>
        </string>
        <string>
          <label>ä</label>
          <_comment>Open central unrounded vowel</_comment>
        </string>
        <string>
          <label>ɐ</label>
          <_comment>Near-open central vowel</_comment>
        </string>
        <string>
          <label>ɑ</label>
          <_comment>Open back unrounded vowel</_comment>
        </string>
        <string>
          <label>ɒ</label>
          <_comment>Open back rounded vowel</_comment>
        </string>
        <string>
          <!-- For some reason, certain apps think that wedge
               and capital lambda are equivalent
               ... including git, so... I'll just use this
               entity... -->
          <label>&#652;</label>
          <_comment>Open-mid back unrounded vowel</_comment>
        </string>
        <string>
          <label>æ</label>
          <_comment>Near-open front unrounded vowel</_comment>
        </string>
        <string>
          <label>b</label>
          <_comment>Voiced bilabial plosive</_comment>
        </string>
        <string>
          <label>b̪͡v</label>
          <_comment>Voiced labiodental affricate</_comment>
        </string>
        <string>
          <label>ɓ</label>
          <_comment>Voiced bilabial implosive</_comment>
        </string>
        <string>
          <label>ʙ</label>
          <_comment>Bilabial trill</_comment>
        </string>
        <string>
          <label>β</label>
          <_comment>Voiced bilabial fricative</_comment>
        </string>
        <string>
          <label>c</label>
          <_comment>Voiceless palatal plosive</_comment>
        </string>
        <string>
          <label>ç</label>
          <_comment>Voiceless palatal fricative</_comment>
        </string>
        <string>
          <label>c͡ç</label>
          <_comment>Voiceless palatal affricate</_comment>
        </string>
        <string>
          <label>c͡ʎ̝̥</label>
          <_comment>Voiceless palatal lateral affricate</_comment>
        </string>
        <string>
          <label>ɕ</label>
          <_comment>Voiceless alveopalatal fricative</_comment>
        </string>
        <string>
          <label>d</label>
          <_comment>Voiced alveolar plosive</_comment>
        </string>
        <string>
          <label>ɗ</label>
          <_comment>Voiced alveolar implosive</_comment>
        </string>
        <string>
          <label>ɖ</label>
          <_comment>Voiced retroflex plosive</_comment>
        </string>
        <string>
          <label>ð</label>
          <_comment>Voiced dental fricative</_comment>
        </string>
        <string>
          <label>d͡ɮ</label>
          <_comment>Voiced alveolar lateral affricate</_comment>
        </string>
        <string>
          <label>d͡z</label>
          <_comment>Voiced alveolar affricate</_comment>
        </string>
        <string>
          <label>d͡ʒ</label>
          <_comment>Voiced palato-alveolar affricate</_comment>
        </string>
        <string>
          <label>d͡ʑ</label>
          <_comment>Voiced alveopalatal affricate</_comment>
        </string>
        <string>
          <label>d͡ʐ</label>
          <_comment>Voiced retroflex affricate</_comment>
        </string>
        <string>
          <label>e</label>
          <_comment>Close-mid front unrounded vowel</_comment>
        </string>
        <string>
          <label>ɘ</label>
          <_comment>Close-mid central unrounded vowel</_comment>
        </string>
        <string>
          <label>ə</label>
          <_comment>Mid-central vowel</_comment>
        </string>
        <string>
          <label>ɚ</label>
          <_comment>Rhotacized mid-central vowel</_comment>
        </string>
        <string>
          <label>ɛ</label>
          <_comment>Open-mid front unrounded vowel</_comment>
        </string>
        <string>
          <label>ɞ</label>
          <_comment>Open-mid central rounded vowel</_comment>
        </string>
        <string>
          <label>ɜ</label>
          <_comment>Open-mid central unrounded vowel</_comment>
        </string>
        <string>
          <label>ɝ</label>
          <_comment>Rhotacized open-mid central unrounded vowel</_comment>
        </string>
        <string>
          <label>f</label>
          <_comment>Voiceless labiodental fricative</_comment>
        </string>
        <string>
          <label>ʩ</label>
          <_comment>Velopharyngeal fricative</_comment>
        </string>
        <string>
          <label>ɡ</label>
          <_comment>Voiced velar plosive</_comment>
        </string>
        <string>
          <label>ɡ͡b</label>
          <_comment>Voiced labial-velar plosive</_comment>
        </string>
        <string>
          <label>ɠ</label>
          <_comment>Voiced velar implosive</_comment>
        </string>
        <string>
          <label>ɢ</label>
          <_comment>Voiced uvular plosive</_comment>
        </string>
        <string>
          <label>ʛ</label>
          <_comment>Voiced uvular implosive</_comment>
        </string>
        <string>
          <label>h</label>
          <_comment>Voiceless glottal fricative</_comment>
        </string>
        <string>
          <label>ɦ</label>
          <_comment>Voiced glottal fricative</_comment>
        </string>
        <string>
          <label>ħ</label>
          <_comment>Voiceless pharyngeal fricative</_comment>
        </string>
        <string>
          <label>ɧ</label>
          <_comment>Voiceless coarticulated velar and palato-alveolar fricative</_comment>
        </string>
        <string>
          <label>ʜ</label>
          <_comment>Voiceless epiglottal fricative</_comment>
        </string>
        <string>
          <label>i</label>
          <_comment>Close front unrounded vowel</_comment>
        </string>
        <string>
          <label>ɪ</label>
          <_comment>Near-close near-front unrounded vowel</_comment>
        </string>
        <string>
          <label>ɪ̈</label>
          <_comment>Near-close central unrounded vowel</_comment>
        </string>
        <string>
          <label>ɨ</label>
          <_comment>Close central unrounded vowel</_comment>
        </string>
        <string>
          <label>j</label>
          <_comment>Palatal approximant</_comment>
        </string>
        <string>
          <label>ʝ</label>
          <_comment>Voiced palatal fricative</_comment>
        </string>
        <string>
          <label>ɟ</label>
          <_comment>Voiced palatal plosive</_comment>
        </string>
        <string>
          <label>ɟ͡ʝ</label>
          <_comment>Voiced palatal affricate</_comment>
        </string>
        <string>
          <label>ʄ</label>
          <_comment>Voiced palatal implosive</_comment>
        </string>
        <string>
          <label>k</label>
          <_comment>Voiceless velar plosive</_comment>
        </string>
        <string>
          <label>k͡ʟ̝̊</label>
          <_comment>Voiceless velar lateral affricate</_comment>
        </string>
        <string>
          <label>k͡p</label>
          <_comment>Voiceless labial-velar plosive</_comment>
        </string>
        <string>
          <label>k͡x</label>
          <_comment>Voiceless velar affricate</_comment>
        </string>
        <string>
          <label>l</label>
          <_comment>Alveolar lateral approximant</_comment>
        </string>
        <string>
          <label>ɫ</label>
          <_comment>Velarized alveolar lateral approximant</_comment>
        </string>
        <string>
          <label>ɬ</label>
          <_comment>Voiceless alveolar lateral fricative</_comment>
        </string>
        <string>
          <label>ɭ</label>
          <_comment>Retroflex lateral approximant</_comment>
        </string>
        <string>
          <label>ɮ</label>
          <_comment>Voiced alveolar lateral fricative</_comment>
        </string>
        <string>
          <label>ʟ</label>
          <_comment>Velar lateral approximant</_comment>
        </string>
        <string>
          <label>ʟ̝̊</label>
          <_comment>Voiceless velar lateral fricative</_comment>
        </string>
        <string>
          <label>m</label>
          <_comment>Bilabial nasal</_comment>
        </string>
        <string>
          <label>ɱ</label>
          <_comment>Labiodental nasal</_comment>
        </string>
        <string>
          <label>n</label>
          <_comment>Alveolar nasal</_comment>
        </string>
        <string>
          <label>ŋ</label>
          <_comment>Velar nasal</_comment>
        </string>
        <string>
          <label>ŋ͡m</label>
          <_comment>Labial-velar nasal</_comment>
        </string>
        <string>
          <label>ɲ</label>
          <_comment>Palatal nasal</_comment>
        </string>
        <string>
          <label>ɳ</label>
          <_comment>Retroflex nasal</_comment>
        </string>
        <string>
          <label>ɴ</label>
          <_comment>Uvular nasal</_comment>
        </string>
        <string>
          <label>o</label>
          <_comment>Close-mid back rounded vowel</_comment>
        </string>
        <string>
          <label>ɔ</label>
          <_comment>Open-mid back unrounded vowel</_comment>
        </string>
        <string>
          <label>ø</label>
          <_comment>Close-mid front rounded vowel</_comment>
        </string>
        <string>
          <label>ɵ</label>
          <_comment>Close-mid central rounded vowel</_comment>
        </string>
        <string>
          <label>œ</label>
          <_comment>Open-mid front rounded vowel</_comment>
        </string>
        <string>
          <label>ɶ</label>
          <_comment>Open front rounded vowel</_comment>
        </string>
        <string>
          <label>p</label>
          <_comment>Voiceless bilabial plosive</_comment>
        </string>
        <string>
          <label>p͡f</label>
          <_comment>Voiceless bilabial-labiodental affricate</_comment>
        </string>
        <string>
          <label>p͡ɸ</label>
          <_comment>Voiceless bilabial affricate</_comment>
        </string>
        <string>
          <label>p̪͡f</label>
          <_comment>Voiceless labiodental affricate</_comment>
        </string>
        <string>
          <label>q</label>
          <_comment>Voiceless uvular plosive</_comment>
        </string>
        <string>
          <label>r</label>
          <_comment>Alveolar trill</_comment>
        </string>
        <string>
          <label>ɾ</label>
          <_comment>Alveolar flap</_comment>
        </string>
        <string>
          <label>ɺ</label>
          <_comment>Alveolar lateral flap</_comment>
        </string>
        <string>
          <label>ʀ</label>
          <_comment>Uvular trill</_comment>
        </string>
        <string>
          <label>ɽ</label>
          <_comment>Retroflex flap</_comment>
        </string>
        <string>
          <label>ɹ</label>
          <_comment>Alveolar approximant</_comment>
        </string>
        <string>
          <label>ɻ</label>
          <_comment>Retroflex approximant</_comment>
        </string>
        <string>
          <label>ʁ</label>
          <_comment>Voiced uvular fricative</_comment>
        </string>
        <string>
          <label>s</label>
          <_comment>Voiceless alveolar fricative</_comment>
        </string>
        <string>
          <label>ʃ</label>
          <_comment>Voiceless palato-alveolar fricative</_comment>
        </string>
        <string>
          <label>ʂ</label>
          <_comment>Voiceless retroflex fricative</_comment>
        </string>
        <string>
          <label>t</label>
          <_comment>Voiceless alveolar plosive</_comment>
        </string>
        <string>
          <label>ʈ</label>
          <_comment>Voiceless retroflex plosive</_comment>
        </string>
        <string>
          <label>t͡ɬ</label>
          <_comment>Voiceless alveolar lateral affricate</_comment>
        </string>
        <string>
          <label>t͡s</label>
          <_comment>Voiceless alveolar affricate</_comment>
        </string>
        <string>
          <label>t͡ʃ</label>
          <_comment>Voiceless palato-alveolar affricate</_comment>
        </string>
        <string>
          <label>t͡ɕ</label>
          <_comment>Voiceless alveopalatal affricate</_comment>
        </string>
        <string>
          <label>t͡ʂ</label>
          <_comment>Voiceless retroflex affricate</_comment>
        </string>
        <string>
          <label>u</label>
          <_comment>Close back rounded vowel</_comment>
        </string>
        <string>
          <label>ʊ</label>
          <_comment>Near-close near-back vowel</_comment>
        </string>
        <string>
          <label>ʊ̈</label>
          <_comment>Near-close central vowel</_comment>
        </string>
        <string>
          <label>ʉ</label>
          <_comment>Close central rounded vowel</_comment>
        </string>
        <string>
          <!--TODO: reconsider the placement of this guy-->
          <label>ɥ</label>
          <_comment>Labial-palatal approximant</_comment>
        </string>
        <string>
          <label>ɯ</label>
          <_comment>Close back unrounded vowel</_comment>
        </string>
        <string>
          <label>v</label>
          <_comment>Voiced labiodental fricative</_comment>
        </string>
        <string>
          <label>ⱱ</label>
          <_comment>Labiodental flap</_comment>
        </string>
        <string>
          <label>ʋ</label>
          <_comment>Labiodental approximant</_comment>
        </string>
        <string>
          <label>ɣ</label>
          <_comment>Voiced velar fricative</_comment>
        </string>
        <string>
          <label>ɤ</label>
          <_comment>Close-mid back unrounded vowel</_comment>
        </string>
        <string>
          <label>w</label>
          <_comment>Voiced labiovelar approximant</_comment>
        </string>
        <string>
          <label>ʍ</label>
          <_comment>Voiceless labiovelar approximant</_comment>
        </string>
        <string>
          <label>ɰ</label>
          <_comment>Velar approximant</_comment>
        </string>
        <string>
          <label>ʬ</label>
          <_comment>Bilabial percussive</_comment>
        </string>
        <string>
          <label>x</label>
          <_comment>Voiceless velar fricative</_comment>
        </string>
        <string>
          <label>χ</label>
          <_comment>Voiceless uvular fricative</_comment>
        </string>
        <string>
          <label>y</label>
          <_comment>Close front rounded vowel</_comment>
        </string>
        <string>
          <label>ʏ</label>
          <_comment>Near-close near-front rounded vowel</_comment>
        </string>
        <string>
          <label>ʎ</label>
          <_comment>Palatal lateral approximant</_comment>
        </string>
        <string>
          <label>ʎ̝̊</label>
          <_comment>Voiceless palatal lateral fricative</_comment>
        </string>
        <string>
          <label>z</label>
          <_comment>Voiced alveolar fricative</_comment>
        </string>
        <string>
          <label>ʒ</label>
          <_comment>Voiced palato-alveolar fricative</_comment>
        </string>
        <string>
          <label>ʑ</label>
          <_comment>Voiced alveopalatal fricative</_comment>
        </string>
        <string>
          <label>ʐ</label>
          <_comment>Voiced retroflex fricative</_comment>
        </string>
        <string>
          <label>θ</label>
          <_comment>Voiceless dental fricative</_comment>
        </string>
        <string>
          <label>ɸ</label>
          <_comment>Voiceless bilabial fricative</_comment>
        </string>
        <string>
          <label>ʔ</label>
          <_comment>Glottal stop</_comment>
        </string>
        <string>
          <label>ʡ</label>
          <_comment>Epiglottal plosive</_comment>
        </string>
        <string>
          <label>ʕ</label>
          <_comment>Voiced pharyngeal fricative</_comment>
        </string>
        <string>
          <label>ʢ</label>
          <_comment>Voiced epiglottal fricative</_comment>
        </string>
        <string>
          <label>ʘ</label>
          <_comment>Bilabial click</_comment>
        </string>
        <string>
          <label>ǀ</label>
          <_comment>Dental click</_comment>
        </string>
        <string>
          <label>ǃ</label>
          <_comment>Alveolar click</_comment>
        </string>
        <string>
          <label>ǂ</label>
          <_comment>Palatal click</_comment>
        </string>
        <string>
          <label>ǁ</label>
          <_comment>Alveolar lateral click</_comment>
        </string>
        <string>
          <label>ʭ</label>
          <_comment>Bidental percussive</_comment>
        </string>
        <string>
          <label>ʰ</label>
          <_comment>Aspiration mark</_comment>
        </string>
        <string>
          <!--TODO: reconsider the placement of this guy-->
          <label>⁼</label>
          <_comment>Non-aspiration mark</_comment>
        </string>
        <string>
          <label>ʱ</label>
          <_comment>Breathy voice mark</_comment>
        </string>
        <string>
          <label>ʲ</label>
          <_comment>Palatalization mark</_comment>
        </string>
        <string>
          <label>ˡ</label>
          <_comment>Lateral release mark</_comment>
        </string>
        <string>
          <label>ᵐ</label>
          <_comment>Bilabial nasal release mark</_comment>
        </string>
        <string>
          <label>ᶬ</label>
          <_comment>Labiodental nasal release mark</_comment>
        </string>
        <string>
          <label>ⁿ</label>
          <_comment>Alveolar nasal release mark</_comment>
        </string>
        <string>
          <label>ᶮ</label>
          <_comment>Palatal nasal release mark</_comment>
        </string>
        <string>
          <label>ᶯ</label>
          <_comment>Retroflex nasal release mark</_comment>
        </string>
        <string>
          <label>ᶰ</label>
          <_comment>Uvular nasal release mark</_comment>
        </string>
        <string>
          <label>ᶣ</label>
          <_comment>Labio-palatalization mark</_comment>
        </string>
        <string>
          <label>ᶹ</label>
          <_comment>Labiodentalization mark</_comment>
        </string>
        <string>
          <label>ʷ</label>
          <_comment>Labialization mark</_comment>
        </string>
        <string>
          <label>ˠ</label>
          <_comment>Velarization mark</_comment>
        </string>
       <string>
          <label>ˀ</label>
          <_comment>Glottalization mark</_comment>
        </string>
        <string>
          <label>ˤ</label>
          <_comment>Pharyngealization mark</_comment>
        </string>
        <string>
          <label>&#820;</label>
          <_comment>Combining velarization/pharyngealization mark</_comment>
        </string>
        <string>
          <label>&#816;</label>
          <_comment>Combining laryngealization mark</_comment>
        </string>
        <string>
          <label>&#802;</label>
          <_comment>Combining retroflexion mark</_comment>
        </string>
        <string>
          <label>ʼ</label>
          <_comment>Ejection mark</_comment>
        </string>
        <string>
          <label>˞</label>
          <_comment>Rhotacization mark</_comment>
        </string>
        <string>
          <label>&#810;</label>
          <_comment>Combining dentalization mark</_comment>
        </string>
        <string>
          <label>&#838;</label>
          <_comment>Combining dentolabialization mark</_comment>
        </string>
        <string>
          <label>&#839;</label>
          <_comment>Combining alveolarization mark</_comment>
        </string>
        <string>
          <label>&#828;</label>
          <_comment>Combining linguolabialization mark</_comment>
        </string>
        <string>
          <label>&#826;</label>
          <_comment>Combining apicalization mark</_comment>
        </string>
        <string>
          <label>&#827;</label>
          <_comment>Combining laminalization mark</_comment>
        </string>
        <string>
          <label>&#776;</label>
          <_comment>Combining centralization mark</_comment>
        </string>
        <string>
          <label>&#829;</label>
          <_comment>Combining mid-centralization mark</_comment>
        </string>
        <string>
          <label>&#771;</label>
          <_comment>Combining nasalization mark</_comment>
        </string>
        <string>
          <label>&#808;</label>
          <_comment>Combining nasalization mark below</_comment>
        </string>
        <string>
          <label>&#842;</label>
          <_comment>Combining denasalization mark</_comment>
        </string>
        <string>
          <label>&#843;</label>
          <_comment>Combining nasal friction mark</_comment>
        </string>
        <string>
          <label>&#844;</label>
          <_comment>Combining velopharyngeal friction mark</_comment>
        </string>
        <string>
          <label>&#812;</label>
          <_comment>Combining voiced mark</_comment>
        </string>
        <string>
          <label>&#805;</label>
          <_comment>Combining voiceless mark</_comment>
        </string>
        <string>
          <label>&#778;</label>
          <_comment>Combining voiceless mark above</_comment>
        </string>
        <string>
          <label>˯</label>
          <_comment>Pre-voicing/post-voicing mark</_comment>
        </string>
        <string>
          <label>&#804;</label>
          <_comment>Combining breathy voice mark</_comment>
        </string>
        <string>
          <label>&#794;</label>
          <_comment>Combining unreleased stop mark</_comment>
        </string>
        <string>
          <label>&#825;</label>
          <_comment>Combining more rounded mark</_comment>
        </string>
        <string>
          <label>&#796;</label>
          <_comment>Combining less rounded mark</_comment>
        </string>
        <string>
          <label>&#845;</label>
          <_comment>Combining labial spreading mark</_comment>
        </string>
        <string>
          <label>&#809;</label>
          <_comment>Combining syllabic mark</_comment>
        </string>
        <string>
          <label>&#781;</label>
          <_comment>Combining syllabic mark above</_comment>
        </string>
        <string>
          <label>&#815;</label>
          <_comment>Combining non-syllabic mark</_comment>
        </string>
        <string>
          <label>&#785;</label>
          <_comment>Combining non-syllabic mark above</_comment>
        </string>
        <string>
          <label>&#779;</label>
          <_comment>Combining top tone mark</_comment>
        </string>
        <string>
          <label>&#769;</label>
          <_comment>Combining high tone mark</_comment>
        </string>
        <string>
          <label>&#772;</label>
          <_comment>Combining mid tone mark</_comment>
        </string>
        <string>
          <label>&#768;</label>
          <_comment>Combining low tone mark</_comment>
        </string>
        <string>
          <label>&#783;</label>
          <_comment>Combining bottom tone mark</_comment>
        </string>
        <string>
          <label>&#710;</label>
          <_comment>Combining falling tone mark</_comment>
        </string>
        <string>
          <label>&#7623;</label>
          <_comment>Combining high falling tone mark</_comment>
        </string>
        <string>
          <label>&#7622;</label>
          <_comment>Combining low falling tone mark</_comment>
        </string>
        <string>
          <label>&#780;</label>
          <_comment>Combining rising tone mark</_comment>
        </string>
        <string>
          <label>&#7620;</label>
          <_comment>Combining high rising tone mark</_comment>
        </string>
        <string>
          <label>&#7621;</label>
          <_comment>Combining low rising tone mark</_comment>
        </string>
        <string>
          <label>&#7625;</label>
          <_comment>Combining dipping tone mark</_comment>
        </string>
        <string>
          <label>&#7624;</label>
          <_comment>Combining peaking tone mark</_comment>
        </string>
        <string>
          <label>˥</label>
          <_comment>Top tone letter</_comment>
        </string>
        <string>
          <label>˦</label>
          <_comment>High tone letter</_comment>
        </string>
        <string>
          <label>˧</label>
          <_comment>Mid tone letter</_comment>
        </string>
        <string>
          <label>˨</label>
          <_comment>Low tone letter</_comment>
        </string>
        <string>
          <label>˩</label>
          <_comment>Bottom tone letter</_comment>
        </string>
        <string>
          <label>˥˩</label>
          <_comment>Falling tone digraph</_comment>
        </string>
        <string>
          <label>˥˧</label>
          <_comment>High falling tone digraph</_comment>
        </string>
        <string>
          <label>˨˦</label>
          <_comment>Rising tone digraph</_comment>
        </string>
        <string>
          <label>˧˥</label>
          <_comment>High rising tone digraph</_comment>
        </string>
        <string>
          <label>˩˧</label>
          <_comment>Low rising tone digraph</_comment>
        </string>
        <string>
          <label>˨˩˦</label>
          <_comment>Dipping tone trigraph</_comment>
        </string>
        <string>
          <label>˧˦˨</label>
          <_comment>Peaking tone trigraph</_comment>
        </string>
        <string>
          <label>ꜛ</label>
          <_comment>Upstep mark</_comment>
        </string>
        <string>
          <label>ꜜ</label>
          <_comment>Downstep mark</_comment>
        </string>
        <string>
          <label>|</label>
          <_comment>Minor break</_comment>
        </string>
        <string>
          <label>‖</label>
          <_comment>Major break</_comment>
        </string>
        <string>
          <label>↗</label>
          <_comment>Rising intonation mark</_comment>
        </string>
        <string>
          <label>↘</label>
          <_comment>Falling intonation mark</_comment>
        </string>
        <string>
          <label>˖</label>
          <_comment>Advanced articulation mark</_comment>
        </string>
        <string>
          <label>˗</label>
          <_comment>Retracted articulation mark</_comment>
        </string>
        <string>
          <label>&#799;</label>
          <_comment>Combining advanced articulation mark</_comment>
        </string>
        <string>
          <label>&#800;</label>
          <_comment>Combining retracted articulation mark</_comment>
        </string>
        <string>
          <label>˔</label>
          <_comment>Raised sound mark</_comment>
        </string>
        <string>
          <label>˕</label>
          <_comment>Lowered sound mark</_comment>
        </string>
        <string>
          <label>&#797;</label>
          <_comment>Combining raised sound mark</_comment>
        </string>
        <string>
          <label>&#798;</label>
          <_comment>Combining lowered sound mark</_comment>
        </string>
        <string>
          <label>&#792;</label>
          <_comment>Combining tongue root advancement mark</_comment>
        </string>
        <string>
          <label>&#793;</label>
          <_comment>Combining tongue root retraction mark</_comment>
        </string>
        <string>
          <label>&#840;</label>
          <_comment>Combining strong articulation mark</_comment>
        </string>
        <string>
          <label>&#841;</label>
          <_comment>Combining weak articulation mark</_comment>
        </string>
        <string>
          <label>&#846;</label>
          <_comment>Combining whistled articulation mark</_comment>
        </string>
        <string>
          <label>&#866;</label>
          <_comment>Combining sliding articulation mark</_comment>
        </string>
        <string>
          <label>↑</label>
          <_comment>Egression mark</_comment>
        </string>
        <string>
          <label>↓</label>
          <_comment>Ingression mark</_comment>
        </string>
        <string>
          <label>&#865;</label>
          <_comment>Combining ligature tie</_comment>
        </string>
        <string>
          <label>&#860;</label>
          <_comment>Combining ligature undertie</_comment>
        </string>
        <string>
          <label>ː</label>
          <_comment>Elongation mark</_comment>
        </string>
        <string>
          <label>ˑ</label>
          <_comment>Weak elongation mark</_comment>
        </string>
        <string>
          <label>&#774;</label>
          <_comment>Combining extra-short duration mark</_comment>
        </string>
        <string>
          <label>‿</label>
          <_comment>Liaison mark</_comment>
        </string>
        <string>
          <label>ˈ</label>
          <_comment>Stress mark</_comment>
        </string>
        <string>
          <label>ˌ</label>
          <_comment>Weak stress mark</_comment>
        </string>
        <string>
          <label>.</label>
          <_comment>Syllable break</_comment>
        </string>
        <string>
          <label>⟨</label>
          <_comment>Opening orthographic bracket</_comment>
        </string>
        <string>
          <label>⟩</label>
          <_comment>Closing orthographic bracket</_comment>
        </string>
      </table>
</dummy>