summaryrefslogtreecommitdiff
path: root/vere/pkg/c3/motes.h
blob: 3ba8a700edc39dd07a18421e1d5038943c55255b (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
/// @file

#ifndef C3_MOTES_H
#define C3_MOTES_H

#include "defs.h"

  /** Definitions.
  **/

#   define c3__a      c3_s1('a')
#   define c3__a50    c3_s3('a','5','0')
#   define c3__abel   c3_s4('a','b','e','l')
#   define c3__abo    c3_s3('a','b','o')
#   define c3__actd   c3_s4('a','c','t','d')
#   define c3__add    c3_s3('a','d','d')
#   define c3__aka    c3_s3('a','k','a')
#   define c3__all    c3_s3('a','l','l')
#   define c3__alrm   c3_s4('a','l','r','m')
#   define c3__amat   c3_s4('a','m','a','t')
#   define c3__ames   c3_s4('a','m','e','s')
#   define c3__and    c3_s3('a','n','d')
#   define c3__ankh   c3_s4('a','n','k','h')
#   define c3__any    c3_s3('a','n','y')
#   define c3__ap     c3_s2('a','p')
#   define c3__apen   c3_s4('a','p','e','n')
#   define c3__aro    c3_s3('a','r','o')
#   define c3__arvo   c3_s4('a','r','v','o')
#   define c3__ash    c3_s3('a','s','h')
#   define c3__at     c3_s2('a','t')
#   define c3__atom   c3_s4('a','t','o','m')
#   define c3__auth   c3_s4('a','u','t','h')
#   define c3__auto   c3_s4('a','u','t','o')
#   define c3__avow   c3_s4('a','v','o','w')
#   define c3__awry   c3_s4('a','w','r','y')
#   define c3__ax     c3_s2('a','x')
#   define c3__axe    c3_s3('a','x','e')
#   define c3__axil   c3_s4('a','x','i','l')
#   define c3__axis   c3_s4('a','x','i','s')
#   define c3__b      c3_s1('b')
#   define c3__bac    c3_s3('b','a','c')
#   define c3__bach   c3_s4('b','a','c','h')
#   define c3__bag    c3_s3('b','a','g')
#   define c3__bail   c3_s4('b','a','i','l')
#   define c3__ball   c3_s4('b','a','l','l')
#   define c3__band   c3_s4('b','a','n','d')
#   define c3__bank   c3_s4('b','a','n','k')
#   define c3__bar    c3_s3('b','a','r')
#   define c3__bark   c3_s4('b','a','r','k')
#   define c3__barn   c3_s4('b','a','r','n')
#   define c3__base   c3_s4('b','a','s','e')
#   define c3__bask   c3_s4('b','a','s','k')
#   define c3__basp   c3_s4('b','a','s','p')
#   define c3__bbye   c3_s4('b','b','y','e')
#   define c3__bcbn   c3_s4('b','c','b','n')
#   define c3__bcbr   c3_s4('b','c','b','r')
#   define c3__bccb   c3_s4('b','c','c','b')
#   define c3__bccn   c3_s4('b','c','c','n')
#   define c3__bcdg   c3_s4('b','c','d','g')
#   define c3__bcdt   c3_s4('b','c','d','t')
#   define c3__bckt   c3_s4('b','c','k','t')
#   define c3__bclc   c3_s4('b','c','l','c')
#   define c3__bcmt   c3_s4('b','c','m','t')
#   define c3__bcpm   c3_s4('b','c','p','m')
#   define c3__bcpt   c3_s4('b','c','p','t')
#   define c3__bcsg   c3_s4('b','c','s','g')
#   define c3__bctr   c3_s4('b','c','t','r')
#   define c3__bcts   c3_s4('b','c','t','s')
#   define c3__bczp   c3_s4('b','c','z','p')
#   define c3__bead   c3_s4('b','e','a','d')
#   define c3__beam   c3_s4('b','e','a','m')
#   define c3__bean   c3_s4('b','e','a','n')
#   define c3__bear   c3_s4('b','e','a','r')
#   define c3__bede   c3_s4('b','e','d','e')
#   define c3__bee    c3_s3('b','e','e')
#   define c3__behn   c3_s4('b','e','h','n')
#   define c3__bel    c3_s3('b','e','l')
#   define c3__belt   c3_s4('b','e','l','t')
#   define c3__bend   c3_s4('b','e','n','d')
#   define c3__ber    c3_s3('b','e','r')
#   define c3__bias   c3_s4('b','i','a','s')
#   define c3__bic    c3_s3('b','i','c')
#   define c3__bind   c3_s4('b','i','n','d')
#   define c3__bink   c3_s4('b','i','n','k')
#   define c3__bird   c3_s4('b','i','r','d')
#   define c3__bit    c3_s3('b','i','t')
#   define c3__bl     c3_s2('b','l')
#   define c3__blan   c3_s4('b','l','a','n')
#   define c3__blap   c3_s4('b','l','a','p')
#   define c3__bleb   c3_s4('b','l','e','b')
#   define c3__blem   c3_s4('b','l','e','m')
#   define c3__blew   c3_s4('b','l','e','w')
#   define c3__blin   c3_s4('b','l','i','n')
#   define c3__blit   c3_s4('b','l','i','t')
#   define c3__blob   c3_s4('b','l','o','b')
#   define c3__blob   c3_s4('b','l','o','b')
#   define c3__blog   c3_s4('b','l','o','g')
#   define c3__bloq   c3_s4('b','l','o','q')
#   define c3__blot   c3_s4('b','l','o','t')
#   define c3__blow   c3_s4('b','l','o','w')
#   define c3__blue   c3_s4('b','l','u','e')
#   define c3__blur   c3_s4('b','l','u','r')
#   define c3__bndl   c3_s4('b','n','d','l')
#   define c3__bndp   c3_s4('b','n','d','p')
#   define c3__bnld   c3_s4('b','n','l','d')
#   define c3__bnnp   c3_s4('b','n','n','p')
#   define c3__bnpd   c3_s4('b','n','p','d')
#   define c3__bnps   c3_s4('b','n','p','s')
#   define c3__bnsp   c3_s4('b','n','s','p')
#   define c3__boat   c3_s4('b','o','a','t')
#   define c3__boce   c3_s4('b','o','c','e')
#   define c3__boil   c3_s4('b','o','i','l')
#   define c3__boin   c3_s4('b','o','i','n')
#   define c3__bolt   c3_s4('b','o','l','t')
#   define c3__bond   c3_s4('b','o','n','d')
#   define c3__bone   c3_s4('b','o','n','e')
#   define c3__bong   c3_s4('b','o','n','g')
#   define c3__book   c3_s4('b','o','o','k')
#   define c3__bool   c3_s4('b','o','o','l')
#   define c3__boot   c3_s4('b','o','o','t')
#   define c3__born   c3_s4('b','o','r','n')
#   define c3__both   c3_s4('b','o','t','h')
#   define c3__bout   c3_s4('b','o','u','t')
#   define c3__box    c3_s3('b','o','x')
#   define c3__br     c3_s2('b','r')
#   define c3__bran   c3_s4('b','r','a','n')
#   define c3__brax   c3_s4('b','r','a','x')
#   define c3__brbn   c3_s4('b','r','b','n')
#   define c3__brcb   c3_s4('b','r','c','b')
#   define c3__brcl   c3_s4('b','r','c','l')
#   define c3__brcn   c3_s4('b','r','c','n')
#   define c3__brcs   c3_s4('b','r','c','s')
#   define c3__brdg   c3_s4('b','r','d','g')
#   define c3__brdl   c3_s4('b','r','d','l')
#   define c3__brdp   c3_s4('b','r','d','p')
#   define c3__brdt   c3_s4('b','r','d','t')
#   define c3__brhp   c3_s4('b','r','h','p')
#   define c3__brip   c3_s4('b','r','i','p')
#   define c3__brkt   c3_s4('b','r','k','t')
#   define c3__brlc   c3_s4('b','r','l','c')
#   define c3__brld   c3_s4('b','r','l','d')
#   define c3__brls   c3_s4('b','r','l','s')
#   define c3__brms   c3_s4('b','r','m','s')
#   define c3__brmt   c3_s4('b','r','m','t')
#   define c3__brnp   c3_s4('b','r','n','p')
#   define c3__broc   c3_s4('b','r','o','c')
#   define c3__bron   c3_s4('b','r','o','n')
#   define c3__brop   c3_s4('b','r','o','p')
#   define c3__brov   c3_s4('b','r','o','v')
#   define c3__brpd   c3_s4('b','r','p','d')
#   define c3__brps   c3_s4('b','r','p','s')
#   define c3__brrt   c3_s4('b','r','r','t')
#   define c3__brsg   c3_s4('b','r','s','g')
#   define c3__brsp   c3_s4('b','r','s','p')
#   define c3__brtg   c3_s4('b','r','t','g')
#   define c3__brtr   c3_s4('b','r','t','r')
#   define c3__brts   c3_s4('b','r','t','s')
#   define c3__brvt   c3_s4('b','r','v','t')
#   define c3__brwt   c3_s4('b','r','w','t')
#   define c3__brzp   c3_s4('b','r','z','p')
#   define c3__bud    c3_s3('b','u','d')
#   define c3__bull   c3_s4('b','u','l','l')
#   define c3__bump   c3_s4('b','u','m','p')
#   define c3__bund   c3_s4('b','u','n','d')
#   define c3__bung   c3_s4('b','u','n','g')
#   define c3__bunk   c3_s4('b','u','n','k')
#   define c3__bunt   c3_s4('b','u','n','t')
#   define c3__bunx   c3_s4('b','u','n','x')
#   define c3__burn   c3_s4('b','u','r','n')
#   define c3__busk   c3_s4('b','u','s','k')
#   define c3__bust   c3_s4('b','u','s','t')
#   define c3__butt   c3_s4('b','u','t','t')
#   define c3__by     c3_s2('b','y')
#   define c3__byte   c3_s4('b','y','t','e')
#   define c3__c      c3_s1('c')
#   define c3__cage   c3_s4('c','a','g','e')
#   define c3__cain   c3_s4('c','a','i','n')
#   define c3__call   c3_s4('c','a','l','l')
#   define c3__can    c3_s3('c','a','n')
#   define c3__cap    c3_s3('c','a','p')
#   define c3__card   c3_s4('c','a','r','d')
#   define c3__carp   c3_s4('c','a','r','p')
#   define c3__cary   c3_s4('c','a','r','y')
#   define c3__case   c3_s4('c','a','s','e')
#   define c3__cash   c3_s4('c','a','s','h')
#   define c3__cast   c3_s4('c','a','s','t')
#   define c3__cat    c3_s3('c','a','t')
#   define c3__cato   c3_s4('c','a','t','o')
#   define c3__cay    c3_s3('c','a','y')
#   define c3__cbbn   c3_s4('c','b','b','n')
#   define c3__cbbr   c3_s4('c','b','b','r')
#   define c3__cbdg   c3_s4('c','b','d','g')
#   define c3__cbkt   c3_s4('c','b','k','t')
#   define c3__cblc   c3_s4('c','b','l','c')
#   define c3__cbmt   c3_s4('c','b','m','t')
#   define c3__cbpm   c3_s4('c','b','p','m')
#   define c3__cbtr   c3_s4('c','b','t','r')
#   define c3__cdr    c3_s3('c','d','r')
#   define c3__ce     c3_s2('c','e')
#   define c3__cell   c3_s4('c','e','l','l')
#   define c3__chaf   c3_s4('c','h','a','f')
#   define c3__chan   c3_s4('c','h','a','n')
#   define c3__chew   c3_s4('c','h','e','w')
#   define c3__chis   c3_s4('c','h','i','s')
#   define c3__chob   c3_s4('c','h','o','b')
#   define c3__chop   c3_s4('c','h','o','p')
#   define c3__chug   c3_s4('c','h','u','g')
#   define c3__claf   c3_s4('c','l','a','f')
#   define c3__clam   c3_s4('c','l','a','m')
#   define c3__clap   c3_s4('c','l','a','p')
#   define c3__clat   c3_s4('c','l','a','t')
#   define c3__clay   c3_s4('c','l','a','y')
#   define c3__clcb   c3_s4('c','l','c','b')
#   define c3__clcn   c3_s4('c','l','c','n')
#   define c3__clep   c3_s4('c','l','e','p')
#   define c3__clet   c3_s4('c','l','e','t')
#   define c3__clhp   c3_s4('c','l','h','p')
#   define c3__clip   c3_s4('c','l','i','p')
#   define c3__clkt   c3_s4('c','l','k','t')
#   define c3__clls   c3_s4('c','l','l','s')
#   define c3__clms   c3_s4('c','l','m','s')
#   define c3__clr    c3_s3('c','l','r')
#   define c3__clsg   c3_s4('c','l','s','g')
#   define c3__clsp   c3_s4('c','l','s','p')
#   define c3__cltr   c3_s4('c','l','t','r')
#   define c3__cnbc   c3_s4('c','n','b','c')
#   define c3__cnbr   c3_s4('c','n','b','r')
#   define c3__cncb   c3_s4('c','n','c','b')
#   define c3__cncl   c3_s4('c','n','c','l')
#   define c3__cndt   c3_s4('c','n','d','t')
#   define c3__cnhp   c3_s4('c','n','h','p')
#   define c3__cnhs   c3_s4('c','n','h','s')
#   define c3__cnhx   c3_s4('c','n','h','x')
#   define c3__cnkt   c3_s4('c','n','k','t')
#   define c3__cnls   c3_s4('c','n','l','s')
#   define c3__cnms   c3_s4('c','n','m','s')
#   define c3__cnpm   c3_s4('c','n','p','m')
#   define c3__cnsg   c3_s4('c','n','s','g')
#   define c3__cntr   c3_s4('c','n','t','r')
#   define c3__cnts   c3_s4('c','n','t','s')
#   define c3__cnzy   c3_s4('c','n','z','y')
#   define c3__cnzz   c3_s4('c','n','z','z')
#   define c3__coat   c3_s4('c','o','a','t')
#   define c3__code   c3_s4('c','o','d','e')
#   define c3__coin   c3_s4('c','o','i','n')
#   define c3__colb   c3_s4('c','o','l','b')
#   define c3__cold   c3_s4('c','o','l','d')
#   define c3__comb   c3_s4('c','o','m','b')
#   define c3__come   c3_s4('c','o','m','e')
#   define c3__con    c3_s3('c','o','n')
#   define c3__cone   c3_s4('c','o','n','e')
#   define c3__cong   c3_s4('c','o','n','g')
#   define c3__conn   c3_s4('c','o','n','n')
#   define c3__cons   c3_s4('c','o','n','s')
#   define c3__cook   c3_s4('c','o','o','k')
#   define c3__cool   c3_s4('c','o','o','l')
#   define c3__core   c3_s4('c','o','r','e')
#   define c3__corm   c3_s4('c','o','r','m')
#   define c3__corp   c3_s4('c','o','r','p')
#   define c3__corp   c3_s4('c','o','r','p')
#   define c3__cow    c3_s3('c','o','w')
#   define c3__cplx   c3_s3('c','p','l','x')
#   define c3__cpu    c3_s3('c','p','u')
#   define c3__crad   c3_s4('c','r','a','d')
#   define c3__cram   c3_s4('c','r','a','m')
#   define c3__crap   c3_s4('c','r','a','p')
#   define c3__cret   c3_s4('c','r','e','t')
#   define c3__crib   c3_s4('c','r','i','b')
#   define c3__crof   c3_s4('c','r','o','f')
#   define c3__crop   c3_s4('c','r','o','p')
#   define c3__crot   c3_s4('c','r','o','t')
#   define c3__crud   c3_s4('c','r','u','d')
#   define c3__csbn   c3_s4('c','s','b','n')
#   define c3__csbr   c3_s4('c','s','b','r')
#   define c3__csdg   c3_s4('c','s','d','g')
#   define c3__csdl   c3_s4('c','s','d','l')
#   define c3__csdp   c3_s4('c','s','d','p')
#   define c3__csdt   c3_s4('c','s','d','t')
#   define c3__csin   c3_s4('c','s','i','n')
#   define c3__csip   c3_s4('c','s','i','p')
#   define c3__cslc   c3_s4('c','s','l','c')
#   define c3__csld   c3_s4('c','s','l','d')
#   define c3__csnp   c3_s4('c','s','n','p')
#   define c3__cspm   c3_s4('c','s','p','m')
#   define c3__csps   c3_s4('c','s','p','s')
#   define c3__csrt   c3_s4('c','s','r','t')
#   define c3__cssg   c3_s4('c','s','s','g')
#   define c3__cssp   c3_s4('c','s','s','p')
#   define c3__cstg   c3_s4('c','s','t','g')
#   define c3__cstr   c3_s4('c','s','t','r')
#   define c3__cszp   c3_s4('c','s','z','p')
#   define c3__ctl    c3_s3('c','t','l')
#   define c3__cttp   c3_s4('c','t','t','p')
#   define c3__cube   c3_s4('c','u','b','e')
#   define c3__cull   c3_s4('c','u','l','l')
#   define c3__curd   c3_s4('c','u','r','d')
#   define c3__cut    c3_s3('c','u','t')
#   define c3__cyl    c3_s3('c','y','l')
#   define c3__czar   c3_s4('c','z','a','r')
#   define c3__d      c3_s1('d')
#   define c3__da     c3_s2('d','a')
#   define c3__dago   c3_s4('d','a','g','o')
#   define c3__dant   c3_s4('d','a','n','t')
#   define c3__dast   c3_s4('d','a','s','t')
#   define c3__data   c3_s4('d','a','t','a')
#   define c3__dawn   c3_s4('d','a','w','n')
#   define c3__dbug   c3_s4('d','b','u','g')
#   define c3__dec    c3_s3('d','e','c')
#   define c3__deem   c3_s4('d','e','e','m')
#   define c3__deep   c3_s4('d','e','e','p')
#   define c3__defn   c3_s4('d','e','f','n')
#   define c3__del    c3_s3('d','e','l')
#   define c3__dear   c3_s4('d','e','a','r')
#   define c3__delc   c3_s4('d','e','l','c')
#   define c3__delt   c3_s4('d','e','l','t')
#   define c3__dept   c3_s4('d','e','p','t')
#   define c3__dext   c3_s4('d','e','x','t')
#   define c3__dgdp   c3_s4('d','g','d','p')
#   define c3__dgkt   c3_s4('d','g','k','t')
#   define c3__dgnp   c3_s4('d','g','n','p')
#   define c3__dgpd   c3_s4('d','g','p','d')
#   define c3__dgps   c3_s4('d','g','p','s')
#   define c3__dgrt   c3_s4('d','g','r','t')
#   define c3__dgsg   c3_s4('d','g','s','g')
#   define c3__dgsp   c3_s4('d','g','s','p')
#   define c3__dgtg   c3_s4('d','g','t','g')
#   define c3__dgtr   c3_s4('d','g','t','r')
#   define c3__dice   c3_s4('d','i','c','e')
#   define c3__die    c3_s3('d','i','e')
#   define c3__dill   c3_s4('d','i','l','l')
#   define c3__dire   c3_s4('d','i','r','e')
#   define c3__dirk   c3_s4('d','i','r','k')
#   define c3__dis    c3_s3('d','i','s')
#   define c3__dish   c3_s4('d','i','s','h')
#   define c3__disk   c3_s4('d','i','s','k')
#   define c3__div    c3_s3('d','i','v')
#   define c3__dmal   c3_s4('d','m','a','l')
#   define c3__do     c3_s2('d','o')
#   define c3__doc    c3_s3('d','o','c')
#   define c3__dock   c3_s4('d','o','c','k')
#   define c3__docs   c3_s4('d','o','c','s')
#   define c3__dogo   c3_s4('d','o','g','o')
#   define c3__dojo   c3_s4('d','o','j','o')
#   define c3__dome   c3_s4('d','o','m','e')
#   define c3__done   c3_s4('d','o','n','e')
#   define c3__doom   c3_s4('d','o','o','m')
#   define c3__door   c3_s4('d','o','o','r')
#   define c3__dorn   c3_s4('d','o','r','n')
#   define c3__dost   c3_s4('d','o','s','t')
#   define c3__dot    c3_s3('d','o','t')
#   define c3__doze   c3_s4('d','o','z','e')
#   define c3__drag   c3_s4('d','r','a','g')
#   define c3__draz   c3_s4('d','r','a','z')
#   define c3__drib   c3_s4('d','r','i','b')
#   define c3__drol   c3_s4('d','r','o','l')
#   define c3__dron   c3_s4('d','r','o','n')
#   define c3__drop   c3_s4('d','r','o','p')
#   define c3__drun   c3_s4('d','r','u','n')
#   define c3__dry    c3_s3('d','r','y')
#   define c3__dtbn   c3_s4('d','t','b','n')
#   define c3__dtcs   c3_s4('d','t','c','s')
#   define c3__dtdt   c3_s4('d','t','d','t')
#   define c3__dthx   c3_s4('d','t','h','x')
#   define c3__dtkt   c3_s4('d','t','k','t')
#   define c3__dtlc   c3_s4('d','t','l','c')
#   define c3__dtls   c3_s4('d','t','l','s')
#   define c3__dtpd   c3_s4('d','t','p','d')
#   define c3__dtps   c3_s4('d','t','p','s')
#   define c3__dtpt   c3_s4('d','t','p','t')
#   define c3__dtrt   c3_s4('d','t','r','t')
#   define c3__dtsg   c3_s4('d','t','s','g')
#   define c3__dttg   c3_s4('d','t','t','g')
#   define c3__dttr   c3_s4('d','t','t','r')
#   define c3__dtts   c3_s4('d','t','t','s')
#   define c3__dtwt   c3_s4('d','t','w','t')
#   define c3__dtzy   c3_s4('d','t','z','y')
#   define c3__dtzz   c3_s4('d','t','z','z')
#   define c3__dub    c3_s3('d','u','b')
#   define c3__duct   c3_s4('d','u','c','t')
#   define c3__duke   c3_s4('d','u','k','e')
#   define c3__dumb   c3_s4('d','u','m','b')
#   define c3__dump   c3_s4('d','u','m','p')
#   define c3__dust   c3_s4('d','u','s','t')
#   define c3__dxkt   c3_s4('d','x','k','t')
#   define c3__e      c3_s1('e')
#   define c3__earl   c3_s4('e','a','r','l')
#   define c3__east   c3_s4('e','a','s','t')
#   define c3__echo   c3_s4('e','c','h','o')
#   define c3__edge   c3_s4('e','d','g','e')
#   define c3__edit   c3_s4('e','d','i','t')
#   define c3__elm    c3_s3('e','l','m')
#   define c3__else   c3_s4('e','l','s','e')
#   define c3__emph   c3_s4('e','m','p','h')
#   define c3__end    c3_s3('e','n','d')
#   define c3__eq     c3_s2('e','q')
#   define c3__ergo   c3_s4('e','r','g','o')
#   define c3__esh    c3_s3('e','s','h')
#   define c3__etch   c3_s4('e','t','c','h')
#   define c3__eval   c3_s4('e','v','a','l')
#   define c3__evil   c3_s4('e','v','i','l')
#   define c3__ex     c3_s2('e','x')
#   define c3__exit   c3_s4('e','x','i','t')
#   define c3__eyre   c3_s4('e','y','r','e')
#   define c3__f      c3_s1('f')
#   define c3__f32    c3_s3('f','3','2')
#   define c3__f64    c3_s3('f','6','4')
#   define c3__fx     c3_s2('f','x')
#   define c3__fab    c3_s3('f','a','b')
#   define c3__face   c3_s4('f','a','c','e')
#   define c3__fail   c3_s4('f','a','i','l')
#   define c3__fair   c3_s4('f','a','i','r')
#   define c3__fake   c3_s4('f','a','k','e')
#   define c3__fan    c3_s3('f','a','n')
#   define c3__farg   c3_s4('f','a','r','g')
#   define c3__fast   c3_s4('f','a','s','t')
#   define c3__fdec   c3_s4('f','d','e','c')
#   define c3__felk   c3_s4('f','e','l','k')
#   define c3__feng   c3_s4('f','e','n','g')
#   define c3__fent   c3_s4('f','e','n','t')
#   define c3__ferd   c3_s4('f','e','r','d')
#   define c3__fhex   c3_s4('f','h','e','x')
#   define c3__file   c3_s4('f','i','l','e')
#   define c3__film   c3_s4('f','i','l','m')
#   define c3__find   c3_s4('f','i','n','d')
#   define c3__fine   c3_s4('f','i','n','e')
#   define c3__fing   c3_s4('f','i','n','g')
#   define c3__fink   c3_s4('f','i','n','k')
#   define c3__fino   c3_s4('f','i','n','o')
#   define c3__fir    c3_s3('f','i','r')
#   define c3__fire   c3_s4('f','i','r','e')
#   define c3__firm   c3_s4('f','i','r','m')
#   define c3__fish   c3_s4('f','i','s','h')
#   define c3__fist   c3_s4('f','i','s','t')
#   define c3__fit    c3_s3('f','i','t')
#   define c3__fits   c3_s4('f','i','t','s')
#   define c3__fix    c3_s3('f','i','x')
#   define c3__fixp   c3_s3('f','i','x','p')
#   define c3__fl     c3_s2('f','l')
#   define c3__flac   c3_s4('f','l','a','c')
#   define c3__flag   c3_s4('f','l','a','g')
#   define c3__flat   c3_s4('f','l','a','t')
#   define c3__flec   c3_s4('f','l','e','c')
#   define c3__flet   c3_s4('f','l','e','t')
#   define c3__flic   c3_s4('f','l','i','c')
#   define c3__flip   c3_s4('f','l','i','p')
#   define c3__flit   c3_s4('f','l','i','t')
#   define c3__flog   c3_s4('f','l','o','g')
#   define c3__flot   c3_s4('f','l','o','t')
#   define c3__flow   c3_s4('f','l','o','w')
#   define c3__fon    c3_s3('f','o','n')
#   define c3__fond   c3_s4('f','o','n','d')
#   define c3__for    c3_s3('f','o','r')
#   define c3__forb   c3_s4('f','o','r','b')
#   define c3__fore   c3_s4('f','o','r','e')
#   define c3__fork   c3_s4('f','o','r','k')
#   define c3__form   c3_s4('f','o','r','m')
#   define c3__forq   c3_s4('f','o','r','q')
#   define c3__foul   c3_s4('f','o','u','l')
#   define c3__frag   c3_s4('f','r','a','g')
#   define c3__free   c3_s4('f','r','e','e')
#   define c3__frez   c3_s4('f','r','e','z')
#   define c3__frit   c3_s4('f','r','i','t')
#   define c3__frog   c3_s4('f','r','o','g')
#   define c3__from   c3_s4('f','r','o','m')
#   define c3__fron   c3_s4('f','r','o','n')
#   define c3__fry    c3_s3('f','r','y')
#   define c3__fuge   c3_s4('f','u','g','e')
#   define c3__full   c3_s4('f','u','l','l')
#   define c3__fume   c3_s4('f','u','m','e')
#   define c3__fun    c3_s3('f','u','n')
#   define c3__fund   c3_s4('f','u','n','d')
#   define c3__fung   c3_s4('f','u','n','g')
#   define c3__funk   c3_s4('f','u','n','k')
#   define c3__fuse   c3_s4('f','u','s','e')
#   define c3__fuss   c3_s4('f','u','s','s')
#   define c3__fyrd   c3_s4('f','y','r','d')
#   define c3__gab    c3_s3('g','a','b')
#   define c3__galb   c3_s4('g','a','l','b')
#   define c3__gald   c3_s4('g','a','l','d')
#   define c3__galk   c3_s4('g','a','l','k')
#   define c3__game   c3_s4('g','a','m','e')
#   define c3__gamp   c3_s4('g','a','m','p')
#   define c3__gant   c3_s4('g','a','n','t')
#   define c3__garc   c3_s4('g','a','r','c')
#   define c3__gate   c3_s4('g','a','t','e')
#   define c3__gath   c3_s4('g','a','t','h')
#   define c3__ge     c3_s2('g','e')
#   define c3__gear   c3_s4('g','e','a','r')
#   define c3__gen    c3_s3('g','e','n')
#   define c3__gene   c3_s4('g','e','n','e')
#   define c3__germ   c3_s4('g','e','r','m')
#   define c3__gent   c3_s4('g','e','n','t')
#   define c3__get    c3_s3('g','e','t')
#   define c3__give   c3_s4('g','i','v','e')
#   define c3__glax   c3_s4('g','l','a','x')
#   define c3__glaz   c3_s4('g','l','a','z')
#   define c3__gleb   c3_s4('g','l','e','b')
#   define c3__glem   c3_s4('g','l','e','m')
#   define c3__glid   c3_s4('g','l','i','d')
#   define c3__glon   c3_s4('g','l','o','n')
#   define c3__glop   c3_s4('g','l','o','p')
#   define c3__gluc   c3_s4('g','l','u','c')
#   define c3__glue   c3_s4('g','l','u','e')
#   define c3__gnom   c3_s4('g','n','o','m')
#   define c3__gnum   c3_s4('g','n','u','m')
#   define c3__go     c3_s2('g','o')
#   define c3__goat   c3_s4('g','o','a','t')
#   define c3__gold   c3_s4('g','o','l','d')
#   define c3__good   c3_s4('g','o','o','d')
#   define c3__gorm   c3_s4('g','o','r','m')
#   define c3__goto   c3_s4('g','o','t','o')
#   define c3__grab   c3_s4('g','r','a','b')
#   define c3__grad   c3_s4('g','r','a','d')
#   define c3__gram   c3_s4('g','r','a','m')
#   define c3__gran   c3_s4('g','r','a','n')
#   define c3__grat   c3_s4('g','r','a','t')
#   define c3__gray   c3_s4('g','r','a','y')
#   define c3__grel   c3_s4('g','r','e','l')
#   define c3__gret   c3_s4('g','r','e','t')
#   define c3__grik   c3_s4('g','r','i','k')
#   define c3__gril   c3_s4('g','r','i','l')
#   define c3__grip   c3_s4('g','r','i','p')
#   define c3__grit   c3_s4('g','r','i','t')
#   define c3__griv   c3_s4('g','r','i','v')
#   define c3__grix   c3_s4('g','r','i','x')
#   define c3__grop   c3_s4('g','r','o','p')
#   define c3__grun   c3_s4('g','r','u','n')
#   define c3__gt     c3_s2('g','t')
#   define c3__gulf   c3_s4('g','u','l','f')
#   define c3__gull   c3_s4('g','u','l','l')
#   define c3__gult   c3_s4('g','u','l','t')
#   define c3__gund   c3_s4('g','u','n','d')
#   define c3__gunn   c3_s4('g','u','n','n')
#   define c3__hack   c3_s4('h','a','c','k')
#   define c3__hail   c3_s4('h','a','i','l')
#   define c3__hair   c3_s4('h','a','i','r')
#   define c3__hake   c3_s4('h','a','k','e')
#   define c3__halc   c3_s4('h','a','l','c')
#   define c3__hand   c3_s4('h','a','n','d')
#   define c3__hang   c3_s4('h','a','n','g')
#   define c3__hard   c3_s4('h','a','r','d')
#   define c3__harm   c3_s4('h','a','r','m')
#   define c3__harp   c3_s4('h','a','r','p')
#   define c3__have   c3_s4('h','a','v','e')
#   define c3__head   c3_s4('h','e','a','d')
#   define c3__heal   c3_s4('h','e','a','l')
#   define c3__hear   c3_s4('h','e','a','r')
#   define c3__heer   c3_s4('h','e','e','r')
#   define c3__hela   c3_s4('h','e','l','a')
#   define c3__helm   c3_s4('h','e','l','m')
#   define c3__helo   c3_s4('h','e','l','o')
#   define c3__help   c3_s4('h','e','l','p')
#   define c3__hep    c3_s3('h','e','p')
#   define c3__hept   c3_s4('h','e','p','t')
#   define c3__herb   c3_s4('h','e','r','b')
#   define c3__hevy   c3_s4('h','e','v','y')
#   define c3__hez    c3_s3('h','e','z')
#   define c3__hide   c3_s4('h','i','d','e')
#   define c3__high   c3_s4('h','i','g','h')
#   define c3__hike   c3_s4('h','i','k','e')
#   define c3__hill   c3_s4('h','i','l','l')
#   define c3__hind   c3_s4('h','i','n','d')
#   define c3__hint   c3_s4('h','i','n','t')
#   define c3__hit    c3_s3('h','i','t')
#   define c3__hmac   c3_s4('h','m','a','c')
#   define c3__hmal   c3_s4('h','m','a','l')
#   define c3__hold   c3_s4('h','o','l','d')
#   define c3__hole   c3_s4('h','o','l','e')
#   define c3__holt   c3_s4('h','o','l','t')
#   define c3__home   c3_s4('h','o','m','e')
#   define c3__homp   c3_s4('h','o','m','p')
#   define c3__hook   c3_s4('h','o','o','k')
#   define c3__hoon   c3_s4('h','o','o','n')
#   define c3__hoot   c3_s4('h','o','o','t')
#   define c3__hop    c3_s3('h','o','p')
#   define c3__hosc   c3_s4('h','o','s','c')
#   define c3__hose   c3_s4('h','o','s','e')
#   define c3__hrul   c3_s4('h','r','u','l')
#   define c3__hsbn   c3_s4('h','s','b','n')
#   define c3__hsbr   c3_s4('h','s','b','r')
#   define c3__hscn   c3_s4('h','s','c','n')
#   define c3__hsdg   c3_s4('h','s','d','g')
#   define c3__hskt   c3_s4('h','s','k','t')
#   define c3__hslc   c3_s4('h','s','l','c')
#   define c3__hsmt   c3_s4('h','s','m','t')
#   define c3__hspm   c3_s4('h','s','p','m')
#   define c3__hssg   c3_s4('h','s','s','g')
#   define c3__hstr   c3_s4('h','s','t','r')
#   define c3__hsts   c3_s4('h','s','t','s')
#   define c3__htcn   c3_s4('h','t','c','n')
#   define c3__htls   c3_s4('h','t','l','s')
#   define c3__html   c3_s4('h','t','m','l')
#   define c3__htmt   c3_s4('h','t','m','t')
#   define c3__http   c3_s4('h','t','t','p')
#   define c3__hume   c3_s4('h','u','m','e')
#   define c3__hunk   c3_s4('h','u','n','k')
#   define c3__hxgl   c3_s4('h','x','g','l')
#   define c3__hxgr   c3_s4('h','x','g','r')
#   define c3__hxtr   c3_s4('h','x','t','r')
#   define c3__hxts   c3_s4('h','x','t','s')
#   define c3__i      c3_s1('i')
#   define c3__i32    c3_s3('i','3','2')
#   define c3__i64    c3_s3('i','6','4')
#   define c3__ic     c3_s2('i','c')
#   define c3__ice    c3_s3('i','c','e')
#   define c3__iced   c3_s4('i','c','e','d')
#   define c3__id     c3_s2('i','d')
#   define c3__idle   c3_s4('i','d','l','e')
#   define c3__if     c3_s2('i','f')
#   define c3__ifix   c3_s4('i','f','i','x')
#   define c3__in     c3_s2('i','n')
#   define c3__inc    c3_s3('i','n','c')
#   define c3__info   c3_s4('i','n','f','o')
#   define c3__init   c3_s4('i','n','i','t')
#   define c3__ins    c3_s3('i','n','s')
#   define c3__int2   c3_s4('i','n','t','2')
#   define c3__into   c3_s4('i','n','t','o')
#   define c3__intr   c3_s4('i','n','t','r')
#   define c3__inuk   c3_s4('i','n','u','k')
#   define c3__ipv4   c3_s4('i','p','v','4')
#   define c3__iron   c3_s4('i','r','o','n')
#   define c3__is     c3_s2('i','s')
#   define c3__item   c3_s4('i','t','e','m')
#   define c3__ix     c3_s2('i','x')
#   define c3__i754   c3_s4('i','7','5','4')
#   define c3__j      c3_s1('j')
#   define c3__jack   c3_s4('j','a','c','k')
#   define c3__jam    c3_s3('j','a','m')
#   define c3__jamx   c3_s4('j','a','m','x')
#   define c3__jamz   c3_s4('j','a','m','z')
#   define c3__jato   c3_s4('j','a','t','o')
#   define c3__jet    c3_s3('j','e','t')
#   define c3__jetd   c3_s4('j','e','t','d')
#   define c3__just   c3_s4('j','u','s','t')
#   define c3__k      c3_s1('k')
#   define c3__khan   c3_s4('k','h','a','n')
#   define c3__keep   c3_s4('k','e','e','p')
#   define c3__kern   c3_s4('k','e','r','n')
#   define c3__key    c3_s3('k','e','y')
#   define c3__kgo    c3_s3('k','g','o')
#   define c3__kick   c3_s4('k','i','c','k')
#   define c3__king   c3_s4('k','i','n','g')
#   define c3__kit    c3_s3('k','i','t')
#   define c3__klr    c3_s3('k','l','r')
#   define c3__knit   c3_s4('k','n','i','t')
#   define c3__kno    c3_s3('k','n','o')
#   define c3__ktbc   c3_s4('k','t','b','c')
#   define c3__ktbn   c3_s4('k','t','b','n')
#   define c3__ktbr   c3_s4('k','t','b','r')
#   define c3__ktcb   c3_s4('k','t','c','b')
#   define c3__ktcl   c3_s4('k','t','c','l')
#   define c3__ktcn   c3_s4('k','t','c','n')
#   define c3__ktcs   c3_s4('k','t','c','s')
#   define c3__ktdg   c3_s4('k','t','d','g')
#   define c3__ktdl   c3_s4('k','t','d','l')
#   define c3__ktdp   c3_s4('k','t','d','p')
#   define c3__ktdt   c3_s4('k','t','d','t')
#   define c3__ktgl   c3_s4('k','t','g','l')
#   define c3__ktgr   c3_s4('k','t','g','r')
#   define c3__kthp   c3_s4('k','t','h','p')
#   define c3__kthx   c3_s4('k','t','h','x')
#   define c3__ktlc   c3_s4('k','t','l','c')
#   define c3__ktld   c3_s4('k','t','l','d')
#   define c3__ktls   c3_s4('k','t','l','s')
#   define c3__ktms   c3_s4('k','t','m','s')
#   define c3__ktmt   c3_s4('k','t','m','t')
#   define c3__ktnp   c3_s4('k','t','n','p')
#   define c3__ktpd   c3_s4('k','t','p','d')
#   define c3__ktpm   c3_s4('k','t','p','m')
#   define c3__ktps   c3_s4('k','t','p','s')
#   define c3__ktpt   c3_s4('k','t','p','t')
#   define c3__ktrt   c3_s4('k','t','r','t')
#   define c3__ktsg   c3_s4('k','t','s','g')
#   define c3__ktsp   c3_s4('k','t','s','p')
#   define c3__kttg   c3_s4('k','t','t','g')
#   define c3__kttr   c3_s4('k','t','t','r')
#   define c3__ktts   c3_s4('k','t','t','s')
#   define c3__ktwt   c3_s4('k','t','w','t')
#   define c3__ktzp   c3_s4('k','t','z','p')
#   define c3__l      c3_s1('l')
#   define c3__lamb   c3_s4('l','a','m','b')
#   define c3__lame   c3_s4('l','a','m','e')
#   define c3__lang   c3_s4('l','a','n','g')
#   define c3__lask   c3_s4('l','a','s','k')
#   define c3__last   c3_s4('l','a','s','t')
#   define c3__lcdl   c3_s4('l','c','d','l')
#   define c3__lcdp   c3_s4('l','c','d','p')
#   define c3__lcld   c3_s4('l','c','l','d')
#   define c3__lcnp   c3_s4('l','c','n','p')
#   define c3__lcpd   c3_s4('l','c','p','d')
#   define c3__lcps   c3_s4('l','c','p','s')
#   define c3__lcsp   c3_s4('l','c','s','p')
#   define c3__le     c3_s2('l','e')
#   define c3__lead   c3_s4('l','e','a','d')
#   define c3__leaf   c3_s4('l','e','a','f')
#   define c3__leap   c3_s4('l','e','a','p')
#   define c3__lect   c3_s4('l','e','c','t')
#   define c3__lee    c3_s3('l','e','e')
#   define c3__leg    c3_s3('l','e','g')
#   define c3__lest   c3_s4('l','e','s','t')
#   define c3__lg     c3_s2('l','g')
#   define c3__lib    c3_s3('l','i','b')
#   define c3__libd   c3_s4('l','i','b','d')
#   define c3__lick   c3_s4('l','i','c','k')
#   define c3__life   c3_s4('l','i','f','e')
#   define c3__lift   c3_s4('l','i','f','t')
#   define c3__like   c3_s4('l','i','k','e')
#   define c3__limb   c3_s4('l','i','m','b')
#   define c3__lin    c3_s3('l','i','n')
#   define c3__line   c3_s4('l','i','n','e')
#   define c3__link   c3_s4('l','i','n','k')
#   define c3__lint   c3_s4('l','i','n','t')
#   define c3__liqd   c3_s4('l','i','q','d')
#   define c3__lisc   c3_s4('l','i','s','c')
#   define c3__list   c3_s4('l','i','s','t')
#   define c3__lite   c3_s4('l','i','t','e')
#   define c3__live   c3_s4('l','i','v','e')
#   define c3__load   c3_s4('l','o','a','d')
#   define c3__loaf   c3_s4('l','o','a','f')
#   define c3__log    c3_s3('l','o','g')
#   define c3__logo   c3_s4('l','o','g','o')
#   define c3__lome   c3_s4('l','o','m','e')
#   define c3__lond   c3_s4('l','o','n','d')
#   define c3__lonk   c3_s4('l','o','n','k')
#   define c3__look   c3_s4('l','o','o','k')
#   define c3__loom   c3_s4('l','o','o','m')
#   define c3__loop   c3_s4('l','o','o','p')
#   define c3__lorb   c3_s4('l','o','r','b')
#   define c3__lord   c3_s4('l','o','r','d')
#   define c3__lort   c3_s4('l','o','r','t')
#   define c3__lose   c3_s4('l','o','s','e')
#   define c3__loss   c3_s4('l','o','s','s')
#   define c3__lost   c3_s4('l','o','s','t')
#   define c3__low    c3_s3('l','o','w')
#   define c3__lsh    c3_s3('l','s','h')
#   define c3__lt     c3_s2('l','t')
#   define c3__lull   c3_s4('l','u','l','l')
#   define c3__lunt   c3_s4('l','u','n','t')
#   define c3__m      c3_s1('m')
#   define c3__mx     c3_s2('m','x')
#   define c3__mach   c3_s4('m','a','c','h')
#   define c3__mack   c3_s4('m','a','c','k')
#   define c3__made   c3_s4('m','a','d','e')
#   define c3__main   c3_s4('m','a','i','n')
#   define c3__make   c3_s4('m','a','k','e')
#   define c3__malg   c3_s4('m','a','l','g')
#   define c3__malk   c3_s4('m','a','l','k')
#   define c3__mang   c3_s4('m','a','n','g')
#   define c3__many   c3_s4('m','a','n','y')
#   define c3__map    c3_s3('m','a','p')
#   define c3__marg   c3_s4('m','a','r','g')
#   define c3__mark   c3_s4('m','a','r','k')
#   define c3__marn   c3_s4('m','a','r','n')
#   define c3__mash   c3_s4('m','a','s','h')
#   define c3__mass   c3_s4('m','a','s','s')
#   define c3__mast   c3_s4('m','a','s','t')
#   define c3__mate   c3_s4('m','a','t','e')
#   define c3__mave   c3_s4('m','a','v','e')
#   define c3__mean   c3_s4('m','e','a','n')
#   define c3__mega   c3_s4('m','e','g','a')
#   define c3__meh    c3_s3('m','e','h')
#   define c3__meld   c3_s4('m','e','l','d')
#   define c3__melt   c3_s4('m','e','l','t')
#   define c3__meme   c3_s4('m','e','m','e')
#   define c3__memo   c3_s4('m','e','m','o')
#   define c3__menu   c3_s4('m','e','n','u')
#   define c3__mesa   c3_s4('m','e','s','a')
#   define c3__mesh   c3_s4('m','e','s','h')
#   define c3__mess   c3_s4('m','e','s','s')
#   define c3__mess_ser   c3_s8('m','e','s','s','-', 's', 'e','r')
#   define c3__met    c3_s3('m','e','t')
#   define c3__meta   c3_s4('m','e','t','a')
#   define c3__mill   c3_s4('m','i','l','l')
#   define c3__mime   c3_s4('m','i','m','e')
#   define c3__mine   c3_s4('m','i','n','e')
#   define c3__mint   c3_s4('m','i','n','t')
#   define c3__mirt   c3_s4('m','i','r','t')
#   define c3__miss   c3_s4('m','i','s','s')
#   define c3__mix    c3_s3('m','i','x')
#   define c3__moat   c3_s4('m','o','a','t')
#   define c3__mod    c3_s3('m','o','d')
#   define c3__mold   c3_s4('m','o','l','d')
#   define c3__mong   c3_s4('m','o','n','g')
#   define c3__mono   c3_s4('m','o','n','o')
#   define c3__mook   c3_s4('m','o','o','k')
#   define c3__moot   c3_s4('m','o','o','t')
#   define c3__mor    c3_s3('m','o','r')
#   define c3__move   c3_s4('m','o','v','e')
#   define c3__moze   c3_s4('m','o','z','e')
#   define c3__mtbn   c3_s4('m','t','b','n')
#   define c3__mtbr   c3_s4('m','t','b','r')
#   define c3__mtdg   c3_s4('m','t','d','g')
#   define c3__mtdp   c3_s4('m','t','d','p')
#   define c3__mtdt   c3_s4('m','t','d','t')
#   define c3__mtkt   c3_s4('m','t','k','t')
#   define c3__mtlc   c3_s4('m','t','l','c')
#   define c3__mtnp   c3_s4('m','t','n','p')
#   define c3__mtpd   c3_s4('m','t','p','d')
#   define c3__mtps   c3_s4('m','t','p','s')
#   define c3__mtrt   c3_s4('m','t','r','t')
#   define c3__mtsg   c3_s4('m','t','s','g')
#   define c3__mtsp   c3_s4('m','t','s','p')
#   define c3__mttg   c3_s4('m','t','t','g')
#   define c3__mttr   c3_s4('m','t','t','r')
#   define c3__mul    c3_s3('m','u','l')
#   define c3__mull   c3_s4('m','u','l','l')
#   define c3__mung   c3_s4('m','u','n','g')
#   define c3__mut    c3_s3('m','u','t')
#   define c3__n      c3_s1('n')
#   define c3__na     c3_s2('n','a')
#   define c3__nail   c3_s4('n','a','i','l')
#   define c3__name   c3_s4('n','a','m','e')
#   define c3__nap    c3_s3('n','a','p')
#   define c3__nara   c3_s4('n','a','r','a')
#   define c3__narv   c3_s4('n','a','r','v')
#   define c3__ne     c3_s2('n','e')
#   define c3__need   c3_s4('n','e','e','d')
#   define c3__neft   c3_s4('n','e','f','t')
#   define c3__nel    c3_s3('n','e','l')
#   define c3__nest   c3_s4('n','e','s','t')
#   define c3__netd   c3_s4('n','e','t','d')
#   define c3__new    c3_s3('n','e','w')
#   define c3__news   c3_s4('n','e','w','s')
#   define c3__newt   c3_s4('n','e','w','t')
#   define c3__next   c3_s4('n','e','x','t')
#   define c3__nich   c3_s4('n','i','c','h')
#   define c3__nick   c3_s4('n','i','c','k')
#   define c3__nil    c3_s3('n','i','l')
#   define c3__nilk   c3_s4('n','i','l','k')
#   define c3__no     c3_s2('n','o')
#   define c3__noah   c3_s4('n','o','a','h')
#   define c3__nock   c3_s4('n','o','c','k')
#   define c3__noco   c3_s4('n','o','c','o')
#   define c3__nodo   c3_s4('n','o','d','o')
#   define c3__none   c3_s4('n','o','n','e')
#   define c3__noop   c3_s4('n','o','o','p')
#   define c3__nop    c3_s3('n','o','p')
#   define c3__norm   c3_s4('n','o','r','m')
#   define c3__nost   c3_s4('n','o','s','t')
#   define c3__not    c3_s3('n','o','t')
#   define c3__note   c3_s4('n','o','t','e')
#   define c3__noun   c3_s4('n','o','u','n')
#   define c3__nt     c3_s2('n','t')
#   define c3__nub    c3_s3('n','u','b')
#   define c3__null   c3_s4('n','u','l','l')
#   define c3__nz     c3_s2('n','z')
#   define c3__o      c3_s1('o')
#   define c3__oak    c3_s3('o','a','k')
#   define c3__of     c3_s2('o','f')
#   define c3__off    c3_s3('o','f','f')
#   define c3__ogre   c3_s4('o','g','r','e')
#   define c3__old    c3_s3('o','l','d')
#   define c3__omen   c3_s4('o','m','e','n')
#   define c3__omit   c3_s4('o','m','i','t')
#   define c3__on     c3_s2('o','n')
#   define c3__onan   c3_s4('o','n','a','n')
#   define c3__once   c3_s4('o','n','c','e')
#   define c3__one    c3_s3('o','n','e')
#   define c3__only   c3_s4('o','n','l','y')
#   define c3__oops   c3_s4('o','o','p','s')
#   define c3__op     c3_s2('o','p')
#   define c3__open   c3_s4('o','p','e','n')
#   define c3__opts   c3_s4('o','p','t','s')
#   define c3__or     c3_s2('o','r')
#   define c3__ord    c3_s3('o','r','d')
#   define c3__orth   c3_s4('o','r','t','h')
#   define c3__oust   c3_s4('o','u','s','t')
#   define c3__outd   c3_s4('o','u','t','d')
#   define c3__ov     c3_s2('o','v')
#   define c3__over   c3_s4('o','v','e','r')
#   define c3__ovum   c3_s4('o','v','u','m')
#   define c3__p      c3_s1('p')
#   define c3__pack   c3_s4('p','a','c','k')
#   define c3__pact   c3_s4('p','a','c','t')
#   define c3__page   c3_s4('p','a','g','e')
#   define c3__pair   c3_s4('p','a','i','r')
#   define c3__palm   c3_s4('p','a','l','m')
#   define c3__palq   c3_s4('p','a','l','q')
#   define c3__palt   c3_s4('p','a','l','t')
#   define c3__pan    c3_s3('p','a','n')
#   define c3__pane   c3_s4('p','a','n','e')
#   define c3__pang   c3_s4('p','a','n','g')
#   define c3__pank   c3_s4('p','a','n','k')
#   define c3__para   c3_s4('p','a','r','a')
#   define c3__park   c3_s4('p','a','r','k')
#   define c3__parq   c3_s4('p','a','r','q')
#   define c3__part   c3_s4('p','a','r','t')
#   define c3__pass   c3_s4('p','a','s','s')
#   define c3__past   c3_s4('p','a','s','t')
#   define c3__pawn   c3_s4('p','a','w','n')
#   define c3__peek   c3_s4('p','e','e','k')
#   define c3__peel   c3_s4('p','e','e','l')
#   define c3__peep   c3_s4('p','e','e','p')
#   define c3__peft   c3_s4('p','e','f','t')
#   define c3__peg    c3_s3('p','e','g')
#   define c3__peld   c3_s4('p','e','l','d')
#   define c3__pen    c3_s3('p','e','n')
#   define c3__per    c3_s3('p','e','r')
#   define c3__perd   c3_s4('p','e','r','d')
#   define c3__pesk   c3_s4('p','e','s','k')
#   define c3__pfix   c3_s4('p','f','i','x')
#   define c3__pick   c3_s4('p','i','c','k')
#   define c3__pier   c3_s4('p','i','e','r')
#   define c3__pike   c3_s4('p','i','k','e')
#   define c3__pile   c3_s4('p','i','l','e')
#   define c3__pill   c3_s4('p','i','l','l')
#   define c3__ping   c3_s4('p','i','n','g')
#   define c3__pink   c3_s4('p','i','n','k')
#   define c3__pip    c3_s3('p','i','p')
#   define c3__pipe   c3_s4('p','i','p','e')
#   define c3__pith   c3_s4('p','i','t','h')
#   define c3__pitt   c3_s4('p','i','t','t')
#   define c3__plac   c3_s4('p','l','a','c')
#   define c3__plam   c3_s4('p','l','a','m')
#   define c3__plat   c3_s4('p','l','a','t')
#   define c3__play   c3_s4('p','l','a','y')
#   define c3__plaz   c3_s4('p','l','a','z')
#   define c3__plem   c3_s4('p','l','e','m')
#   define c3__plet   c3_s4('p','l','e','t')
#   define c3__plic   c3_s4('p','l','i','c')
#   define c3__plin   c3_s4('p','l','i','n')
#   define c3__plom   c3_s4('p','l','o','m')
#   define c3__plov   c3_s4('p','l','o','v')
#   define c3__plug   c3_s4('p','l','u','g')
#   define c3__plus   c3_s4('p','l','u','s')
#   define c3__pmbn   c3_s4('p','m','b','n')
#   define c3__pmcl   c3_s4('p','m','c','l')
#   define c3__pmcn   c3_s4('p','m','c','n')
#   define c3__pmdg   c3_s4('p','m','d','g')
#   define c3__pmdp   c3_s4('p','m','d','p')
#   define c3__pmdt   c3_s4('p','m','d','t')
#   define c3__pmlc   c3_s4('p','m','l','c')
#   define c3__pmls   c3_s4('p','m','l','s')
#   define c3__pmms   c3_s4('p','m','m','s')
#   define c3__pmmt   c3_s4('p','m','m','t')
#   define c3__pmpd   c3_s4('p','m','p','d')
#   define c3__pmps   c3_s4('p','m','p','s')
#   define c3__pmsp   c3_s4('p','m','s','p')
#   define c3__pmtr   c3_s4('p','m','t','r')
#   define c3__pmts   c3_s4('p','m','t','s')
#   define c3__pmzp   c3_s4('p','m','z','p')
#   define c3__pnut   c3_s4('p','n','u','t')
#   define c3__pock   c3_s4('p','o','c','k')
#   define c3__poke   c3_s4('p','o','k','e')
#   define c3__poll   c3_s4('p','o','l','l')
#   define c3__poly   c3_s4('p','o','l','y')
#   define c3__pont   c3_s4('p','o','n','t')
#   define c3__poos   c3_s4('p','o','o','s')
#   define c3__pop    c3_s3('p','o','p')
#   define c3__port   c3_s4('p','o','r','t')
#   define c3__pos    c3_s3('p','o','s')
#   define c3__pose   c3_s4('p','o','s','e')
#   define c3__post   c3_s4('p','o','s','t')
#   define c3__pray   c3_s4('p','r','a','y')
#   define c3__prec   c3_s4('p','r','e','c')
#   define c3__prep   c3_s4('p','r','e','p')
#   define c3__pret   c3_s4('p','r','e','t')
#   define c3__prex   c3_s4('p','r','e','x')
#   define c3__pril   c3_s4('p','r','i','l')
#   define c3__pro    c3_s3('p','r','o')
#   define c3__prod   c3_s4('p','r','o','d')
#   define c3__prop   c3_s4('p','r','o','p')
#   define c3__prof   c3_s4('p','r','o','f')
#   define c3__prox   c3_s4('p','r','o','x')
#   define c3__psdg   c3_s4('p','s','d','g')
#   define c3__puck   c3_s4('p','u','c','k')
#   define c3__pull   c3_s4('p','u','l','l')
#   define c3__pult   c3_s4('p','u','l','t')
#   define c3__pung   c3_s4('p','u','n','g')
#   define c3__punk   c3_s4('p','u','n','k')
#   define c3__punt   c3_s4('p','u','n','t')
#   define c3__pure   c3_s4('p','u','r','e')
#   define c3__purr   c3_s4('p','u','r','r')
#   define c3__push   c3_s4('p','u','s','h')
#   define c3__put    c3_s3('p','u','t')
#   define c3__quac   c3_s4('q','u','a','c')
#   define c3__quic   c3_s4('q','u','i','c')
#   define c3__qual   c3_s4('q','u','a','l')
#   define c3__quat   c3_s4('q','u','a','t')
#   define c3__quax   c3_s4('q','u','a','x')
#   define c3__quem   c3_s4('q','u','e','m')
#   define c3__ques   c3_s4('q','u','e','s')
#   define c3__quet   c3_s4('q','u','e','t')
#   define c3__queu   c3_s4('q','u','e','u')
#   define c3__quid   c3_s4('q','u','i','d')
#   define c3__quil   c3_s4('q','u','i','l')
#   define c3__quix   c3_s4('q','u','i','x')
#   define c3__quiz   c3_s4('q','u','i','z')
#   define c3__quol   c3_s4('q','u','o','l')
#   define c3__quop   c3_s4('q','u','o','p')
#   define c3__rack   c3_s4('r','a','c','k')
#   define c3__rald   c3_s4('r','a','l','d')
#   define c3__ramp   c3_s4('r','a','m','p')
#   define c3__rand   c3_s4('r','a','n','d')
#   define c3__rasp   c3_s4('r','a','s','p')
#   define c3__raw    c3_s3('r','a','w')
#   define c3__read   c3_s4('r','e','a','d')
#   define c3__real   c3_s4('r','e','a','l')
#   define c3__reck   c3_s4('r','e','c','k')
#   define c3__redo   c3_s4('r','e','d','o')
#   define c3__reef   c3_s4('r','e','e','f')
#   define c3__resd   c3_s4('r','e','s','d')
#   define c3__rest   c3_s4('r','e','s','t')
#   define c3__ret    c3_s3('r','e','t')
#   define c3__revo   c3_s4('r','e','v','o')
#   define c3__rez    c3_s3('r','e','z')
#   define c3__rin    c3_s3('r','i','n')
#   define c3__ring   c3_s4('r','i','n','g')
#   define c3__ripe   c3_s4('r','i','p','e')
#   define c3__rite   c3_s4('r','i','t','e')
#   define c3__rock   c3_s4('r','o','c','k')
#   define c3__roll   c3_s4('r','o','l','l')
#   define c3__rolp   c3_s4('r','o','l','p')
#   define c3__rond   c3_s4('r','o','n','d')
#   define c3__root   c3_s4('r','o','o','t')
#   define c3__rose   c3_s4('r','o','s','e')
#   define c3__rsh    c3_s3('r','s','h')
#   define c3__rulf   c3_s4('r','u','l','f')
#   define c3__run    c3_s3('r','u','n')
#   define c3__s      c3_s1('s')
#   define c3__safe   c3_s4('s','a','f','e')
#   define c3__sag    c3_s3('s','a','g')
#   define c3__sail   c3_s4('s','a','i','l')
#   define c3__same   c3_s4('s','a','m','e')
#   define c3__sand   c3_s4('s','a','n','d')
#   define c3__sard   c3_s4('s','a','r','d')
#   define c3__sav    c3_s3('s','a','v')
#   define c3__save   c3_s4('s','a','v','e')
#   define c3__saxo   c3_s4('s','a','x','o')
#   define c3__scam   c3_s4('s','c','a','m')
#   define c3__scan   c3_s4('s','c','a','n')
#   define c3__scry   c3_s4('s','c','r','y')
#   define c3__scsg   c3_s4('s','c','s','g')
#   define c3__seal   c3_s4('s','e','a','l')
#   define c3__seat   c3_s4('s','e','a','t')
#   define c3__see    c3_s3('s','e','e')
#   define c3__seed   c3_s4('s','e','e','d')
#   define c3__seek   c3_s4('s','e','e','k')
#   define c3__seft   c3_s4('s','e','f','t')
#   define c3__sell   c3_s4('s','e','l','l')
#   define c3__semp   c3_s4('s','e','m','p')
#   define c3__send   c3_s4('s','e','n','d')
#   define c3__sent   c3_s4('s','e','n','t')
#   define c3__seq    c3_s3('s','e','q')
#   define c3__serd   c3_s4('s','e','r','d')
#   define c3__serf   c3_s4('s','e','r','f')
#   define c3__set    c3_s3('s','e','t')
#   define c3__sfix   c3_s4('s','f','i','x')
#   define c3__sgbc   c3_s4('s','g','b','c')
#   define c3__sgbn   c3_s4('s','g','b','n')
#   define c3__sgbr   c3_s4('s','g','b','r')
#   define c3__sgcb   c3_s4('s','g','c','b')
#   define c3__sgcl   c3_s4('s','g','c','l')
#   define c3__sgcn   c3_s4('s','g','c','n')
#   define c3__sgdg   c3_s4('s','g','d','g')
#   define c3__sgdl   c3_s4('s','g','d','l')
#   define c3__sgdp   c3_s4('s','g','d','p')
#   define c3__sgdt   c3_s4('s','g','d','t')
#   define c3__sgdx   c3_s4('s','g','d','x')
#   define c3__sgfs   c3_s4('s','g','f','s')
#   define c3__sggl   c3_s4('s','g','g','l')
#   define c3__sggr   c3_s4('s','g','g','r')
#   define c3__sghp   c3_s4('s','g','h','p')
#   define c3__sghs   c3_s4('s','g','h','s')
#   define c3__sghx   c3_s4('s','g','h','x')
#   define c3__sgkt   c3_s4('s','g','k','t')
#   define c3__sglc   c3_s4('s','g','l','c')
#   define c3__sgld   c3_s4('s','g','l','d')
#   define c3__sgls   c3_s4('s','g','l','s')
#   define c3__sgms   c3_s4('s','g','m','s')
#   define c3__sgmt   c3_s4('s','g','m','t')
#   define c3__sgpd   c3_s4('s','g','p','d')
#   define c3__sgpm   c3_s4('s','g','p','m')
#   define c3__sgps   c3_s4('s','g','p','s')
#   define c3__sgsg   c3_s4('s','g','s','g')
#   define c3__sgsp   c3_s4('s','g','s','p')
#   define c3__sgts   c3_s4('s','g','t','s')
#   define c3__sgwt   c3_s4('s','g','w','t')
#   define c3__sgzp   c3_s4('s','g','z','p')
#   define c3__shiv   c3_s4('s','h','i','v')
#   define c3__show   c3_s4('s','h','o','w')
#   define c3__shud   c3_s4('s','h','u','d')
#   define c3__shut   c3_s4('s','h','u','t')
#   define c3__sibl   c3_s4('s','i','b','l')
#   define c3__sift   c3_s4('s','i','f','t')
#   define c3__sign   c3_s4('s','i','g','n')
#   define c3__sing   c3_s4('s','i','n','g')
#   define c3__sist   c3_s4('s','i','s','t')
#   define c3__site   c3_s4('s','i','t','e')
#   define c3__sith   c3_s4('s','i','t','h')
#   define c3__size   c3_s4('s','i','z','e')
#   define c3__slam   c3_s4('s','l','a','m')
#   define c3__slap   c3_s4('s','l','a','p')
#   define c3__slat   c3_s4('s','l','a','t')
#   define c3__slax   c3_s4('s','l','a','x')
#   define c3__slem   c3_s4('s','l','e','m')
#   define c3__slet   c3_s4('s','l','e','t')
#   define c3__slex   c3_s4('s','l','e','x')
#   define c3__slid   c3_s4('s','l','i','d')
#   define c3__slip   c3_s4('s','l','i','p')
#   define c3__sliv   c3_s4('s','l','i','v')
#   define c3__sloc   c3_s4('s','l','o','c')
#   define c3__slog   c3_s4('s','l','o','g')
#   define c3__slon   c3_s4('s','l','o','n')
#   define c3__slop   c3_s4('s','l','o','p')
#   define c3__slos   c3_s4('s','l','o','s')
#   define c3__slow   c3_s4('s','l','o','w')
#   define c3__slur   c3_s4('s','l','u','r')
#   define c3__slux   c3_s4('s','l','u','x')
#   define c3__sm     c3_s2('s','m')
#   define c3__smcl   c3_s4('s','m','c','l')
#   define c3__smdq   c3_s4('s','m','d','q')
#   define c3__smsg   c3_s4('s','m','s','g')
#   define c3__smsm   c3_s4('s','m','s','m')
#   define c3__smts   c3_s4('s','m','t','s')
#   define c3__snap   c3_s4('s','n','a','p')
#   define c3__so     c3_s2('s','o')
#   define c3__soak   c3_s4('s','o','a','k')
#   define c3__sock   c3_s4('s','o','c','k')
#   define c3__soft   c3_s4('s','o','f','t')
#   define c3__sole   c3_s4('s','o','l','e')
#   define c3__some   c3_s4('s','o','m','e')
#   define c3__sort   c3_s4('s','o','r','t')
#   define c3__spal   c3_s4('s','p','a','l')
#   define c3__spar   c3_s4('s','p','a','r')
#   define c3__spig   c3_s4('s','p','i','g')
#   define c3__spil   c3_s4('s','p','i','l')
#   define c3__spin   c3_s4('s','p','i','n')
#   define c3__spit   c3_s4('s','p','i','t')
#   define c3__spot   c3_s4('s','p','o','t')
#   define c3__stam   c3_s4('s','t','a','m')
#   define c3__star   c3_s4('s','t','a','r')
#   define c3__stdr   c3_s4('s','t','d','r')
#   define c3__stem   c3_s4('s','t','e','m')
#   define c3__step   c3_s4('s','t','e','p')
#   define c3__stid   c3_s4('s','t','i','d')
#   define c3__stig   c3_s4('s','t','i','g')
#   define c3__stil   c3_s4('s','t','i','l')
#   define c3__stiv   c3_s4('s','t','i','v')
#   define c3__stix   c3_s4('s','t','i','x')
#   define c3__stol   c3_s4('s','t','o','l')
#   define c3__ston   c3_s4('s','t','o','n')
#   define c3__stop   c3_s4('s','t','o','p')
#   define c3__stub   c3_s4('s','t','u','b')
#   define c3__stun   c3_s4('s','t','u','n')
#   define c3__stur   c3_s4('s','t','u','r')
#   define c3__sub    c3_s3('s','u','b')
#   define c3__sunt   c3_s4('s','u','n','t')
#   define c3__sure   c3_s4('s','u','r','e')
#   define c3__susp   c3_s4('s','u','s','p')
#   define c3__swap   c3_s4('s','w','a','p')
#   define c3__sym    c3_s3('s','y','m')
#   define c3__sync   c3_s4('s','y','n','c')
#   define c3__sys    c3_s3('s','y','s')
#   define c3__ta     c3_s2('t','a')
#   define c3__tab    c3_s3('t','a','b')
#   define c3__tack   c3_s4('t','a','c','k')
#   define c3__tag    c3_s3('t','a','g')
#   define c3__tail   c3_s4('t','a','i','l')
#   define c3__take   c3_s4('t','a','k','e')
#   define c3__talk   c3_s4('t','a','l','k')
#   define c3__tame   c3_s4('t','a','m','e')
#   define c3__tang   c3_s4('t','a','n','g')
#   define c3__tank   c3_s4('t','a','n','k')
#   define c3__tap    c3_s3('t','a','p')
#   define c3__tarn   c3_s4('t','a','r','n')
#   define c3__tas    c3_s3('t','a','s')
#   define c3__tash   c3_s4('t','a','s','h')
#   define c3__teal   c3_s4('t','e','a','l')
#   define c3__teck   c3_s4('t','e','c','k')
#   define c3__tell   c3_s4('t','e','l','l')
#   define c3__terg   c3_s4('t','e','r','g')
#   define c3__term   c3_s4('t','e','r','m')
#   define c3__test   c3_s4('t','e','s','t')
#   define c3__text   c3_s4('t','e','x','t')
#   define c3__tgbn   c3_s4('t','g','b','n')
#   define c3__tgbr   c3_s4('t','g','b','r')
#   define c3__tgdg   c3_s4('t','g','d','g')
#   define c3__tgdl   c3_s4('t','g','d','l')
#   define c3__tgdp   c3_s4('t','g','d','p')
#   define c3__tgdx   c3_s4('t','g','d','x')
#   define c3__tgkt   c3_s4('t','g','k','t')
#   define c3__tglc   c3_s4('t','g','l','c')
#   define c3__tgld   c3_s4('t','g','l','d')
#   define c3__tgmt   c3_s4('t','g','m','t')
#   define c3__tgpd   c3_s4('t','g','p','d')
#   define c3__tgpm   c3_s4('t','g','p','m')
#   define c3__tgps   c3_s4('t','g','p','s')
#   define c3__tgsp   c3_s4('t','g','s','p')
#   define c3__that   c3_s4('t','h','a','t')
#   define c3__thee   c3_s4('t','h','e','e')
#   define c3__then   c3_s4('t','h','e','n')
#   define c3__they   c3_s4('t','h','e','y')
#   define c3__thin   c3_s4('t','h','i','n')
#   define c3__this   c3_s4('t','h','i','s')
#   define c3__thou   c3_s4('t','h','o','u')
#   define c3__thud   c3_s4('t','h','u','d')
#   define c3__thuo   c3_s4('t','h','u','o')
#   define c3__thus   c3_s4('t','h','u','s')
#   define c3__tick   c3_s4('t','i','c','k')
#   define c3__time   c3_s4('t','i','m','e')
#   define c3__tip    c3_s3('t','i','p')
#   define c3__tmbn   c3_s4('t','m','b','n')
#   define c3__tmdg   c3_s4('t','m','d','g')
#   define c3__tmdp   c3_s4('t','m','d','p')
#   define c3__tmlc   c3_s4('t','m','l','c')
#   define c3__tmnp   c3_s4('t','m','n','p')
#   define c3__tmpd   c3_s4('t','m','p','d')
#   define c3__tmps   c3_s4('t','m','p','s')
#   define c3__tmsg   c3_s4('t','m','s','g')
#   define c3__tmsp   c3_s4('t','m','s','p')
#   define c3__tmtr   c3_s4('t','m','t','r')
#   define c3__to     c3_s2('t','o')
#   define c3__toe    c3_s3('t','o','e')
#   define c3__tome   c3_s4('t','o','m','e')
#   define c3__tong   c3_s4('t','o','n','g')
#   define c3__tool   c3_s4('t','o','o','l')
#   define c3__top    c3_s3('t','o','p')
#   define c3__toy    c3_s3('t','o','y')
#   define c3__trac   c3_s4('t','r','a','c')
#   define c3__tram   c3_s4('t','r','a','m')
#   define c3__trap   c3_s4('t','r','a','p')
#   define c3__trel   c3_s4('t','r','e','l')
#   define c3__trex   c3_s4('t','r','e','x')
#   define c3__trib   c3_s4('t','r','i','b')
#   define c3__trim   c3_s4('t','r','i','m')
#   define c3__trip   c3_s4('t','r','i','p')
#   define c3__trol   c3_s4('t','r','o','l')
#   define c3__trop   c3_s4('t','r','o','p')
#   define c3__trup   c3_s4('t','r','u','p')
#   define c3__try    c3_s3('t','r','y')
#   define c3__tsbn   c3_s4('t','s','b','n')
#   define c3__tsbr   c3_s4('t','s','b','r')
#   define c3__tscl   c3_s4('t','s','c','l')
#   define c3__tscm   c3_s4('t','s','c','m')
#   define c3__tsdt   c3_s4('t','s','d','t')
#   define c3__tsgl   c3_s4('t','s','g','l')
#   define c3__tsgr   c3_s4('t','s','g','r')
#   define c3__tshp   c3_s4('t','s','h','p')
#   define c3__tshx   c3_s4('t','s','h','x')
#   define c3__tsls   c3_s4('t','s','l','s')
#   define c3__tsms   c3_s4('t','s','m','s')
#   define c3__tssg   c3_s4('t','s','s','g')
#   define c3__tstr   c3_s4('t','s','t','r')
#   define c3__tub    c3_s3('t','u','b')
#   define c3__tul    c3_s3('t','u','l')
#   define c3__tule   c3_s4('t','u','l','e')
#   define c3__tulp   c3_s4('t','u','l','p')
#   define c3__tune   c3_s4('t','u','n','e')
#   define c3__tung   c3_s4('t','u','n','g')
#   define c3__tupl   c3_s4('t','u','p','l')
#   define c3__turd   c3_s4('t','u','r','d')
#   define c3__turf   c3_s4('t','u','r','f')
#   define c3__turn   c3_s4('t','u','r','n')
#   define c3__twig   c3_s4('t','w','i','g')
#   define c3__twix   c3_s4('t','w','i','x')
#   define c3__txt    c3_s3('t','x','t')
#   define c3__type   c3_s4('t','y','p','e')
#   define c3__u      c3_s1('u')
#   define c3__ubin   c3_s4('u','b','i','n')
#   define c3__ubit   c3_s4('u','b','i','t')
#   define c3__ud     c3_s2('u','d')
#   define c3__uint   c3_s4('u','i','n','t')
#   define c3__ulib   c3_s4('u','l','i','b')
#   define c3__un     c3_s2('u','n')
#   define c3__uniq   c3_s4('u','n','i','q')
#   define c3__unix   c3_s4('u','n','i','x')
#   define c3__unt    c3_s3('u','n','t')
#   define c3__unum   c3_s3('u','n','u','m')
#   define c3__up     c3_s2('u','p')
#   define c3__url    c3_s3('u','r','l')
#   define c3__urth   c3_s4('u','r','t','h')
#   define c3__use    c3_s3('u','s','e')
#   define c3__ut     c3_s2('u','t')
#   define c3__uv     c3_s2('u','v')
#   define c3__uw     c3_s2('u','w')
#   define c3__ux     c3_s2('u','x')
#   define c3__v      c3_s1('v')
#   define c3__vamp   c3_s4('v','a','m','p')
#   define c3__vane   c3_s4('v','a','n','e')
#   define c3__var    c3_s3('v','a','r')
#   define c3__veal   c3_s4('v','e','a','l')
#   define c3__veb    c3_s3('v','e','b')
#   define c3__veck   c3_s4('v','e','c','k')
#   define c3__veer   c3_s4('v','e','e','r')
#   define c3__vega   c3_s4('v','e','g','a')
#   define c3__velt   c3_s4('v','e','l','t')
#   define c3__vent   c3_s4('v','e','n','t')
#   define c3__verb   c3_s4('v','e','r','b')
#   define c3__vere   c3_s4('v','e','r','e')
#   define c3__veri   c3_s4('v','e','r','i')
#   define c3__vern   c3_s4('v','e','r','n')
#   define c3__very   c3_s4('v','e','r','y')
#   define c3__view   c3_s4('v','i','e','w')
#   define c3__vile   c3_s4('v','i','l', 'e')
#   define c3__vint   c3_s4('v','i','n','t')
#   define c3__void   c3_s4('v','o','i','d')
#   define c3__vorp   c3_s4('v','o','r','p')
#   define c3__wack   c3_s4('w','a','c','k')
#   define c3__wail   c3_s4('w','a','i','l')
#   define c3__wake   c3_s4('w','a','k','e')
#   define c3__walk   c3_s4('w','a','l','k')
#   define c3__wamp   c3_s4('w','a','m','p')
#   define c3__want   c3_s4('w','a','n','t')
#   define c3__warm   c3_s4('w','a','r','m')
#   define c3__warn   c3_s4('w','a','r','n')
#   define c3__warx   c3_s4('w','a','r','x')
#   define c3__wash   c3_s4('w','a','s','h')
#   define c3__watt   c3_s4('w','a','t','t')
#   define c3__way    c3_s3('w','a','y')
#   define c3__weak   c3_s4('w','e','a','k')
#   define c3__web    c3_s3('w','e','b')
#   define c3__wend   c3_s4('w','e','n','d')
#   define c3__werp   c3_s4('w','e','r','p')
#   define c3__west   c3_s4('w','e','s','t')
#   define c3__wet    c3_s3('w','e','t')
#   define c3__what   c3_s4('w','h','a','t')
#   define c3__whey   c3_s4('w','h','e','y')
#   define c3__who    c3_s3('w','h','o')
#   define c3__whom   c3_s4('w','h','o','m')
#   define c3__wild   c3_s4('w','i','l','d')
#   define c3__win    c3_s3('w','i','n')
#   define c3__wing   c3_s4('w','i','n','g')
#   define c3__wipe   c3_s4('w','i','p','e')
#   define c3__wise   c3_s4('w','i','s','e')
#   define c3__wish   c3_s4('w','i','s','h')
#   define c3__with   c3_s4('w','i','t','h')
#   define c3__wnut   c3_s4('w','n','u','t')
#   define c3__wood   c3_s4('w','o','o','d')
#   define c3__woot   c3_s4('w','o','o','t')
#   define c3__work   c3_s4('w','o','r','k')
#   define c3__wost   c3_s4('w','o','s','t')
#   define c3__wrap   c3_s4('w','r','a','p')
#   define c3__wtbr   c3_s4('w','t','b','r')
#   define c3__wtcb   c3_s4('w','t','c','b')
#   define c3__wtcl   c3_s4('w','t','c','l')
#   define c3__wtcn   c3_s4('w','t','c','n')
#   define c3__wtdt   c3_s4('w','t','d','t')
#   define c3__wtfs   c3_s4('w','t','f','s')
#   define c3__wtgl   c3_s4('w','t','g','l')
#   define c3__wtgr   c3_s4('w','t','g','r')
#   define c3__wthp   c3_s4('w','t','h','p')
#   define c3__wthx   c3_s4('w','t','h','x')
#   define c3__wtkt   c3_s4('w','t','k','t')
#   define c3__wtls   c3_s4('w','t','l','s')
#   define c3__wtms   c3_s4('w','t','m','s')
#   define c3__wtpm   c3_s4('w','t','p','m')
#   define c3__wtpt   c3_s4('w','t','p','t')
#   define c3__wtsg   c3_s4('w','t','s','g')
#   define c3__wtts   c3_s4('w','t','t','s')
#   define c3__wtzp   c3_s4('w','t','z','p')
#   define c3__wyp    c3_s3('w','y','p')
#   define c3__wyrd   c3_s4('w','y','r','d')
#   define c3__xray   c3_s4('x','r','a','y')
#   define c3__xmas   c3_s4('x','m','a','s')
#   define c3__x      c3_s1('x')
#   define c3__xx     c3_s2('x','x')
#   define c3__yell   c3_s4('y','e','l','l')
#   define c3__yelp   c3_s4('y','e','l','p')
#   define c3__z      c3_s1('z')
#   define c3__zact   c3_s4('z','a','c','t')
#   define c3__zalt   c3_s4('z','a','l','t')
#   define c3__zarb   c3_s4('z','a','r','b')
#   define c3__zect   c3_s4('z','e','c','t')
#   define c3__zemp   c3_s4('z','e','m','p')
#   define c3__zero   c3_s4('z','e','r','o')
#   define c3__zike   c3_s4('z','i','k','e')
#   define c3__zinc   c3_s4('z','i','n','c')
#   define c3__zole   c3_s4('z','o','l','e')
#   define c3__zond   c3_s4('z','o','n','d')
#   define c3__zoot   c3_s4('z','o','o','t')
#   define c3__zork   c3_s4('z','o','r','k')
#   define c3__zpbn   c3_s4('z','p','b','n')
#   define c3__zpcb   c3_s4('z','p','c','b')
#   define c3__zpcm   c3_s4('z','p','c','m')
#   define c3__zpcn   c3_s4('z','p','c','n')
#   define c3__zpdg   c3_s4('z','p','d','g')
#   define c3__zpdx   c3_s4('z','p','d','x')
#   define c3__zpfs   c3_s4('z','p','f','s')
#   define c3__zpgr   c3_s4('z','p','g','r')
#   define c3__zphx   c3_s4('z','p','h','x')
#   define c3__zplc   c3_s4('z','p','l','c')
#   define c3__zpmc   c3_s4('z','p','m','c')
#   define c3__zpmt   c3_s4('z','p','m','t')
#   define c3__zpsg   c3_s4('z','p','s','g')
#   define c3__zpsk   c3_s4('z','p','s','k')
#   define c3__zpsm   c3_s4('z','p','s','m')
#   define c3__zptc   c3_s4('z','p','t','c')
#   define c3__zptm   c3_s4('z','p','t','m')
#   define c3__zpts   c3_s4('z','p','t','s')
#   define c3__zpvn   c3_s4('z','p','v','n')
#   define c3__zpvt   c3_s4('z','p','v','t')
#   define c3__zpzp   c3_s4('z','p','z','p')
#   define c3__zuse   c3_s4('z','u','s','e')
#   define c3__zush   c3_s4('z','u','s','h')

#endif /* ifndef C3_MOTES_H */