-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
4776 lines (4719 loc) · 217 KB
/
index.js
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
// output-es/runtime.js
function fail() {
throw new Error("Failed pattern match");
}
function intDiv(x, y) {
if (y > 0)
return Math.floor(x / y);
if (y < 0)
return -Math.floor(x / -y);
return 0;
}
// output-es/Type.Proxy/index.js
var $$$Proxy = () => ({ tag: "Proxy" });
var $$Proxy = /* @__PURE__ */ $$$Proxy();
// output-es/Data.Functor/foreign.js
var arrayMap = function(f) {
return function(arr) {
var l = arr.length;
var result = new Array(l);
for (var i = 0; i < l; i++) {
result[i] = f(arr[i]);
}
return result;
};
};
// output-es/Data.Functor/index.js
var functorArray = { map: arrayMap };
// output-es/Control.Bind/foreign.js
var arrayBind = function(arr) {
return function(f) {
var result = [];
for (var i = 0, l = arr.length; i < l; i++) {
Array.prototype.push.apply(result, f(arr[i]));
}
return result;
};
};
// output-es/Control.Bind/index.js
var identity = (x) => x;
// output-es/Record.Unsafe/foreign.js
var unsafeGet = function(label) {
return function(rec) {
return rec[label];
};
};
// output-es/Data.Show/foreign.js
var showIntImpl = function(n) {
return n.toString();
};
// output-es/Data.Ordering/index.js
var $Ordering = (tag) => tag;
var LT = /* @__PURE__ */ $Ordering("LT");
var GT = /* @__PURE__ */ $Ordering("GT");
var EQ = /* @__PURE__ */ $Ordering("EQ");
// output-es/Data.Maybe/index.js
var $Maybe = (tag, _1) => ({ tag, _1 });
var Nothing = /* @__PURE__ */ $Maybe("Nothing");
var Just = (value0) => $Maybe("Just", value0);
var isNothing = (v2) => {
if (v2.tag === "Nothing") {
return true;
}
if (v2.tag === "Just") {
return false;
}
fail();
};
var functorMaybe = {
map: (v) => (v1) => {
if (v1.tag === "Just") {
return $Maybe("Just", v(v1._1));
}
return Nothing;
}
};
var applyMaybe = {
apply: (v) => (v1) => {
if (v.tag === "Just") {
if (v1.tag === "Just") {
return $Maybe("Just", v._1(v1._1));
}
return Nothing;
}
if (v.tag === "Nothing") {
return Nothing;
}
fail();
},
Functor0: () => functorMaybe
};
var applicativeMaybe = { pure: Just, Apply0: () => applyMaybe };
// output-es/Control.Monad.ST.Uncurried/foreign.js
var runSTFn2 = function runSTFn22(fn) {
return function(a) {
return function(b) {
return function() {
return fn(a, b);
};
};
};
};
// output-es/Data.Array.ST/foreign.js
var pushImpl = function(a, xs) {
return xs.push(a);
};
// output-es/Data.Array.ST/index.js
var push = /* @__PURE__ */ runSTFn2(pushImpl);
// output-es/Data.Foldable/foreign.js
var foldrArray = function(f) {
return function(init) {
return function(xs) {
var acc = init;
var len = xs.length;
for (var i = len - 1; i >= 0; i--) {
acc = f(xs[i])(acc);
}
return acc;
};
};
};
var foldlArray = function(f) {
return function(init) {
return function(xs) {
var acc = init;
var len = xs.length;
for (var i = 0; i < len; i++) {
acc = f(acc)(xs[i]);
}
return acc;
};
};
};
// output-es/Data.Foldable/index.js
var foldableArray = {
foldr: foldrArray,
foldl: foldlArray,
foldMap: (dictMonoid) => {
const mempty = dictMonoid.mempty;
return (f) => foldableArray.foldr((x) => (acc) => dictMonoid.Semigroup0().append(f(x))(acc))(mempty);
}
};
// output-es/Data.Tuple/index.js
var $Tuple = (_1, _2) => ({ tag: "Tuple", _1, _2 });
var Tuple = (value0) => (value1) => $Tuple(value0, value1);
var snd = (v) => v._2;
var fst = (v) => v._1;
// output-es/Data.FunctorWithIndex/foreign.js
var mapWithIndexArray = function(f) {
return function(xs) {
var l = xs.length;
var result = Array(l);
for (var i = 0; i < l; i++) {
result[i] = f(i)(xs[i]);
}
return result;
};
};
// output-es/Data.Eq/foreign.js
var refEq = function(r1) {
return function(r2) {
return r1 === r2;
};
};
var eqIntImpl = refEq;
// output-es/Data.Eq/index.js
var eqInt = { eq: eqIntImpl };
// output-es/Data.Ord/foreign.js
var unsafeCompareImpl = function(lt) {
return function(eq) {
return function(gt) {
return function(x) {
return function(y) {
return x < y ? lt : x === y ? eq : gt;
};
};
};
};
};
var ordIntImpl = unsafeCompareImpl;
// output-es/Data.Ord/index.js
var ordInt = { compare: /* @__PURE__ */ ordIntImpl(LT)(EQ)(GT), Eq0: () => eqInt };
// output-es/Unsafe.Coerce/foreign.js
var unsafeCoerce = function(x) {
return x;
};
// output-es/Data.Traversable/foreign.js
var traverseArrayImpl = /* @__PURE__ */ function() {
function array1(a) {
return [a];
}
function array2(a) {
return function(b) {
return [a, b];
};
}
function array3(a) {
return function(b) {
return function(c) {
return [a, b, c];
};
};
}
function concat2(xs) {
return function(ys) {
return xs.concat(ys);
};
}
return function(apply) {
return function(map) {
return function(pure) {
return function(f) {
return function(array) {
function go(bot, top) {
switch (top - bot) {
case 0:
return pure([]);
case 1:
return map(array1)(f(array[bot]));
case 2:
return apply(map(array2)(f(array[bot])))(f(array[bot + 1]));
case 3:
return apply(apply(map(array3)(f(array[bot])))(f(array[bot + 1])))(f(array[bot + 2]));
default:
var pivot = bot + Math.floor((top - bot) / 4) * 2;
return apply(map(concat2)(go(bot, pivot)))(go(pivot, top));
}
}
return go(0, array.length);
};
};
};
};
};
}();
// output-es/Data.Traversable/index.js
var identity3 = (x) => x;
var traversableArray = {
traverse: (dictApplicative) => {
const Apply0 = dictApplicative.Apply0();
return traverseArrayImpl(Apply0.apply)(Apply0.Functor0().map)(dictApplicative.pure);
},
sequence: (dictApplicative) => traversableArray.traverse(dictApplicative)(identity3),
Functor0: () => functorArray,
Foldable1: () => foldableArray
};
// output-es/Data.Array/foreign.js
var replicateFill = function(count, value) {
if (count < 1) {
return [];
}
var result = new Array(count);
return result.fill(value);
};
var replicatePolyfill = function(count, value) {
var result = [];
var n = 0;
for (var i = 0; i < count; i++) {
result[n++] = value;
}
return result;
};
var replicateImpl = typeof Array.prototype.fill === "function" ? replicateFill : replicatePolyfill;
var unconsImpl = function(empty2, next, xs) {
return xs.length === 0 ? empty2({}) : next(xs[0])(xs.slice(1));
};
var findIndexImpl = function(just, nothing, f, xs) {
for (var i = 0, l = xs.length; i < l; i++) {
if (f(xs[i]))
return just(i);
}
return nothing;
};
var sliceImpl = function(s, e, l) {
return l.slice(s, e);
};
// output-es/Data.Array/index.js
var snoc = (xs) => (x) => (() => {
const $0 = push(x);
return () => {
const result = [...xs];
$0(result)();
return result;
};
})()();
var splitAt = (v) => (v1) => {
if (v <= 0) {
return { before: [], after: v1 };
}
return { before: sliceImpl(0, v, v1), after: sliceImpl(v, v1.length, v1) };
};
var last = (xs) => {
const $0 = xs.length - 1 | 0;
if ($0 >= 0 && $0 < xs.length) {
return $Maybe("Just", xs[$0]);
}
return Nothing;
};
var unsnoc = (xs) => applyMaybe.apply(xs.length === 0 ? Nothing : $Maybe(
"Just",
(() => {
const $0 = sliceImpl(0, xs.length - 1 | 0, xs);
return (v1) => ({ init: $0, last: v1 });
})()
))(last(xs));
var elem = (dictEq) => (a) => (arr) => {
const $0 = findIndexImpl(Just, Nothing, (v) => dictEq.eq(v)(a), arr);
if ($0.tag === "Nothing") {
return false;
}
if ($0.tag === "Just") {
return true;
}
fail();
};
// output-es/Data.Number/foreign.js
var isFiniteImpl = isFinite;
var floor = Math.floor;
// output-es/Data.Int/foreign.js
var fromNumberImpl = function(just) {
return function(nothing) {
return function(n) {
return (n | 0) === n ? just(n) : nothing;
};
};
};
var toNumber = function(n) {
return n;
};
var fromStringAsImpl = function(just) {
return function(nothing) {
return function(radix) {
var digits;
if (radix < 11) {
digits = "[0-" + (radix - 1).toString() + "]";
} else if (radix === 11) {
digits = "[0-9a]";
} else {
digits = "[0-9a-" + String.fromCharCode(86 + radix) + "]";
}
var pattern = new RegExp("^[\\+\\-]?" + digits + "+$", "i");
return function(s) {
if (pattern.test(s)) {
var i = parseInt(s, radix);
return (i | 0) === i ? just(i) : nothing;
} else {
return nothing;
}
};
};
};
};
// output-es/Data.Int/index.js
var fromStringAs = /* @__PURE__ */ fromStringAsImpl(Just)(Nothing);
var fromString = /* @__PURE__ */ fromStringAs(10);
var fromNumber = /* @__PURE__ */ fromNumberImpl(Just)(Nothing);
var unsafeClamp = (x) => {
if (!isFiniteImpl(x)) {
return 0;
}
if (x >= toNumber(2147483647)) {
return 2147483647;
}
if (x <= toNumber(-2147483648)) {
return -2147483648;
}
const $0 = fromNumber(x);
if ($0.tag === "Nothing") {
return 0;
}
if ($0.tag === "Just") {
return $0._1;
}
fail();
};
// output-es/Data.CodePoint.Unicode.Internal/index.js
var $UnicodeCategory = (tag) => tag;
var NUMCAT_LU = /* @__PURE__ */ $UnicodeCategory("NUMCAT_LU");
var NUMCAT_LL = /* @__PURE__ */ $UnicodeCategory("NUMCAT_LL");
var NUMCAT_LT = /* @__PURE__ */ $UnicodeCategory("NUMCAT_LT");
var NUMCAT_LM = /* @__PURE__ */ $UnicodeCategory("NUMCAT_LM");
var NUMCAT_LO = /* @__PURE__ */ $UnicodeCategory("NUMCAT_LO");
var NUMCAT_MN = /* @__PURE__ */ $UnicodeCategory("NUMCAT_MN");
var NUMCAT_MC = /* @__PURE__ */ $UnicodeCategory("NUMCAT_MC");
var NUMCAT_ME = /* @__PURE__ */ $UnicodeCategory("NUMCAT_ME");
var NUMCAT_ND = /* @__PURE__ */ $UnicodeCategory("NUMCAT_ND");
var NUMCAT_NL = /* @__PURE__ */ $UnicodeCategory("NUMCAT_NL");
var NUMCAT_NO = /* @__PURE__ */ $UnicodeCategory("NUMCAT_NO");
var NUMCAT_PC = /* @__PURE__ */ $UnicodeCategory("NUMCAT_PC");
var NUMCAT_PD = /* @__PURE__ */ $UnicodeCategory("NUMCAT_PD");
var NUMCAT_PS = /* @__PURE__ */ $UnicodeCategory("NUMCAT_PS");
var NUMCAT_PE = /* @__PURE__ */ $UnicodeCategory("NUMCAT_PE");
var NUMCAT_PI = /* @__PURE__ */ $UnicodeCategory("NUMCAT_PI");
var NUMCAT_PF = /* @__PURE__ */ $UnicodeCategory("NUMCAT_PF");
var NUMCAT_PO = /* @__PURE__ */ $UnicodeCategory("NUMCAT_PO");
var NUMCAT_SM = /* @__PURE__ */ $UnicodeCategory("NUMCAT_SM");
var NUMCAT_SC = /* @__PURE__ */ $UnicodeCategory("NUMCAT_SC");
var NUMCAT_SK = /* @__PURE__ */ $UnicodeCategory("NUMCAT_SK");
var NUMCAT_SO = /* @__PURE__ */ $UnicodeCategory("NUMCAT_SO");
var NUMCAT_ZS = /* @__PURE__ */ $UnicodeCategory("NUMCAT_ZS");
var NUMCAT_ZL = /* @__PURE__ */ $UnicodeCategory("NUMCAT_ZL");
var NUMCAT_ZP = /* @__PURE__ */ $UnicodeCategory("NUMCAT_ZP");
var NUMCAT_CC = /* @__PURE__ */ $UnicodeCategory("NUMCAT_CC");
var NUMCAT_CF = /* @__PURE__ */ $UnicodeCategory("NUMCAT_CF");
var NUMCAT_CS = /* @__PURE__ */ $UnicodeCategory("NUMCAT_CS");
var NUMCAT_CO = /* @__PURE__ */ $UnicodeCategory("NUMCAT_CO");
var NUMCAT_CN = /* @__PURE__ */ $UnicodeCategory("NUMCAT_CN");
var rule1 = { category: 2, unicodeCat: NUMCAT_ZS, possible: 0, updist: 0, lowdist: 0, titledist: 0 };
var rule162 = { category: 67108864, unicodeCat: NUMCAT_ZP, possible: 0, updist: 0, lowdist: 0, titledist: 0 };
var rule161 = { category: 33554432, unicodeCat: NUMCAT_ZL, possible: 0, updist: 0, lowdist: 0, titledist: 0 };
var rule13 = { category: 8192, unicodeCat: NUMCAT_SO, possible: 0, updist: 0, lowdist: 0, titledist: 0 };
var rule170 = { category: 8192, unicodeCat: NUMCAT_SO, possible: 1, updist: 0, lowdist: 26, titledist: 0 };
var rule171 = { category: 8192, unicodeCat: NUMCAT_SO, possible: 1, updist: -26, lowdist: 0, titledist: -26 };
var rule6 = { category: 64, unicodeCat: NUMCAT_SM, possible: 0, updist: 0, lowdist: 0, titledist: 0 };
var rule10 = { category: 1024, unicodeCat: NUMCAT_SK, possible: 0, updist: 0, lowdist: 0, titledist: 0 };
var rule3 = { category: 8, unicodeCat: NUMCAT_SC, possible: 0, updist: 0, lowdist: 0, titledist: 0 };
var rule4 = { category: 16, unicodeCat: NUMCAT_PS, possible: 0, updist: 0, lowdist: 0, titledist: 0 };
var rule2 = { category: 4, unicodeCat: NUMCAT_PO, possible: 0, updist: 0, lowdist: 0, titledist: 0 };
var rule15 = { category: 32768, unicodeCat: NUMCAT_PI, possible: 0, updist: 0, lowdist: 0, titledist: 0 };
var rule19 = { category: 262144, unicodeCat: NUMCAT_PF, possible: 0, updist: 0, lowdist: 0, titledist: 0 };
var rule5 = { category: 32, unicodeCat: NUMCAT_PE, possible: 0, updist: 0, lowdist: 0, titledist: 0 };
var rule7 = { category: 128, unicodeCat: NUMCAT_PD, possible: 0, updist: 0, lowdist: 0, titledist: 0 };
var rule11 = { category: 2048, unicodeCat: NUMCAT_PC, possible: 0, updist: 0, lowdist: 0, titledist: 0 };
var rule17 = { category: 131072, unicodeCat: NUMCAT_NO, possible: 0, updist: 0, lowdist: 0, titledist: 0 };
var rule128 = { category: 16777216, unicodeCat: NUMCAT_NL, possible: 0, updist: 0, lowdist: 0, titledist: 0 };
var rule168 = { category: 16777216, unicodeCat: NUMCAT_NL, possible: 1, updist: 0, lowdist: 16, titledist: 0 };
var rule169 = { category: 16777216, unicodeCat: NUMCAT_NL, possible: 1, updist: -16, lowdist: 0, titledist: -16 };
var rule8 = { category: 256, unicodeCat: NUMCAT_ND, possible: 0, updist: 0, lowdist: 0, titledist: 0 };
var rule92 = { category: 2097152, unicodeCat: NUMCAT_MN, possible: 0, updist: 0, lowdist: 0, titledist: 0 };
var rule93 = { category: 2097152, unicodeCat: NUMCAT_MN, possible: 1, updist: 84, lowdist: 0, titledist: 84 };
var rule119 = { category: 4194304, unicodeCat: NUMCAT_ME, possible: 0, updist: 0, lowdist: 0, titledist: 0 };
var rule124 = { category: 8388608, unicodeCat: NUMCAT_MC, possible: 0, updist: 0, lowdist: 0, titledist: 0 };
var nullrule = { category: 512, unicodeCat: NUMCAT_CN, possible: 0, updist: 0, lowdist: 0, titledist: 0 };
var rule104 = { category: 512, unicodeCat: NUMCAT_LU, possible: 1, updist: 0, lowdist: 8, titledist: 0 };
var rule107 = { category: 512, unicodeCat: NUMCAT_LU, possible: 0, updist: 0, lowdist: 0, titledist: 0 };
var rule115 = { category: 512, unicodeCat: NUMCAT_LU, possible: 1, updist: 0, lowdist: -60, titledist: 0 };
var rule117 = { category: 512, unicodeCat: NUMCAT_LU, possible: 1, updist: 0, lowdist: -7, titledist: 0 };
var rule118 = { category: 512, unicodeCat: NUMCAT_LU, possible: 1, updist: 0, lowdist: 80, titledist: 0 };
var rule120 = { category: 512, unicodeCat: NUMCAT_LU, possible: 1, updist: 0, lowdist: 15, titledist: 0 };
var rule122 = { category: 512, unicodeCat: NUMCAT_LU, possible: 1, updist: 0, lowdist: 48, titledist: 0 };
var rule125 = { category: 512, unicodeCat: NUMCAT_LU, possible: 1, updist: 0, lowdist: 7264, titledist: 0 };
var rule127 = { category: 512, unicodeCat: NUMCAT_LU, possible: 1, updist: 0, lowdist: 38864, titledist: 0 };
var rule137 = { category: 512, unicodeCat: NUMCAT_LU, possible: 1, updist: 0, lowdist: -3008, titledist: 0 };
var rule142 = { category: 512, unicodeCat: NUMCAT_LU, possible: 1, updist: 0, lowdist: -7615, titledist: 0 };
var rule144 = { category: 512, unicodeCat: NUMCAT_LU, possible: 1, updist: 0, lowdist: -8, titledist: 0 };
var rule153 = { category: 512, unicodeCat: NUMCAT_LU, possible: 1, updist: 0, lowdist: -74, titledist: 0 };
var rule156 = { category: 512, unicodeCat: NUMCAT_LU, possible: 1, updist: 0, lowdist: -86, titledist: 0 };
var rule157 = { category: 512, unicodeCat: NUMCAT_LU, possible: 1, updist: 0, lowdist: -100, titledist: 0 };
var rule158 = { category: 512, unicodeCat: NUMCAT_LU, possible: 1, updist: 0, lowdist: -112, titledist: 0 };
var rule159 = { category: 512, unicodeCat: NUMCAT_LU, possible: 1, updist: 0, lowdist: -128, titledist: 0 };
var rule160 = { category: 512, unicodeCat: NUMCAT_LU, possible: 1, updist: 0, lowdist: -126, titledist: 0 };
var rule163 = { category: 512, unicodeCat: NUMCAT_LU, possible: 1, updist: 0, lowdist: -7517, titledist: 0 };
var rule164 = { category: 512, unicodeCat: NUMCAT_LU, possible: 1, updist: 0, lowdist: -8383, titledist: 0 };
var rule165 = { category: 512, unicodeCat: NUMCAT_LU, possible: 1, updist: 0, lowdist: -8262, titledist: 0 };
var rule166 = { category: 512, unicodeCat: NUMCAT_LU, possible: 1, updist: 0, lowdist: 28, titledist: 0 };
var rule172 = { category: 512, unicodeCat: NUMCAT_LU, possible: 1, updist: 0, lowdist: -10743, titledist: 0 };
var rule173 = { category: 512, unicodeCat: NUMCAT_LU, possible: 1, updist: 0, lowdist: -3814, titledist: 0 };
var rule174 = { category: 512, unicodeCat: NUMCAT_LU, possible: 1, updist: 0, lowdist: -10727, titledist: 0 };
var rule177 = { category: 512, unicodeCat: NUMCAT_LU, possible: 1, updist: 0, lowdist: -10780, titledist: 0 };
var rule178 = { category: 512, unicodeCat: NUMCAT_LU, possible: 1, updist: 0, lowdist: -10749, titledist: 0 };
var rule179 = { category: 512, unicodeCat: NUMCAT_LU, possible: 1, updist: 0, lowdist: -10783, titledist: 0 };
var rule180 = { category: 512, unicodeCat: NUMCAT_LU, possible: 1, updist: 0, lowdist: -10782, titledist: 0 };
var rule181 = { category: 512, unicodeCat: NUMCAT_LU, possible: 1, updist: 0, lowdist: -10815, titledist: 0 };
var rule183 = { category: 512, unicodeCat: NUMCAT_LU, possible: 1, updist: 0, lowdist: -35332, titledist: 0 };
var rule184 = { category: 512, unicodeCat: NUMCAT_LU, possible: 1, updist: 0, lowdist: -42280, titledist: 0 };
var rule186 = { category: 512, unicodeCat: NUMCAT_LU, possible: 1, updist: 0, lowdist: -42308, titledist: 0 };
var rule187 = { category: 512, unicodeCat: NUMCAT_LU, possible: 1, updist: 0, lowdist: -42319, titledist: 0 };
var rule188 = { category: 512, unicodeCat: NUMCAT_LU, possible: 1, updist: 0, lowdist: -42315, titledist: 0 };
var rule189 = { category: 512, unicodeCat: NUMCAT_LU, possible: 1, updist: 0, lowdist: -42305, titledist: 0 };
var rule190 = { category: 512, unicodeCat: NUMCAT_LU, possible: 1, updist: 0, lowdist: -42258, titledist: 0 };
var rule191 = { category: 512, unicodeCat: NUMCAT_LU, possible: 1, updist: 0, lowdist: -42282, titledist: 0 };
var rule192 = { category: 512, unicodeCat: NUMCAT_LU, possible: 1, updist: 0, lowdist: -42261, titledist: 0 };
var rule193 = { category: 512, unicodeCat: NUMCAT_LU, possible: 1, updist: 0, lowdist: 928, titledist: 0 };
var rule194 = { category: 512, unicodeCat: NUMCAT_LU, possible: 1, updist: 0, lowdist: -48, titledist: 0 };
var rule195 = { category: 512, unicodeCat: NUMCAT_LU, possible: 1, updist: 0, lowdist: -42307, titledist: 0 };
var rule196 = { category: 512, unicodeCat: NUMCAT_LU, possible: 1, updist: 0, lowdist: -35384, titledist: 0 };
var rule201 = { category: 512, unicodeCat: NUMCAT_LU, possible: 1, updist: 0, lowdist: 40, titledist: 0 };
var rule203 = { category: 512, unicodeCat: NUMCAT_LU, possible: 1, updist: 0, lowdist: 34, titledist: 0 };
var rule22 = { category: 512, unicodeCat: NUMCAT_LU, possible: 1, updist: 0, lowdist: 1, titledist: 0 };
var rule24 = { category: 512, unicodeCat: NUMCAT_LU, possible: 1, updist: 0, lowdist: -199, titledist: 0 };
var rule26 = { category: 512, unicodeCat: NUMCAT_LU, possible: 1, updist: 0, lowdist: -121, titledist: 0 };
var rule29 = { category: 512, unicodeCat: NUMCAT_LU, possible: 1, updist: 0, lowdist: 210, titledist: 0 };
var rule30 = { category: 512, unicodeCat: NUMCAT_LU, possible: 1, updist: 0, lowdist: 206, titledist: 0 };
var rule31 = { category: 512, unicodeCat: NUMCAT_LU, possible: 1, updist: 0, lowdist: 205, titledist: 0 };
var rule32 = { category: 512, unicodeCat: NUMCAT_LU, possible: 1, updist: 0, lowdist: 79, titledist: 0 };
var rule33 = { category: 512, unicodeCat: NUMCAT_LU, possible: 1, updist: 0, lowdist: 202, titledist: 0 };
var rule34 = { category: 512, unicodeCat: NUMCAT_LU, possible: 1, updist: 0, lowdist: 203, titledist: 0 };
var rule35 = { category: 512, unicodeCat: NUMCAT_LU, possible: 1, updist: 0, lowdist: 207, titledist: 0 };
var rule37 = { category: 512, unicodeCat: NUMCAT_LU, possible: 1, updist: 0, lowdist: 211, titledist: 0 };
var rule38 = { category: 512, unicodeCat: NUMCAT_LU, possible: 1, updist: 0, lowdist: 209, titledist: 0 };
var rule40 = { category: 512, unicodeCat: NUMCAT_LU, possible: 1, updist: 0, lowdist: 213, titledist: 0 };
var rule42 = { category: 512, unicodeCat: NUMCAT_LU, possible: 1, updist: 0, lowdist: 214, titledist: 0 };
var rule43 = { category: 512, unicodeCat: NUMCAT_LU, possible: 1, updist: 0, lowdist: 218, titledist: 0 };
var rule44 = { category: 512, unicodeCat: NUMCAT_LU, possible: 1, updist: 0, lowdist: 217, titledist: 0 };
var rule45 = { category: 512, unicodeCat: NUMCAT_LU, possible: 1, updist: 0, lowdist: 219, titledist: 0 };
var rule47 = { category: 512, unicodeCat: NUMCAT_LU, possible: 1, updist: 0, lowdist: 2, titledist: 1 };
var rule51 = { category: 512, unicodeCat: NUMCAT_LU, possible: 1, updist: 0, lowdist: -97, titledist: 0 };
var rule52 = { category: 512, unicodeCat: NUMCAT_LU, possible: 1, updist: 0, lowdist: -56, titledist: 0 };
var rule53 = { category: 512, unicodeCat: NUMCAT_LU, possible: 1, updist: 0, lowdist: -130, titledist: 0 };
var rule54 = { category: 512, unicodeCat: NUMCAT_LU, possible: 1, updist: 0, lowdist: 10795, titledist: 0 };
var rule55 = { category: 512, unicodeCat: NUMCAT_LU, possible: 1, updist: 0, lowdist: -163, titledist: 0 };
var rule56 = { category: 512, unicodeCat: NUMCAT_LU, possible: 1, updist: 0, lowdist: 10792, titledist: 0 };
var rule58 = { category: 512, unicodeCat: NUMCAT_LU, possible: 1, updist: 0, lowdist: -195, titledist: 0 };
var rule59 = { category: 512, unicodeCat: NUMCAT_LU, possible: 1, updist: 0, lowdist: 69, titledist: 0 };
var rule60 = { category: 512, unicodeCat: NUMCAT_LU, possible: 1, updist: 0, lowdist: 71, titledist: 0 };
var rule9 = { category: 512, unicodeCat: NUMCAT_LU, possible: 1, updist: 0, lowdist: 32, titledist: 0 };
var rule94 = { category: 512, unicodeCat: NUMCAT_LU, possible: 1, updist: 0, lowdist: 116, titledist: 0 };
var rule95 = { category: 512, unicodeCat: NUMCAT_LU, possible: 1, updist: 0, lowdist: 38, titledist: 0 };
var rule96 = { category: 512, unicodeCat: NUMCAT_LU, possible: 1, updist: 0, lowdist: 37, titledist: 0 };
var rule97 = { category: 512, unicodeCat: NUMCAT_LU, possible: 1, updist: 0, lowdist: 64, titledist: 0 };
var rule98 = { category: 512, unicodeCat: NUMCAT_LU, possible: 1, updist: 0, lowdist: 63, titledist: 0 };
var rule151 = { category: 524288, unicodeCat: NUMCAT_LT, possible: 1, updist: 0, lowdist: -8, titledist: 0 };
var rule154 = { category: 524288, unicodeCat: NUMCAT_LT, possible: 1, updist: 0, lowdist: -9, titledist: 0 };
var rule48 = { category: 524288, unicodeCat: NUMCAT_LT, possible: 1, updist: -1, lowdist: 1, titledist: 0 };
var rule14 = { category: 16384, unicodeCat: NUMCAT_LO, possible: 0, updist: 0, lowdist: 0, titledist: 0 };
var rule91 = { category: 1048576, unicodeCat: NUMCAT_LM, possible: 0, updist: 0, lowdist: 0, titledist: 0 };
var rule100 = { category: 4096, unicodeCat: NUMCAT_LL, possible: 1, updist: -37, lowdist: 0, titledist: -37 };
var rule101 = { category: 4096, unicodeCat: NUMCAT_LL, possible: 1, updist: -31, lowdist: 0, titledist: -31 };
var rule102 = { category: 4096, unicodeCat: NUMCAT_LL, possible: 1, updist: -64, lowdist: 0, titledist: -64 };
var rule103 = { category: 4096, unicodeCat: NUMCAT_LL, possible: 1, updist: -63, lowdist: 0, titledist: -63 };
var rule105 = { category: 4096, unicodeCat: NUMCAT_LL, possible: 1, updist: -62, lowdist: 0, titledist: -62 };
var rule106 = { category: 4096, unicodeCat: NUMCAT_LL, possible: 1, updist: -57, lowdist: 0, titledist: -57 };
var rule108 = { category: 4096, unicodeCat: NUMCAT_LL, possible: 1, updist: -47, lowdist: 0, titledist: -47 };
var rule109 = { category: 4096, unicodeCat: NUMCAT_LL, possible: 1, updist: -54, lowdist: 0, titledist: -54 };
var rule110 = { category: 4096, unicodeCat: NUMCAT_LL, possible: 1, updist: -8, lowdist: 0, titledist: -8 };
var rule111 = { category: 4096, unicodeCat: NUMCAT_LL, possible: 1, updist: -86, lowdist: 0, titledist: -86 };
var rule112 = { category: 4096, unicodeCat: NUMCAT_LL, possible: 1, updist: -80, lowdist: 0, titledist: -80 };
var rule113 = { category: 4096, unicodeCat: NUMCAT_LL, possible: 1, updist: 7, lowdist: 0, titledist: 7 };
var rule114 = { category: 4096, unicodeCat: NUMCAT_LL, possible: 1, updist: -116, lowdist: 0, titledist: -116 };
var rule116 = { category: 4096, unicodeCat: NUMCAT_LL, possible: 1, updist: -96, lowdist: 0, titledist: -96 };
var rule12 = { category: 4096, unicodeCat: NUMCAT_LL, possible: 1, updist: -32, lowdist: 0, titledist: -32 };
var rule121 = { category: 4096, unicodeCat: NUMCAT_LL, possible: 1, updist: -15, lowdist: 0, titledist: -15 };
var rule123 = { category: 4096, unicodeCat: NUMCAT_LL, possible: 1, updist: -48, lowdist: 0, titledist: -48 };
var rule126 = { category: 4096, unicodeCat: NUMCAT_LL, possible: 1, updist: 3008, lowdist: 0, titledist: 0 };
var rule129 = { category: 4096, unicodeCat: NUMCAT_LL, possible: 1, updist: -6254, lowdist: 0, titledist: -6254 };
var rule130 = { category: 4096, unicodeCat: NUMCAT_LL, possible: 1, updist: -6253, lowdist: 0, titledist: -6253 };
var rule131 = { category: 4096, unicodeCat: NUMCAT_LL, possible: 1, updist: -6244, lowdist: 0, titledist: -6244 };
var rule132 = { category: 4096, unicodeCat: NUMCAT_LL, possible: 1, updist: -6242, lowdist: 0, titledist: -6242 };
var rule133 = { category: 4096, unicodeCat: NUMCAT_LL, possible: 1, updist: -6243, lowdist: 0, titledist: -6243 };
var rule134 = { category: 4096, unicodeCat: NUMCAT_LL, possible: 1, updist: -6236, lowdist: 0, titledist: -6236 };
var rule135 = { category: 4096, unicodeCat: NUMCAT_LL, possible: 1, updist: -6181, lowdist: 0, titledist: -6181 };
var rule136 = { category: 4096, unicodeCat: NUMCAT_LL, possible: 1, updist: 35266, lowdist: 0, titledist: 35266 };
var rule138 = { category: 4096, unicodeCat: NUMCAT_LL, possible: 1, updist: 35332, lowdist: 0, titledist: 35332 };
var rule139 = { category: 4096, unicodeCat: NUMCAT_LL, possible: 1, updist: 3814, lowdist: 0, titledist: 3814 };
var rule140 = { category: 4096, unicodeCat: NUMCAT_LL, possible: 1, updist: 35384, lowdist: 0, titledist: 35384 };
var rule141 = { category: 4096, unicodeCat: NUMCAT_LL, possible: 1, updist: -59, lowdist: 0, titledist: -59 };
var rule143 = { category: 4096, unicodeCat: NUMCAT_LL, possible: 1, updist: 8, lowdist: 0, titledist: 8 };
var rule145 = { category: 4096, unicodeCat: NUMCAT_LL, possible: 1, updist: 74, lowdist: 0, titledist: 74 };
var rule146 = { category: 4096, unicodeCat: NUMCAT_LL, possible: 1, updist: 86, lowdist: 0, titledist: 86 };
var rule147 = { category: 4096, unicodeCat: NUMCAT_LL, possible: 1, updist: 100, lowdist: 0, titledist: 100 };
var rule148 = { category: 4096, unicodeCat: NUMCAT_LL, possible: 1, updist: 128, lowdist: 0, titledist: 128 };
var rule149 = { category: 4096, unicodeCat: NUMCAT_LL, possible: 1, updist: 112, lowdist: 0, titledist: 112 };
var rule150 = { category: 4096, unicodeCat: NUMCAT_LL, possible: 1, updist: 126, lowdist: 0, titledist: 126 };
var rule152 = { category: 4096, unicodeCat: NUMCAT_LL, possible: 1, updist: 9, lowdist: 0, titledist: 9 };
var rule155 = { category: 4096, unicodeCat: NUMCAT_LL, possible: 1, updist: -7205, lowdist: 0, titledist: -7205 };
var rule167 = { category: 4096, unicodeCat: NUMCAT_LL, possible: 1, updist: -28, lowdist: 0, titledist: -28 };
var rule175 = { category: 4096, unicodeCat: NUMCAT_LL, possible: 1, updist: -10795, lowdist: 0, titledist: -10795 };
var rule176 = { category: 4096, unicodeCat: NUMCAT_LL, possible: 1, updist: -10792, lowdist: 0, titledist: -10792 };
var rule18 = { category: 4096, unicodeCat: NUMCAT_LL, possible: 1, updist: 743, lowdist: 0, titledist: 743 };
var rule182 = { category: 4096, unicodeCat: NUMCAT_LL, possible: 1, updist: -7264, lowdist: 0, titledist: -7264 };
var rule185 = { category: 4096, unicodeCat: NUMCAT_LL, possible: 1, updist: 48, lowdist: 0, titledist: 48 };
var rule197 = { category: 4096, unicodeCat: NUMCAT_LL, possible: 1, updist: -928, lowdist: 0, titledist: -928 };
var rule198 = { category: 4096, unicodeCat: NUMCAT_LL, possible: 1, updist: -38864, lowdist: 0, titledist: -38864 };
var rule20 = { category: 4096, unicodeCat: NUMCAT_LL, possible: 0, updist: 0, lowdist: 0, titledist: 0 };
var rule202 = { category: 4096, unicodeCat: NUMCAT_LL, possible: 1, updist: -40, lowdist: 0, titledist: -40 };
var rule204 = { category: 4096, unicodeCat: NUMCAT_LL, possible: 1, updist: -34, lowdist: 0, titledist: -34 };
var rule21 = { category: 4096, unicodeCat: NUMCAT_LL, possible: 1, updist: 121, lowdist: 0, titledist: 121 };
var rule23 = { category: 4096, unicodeCat: NUMCAT_LL, possible: 1, updist: -1, lowdist: 0, titledist: -1 };
var rule25 = { category: 4096, unicodeCat: NUMCAT_LL, possible: 1, updist: -232, lowdist: 0, titledist: -232 };
var rule27 = { category: 4096, unicodeCat: NUMCAT_LL, possible: 1, updist: -300, lowdist: 0, titledist: -300 };
var rule28 = { category: 4096, unicodeCat: NUMCAT_LL, possible: 1, updist: 195, lowdist: 0, titledist: 195 };
var rule36 = { category: 4096, unicodeCat: NUMCAT_LL, possible: 1, updist: 97, lowdist: 0, titledist: 97 };
var rule39 = { category: 4096, unicodeCat: NUMCAT_LL, possible: 1, updist: 163, lowdist: 0, titledist: 163 };
var rule41 = { category: 4096, unicodeCat: NUMCAT_LL, possible: 1, updist: 130, lowdist: 0, titledist: 130 };
var rule46 = { category: 4096, unicodeCat: NUMCAT_LL, possible: 1, updist: 56, lowdist: 0, titledist: 56 };
var rule49 = { category: 4096, unicodeCat: NUMCAT_LL, possible: 1, updist: -2, lowdist: 0, titledist: -1 };
var rule50 = { category: 4096, unicodeCat: NUMCAT_LL, possible: 1, updist: -79, lowdist: 0, titledist: -79 };
var rule57 = { category: 4096, unicodeCat: NUMCAT_LL, possible: 1, updist: 10815, lowdist: 0, titledist: 10815 };
var rule61 = { category: 4096, unicodeCat: NUMCAT_LL, possible: 1, updist: 10783, lowdist: 0, titledist: 10783 };
var rule62 = { category: 4096, unicodeCat: NUMCAT_LL, possible: 1, updist: 10780, lowdist: 0, titledist: 10780 };
var rule63 = { category: 4096, unicodeCat: NUMCAT_LL, possible: 1, updist: 10782, lowdist: 0, titledist: 10782 };
var rule64 = { category: 4096, unicodeCat: NUMCAT_LL, possible: 1, updist: -210, lowdist: 0, titledist: -210 };
var rule65 = { category: 4096, unicodeCat: NUMCAT_LL, possible: 1, updist: -206, lowdist: 0, titledist: -206 };
var rule66 = { category: 4096, unicodeCat: NUMCAT_LL, possible: 1, updist: -205, lowdist: 0, titledist: -205 };
var rule67 = { category: 4096, unicodeCat: NUMCAT_LL, possible: 1, updist: -202, lowdist: 0, titledist: -202 };
var rule68 = { category: 4096, unicodeCat: NUMCAT_LL, possible: 1, updist: -203, lowdist: 0, titledist: -203 };
var rule69 = { category: 4096, unicodeCat: NUMCAT_LL, possible: 1, updist: 42319, lowdist: 0, titledist: 42319 };
var rule70 = { category: 4096, unicodeCat: NUMCAT_LL, possible: 1, updist: 42315, lowdist: 0, titledist: 42315 };
var rule71 = { category: 4096, unicodeCat: NUMCAT_LL, possible: 1, updist: -207, lowdist: 0, titledist: -207 };
var rule72 = { category: 4096, unicodeCat: NUMCAT_LL, possible: 1, updist: 42280, lowdist: 0, titledist: 42280 };
var rule73 = { category: 4096, unicodeCat: NUMCAT_LL, possible: 1, updist: 42308, lowdist: 0, titledist: 42308 };
var rule74 = { category: 4096, unicodeCat: NUMCAT_LL, possible: 1, updist: -209, lowdist: 0, titledist: -209 };
var rule75 = { category: 4096, unicodeCat: NUMCAT_LL, possible: 1, updist: -211, lowdist: 0, titledist: -211 };
var rule76 = { category: 4096, unicodeCat: NUMCAT_LL, possible: 1, updist: 10743, lowdist: 0, titledist: 10743 };
var rule77 = { category: 4096, unicodeCat: NUMCAT_LL, possible: 1, updist: 42305, lowdist: 0, titledist: 42305 };
var rule78 = { category: 4096, unicodeCat: NUMCAT_LL, possible: 1, updist: 10749, lowdist: 0, titledist: 10749 };
var rule79 = { category: 4096, unicodeCat: NUMCAT_LL, possible: 1, updist: -213, lowdist: 0, titledist: -213 };
var rule80 = { category: 4096, unicodeCat: NUMCAT_LL, possible: 1, updist: -214, lowdist: 0, titledist: -214 };
var rule81 = { category: 4096, unicodeCat: NUMCAT_LL, possible: 1, updist: 10727, lowdist: 0, titledist: 10727 };
var rule82 = { category: 4096, unicodeCat: NUMCAT_LL, possible: 1, updist: -218, lowdist: 0, titledist: -218 };
var rule83 = { category: 4096, unicodeCat: NUMCAT_LL, possible: 1, updist: 42307, lowdist: 0, titledist: 42307 };
var rule84 = { category: 4096, unicodeCat: NUMCAT_LL, possible: 1, updist: 42282, lowdist: 0, titledist: 42282 };
var rule85 = { category: 4096, unicodeCat: NUMCAT_LL, possible: 1, updist: -69, lowdist: 0, titledist: -69 };
var rule86 = { category: 4096, unicodeCat: NUMCAT_LL, possible: 1, updist: -217, lowdist: 0, titledist: -217 };
var rule87 = { category: 4096, unicodeCat: NUMCAT_LL, possible: 1, updist: -71, lowdist: 0, titledist: -71 };
var rule88 = { category: 4096, unicodeCat: NUMCAT_LL, possible: 1, updist: -219, lowdist: 0, titledist: -219 };
var rule89 = { category: 4096, unicodeCat: NUMCAT_LL, possible: 1, updist: 42261, lowdist: 0, titledist: 42261 };
var rule90 = { category: 4096, unicodeCat: NUMCAT_LL, possible: 1, updist: 42258, lowdist: 0, titledist: 42258 };
var rule99 = { category: 4096, unicodeCat: NUMCAT_LL, possible: 1, updist: -38, lowdist: 0, titledist: -38 };
var rule199 = { category: 134217728, unicodeCat: NUMCAT_CS, possible: 0, updist: 0, lowdist: 0, titledist: 0 };
var rule200 = { category: 268435456, unicodeCat: NUMCAT_CO, possible: 0, updist: 0, lowdist: 0, titledist: 0 };
var rule16 = { category: 65536, unicodeCat: NUMCAT_CF, possible: 0, updist: 0, lowdist: 0, titledist: 0 };
var rule0 = { category: 1, unicodeCat: NUMCAT_CC, possible: 0, updist: 0, lowdist: 0, titledist: 0 };
var bsearch = (a) => (array) => (size2) => (compare) => {
const go = (go$a0$copy) => (go$a1$copy) => {
let go$a0 = go$a0$copy, go$a1 = go$a1$copy, go$c = true, go$r;
while (go$c) {
const i = go$a0, k = go$a1;
if (i > k || i >= array.length) {
go$c = false;
go$r = Nothing;
continue;
}
const j = unsafeClamp(floor(toNumber(i + k | 0) / 2));
const b = array[j];
const v = compare(a)(b);
if (v === "EQ") {
go$c = false;
go$r = $Maybe("Just", b);
continue;
}
if (v === "GT") {
go$a0 = j + 1 | 0;
go$a1 = k;
continue;
}
go$a0 = i;
go$a1 = j - 1 | 0;
}
return go$r;
};
return go(0)(size2);
};
var blkCmp = (v) => (v1) => {
if (v.start >= v1.start && v.start < (v1.start + v1.length | 0)) {
return EQ;
}
if (v.start > v1.start) {
return GT;
}
return LT;
};
var getRule = (blocks) => (unichar) => (size2) => {
const maybeCharBlock = bsearch({ start: unichar, length: 1, convRule: nullrule })(blocks)(size2)(blkCmp);
if (maybeCharBlock.tag === "Nothing") {
return Nothing;
}
if (maybeCharBlock.tag === "Just") {
return $Maybe("Just", maybeCharBlock._1.convRule);
}
fail();
};
var allchars = [
{ start: 0, length: 32, convRule: rule0 },
{ start: 32, length: 1, convRule: rule1 },
{ start: 33, length: 3, convRule: rule2 },
{ start: 36, length: 1, convRule: rule3 },
{ start: 37, length: 3, convRule: rule2 },
{ start: 40, length: 1, convRule: rule4 },
{ start: 41, length: 1, convRule: rule5 },
{ start: 42, length: 1, convRule: rule2 },
{ start: 43, length: 1, convRule: rule6 },
{ start: 44, length: 1, convRule: rule2 },
{ start: 45, length: 1, convRule: rule7 },
{ start: 46, length: 2, convRule: rule2 },
{ start: 48, length: 10, convRule: rule8 },
{ start: 58, length: 2, convRule: rule2 },
{ start: 60, length: 3, convRule: rule6 },
{ start: 63, length: 2, convRule: rule2 },
{ start: 65, length: 26, convRule: rule9 },
{ start: 91, length: 1, convRule: rule4 },
{ start: 92, length: 1, convRule: rule2 },
{ start: 93, length: 1, convRule: rule5 },
{ start: 94, length: 1, convRule: rule10 },
{ start: 95, length: 1, convRule: rule11 },
{ start: 96, length: 1, convRule: rule10 },
{ start: 97, length: 26, convRule: rule12 },
{ start: 123, length: 1, convRule: rule4 },
{ start: 124, length: 1, convRule: rule6 },
{ start: 125, length: 1, convRule: rule5 },
{ start: 126, length: 1, convRule: rule6 },
{ start: 127, length: 33, convRule: rule0 },
{ start: 160, length: 1, convRule: rule1 },
{ start: 161, length: 1, convRule: rule2 },
{ start: 162, length: 4, convRule: rule3 },
{ start: 166, length: 1, convRule: rule13 },
{ start: 167, length: 1, convRule: rule2 },
{ start: 168, length: 1, convRule: rule10 },
{ start: 169, length: 1, convRule: rule13 },
{ start: 170, length: 1, convRule: rule14 },
{ start: 171, length: 1, convRule: rule15 },
{ start: 172, length: 1, convRule: rule6 },
{ start: 173, length: 1, convRule: rule16 },
{ start: 174, length: 1, convRule: rule13 },
{ start: 175, length: 1, convRule: rule10 },
{ start: 176, length: 1, convRule: rule13 },
{ start: 177, length: 1, convRule: rule6 },
{ start: 178, length: 2, convRule: rule17 },
{ start: 180, length: 1, convRule: rule10 },
{ start: 181, length: 1, convRule: rule18 },
{ start: 182, length: 2, convRule: rule2 },
{ start: 184, length: 1, convRule: rule10 },
{ start: 185, length: 1, convRule: rule17 },
{ start: 186, length: 1, convRule: rule14 },
{ start: 187, length: 1, convRule: rule19 },
{ start: 188, length: 3, convRule: rule17 },
{ start: 191, length: 1, convRule: rule2 },
{ start: 192, length: 23, convRule: rule9 },
{ start: 215, length: 1, convRule: rule6 },
{ start: 216, length: 7, convRule: rule9 },
{ start: 223, length: 1, convRule: rule20 },
{ start: 224, length: 23, convRule: rule12 },
{ start: 247, length: 1, convRule: rule6 },
{ start: 248, length: 7, convRule: rule12 },
{ start: 255, length: 1, convRule: rule21 },
{ start: 256, length: 1, convRule: rule22 },
{ start: 257, length: 1, convRule: rule23 },
{ start: 258, length: 1, convRule: rule22 },
{ start: 259, length: 1, convRule: rule23 },
{ start: 260, length: 1, convRule: rule22 },
{ start: 261, length: 1, convRule: rule23 },
{ start: 262, length: 1, convRule: rule22 },
{ start: 263, length: 1, convRule: rule23 },
{ start: 264, length: 1, convRule: rule22 },
{ start: 265, length: 1, convRule: rule23 },
{ start: 266, length: 1, convRule: rule22 },
{ start: 267, length: 1, convRule: rule23 },
{ start: 268, length: 1, convRule: rule22 },
{ start: 269, length: 1, convRule: rule23 },
{ start: 270, length: 1, convRule: rule22 },
{ start: 271, length: 1, convRule: rule23 },
{ start: 272, length: 1, convRule: rule22 },
{ start: 273, length: 1, convRule: rule23 },
{ start: 274, length: 1, convRule: rule22 },
{ start: 275, length: 1, convRule: rule23 },
{ start: 276, length: 1, convRule: rule22 },
{ start: 277, length: 1, convRule: rule23 },
{ start: 278, length: 1, convRule: rule22 },
{ start: 279, length: 1, convRule: rule23 },
{ start: 280, length: 1, convRule: rule22 },
{ start: 281, length: 1, convRule: rule23 },
{ start: 282, length: 1, convRule: rule22 },
{ start: 283, length: 1, convRule: rule23 },
{ start: 284, length: 1, convRule: rule22 },
{ start: 285, length: 1, convRule: rule23 },
{ start: 286, length: 1, convRule: rule22 },
{ start: 287, length: 1, convRule: rule23 },
{ start: 288, length: 1, convRule: rule22 },
{ start: 289, length: 1, convRule: rule23 },
{ start: 290, length: 1, convRule: rule22 },
{ start: 291, length: 1, convRule: rule23 },
{ start: 292, length: 1, convRule: rule22 },
{ start: 293, length: 1, convRule: rule23 },
{ start: 294, length: 1, convRule: rule22 },
{ start: 295, length: 1, convRule: rule23 },
{ start: 296, length: 1, convRule: rule22 },
{ start: 297, length: 1, convRule: rule23 },
{ start: 298, length: 1, convRule: rule22 },
{ start: 299, length: 1, convRule: rule23 },
{ start: 300, length: 1, convRule: rule22 },
{ start: 301, length: 1, convRule: rule23 },
{ start: 302, length: 1, convRule: rule22 },
{ start: 303, length: 1, convRule: rule23 },
{ start: 304, length: 1, convRule: rule24 },
{ start: 305, length: 1, convRule: rule25 },
{ start: 306, length: 1, convRule: rule22 },
{ start: 307, length: 1, convRule: rule23 },
{ start: 308, length: 1, convRule: rule22 },
{ start: 309, length: 1, convRule: rule23 },
{ start: 310, length: 1, convRule: rule22 },
{ start: 311, length: 1, convRule: rule23 },
{ start: 312, length: 1, convRule: rule20 },
{ start: 313, length: 1, convRule: rule22 },
{ start: 314, length: 1, convRule: rule23 },
{ start: 315, length: 1, convRule: rule22 },
{ start: 316, length: 1, convRule: rule23 },
{ start: 317, length: 1, convRule: rule22 },
{ start: 318, length: 1, convRule: rule23 },
{ start: 319, length: 1, convRule: rule22 },
{ start: 320, length: 1, convRule: rule23 },
{ start: 321, length: 1, convRule: rule22 },
{ start: 322, length: 1, convRule: rule23 },
{ start: 323, length: 1, convRule: rule22 },
{ start: 324, length: 1, convRule: rule23 },
{ start: 325, length: 1, convRule: rule22 },
{ start: 326, length: 1, convRule: rule23 },
{ start: 327, length: 1, convRule: rule22 },
{ start: 328, length: 1, convRule: rule23 },
{ start: 329, length: 1, convRule: rule20 },
{ start: 330, length: 1, convRule: rule22 },
{ start: 331, length: 1, convRule: rule23 },
{ start: 332, length: 1, convRule: rule22 },
{ start: 333, length: 1, convRule: rule23 },
{ start: 334, length: 1, convRule: rule22 },
{ start: 335, length: 1, convRule: rule23 },
{ start: 336, length: 1, convRule: rule22 },
{ start: 337, length: 1, convRule: rule23 },
{ start: 338, length: 1, convRule: rule22 },
{ start: 339, length: 1, convRule: rule23 },
{ start: 340, length: 1, convRule: rule22 },
{ start: 341, length: 1, convRule: rule23 },
{ start: 342, length: 1, convRule: rule22 },
{ start: 343, length: 1, convRule: rule23 },
{ start: 344, length: 1, convRule: rule22 },
{ start: 345, length: 1, convRule: rule23 },
{ start: 346, length: 1, convRule: rule22 },
{ start: 347, length: 1, convRule: rule23 },
{ start: 348, length: 1, convRule: rule22 },
{ start: 349, length: 1, convRule: rule23 },
{ start: 350, length: 1, convRule: rule22 },
{ start: 351, length: 1, convRule: rule23 },
{ start: 352, length: 1, convRule: rule22 },
{ start: 353, length: 1, convRule: rule23 },
{ start: 354, length: 1, convRule: rule22 },
{ start: 355, length: 1, convRule: rule23 },
{ start: 356, length: 1, convRule: rule22 },
{ start: 357, length: 1, convRule: rule23 },
{ start: 358, length: 1, convRule: rule22 },
{ start: 359, length: 1, convRule: rule23 },
{ start: 360, length: 1, convRule: rule22 },
{ start: 361, length: 1, convRule: rule23 },
{ start: 362, length: 1, convRule: rule22 },
{ start: 363, length: 1, convRule: rule23 },
{ start: 364, length: 1, convRule: rule22 },
{ start: 365, length: 1, convRule: rule23 },
{ start: 366, length: 1, convRule: rule22 },
{ start: 367, length: 1, convRule: rule23 },
{ start: 368, length: 1, convRule: rule22 },
{ start: 369, length: 1, convRule: rule23 },
{ start: 370, length: 1, convRule: rule22 },
{ start: 371, length: 1, convRule: rule23 },
{ start: 372, length: 1, convRule: rule22 },
{ start: 373, length: 1, convRule: rule23 },
{ start: 374, length: 1, convRule: rule22 },
{ start: 375, length: 1, convRule: rule23 },
{ start: 376, length: 1, convRule: rule26 },
{ start: 377, length: 1, convRule: rule22 },
{ start: 378, length: 1, convRule: rule23 },
{ start: 379, length: 1, convRule: rule22 },
{ start: 380, length: 1, convRule: rule23 },
{ start: 381, length: 1, convRule: rule22 },
{ start: 382, length: 1, convRule: rule23 },
{ start: 383, length: 1, convRule: rule27 },
{ start: 384, length: 1, convRule: rule28 },
{ start: 385, length: 1, convRule: rule29 },
{ start: 386, length: 1, convRule: rule22 },
{ start: 387, length: 1, convRule: rule23 },
{ start: 388, length: 1, convRule: rule22 },
{ start: 389, length: 1, convRule: rule23 },
{ start: 390, length: 1, convRule: rule30 },
{ start: 391, length: 1, convRule: rule22 },
{ start: 392, length: 1, convRule: rule23 },
{ start: 393, length: 2, convRule: rule31 },
{ start: 395, length: 1, convRule: rule22 },
{ start: 396, length: 1, convRule: rule23 },
{ start: 397, length: 1, convRule: rule20 },
{ start: 398, length: 1, convRule: rule32 },
{ start: 399, length: 1, convRule: rule33 },
{ start: 400, length: 1, convRule: rule34 },
{ start: 401, length: 1, convRule: rule22 },
{ start: 402, length: 1, convRule: rule23 },
{ start: 403, length: 1, convRule: rule31 },
{ start: 404, length: 1, convRule: rule35 },
{ start: 405, length: 1, convRule: rule36 },
{ start: 406, length: 1, convRule: rule37 },
{ start: 407, length: 1, convRule: rule38 },
{ start: 408, length: 1, convRule: rule22 },
{ start: 409, length: 1, convRule: rule23 },
{ start: 410, length: 1, convRule: rule39 },
{ start: 411, length: 1, convRule: rule20 },
{ start: 412, length: 1, convRule: rule37 },
{ start: 413, length: 1, convRule: rule40 },
{ start: 414, length: 1, convRule: rule41 },
{ start: 415, length: 1, convRule: rule42 },
{ start: 416, length: 1, convRule: rule22 },
{ start: 417, length: 1, convRule: rule23 },
{ start: 418, length: 1, convRule: rule22 },
{ start: 419, length: 1, convRule: rule23 },
{ start: 420, length: 1, convRule: rule22 },
{ start: 421, length: 1, convRule: rule23 },
{ start: 422, length: 1, convRule: rule43 },
{ start: 423, length: 1, convRule: rule22 },
{ start: 424, length: 1, convRule: rule23 },
{ start: 425, length: 1, convRule: rule43 },
{ start: 426, length: 2, convRule: rule20 },
{ start: 428, length: 1, convRule: rule22 },
{ start: 429, length: 1, convRule: rule23 },
{ start: 430, length: 1, convRule: rule43 },
{ start: 431, length: 1, convRule: rule22 },
{ start: 432, length: 1, convRule: rule23 },
{ start: 433, length: 2, convRule: rule44 },
{ start: 435, length: 1, convRule: rule22 },
{ start: 436, length: 1, convRule: rule23 },
{ start: 437, length: 1, convRule: rule22 },
{ start: 438, length: 1, convRule: rule23 },
{ start: 439, length: 1, convRule: rule45 },
{ start: 440, length: 1, convRule: rule22 },
{ start: 441, length: 1, convRule: rule23 },
{ start: 442, length: 1, convRule: rule20 },
{ start: 443, length: 1, convRule: rule14 },
{ start: 444, length: 1, convRule: rule22 },
{ start: 445, length: 1, convRule: rule23 },
{ start: 446, length: 1, convRule: rule20 },
{ start: 447, length: 1, convRule: rule46 },
{ start: 448, length: 4, convRule: rule14 },
{ start: 452, length: 1, convRule: rule47 },
{ start: 453, length: 1, convRule: rule48 },
{ start: 454, length: 1, convRule: rule49 },
{ start: 455, length: 1, convRule: rule47 },
{ start: 456, length: 1, convRule: rule48 },
{ start: 457, length: 1, convRule: rule49 },
{ start: 458, length: 1, convRule: rule47 },
{ start: 459, length: 1, convRule: rule48 },
{ start: 460, length: 1, convRule: rule49 },
{ start: 461, length: 1, convRule: rule22 },
{ start: 462, length: 1, convRule: rule23 },
{ start: 463, length: 1, convRule: rule22 },
{ start: 464, length: 1, convRule: rule23 },
{ start: 465, length: 1, convRule: rule22 },
{ start: 466, length: 1, convRule: rule23 },
{ start: 467, length: 1, convRule: rule22 },
{ start: 468, length: 1, convRule: rule23 },
{ start: 469, length: 1, convRule: rule22 },
{ start: 470, length: 1, convRule: rule23 },
{ start: 471, length: 1, convRule: rule22 },
{ start: 472, length: 1, convRule: rule23 },
{ start: 473, length: 1, convRule: rule22 },
{ start: 474, length: 1, convRule: rule23 },
{ start: 475, length: 1, convRule: rule22 },
{ start: 476, length: 1, convRule: rule23 },
{ start: 477, length: 1, convRule: rule50 },
{ start: 478, length: 1, convRule: rule22 },
{ start: 479, length: 1, convRule: rule23 },
{ start: 480, length: 1, convRule: rule22 },
{ start: 481, length: 1, convRule: rule23 },
{ start: 482, length: 1, convRule: rule22 },
{ start: 483, length: 1, convRule: rule23 },
{ start: 484, length: 1, convRule: rule22 },
{ start: 485, length: 1, convRule: rule23 },
{ start: 486, length: 1, convRule: rule22 },
{ start: 487, length: 1, convRule: rule23 },
{ start: 488, length: 1, convRule: rule22 },
{ start: 489, length: 1, convRule: rule23 },
{ start: 490, length: 1, convRule: rule22 },
{ start: 491, length: 1, convRule: rule23 },
{ start: 492, length: 1, convRule: rule22 },
{ start: 493, length: 1, convRule: rule23 },
{ start: 494, length: 1, convRule: rule22 },
{ start: 495, length: 1, convRule: rule23 },
{ start: 496, length: 1, convRule: rule20 },
{ start: 497, length: 1, convRule: rule47 },
{ start: 498, length: 1, convRule: rule48 },
{ start: 499, length: 1, convRule: rule49 },
{ start: 500, length: 1, convRule: rule22 },
{ start: 501, length: 1, convRule: rule23 },
{ start: 502, length: 1, convRule: rule51 },
{ start: 503, length: 1, convRule: rule52 },
{ start: 504, length: 1, convRule: rule22 },
{ start: 505, length: 1, convRule: rule23 },
{ start: 506, length: 1, convRule: rule22 },
{ start: 507, length: 1, convRule: rule23 },
{ start: 508, length: 1, convRule: rule22 },