forked from tommyettinger/Finnegan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Finnegan.java
2493 lines (2343 loc) · 135 KB
/
Finnegan.java
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
package put.in.your.source;
import java.io.Serializable;
import java.text.Normalizer;
import java.util.*;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
/**
* A text generator for producing sentences and/or words in nonsense languages that fit a theme. This does not use an
* existing word list as a basis for its output, so it may or may not produce existing words occasionally, but you can
* safely assume it won't generate a meaningful sentence except in the absolute unlikeliest of cases. The name comes
* from the novel Finnegan's Wake by James Joyce, which employed vaguely similar creative manipulation of language.
* <br>
* "Thaw! The last word in stolentelling!"
* <br>
* -- James Joyce, Finnegan's Wake
* <br>
* "bababadalgharaghtakamminarronnkonnbronntonnerronntuonnthunntrovarrhounawnskawntoohoohoordenenthurnuk!"
* <br>
* -- James Joyce, Finnegan's Wake
* <br>
* CC0 Licensed, originally by Tommy Ettinger. This class is meant to be copied into your own source code, not included
* as a library. There is absolutely no need to attribute me if you use this, and you can change it without obstacle.
*/
public class Finnegan implements Serializable {
public class RNG implements Serializable {
private static final long serialVersionUID = 4378460257281186371L;
/**
* 2 raised to the 53, - 1.
*/
private static final long DOUBLE_MASK = (1L << 53) - 1;
/**
* 2 raised to the -53.
*/
private static final double NORM_53 = 1. / (1L << 53);
public long state;
public RNG() {
state = Double.doubleToLongBits(Math.random());
}
public RNG(long seed) {
state = seed;
}
/**
* Can return any long, positive or negative, of any size permissible in a 64-bit signed integer.
*
* @return any long, all 64 bits are random
*/
public long nextLong() {
long z = (state += 0x9E3779B97F4A7C15L);
z = (z ^ (z >>> 30)) * 0xBF58476D1CE4E5B9L;
z = (z ^ (z >>> 27)) * 0x94D049BB133111EBL;
return z ^ (z >>> 31);
}
/**
* Can return any int, positive or negative, of any size permissible in a 32-bit signed integer.
*
* @return any int, all 32 bits are random
*/
public int nextInt() {
return (int) nextLong();
}
/**
* Exclusive on the upper bound n. The lower bound is 0.
*
* @param n the upper bound; should be positive
* @return a random int less than n and at least equal to 0
*/
public int nextInt(final int n) {
if (n <= 0) throw new IllegalArgumentException();
final int bits = nextInt() >>> 1;
return bits % n;
}
/**
* Inclusive lower, exclusive upper.
*
* @param lower the lower bound, inclusive, can be positive or negative
* @param upper the upper bound, exclusive, should be positive, must be greater than lower
* @return a random int at least equal to lower and less than upper
*/
public int nextInt(final int lower, final int upper) {
if (upper - lower <= 0) throw new IllegalArgumentException();
return lower + nextInt(upper - lower);
}
/**
* Exclusive on the upper bound n. The lower bound is 0.
*
* @param n the upper bound; should be positive
* @return a random long less than n
*/
public long nextLong(final long n) {
if (n <= 0) throw new IllegalArgumentException();
//for(;;) {
final long bits = nextLong() >>> 1;
return bits % n;
//long value = bits % n;
//value = (value < 0) ? -value : value;
//if ( bits - value + ( n - 1 ) >= 0 ) return value;
//}
}
/**
* Inclusive lower, exclusive upper.
*
* @param lower the lower bound, inclusive, can be positive or negative
* @param upper the upper bound, exclusive, should be positive, must be greater than lower
* @return a random long at least equal to lower and less than upper
*/
public long nextLong(final long lower, final long upper) {
if (upper - lower <= 0) throw new IllegalArgumentException();
return lower + nextLong(upper - lower);
}
/**
* Gets a uniform random double in the range [0.0,1.0)
*
* @return a random double at least equal to 0.0 and less than 1.0
*/
public double nextDouble() {
return (nextLong() & DOUBLE_MASK) * NORM_53;
}
/**
* Gets a uniform random double in the range [0.0,outer) given a positive parameter outer. If outer
* is negative, it will be the (exclusive) lower bound and 0.0 will be the (inclusive) upper bound.
*
* @param outer the exclusive outer bound, can be negative
* @return a random double between 0.0 (inclusive) and outer (exclusive)
*/
public double nextDouble(final double outer) {
return nextDouble() * outer;
}
public <T> T getRandomElement(T[] array) {
if (array.length < 1) {
return null;
}
return array[nextInt(array.length)];
}
/**
* Shuffle an array using the Fisher-Yates algorithm.
*
* @param elements an array of T; will not be modified
* @param <T> can be any non-primitive type.
* @return a shuffled copy of elements
*/
public <T> T[] shuffle(T[] elements) {
T[] array = elements.clone();
int n = array.length;
for (int i = 0; i < n; i++) {
int r = i + nextInt(n - i);
T t = array[r];
array[r] = array[i];
array[i] = t;
}
return array;
}
/**
* Shuffle a {@link List} using the Fisher-Yates algorithm.
* @param elements a List of T; will not be modified
* @param <T> can be any non-primitive type.
* @return a shuffled ArrayList containing the whole of elements in pseudo-random order.
*/
public <T> ArrayList<T> shuffle(List<T> elements)
{
ArrayList<T> al = new ArrayList<T>(elements);
int n = al.size();
for (int i = 0; i < n; i++)
{
Collections.swap(al, i + nextInt(n - i), i);
}
return al;
}
/**
* Gets a random portion of a List and returns it as a new List. Will only use a given position in the given
* List at most once; does this by shuffling a copy of the List and getting a section of it.
* @param data a List of T; will not be modified.
* @param count the non-negative number of elements to randomly take from data
* @param <T> can be any non-primitive type
* @return a List of T that has length equal to the smaller of count or data.length
*/
public <T> List<T> randomPortion(List<T> data, int count)
{
return shuffle(data).subList(0, Math.min(count, data.size()));
}
public long getState() {
return state;
}
public void setState(long state) {
this.state = state;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
RNG rng = (RNG) o;
return state == rng.state;
}
@Override
public int hashCode() {
return (int) (state ^ (state >>> 32));
}
@Override
public String toString() {
return "RNG{" +
"state=" + state +
'}';
}
}
private static final long serialVersionUID = -2578460257281186353L;
public final String[] openingVowels, midVowels, openingConsonants, midConsonants, closingConsonants,
vowelSplitters, closingSyllables;
public boolean clean;
public final LinkedHashMap<Integer, Double> syllableFrequencies;
protected double totalSyllableFrequency = 0.0;
public final double vowelStartFrequency, vowelEndFrequency, vowelSplitFrequency, syllableEndFrequency;
protected final Pattern[] sanityChecks;
public ArrayList<Modifier> modifiers;
protected static final Pattern
repeats = Pattern.compile("(.)\\1+"),
diacritics = Pattern.compile("[\\u0300-\\u036F\\u1DC0-\\u1DFF]+");
public static final Pattern[]
vulgarChecks = new Pattern[]
{
Pattern.compile("[SsξCcсςС][hнН].*[dtтτТΤf]"),
Pattern.compile("([PpрρРΡ][hнН])|[KkкκКΚFfDdCcсςС].{1,4}[KkкκКΚCcсςСxхжχХЖΧ]"), // lots of these end in a 'k' sound, huh
Pattern.compile("[BbъыбвβЪЫБВΒ]..?.?[cсςС][hнН]"),
Pattern.compile("[WwшщψШЩHhнН]..?[rяЯ]"),
Pattern.compile("[TtтτТΤ]..?[tтτТΤ]"),
Pattern.compile("([PpрρРΡ][hнН])|[Ff]..?[rяЯ][tтτТΤ]"),
Pattern.compile("([Ssξ][hнН])|[j][iτιΙ].?[sξzΖ]"),
Pattern.compile("[AaаαАΑΛ][NnийИЙΝ]..?[SsξlιζzΖ]"),
Pattern.compile("[AaаαАΑΛ][sξ][sξ]"),
Pattern.compile(".[uμυν][hнН]?[nийИЙΝ]+[tтτТΤ]"),
Pattern.compile("[NnFf]..?g"), // might as well remove two possible slurs with one check
Pattern.compile("[PpрρРΡ][eеёзξεЕЁЗΞΕΣioоюσοОЮΟuμυν][eеёзξεЕЁЗΞΕΣoоюσοОЮΟs]"), // the grab bag of juvenile words
Pattern.compile("[MmмМΜ]..?[rяЯ].?d"), // should pick up the #1 obscenity from Spanish and French
Pattern.compile("[Gg][hнН]?[aаαАΑΛeеёзξεЕЁЗΞΕΣ][yуλγУΥeеёзξεЕЁЗΞΕΣ]") // could be inappropriate for random text
},
englishSanityChecks = new Pattern[]
{
Pattern.compile("[AEIOUaeiou]{3}"),
Pattern.compile("(\\w)\\1\\1"),
Pattern.compile("(.)\\1(.)\\2"),
Pattern.compile("[Aa][ae]"),
Pattern.compile("[Uu][umlkj]"),
Pattern.compile("[Ii][iyqkhrl]"),
Pattern.compile("[Oo][c]"),
Pattern.compile("[Yy][aeiou]{2}"),
Pattern.compile("[Rr][aeiouy]+[xrhp]"),
Pattern.compile("[Qq]u[yu]"),
Pattern.compile("[^oai]uch"),
Pattern.compile("[^tcsz]hh"),
Pattern.compile("[Hh][tcszi]h"),
Pattern.compile("[Tt]t[^aeiouy]{2}"),
Pattern.compile("[IYiy]h[^aeiouy ]"),
Pattern.compile("[szSZrlRL][^aeiou][rlsz]"),
Pattern.compile("[UIuiYy][wy]"),
Pattern.compile("^[UIui][ae]"),
Pattern.compile("q$")
},
japaneseSanityChecks = new Pattern[]
{
Pattern.compile("[AEIOUaeiou]{3}"),
Pattern.compile("(\\w)\\1\\1"),
Pattern.compile("[Tt]s[^u]"),
Pattern.compile("[Ff][^u]"),
Pattern.compile("[Yy][^auo]"),
Pattern.compile("[Tt][ui]"),
Pattern.compile("[SsZzDd]i"),
Pattern.compile("[Hh]u"),
};
public RNG rng;
public static final char[][] accentedVowels = new char[][]{
new char[]{
'à', 'á', 'â', 'ã', 'ä', 'å', 'æ', 'ā', 'ă', 'ą', 'ǻ', 'ǽ'
},
new char[]{
'è', 'é', 'ê', 'ë', 'ē', 'ĕ', 'ė', 'ę', 'ě'
},
new char[]{
'ì', 'í', 'î', 'ï', 'ĩ', 'ī', 'ĭ', 'į', 'ı',
},
new char[]{
'ò', 'ó', 'ô', 'õ', 'ö', 'ø', 'ō', 'ŏ', 'ő', 'œ', 'ǿ'
},
new char[]{
'ù', 'ú', 'û', 'ü', 'ũ', 'ū', 'ŭ', 'ů', 'ű', 'ų'
}
},
accentedConsonants = new char[][]
{
new char[]{
'b'
},
new char[]{
'c', 'ç', 'ć', 'ĉ', 'ċ', 'č',
},
new char[]{
'd', 'þ', 'ð', 'ď', 'đ',
},
new char[]{
'f'
},
new char[]{
'g', 'ĝ', 'ğ', 'ġ', 'ģ',
},
new char[]{
'h', 'ĥ', 'ħ',
},
new char[]{
'j', 'ĵ', 'ȷ',
},
new char[]{
'k', 'ķ',
},
new char[]{
'l', 'ĺ', 'ļ', 'ľ', 'ŀ', 'ł',
},
new char[]{
'm',
},
new char[]{
'n', 'ñ', 'ń', 'ņ', 'ň', 'ŋ',
},
new char[]{
'p',
},
new char[]{
'q',
},
new char[]{
'r', 'ŕ', 'ŗ', 'ř',
},
new char[]{
's', 'ś', 'ŝ', 'ş', 'š', 'ș',
},
new char[]{
't', 'ţ', 'ť', 'ț',
},
new char[]{
'v',
},
new char[]{
'w', 'ŵ', 'ẁ', 'ẃ', 'ẅ',
},
new char[]{
'x',
},
new char[]{
'y', 'ý', 'ÿ', 'ŷ', 'ỳ',
},
new char[]{
'z', 'ź', 'ż', 'ž',
},
};
/**
* Removes accented characters from a string; if the "base" characters are non-English anyway then the result won't
* be an ASCII string, but otherwise it probably will be.
* <br>
* Credit to user hashable from http://stackoverflow.com/a/1215117
*
* @param str a string that may contain accented characters
* @return a string with all accented characters replaced with their (possibly ASCII) counterparts
*/
public String removeAccents(CharSequence str) {
String alteredString = Normalizer.normalize(str, Normalizer.Form.NFD);
alteredString = diacritics.matcher(alteredString).replaceAll("")
.replace('æ', 'a')
.replace('œ', 'o')
.replace('ø', 'o')
.replace('Æ', 'A')
.replace('Œ', 'O')
.replace('Ø', 'O');
return alteredString;
}
/**
* Ia! Ia! Cthulhu Rl'yeh ftaghn! Useful for generating cultist ramblings or unreadable occult texts.
* <br>
* Zvrugg pialuk, ya'as irlemrugle'eith iposh hmo-es nyeighi, glikreirk shaivro'ei!
*/
public static final Finnegan LOVECRAFT = new Finnegan(
new String[]{"a", "i", "o", "e", "u", "a", "i", "o", "e", "u", "ia", "ai", "aa", "ei"},
new String[]{},
new String[]{"s", "t", "k", "n", "y", "p", "k", "l", "g", "gl", "th", "sh", "ny", "ft", "hm", "zvr", "cth"},
new String[]{"h", "gl", "gr", "nd", "mr", "vr", "kr"},
new String[]{"l", "p", "s", "t", "n", "k", "g", "x", "rl", "th", "gg", "gh", "ts", "lt", "rk", "kh", "sh", "ng", "shk"},
new String[]{"aghn", "ulhu", "urath", "oigor", "alos", "'yeh", "achtal", "urath", "ikhet", "adzek"},
new String[]{"'", "-"}, new int[]{1, 2, 3}, new double[]{6, 7, 2}, 0.4, 0.31, 0.07, 0.04, null, true);
/**
* Imitation English; may seem closer to Dutch in some generated text, and is not exactly the best imitation.
* Should seem pretty fake to many readers; does not filter out dictionary words but does perform basic vulgarity
* filtering. If you want to avoid generating other words, you can subclass Finnegan and modify word() .
* <br>
* Mont tiste frot; mousation hauddes?
* Lily wrely stiebes; flarrousseal gapestist.
*/
public static final Finnegan ENGLISH = new Finnegan(
new String[]{
"a", "a", "a", "a", "o", "o", "o", "e", "e", "e", "e", "e", "i", "i", "i", "i", "u",
"a", "a", "a", "a", "o", "o", "o", "e", "e", "e", "e", "e", "i", "i", "i", "i", "u",
"a", "a", "a", "o", "o", "e", "e", "e", "i", "i", "i", "u",
"a", "a", "a", "o", "o", "e", "e", "e", "i", "i", "i", "u",
"au", "ai", "ai", "ou", "ea", "ie", "io", "ei",
},
new String[]{"u", "u", "oa", "oo", "oo", "oo", "ee", "ee", "ee", "ee",},
new String[]{
"b", "bl", "br", "c", "cl", "cr", "ch", "d", "dr", "f", "fl", "fr", "g", "gl", "gr", "h", "j", "k", "l", "m", "n",
"p", "pl", "pr", "qu", "r", "s", "sh", "sk", "st", "sp", "sl", "sm", "sn", "t", "tr", "th", "thr", "v", "w", "y", "z",
"b", "bl", "br", "c", "cl", "cr", "ch", "d", "dr", "f", "fl", "fr", "g", "gr", "h", "j", "k", "l", "m", "n",
"p", "pl", "pr", "r", "s", "sh", "st", "sp", "sl", "t", "tr", "th", "w", "y",
"b", "br", "c", "ch", "d", "dr", "f", "g", "h", "j", "l", "m", "n",
"p", "r", "s", "sh", "st", "sl", "t", "tr", "th",
"b", "d", "f", "g", "h", "l", "m", "n",
"p", "r", "s", "sh", "t", "th",
"b", "d", "f", "g", "h", "l", "m", "n",
"p", "r", "s", "sh", "t", "th",
"r", "s", "t", "l", "n",
"str", "spr", "spl", "wr", "kn", "kn", "gn",
},
new String[]{"x", "cst", "bs", "ff", "lg", "g", "gs",
"ll", "ltr", "mb", "mn", "mm", "ng", "ng", "ngl", "nt", "ns", "nn", "ps", "mbl", "mpr",
"pp", "ppl", "ppr", "rr", "rr", "rr", "rl", "rtn", "ngr", "ss", "sc", "rst", "tt", "tt", "ts", "ltr", "zz"
},
new String[]{"b", "rb", "bb", "c", "rc", "ld", "d", "ds", "dd", "f", "ff", "lf", "rf", "rg", "gs", "ch", "lch", "rch", "tch",
"ck", "ck", "lk", "rk", "l", "ll", "lm", "m", "rm", "mp", "n", "nk", "nch", "nd", "ng", "ng", "nt", "ns", "lp", "rp",
"p", "r", "rn", "rts", "s", "s", "s", "s", "ss", "ss", "st", "ls", "t", "t", "ts", "w", "wn", "x", "ly", "lly", "z",
"b", "c", "d", "f", "g", "k", "l", "m", "n", "p", "r", "s", "t", "w",
},
new String[]{"ate", "ite", "ism", "ist", "er", "er", "er", "ed", "ed", "ed", "es", "es", "ied", "y", "y", "y", "y",
"ate", "ite", "ism", "ist", "er", "er", "er", "ed", "ed", "ed", "es", "es", "ied", "y", "y", "y", "y",
"ate", "ite", "ism", "ist", "er", "er", "er", "ed", "ed", "ed", "es", "es", "ied", "y", "y", "y", "y",
"ay", "ay", "ey", "oy", "ay", "ay", "ey", "oy",
"ough", "aught", "ant", "ont", "oe", "ance", "ell", "eal", "oa", "urt", "ut", "iom", "ion", "ion", "ision", "ation", "ation", "ition",
"ough", "aught", "ant", "ont", "oe", "ance", "ell", "eal", "oa", "urt", "ut", "iom", "ion", "ion", "ision", "ation", "ation", "ition",
"ily", "ily", "ily", "adly", "owly", "oorly", "ardly", "iedly",
},
new String[]{}, new int[]{1, 2, 3, 4}, new double[]{7, 8, 4, 1}, 0.22, 0.1, 0.0, 0.25, englishSanityChecks, true);
/**
* Imitation ancient Greek, romanized to use the Latin alphabet. Likely to seem pretty fake to many readers.
* <br>
* Psuilas alor; aipeomarta le liaspa...
*/
public static final Finnegan GREEK_ROMANIZED = new Finnegan(
new String[]{"a", "a", "a", "o", "o", "o", "e", "e", "i", "i", "i", "au", "ai", "ai", "oi", "oi", "ia", "io", "ou", "ou", "eo", "ei"},
new String[]{"ui", "ei"},
new String[]{"rh", "s", "z", "t", "t", "k", "ch", "n", "th", "kth", "m", "p", "ps", "b", "l", "kr", "g", "phth"},
new String[]{"lph", "pl", "l", "l", "kr", "nch", "nx", "ps"},
new String[]{"s", "p", "t", "ch", "n", "m", "s", "p", "t", "ch", "n", "m", "b", "g", "st", "rst", "rt", "sp", "rk", "ph", "x", "z", "nk", "ng", "th"},
new String[]{"os", "os", "is", "us", "um", "eum", "ium", "iam", "us", "um", "es", "anes", "eros", "or", "ophon", "on", "otron"},
new String[]{}, new int[]{1, 2, 3}, new double[]{5, 7, 4}, 0.45, 0.45, 0.0, 0.3, null, true);
/**
* Imitation ancient Greek, using the original Greek alphabet. People may try to translate it and get gibberish.
* Make sure the font you use to render this supports the Greek alphabet! In the GDX display module, the "smooth"
* fonts support all the Greek you need for this.
* <br>
* Ψυιλασ αλορ; αιπεομαρτα λε λιασπα...
*/
public static final Finnegan GREEK_AUTHENTIC = new Finnegan(
new String[]{"α", "α", "α", "ο", "ο", "ο", "ε", "ε", "ι", "ι", "ι", "αυ", "αι", "αι", "οι", "οι", "ια", "ιο", "ου", "ου", "εο", "ει"},
new String[]{"υι", "ει"},
new String[]{"ρ", "σ", "ζ", "τ", "τ", "κ", "χ", "ν", "θ", "κθ", "μ", "π", "ψ", "β", "λ", "κρ", "γ", "φθ"},
new String[]{"λφ", "πλ", "λ", "λ", "κρ", "γχ", "γξ", "ψ"},
new String[]{"σ", "π", "τ", "χ", "ν", "μ", "σ", "π", "τ", "χ", "ν", "μ", "β", "γ", "στ", "ρστ", "ρτ", "σπ", "ρκ", "φ", "ξ", "ζ", "γκ", "γγ", "θ"},
new String[]{"ος", "ος", "ις", "υς", "υμ", "ευμ", "ιυμ", "ιαμ", "υς", "υμ", "ες", "ανες", "ερος", "ορ", "οφον", "ον", "οτρον"},
new String[]{}, new int[]{1, 2, 3}, new double[]{5, 7, 4}, 0.45, 0.45, 0.0, 0.3, null, true);
/**
* Imitation modern French, using (too many of) the accented vowels that are present in the language. Translating it
* will produce gibberish if it produces anything at all. In the GDX display module, the "smooth" and "unicode"
* fonts support all the accented characters you need for this.
* <br><br>
* Fa veau, ja ri avé re orçe jai braï aisté.
*/
public static final Finnegan FRENCH = new Finnegan(
new String[]{"a", "a", "a", "e", "e", "e", "i", "i", "o", "u", "a", "a", "a", "e", "e", "e", "i", "i", "o",
"a", "a", "a", "e", "e", "e", "i", "i", "o", "u", "a", "a", "a", "e", "e", "e", "i", "i", "o",
"a", "a", "e", "e", "i", "o", "a", "a", "a", "e", "e", "e", "i", "i", "o",
"ai", "oi", "oui", "au", "œu", "ou"
},
new String[]{
"ai", "aie", "aou", "eau", "oi", "oui", "oie", "eu", "eu",
"à", "â", "ai", "aî", "aï", "aie", "aou", "aoû", "au", "ay", "e", "é", "ée", "è",
"ê", "eau", "ei", "eî", "eu", "eû", "i", "î", "ï", "o", "ô", "oe", "oê", "oë", "œu",
"oi", "oie", "oï", "ou", "oû", "oy", "u", "û", "ue",
"a", "a", "a", "e", "e", "e", "i", "i", "o", "u", "a", "a", "a", "e", "e", "e", "i", "i", "o",
"a", "a", "e", "e", "i", "o", "a", "a", "a", "e", "e", "e", "i", "i", "o",
},
new String[]{"tr", "ch", "m", "b", "b", "br", "j", "j", "j", "j", "g", "t", "t", "t", "c", "d", "f", "f", "h", "n", "l", "l",
"s", "s", "s", "r", "r", "r", "v", "v", "p", "pl", "pr", "bl", "br", "dr", "gl", "gr"},
new String[]{"cqu", "gu", "qu", "rqu", "nt", "ng", "ngu", "mb", "ll", "nd", "ndr", "nct", "st",
"xt", "mbr", "pl", "g", "gg", "ggr", "gl",
"m", "m", "mm", "v", "v", "f", "f", "f", "ff", "b", "b", "bb", "d", "d", "dd", "s", "s", "s", "ss", "ss", "ss",
"cl", "cr", "ng", "ç", "ç", "rç"},
new String[]{},
new String[]{"e", "e", "e", "e", "e", "é", "é", "er", "er", "er", "er", "er", "es", "es", "es", "es", "es", "es",
"e", "e", "e", "e", "e", "é", "é", "er", "er", "er", "er", "er", "er", "es", "es", "es", "es", "es",
"e", "e", "e", "e", "e", "é", "é", "é", "er", "er", "er", "er", "er", "es", "es", "es", "es", "es",
"ent", "em", "en", "en", "aim", "ain", "an", "oin", "ien", "iere", "ors", "anse",
"ombs", "ommes", "ancs", "ends", "œufs", "erfs", "ongs", "aps", "ats", "ives", "ui", "illes",
"aen", "aon", "am", "an", "eun", "ein", "age", "age", "uile", "uin", "um", "un", "un", "un",
"aille", "ouille", "eille", "ille", "eur", "it", "ot", "oi", "oi", "oi", "aire", "om", "on", "on",
"im", "in", "in", "ien", "ien", "ion", "il", "eil", "oin", "oint", "iguïté", "ience", "incte",
"ang", "ong", "acré", "eau", "ouche", "oux", "oux", "ect", "ecri", "agne", "uer", "aix", "eth", "ut", "ant",
"anc", "anc", "anche", "ioche", "eaux", "ive", "eur", "ancois", "ecois"},
new String[]{}, new int[]{1, 2, 3}, new double[]{18, 7, 2}, 0.35, 1.0, 0.0, 0.55, null, true);
/**
* Imitation modern Russian, romanized to use the Latin alphabet. Likely to seem pretty fake to many readers.
* <br>
* Zhydotuf ruts pitsas, gogutiar shyskuchebab - gichapofeglor giunuz ieskaziuzhin.
*/
public static final Finnegan RUSSIAN_ROMANIZED = new Finnegan(
new String[]{"a", "e", "e", "i", "i", "o", "u", "ie", "y", "e", "iu", "ia", "y", "a", "a", "o", "u"},
new String[]{},
new String[]{"b", "v", "g", "d", "k", "l", "p", "r", "s", "t", "f", "kh", "ts",
"b", "v", "g", "d", "k", "l", "p", "r", "s", "t", "f", "kh", "ts",
"b", "v", "g", "d", "k", "l", "p", "r", "s", "t", "f",
"zh", "m", "n", "z", "ch", "sh", "shch",
"br", "sk", "tr", "bl", "gl", "kr", "gr"},
new String[]{"bl", "br", "pl", "dzh", "tr", "gl", "gr", "kr"},
new String[]{"b", "v", "g", "d", "zh", "z", "k", "l", "m", "n", "p", "r", "s", "t", "f", "kh", "ts", "ch", "sh",
"v", "f", "sk", "sk", "sk", "s", "b", "d", "d", "n", "r", "r"},
new String[]{"odka", "odna", "usk", "ask", "usky", "ad", "ar", "ovich", "ev", "ov", "of", "agda", "etsky", "ich", "on", "akh", "iev", "ian"},
new String[]{}, new int[]{1, 2, 3, 4, 5, 6}, new double[]{4, 5, 6, 5, 3, 1}, 0.1, 0.2, 0.0, 0.12, englishSanityChecks, true);
/**
* Imitation modern Russian, using the authentic Cyrillic alphabet used in Russia and other countries.
* Make sure the font you use to render this supports the Cyrillic alphabet!
* In the GDX display module, the "smooth" fonts support all the Cyrillic alphabet you need for this.
* <br>
* Жыдотуф руц пйцас, гогутяр шыскучэбаб - гйчапофёглор гюнуз ъсказюжин.
*/
public static final Finnegan RUSSIAN_AUTHENTIC = new Finnegan(
new String[]{"а", "е", "ё", "и", "й", "о", "у", "ъ", "ы", "э", "ю", "я", "ы", "а", "а", "о", "у"},
new String[]{},
new String[]{"б", "в", "г", "д", "к", "л", "п", "р", "с", "т", "ф", "х", "ц",
"б", "в", "г", "д", "к", "л", "п", "р", "с", "т", "ф", "х", "ц",
"б", "в", "г", "д", "к", "л", "п", "р", "с", "т", "ф",
"ж", "м", "н", "з", "ч", "ш", "щ",
"бр", "ск", "тр", "бл", "гл", "кр", "гр"},
new String[]{"бл", "бр", "пл", "дж", "тр", "гл", "гр", "кр"},
new String[]{"б", "в", "г", "д", "ж", "з", "к", "л", "м", "н", "п", "р", "с", "т", "ф", "х", "ц", "ч", "ш",
"в", "ф", "ск", "ск", "ск", "с", "б", "д", "д", "н", "р", "р"},
new String[]{"одка", "одна", "уск", "аск", "ускы", "ад", "ар", "овйч", "ев", "ов", "оф", "агда", "ёцкы", "йч", "он", "ах", "ъв", "ян"},
new String[]{}, new int[]{1, 2, 3, 4, 5, 6}, new double[]{4, 5, 6, 5, 3, 1}, 0.1, 0.2, 0.0, 0.12, null, true);
/**
* Imitation Japanese, romanized to use the Latin alphabet. Likely to seem pretty fake to many readers. Excellent
* when mixed, but keep in mind the sanity checks that are used to make this generate viable words in Japanese also
* can carry over to a mixed language if JAPANESE_ROMANIZED is mixed with a Finnegan that does not have sanity
* checks, like any non-Latin-script ones. If this is the parameter to mix() called on a Finnegan like FRENCH or
* RUSSIAN_ROMANIZED (but not RUSSIAN_AUTHENTIC), the sanity check carryover probably won't happen, and the word
* structure won't have the mostly-syllable-based aesthetic that JAPANESE_ROMANIZED generates.
* <br>
* Narurehyounan nikase keho...
*/
public static final Finnegan JAPANESE_ROMANIZED = new Finnegan(
new String[]{"a", "a", "a", "a", "e", "e", "i", "i", "i", "i", "o", "o", "o", "u", "ou", "u", "ai", "ai"},
new String[]{},
new String[]{"k", "ky", "s", "sh", "t", "ts", "ch", "n", "ny", "h", "f", "hy", "m", "my", "y", "r", "ry", "g",
"gy", "z", "j", "d", "b", "by", "p", "py",
"k", "t", "n", "s", "k", "t", "d", "s", "sh", "sh", "g", "r", "b",
"k", "t", "n", "s", "k", "t", "b", "s", "sh", "sh", "g", "r", "b",
"k", "t", "n", "s", "k", "t", "z", "s", "sh", "sh", "ch", "ry", "ts"
},
new String[]{"k", "ky", "s", "sh", "t", "ts", "ch", "n", "ny", "h", "f", "hy", "m", "my", "y", "r", "ry", "g",
"gy", "z", "j", "d", "b", "by", "p", "py",
"k", "t", "d", "s", "k", "t", "d", "s", "sh", "sh", "y", "j", "p", "r", "d",
"k", "t", "b", "s", "k", "t", "b", "s", "sh", "sh", "y", "j", "p", "r", "d",
"k", "t", "z", "s", "f", "g", "z", "b", "d", "ts",
"nn", "nn", "nn", "nd", "nz", "mm", "kk", "kk", "tt", "ss", "ssh", "tch"},
new String[]{"n"},
new String[]{},
new String[]{}, new int[]{1, 2, 3, 4, 5}, new double[]{5, 4, 5, 4, 3}, 0.3, 0.9, 0.0, 0.0, japaneseSanityChecks, true);
/**
* Swahili is one of the more commonly-spoken languages in sub-Saharan Africa, and serves mainly as a shared language
* that is often learned after becoming fluent in one of many other (vaguely-similar) languages of the area. An
* example sentence in Swahili, that this might try to imitate aesthetically, is "Mtoto mdogo amekisoma," meaning
* "The small child reads it" (where it is a book). A notable language feature used here is the redoubling of words,
* which is used in Swahili to emphasize or alter the meaning of the doubled word; here, it always repeats exactly
* and can't make minor changes like a real language might. This generates things like "gata-gata", "hapi-hapi", and
* "mimamzu-mimamzu", always separating with a hyphen here.
* <br>
* As an aside, please try to avoid the ugly stereotypes that fantasy media often assigns to speakers of African-like
* languages when using this or any of the generators. Many fantasy tropes come from older literature written with
* major cultural biases, and real-world cultural elements can be much more interesting to players than yet another
* depiction of a "jungle savage" with stereotypical traits. Consider drawing from existing lists of real-world
* technological discoveries, like https://en.wikipedia.org/wiki/History_of_science_and_technology_in_Africa , for
* inspiration when world-building; though some groups may not have developed agriculture by early medieval times,
* their neighbors may be working iron and studying astronomy just a short distance away.
* <br>
* Kondueyu; ma mpiyamdabota mise-mise nizakwaja alamsa amja, homa nkajupomba.
*/
public static final Finnegan SWAHILI = new Finnegan(
new String[]{"a", "i", "o", "e", "u",
"a", "a", "i", "o", "o", "e", "u",
"a", "a", "i", "o", "o", "u",
"a", "a", "i", "i", "o",
"a","a","a","a","a",
"a", "i", "o", "e", "u",
"a", "a", "i", "o", "o", "e", "u",
"a", "a", "i", "o", "o", "u",
"a", "a", "i", "i", "o",
"a","a","a","a","a",
"aa", "aa", "ue", "uo", "ii", "ea"},
new String[]{},
new String[]{
"b", "h", "j", "l", "s", "y", "m", "n",
"b", "ch", "h", "j", "l", "s", "y", "z", "m", "n",
"b", "ch", "f", "g", "h", "j", "k", "l", "p", "s", "y", "z", "m", "n",
"b", "ch", "d", "f", "g", "h", "j", "k", "l", "p", "s", "t", "y", "z", "m", "n", "kw",
"b", "ch", "d", "f", "g", "h", "j", "k", "l", "p", "s", "t", "v", "w", "y", "z", "m", "n", "kw",
"b", "h", "j", "l", "s", "y", "m", "n",
"b", "ch", "h", "j", "l", "s", "y", "z", "m", "n",
"b", "ch", "f", "g", "h", "j", "k", "l", "p", "s", "y", "z", "m", "n",
"b", "ch", "d", "f", "g", "h", "j", "k", "l", "p", "s", "t", "y", "z", "m", "n", "kw",
"b", "ch", "d", "f", "g", "h", "j", "k", "l", "p", "s", "t", "v", "w", "y", "z", "m", "n", "kw",
"b", "h", "j", "l", "s", "y", "m", "n",
"b", "ch", "h", "j", "l", "s", "y", "z", "m", "n",
"b", "ch", "f", "g", "h", "j", "k", "l", "p", "s", "y", "z", "m", "n",
"b", "ch", "d", "f", "g", "h", "j", "k", "l", "p", "s", "t", "y", "z", "m", "n", "kw",
"b", "ch", "d", "f", "g", "h", "j", "k", "l", "p", "s", "t", "v", "w", "y", "z", "m", "n", "kw",
"b", "h", "j", "l", "s", "y", "m", "n",
"b", "ch", "h", "j", "l", "s", "y", "z", "m", "n",
"b", "ch", "f", "g", "h", "j", "k", "l", "p", "s", "y", "z", "m", "n",
"b", "ch", "d", "f", "g", "h", "j", "k", "l", "p", "s", "t", "y", "z", "m", "n", "kw",
"b", "ch", "d", "f", "g", "h", "j", "k", "l", "p", "s", "t", "v", "w", "y", "z", "m", "n", "kw",
"nb", "nj", "ns", "nz",
"nb", "nch", "nj", "ns", "ny", "nz",
"nb", "nch", "nf", "ng", "nj", "nk", "np", "ns", "nz",
"nb", "nch", "nd", "nf", "ng", "nj", "nk", "np", "ns", "nt", "nz",
"nb", "nch", "nd", "nf", "ng", "nj", "nk", "np", "ns", "nt", "nv", "nw", "nz",
"mb", "ms", "my", "mz",
"mb", "mch","ms", "my", "mz",
"mb", "mch", "mk", "mp", "ms", "my", "mz",
"mb", "mch", "md", "mk", "mp", "ms", "mt", "my", "mz",
"mb", "mch", "md", "mf", "mg", "mj", "mk", "mp", "ms", "mt", "mv", "mw", "my", "mz",
"sh", "sh", "sh", "ny", "kw",
"dh", "th", "sh", "ny",
"dh", "th", "sh", "gh", "r", "ny",
"dh", "th", "sh", "gh", "r", "ny",
},
new String[]{
"b", "h", "j", "l", "s", "y", "m", "n",
"b", "ch", "h", "j", "l", "s", "y", "z", "m", "n",
"b", "ch", "f", "g", "h", "j", "k", "l", "p", "s", "y", "z", "m", "n",
"b", "ch", "d", "f", "g", "h", "j", "k", "l", "p", "s", "t", "y", "z", "m", "n", "kw",
"b", "ch", "d", "f", "g", "h", "j", "k", "l", "p", "s", "t", "v", "w", "y", "z", "m", "n", "kw",
"b", "h", "j", "l", "s", "y", "m", "n",
"b", "ch", "h", "j", "l", "s", "y", "z", "m", "n",
"b", "ch", "f", "g", "h", "j", "k", "l", "p", "s", "y", "z", "m", "n",
"b", "ch", "d", "f", "g", "h", "j", "k", "l", "p", "s", "t", "y", "z", "m", "n", "kw",
"b", "ch", "d", "f", "g", "h", "j", "k", "l", "p", "s", "t", "v", "w", "y", "z", "m", "n", "kw",
"b", "h", "j", "l", "s", "y", "m", "n",
"b", "ch", "h", "j", "l", "s", "y", "z", "m", "n",
"b", "ch", "f", "g", "h", "j", "k", "l", "p", "s", "y", "z", "m", "n",
"b", "ch", "d", "f", "g", "h", "j", "k", "l", "p", "s", "t", "y", "z", "m", "n", "kw",
"b", "ch", "d", "f", "g", "h", "j", "k", "l", "p", "s", "t", "v", "w", "y", "z", "m", "n", "kw",
"b", "h", "j", "l", "s", "y", "m", "n",
"b", "ch", "h", "j", "l", "s", "y", "z", "m", "n",
"b", "ch", "f", "g", "h", "j", "k", "l", "p", "s", "y", "z", "m", "n",
"b", "ch", "d", "f", "g", "h", "j", "k", "l", "p", "s", "t", "y", "z", "m", "n", "kw",
"b", "ch", "d", "f", "g", "h", "j", "k", "l", "p", "s", "t", "v", "w", "y", "z", "m", "n", "kw",
"nb", "nj", "ns", "nz",
"nb", "nch", "nj", "ns", "ny", "nz",
"nb", "nch", "nf", "ng", "nj", "nk", "np", "ns", "nz",
"nb", "nch", "nd", "nf", "ng", "nj", "nk", "np", "ns", "nt", "nz",
"nb", "nch", "nd", "nf", "ng", "nj", "nk", "np", "ns", "nt", "nw", "nz",
"mb", "ms", "my", "mz",
"mb", "mch","ms", "my", "mz",
"mb", "mch", "mk", "mp", "ms", "my", "mz",
"mb", "mch", "md", "mk", "mp", "ms", "mt", "my", "mz",
"mb", "mch", "md", "mf", "mg", "mj", "mk", "mp", "ms", "mt", "mw", "my", "mz",
"sh", "sh", "sh", "ny", "kw",
"dh", "th", "sh", "ny",
"dh", "th", "sh", "gh", "r", "ny",
"dh", "th", "sh", "gh", "r", "ny",
"ng", "ng", "ng", "ng", "ng"
},
new String[]{""},
new String[]{"a-@2a", "a-@2a", "a-@3a","a-@2a", "a-@2a", "a-@3a","i-@2i", "i-@2i", "i-@3i",
"e-@2e", "e-@2e", "e-@3e", "u-@2u", "u-@2u", "u-@3u",
},
new String[]{}, new int[]{1, 2, 3, 4, 5}, new double[]{1, 7, 6, 4, 2}, 0.2, 1.0, 0.0, 0.25, null, true);
/**
* Imitation Somali, using the Latin alphabet. Due to uncommon word structure, unusual allowed combinations of
* letters, and no common word roots with most familiar languages, this may seem like an unidentifiable or "alien"
* language to most readers. However, it's based on the Latin writing system for the Somali language (probably
* closest to the northern dialect), which due to the previously mentioned properties, makes it especially good for
* mixing with other languages to make letter combinations that seem strange to appear. It is unlikely that this
* particular generated language style will be familiar to readers, so it probably won't have existing stereotypes
* associated with the text. One early comment this received was, "it looks like a bunch of letters semi-randomly
* thrown together", which is probably a typical response (the comment was made by someone fluent in German and
* English, and most Western European languages are about as far as you can get from Somali).
* <br>
* Libor cat naqoxekh dhuugad gisiqir?
*/
public static final Finnegan SOMALI = new Finnegan(
new String[]{"a", "a", "a", "a", "a", "a", "a", "aa", "aa", "aa",
"e", "e", "ee",
"i", "i", "i", "i", "ii",
"o", "o", "o", "oo",
"u", "u", "u", "uu", "uu",
},
new String[]{},
new String[]{"b", "t", "j", "x", "kh", "d", "r", "s", "sh", "dh", "c", "g", "f", "q", "k", "l", "m",
"n", "w", "h", "y",
"x", "g", "b", "d", "s", "m", "dh", "n", "r",
"g", "b", "s", "dh",
},
new String[]{
"bb", "gg", "dd", "bb", "dd", "rr", "ddh", "cc", "gg", "ff", "ll", "mm", "nn",
"bb", "gg", "dd", "bb", "dd", "gg",
"bb", "gg", "dd", "bb", "dd", "gg",
"cy", "fk", "ft", "nt", "rt", "lt", "qm", "rdh", "rsh", "lq",
"my", "gy", "by", "lkh", "rx", "md", "bd", "dg", "fd", "mf",
"dh", "dh", "dh", "dh",
},
new String[]{
"b", "t", "j", "x", "kh", "d", "r", "s", "sh", "c", "g", "f", "q", "k", "l", "m", "n", "h",
"x", "g", "b", "d", "s", "m", "q", "n", "r",
"b", "t", "j", "x", "kh", "d", "r", "s", "sh", "c", "g", "f", "q", "k", "l", "m", "n", "h",
"x", "g", "b", "d", "s", "m", "q", "n", "r",
"b", "t", "j", "x", "kh", "d", "r", "s", "sh", "c", "g", "f", "q", "k", "l", "m", "n",
"g", "b", "d", "s", "q", "n", "r",
"b", "t", "x", "kh", "d", "r", "s", "sh", "g", "f", "q", "k", "l", "m", "n",
"g", "b", "d", "s", "r", "n",
"b", "t", "kh", "d", "r", "s", "sh", "g", "f", "q", "k", "l", "m", "n",
"g", "b", "d", "s", "r", "n",
"b", "t", "d", "r", "s", "sh", "g", "f", "q", "k", "l", "m", "n",
"g", "b", "d", "s", "r", "n",
},
new String[]{"aw", "ow", "ay", "ey", "oy", "ay", "ay"},
new String[]{}, new int[]{1, 2, 3, 4, 5}, new double[]{5, 4, 5, 4, 1}, 0.25, 0.3, 0.0, 0.08, null, true);
/**
* Imitation Hindi, romanized to use the Latin alphabet using accented glyphs similar to the IAST standard.
* You can get this to produce actual IAST glyphs by calling removeModifiers() on this, but most fonts do not
* support the glyphs that needs. If the modifier that does this is not removed, then the IAST standard glyphs
* {@code "ṛṝḷḹḍṭṅṇṣṃḥ"} become {@code "ŗŕļĺđţńņşĕĭ"}, with the nth glyph in the first string being substituted
* with the nth glyph in the second string.
* <br>
* Darvāga yar; ghađhinopŕauka āĕrdur, conśaigaijo śabhodhaĕđū jiviđaudu.
*/
public static final Finnegan HINDI_ROMANIZED = new Finnegan(
new String[]{
"a", "a", "a", "a", "a", "a", "ā", "ā", "i", "i", "i", "i", "ī", "ī",
"u", "u", "u", "ū", "e", "ai", "ai", "o", "o", "o", "au",
"a", "a", "a", "a", "a", "a", "ā", "ā", "i", "i", "i", "i", "ī", "ī",
"u", "u", "u", "ū", "e", "ai", "ai", "o", "o", "o", "au",
"a", "a", "a", "a", "a", "a", "ā", "ā", "i", "i", "i", "i", "ī", "ī",
"u", "u", "u", "ū", "e", "ai", "ai", "o", "o", "o", "au",
"a", "a", "a", "a", "a", "a", "ā", "ā", "i", "i", "i", "i", "ī", "ī",
"u", "u", "u", "ū", "e", "ai", "ai", "o", "o", "o", "au",
"a", "a", "a", "a", "a", "a", "ā", "ā", "i", "i", "i", "i", "ī", "i", "i", "ī", "ī",
"u", "u", "u", "ū", "u", "ū", "u", "ū", "e", "ai", "ai", "o", "o", "o", "au",
"a", "a", "a", "a", "a", "a", "ā", "ā", "i", "i", "i", "i", "ī", "i", "i", "ī", "ī",
"u", "u", "u", "ū", "u", "ū", "u", "ū", "e", "ai", "ai", "o", "o", "o", "au",
"a", "a", "a", "a", "a", "a", "ā", "ā", "i", "i", "i", "i", "ī", "i", "i", "ī", "ī",
"u", "u", "u", "ū", "u", "ū", "u", "ū", "e", "ai", "ai", "o", "o", "o", "au",
"a", "a", "a", "a", "a", "a", "ā", "ā", "i", "i", "i", "i", "ī", "i", "i", "ī", "ī",
"u", "u", "u", "ū", "u", "ū", "u", "ū", "e", "ai", "ai", "o", "o", "o", "au",
"aṃ", "aṃ", "aṃ", "aṃ", "aṃ", "āṃ", "āṃ", "iṃ", "iṃ", "iṃ", "īṃ", "īṃ",
"uṃ", "uṃ", "ūṃ", "aiṃ", "aiṃ", "oṃ", "oṃ", "oṃ", "auṃ",
//"aḥ", "aḥ", "aḥ", "aḥ", "aḥ", "āḥ", "āḥ", "iḥ", "iḥ", "iḥ", "īḥ", "īḥ",
//"uḥ", "uḥ", "ūḥ", "aiḥ", "aiḥ", "oḥ", "oḥ", "oḥ", "auḥ",
},
new String[]{"a'","i'","u'", "o'", "a'","i'","u'", "o'",
},
new String[]{
"k", "k", "k", "k", "k", "k", "k", "k", "kṛ", "kṝ", "kḷ",
"c", "c", "c", "c", "c", "c", "cṛ", "cṝ", "cḷ",
"ṭ", "t", "t", "t", "t", "t", "t", "t", "t", "t", "tṛ", "tṝ", "tṛ", "tṝ",
"p", "p", "p", "p", "p", "p", "p", "p", "p", "p", "pṛ", "pṝ", "pḷ", "pḹ", "pṛ", "pṝ", "p", "p",
"kh", "kh", "kh", "kh", "kh", "kh", "kh", "kh", "kh", "kh", "khṛ", "khṝ", "khḷ", "khḹ",
"ch", "ch", "ch", "ch", "ch", "ch", "ch", "ch", "ch", "chṛ", "chṝ", "chḷ", "chḹ",
"ṭh", "th", "th", "th", "th", "th", "th", "th", "th", "th", "thṛ", "thṝ", "thḷ", "thḹ",
"ph", "ph", "ph", "ph", "ph", "ph", "ph", "phṛ", "phṝ", "phḷ", "phḹ",
"g", "j", "ḍ", "d", "b", "gh", "jh", "ḍh", "dh", "bh",
"ṅ", "ñ", "ṇ", "n", "m", "h", "y", "r", "l", "v", "ś", "ṣ", "s",
"g", "j", "ḍ", "d", "b", "gh", "jh", "ḍh", "dh", "bh",
"ṅ", "ñ", "ṇ", "n", "m", "h", "y", "r", "l", "v", "ś", "ṣ", "s",
"g", "j", "ḍ", "d", "b", "gh", "jh", "ḍh", "dh", "bh",
"ṅ", "ñ", "ṇ", "n", "m", "h", "y", "r", "l", "v", "ś", "ṣ", "s",
"g", "j", "ḍ", "d", "b", "gh", "jh", "ḍh", "dh", "bh",
"ṅ", "ñ", "ṇ", "n", "m", "h", "y", "r", "l", "v", "ś", "ṣ", "s",
"g", "j", "ḍ", "d", "b", "gh", "jh", "ḍh", "dh", "bh",
"ṅ", "ñ", "ṇ", "n", "m", "h", "y", "r", "l", "v", "ś", "ṣ", "s",
"g", "j", "ḍ", "d", "b", "gh", "jh", "ḍh", "dh", "bh",
"ṅ", "ñ", "ṇ", "n", "m", "h", "y", "r", "l", "v", "ś", "ṣ", "s",
"g", "j", "ḍ", "d", "b", "gh", "jh", "ḍh", "dh", "bh",
"ṅ", "ñ", "ṇ", "n", "m", "h", "y", "r", "l", "v", "ś", "ṣ", "s",
"g", "j", "ḍ", "d", "b", "gh", "ḍh", "dh", "bh",
"ṅ", "ñ", "ṇ", "n", "m", "h", "y", "r", "l", "v", "ś", "ṣ", "s",
"g", "j", "ḍ", "d", "b", "gh", "ḍh", "dh", "bh",
"ṅ", "ṇ", "n", "m", "h", "y", "r", "l", "v", "ṣ", "s",
"g", "j", "ḍ", "d", "b", "gh", "ḍh", "dh", "bh",
"ṅ", "ṇ", "n", "m", "h", "y", "r", "l", "v", "ṣ", "s",
"g", "ḍ", "d", "b", "gh", "ḍh", "dh", "bh", "n", "m", "v", "s",
"g", "ḍ", "d", "b", "g", "d", "b", "dh", "bh", "n", "m", "v",
"g", "ḍ", "d", "b", "g", "d", "b", "dh", "bh", "n", "m", "v",
},
new String[]{
"k", "k", "k", "k", "k", "nk", "rk",
"k", "k", "k", "k", "k", "nk", "rk",
"k", "k", "k", "k", "k", "nk", "rk",
"k", "k", "k", "k", "k", "nk", "rk",
"k", "k", "k", "k", "k", "nk", "rk",
"k", "k", "k", "k", "k", "nk", "rk",
"k", "k", "k", "k", "k", "nk", "rk",
"k", "k", "k", "k", "k", "nk", "rk",
"kṛ", "kṛ", "kṛ", "kṛ", "kṛ", "nkṛ", "rkṛ",
"kṝ", "kṝ", "kṝ", "kṝ", "kṝ", "nkṝ", "rkṝ",
"kḷ", "kḷ", "kḷ", "kḷ", "kḷ", "nkḷ", "rkḷ",
"c", "c", "c", "c", "c", "c", "cṛ", "cṝ", "cḷ",
"ṭ", "t", "t", "t", "t", "t", "nt", "rt",
"ṭ", "t", "t", "t", "t", "nt", "rt",
"ṭ", "t", "t", "t", "t", "nt", "rt",
"ṭ", "t", "t", "t", "t", "nt", "rt",
"ṭ", "t", "t", "t", "t", "nt", "rt",
"ṭ", "t", "t", "t", "t", "nt", "rt",
"ṭ", "t", "t", "t", "t", "nt", "rt",
"ṭ", "t", "t", "t", "t", "nt", "rt",
"ṭ", "t", "t", "t", "t", "nt", "rt",
"tṛ", "tṛ", "tṛ", "tṛ", "tṛ", "ntṛ", "rtṛ",
"tṝ", "tṝ", "tṝ", "tṝ", "tṝ", "ntṝ", "rtṝ",
"tṛ", "tṛ", "tṛ", "tṛ", "tṛ", "ntṛ", "rtṛ",
"tṝ", "tṝ", "tṝ", "tṝ", "tṝ", "ntṝ", "rtṝ",
"p", "p", "p", "p", "p", "np", "rp",
"p", "p", "p", "p", "p", "np", "rp",
"p", "p", "p", "p", "p", "np", "rp",
"p", "p", "p", "p", "p", "np", "rp",
"p", "p", "p", "p", "p", "np", "rp",
"p", "p", "p", "p", "p", "np", "rp",
"p", "p", "p", "p", "p", "np", "rp",
"p", "p", "p", "p", "p", "np", "rp",
"p", "p", "p", "p", "p", "np", "rp",
"p", "p", "p", "p", "p", "np", "rp",
"pṛ", "pṛ", "pṛ", "pṛ", "pṛ", "npṛ", "rpṛ",
"pṝ", "pṝ", "pṝ", "pṝ", "pṝ", "npṝ", "rpṝ",
"pḷ", "pḷ", "pḷ", "pḷ", "pḷ", "npḷ", "rpḷ",
"pḹ", "pḹ", "pḹ", "pḹ", "pḹ", "npḹ", "rpḹ",
"pṛ", "pṛ", "pṛ", "pṛ", "pṛ", "npṛ", "rpṛ",
"pṝ", "pṝ", "pṝ", "pṝ", "pṝ", "npṝ", "rpṝ",
"p", "p", "p", "p", "p", "np", "rp",
"p", "p", "p", "p", "p", "np", "rp",
"kh", "kh", "kh", "kh", "kh", "nkh", "rkh",
"kh", "kh", "kh", "kh", "kh", "nkh", "rkh",
"kh", "kh", "kh", "kh", "kh", "nkh", "rkh",
"kh", "kh", "kh", "kh", "kh", "nkh", "rkh",
"kh", "kh", "kh", "kh", "kh", "nkh", "rkh",
"kh", "kh", "kh", "kh", "kh", "nkh", "rkh",
"kh", "kh", "kh", "kh", "kh", "nkh", "rkh",
"kh", "kh", "kh", "kh", "kh", "nkh", "rkh",
"kh", "kh", "kh", "kh", "kh", "nkh", "rkh",
"kh", "kh", "kh", "kh", "kh", "nkh", "rkh",
"khṛ", "khṛ", "khṛ", "khṛ", "khṛ", "nkhṛ", "rkhṛ",
"khṝ", "khṝ", "khṝ", "khṝ", "khṝ", "nkhṝ", "rkhṝ",
"khḷ", "khḷ", "khḷ", "khḷ", "khḷ", "nkhḷ", "rkhḷ",
"khḹ", "khḹ", "khḹ", "khḹ", "khḹ", "nkhḹ", "rkhḹ",
"ch", "ch", "ch", "ch", "ch", "ch", "ch", "ch", "ch", "chṛ", "chṝ", "chḷ", "chḹ",
"ṭh", "th", "th", "th", "th", "th", "nth", "rth",
"th", "th", "th", "th", "th", "nth", "rth",
"th", "th", "th", "th", "th", "nth", "rth",
"th", "th", "th", "th", "th", "nth", "rth",
"th", "th", "th", "th", "th", "nth", "rth",
"th", "th", "th", "th", "th", "nth", "rth",
"th", "th", "th", "th", "th", "nth", "rth",
"th", "th", "th", "th", "th", "nth", "rth",
"th", "th", "th", "th", "th", "nth", "rth",
"thṛ", "thṛ", "thṛ", "thṛ", "thṛ", "nthṛ", "rthṛ",
"thṝ", "thṝ", "thṝ", "thṝ", "thṝ", "nthṝ", "rthṝ",
"thḷ", "thḷ", "thḷ", "thḷ", "thḷ", "nthḷ", "rthḷ",
"thḹ", "thḹ", "thḹ", "thḹ", "thḹ", "nthḹ", "rthḹ",
"ph", "ph", "ph", "ph", "ph", "nph", "rph",
"ph", "ph", "ph", "ph", "ph", "nph", "rph",
"ph", "ph", "ph", "ph", "ph", "nph", "rph",
"ph", "ph", "ph", "ph", "ph", "nph", "rph",
"ph", "ph", "ph", "ph", "ph", "nph", "rph",
"ph", "ph", "ph", "ph", "ph", "nph", "rph",
"ph", "ph", "ph", "ph", "ph", "nph", "rph",
"phṛ", "phṛ", "phṛ", "phṛ", "phṛ", "nphṛ", "rphṛ",
"phṝ", "phṝ", "phṝ", "phṝ", "phṝ", "nphṝ", "rphṝ",
"phḷ", "phḷ", "phḷ", "phḷ", "phḷ", "nphḷ", "rphḷ",
"phḹ", "phḹ", "phḹ", "phḹ", "phḹ", "nphḹ", "rphḹ",
"g", "g", "g", "g", "g", "ng", "rg",
"j", "j", "j", "j", "j", "nj", "rj",
"ḍ", "ḍ", "ḍ", "ḍ", "ḍ", "nḍ", "rḍ",
"d", "d", "d", "d", "d", "nd", "rd",
"b", "b", "b", "b", "b", "nb", "rb",
"gh", "gh", "gh", "gh", "gh", "ngh", "rgh",
"jh", "ḍh", "ḍh", "ḍh", "ḍh", "ḍh", "nḍh", "rḍh",
"dh", "dh", "dh", "dh", "dh", "ndh", "rdh",
"bh", "bh", "bh", "bh", "bh", "nbh", "rbh",
"ṅ", "ñ", "ṇ", "n", "m", "m", "m", "m", "m", "nm", "rm",
"h", "y", "y", "y", "y", "y", "ny", "ry",
"r", "l", "v", "v", "v", "v", "v", "nv", "rv",
"ś", "ś", "ś", "ś", "ś", "nś", "rś",
"ṣ", "ṣ", "ṣ", "ṣ", "ṣ", "nṣ", "rṣ",
"s", "s", "s", "s", "s", "ns", "rs",
"g", "g", "g", "g", "g", "ng", "rg",
"j", "j", "j", "j", "j", "nj", "rj",
"ḍ", "ḍ", "ḍ", "ḍ", "ḍ", "nḍ", "rḍ",
"d", "d", "d", "d", "d", "nd", "rd",
"b", "b", "b", "b", "b", "nb", "rb",
"gh", "gh", "gh", "gh", "gh", "ngh", "rgh",
"jh", "ḍh", "ḍh", "ḍh", "ḍh", "ḍh", "nḍh", "rḍh",
"dh", "dh", "dh", "dh", "dh", "ndh", "rdh",
"bh", "bh", "bh", "bh", "bh", "nbh", "rbh",
"ṅ", "ñ", "ṇ", "n", "m", "m", "m", "m", "m", "nm", "rm",
"h", "y", "y", "y", "y", "y", "ny", "ry",
"r", "l", "v", "v", "v", "v", "v", "nv", "rv",
"ś", "ś", "ś", "ś", "ś", "nś", "rś",
"ṣ", "ṣ", "ṣ", "ṣ", "ṣ", "nṣ", "rṣ",
"s", "s", "s", "s", "s", "ns", "rs",
"g", "g", "g", "g", "g", "ng", "rg",
"j", "j", "j", "j", "j", "nj", "rj",
"ḍ", "ḍ", "ḍ", "ḍ", "ḍ", "nḍ", "rḍ",
"d", "d", "d", "d", "d", "nd", "rd",
"b", "b", "b", "b", "b", "nb", "rb",
"gh", "gh", "gh", "gh", "gh", "ngh", "rgh",
"jh", "ḍh", "ḍh", "ḍh", "ḍh", "ḍh", "nḍh", "rḍh",
"dh", "dh", "dh", "dh", "dh", "ndh", "rdh",
"bh", "bh", "bh", "bh", "bh", "nbh", "rbh",
"ṅ", "ñ", "ṇ", "n", "m", "m", "m", "m", "m", "nm", "rm",
"h", "y", "y", "y", "y", "y", "ny", "ry",
"r", "l", "v", "v", "v", "v", "v", "nv", "rv",
"ś", "ś", "ś", "ś", "ś", "nś", "rś",
"ṣ", "ṣ", "ṣ", "ṣ", "ṣ", "nṣ", "rṣ",
"s", "s", "s", "s", "s", "ns", "rs",
"g", "g", "g", "g", "g", "ng", "rg",
"j", "j", "j", "j", "j", "nj", "rj",
"ḍ", "ḍ", "ḍ", "ḍ", "ḍ", "nḍ", "rḍ",
"d", "d", "d", "d", "d", "nd", "rd",
"b", "b", "b", "b", "b", "nb", "rb",
"gh", "gh", "gh", "gh", "gh", "ngh", "rgh",
"jh", "ḍh", "ḍh", "ḍh", "ḍh", "ḍh", "nḍh", "rḍh",
"dh", "dh", "dh", "dh", "dh", "ndh", "rdh",
"bh", "bh", "bh", "bh", "bh", "nbh", "rbh",
"ṅ", "ñ", "ṇ", "n", "m", "m", "m", "m", "m", "nm", "rm",
"h", "y", "y", "y", "y", "y", "ny", "ry",
"r", "l", "v", "v", "v", "v", "v", "nv", "rv",
"ś", "ś", "ś", "ś", "ś", "nś", "rś",
"ṣ", "ṣ", "ṣ", "ṣ", "ṣ", "nṣ", "rṣ",
"s", "s", "s", "s", "s", "ns", "rs",
"g", "g", "g", "g", "g", "ng", "rg",
"j", "j", "j", "j", "j", "nj", "rj",
"ḍ", "ḍ", "ḍ", "ḍ", "ḍ", "nḍ", "rḍ",
"d", "d", "d", "d", "d", "nd", "rd",
"b", "b", "b", "b", "b", "nb", "rb",
"gh", "gh", "gh", "gh", "gh", "ngh", "rgh",
"jh", "ḍh", "ḍh", "ḍh", "ḍh", "ḍh", "nḍh", "rḍh",