plyx 0.1.5

CLI companion for ply-engine: scaffold projects, manage fonts, build Android APKs & WASM bundles.
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
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
[
  "Roboto",
  "Open Sans",
  "Google Sans",
  "Noto Sans JP",
  "Inter",
  "Montserrat",
  "Poppins",
  "Lato",
  "Roboto Condensed",
  "Arimo",
  "Roboto Mono",
  "Oswald",
  "Noto Sans",
  "Raleway",
  "Nunito",
  "Nunito Sans",
  "Playfair Display",
  "Rubik",
  "Ubuntu",
  "Roboto Slab",
  "DM Sans",
  "Merriweather",
  "Work Sans",
  "PT Sans",
  "Noto Sans KR",
  "Kanit",
  "Lora",
  "Mulish",
  "Manrope",
  "Archivo",
  "Quicksand",
  "Fjalla One",
  "Outfit",
  "Archivo Black",
  "Bebas Neue",
  "Fira Sans",
  "Figtree",
  "Noto Sans TC",
  "Barlow",
  "Inconsolata",
  "IBM Plex Sans",
  "Hind Siliguri",
  "Source Sans 3",
  "Prompt",
  "Titillium Web",
  "Heebo",
  "Karla",
  "Noto Serif",
  "Saira",
  "Jost",
  "PT Serif",
  "Bricolage Grotesque",
  "Share Tech",
  "Smooch Sans",
  "Lobster Two",
  "Plus Jakarta Sans",
  "Libre Baskerville",
  "Noto Color Emoji",
  "Dancing Script",
  "Source Code Pro",
  "EB Garamond",
  "Josefin Sans",
  "Cairo",
  "Libre Franklin",
  "Noto Serif JP",
  "Bungee",
  "Schibsted Grotesk",
  "Public Sans",
  "Anton",
  "Barlow Condensed",
  "Dosis",
  "Mukta",
  "Roboto Flex",
  "Bitter",
  "Noto Sans SC",
  "Ramabhadra",
  "Noto Sans Telugu",
  "Cabin",
  "Space Grotesk",
  "Anek Telugu",
  "Changa One",
  "Assistant",
  "Pacifico",
  "Alfa Slab One",
  "Oxygen",
  "Nanum Gothic",
  "M PLUS Rounded 1c",
  "Hind",
  "Lexend",
  "Exo 2",
  "Red Hat Display",
  "Lobster",
  "Overpass",
  "Gravitas One",
  "Cormorant Garamond",
  "Inter Tight",
  "Slabo 27px",
  "Crimson Text",
  "Caveat",
  "Tajawal",
  "Comfortaa",
  "Tinos",
  "Urbanist",
  "Arvo",
  "Sora",
  "PT Sans Narrow",
  "Rajdhani",
  "DM Serif Display",
  "Abel",
  "Teko",
  "Almarai",
  "Noto Sans Arabic",
  "Lexend Deca",
  "Source Serif 4",
  "Merriweather Sans",
  "Orbitron",
  "Satisfy",
  "Domine",
  "Barlow Semi Condensed",
  "Asap",
  "Shadows Into Light",
  "M PLUS 1p",
  "Lilita One",
  "Cinzel",
  "Fira Sans Condensed",
  "Indie Flower",
  "IBM Plex Mono",
  "Fredoka",
  "Questrial",
  "Abril Fatface",
  "Play",
  "Noto Sans Thai",
  "Instrument Serif",
  "Maven Pro",
  "Varela Round",
  "Bodoni Moda",
  "JetBrains Mono",
  "IBM Plex Serif",
  "Be Vietnam Pro",
  "Zen Kaku Gothic New",
  "Zilla Slab",
  "Exo",
  "Marcellus",
  "Google Sans Flex",
  "Kalam",
  "Geist",
  "Archivo Narrow",
  "Instrument Sans",
  "IBM Plex Sans Arabic",
  "Unbounded",
  "ABeeZee",
  "Chakra Petch",
  "Great Vibes",
  "Albert Sans",
  "Spectral",
  "DM Mono",
  "Geologica",
  "Epilogue",
  "Titan One",
  "Google Sans Code",
  "League Spartan",
  "Sofia Sans",
  "Signika",
  "Noto Kufi Arabic",
  "Cormorant",
  "Vollkorn",
  "Onest",
  "Catamaran",
  "Nanum Myeongjo",
  "Alegreya",
  "Noto Sans Display",
  "Frank Ruhl Libre",
  "Roboto Serif",
  "Permanent Marker",
  "Yanone Kaffeesatz",
  "Zen Maru Gothic",
  "Luckiest Guy",
  "Sarabun",
  "Noto Serif SC",
  "Rowdies",
  "Space Mono",
  "Bree Serif",
  "Alegreya Sans",
  "Creepster",
  "Noto Serif KR",
  "Rubik Mono One",
  "Acme",
  "Montserrat Alternates",
  "Saira Condensed",
  "Hanken Grotesk",
  "Unna",
  "Yellowtail",
  "Asap Condensed",
  "Noto Sans Symbols",
  "Sanchez",
  "Atkinson Hyperlegible",
  "Amiri",
  "Cardo",
  "Encode Sans",
  "Rethink Sans",
  "Geist Mono",
  "Fraunces",
  "Advent Pro",
  "Noto Serif TC",
  "DM Serif Text",
  "Newsreader",
  "Chivo",
  "Signika Negative",
  "Crimson Pro",
  "Antic Slab",
  "Amatic SC",
  "Righteous",
  "Oleo Script",
  "Alata",
  "Martel",
  "Prata",
  "Hind Madurai",
  "Alumni Sans",
  "Baskervville",
  "Noto Naskh Arabic",
  "Russo One",
  "Courgette",
  "Patua One",
  "Changa",
  "Noto Sans Devanagari",
  "Libre Caslon Text",
  "STIX Two Text",
  "Sawarabi Mincho",
  "Actor",
  "Kumbh Sans",
  "Comic Neue",
  "Paytone One",
  "Gothic A1",
  "News Cycle",
  "Readex Pro",
  "Syne",
  "Shippori Mincho",
  "Tenor Sans",
  "Libre Barcode 39",
  "Red Hat Text",
  "Encode Sans Condensed",
  "Noticia Text",
  "Courier Prime",
  "League Gothic",
  "Literata",
  "PT Sans Caption",
  "Allura",
  "Francois One",
  "Commissioner",
  "Crete Round",
  "Kaushan Script",
  "Viga",
  "Aleo",
  "Old Standard TT",
  "Delius",
  "Press Start 2P",
  "Sawarabi Gothic",
  "Sacramento",
  "Fira Code",
  "Bangers",
  "Noto Sans Mono",
  "Patrick Hand",
  "Cantarell",
  "Philosopher",
  "Ubuntu Condensed",
  "Yantramanav",
  "Hammersmith One",
  "Andada Pro",
  "Chango",
  "Passion One",
  "Gruppo",
  "Mitr",
  "Rammetto One",
  "Didact Gothic",
  "Quattrocento",
  "Golos Text",
  "Fugaz One",
  "Lusitana",
  "Josefin Slab",
  "Baloo 2",
  "Rokkitt",
  "Parisienne",
  "Audiowide",
  "Noto Sans Bengali",
  "El Messiri",
  "Noto Sans Tamil",
  "Oxanium",
  "Gloria Hallelujah",
  "Vazirmatn",
  "Sen",
  "Special Elite",
  "Playfair",
  "Eater",
  "Eczar",
  "Nanum Gothic Coding",
  "BIZ UDPGothic",
  "Radio Canada",
  "PT Mono",
  "Quattrocento Sans",
  "IBM Plex Sans Condensed",
  "Libre Bodoni",
  "Kosugi Maru",
  "Sorts Mill Goudy",
  "Zeyada",
  "Alexandria",
  "Concert One",
  "Italianno",
  "Playball",
  "Gilda Display",
  "Amaranth",
  "Tangerine",
  "IBM Plex Sans JP",
  "Gelasio",
  "Krub",
  "Sofia Sans Condensed",
  "Playfair Display SC",
  "Cookie",
  "M PLUS 1",
  "Forum",
  "Zen Old Mincho",
  "Architects Daughter",
  "Quantico",
  "Istok Web",
  "Rock Salt",
  "Homemade Apple",
  "Neuton",
  "Pathway Gothic One",
  "Berkshire Swash",
  "Antonio",
  "Khand",
  "Staatliches",
  "Poiret One",
  "Jura",
  "Bai Jamjuree",
  "VT323",
  "Alex Brush",
  "Lustria",
  "Noto Nastaliq Urdu",
  "Noto Sans Hebrew",
  "Reem Kufi",
  "Macondo",
  "Amita",
  "Noto Serif Bengali",
  "Ropa Sans",
  "Monoton",
  "Yeseva One",
  "Dela Gothic One",
  "Merienda",
  "Handlee",
  "Alice",
  "Abhaya Libre",
  "Pinyon Script",
  "Blinker",
  "Hind Guntur",
  "Biryani",
  "Cinzel Decorative",
  "Lexend Giga",
  "Faustina",
  "Mukta Malar",
  "Reenie Beanie",
  "Petrona",
  "Arsenal",
  "Nothing You Could Do",
  "Volkhov",
  "Monda",
  "Pangolin",
  "Taviraj",
  "Mada",
  "Ubuntu Mono",
  "Anonymous Pro",
  "Share Tech Mono",
  "Boogaloo",
  "Gabarito",
  "Hind Vadodara",
  "Saira Extra Condensed",
  "Calistoga",
  "Andika",
  "Vidaloka",
  "Mr Dafoe",
  "Itim",
  "Sofia Sans Extra Condensed",
  "Belleza",
  "Fira Mono",
  "Cuprum",
  "Sofia",
  "Cousine",
  "Syncopate",
  "Varela",
  "Bad Script",
  "Unica One",
  "Ruda",
  "Cedarville Cursive",
  "Belanosima",
  "Pridi",
  "Ultra",
  "Noto Sans HK",
  "Kufam",
  "Rochester",
  "Cormorant Infant",
  "Fira Sans Extra Condensed",
  "Saira Semi Condensed",
  "GFS Didot",
  "Tilt Warp",
  "Mona Sans",
  "Michroma",
  "Wix Madefor Text",
  "Gudea",
  "Marck Script",
  "Noto Serif Display",
  "Pontano Sans",
  "Afacad",
  "Cabin Condensed",
  "Squada One",
  "Tomorrow",
  "Secular One",
  "Nanum Pen Script",
  "Londrina Solid",
  "Economica",
  "Wix Madefor Display",
  "Black Ops One",
  "Martel Sans",
  "Caveat Brush",
  "Gochi Hand",
  "Damion",
  "Yrsa",
  "Carter One",
  "Shippori Mincho B1",
  "Sriracha",
  "Zen Kaku Gothic Antique",
  "Murecho",
  "Lateef",
  "K2D",
  "Arapey",
  "Julius Sans One",
  "Niramit",
  "Racing Sans One",
  "Spline Sans",
  "Ovo",
  "Akshar",
  "Nixie One",
  "Balsamiq Sans",
  "Sarala",
  "Allison",
  "Khula",
  "Leckerli One",
  "Besley",
  "Adamina",
  "Pragati Narrow",
  "Pirata One",
  "Gloock",
  "Reddit Sans",
  "MuseoModerno",
  "Ms Madi",
  "Mrs Saint Delafield",
  "Black Han Sans",
  "Basic",
  "Just Another Hand",
  "Averia Serif Libre",
  "Chewy",
  "La Belle Aurore",
  "Goldman",
  "Red Rose",
  "Bevan",
  "Covered By Your Grace",
  "Noto Sans Malayalam",
  "Kaisei Decol",
  "IBM Plex Sans Thai",
  "Sansita",
  "Shrikhand",
  "Coda",
  "Glegoo",
  "BenchNine",
  "Potta One",
  "Lemonada",
  "Six Caps",
  "Georama",
  "Mali",
  "Overpass Mono",
  "Hachi Maru Pop",
  "Karma",
  "Lalezar",
  "Aclonica",
  "Bowlby One SC",
  "Rufina",
  "Grandstander",
  "Fredericka the Great",
  "Bona Nova SC",
  "Alegreya Sans SC",
  "Palanquin",
  "Funnel Sans",
  "Kreon",
  "Aboreto",
  "Days One",
  "Marcellus SC",
  "Stardos Stencil",
  "Mandali",
  "Yatra One",
  "Yuji Mai",
  "Anek Bangla",
  "Host Grotesk",
  "Armata",
  "Palanquin Dark",
  "Corben",
  "Shadows Into Light Two",
  "Charm",
  "Nova Square",
  "Italiana",
  "Darker Grotesque",
  "Judson",
  "Atkinson Hyperlegible Next",
  "Alef",
  "Anuphan",
  "Kiwi Maru",
  "Neucha",
  "Livvic",
  "Allerta Stencil",
  "Rakkas",
  "Rye",
  "Bellota Text",
  "Jua",
  "Sintony",
  "Electrolize",
  "M PLUS 2",
  "Anek Latin",
  "Inria Serif",
  "Libre Barcode 39 Text",
  "Kameron",
  "Krona One",
  "Young Serif",
  "Nobile",
  "Herr Von Muellerhoff",
  "Cabin Sketch",
  "Chonburi",
  "Fahkwang",
  "Do Hyeon",
  "Castoro",
  "Limelight",
  "Rozha One",
  "Cormorant Upright",
  "BIZ UDGothic",
  "Laila",
  "Alatsi",
  "Fustat",
  "Bungee Spice",
  "Radley",
  "Tiro Bangla",
  "Lexend Exa",
  "Podkova",
  "Nanum Brush Script",
  "Hepta Slab",
  "Metrophobic",
  "UnifrakturMaguntia",
  "Aldrich",
  "Grand Hotel",
  "Ma Shan Zheng",
  "Averia Libre",
  "Candal",
  "Caprasimo",
  "Gantari",
  "Proza Libre",
  "Pattaya",
  "Brygada 1918",
  "Uncial Antiqua",
  "Sofia Sans Semi Condensed",
  "Arbutus Slab",
  "Sevillana",
  "Share",
  "Geo",
  "Kosugi",
  "PT Serif Caption",
  "Mate",
  "Faster One",
  "Spinnaker",
  "Schoolbell",
  "Bellefair",
  "Baloo Da 2",
  "Cairo Play",
  "Protest Revolution",
  "Caudex",
  "Glory",
  "Athiti",
  "Caladea",
  "Oranienbaum",
  "Oooh Baby",
  "Klee One",
  "Familjen Grotesk",
  "Waiting for the Sunrise",
  "Cutive Mono",
  "Enriqueta",
  "Amiko",
  "Koulen",
  "Mallanna",
  "Whisper",
  "Barriecito",
  "Ephesis",
  "Rancho",
  "Markazi Text",
  "Jockey One",
  "RocknRoll One",
  "Graduate",
  "Parkinsans",
  "Ubuntu Sans",
  "Fondamento",
  "Cantata One",
  "Trirong",
  "Major Mono Display",
  "Knewave",
  "Coming Soon",
  "Monsieur La Doulaise",
  "Zalando Sans Expanded",
  "Wallpoet",
  "SUSE",
  "Suez One",
  "Annie Use Your Telescope",
  "Libre Caslon Display",
  "Sometype Mono",
  "Kristi",
  "DotGothic16",
  "Libre Barcode 128",
  "Zen Antique",
  "Montagu Slab",
  "Fragment Mono",
  "Silkscreen",
  "Goudy Bookletter 1911",
  "Vina Sans",
  "Mochiy Pop One",
  "Dawning of a New Day",
  "Petit Formal Script",
  "Antic Didone",
  "Honk",
  "Allerta",
  "ADLaM Display",
  "Marmelad",
  "Norican",
  "Arizonia",
  "Gowun Batang",
  "Funnel Display",
  "Antic",
  "Rampart One",
  "Niconne",
  "Telex",
  "Sigmar One",
  "Alegreya SC",
  "Flow Circular",
  "BioRhyme",
  "Overlock",
  "Hina Mincho",
  "Croissant One",
  "Halant",
  "Yesteryear",
  "Chivo Mono",
  "Average Sans",
  "Ysabeau Office",
  "Pixelify Sans",
  "Fjord One",
  "Love Ya Like A Sister",
  "REM",
  "Calligraffitti",
  "Yusei Magic",
  "Style Script",
  "Cormorant SC",
  "Ibarra Real Nova",
  "Oxygen Mono",
  "Dongle",
  "Tilt Neon",
  "Irish Grover",
  "Encode Sans Expanded",
  "Carlito",
  "Bentham",
  "Carrois Gothic",
  "DynaPuff",
  "Recursive",
  "Azeret Mono",
  "AR One Sans",
  "Radio Canada Big",
  "Agbalumo",
  "Hahmlet",
  "IM Fell English",
  "Kurale",
  "Sniglet",
  "Kantumruy Pro",
  "Contrail One",
  "Bowlby One",
  "Maitree",
  "IBM Plex Sans KR",
  "Cherry Bomb One",
  "Gabriela",
  "BIZ UDPMincho",
  "Bayon",
  "Sansita Swashed",
  "Rosario",
  "Big Shoulders",
  "Anton SC",
  "Spectral SC",
  "Seaweed Script",
  "Baloo Bhaijaan 2",
  "Mountains of Christmas",
  "Noto Sans Math",
  "Lexend Peta",
  "Bubblegum Sans",
  "Noto Sans Kannada",
  "Skranji",
  "Agdasima",
  "Over the Rainbow",
  "Average",
  "Kadwa",
  "Mouse Memoirs",
  "Noto Serif Devanagari",
  "Turret Road",
  "Inria Sans",
  "Cormorant Unicase",
  "Grenze Gotisch",
  "Bungee Inline",
  "Noto Sans Sinhala",
  "Syne Mono",
  "Meddon",
  "Noto Serif Hebrew",
  "Marvel",
  "IM Fell English SC",
  "ZCOOL XiaoWei",
  "Kelly Slab",
  "Copse",
  "Quintessential",
  "Jersey 10",
  "Licorice",
  "Scada",
  "Quando",
  "Nova Mono",
  "Tektur",
  "Lekton",
  "Encode Sans Semi Condensed",
  "Fauna One",
  "Jersey 25",
  "IM Fell DW Pica",
  "Noto Emoji",
  "Noto Serif Thai",
  "Anek Devanagari",
  "IBM Plex Sans Hebrew",
  "Charis SIL",
  "Magra",
  "McLaren",
  "Birthstone",
  "Sedgwick Ave Display",
  "Afacad Flux",
  "Edu SA Beginner",
  "Balthazar",
  "Pathway Extreme",
  "Corinthia",
  "Amarante",
  "Qwigley",
  "Hanuman",
  "Fanwood Text",
  "Metamorphous",
  "Baloo Thambi 2",
  "Qwitcher Grypen",
  "B612 Mono",
  "Fresca",
  "Sue Ellen Francisco",
  "Kaisei Opti",
  "Trocchi",
  "Saira Stencil One",
  "Aguafina Script",
  "Waterfall",
  "Chelsea Market",
  "Asul",
  "Alike",
  "Rasa",
  "Rambla",
  "Pompiere",
  "Fuzzy Bubbles",
  "Aref Ruqaa",
  "Hurricane",
  "Noto Sans Georgian",
  "Bungee Shade",
  "Mina",
  "Vibur",
  "MedievalSharp",
  "Ruslan Display",
  "Farro",
  "WindSong",
  "Meie Script",
  "Della Respira",
  "Mukta Vaani",
  "KoHo",
  "Zain",
  "Poetsen One",
  "Manjari",
  "ZCOOL KuaiLe",
  "Mansalva",
  "Kodchasan",
  "Cambay",
  "Anybody",
  "Hedvig Letters Serif",
  "Vast Shadow",
  "B612",
  "Short Stack",
  "Encode Sans Semi Expanded",
  "Jomhuria",
  "Gurajada",
  "Rouge Script",
  "Red Hat Mono",
  "Prosto One",
  "Baloo Chettan 2",
  "Gotu",
  "Coiny",
  "Xanh Mono",
  "Voltaire",
  "Cal Sans",
  "Buenard",
  "Happy Monkey",
  "Lexend Zetta",
  "Zen Dots",
  "Coustard",
  "Jaldi",
  "Vujahday Script",
  "Delius Unicase",
  "Walter Turncoat",
  "Platypi",
  "Euphoria Script",
  "Sarina",
  "Baloo Tamma 2",
  "Miriam Libre",
  "Julee",
  "Qahiri",
  "Special Gothic",
  "David Libre",
  "Lacquer",
  "Solway",
  "Give You Glory",
  "Elsie",
  "Iceland",
  "Noto Sans Meetei Mayek",
  "Megrim",
  "Atma",
  "Molengo",
  "Expletus Sans",
  "Train One",
  "Fontdiner Swanky",
  "Thasadith",
  "Zen Kurenaido",
  "Germania One",
  "Piazzolla",
  "Salsa",
  "Shojumaru",
  "Capriola",
  "Viaoda Libre",
  "Zen Antique Soft",
  "Shantell Sans",
  "Modak",
  "Brawler",
  "Gentium Plus",
  "Gluten",
  "Imprima",
  "Vollkorn SC",
  "Martian Mono",
  "Oleo Script Swash Caps",
  "Mako",
  "Libre Barcode 39 Extended Text",
  "Reggae One",
  "Freehand",
  "Federo",
  "Mohave",
  "Esteban",
  "Sunflower",
  "Noto Sans Myanmar",
  "Finger Paint",
  "Meow Script",
  "Slackey",
  "Kalnia",
  "Orelega One",
  "Bigshot One",
  "Allan",
  "Grape Nuts",
  "Inknut Antiqua",
  "Cutive",
  "Montez",
  "Crafty Girls",
  "Mr De Haviland",
  "Puritan",
  "League Script",
  "Anaheim",
  "Iceberg",
  "Kablammo",
  "Aladin",
  "Libre Barcode 128 Text",
  "Vesper Libre",
  "Goblin One",
  "Poly",
  "Oregano",
  "Truculenta",
  "Baloo Paaji 2",
  "Denk One",
  "Padauk",
  "Bilbo Swash Caps",
  "Nosifer",
  "Arima",
  "Battambang",
  "Rubik Dirt",
  "Cambo",
  "Jaro",
  "Just Me Again Down Here",
  "Scheherazade New",
  "The Girl Next Door",
  "Almendra",
  "Redressed",
  "Tienne",
  "Kranky",
  "Loved by the King",
  "Monomaniac One",
  "Doppio One",
  "Inder",
  "Asar",
  "Lumanosimo",
  "TikTok Sans",
  "Mukta Mahee",
  "Zalando Sans",
  "Gaegu",
  "LXGW WenKai TC",
  "Sunshiney",
  "Hi Melody",
  "Noto Sans Khmer",
  "Slabo 13px",
  "Emilys Candy",
  "Tenali Ramakrishna",
  "MonteCarlo",
  "Delicious Handrawn",
  "Numans",
  "Supermercado One",
  "Noto Sans Lao Looped",
  "Cherry Cream Soda",
  "Gamja Flower",
  "Artifika",
  "Lemon",
  "Kaisei Tokumin",
  "Freeman",
  "Odibee Sans",
  "Shanti",
  "Noto Sans Gujarati",
  "Gowun Dodum",
  "Sancreek",
  "IM Fell Double Pica",
  "Alike Angular",
  "Nokora",
  "Tiro Devanagari Hindi",
  "Lily Script One",
  "Ribeye",
  "Square Peg",
  "Prociono",
  "Wendy One",
  "Sedgwick Ave",
  "Holtwood One SC",
  "NTR",
  "Bakbak One",
  "New Rocker",
  "Original Surfer",
  "Voces",
  "Rubik Glitch",
  "Codystar",
  "Special Gothic Condensed One",
  "Wire One",
  "Bokor",
  "Amethysta",
  "Solitreo",
  "Playpen Sans",
  "Yuji Syuku",
  "Stick No Bills",
  "Shippori Antique",
  "Noto Sans Gunjala Gondi",
  "Charmonman",
  "Dynalight",
  "Bellota",
  "Teachers",
  "Noto Sans Thai Looped",
  "Poller One",
  "Unkempt",
  "Nova Round",
  "Averia Sans Libre",
  "Peralta",
  "Moul",
  "Song Myung",
  "Arya",
  "Madimi One",
  "Protest Strike",
  "Rubik Bubbles",
  "Road Rage",
  "Monofett",
  "Noto Serif HK",
  "Anek Malayalam",
  "Sarpanch",
  "Suranna",
  "Clicker Script",
  "Noto Serif Khojki",
  "Mochiy Pop P One",
  "Crushed",
  "Reddit Sans Condensed",
  "Patrick Hand SC",
  "Baloo Bhai 2",
  "Rosarivo",
  "Swanky and Moo Moo",
  "Sour Gummy",
  "Baloo Tammudu 2",
  "Mirza",
  "IM Fell Great Primer",
  "Sail",
  "Spicy Rice",
  "Beth Ellen",
  "Nerko One",
  "UnifrakturCook",
  "Galada",
  "Bubbler One",
  "Cherry Swash",
  "Harmattan",
  "Benne",
  "Carme",
  "Raleway Dots",
  "M PLUS 1 Code",
  "Hubot Sans",
  "Gulzar",
  "Baumans",
  "Chicle",
  "Trade Winds",
  "Modern Antiqua",
  "Comme",
  "Rhodium Libre",
  "Angkor",
  "Inclusive Sans",
  "ZCOOL QingKe HuangYou",
  "Henny Penny",
  "Cantora One",
  "Noto Sans Thaana",
  "Eagle Lake",
  "IM Fell DW Pica SC",
  "Maiden Orange",
  "Orienta",
  "Noto Sans Armenian",
  "Frijole",
  "Noto Sans Chorasmian",
  "Special Gothic Expanded One",
  "IM Fell French Canon",
  "Varta",
  "Akatab",
  "Abyssinica SIL",
  "Ledger",
  "Carattere",
  "Gayathri",
  "Vampiro One",
  "Playwrite AT",
  "Aoboshi One",
  "Katibeh",
  "Convergence",
  "Montaga",
  "Borel",
  "Kdam Thmor Pro",
  "Duru Sans",
  "Nova Flat",
  "Moon Dance",
  "Comic Relief",
  "Life Savers",
  "Gemunu Libre",
  "Anta",
  "Gentium Book Plus",
  "Macondo Swash Caps",
  "Zhi Mang Xing",
  "Asset",
  "Bona Nova",
  "Noto Serif Georgian",
  "Anek Tamil",
  "Kavivanar",
  "Genos",
  "IM Fell Double Pica SC",
  "Ceviche One",
  "Medula One",
  "SN Pro",
  "Fuggles",
  "Khmer",
  "Noto Sans Symbols 2",
  "Fascinate",
  "Sono",
  "Scope One",
  "Noto Sans Warang Citi",
  "Metal Mania",
  "Milonga",
  "Kavoon",
  "Nova Slim",
  "Habibi",
  "Yomogi",
  "Buda",
  "Sulphur Point",
  "Pavanam",
  "Atomic Age",
  "Homenaje",
  "Miltonian Tattoo",
  "Timmana",
  "Sumana",
  "Zilla Slab Highlight",
  "Dokdo",
  "Averia Gruesa Libre",
  "Smythe",
  "The Nautigal",
  "Nata Sans",
  "Caesar Dressing",
  "Lovers Quarrel",
  "Miniver",
  "IM Fell Great Primer SC",
  "Mystery Quest",
  "Playwrite CU Guides",
  "Lavishly Yours",
  "Baloo Bhaina 2",
  "Stick",
  "Overlock SC",
  "IM Fell French Canon SC",
  "Rubik Doodle Shadow",
  "Freckle Face",
  "Braah One",
  "IBM Plex Sans Thai Looped",
  "Astloch",
  "Akaya Kanadaka",
  "Ysabeau SC",
  "Noto Music",
  "Kenia",
  "Tauri",
  "Sigmar",
  "Chau Philomene One",
  "Edu TAS Beginner",
  "Protest Riot",
  "BhuTuka Expanded One",
  "Sansation",
  "Zalando Sans SemiExpanded",
  "Miltonian",
  "Grenze",
  "Karantina",
  "Nova Cut",
  "Badeen Display",
  "Winky Sans",
  "Akronim",
  "Nova Script",
  "Gafata",
  "Odor Mean Chey",
  "Long Cang",
  "Keania One",
  "Gugi",
  "Stalemate",
  "Doto",
  "Noto Serif Malayalam",
  "Belgrano",
  "Spline Sans Mono",
  "Rationale",
  "Englebert",
  "Nova Oval",
  "Alkalami",
  "Fasthand",
  "Imperial Script",
  "Island Moments",
  "Sree Krushnadevaraya",
  "Alkatra",
  "Underdog",
  "Lexend Mega",
  "Anek Gujarati",
  "Barrio",
  "Delius Swash Caps",
  "Birthstone Bounce",
  "Trispace",
  "Federant",
  "Luxurious Script",
  "Stylish",
  "Srisakdi",
  "Strait",
  "Darumadrop One",
  "Redacted",
  "Headland One",
  "Faculty Glyphic",
  "Playwrite US Trad",
  "Vend Sans",
  "Comforter Brush",
  "East Sea Dokdo",
  "Stint Ultra Condensed",
  "Tiro Devanagari Sanskrit",
  "Jolly Lodger",
  "Margarine",
  "Imbue",
  "Poltawski Nowy",
  "Castoro Titling",
  "Tilt Prism",
  "Fenix",
  "Notable",
  "Bonheur Royale",
  "Shippori Antique B1",
  "Fascinate Inline",
  "Noto Serif Telugu",
  "Kapakana",
  "Gupter",
  "Erica One",
  "Liu Jian Mao Cao",
  "Ranchers",
  "Hedvig Letters Sans",
  "Mate SC",
  "Jomolhari",
  "Phudu",
  "Noto Serif Kannada",
  "Unlock",
  "Kulim Park",
  "Orbit",
  "Metal",
  "Mooli",
  "IBM Plex Sans Devanagari",
  "Beau Rivage",
  "Handjet",
  "Passions Conflict",
  "BIZ UDMincho",
  "Londrina Outline",
  "Noto Sans Ethiopic",
  "Flamenco",
  "Manuale",
  "Shalimar",
  "Bagel Fat One",
  "Spirax",
  "Marhey",
  "Stint Ultra Expanded",
  "Rum Raisin",
  "Noto Sans Osmanya",
  "New Amsterdam",
  "Jersey 15",
  "Lugrasimo",
  "Akaya Telivigala",
  "Comforter",
  "Noto Sans Oriya",
  "Boldonse",
  "Mea Culpa",
  "Port Lligat Slab",
  "Text Me One",
  "Baskervville SC",
  "Libre Barcode 39 Extended",
  "Anek Kannada",
  "Kode Mono",
  "Finlandica",
  "Devonshire",
  "Engagement",
  "Cactus Classical Serif",
  "My Soul",
  "Single Day",
  "Sonsie One",
  "Noto Sans Lao",
  "Content",
  "Ruthie",
  "Carrois Gothic SC",
  "Mozilla Text",
  "Dekko",
  "Cagliostro",
  "Joan",
  "Kaisei HarunoUmi",
  "Momo Signature",
  "Victor Mono",
  "Zen Tokyo Zoo",
  "Stoke",
  "Noto Sans Gurmukhi",
  "Londrina Shadow",
  "Tiny5",
  "Sahitya",
  "Girassol",
  "Sura",
  "Seymour One",
  "Gorditas",
  "Rubik Wet Paint",
  "Ballet",
  "Yeon Sung",
  "Dangrek",
  "Glass Antiqua",
  "Paprika",
  "Ramaraja",
  "Suwannaphum",
  "Climate Crisis",
  "Bitcount Grid Double",
  "Bodoni Moda SC",
  "Tillana",
  "Texturina",
  "Junge",
  "Rubik Scribble",
  "Preahvihear",
  "LINE Seed JP",
  "Farsan",
  "Noto Sans Gothic",
  "Almendra Display",
  "Cute Font",
  "Lexend Tera",
  "Montserrat Underline",
  "Gwendolyn",
  "Ysabeau Infant",
  "Smooch",
  "Alan Sans",
  "Noto Sans Buhid",
  "Chocolate Classical Sans",
  "Jacques Francois",
  "Dorsa",
  "Festive",
  "Ysabeau",
  "Ruluko",
  "Almendra SC",
  "Tac One",
  "Edu NSW ACT Cursive",
  "Noto Sans Canadian Aboriginal",
  "Mynerve",
  "Playwrite DE Grund",
  "Gideon Roman",
  "Meera Inimai",
  "Noto Sans Tagalog",
  "Yuji Boku",
  "Tourney",
  "Grechen Fuemen",
  "Romanesco",
  "Bilbo",
  "Siemreap",
  "Kite One",
  "Chathura",
  "Chela One",
  "Noto Sans Samaritan",
  "Tiro Devanagari Marathi",
  "Asta Sans",
  "Noto Serif Lao",
  "Playwrite IN",
  "Condiment",
  "Sedan SC",
  "Simonetta",
  "Inika",
  "Nabla",
  "Beiruti",
  "Stack Sans Text",
  "Mogra",
  "Yaldevi",
  "Ruwudu",
  "Alumni Sans Pinstripe",
  "Playwrite NZ Basic",
  "Jacques Francois Shadow",
  "Risque",
  "Arbutus",
  "Offside",
  "Jacquard 12",
  "Amiri Quran",
  "Stalinist One",
  "New Tegomin",
  "Kotta One",
  "Playwrite IS",
  "Water Brush",
  "Plaster",
  "Rubik Moonrocks",
  "Noto Serif Ahom",
  "Stack Sans Headline",
  "Bruno Ace",
  "Donegal One",
  "Trykker",
  "Nuosu SIL",
  "Autour One",
  "Bungee Hairline",
  "Galindo",
  "Micro 5",
  "Anek Gurmukhi",
  "Liter",
  "Caramel",
  "Reem Kufi Fun",
  "Noto Sans Tai Viet",
  "Marko One",
  "Bruno Ace SC",
  "Noto Serif Sinhala",
  "Linden Hill",
  "Poor Story",
  "Ravi Prakash",
  "Smokum",
  "Ribeye Marrow",
  "TASA Orbiter",
  "National Park",
  "Ewert",
  "Kumar One",
  "Encode Sans SC",
  "Edu AU VIC WA NT Hand",
  "Geostar Fill",
  "Edu AU VIC WA NT Pre",
  "Chilanka",
  "Koh Santepheap",
  "Wittgenstein",
  "Joti One",
  "Reddit Mono",
  "Diplomata",
  "Edu VIC WA NT Beginner",
  "Playwrite CU",
  "Wellfleet",
  "Monomakh",
  "Ga Maamli",
  "Hubballi",
  "Galdeano",
  "Lancelot",
  "Sixtyfour",
  "Fruktur",
  "Tiro Telugu",
  "Moderustic",
  "Port Lligat Sans",
  "Emblema One",
  "Manufacturing Consent",
  "Big Shoulders Stencil",
  "Grey Qo",
  "Bigelow Rules",
  "Bitcount Single",
  "Elsie Swash Caps",
  "Oi",
  "Libertinus Math",
  "Inspiration",
  "Fleur De Leah",
  "Rubik Iso",
  "Alumni Sans Collegiate One",
  "Londrina Sketch",
  "Peddana",
  "Bungee Outline",
  "Luxurious Roman",
  "Kirang Haerang",
  "Noto Sans Syloti Nagri",
  "Alumni Sans Inline One",
  "Felipa",
  "Mr Bedfort",
  "Blaka",
  "Rubik Distressed",
  "Konkhmer Sleokchher",
  "Dai Banna SIL",
  "Tulpen One",
  "Ojuju",
  "Noto Serif Armenian",
  "WDXL Lubrifont JP N",
  "Flow Rounded",
  "Griffy",
  "Playwrite AU NSW",
  "Gasoek One",
  "Neonderthaw",
  "Bacasime Antique",
  "Tiro Gurmukhi",
  "Bahiana",
  "Revalia",
  "Noto Serif Khmer",
  "Noto Serif Gujarati",
  "Anek Odia",
  "Playwrite HR",
  "Dhurjati",
  "Science Gothic",
  "Noto Sans Sora Sompeng",
  "Explora",
  "Playwrite US Modern",
  "Lakki Reddy",
  "Sofadi One",
  "Praise",
  "Passero One",
  "Dr Sugiyama",
  "Miss Fajardose",
  "Atkinson Hyperlegible Mono",
  "Diplomata SC",
  "Playwrite AU QLD",
  "Tapestry",
  "Playwrite AU SA",
  "Babylonica",
  "Libre Barcode EAN13 Text",
  "Updock",
  "Playwrite PL",
  "Epunda Sans",
  "Playwrite NZ Basic Guides",
  "Ponomar",
  "Reem Kufi Ink",
  "BioRhyme Expanded",
  "Geom",
  "Playwrite VN Guides",
  "Momo Trust Display",
  "Gidugu",
  "Ranga",
  "Mozilla Headline",
  "Jersey 20",
  "Noto Sans Hanunoo",
  "Molle",
  "Mrs Sheppards",
  "Jim Nightshade",
  "Tsukimi Rounded",
  "GFS Neohellenic",
  "Uchen",
  "Aref Ruqaa Ink",
  "Send Flowers",
  "Noto Serif Tamil",
  "Ancizar Sans",
  "Noto Rashi Hebrew",
  "Jacquard 24",
  "WDXL Lubrifont TC",
  "Arsenal SC",
  "Princess Sofia",
  "Langar",
  "Bonbon",
  "Piedra",
  "Hanalei Fill",
  "Kumar One Outline",
  "Story Script",
  "Butcherman",
  "Trochut",
  "Winky Rough",
  "Cascadia Code",
  "Rubik Gemstones",
  "Diphylleia",
  "Snippet",
  "Love Light",
  "Annapurna SIL",
  "Noto Serif Tibetan",
  "Momo Trust Sans",
  "Bahianita",
  "Foldit",
  "Oldenburg",
  "Sirin Stencil",
  "Flavors",
  "LXGW WenKai Mono TC",
  "Rubik Glitch Pop",
  "Noto Sans Anatolian Hieroglyphs",
  "Are You Serious",
  "Noto Sans Javanese",
  "Libertinus Sans",
  "Playpen Sans Arabic",
  "Noto Serif Tangut",
  "Twinkle Star",
  "Ancizar Serif",
  "Rubik Vinyl",
  "Chenla",
  "Agu Display",
  "Huninn",
  "TASA Explorer",
  "Redacted Script",
  "Kings",
  "Tai Heritage Pro",
  "Noto Sans Mongolian",
  "Gidole",
  "Purple Purse",
  "Tiro Kannada",
  "Noto Serif Vithkuqi",
  "Elms Sans",
  "Butterfly Kids",
  "Bitcount Prop Single",
  "Bitcount Grid Single",
  "Sedan",
  "Rubik Spray Paint",
  "Flow Block",
  "Cascadia Mono",
  "Chiron GoRound TC",
  "Workbench",
  "Danfo",
  "Bungee Tint",
  "Noto Sans Brahmi",
  "Lunasima",
  "Iansui",
  "Aubrey",
  "Ubuntu Sans Mono",
  "Edu NSW ACT Foundation",
  "Noto Sans Syriac",
  "Rubik Burned",
  "Rubik Beastly",
  "Jacquarda Bastarda 9",
  "Sassy Frass",
  "Edu AU VIC WA NT Dots",
  "Matemasie",
  "Playwrite GB S",
  "Tiro Tamil",
  "Rubik Puddles",
  "Chiron Hei HK",
  "Labrada",
  "Noto Sans Adlam",
  "Combo",
  "Libertinus Serif",
  "Splash",
  "Protest Guerrilla",
  "Taprom",
  "Vibes",
  "Sekuya",
  "Noto Sans Multani",
  "Playwrite AU TAS",
  "BBH Bartle",
  "Playwrite CA",
  "Chokokutai",
  "Palette Mosaic",
  "WDXL Lubrifont SC",
  "Rubik 80s Fade",
  "Playwrite DK Loopet",
  "Snowburst One",
  "Kolker Brush",
  "Ruge Boogie",
  "Zen Loop",
  "Noto Serif Balinese",
  "Hind Mysuru",
  "Playwrite DE SAS",
  "Playwrite HU",
  "Petemoss",
  "Cossette Titre",
  "Rock 3D",
  "Cherish",
  "Sixtyfour Convergence",
  "M PLUS Code Latin",
  "Suravaram",
  "Stack Sans Notch",
  "Moulpali",
  "Tagesschrift",
  "Jaini",
  "Noto Sans Carian",
  "Rubik Lines",
  "Geostar",
  "Noto Serif Ethiopic",
  "Noto Sans Coptic",
  "Noto Sans Cypro Minoan",
  "Triodion",
  "Parastoo",
  "Libertinus Mono",
  "Rubik Broken Fax",
  "Noto Sans Batak",
  "Estonia",
  "Shizuru",
  "Playwrite RO",
  "Playwrite ZA",
  "Alumni Sans SC",
  "Noto Sans Duployan",
  "Namdhinggo",
  "Playwrite NL",
  "Black And White Picture",
  "Rubik Storm",
  "Savate",
  "Noto Sans Nag Mundari",
  "Noto Sans Syriac Eastern",
  "Kalnia Glaze",
  "Playwrite MX Guides",
  "Noto Sans Balinese",
  "Noto Sans Glagolitic",
  "Ole",
  "Puppies Play",
  "Slackside One",
  "Chiron Sung HK",
  "Gajraj One",
  "Playwrite ES",
  "Lilex",
  "Moirai One",
  "Mingzat",
  "Noto Sans Ol Chiki",
  "Asimovian",
  "Moo Lah Lah",
  "Noto Serif Toto",
  "Noto Traditional Nushu",
  "Noto Sans Elbasan",
  "Bitcount",
  "Playwrite IT Moderna",
  "SUSE Mono",
  "Noto Sans Tangsa",
  "Noto Sans Old Italic",
  "Phetsarath",
  "LXGW Marker Gothic",
  "Noto Sans Lisu",
  "Hanalei",
  "Rubik Marker Hatch",
  "Edu SA Hand",
  "Epunda Slab",
  "Playwrite MX",
  "Rubik Doodle Triangles",
  "Rubik Pixels",
  "Playwrite NO",
  "Noto Serif Yezidi",
  "Edu QLD Beginner",
  "Playwrite BE VLG",
  "Noto Sans Avestan",
  "Playwrite DE LA",
  "Playwrite FR Moderne",
  "Rubik Maps",
  "Noto Serif Oriya",
  "Noto Serif Makasar",
  "Big Shoulders Inline",
  "Libertinus Serif Display",
  "Ingrid Darling",
  "BBH Hegarty",
  "Grandiflora One",
  "Shafarik",
  "Intel One Mono",
  "Noto Sans Newa",
  "Rubik Microbe",
  "Playpen Sans Hebrew",
  "Tuffy",
  "Noto Sans Nandinagari",
  "Coral Pixels",
  "Noto Sans Old Hungarian",
  "Noto Sans Marchen",
  "Playpen Sans Deva",
  "Sirivennela",
  "Noto Sans Old North Arabian",
  "Noto Sans Bamum",
  "Syne Tactile",
  "Linefont",
  "Exile",
  "Noto Sans Takri",
  "Noto Sans Old Persian",
  "Playwrite BE WAL",
  "Blaka Hollow",
  "Noto Sans Cherokee",
  "Bytesized",
  "Noto Sans Yi",
  "Noto Sans Tifinagh",
  "BBH Bogle",
  "Noto Sans Shavian",
  "Noto Sans Palmyrene",
  "Noto Sans Cham",
  "Playwrite DK Uloopet",
  "Playwrite VN",
  "Playpen Sans Thai",
  "Noto Sans Linear A",
  "Playwrite HR Lijeva",
  "Warnes",
  "Noto Serif Old Uyghur",
  "Noto Serif Myanmar",
  "Lisu Bosa",
  "Noto Serif Khitan Small Script",
  "Blaka Ink",
  "Noto Sans Medefaidrin",
  "Noto Znamenny Musical Notation",
  "Playwrite NZ",
  "Noto Sans Khojki",
  "Edu AU VIC WA NT Arrows",
  "Noto Sans Adlam Unjoined",
  "Wavefont",
  "Noto Sans Indic Siyaq Numbers",
  "Playwrite AR",
  "Noto Sans Vithkuqi",
  "Karla Tamil Upright",
  "Playwrite PT",
  "Amarna",
  "Playwrite CZ",
  "Matangi",
  "Noto Sans Egyptian Hieroglyphs",
  "Kedebideri",
  "Playwrite CO",
  "Noto Serif Dogra",
  "Noto Serif Ottoman Siyaq",
  "Edu NSW ACT Hand Pre",
  "Noto Sans Mahajani",
  "Noto Serif Gurmukhi",
  "Ponnala",
  "Noto Sans Tai Le",
  "Noto Serif Todhri",
  "Noto Sans Miao",
  "Noto Serif NP Hmong",
  "Playwrite PE",
  "Playwrite GB J",
  "Noto Serif Hentaigana",
  "Noto Sans New Tai Lue",
  "Rubik Maze",
  "Narnoor",
  "Jaini Purva",
  "Playwrite AU VIC",
  "Noto Sans Sundanese",
  "Noto Sans Tagbanwa",
  "Noto Sans Osage",
  "UoqMunThenKhung",
  "Edu AU VIC WA NT Guides",
  "Yuji Hentaigana Akari",
  "Noto Sans Wancho",
  "Noto Serif Grantha",
  "Edu QLD Hand",
  "Noto Sans SignWriting",
  "Noto Sans Mro",
  "Playwrite CO Guides",
  "Jacquard 12 Charted",
  "Noto Sans Inscriptional Pahlavi",
  "Playwrite NG Modern",
  "Bitcount Single Ink",
  "Padyakke Expanded One",
  "Noto Sans Tai Tham",
  "Noto Sans Cuneiform",
  "Playwrite SK",
  "Noto Sans Imperial Aramaic",
  "Noto Sans Runic",
  "Jacquard 24 Charted",
  "Edu VIC WA NT Hand Pre",
  "Playwrite IE",
  "Menbere",
  "Maname",
  "Noto Sans Old South Arabian",
  "Sankofa Display",
  "Edu VIC WA NT Hand",
  "Noto Sans Zanabazar Square",
  "Noto Sans Sogdian",
  "Noto Sans Grantha",
  "Playwrite CL",
  "Noto Sans Chakma",
  "Cause",
  "Kay Pho Du",
  "Bitcount Grid Single Ink",
  "Noto Sans Khudawadi",
  "Karla Tamil Inclined",
  "Playwrite ID",
  "Noto Sans NKo",
  "Noto Sans Tamil Supplement",
  "Noto Sans Lydian",
  "Noto Sans Bhaiksuki",
  "Noto Sans Elymaic",
  "Noto Sans Sharada",
  "Noto Sans Vai",
  "Noto Sans Modi",
  "Bitcount Prop Single Ink",
  "Pochaevsk",
  "Noto Sans NKo Unjoined",
  "Playwrite ES Deco",
  "Noto Sans Syriac Western",
  "Playwrite US Trad Guides",
  "Playwrite IN Guides",
  "Kanchenjunga",
  "Noto Sans Rejang",
  "Noto Sans Linear B",
  "Noto Sans Mayan Numerals",
  "Noto Sans Pahawh Hmong",
  "Micro 5 Charted",
  "Noto Sans Inscriptional Parthian",
  "Noto Sans Kaithi",
  "Noto Sans Caucasian Albanian",
  "Noto Sans Kawi",
  "Playwrite TZ",
  "Tirra",
  "Bitcount Prop Double",
  "Noto Sans Buginese",
  "Noto Sans Psalter Pahlavi",
  "Playwrite GB J Guides",
  "Libertinus Keyboard",
  "Noto Sans Cypriot",
  "Jersey 15 Charted",
  "Noto Sans Old Turkic",
  "Noto Serif Dives Akuru",
  "Jersey 25 Charted",
  "Yuji Hentaigana Akebono",
  "Playwrite PL Guides",
  "Noto Sans Hatran",
  "Noto Sans Mandaic",
  "Playwrite DE VA",
  "Noto Sans Bassa Vah",
  "Noto Sans Nushu",
  "Playwrite PT Guides",
  "Noto Sans Limbu",
  "Jersey 20 Charted",
  "Jersey 10 Charted",
  "Noto Sans Mende Kikakui",
  "Jacquarda Bastarda 9 Charted",
  "Bitcount Ink",
  "Playwrite PE Guides",
  "Noto Sans Soyombo",
  "Bitcount Prop Double Ink",
  "Noto Sans Deseret",
  "Noto Sans Nabataean",
  "Noto Sans Ugaritic",
  "Noto Sans Pau Cin Hau",
  "Noto Sans Saurashtra",
  "Playwrite BR",
  "Noto Sans Old Permic",
  "Noto Sans Ogham",
  "Playwrite IT Trad",
  "Noto Sans Tirhuta",
  "Noto Sans Sunuwar",
  "Playwrite DE Grund Guides",
  "Noto Sans Hanifi Rohingya",
  "Noto Sans Lepcha",
  "Playwrite FR Trad",
  "Noto Sans Manichaean",
  "Noto Sans Kayah Li",
  "Noto Sans Old Sogdian",
  "Noto Sans Siddham",
  "Noto Sans Phoenician",
  "Yarndings 20",
  "Bitcount Grid Double Ink",
  "Yarndings 12",
  "Playwrite NL Guides",
  "Noto Sans Masaram Gondi",
  "Noto Sans Meroitic",
  "Yarndings 12 Charted",
  "Noto Sans Kharoshthi",
  "Noto Sans PhagsPa",
  "Noto Sans Lycian",
  "Yarndings 20 Charted",
  "Playwrite TZ Guides",
  "Cossette Texte",
  "Playwrite IE Guides",
  "Playwrite ZA Guides",
  "Playwrite BE WAL Guides",
  "Playwrite NZ Guides",
  "Playwrite IT Moderna Guides",
  "Playwrite DE VA Guides",
  "Playwrite FR Moderne Guides",
  "Playwrite AU VIC Guides",
  "Playwrite FR Trad Guides",
  "Playwrite ES Deco Guides",
  "Playwrite IT Trad Guides",
  "Playwrite US Modern Guides",
  "Playwrite BR Guides",
  "Playwrite RO Guides",
  "Playwrite NG Modern Guides",
  "Playwrite AU SA Guides",
  "Playwrite DK Loopet Guides",
  "Playwrite DK Uloopet Guides",
  "Playwrite AT Guides",
  "Playwrite ID Guides",
  "Playwrite CL Guides",
  "Playwrite DE LA Guides",
  "Playwrite GB S Guides",
  "Playwrite AU TAS Guides",
  "Playwrite HU Guides",
  "Playwrite HR Lijeva Guides",
  "Playwrite BE VLG Guides",
  "Playwrite AU NSW Guides",
  "Playwrite AU QLD Guides",
  "Playwrite CA Guides",
  "Playwrite SK Guides",
  "Playwrite ES Guides",
  "Playwrite AR Guides",
  "Playwrite DE SAS Guides",
  "Playwrite IS Guides",
  "Playwrite HR Guides",
  "Playwrite NO Guides",
  "Playwrite CZ Guides",
  "Betania Patmos",
  "Idiqlat",
  "Gveret Levin",
  "Betania Patmos In GDL",
  "Betania Patmos GDL",
  "Ramsina",
  "Betania Patmos In"
]