-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgraphemebreakproperty.inc
2171 lines (2171 loc) · 112 KB
/
graphemebreakproperty.inc
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
998
999
1000
std::vector<code_point_range> grapheme_break_ranges
{
{0, static_cast<grapheme_break_property>(2)},
{10, static_cast<grapheme_break_property>(1)},
{11, static_cast<grapheme_break_property>(2)},
{13, static_cast<grapheme_break_property>(0)},
{14, static_cast<grapheme_break_property>(2)},
{32, static_cast<grapheme_break_property>(16)},
{35, static_cast<grapheme_break_property>(16)},
{36, static_cast<grapheme_break_property>(16)},
{42, static_cast<grapheme_break_property>(16)},
{43, static_cast<grapheme_break_property>(16)},
{48, static_cast<grapheme_break_property>(16)},
{58, static_cast<grapheme_break_property>(16)},
{127, static_cast<grapheme_break_property>(2)},
{160, static_cast<grapheme_break_property>(16)},
{169, static_cast<grapheme_break_property>(13)},
{170, static_cast<grapheme_break_property>(16)},
{173, static_cast<grapheme_break_property>(2)},
{174, static_cast<grapheme_break_property>(13)},
{175, static_cast<grapheme_break_property>(16)},
{768, static_cast<grapheme_break_property>(3)},
{880, static_cast<grapheme_break_property>(16)},
{1155, static_cast<grapheme_break_property>(3)},
{1160, static_cast<grapheme_break_property>(3)},
{1162, static_cast<grapheme_break_property>(16)},
{1425, static_cast<grapheme_break_property>(3)},
{1470, static_cast<grapheme_break_property>(16)},
{1471, static_cast<grapheme_break_property>(3)},
{1472, static_cast<grapheme_break_property>(16)},
{1473, static_cast<grapheme_break_property>(3)},
{1475, static_cast<grapheme_break_property>(16)},
{1476, static_cast<grapheme_break_property>(3)},
{1478, static_cast<grapheme_break_property>(16)},
{1479, static_cast<grapheme_break_property>(3)},
{1480, static_cast<grapheme_break_property>(16)},
{1536, static_cast<grapheme_break_property>(6)},
{1542, static_cast<grapheme_break_property>(16)},
{1552, static_cast<grapheme_break_property>(3)},
{1563, static_cast<grapheme_break_property>(16)},
{1564, static_cast<grapheme_break_property>(2)},
{1565, static_cast<grapheme_break_property>(16)},
{1611, static_cast<grapheme_break_property>(3)},
{1632, static_cast<grapheme_break_property>(16)},
{1648, static_cast<grapheme_break_property>(3)},
{1649, static_cast<grapheme_break_property>(16)},
{1750, static_cast<grapheme_break_property>(3)},
{1757, static_cast<grapheme_break_property>(6)},
{1758, static_cast<grapheme_break_property>(16)},
{1759, static_cast<grapheme_break_property>(3)},
{1765, static_cast<grapheme_break_property>(16)},
{1767, static_cast<grapheme_break_property>(3)},
{1769, static_cast<grapheme_break_property>(16)},
{1770, static_cast<grapheme_break_property>(3)},
{1774, static_cast<grapheme_break_property>(16)},
{1807, static_cast<grapheme_break_property>(6)},
{1808, static_cast<grapheme_break_property>(16)},
{1809, static_cast<grapheme_break_property>(3)},
{1810, static_cast<grapheme_break_property>(16)},
{1840, static_cast<grapheme_break_property>(3)},
{1867, static_cast<grapheme_break_property>(16)},
{1958, static_cast<grapheme_break_property>(3)},
{1969, static_cast<grapheme_break_property>(16)},
{2027, static_cast<grapheme_break_property>(3)},
{2036, static_cast<grapheme_break_property>(16)},
{2045, static_cast<grapheme_break_property>(3)},
{2046, static_cast<grapheme_break_property>(16)},
{2070, static_cast<grapheme_break_property>(3)},
{2074, static_cast<grapheme_break_property>(16)},
{2075, static_cast<grapheme_break_property>(3)},
{2084, static_cast<grapheme_break_property>(16)},
{2085, static_cast<grapheme_break_property>(3)},
{2088, static_cast<grapheme_break_property>(16)},
{2089, static_cast<grapheme_break_property>(3)},
{2094, static_cast<grapheme_break_property>(16)},
{2137, static_cast<grapheme_break_property>(3)},
{2140, static_cast<grapheme_break_property>(16)},
{2259, static_cast<grapheme_break_property>(3)},
{2274, static_cast<grapheme_break_property>(6)},
{2275, static_cast<grapheme_break_property>(3)},
{2307, static_cast<grapheme_break_property>(7)},
{2308, static_cast<grapheme_break_property>(16)},
{2362, static_cast<grapheme_break_property>(3)},
{2363, static_cast<grapheme_break_property>(7)},
{2364, static_cast<grapheme_break_property>(3)},
{2365, static_cast<grapheme_break_property>(16)},
{2366, static_cast<grapheme_break_property>(7)},
{2369, static_cast<grapheme_break_property>(3)},
{2377, static_cast<grapheme_break_property>(7)},
{2381, static_cast<grapheme_break_property>(3)},
{2382, static_cast<grapheme_break_property>(7)},
{2384, static_cast<grapheme_break_property>(16)},
{2385, static_cast<grapheme_break_property>(3)},
{2392, static_cast<grapheme_break_property>(16)},
{2402, static_cast<grapheme_break_property>(3)},
{2404, static_cast<grapheme_break_property>(16)},
{2433, static_cast<grapheme_break_property>(3)},
{2434, static_cast<grapheme_break_property>(7)},
{2436, static_cast<grapheme_break_property>(16)},
{2492, static_cast<grapheme_break_property>(3)},
{2493, static_cast<grapheme_break_property>(16)},
{2494, static_cast<grapheme_break_property>(3)},
{2495, static_cast<grapheme_break_property>(7)},
{2497, static_cast<grapheme_break_property>(3)},
{2501, static_cast<grapheme_break_property>(16)},
{2503, static_cast<grapheme_break_property>(7)},
{2505, static_cast<grapheme_break_property>(16)},
{2507, static_cast<grapheme_break_property>(7)},
{2509, static_cast<grapheme_break_property>(3)},
{2510, static_cast<grapheme_break_property>(16)},
{2519, static_cast<grapheme_break_property>(3)},
{2520, static_cast<grapheme_break_property>(16)},
{2530, static_cast<grapheme_break_property>(3)},
{2532, static_cast<grapheme_break_property>(16)},
{2558, static_cast<grapheme_break_property>(3)},
{2559, static_cast<grapheme_break_property>(16)},
{2561, static_cast<grapheme_break_property>(3)},
{2563, static_cast<grapheme_break_property>(7)},
{2564, static_cast<grapheme_break_property>(16)},
{2620, static_cast<grapheme_break_property>(3)},
{2621, static_cast<grapheme_break_property>(16)},
{2622, static_cast<grapheme_break_property>(7)},
{2625, static_cast<grapheme_break_property>(3)},
{2627, static_cast<grapheme_break_property>(16)},
{2631, static_cast<grapheme_break_property>(3)},
{2633, static_cast<grapheme_break_property>(16)},
{2635, static_cast<grapheme_break_property>(3)},
{2638, static_cast<grapheme_break_property>(16)},
{2641, static_cast<grapheme_break_property>(3)},
{2642, static_cast<grapheme_break_property>(16)},
{2672, static_cast<grapheme_break_property>(3)},
{2674, static_cast<grapheme_break_property>(16)},
{2677, static_cast<grapheme_break_property>(3)},
{2678, static_cast<grapheme_break_property>(16)},
{2689, static_cast<grapheme_break_property>(3)},
{2691, static_cast<grapheme_break_property>(7)},
{2692, static_cast<grapheme_break_property>(16)},
{2748, static_cast<grapheme_break_property>(3)},
{2749, static_cast<grapheme_break_property>(16)},
{2750, static_cast<grapheme_break_property>(7)},
{2753, static_cast<grapheme_break_property>(3)},
{2758, static_cast<grapheme_break_property>(16)},
{2759, static_cast<grapheme_break_property>(3)},
{2761, static_cast<grapheme_break_property>(7)},
{2762, static_cast<grapheme_break_property>(16)},
{2763, static_cast<grapheme_break_property>(7)},
{2765, static_cast<grapheme_break_property>(3)},
{2766, static_cast<grapheme_break_property>(16)},
{2786, static_cast<grapheme_break_property>(3)},
{2788, static_cast<grapheme_break_property>(16)},
{2810, static_cast<grapheme_break_property>(3)},
{2816, static_cast<grapheme_break_property>(16)},
{2817, static_cast<grapheme_break_property>(3)},
{2818, static_cast<grapheme_break_property>(7)},
{2820, static_cast<grapheme_break_property>(16)},
{2876, static_cast<grapheme_break_property>(3)},
{2877, static_cast<grapheme_break_property>(16)},
{2878, static_cast<grapheme_break_property>(3)},
{2879, static_cast<grapheme_break_property>(3)},
{2880, static_cast<grapheme_break_property>(7)},
{2881, static_cast<grapheme_break_property>(3)},
{2885, static_cast<grapheme_break_property>(16)},
{2887, static_cast<grapheme_break_property>(7)},
{2889, static_cast<grapheme_break_property>(16)},
{2891, static_cast<grapheme_break_property>(7)},
{2893, static_cast<grapheme_break_property>(3)},
{2894, static_cast<grapheme_break_property>(16)},
{2902, static_cast<grapheme_break_property>(3)},
{2903, static_cast<grapheme_break_property>(3)},
{2904, static_cast<grapheme_break_property>(16)},
{2914, static_cast<grapheme_break_property>(3)},
{2916, static_cast<grapheme_break_property>(16)},
{2946, static_cast<grapheme_break_property>(3)},
{2947, static_cast<grapheme_break_property>(16)},
{3006, static_cast<grapheme_break_property>(3)},
{3007, static_cast<grapheme_break_property>(7)},
{3008, static_cast<grapheme_break_property>(3)},
{3009, static_cast<grapheme_break_property>(7)},
{3011, static_cast<grapheme_break_property>(16)},
{3014, static_cast<grapheme_break_property>(7)},
{3017, static_cast<grapheme_break_property>(16)},
{3018, static_cast<grapheme_break_property>(7)},
{3021, static_cast<grapheme_break_property>(3)},
{3022, static_cast<grapheme_break_property>(16)},
{3031, static_cast<grapheme_break_property>(3)},
{3032, static_cast<grapheme_break_property>(16)},
{3072, static_cast<grapheme_break_property>(3)},
{3073, static_cast<grapheme_break_property>(7)},
{3076, static_cast<grapheme_break_property>(3)},
{3077, static_cast<grapheme_break_property>(16)},
{3134, static_cast<grapheme_break_property>(3)},
{3137, static_cast<grapheme_break_property>(7)},
{3141, static_cast<grapheme_break_property>(16)},
{3142, static_cast<grapheme_break_property>(3)},
{3145, static_cast<grapheme_break_property>(16)},
{3146, static_cast<grapheme_break_property>(3)},
{3150, static_cast<grapheme_break_property>(16)},
{3157, static_cast<grapheme_break_property>(3)},
{3159, static_cast<grapheme_break_property>(16)},
{3170, static_cast<grapheme_break_property>(3)},
{3172, static_cast<grapheme_break_property>(16)},
{3201, static_cast<grapheme_break_property>(3)},
{3202, static_cast<grapheme_break_property>(7)},
{3204, static_cast<grapheme_break_property>(16)},
{3260, static_cast<grapheme_break_property>(3)},
{3261, static_cast<grapheme_break_property>(16)},
{3262, static_cast<grapheme_break_property>(7)},
{3263, static_cast<grapheme_break_property>(3)},
{3264, static_cast<grapheme_break_property>(7)},
{3266, static_cast<grapheme_break_property>(3)},
{3267, static_cast<grapheme_break_property>(7)},
{3269, static_cast<grapheme_break_property>(16)},
{3270, static_cast<grapheme_break_property>(3)},
{3271, static_cast<grapheme_break_property>(7)},
{3273, static_cast<grapheme_break_property>(16)},
{3274, static_cast<grapheme_break_property>(7)},
{3276, static_cast<grapheme_break_property>(3)},
{3278, static_cast<grapheme_break_property>(16)},
{3285, static_cast<grapheme_break_property>(3)},
{3287, static_cast<grapheme_break_property>(16)},
{3298, static_cast<grapheme_break_property>(3)},
{3300, static_cast<grapheme_break_property>(16)},
{3328, static_cast<grapheme_break_property>(3)},
{3330, static_cast<grapheme_break_property>(7)},
{3332, static_cast<grapheme_break_property>(16)},
{3387, static_cast<grapheme_break_property>(3)},
{3389, static_cast<grapheme_break_property>(16)},
{3390, static_cast<grapheme_break_property>(3)},
{3391, static_cast<grapheme_break_property>(7)},
{3393, static_cast<grapheme_break_property>(3)},
{3397, static_cast<grapheme_break_property>(16)},
{3398, static_cast<grapheme_break_property>(7)},
{3401, static_cast<grapheme_break_property>(16)},
{3402, static_cast<grapheme_break_property>(7)},
{3405, static_cast<grapheme_break_property>(3)},
{3406, static_cast<grapheme_break_property>(6)},
{3407, static_cast<grapheme_break_property>(16)},
{3415, static_cast<grapheme_break_property>(3)},
{3416, static_cast<grapheme_break_property>(16)},
{3426, static_cast<grapheme_break_property>(3)},
{3428, static_cast<grapheme_break_property>(16)},
{3458, static_cast<grapheme_break_property>(7)},
{3460, static_cast<grapheme_break_property>(16)},
{3530, static_cast<grapheme_break_property>(3)},
{3531, static_cast<grapheme_break_property>(16)},
{3535, static_cast<grapheme_break_property>(3)},
{3536, static_cast<grapheme_break_property>(7)},
{3538, static_cast<grapheme_break_property>(3)},
{3541, static_cast<grapheme_break_property>(16)},
{3542, static_cast<grapheme_break_property>(3)},
{3543, static_cast<grapheme_break_property>(16)},
{3544, static_cast<grapheme_break_property>(7)},
{3551, static_cast<grapheme_break_property>(3)},
{3552, static_cast<grapheme_break_property>(16)},
{3570, static_cast<grapheme_break_property>(7)},
{3572, static_cast<grapheme_break_property>(16)},
{3633, static_cast<grapheme_break_property>(3)},
{3634, static_cast<grapheme_break_property>(16)},
{3635, static_cast<grapheme_break_property>(7)},
{3636, static_cast<grapheme_break_property>(3)},
{3643, static_cast<grapheme_break_property>(16)},
{3655, static_cast<grapheme_break_property>(3)},
{3663, static_cast<grapheme_break_property>(16)},
{3761, static_cast<grapheme_break_property>(3)},
{3762, static_cast<grapheme_break_property>(16)},
{3763, static_cast<grapheme_break_property>(7)},
{3764, static_cast<grapheme_break_property>(3)},
{3770, static_cast<grapheme_break_property>(16)},
{3771, static_cast<grapheme_break_property>(3)},
{3773, static_cast<grapheme_break_property>(16)},
{3784, static_cast<grapheme_break_property>(3)},
{3790, static_cast<grapheme_break_property>(16)},
{3864, static_cast<grapheme_break_property>(3)},
{3866, static_cast<grapheme_break_property>(16)},
{3893, static_cast<grapheme_break_property>(3)},
{3894, static_cast<grapheme_break_property>(16)},
{3895, static_cast<grapheme_break_property>(3)},
{3896, static_cast<grapheme_break_property>(16)},
{3897, static_cast<grapheme_break_property>(3)},
{3898, static_cast<grapheme_break_property>(16)},
{3902, static_cast<grapheme_break_property>(7)},
{3904, static_cast<grapheme_break_property>(16)},
{3953, static_cast<grapheme_break_property>(3)},
{3967, static_cast<grapheme_break_property>(7)},
{3968, static_cast<grapheme_break_property>(3)},
{3973, static_cast<grapheme_break_property>(16)},
{3974, static_cast<grapheme_break_property>(3)},
{3976, static_cast<grapheme_break_property>(16)},
{3981, static_cast<grapheme_break_property>(3)},
{3992, static_cast<grapheme_break_property>(16)},
{3993, static_cast<grapheme_break_property>(3)},
{4029, static_cast<grapheme_break_property>(16)},
{4038, static_cast<grapheme_break_property>(3)},
{4039, static_cast<grapheme_break_property>(16)},
{4141, static_cast<grapheme_break_property>(3)},
{4145, static_cast<grapheme_break_property>(7)},
{4146, static_cast<grapheme_break_property>(3)},
{4152, static_cast<grapheme_break_property>(16)},
{4153, static_cast<grapheme_break_property>(3)},
{4155, static_cast<grapheme_break_property>(7)},
{4157, static_cast<grapheme_break_property>(3)},
{4159, static_cast<grapheme_break_property>(16)},
{4182, static_cast<grapheme_break_property>(7)},
{4184, static_cast<grapheme_break_property>(3)},
{4186, static_cast<grapheme_break_property>(16)},
{4190, static_cast<grapheme_break_property>(3)},
{4193, static_cast<grapheme_break_property>(16)},
{4209, static_cast<grapheme_break_property>(3)},
{4213, static_cast<grapheme_break_property>(16)},
{4226, static_cast<grapheme_break_property>(3)},
{4227, static_cast<grapheme_break_property>(16)},
{4228, static_cast<grapheme_break_property>(7)},
{4229, static_cast<grapheme_break_property>(3)},
{4231, static_cast<grapheme_break_property>(16)},
{4237, static_cast<grapheme_break_property>(3)},
{4238, static_cast<grapheme_break_property>(16)},
{4253, static_cast<grapheme_break_property>(3)},
{4254, static_cast<grapheme_break_property>(16)},
{4352, static_cast<grapheme_break_property>(8)},
{4448, static_cast<grapheme_break_property>(9)},
{4520, static_cast<grapheme_break_property>(10)},
{4608, static_cast<grapheme_break_property>(16)},
{4957, static_cast<grapheme_break_property>(3)},
{4960, static_cast<grapheme_break_property>(16)},
{5906, static_cast<grapheme_break_property>(3)},
{5909, static_cast<grapheme_break_property>(16)},
{5938, static_cast<grapheme_break_property>(3)},
{5941, static_cast<grapheme_break_property>(16)},
{5970, static_cast<grapheme_break_property>(3)},
{5972, static_cast<grapheme_break_property>(16)},
{6002, static_cast<grapheme_break_property>(3)},
{6004, static_cast<grapheme_break_property>(16)},
{6068, static_cast<grapheme_break_property>(3)},
{6070, static_cast<grapheme_break_property>(7)},
{6071, static_cast<grapheme_break_property>(3)},
{6078, static_cast<grapheme_break_property>(7)},
{6086, static_cast<grapheme_break_property>(3)},
{6087, static_cast<grapheme_break_property>(7)},
{6089, static_cast<grapheme_break_property>(3)},
{6100, static_cast<grapheme_break_property>(16)},
{6109, static_cast<grapheme_break_property>(3)},
{6110, static_cast<grapheme_break_property>(16)},
{6155, static_cast<grapheme_break_property>(3)},
{6158, static_cast<grapheme_break_property>(2)},
{6159, static_cast<grapheme_break_property>(16)},
{6277, static_cast<grapheme_break_property>(3)},
{6279, static_cast<grapheme_break_property>(16)},
{6313, static_cast<grapheme_break_property>(3)},
{6314, static_cast<grapheme_break_property>(16)},
{6432, static_cast<grapheme_break_property>(3)},
{6435, static_cast<grapheme_break_property>(7)},
{6439, static_cast<grapheme_break_property>(3)},
{6441, static_cast<grapheme_break_property>(7)},
{6444, static_cast<grapheme_break_property>(16)},
{6448, static_cast<grapheme_break_property>(7)},
{6450, static_cast<grapheme_break_property>(3)},
{6451, static_cast<grapheme_break_property>(7)},
{6457, static_cast<grapheme_break_property>(3)},
{6460, static_cast<grapheme_break_property>(16)},
{6679, static_cast<grapheme_break_property>(3)},
{6681, static_cast<grapheme_break_property>(7)},
{6683, static_cast<grapheme_break_property>(3)},
{6684, static_cast<grapheme_break_property>(16)},
{6741, static_cast<grapheme_break_property>(7)},
{6742, static_cast<grapheme_break_property>(3)},
{6743, static_cast<grapheme_break_property>(7)},
{6744, static_cast<grapheme_break_property>(3)},
{6751, static_cast<grapheme_break_property>(16)},
{6752, static_cast<grapheme_break_property>(3)},
{6753, static_cast<grapheme_break_property>(16)},
{6754, static_cast<grapheme_break_property>(3)},
{6755, static_cast<grapheme_break_property>(16)},
{6757, static_cast<grapheme_break_property>(3)},
{6765, static_cast<grapheme_break_property>(7)},
{6771, static_cast<grapheme_break_property>(3)},
{6781, static_cast<grapheme_break_property>(16)},
{6783, static_cast<grapheme_break_property>(3)},
{6784, static_cast<grapheme_break_property>(16)},
{6832, static_cast<grapheme_break_property>(3)},
{6846, static_cast<grapheme_break_property>(3)},
{6847, static_cast<grapheme_break_property>(16)},
{6912, static_cast<grapheme_break_property>(3)},
{6916, static_cast<grapheme_break_property>(7)},
{6917, static_cast<grapheme_break_property>(16)},
{6964, static_cast<grapheme_break_property>(3)},
{6965, static_cast<grapheme_break_property>(7)},
{6966, static_cast<grapheme_break_property>(3)},
{6971, static_cast<grapheme_break_property>(7)},
{6972, static_cast<grapheme_break_property>(3)},
{6973, static_cast<grapheme_break_property>(7)},
{6978, static_cast<grapheme_break_property>(3)},
{6979, static_cast<grapheme_break_property>(7)},
{6981, static_cast<grapheme_break_property>(16)},
{7019, static_cast<grapheme_break_property>(3)},
{7028, static_cast<grapheme_break_property>(16)},
{7040, static_cast<grapheme_break_property>(3)},
{7042, static_cast<grapheme_break_property>(7)},
{7043, static_cast<grapheme_break_property>(16)},
{7073, static_cast<grapheme_break_property>(7)},
{7074, static_cast<grapheme_break_property>(3)},
{7078, static_cast<grapheme_break_property>(7)},
{7080, static_cast<grapheme_break_property>(3)},
{7082, static_cast<grapheme_break_property>(7)},
{7083, static_cast<grapheme_break_property>(3)},
{7086, static_cast<grapheme_break_property>(16)},
{7142, static_cast<grapheme_break_property>(3)},
{7143, static_cast<grapheme_break_property>(7)},
{7144, static_cast<grapheme_break_property>(3)},
{7146, static_cast<grapheme_break_property>(7)},
{7149, static_cast<grapheme_break_property>(3)},
{7150, static_cast<grapheme_break_property>(7)},
{7151, static_cast<grapheme_break_property>(3)},
{7154, static_cast<grapheme_break_property>(7)},
{7156, static_cast<grapheme_break_property>(16)},
{7204, static_cast<grapheme_break_property>(7)},
{7212, static_cast<grapheme_break_property>(3)},
{7220, static_cast<grapheme_break_property>(7)},
{7222, static_cast<grapheme_break_property>(3)},
{7224, static_cast<grapheme_break_property>(16)},
{7376, static_cast<grapheme_break_property>(3)},
{7379, static_cast<grapheme_break_property>(16)},
{7380, static_cast<grapheme_break_property>(3)},
{7393, static_cast<grapheme_break_property>(7)},
{7394, static_cast<grapheme_break_property>(3)},
{7401, static_cast<grapheme_break_property>(16)},
{7405, static_cast<grapheme_break_property>(3)},
{7406, static_cast<grapheme_break_property>(16)},
{7410, static_cast<grapheme_break_property>(7)},
{7412, static_cast<grapheme_break_property>(3)},
{7413, static_cast<grapheme_break_property>(16)},
{7415, static_cast<grapheme_break_property>(7)},
{7416, static_cast<grapheme_break_property>(3)},
{7418, static_cast<grapheme_break_property>(16)},
{7616, static_cast<grapheme_break_property>(3)},
{7674, static_cast<grapheme_break_property>(16)},
{7675, static_cast<grapheme_break_property>(3)},
{7680, static_cast<grapheme_break_property>(16)},
{8203, static_cast<grapheme_break_property>(2)},
{8204, static_cast<grapheme_break_property>(3)},
{8205, static_cast<grapheme_break_property>(4)},
{8206, static_cast<grapheme_break_property>(2)},
{8208, static_cast<grapheme_break_property>(16)},
{8232, static_cast<grapheme_break_property>(2)},
{8233, static_cast<grapheme_break_property>(2)},
{8234, static_cast<grapheme_break_property>(2)},
{8239, static_cast<grapheme_break_property>(16)},
{8252, static_cast<grapheme_break_property>(13)},
{8253, static_cast<grapheme_break_property>(16)},
{8265, static_cast<grapheme_break_property>(13)},
{8266, static_cast<grapheme_break_property>(16)},
{8288, static_cast<grapheme_break_property>(2)},
{8293, static_cast<grapheme_break_property>(2)},
{8294, static_cast<grapheme_break_property>(2)},
{8304, static_cast<grapheme_break_property>(16)},
{8400, static_cast<grapheme_break_property>(3)},
{8413, static_cast<grapheme_break_property>(3)},
{8417, static_cast<grapheme_break_property>(3)},
{8418, static_cast<grapheme_break_property>(3)},
{8421, static_cast<grapheme_break_property>(16)},
{8419, static_cast<grapheme_break_property>(16)},
{8420, static_cast<grapheme_break_property>(16)},
{8421, static_cast<grapheme_break_property>(3)},
{8433, static_cast<grapheme_break_property>(16)},
{8482, static_cast<grapheme_break_property>(13)},
{8483, static_cast<grapheme_break_property>(16)},
{8505, static_cast<grapheme_break_property>(13)},
{8506, static_cast<grapheme_break_property>(16)},
{8596, static_cast<grapheme_break_property>(13)},
{8602, static_cast<grapheme_break_property>(16)},
{8617, static_cast<grapheme_break_property>(13)},
{8619, static_cast<grapheme_break_property>(16)},
{8986, static_cast<grapheme_break_property>(13)},
{8988, static_cast<grapheme_break_property>(16)},
{9000, static_cast<grapheme_break_property>(13)},
{9001, static_cast<grapheme_break_property>(16)},
{9096, static_cast<grapheme_break_property>(13)},
{9097, static_cast<grapheme_break_property>(16)},
{9167, static_cast<grapheme_break_property>(13)},
{9168, static_cast<grapheme_break_property>(16)},
{9193, static_cast<grapheme_break_property>(13)},
{9204, static_cast<grapheme_break_property>(16)},
{9200, static_cast<grapheme_break_property>(16)},
{9201, static_cast<grapheme_break_property>(16)},
{9203, static_cast<grapheme_break_property>(16)},
{9204, static_cast<grapheme_break_property>(16)},
{9208, static_cast<grapheme_break_property>(13)},
{9211, static_cast<grapheme_break_property>(16)},
{9410, static_cast<grapheme_break_property>(13)},
{9411, static_cast<grapheme_break_property>(16)},
{9642, static_cast<grapheme_break_property>(13)},
{9644, static_cast<grapheme_break_property>(16)},
{9654, static_cast<grapheme_break_property>(13)},
{9655, static_cast<grapheme_break_property>(16)},
{9664, static_cast<grapheme_break_property>(13)},
{9665, static_cast<grapheme_break_property>(16)},
{9723, static_cast<grapheme_break_property>(13)},
{9727, static_cast<grapheme_break_property>(16)},
{9725, static_cast<grapheme_break_property>(16)},
{9727, static_cast<grapheme_break_property>(16)},
{9728, static_cast<grapheme_break_property>(13)},
{9734, static_cast<grapheme_break_property>(16)},
{9735, static_cast<grapheme_break_property>(13)},
{9747, static_cast<grapheme_break_property>(16)},
{9742, static_cast<grapheme_break_property>(16)},
{9743, static_cast<grapheme_break_property>(16)},
{9745, static_cast<grapheme_break_property>(16)},
{9746, static_cast<grapheme_break_property>(16)},
{9748, static_cast<grapheme_break_property>(13)},
{9750, static_cast<grapheme_break_property>(13)},
{9752, static_cast<grapheme_break_property>(13)},
{9753, static_cast<grapheme_break_property>(13)},
{9754, static_cast<grapheme_break_property>(13)},
{9840, static_cast<grapheme_break_property>(16)},
{9757, static_cast<grapheme_break_property>(16)},
{9758, static_cast<grapheme_break_property>(16)},
{9760, static_cast<grapheme_break_property>(16)},
{9761, static_cast<grapheme_break_property>(16)},
{9762, static_cast<grapheme_break_property>(16)},
{9764, static_cast<grapheme_break_property>(16)},
{9766, static_cast<grapheme_break_property>(16)},
{9767, static_cast<grapheme_break_property>(16)},
{9770, static_cast<grapheme_break_property>(16)},
{9771, static_cast<grapheme_break_property>(16)},
{9774, static_cast<grapheme_break_property>(16)},
{9776, static_cast<grapheme_break_property>(16)},
{9784, static_cast<grapheme_break_property>(16)},
{9787, static_cast<grapheme_break_property>(16)},
{9792, static_cast<grapheme_break_property>(16)},
{9793, static_cast<grapheme_break_property>(16)},
{9794, static_cast<grapheme_break_property>(16)},
{9795, static_cast<grapheme_break_property>(16)},
{9800, static_cast<grapheme_break_property>(16)},
{9812, static_cast<grapheme_break_property>(16)},
{9823, static_cast<grapheme_break_property>(16)},
{9825, static_cast<grapheme_break_property>(16)},
{9827, static_cast<grapheme_break_property>(16)},
{9828, static_cast<grapheme_break_property>(16)},
{9829, static_cast<grapheme_break_property>(16)},
{9831, static_cast<grapheme_break_property>(16)},
{9832, static_cast<grapheme_break_property>(16)},
{9833, static_cast<grapheme_break_property>(16)},
{9840, static_cast<grapheme_break_property>(13)},
{9842, static_cast<grapheme_break_property>(13)},
{9854, static_cast<grapheme_break_property>(16)},
{9851, static_cast<grapheme_break_property>(16)},
{9852, static_cast<grapheme_break_property>(16)},
{9854, static_cast<grapheme_break_property>(13)},
{9856, static_cast<grapheme_break_property>(16)},
{9855, static_cast<grapheme_break_property>(16)},
{9856, static_cast<grapheme_break_property>(13)},
{9862, static_cast<grapheme_break_property>(16)},
{9872, static_cast<grapheme_break_property>(13)},
{9874, static_cast<grapheme_break_property>(13)},
{9885, static_cast<grapheme_break_property>(16)},
{9875, static_cast<grapheme_break_property>(16)},
{9876, static_cast<grapheme_break_property>(16)},
{9881, static_cast<grapheme_break_property>(16)},
{9882, static_cast<grapheme_break_property>(16)},
{9883, static_cast<grapheme_break_property>(16)},
{9885, static_cast<grapheme_break_property>(13)},
{9886, static_cast<grapheme_break_property>(13)},
{9888, static_cast<grapheme_break_property>(13)},
{9890, static_cast<grapheme_break_property>(16)},
{9889, static_cast<grapheme_break_property>(16)},
{9890, static_cast<grapheme_break_property>(13)},
{9906, static_cast<grapheme_break_property>(16)},
{9898, static_cast<grapheme_break_property>(16)},
{9900, static_cast<grapheme_break_property>(16)},
{9904, static_cast<grapheme_break_property>(16)},
{9906, static_cast<grapheme_break_property>(13)},
{9907, static_cast<grapheme_break_property>(13)},
{9917, static_cast<grapheme_break_property>(13)},
{9920, static_cast<grapheme_break_property>(13)},
{9924, static_cast<grapheme_break_property>(13)},
{9934, static_cast<grapheme_break_property>(16)},
{9928, static_cast<grapheme_break_property>(16)},
{9929, static_cast<grapheme_break_property>(16)},
{9934, static_cast<grapheme_break_property>(13)},
{9935, static_cast<grapheme_break_property>(13)},
{9954, static_cast<grapheme_break_property>(16)},
{9937, static_cast<grapheme_break_property>(16)},
{9938, static_cast<grapheme_break_property>(16)},
{9939, static_cast<grapheme_break_property>(16)},
{9941, static_cast<grapheme_break_property>(16)},
{9940, static_cast<grapheme_break_property>(16)},
{9941, static_cast<grapheme_break_property>(16)},
{9954, static_cast<grapheme_break_property>(13)},
{9955, static_cast<grapheme_break_property>(13)},
{9956, static_cast<grapheme_break_property>(13)},
{9960, static_cast<grapheme_break_property>(13)},
{9984, static_cast<grapheme_break_property>(16)},
{9961, static_cast<grapheme_break_property>(16)},
{9963, static_cast<grapheme_break_property>(16)},
{9962, static_cast<grapheme_break_property>(16)},
{9963, static_cast<grapheme_break_property>(16)},
{9968, static_cast<grapheme_break_property>(16)},
{9974, static_cast<grapheme_break_property>(16)},
{9970, static_cast<grapheme_break_property>(16)},
{9972, static_cast<grapheme_break_property>(16)},
{9973, static_cast<grapheme_break_property>(16)},
{9974, static_cast<grapheme_break_property>(16)},
{9975, static_cast<grapheme_break_property>(16)},
{9979, static_cast<grapheme_break_property>(16)},
{9977, static_cast<grapheme_break_property>(16)},
{9978, static_cast<grapheme_break_property>(16)},
{9979, static_cast<grapheme_break_property>(16)},
{9981, static_cast<grapheme_break_property>(16)},
{9982, static_cast<grapheme_break_property>(16)},
{9984, static_cast<grapheme_break_property>(13)},
{9985, static_cast<grapheme_break_property>(13)},
{9989, static_cast<grapheme_break_property>(16)},
{9986, static_cast<grapheme_break_property>(16)},
{9987, static_cast<grapheme_break_property>(16)},
{9989, static_cast<grapheme_break_property>(13)},
{9990, static_cast<grapheme_break_property>(16)},
{9992, static_cast<grapheme_break_property>(13)},
{9994, static_cast<grapheme_break_property>(13)},
{9996, static_cast<grapheme_break_property>(13)},
{10003, static_cast<grapheme_break_property>(16)},
{9999, static_cast<grapheme_break_property>(16)},
{10000, static_cast<grapheme_break_property>(16)},
{10002, static_cast<grapheme_break_property>(16)},
{10003, static_cast<grapheme_break_property>(16)},
{10004, static_cast<grapheme_break_property>(13)},
{10005, static_cast<grapheme_break_property>(16)},
{10006, static_cast<grapheme_break_property>(13)},
{10007, static_cast<grapheme_break_property>(16)},
{10013, static_cast<grapheme_break_property>(13)},
{10014, static_cast<grapheme_break_property>(16)},
{10017, static_cast<grapheme_break_property>(13)},
{10018, static_cast<grapheme_break_property>(16)},
{10024, static_cast<grapheme_break_property>(13)},
{10025, static_cast<grapheme_break_property>(16)},
{10035, static_cast<grapheme_break_property>(13)},
{10037, static_cast<grapheme_break_property>(16)},
{10052, static_cast<grapheme_break_property>(13)},
{10053, static_cast<grapheme_break_property>(16)},
{10055, static_cast<grapheme_break_property>(13)},
{10056, static_cast<grapheme_break_property>(16)},
{10060, static_cast<grapheme_break_property>(13)},
{10061, static_cast<grapheme_break_property>(16)},
{10062, static_cast<grapheme_break_property>(13)},
{10063, static_cast<grapheme_break_property>(16)},
{10067, static_cast<grapheme_break_property>(13)},
{10070, static_cast<grapheme_break_property>(16)},
{10071, static_cast<grapheme_break_property>(13)},
{10072, static_cast<grapheme_break_property>(16)},
{10083, static_cast<grapheme_break_property>(13)},
{10088, static_cast<grapheme_break_property>(16)},
{10133, static_cast<grapheme_break_property>(13)},
{10136, static_cast<grapheme_break_property>(16)},
{10145, static_cast<grapheme_break_property>(13)},
{10146, static_cast<grapheme_break_property>(16)},
{10160, static_cast<grapheme_break_property>(13)},
{10161, static_cast<grapheme_break_property>(16)},
{10175, static_cast<grapheme_break_property>(13)},
{10176, static_cast<grapheme_break_property>(16)},
{10548, static_cast<grapheme_break_property>(13)},
{10550, static_cast<grapheme_break_property>(16)},
{11013, static_cast<grapheme_break_property>(13)},
{11016, static_cast<grapheme_break_property>(16)},
{11035, static_cast<grapheme_break_property>(13)},
{11037, static_cast<grapheme_break_property>(16)},
{11088, static_cast<grapheme_break_property>(13)},
{11089, static_cast<grapheme_break_property>(16)},
{11093, static_cast<grapheme_break_property>(13)},
{11094, static_cast<grapheme_break_property>(16)},
{11503, static_cast<grapheme_break_property>(3)},
{11506, static_cast<grapheme_break_property>(16)},
{11647, static_cast<grapheme_break_property>(3)},
{11648, static_cast<grapheme_break_property>(16)},
{11744, static_cast<grapheme_break_property>(3)},
{11776, static_cast<grapheme_break_property>(16)},
{12330, static_cast<grapheme_break_property>(3)},
{12334, static_cast<grapheme_break_property>(3)},
{12336, static_cast<grapheme_break_property>(13)},
{12337, static_cast<grapheme_break_property>(16)},
{12349, static_cast<grapheme_break_property>(13)},
{12350, static_cast<grapheme_break_property>(16)},
{12441, static_cast<grapheme_break_property>(3)},
{12443, static_cast<grapheme_break_property>(16)},
{12951, static_cast<grapheme_break_property>(13)},
{12952, static_cast<grapheme_break_property>(16)},
{12953, static_cast<grapheme_break_property>(13)},
{12954, static_cast<grapheme_break_property>(16)},
{42607, static_cast<grapheme_break_property>(3)},
{42608, static_cast<grapheme_break_property>(3)},
{42611, static_cast<grapheme_break_property>(16)},
{42612, static_cast<grapheme_break_property>(3)},
{42622, static_cast<grapheme_break_property>(16)},
{42654, static_cast<grapheme_break_property>(3)},
{42656, static_cast<grapheme_break_property>(16)},
{42736, static_cast<grapheme_break_property>(3)},
{42738, static_cast<grapheme_break_property>(16)},
{43010, static_cast<grapheme_break_property>(3)},
{43011, static_cast<grapheme_break_property>(16)},
{43014, static_cast<grapheme_break_property>(3)},
{43015, static_cast<grapheme_break_property>(16)},
{43019, static_cast<grapheme_break_property>(3)},
{43020, static_cast<grapheme_break_property>(16)},
{43043, static_cast<grapheme_break_property>(7)},
{43045, static_cast<grapheme_break_property>(3)},
{43047, static_cast<grapheme_break_property>(7)},
{43048, static_cast<grapheme_break_property>(16)},
{43136, static_cast<grapheme_break_property>(7)},
{43138, static_cast<grapheme_break_property>(16)},
{43188, static_cast<grapheme_break_property>(7)},
{43204, static_cast<grapheme_break_property>(3)},
{43206, static_cast<grapheme_break_property>(16)},
{43232, static_cast<grapheme_break_property>(3)},
{43250, static_cast<grapheme_break_property>(16)},
{43263, static_cast<grapheme_break_property>(3)},
{43264, static_cast<grapheme_break_property>(16)},
{43302, static_cast<grapheme_break_property>(3)},
{43310, static_cast<grapheme_break_property>(16)},
{43335, static_cast<grapheme_break_property>(3)},
{43346, static_cast<grapheme_break_property>(7)},
{43348, static_cast<grapheme_break_property>(16)},
{43360, static_cast<grapheme_break_property>(8)},
{43389, static_cast<grapheme_break_property>(16)},
{43392, static_cast<grapheme_break_property>(3)},
{43395, static_cast<grapheme_break_property>(7)},
{43396, static_cast<grapheme_break_property>(16)},
{43443, static_cast<grapheme_break_property>(3)},
{43444, static_cast<grapheme_break_property>(7)},
{43446, static_cast<grapheme_break_property>(3)},
{43450, static_cast<grapheme_break_property>(7)},
{43452, static_cast<grapheme_break_property>(3)},
{43453, static_cast<grapheme_break_property>(7)},
{43457, static_cast<grapheme_break_property>(16)},
{43493, static_cast<grapheme_break_property>(3)},
{43494, static_cast<grapheme_break_property>(16)},
{43561, static_cast<grapheme_break_property>(3)},
{43567, static_cast<grapheme_break_property>(7)},
{43569, static_cast<grapheme_break_property>(3)},
{43571, static_cast<grapheme_break_property>(7)},
{43573, static_cast<grapheme_break_property>(3)},
{43575, static_cast<grapheme_break_property>(16)},
{43587, static_cast<grapheme_break_property>(3)},
{43588, static_cast<grapheme_break_property>(16)},
{43596, static_cast<grapheme_break_property>(3)},
{43597, static_cast<grapheme_break_property>(7)},
{43598, static_cast<grapheme_break_property>(16)},
{43644, static_cast<grapheme_break_property>(3)},
{43645, static_cast<grapheme_break_property>(16)},
{43696, static_cast<grapheme_break_property>(3)},
{43697, static_cast<grapheme_break_property>(16)},
{43698, static_cast<grapheme_break_property>(3)},
{43701, static_cast<grapheme_break_property>(16)},
{43703, static_cast<grapheme_break_property>(3)},
{43705, static_cast<grapheme_break_property>(16)},
{43710, static_cast<grapheme_break_property>(3)},
{43712, static_cast<grapheme_break_property>(16)},
{43713, static_cast<grapheme_break_property>(3)},
{43714, static_cast<grapheme_break_property>(16)},
{43755, static_cast<grapheme_break_property>(7)},
{43756, static_cast<grapheme_break_property>(3)},
{43758, static_cast<grapheme_break_property>(7)},
{43760, static_cast<grapheme_break_property>(16)},
{43765, static_cast<grapheme_break_property>(7)},
{43766, static_cast<grapheme_break_property>(3)},
{43767, static_cast<grapheme_break_property>(16)},
{44003, static_cast<grapheme_break_property>(7)},
{44005, static_cast<grapheme_break_property>(3)},
{44006, static_cast<grapheme_break_property>(7)},
{44008, static_cast<grapheme_break_property>(3)},
{44009, static_cast<grapheme_break_property>(7)},
{44011, static_cast<grapheme_break_property>(16)},
{44012, static_cast<grapheme_break_property>(7)},
{44013, static_cast<grapheme_break_property>(3)},
{44014, static_cast<grapheme_break_property>(16)},
{44032, static_cast<grapheme_break_property>(11)},
{44033, static_cast<grapheme_break_property>(12)},
{44060, static_cast<grapheme_break_property>(11)},
{44061, static_cast<grapheme_break_property>(12)},
{44088, static_cast<grapheme_break_property>(11)},
{44089, static_cast<grapheme_break_property>(12)},
{44116, static_cast<grapheme_break_property>(11)},
{44117, static_cast<grapheme_break_property>(12)},
{44144, static_cast<grapheme_break_property>(11)},
{44145, static_cast<grapheme_break_property>(12)},
{44172, static_cast<grapheme_break_property>(11)},
{44173, static_cast<grapheme_break_property>(12)},
{44200, static_cast<grapheme_break_property>(11)},
{44201, static_cast<grapheme_break_property>(12)},
{44228, static_cast<grapheme_break_property>(11)},
{44229, static_cast<grapheme_break_property>(12)},
{44256, static_cast<grapheme_break_property>(11)},
{44257, static_cast<grapheme_break_property>(12)},
{44284, static_cast<grapheme_break_property>(11)},
{44285, static_cast<grapheme_break_property>(12)},
{44312, static_cast<grapheme_break_property>(11)},
{44313, static_cast<grapheme_break_property>(12)},
{44340, static_cast<grapheme_break_property>(11)},
{44341, static_cast<grapheme_break_property>(12)},
{44368, static_cast<grapheme_break_property>(11)},
{44369, static_cast<grapheme_break_property>(12)},
{44396, static_cast<grapheme_break_property>(11)},
{44397, static_cast<grapheme_break_property>(12)},
{44424, static_cast<grapheme_break_property>(11)},
{44425, static_cast<grapheme_break_property>(12)},
{44452, static_cast<grapheme_break_property>(11)},
{44453, static_cast<grapheme_break_property>(12)},
{44480, static_cast<grapheme_break_property>(11)},
{44481, static_cast<grapheme_break_property>(12)},
{44508, static_cast<grapheme_break_property>(11)},
{44509, static_cast<grapheme_break_property>(12)},
{44536, static_cast<grapheme_break_property>(11)},
{44537, static_cast<grapheme_break_property>(12)},
{44564, static_cast<grapheme_break_property>(11)},
{44565, static_cast<grapheme_break_property>(12)},
{44592, static_cast<grapheme_break_property>(11)},
{44593, static_cast<grapheme_break_property>(12)},
{44620, static_cast<grapheme_break_property>(11)},
{44621, static_cast<grapheme_break_property>(12)},
{44648, static_cast<grapheme_break_property>(11)},
{44649, static_cast<grapheme_break_property>(12)},
{44676, static_cast<grapheme_break_property>(11)},
{44677, static_cast<grapheme_break_property>(12)},
{44704, static_cast<grapheme_break_property>(11)},
{44705, static_cast<grapheme_break_property>(12)},
{44732, static_cast<grapheme_break_property>(11)},
{44733, static_cast<grapheme_break_property>(12)},
{44760, static_cast<grapheme_break_property>(11)},
{44761, static_cast<grapheme_break_property>(12)},
{44788, static_cast<grapheme_break_property>(11)},
{44789, static_cast<grapheme_break_property>(12)},
{44816, static_cast<grapheme_break_property>(11)},
{44817, static_cast<grapheme_break_property>(12)},
{44844, static_cast<grapheme_break_property>(11)},
{44845, static_cast<grapheme_break_property>(12)},
{44872, static_cast<grapheme_break_property>(11)},
{44873, static_cast<grapheme_break_property>(12)},
{44900, static_cast<grapheme_break_property>(11)},
{44901, static_cast<grapheme_break_property>(12)},
{44928, static_cast<grapheme_break_property>(11)},
{44929, static_cast<grapheme_break_property>(12)},
{44956, static_cast<grapheme_break_property>(11)},
{44957, static_cast<grapheme_break_property>(12)},
{44984, static_cast<grapheme_break_property>(11)},
{44985, static_cast<grapheme_break_property>(12)},
{45012, static_cast<grapheme_break_property>(11)},
{45013, static_cast<grapheme_break_property>(12)},
{45040, static_cast<grapheme_break_property>(11)},
{45041, static_cast<grapheme_break_property>(12)},
{45068, static_cast<grapheme_break_property>(11)},
{45069, static_cast<grapheme_break_property>(12)},
{45096, static_cast<grapheme_break_property>(11)},
{45097, static_cast<grapheme_break_property>(12)},
{45124, static_cast<grapheme_break_property>(11)},
{45125, static_cast<grapheme_break_property>(12)},
{45152, static_cast<grapheme_break_property>(11)},
{45153, static_cast<grapheme_break_property>(12)},
{45180, static_cast<grapheme_break_property>(11)},
{45181, static_cast<grapheme_break_property>(12)},
{45208, static_cast<grapheme_break_property>(11)},
{45209, static_cast<grapheme_break_property>(12)},
{45236, static_cast<grapheme_break_property>(11)},
{45237, static_cast<grapheme_break_property>(12)},
{45264, static_cast<grapheme_break_property>(11)},
{45265, static_cast<grapheme_break_property>(12)},
{45292, static_cast<grapheme_break_property>(11)},
{45293, static_cast<grapheme_break_property>(12)},
{45320, static_cast<grapheme_break_property>(11)},
{45321, static_cast<grapheme_break_property>(12)},
{45348, static_cast<grapheme_break_property>(11)},
{45349, static_cast<grapheme_break_property>(12)},
{45376, static_cast<grapheme_break_property>(11)},
{45377, static_cast<grapheme_break_property>(12)},
{45404, static_cast<grapheme_break_property>(11)},
{45405, static_cast<grapheme_break_property>(12)},
{45432, static_cast<grapheme_break_property>(11)},
{45433, static_cast<grapheme_break_property>(12)},
{45460, static_cast<grapheme_break_property>(11)},
{45461, static_cast<grapheme_break_property>(12)},
{45488, static_cast<grapheme_break_property>(11)},
{45489, static_cast<grapheme_break_property>(12)},
{45516, static_cast<grapheme_break_property>(11)},
{45517, static_cast<grapheme_break_property>(12)},
{45544, static_cast<grapheme_break_property>(11)},
{45545, static_cast<grapheme_break_property>(12)},
{45572, static_cast<grapheme_break_property>(11)},
{45573, static_cast<grapheme_break_property>(12)},
{45600, static_cast<grapheme_break_property>(11)},
{45601, static_cast<grapheme_break_property>(12)},
{45628, static_cast<grapheme_break_property>(11)},
{45629, static_cast<grapheme_break_property>(12)},
{45656, static_cast<grapheme_break_property>(11)},
{45657, static_cast<grapheme_break_property>(12)},
{45684, static_cast<grapheme_break_property>(11)},
{45685, static_cast<grapheme_break_property>(12)},
{45712, static_cast<grapheme_break_property>(11)},
{45713, static_cast<grapheme_break_property>(12)},
{45740, static_cast<grapheme_break_property>(11)},
{45741, static_cast<grapheme_break_property>(12)},
{45768, static_cast<grapheme_break_property>(11)},
{45769, static_cast<grapheme_break_property>(12)},
{45796, static_cast<grapheme_break_property>(11)},
{45797, static_cast<grapheme_break_property>(12)},
{45824, static_cast<grapheme_break_property>(11)},
{45825, static_cast<grapheme_break_property>(12)},
{45852, static_cast<grapheme_break_property>(11)},
{45853, static_cast<grapheme_break_property>(12)},
{45880, static_cast<grapheme_break_property>(11)},
{45881, static_cast<grapheme_break_property>(12)},
{45908, static_cast<grapheme_break_property>(11)},
{45909, static_cast<grapheme_break_property>(12)},
{45936, static_cast<grapheme_break_property>(11)},
{45937, static_cast<grapheme_break_property>(12)},
{45964, static_cast<grapheme_break_property>(11)},
{45965, static_cast<grapheme_break_property>(12)},
{45992, static_cast<grapheme_break_property>(11)},
{45993, static_cast<grapheme_break_property>(12)},
{46020, static_cast<grapheme_break_property>(11)},
{46021, static_cast<grapheme_break_property>(12)},
{46048, static_cast<grapheme_break_property>(11)},
{46049, static_cast<grapheme_break_property>(12)},
{46076, static_cast<grapheme_break_property>(11)},
{46077, static_cast<grapheme_break_property>(12)},
{46104, static_cast<grapheme_break_property>(11)},
{46105, static_cast<grapheme_break_property>(12)},
{46132, static_cast<grapheme_break_property>(11)},
{46133, static_cast<grapheme_break_property>(12)},
{46160, static_cast<grapheme_break_property>(11)},
{46161, static_cast<grapheme_break_property>(12)},
{46188, static_cast<grapheme_break_property>(11)},
{46189, static_cast<grapheme_break_property>(12)},
{46216, static_cast<grapheme_break_property>(11)},
{46217, static_cast<grapheme_break_property>(12)},
{46244, static_cast<grapheme_break_property>(11)},
{46245, static_cast<grapheme_break_property>(12)},
{46272, static_cast<grapheme_break_property>(11)},
{46273, static_cast<grapheme_break_property>(12)},
{46300, static_cast<grapheme_break_property>(11)},
{46301, static_cast<grapheme_break_property>(12)},
{46328, static_cast<grapheme_break_property>(11)},
{46329, static_cast<grapheme_break_property>(12)},
{46356, static_cast<grapheme_break_property>(11)},
{46357, static_cast<grapheme_break_property>(12)},
{46384, static_cast<grapheme_break_property>(11)},
{46385, static_cast<grapheme_break_property>(12)},
{46412, static_cast<grapheme_break_property>(11)},
{46413, static_cast<grapheme_break_property>(12)},
{46440, static_cast<grapheme_break_property>(11)},
{46441, static_cast<grapheme_break_property>(12)},
{46468, static_cast<grapheme_break_property>(11)},
{46469, static_cast<grapheme_break_property>(12)},
{46496, static_cast<grapheme_break_property>(11)},
{46497, static_cast<grapheme_break_property>(12)},
{46524, static_cast<grapheme_break_property>(11)},
{46525, static_cast<grapheme_break_property>(12)},
{46552, static_cast<grapheme_break_property>(11)},
{46553, static_cast<grapheme_break_property>(12)},
{46580, static_cast<grapheme_break_property>(11)},
{46581, static_cast<grapheme_break_property>(12)},
{46608, static_cast<grapheme_break_property>(11)},
{46609, static_cast<grapheme_break_property>(12)},
{46636, static_cast<grapheme_break_property>(11)},
{46637, static_cast<grapheme_break_property>(12)},
{46664, static_cast<grapheme_break_property>(11)},
{46665, static_cast<grapheme_break_property>(12)},
{46692, static_cast<grapheme_break_property>(11)},
{46693, static_cast<grapheme_break_property>(12)},
{46720, static_cast<grapheme_break_property>(11)},
{46721, static_cast<grapheme_break_property>(12)},
{46748, static_cast<grapheme_break_property>(11)},
{46749, static_cast<grapheme_break_property>(12)},
{46776, static_cast<grapheme_break_property>(11)},
{46777, static_cast<grapheme_break_property>(12)},
{46804, static_cast<grapheme_break_property>(11)},
{46805, static_cast<grapheme_break_property>(12)},
{46832, static_cast<grapheme_break_property>(11)},
{46833, static_cast<grapheme_break_property>(12)},
{46860, static_cast<grapheme_break_property>(11)},
{46861, static_cast<grapheme_break_property>(12)},
{46888, static_cast<grapheme_break_property>(11)},
{46889, static_cast<grapheme_break_property>(12)},
{46916, static_cast<grapheme_break_property>(11)},
{46917, static_cast<grapheme_break_property>(12)},
{46944, static_cast<grapheme_break_property>(11)},
{46945, static_cast<grapheme_break_property>(12)},
{46972, static_cast<grapheme_break_property>(11)},
{46973, static_cast<grapheme_break_property>(12)},
{47000, static_cast<grapheme_break_property>(11)},
{47001, static_cast<grapheme_break_property>(12)},
{47028, static_cast<grapheme_break_property>(11)},
{47029, static_cast<grapheme_break_property>(12)},
{47056, static_cast<grapheme_break_property>(11)},
{47057, static_cast<grapheme_break_property>(12)},
{47084, static_cast<grapheme_break_property>(11)},
{47085, static_cast<grapheme_break_property>(12)},
{47112, static_cast<grapheme_break_property>(11)},
{47113, static_cast<grapheme_break_property>(12)},
{47140, static_cast<grapheme_break_property>(11)},
{47141, static_cast<grapheme_break_property>(12)},
{47168, static_cast<grapheme_break_property>(11)},
{47169, static_cast<grapheme_break_property>(12)},
{47196, static_cast<grapheme_break_property>(11)},
{47197, static_cast<grapheme_break_property>(12)},
{47224, static_cast<grapheme_break_property>(11)},