-
Notifications
You must be signed in to change notification settings - Fork 16
/
state.json
14783 lines (14783 loc) · 949 KB
/
state.json
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
{
"Arimo": {},
"Cousine": {},
"Tinos": {},
"adlam": {
"families": {
"Noto Sans Adlam": {
"files": [
"fonts/NotoSansAdlam/googlefonts/ttf/NotoSansAdlam-Regular.ttf",
"fonts/NotoSansAdlam/googlefonts/ttf/NotoSansAdlam-Bold.ttf",
"fonts/NotoSansAdlam/googlefonts/variable-ttf/NotoSansAdlam[wght].ttf",
"fonts/NotoSansAdlam/full/otf/NotoSansAdlam-Regular.otf",
"fonts/NotoSansAdlam/full/otf/NotoSansAdlam-Bold.otf",
"fonts/NotoSansAdlam/full/ttf/NotoSansAdlam-Regular.ttf",
"fonts/NotoSansAdlam/full/ttf/NotoSansAdlam-Bold.ttf",
"fonts/NotoSansAdlam/full/slim-variable-ttf/NotoSansAdlam[wght].ttf",
"fonts/NotoSansAdlam/full/variable-ttf/NotoSansAdlam[wght].ttf",
"fonts/NotoSansAdlam/hinted/ttf/NotoSansAdlam-Regular.ttf",
"fonts/NotoSansAdlam/hinted/ttf/NotoSansAdlam-Bold.ttf",
"fonts/NotoSansAdlam/unhinted/otf/NotoSansAdlam-Regular.otf",
"fonts/NotoSansAdlam/unhinted/otf/NotoSansAdlam-Bold.otf",
"fonts/NotoSansAdlam/unhinted/ttf/NotoSansAdlam-Regular.ttf",
"fonts/NotoSansAdlam/unhinted/ttf/NotoSansAdlam-Bold.ttf",
"fonts/NotoSansAdlam/unhinted/slim-variable-ttf/NotoSansAdlam[wght].ttf",
"fonts/NotoSansAdlam/unhinted/variable-ttf/NotoSansAdlam[wght].ttf"
],
"latest_release": {
"notes": "Noto Sans Adlam v3.002\n\nThis release:\n\n- Corrects the form of ADLAM VOWEL LENGTHENER when nukta is present (#3)\n- Adds a medial form to ADLAM NASALIZATION MARK (#4)\n- Fixes an interpolation bug (#13)\n- Removes the fraction slash character (#2)\n- Improves the positioning of marks on the dotted circle (#9)\n- Removes the erroneous 'case' feature (#10)\n- Makes the HAMZA stack on modifier glyphs (#11)\n",
"published": "2024-05-16T09:03:52+00:00",
"url": "https://github.com/notofonts/adlam/releases/tag/NotoSansAdlam-v3.002",
"version": "v3.002"
}
},
"Noto Sans Adlam Unjoined": {
"files": [
"fonts/NotoSansAdlamUnjoined/googlefonts/ttf/NotoSansAdlamUnjoined-Regular.ttf",
"fonts/NotoSansAdlamUnjoined/googlefonts/ttf/NotoSansAdlamUnjoined-Bold.ttf",
"fonts/NotoSansAdlamUnjoined/googlefonts/variable-ttf/NotoSansAdlamUnjoined[wght].ttf",
"fonts/NotoSansAdlamUnjoined/full/otf/NotoSansAdlamUnjoined-Regular.otf",
"fonts/NotoSansAdlamUnjoined/full/otf/NotoSansAdlamUnjoined-Bold.otf",
"fonts/NotoSansAdlamUnjoined/full/ttf/NotoSansAdlamUnjoined-Regular.ttf",
"fonts/NotoSansAdlamUnjoined/full/ttf/NotoSansAdlamUnjoined-Bold.ttf",
"fonts/NotoSansAdlamUnjoined/full/slim-variable-ttf/NotoSansAdlamUnjoined[wght].ttf",
"fonts/NotoSansAdlamUnjoined/full/variable-ttf/NotoSansAdlamUnjoined[wght].ttf",
"fonts/NotoSansAdlamUnjoined/hinted/ttf/NotoSansAdlamUnjoined-Regular.ttf",
"fonts/NotoSansAdlamUnjoined/hinted/ttf/NotoSansAdlamUnjoined-Bold.ttf",
"fonts/NotoSansAdlamUnjoined/unhinted/otf/NotoSansAdlamUnjoined-Regular.otf",
"fonts/NotoSansAdlamUnjoined/unhinted/otf/NotoSansAdlamUnjoined-Bold.otf",
"fonts/NotoSansAdlamUnjoined/unhinted/ttf/NotoSansAdlamUnjoined-Regular.ttf",
"fonts/NotoSansAdlamUnjoined/unhinted/ttf/NotoSansAdlamUnjoined-Bold.ttf",
"fonts/NotoSansAdlamUnjoined/unhinted/slim-variable-ttf/NotoSansAdlamUnjoined[wght].ttf",
"fonts/NotoSansAdlamUnjoined/unhinted/variable-ttf/NotoSansAdlamUnjoined[wght].ttf"
],
"latest_release": {
"notes": "Noto Sans Adlam Unjoined\n\nThis release adds a missing languagesystem, fixing mark positioning.\n",
"published": "2024-05-27T09:25:48+00:00",
"url": "https://github.com/notofonts/adlam/releases/tag/NotoSansAdlamUnjoined-v3.003",
"version": "v3.003"
}
}
},
"known_releases": [
"NotoSansAdlamUnjoined-v3.001",
"NotoSansAdlam-v3.001",
"NotoSansAdlam-v3.002",
"NotoSansAdlamUnjoined-v3.002",
"NotoSansAdlamUnjoined-v3.003"
]
},
"ahom": {
"families": {
"Noto Serif Ahom": {
"files": [
"fonts/NotoSerifAhom/unhinted/ttf/NotoSerifAhom-Regular.ttf",
"fonts/NotoSerifAhom/unhinted/otf/NotoSerifAhom-Regular.otf",
"fonts/NotoSerifAhom/full/ttf/NotoSerifAhom-Regular.ttf",
"fonts/NotoSerifAhom/full/otf/NotoSerifAhom-Regular.otf",
"fonts/NotoSerifAhom/hinted/ttf/NotoSerifAhom-Regular.ttf",
"fonts/NotoSerifAhom/googlefonts/ttf/NotoSerifAhom-Regular.ttf"
],
"latest_release": {
"notes": "Noto Serif Ahom v2.007\n\nThis release:\n\n* Improves the formation and positioning of -iu ligatures (#16)\n* Improves kerning (#16)\n",
"published": "2023-09-25T07:59:12",
"url": "https://github.com/notofonts/ahom/releases/tag/NotoSerifAhom-v2.007",
"version": "v2.007"
}
}
},
"known_releases": [
"NotoSerifAhom-v2.005",
"NotoSerifAhom-v2.006",
"NotoSerifAhom-v2.007"
]
},
"anatolian-hieroglyphs": {
"families": {
"Noto Sans Anatolian Hieroglyphs": {
"files": [
"fonts/NotoSansAnatolianHieroglyphs/full/ttf/NotoSansAnatolianHieroglyphs-Regular.ttf",
"fonts/NotoSansAnatolianHieroglyphs/full/otf/NotoSansAnatolianHieroglyphs-Regular.otf",
"fonts/NotoSansAnatolianHieroglyphs/googlefonts/ttf/NotoSansAnatolianHieroglyphs-Regular.ttf",
"fonts/NotoSansAnatolianHieroglyphs/unhinted/ttf/NotoSansAnatolianHieroglyphs-Regular.ttf",
"fonts/NotoSansAnatolianHieroglyphs/unhinted/otf/NotoSansAnatolianHieroglyphs-Regular.otf",
"fonts/NotoSansAnatolianHieroglyphs/hinted/ttf/NotoSansAnatolianHieroglyphs-Regular.ttf"
],
"latest_release": {
"notes": "Noto Sans Anatolian Hieroglyphs v2.001\n\nThis release fixes a number of fontbakery fails\n",
"published": "2022-09-20T16:10:47",
"url": "https://github.com/notofonts/anatolian-hieroglyphs/releases/tag/NotoSansAnatolianHieroglyphs-v2.001",
"version": "v2.001"
}
}
},
"known_releases": [
"NotoSansAnatolianHieroglyphs-v2.001"
]
},
"arabic": {
"families": {
"Noto Kufi Arabic": {
"files": [
"fonts/NotoKufiArabic/full/slim-variable-ttf/NotoKufiArabic[wght].ttf",
"fonts/NotoKufiArabic/full/otf/NotoKufiArabic-Light.otf",
"fonts/NotoKufiArabic/full/otf/NotoKufiArabic-Bold.otf",
"fonts/NotoKufiArabic/full/otf/NotoKufiArabic-Black.otf",
"fonts/NotoKufiArabic/full/otf/NotoKufiArabic-ExtraBold.otf",
"fonts/NotoKufiArabic/full/otf/NotoKufiArabic-Regular.otf",
"fonts/NotoKufiArabic/full/otf/NotoKufiArabic-ExtraLight.otf",
"fonts/NotoKufiArabic/full/otf/NotoKufiArabic-Medium.otf",
"fonts/NotoKufiArabic/full/otf/NotoKufiArabic-SemiBold.otf",
"fonts/NotoKufiArabic/full/otf/NotoKufiArabic-Thin.otf",
"fonts/NotoKufiArabic/full/variable/NotoKufiArabic[wght].ttf",
"fonts/NotoKufiArabic/full/ttf/NotoKufiArabic-Regular.ttf",
"fonts/NotoKufiArabic/full/ttf/NotoKufiArabic-Black.ttf",
"fonts/NotoKufiArabic/full/ttf/NotoKufiArabic-ExtraBold.ttf",
"fonts/NotoKufiArabic/full/ttf/NotoKufiArabic-Thin.ttf",
"fonts/NotoKufiArabic/full/ttf/NotoKufiArabic-Medium.ttf",
"fonts/NotoKufiArabic/full/ttf/NotoKufiArabic-Light.ttf",
"fonts/NotoKufiArabic/full/ttf/NotoKufiArabic-SemiBold.ttf",
"fonts/NotoKufiArabic/full/ttf/NotoKufiArabic-Bold.ttf",
"fonts/NotoKufiArabic/full/ttf/NotoKufiArabic-ExtraLight.ttf",
"fonts/NotoKufiArabic/unhinted/slim-variable-ttf/NotoKufiArabic[wght].ttf",
"fonts/NotoKufiArabic/unhinted/otf/NotoKufiArabic-Light.otf",
"fonts/NotoKufiArabic/unhinted/otf/NotoKufiArabic-Bold.otf",
"fonts/NotoKufiArabic/unhinted/otf/NotoKufiArabic-Black.otf",
"fonts/NotoKufiArabic/unhinted/otf/NotoKufiArabic-ExtraBold.otf",
"fonts/NotoKufiArabic/unhinted/otf/NotoKufiArabic-Regular.otf",
"fonts/NotoKufiArabic/unhinted/otf/NotoKufiArabic-ExtraLight.otf",
"fonts/NotoKufiArabic/unhinted/otf/NotoKufiArabic-Medium.otf",
"fonts/NotoKufiArabic/unhinted/otf/NotoKufiArabic-SemiBold.otf",
"fonts/NotoKufiArabic/unhinted/otf/NotoKufiArabic-Thin.otf",
"fonts/NotoKufiArabic/unhinted/variable/NotoKufiArabic[wght].ttf",
"fonts/NotoKufiArabic/unhinted/ttf/NotoKufiArabic-Regular.ttf",
"fonts/NotoKufiArabic/unhinted/ttf/NotoKufiArabic-Black.ttf",
"fonts/NotoKufiArabic/unhinted/ttf/NotoKufiArabic-ExtraBold.ttf",
"fonts/NotoKufiArabic/unhinted/ttf/NotoKufiArabic-Thin.ttf",
"fonts/NotoKufiArabic/unhinted/ttf/NotoKufiArabic-Medium.ttf",
"fonts/NotoKufiArabic/unhinted/ttf/NotoKufiArabic-Light.ttf",
"fonts/NotoKufiArabic/unhinted/ttf/NotoKufiArabic-SemiBold.ttf",
"fonts/NotoKufiArabic/unhinted/ttf/NotoKufiArabic-Bold.ttf",
"fonts/NotoKufiArabic/unhinted/ttf/NotoKufiArabic-ExtraLight.ttf",
"fonts/NotoKufiArabic/hinted/ttf/NotoKufiArabic-Regular.ttf",
"fonts/NotoKufiArabic/hinted/ttf/NotoKufiArabic-Black.ttf",
"fonts/NotoKufiArabic/hinted/ttf/NotoKufiArabic-ExtraBold.ttf",
"fonts/NotoKufiArabic/hinted/ttf/NotoKufiArabic-Thin.ttf",
"fonts/NotoKufiArabic/hinted/ttf/NotoKufiArabic-Medium.ttf",
"fonts/NotoKufiArabic/hinted/ttf/NotoKufiArabic-Light.ttf",
"fonts/NotoKufiArabic/hinted/ttf/NotoKufiArabic-SemiBold.ttf",
"fonts/NotoKufiArabic/hinted/ttf/NotoKufiArabic-Bold.ttf",
"fonts/NotoKufiArabic/hinted/ttf/NotoKufiArabic-ExtraLight.ttf",
"fonts/NotoKufiArabic/googlefonts/variable/NotoKufiArabic[wght].ttf",
"fonts/NotoKufiArabic/googlefonts/ttf/NotoKufiArabic-Regular.ttf",
"fonts/NotoKufiArabic/googlefonts/ttf/NotoKufiArabic-Black.ttf",
"fonts/NotoKufiArabic/googlefonts/ttf/NotoKufiArabic-ExtraBold.ttf",
"fonts/NotoKufiArabic/googlefonts/ttf/NotoKufiArabic-Thin.ttf",
"fonts/NotoKufiArabic/googlefonts/ttf/NotoKufiArabic-Medium.ttf",
"fonts/NotoKufiArabic/googlefonts/ttf/NotoKufiArabic-Light.ttf",
"fonts/NotoKufiArabic/googlefonts/ttf/NotoKufiArabic-SemiBold.ttf",
"fonts/NotoKufiArabic/googlefonts/ttf/NotoKufiArabic-Bold.ttf",
"fonts/NotoKufiArabic/googlefonts/ttf/NotoKufiArabic-ExtraLight.ttf"
],
"latest_release": {
"notes": "Noto Kufi Arabi v2.109\n\nThis version restores the older (tighter) vertical metrics and fixes some issues anchoring marks to the dotted circle.\n",
"published": "2024-02-12T15:45:56+00:00",
"url": "https://github.com/notofonts/arabic/releases/tag/NotoKufiArabic-v2.109",
"version": "v2.109"
}
},
"Noto Naskh Arabic": {
"files": [
"fonts/NotoNaskhArabic/googlefonts/variable-ttf/NotoNaskhArabic[wght].ttf",
"fonts/NotoNaskhArabic/full/otf/NotoNaskhArabic-Regular.otf",
"fonts/NotoNaskhArabic/full/otf/NotoNaskhArabic-Medium.otf",
"fonts/NotoNaskhArabic/full/otf/NotoNaskhArabic-SemiBold.otf",
"fonts/NotoNaskhArabic/full/otf/NotoNaskhArabic-Bold.otf",
"fonts/NotoNaskhArabic/full/ttf/NotoNaskhArabic-Regular.ttf",
"fonts/NotoNaskhArabic/full/ttf/NotoNaskhArabic-Bold.ttf",
"fonts/NotoNaskhArabic/full/ttf/NotoNaskhArabic-SemiBold.ttf",
"fonts/NotoNaskhArabic/full/ttf/NotoNaskhArabic-Medium.ttf",
"fonts/NotoNaskhArabic/full/slim-variable-ttf/NotoNaskhArabic[wght].ttf",
"fonts/NotoNaskhArabic/full/variable-ttf/NotoNaskhArabic[wght].ttf",
"fonts/NotoNaskhArabic/hinted/ttf/NotoNaskhArabic-Regular.ttf",
"fonts/NotoNaskhArabic/hinted/ttf/NotoNaskhArabic-Bold.ttf",
"fonts/NotoNaskhArabic/hinted/ttf/NotoNaskhArabic-SemiBold.ttf",
"fonts/NotoNaskhArabic/hinted/ttf/NotoNaskhArabic-Medium.ttf",
"fonts/NotoNaskhArabic/unhinted/otf/NotoNaskhArabic-Regular.otf",
"fonts/NotoNaskhArabic/unhinted/otf/NotoNaskhArabic-Medium.otf",
"fonts/NotoNaskhArabic/unhinted/otf/NotoNaskhArabic-SemiBold.otf",
"fonts/NotoNaskhArabic/unhinted/otf/NotoNaskhArabic-Bold.otf",
"fonts/NotoNaskhArabic/unhinted/ttf/NotoNaskhArabic-Regular.ttf",
"fonts/NotoNaskhArabic/unhinted/ttf/NotoNaskhArabic-Bold.ttf",
"fonts/NotoNaskhArabic/unhinted/ttf/NotoNaskhArabic-SemiBold.ttf",
"fonts/NotoNaskhArabic/unhinted/ttf/NotoNaskhArabic-Medium.ttf",
"fonts/NotoNaskhArabic/unhinted/slim-variable-ttf/NotoNaskhArabic[wght].ttf",
"fonts/NotoNaskhArabic/unhinted/variable-ttf/NotoNaskhArabic[wght].ttf"
],
"latest_release": {
"notes": "Noto Naskh Arabic v2.019\n\nThis release de-encodes the U+2011 NON-BREAKING HYPHEN character.\n",
"published": "2024-05-30T15:34:45+00:00",
"url": "https://github.com/notofonts/arabic/releases/tag/NotoNaskhArabic-v2.019",
"version": "v2.019"
}
},
"Noto Naskh Arabic UI": {
"files": [
"fonts/NotoNaskhArabicUI/googlefonts/variable-ttf/NotoNaskhArabicUI[wght].ttf",
"fonts/NotoNaskhArabicUI/hinted/ttf/NotoNaskhArabicUI-Bold.ttf",
"fonts/NotoNaskhArabicUI/hinted/ttf/NotoNaskhArabicUI-Regular.ttf",
"fonts/NotoNaskhArabicUI/hinted/ttf/NotoNaskhArabicUI-SemiBold.ttf",
"fonts/NotoNaskhArabicUI/hinted/ttf/NotoNaskhArabicUI-Medium.ttf",
"fonts/NotoNaskhArabicUI/unhinted/otf/NotoNaskhArabicUI-Medium.otf",
"fonts/NotoNaskhArabicUI/unhinted/otf/NotoNaskhArabicUI-Bold.otf",
"fonts/NotoNaskhArabicUI/unhinted/otf/NotoNaskhArabicUI-SemiBold.otf",
"fonts/NotoNaskhArabicUI/unhinted/otf/NotoNaskhArabicUI-Regular.otf",
"fonts/NotoNaskhArabicUI/unhinted/ttf/NotoNaskhArabicUI-Bold.ttf",
"fonts/NotoNaskhArabicUI/unhinted/ttf/NotoNaskhArabicUI-Regular.ttf",
"fonts/NotoNaskhArabicUI/unhinted/ttf/NotoNaskhArabicUI-SemiBold.ttf",
"fonts/NotoNaskhArabicUI/unhinted/ttf/NotoNaskhArabicUI-Medium.ttf",
"fonts/NotoNaskhArabicUI/unhinted/slim-variable-ttf/NotoNaskhArabicUI[wght].ttf",
"fonts/NotoNaskhArabicUI/unhinted/variable-ttf/NotoNaskhArabicUI[wght].ttf"
],
"latest_release": {
"notes": "Noto Naskh Arabic UI v2.017\n\nThis release de-encodes the U+2011 non-breaking hyphen character.\n",
"published": "2024-06-18T08:22:19+00:00",
"url": "https://github.com/notofonts/arabic/releases/tag/NotoNaskhArabicUI-v2.017",
"version": "v2.017"
}
},
"Noto Sans Arabic": {
"files": [
"fonts/NotoSansArabic/hinted/ttf/NotoSansArabic-ExtraCondensedLight.ttf",
"fonts/NotoSansArabic/hinted/ttf/NotoSansArabic-CondensedExtraBold.ttf",
"fonts/NotoSansArabic/hinted/ttf/NotoSansArabic-Black.ttf",
"fonts/NotoSansArabic/hinted/ttf/NotoSansArabic-CondensedMedium.ttf",
"fonts/NotoSansArabic/hinted/ttf/NotoSansArabic-CondensedThin.ttf",
"fonts/NotoSansArabic/hinted/ttf/NotoSansArabic-SemiCondensedLight.ttf",
"fonts/NotoSansArabic/hinted/ttf/NotoSansArabic-SemiCondensedExtraLight.ttf",
"fonts/NotoSansArabic/hinted/ttf/NotoSansArabic-CondensedSemiBold.ttf",
"fonts/NotoSansArabic/hinted/ttf/NotoSansArabic-Bold.ttf",
"fonts/NotoSansArabic/hinted/ttf/NotoSansArabic-Light.ttf",
"fonts/NotoSansArabic/hinted/ttf/NotoSansArabic-ExtraCondensedMedium.ttf",
"fonts/NotoSansArabic/hinted/ttf/NotoSansArabic-SemiCondensedBold.ttf",
"fonts/NotoSansArabic/hinted/ttf/NotoSansArabic-SemiCondensedExtraBold.ttf",
"fonts/NotoSansArabic/hinted/ttf/NotoSansArabic-ExtraCondensedExtraLight.ttf",
"fonts/NotoSansArabic/hinted/ttf/NotoSansArabic-Regular.ttf",
"fonts/NotoSansArabic/hinted/ttf/NotoSansArabic-ExtraBold.ttf",
"fonts/NotoSansArabic/hinted/ttf/NotoSansArabic-SemiBold.ttf",
"fonts/NotoSansArabic/hinted/ttf/NotoSansArabic-ExtraCondensedBlack.ttf",
"fonts/NotoSansArabic/hinted/ttf/NotoSansArabic-SemiCondensedSemiBold.ttf",
"fonts/NotoSansArabic/hinted/ttf/NotoSansArabic-SemiCondensedMedium.ttf",
"fonts/NotoSansArabic/hinted/ttf/NotoSansArabic-ExtraCondensed.ttf",
"fonts/NotoSansArabic/hinted/ttf/NotoSansArabic-Condensed.ttf",
"fonts/NotoSansArabic/hinted/ttf/NotoSansArabic-CondensedExtraLight.ttf",
"fonts/NotoSansArabic/hinted/ttf/NotoSansArabic-ExtraLight.ttf",
"fonts/NotoSansArabic/hinted/ttf/NotoSansArabic-ExtraCondensedSemiBold.ttf",
"fonts/NotoSansArabic/hinted/ttf/NotoSansArabic-Thin.ttf",
"fonts/NotoSansArabic/hinted/ttf/NotoSansArabic-SemiCondensedBlack.ttf",
"fonts/NotoSansArabic/hinted/ttf/NotoSansArabic-CondensedLight.ttf",
"fonts/NotoSansArabic/hinted/ttf/NotoSansArabic-SemiCondensedThin.ttf",
"fonts/NotoSansArabic/hinted/ttf/NotoSansArabic-SemiCondensed.ttf",
"fonts/NotoSansArabic/hinted/ttf/NotoSansArabic-ExtraCondensedExtraBold.ttf",
"fonts/NotoSansArabic/hinted/ttf/NotoSansArabic-Medium.ttf",
"fonts/NotoSansArabic/hinted/ttf/NotoSansArabic-CondensedBlack.ttf",
"fonts/NotoSansArabic/hinted/ttf/NotoSansArabic-ExtraCondensedBold.ttf",
"fonts/NotoSansArabic/hinted/ttf/NotoSansArabic-CondensedBold.ttf",
"fonts/NotoSansArabic/hinted/ttf/NotoSansArabic-ExtraCondensedThin.ttf",
"fonts/NotoSansArabic/googlefonts/variable/NotoSansArabic[wdth,wght].ttf",
"fonts/NotoSansArabic/googlefonts/ttf/NotoSansArabic-Black.ttf",
"fonts/NotoSansArabic/googlefonts/ttf/NotoSansArabic-Bold.ttf",
"fonts/NotoSansArabic/googlefonts/ttf/NotoSansArabic-Light.ttf",
"fonts/NotoSansArabic/googlefonts/ttf/NotoSansArabic-Regular.ttf",
"fonts/NotoSansArabic/googlefonts/ttf/NotoSansArabic-ExtraBold.ttf",
"fonts/NotoSansArabic/googlefonts/ttf/NotoSansArabic-SemiBold.ttf",
"fonts/NotoSansArabic/googlefonts/ttf/NotoSansArabic-ExtraLight.ttf",
"fonts/NotoSansArabic/googlefonts/ttf/NotoSansArabic-Thin.ttf",
"fonts/NotoSansArabic/googlefonts/ttf/NotoSansArabic-Medium.ttf",
"fonts/NotoSansArabic/unhinted/variable/NotoSansArabic[wdth,wght].ttf",
"fonts/NotoSansArabic/unhinted/slim-variable-ttf/NotoSansArabic[wght].ttf",
"fonts/NotoSansArabic/unhinted/ttf/NotoSansArabic-ExtraCondensedLight.ttf",
"fonts/NotoSansArabic/unhinted/ttf/NotoSansArabic-CondensedExtraBold.ttf",
"fonts/NotoSansArabic/unhinted/ttf/NotoSansArabic-Black.ttf",
"fonts/NotoSansArabic/unhinted/ttf/NotoSansArabic-CondensedMedium.ttf",
"fonts/NotoSansArabic/unhinted/ttf/NotoSansArabic-CondensedThin.ttf",
"fonts/NotoSansArabic/unhinted/ttf/NotoSansArabic-SemiCondensedLight.ttf",
"fonts/NotoSansArabic/unhinted/ttf/NotoSansArabic-SemiCondensedExtraLight.ttf",
"fonts/NotoSansArabic/unhinted/ttf/NotoSansArabic-CondensedSemiBold.ttf",
"fonts/NotoSansArabic/unhinted/ttf/NotoSansArabic-Bold.ttf",
"fonts/NotoSansArabic/unhinted/ttf/NotoSansArabic-Light.ttf",
"fonts/NotoSansArabic/unhinted/ttf/NotoSansArabic-ExtraCondensedMedium.ttf",
"fonts/NotoSansArabic/unhinted/ttf/NotoSansArabic-SemiCondensedBold.ttf",
"fonts/NotoSansArabic/unhinted/ttf/NotoSansArabic-SemiCondensedExtraBold.ttf",
"fonts/NotoSansArabic/unhinted/ttf/NotoSansArabic-ExtraCondensedExtraLight.ttf",
"fonts/NotoSansArabic/unhinted/ttf/NotoSansArabic-Regular.ttf",
"fonts/NotoSansArabic/unhinted/ttf/NotoSansArabic-ExtraBold.ttf",
"fonts/NotoSansArabic/unhinted/ttf/NotoSansArabic-SemiBold.ttf",
"fonts/NotoSansArabic/unhinted/ttf/NotoSansArabic-ExtraCondensedBlack.ttf",
"fonts/NotoSansArabic/unhinted/ttf/NotoSansArabic-SemiCondensedSemiBold.ttf",
"fonts/NotoSansArabic/unhinted/ttf/NotoSansArabic-SemiCondensedMedium.ttf",
"fonts/NotoSansArabic/unhinted/ttf/NotoSansArabic-ExtraCondensed.ttf",
"fonts/NotoSansArabic/unhinted/ttf/NotoSansArabic-Condensed.ttf",
"fonts/NotoSansArabic/unhinted/ttf/NotoSansArabic-CondensedExtraLight.ttf",
"fonts/NotoSansArabic/unhinted/ttf/NotoSansArabic-ExtraLight.ttf",
"fonts/NotoSansArabic/unhinted/ttf/NotoSansArabic-ExtraCondensedSemiBold.ttf",
"fonts/NotoSansArabic/unhinted/ttf/NotoSansArabic-Thin.ttf",
"fonts/NotoSansArabic/unhinted/ttf/NotoSansArabic-SemiCondensedBlack.ttf",
"fonts/NotoSansArabic/unhinted/ttf/NotoSansArabic-CondensedLight.ttf",
"fonts/NotoSansArabic/unhinted/ttf/NotoSansArabic-SemiCondensedThin.ttf",
"fonts/NotoSansArabic/unhinted/ttf/NotoSansArabic-SemiCondensed.ttf",
"fonts/NotoSansArabic/unhinted/ttf/NotoSansArabic-ExtraCondensedExtraBold.ttf",
"fonts/NotoSansArabic/unhinted/ttf/NotoSansArabic-Medium.ttf",
"fonts/NotoSansArabic/unhinted/ttf/NotoSansArabic-CondensedBlack.ttf",
"fonts/NotoSansArabic/unhinted/ttf/NotoSansArabic-ExtraCondensedBold.ttf",
"fonts/NotoSansArabic/unhinted/ttf/NotoSansArabic-CondensedBold.ttf",
"fonts/NotoSansArabic/unhinted/ttf/NotoSansArabic-ExtraCondensedThin.ttf",
"fonts/NotoSansArabic/unhinted/otf/NotoSansArabic-SemiCondensedMedium.otf",
"fonts/NotoSansArabic/unhinted/otf/NotoSansArabic-CondensedBlack.otf",
"fonts/NotoSansArabic/unhinted/otf/NotoSansArabic-CondensedLight.otf",
"fonts/NotoSansArabic/unhinted/otf/NotoSansArabic-ExtraCondensedExtraBold.otf",
"fonts/NotoSansArabic/unhinted/otf/NotoSansArabic-ExtraCondensedLight.otf",
"fonts/NotoSansArabic/unhinted/otf/NotoSansArabic-ExtraCondensedThin.otf",
"fonts/NotoSansArabic/unhinted/otf/NotoSansArabic-ExtraCondensedBlack.otf",
"fonts/NotoSansArabic/unhinted/otf/NotoSansArabic-SemiCondensed.otf",
"fonts/NotoSansArabic/unhinted/otf/NotoSansArabic-CondensedExtraBold.otf",
"fonts/NotoSansArabic/unhinted/otf/NotoSansArabic-ExtraBold.otf",
"fonts/NotoSansArabic/unhinted/otf/NotoSansArabic-ExtraCondensedSemiBold.otf",
"fonts/NotoSansArabic/unhinted/otf/NotoSansArabic-Regular.otf",
"fonts/NotoSansArabic/unhinted/otf/NotoSansArabic-ExtraCondensed.otf",
"fonts/NotoSansArabic/unhinted/otf/NotoSansArabic-ExtraLight.otf",
"fonts/NotoSansArabic/unhinted/otf/NotoSansArabic-ExtraCondensedMedium.otf",
"fonts/NotoSansArabic/unhinted/otf/NotoSansArabic-CondensedSemiBold.otf",
"fonts/NotoSansArabic/unhinted/otf/NotoSansArabic-SemiCondensedBold.otf",
"fonts/NotoSansArabic/unhinted/otf/NotoSansArabic-SemiCondensedBlack.otf",
"fonts/NotoSansArabic/unhinted/otf/NotoSansArabic-Thin.otf",
"fonts/NotoSansArabic/unhinted/otf/NotoSansArabic-ExtraCondensedBold.otf",
"fonts/NotoSansArabic/unhinted/otf/NotoSansArabic-Condensed.otf",
"fonts/NotoSansArabic/unhinted/otf/NotoSansArabic-CondensedBold.otf",
"fonts/NotoSansArabic/unhinted/otf/NotoSansArabic-Medium.otf",
"fonts/NotoSansArabic/unhinted/otf/NotoSansArabic-ExtraCondensedExtraLight.otf",
"fonts/NotoSansArabic/unhinted/otf/NotoSansArabic-SemiCondensedThin.otf",
"fonts/NotoSansArabic/unhinted/otf/NotoSansArabic-CondensedThin.otf",
"fonts/NotoSansArabic/unhinted/otf/NotoSansArabic-Bold.otf",
"fonts/NotoSansArabic/unhinted/otf/NotoSansArabic-CondensedExtraLight.otf",
"fonts/NotoSansArabic/unhinted/otf/NotoSansArabic-SemiCondensedLight.otf",
"fonts/NotoSansArabic/unhinted/otf/NotoSansArabic-SemiCondensedSemiBold.otf",
"fonts/NotoSansArabic/unhinted/otf/NotoSansArabic-CondensedMedium.otf",
"fonts/NotoSansArabic/unhinted/otf/NotoSansArabic-SemiBold.otf",
"fonts/NotoSansArabic/unhinted/otf/NotoSansArabic-SemiCondensedExtraLight.otf",
"fonts/NotoSansArabic/unhinted/otf/NotoSansArabic-Light.otf",
"fonts/NotoSansArabic/unhinted/otf/NotoSansArabic-Black.otf",
"fonts/NotoSansArabic/unhinted/otf/NotoSansArabic-SemiCondensedExtraBold.otf",
"fonts/NotoSansArabic/full/variable/NotoSansArabic[wdth,wght].ttf",
"fonts/NotoSansArabic/full/slim-variable-ttf/NotoSansArabic[wght].ttf",
"fonts/NotoSansArabic/full/ttf/NotoSansArabic-ExtraCondensedLight.ttf",
"fonts/NotoSansArabic/full/ttf/NotoSansArabic-CondensedExtraBold.ttf",
"fonts/NotoSansArabic/full/ttf/NotoSansArabic-Black.ttf",
"fonts/NotoSansArabic/full/ttf/NotoSansArabic-CondensedMedium.ttf",
"fonts/NotoSansArabic/full/ttf/NotoSansArabic-CondensedThin.ttf",
"fonts/NotoSansArabic/full/ttf/NotoSansArabic-SemiCondensedLight.ttf",
"fonts/NotoSansArabic/full/ttf/NotoSansArabic-SemiCondensedExtraLight.ttf",
"fonts/NotoSansArabic/full/ttf/NotoSansArabic-CondensedSemiBold.ttf",
"fonts/NotoSansArabic/full/ttf/NotoSansArabic-Bold.ttf",
"fonts/NotoSansArabic/full/ttf/NotoSansArabic-Light.ttf",
"fonts/NotoSansArabic/full/ttf/NotoSansArabic-ExtraCondensedMedium.ttf",
"fonts/NotoSansArabic/full/ttf/NotoSansArabic-SemiCondensedBold.ttf",
"fonts/NotoSansArabic/full/ttf/NotoSansArabic-SemiCondensedExtraBold.ttf",
"fonts/NotoSansArabic/full/ttf/NotoSansArabic-ExtraCondensedExtraLight.ttf",
"fonts/NotoSansArabic/full/ttf/NotoSansArabic-Regular.ttf",
"fonts/NotoSansArabic/full/ttf/NotoSansArabic-ExtraBold.ttf",
"fonts/NotoSansArabic/full/ttf/NotoSansArabic-SemiBold.ttf",
"fonts/NotoSansArabic/full/ttf/NotoSansArabic-ExtraCondensedBlack.ttf",
"fonts/NotoSansArabic/full/ttf/NotoSansArabic-SemiCondensedSemiBold.ttf",
"fonts/NotoSansArabic/full/ttf/NotoSansArabic-SemiCondensedMedium.ttf",
"fonts/NotoSansArabic/full/ttf/NotoSansArabic-ExtraCondensed.ttf",
"fonts/NotoSansArabic/full/ttf/NotoSansArabic-Condensed.ttf",
"fonts/NotoSansArabic/full/ttf/NotoSansArabic-CondensedExtraLight.ttf",
"fonts/NotoSansArabic/full/ttf/NotoSansArabic-ExtraLight.ttf",
"fonts/NotoSansArabic/full/ttf/NotoSansArabic-ExtraCondensedSemiBold.ttf",
"fonts/NotoSansArabic/full/ttf/NotoSansArabic-Thin.ttf",
"fonts/NotoSansArabic/full/ttf/NotoSansArabic-SemiCondensedBlack.ttf",
"fonts/NotoSansArabic/full/ttf/NotoSansArabic-CondensedLight.ttf",
"fonts/NotoSansArabic/full/ttf/NotoSansArabic-SemiCondensedThin.ttf",
"fonts/NotoSansArabic/full/ttf/NotoSansArabic-SemiCondensed.ttf",
"fonts/NotoSansArabic/full/ttf/NotoSansArabic-ExtraCondensedExtraBold.ttf",
"fonts/NotoSansArabic/full/ttf/NotoSansArabic-Medium.ttf",
"fonts/NotoSansArabic/full/ttf/NotoSansArabic-CondensedBlack.ttf",
"fonts/NotoSansArabic/full/ttf/NotoSansArabic-ExtraCondensedBold.ttf",
"fonts/NotoSansArabic/full/ttf/NotoSansArabic-CondensedBold.ttf",
"fonts/NotoSansArabic/full/ttf/NotoSansArabic-ExtraCondensedThin.ttf",
"fonts/NotoSansArabic/full/otf/NotoSansArabic-SemiCondensedMedium.otf",
"fonts/NotoSansArabic/full/otf/NotoSansArabic-CondensedBlack.otf",
"fonts/NotoSansArabic/full/otf/NotoSansArabic-CondensedLight.otf",
"fonts/NotoSansArabic/full/otf/NotoSansArabic-ExtraCondensedExtraBold.otf",
"fonts/NotoSansArabic/full/otf/NotoSansArabic-ExtraCondensedLight.otf",
"fonts/NotoSansArabic/full/otf/NotoSansArabic-ExtraCondensedThin.otf",
"fonts/NotoSansArabic/full/otf/NotoSansArabic-ExtraCondensedBlack.otf",
"fonts/NotoSansArabic/full/otf/NotoSansArabic-SemiCondensed.otf",
"fonts/NotoSansArabic/full/otf/NotoSansArabic-CondensedExtraBold.otf",
"fonts/NotoSansArabic/full/otf/NotoSansArabic-ExtraBold.otf",
"fonts/NotoSansArabic/full/otf/NotoSansArabic-ExtraCondensedSemiBold.otf",
"fonts/NotoSansArabic/full/otf/NotoSansArabic-Regular.otf",
"fonts/NotoSansArabic/full/otf/NotoSansArabic-ExtraCondensed.otf",
"fonts/NotoSansArabic/full/otf/NotoSansArabic-ExtraLight.otf",
"fonts/NotoSansArabic/full/otf/NotoSansArabic-ExtraCondensedMedium.otf",
"fonts/NotoSansArabic/full/otf/NotoSansArabic-CondensedSemiBold.otf",
"fonts/NotoSansArabic/full/otf/NotoSansArabic-SemiCondensedBold.otf",
"fonts/NotoSansArabic/full/otf/NotoSansArabic-SemiCondensedBlack.otf",
"fonts/NotoSansArabic/full/otf/NotoSansArabic-Thin.otf",
"fonts/NotoSansArabic/full/otf/NotoSansArabic-ExtraCondensedBold.otf",
"fonts/NotoSansArabic/full/otf/NotoSansArabic-Condensed.otf",
"fonts/NotoSansArabic/full/otf/NotoSansArabic-CondensedBold.otf",
"fonts/NotoSansArabic/full/otf/NotoSansArabic-Medium.otf",
"fonts/NotoSansArabic/full/otf/NotoSansArabic-ExtraCondensedExtraLight.otf",
"fonts/NotoSansArabic/full/otf/NotoSansArabic-SemiCondensedThin.otf",
"fonts/NotoSansArabic/full/otf/NotoSansArabic-CondensedThin.otf",
"fonts/NotoSansArabic/full/otf/NotoSansArabic-Bold.otf",
"fonts/NotoSansArabic/full/otf/NotoSansArabic-CondensedExtraLight.otf",
"fonts/NotoSansArabic/full/otf/NotoSansArabic-SemiCondensedLight.otf",
"fonts/NotoSansArabic/full/otf/NotoSansArabic-SemiCondensedSemiBold.otf",
"fonts/NotoSansArabic/full/otf/NotoSansArabic-CondensedMedium.otf",
"fonts/NotoSansArabic/full/otf/NotoSansArabic-SemiBold.otf",
"fonts/NotoSansArabic/full/otf/NotoSansArabic-SemiCondensedExtraLight.otf",
"fonts/NotoSansArabic/full/otf/NotoSansArabic-Light.otf",
"fonts/NotoSansArabic/full/otf/NotoSansArabic-Black.otf",
"fonts/NotoSansArabic/full/otf/NotoSansArabic-SemiCondensedExtraBold.otf"
],
"latest_release": {
"notes": "Noto Sans Arabic v2.012\n\nThis release:\n\n* Fixes the shape of U+FEE9 (#206)\n* Improves the positioning of the dots in TCHEHEH FINAL FORM (#208)\n* Improves the positioning of marks on ZAIN WITH INVERTED V ABOVE (#209)\n* Improves the positioning of the bar on REH WITH STROKE (#210)\n* Fixes the position of marks on KAF/GAF (#213, #214, #218)\n* Improves the positioning of marks on TAH (#215)\n* Restores kerning which had gone missing (#216)\n* Corrects the dots under GUEH (#219)\n* Fixes the vertical metrics (#221)\n",
"published": "2023-11-07T09:43:46+00:00",
"url": "https://github.com/notofonts/arabic/releases/tag/NotoSansArabic-v2.012",
"version": "v2.012"
}
},
"Noto Sans Arabic UI": {
"files": [
"fonts/NotoSansArabicUI/googlefonts/variable-ttf/NotoSansArabicUI[wdth,wght].ttf",
"fonts/NotoSansArabicUI/full/otf/NotoSansArabicUI-SemiCondensedBold.otf",
"fonts/NotoSansArabicUI/full/otf/NotoSansArabicUI-Bold.otf",
"fonts/NotoSansArabicUI/full/otf/NotoSansArabicUI-Light.otf",
"fonts/NotoSansArabicUI/full/otf/NotoSansArabicUI-CondensedSemiBold.otf",
"fonts/NotoSansArabicUI/full/otf/NotoSansArabicUI-ExtraCondensedThin.otf",
"fonts/NotoSansArabicUI/full/otf/NotoSansArabicUI-ExtraCondensedLight.otf",
"fonts/NotoSansArabicUI/full/otf/NotoSansArabicUI-ExtraLight.otf",
"fonts/NotoSansArabicUI/full/otf/NotoSansArabicUI-ExtraCondensedExtraLight.otf",
"fonts/NotoSansArabicUI/full/otf/NotoSansArabicUI-SemiCondensedBlack.otf",
"fonts/NotoSansArabicUI/full/otf/NotoSansArabicUI-CondensedBold.otf",
"fonts/NotoSansArabicUI/full/otf/NotoSansArabicUI-CondensedBlack.otf",
"fonts/NotoSansArabicUI/full/otf/NotoSansArabicUI-CondensedExtraBold.otf",
"fonts/NotoSansArabicUI/full/otf/NotoSansArabicUI-ExtraCondensedSemiBold.otf",
"fonts/NotoSansArabicUI/full/otf/NotoSansArabicUI-ExtraBold.otf",
"fonts/NotoSansArabicUI/full/otf/NotoSansArabicUI-Black.otf",
"fonts/NotoSansArabicUI/full/otf/NotoSansArabicUI-Regular.otf",
"fonts/NotoSansArabicUI/full/otf/NotoSansArabicUI-ExtraCondensedBlack.otf",
"fonts/NotoSansArabicUI/full/otf/NotoSansArabicUI-SemiCondensedMedium.otf",
"fonts/NotoSansArabicUI/full/otf/NotoSansArabicUI-SemiCondensedLight.otf",
"fonts/NotoSansArabicUI/full/otf/NotoSansArabicUI-ExtraCondensedExtraBold.otf",
"fonts/NotoSansArabicUI/full/otf/NotoSansArabicUI-Medium.otf",
"fonts/NotoSansArabicUI/full/otf/NotoSansArabicUI-ExtraCondensedBold.otf",
"fonts/NotoSansArabicUI/full/otf/NotoSansArabicUI-SemiCondensedExtraBold.otf",
"fonts/NotoSansArabicUI/full/otf/NotoSansArabicUI-Thin.otf",
"fonts/NotoSansArabicUI/full/otf/NotoSansArabicUI-SemiCondensedExtraLight.otf",
"fonts/NotoSansArabicUI/full/otf/NotoSansArabicUI-SemiCondensedThin.otf",
"fonts/NotoSansArabicUI/full/otf/NotoSansArabicUI-CondensedThin.otf",
"fonts/NotoSansArabicUI/full/otf/NotoSansArabicUI-SemiCondensed.otf",
"fonts/NotoSansArabicUI/full/otf/NotoSansArabicUI-CondensedMedium.otf",
"fonts/NotoSansArabicUI/full/otf/NotoSansArabicUI-SemiBold.otf",
"fonts/NotoSansArabicUI/full/otf/NotoSansArabicUI-ExtraCondensed.otf",
"fonts/NotoSansArabicUI/full/otf/NotoSansArabicUI-SemiCondensedSemiBold.otf",
"fonts/NotoSansArabicUI/full/otf/NotoSansArabicUI-CondensedLight.otf",
"fonts/NotoSansArabicUI/full/otf/NotoSansArabicUI-ExtraCondensedMedium.otf",
"fonts/NotoSansArabicUI/full/otf/NotoSansArabicUI-Condensed.otf",
"fonts/NotoSansArabicUI/full/otf/NotoSansArabicUI-CondensedExtraLight.otf",
"fonts/NotoSansArabicUI/full/ttf/NotoSansArabicUI-SemiCondensedSemiBold.ttf",
"fonts/NotoSansArabicUI/full/ttf/NotoSansArabicUI-SemiCondensedMedium.ttf",
"fonts/NotoSansArabicUI/full/ttf/NotoSansArabicUI-SemiCondensedExtraLight.ttf",
"fonts/NotoSansArabicUI/full/ttf/NotoSansArabicUI-SemiCondensed.ttf",
"fonts/NotoSansArabicUI/full/ttf/NotoSansArabicUI-SemiCondensedLight.ttf",
"fonts/NotoSansArabicUI/full/ttf/NotoSansArabicUI-SemiCondensedBold.ttf",
"fonts/NotoSansArabicUI/full/ttf/NotoSansArabicUI-SemiCondensedExtraBold.ttf",
"fonts/NotoSansArabicUI/full/ttf/NotoSansArabicUI-Thin.ttf",
"fonts/NotoSansArabicUI/full/ttf/NotoSansArabicUI-CondensedExtraBold.ttf",
"fonts/NotoSansArabicUI/full/ttf/NotoSansArabicUI-Light.ttf",
"fonts/NotoSansArabicUI/full/ttf/NotoSansArabicUI-Regular.ttf",
"fonts/NotoSansArabicUI/full/ttf/NotoSansArabicUI-CondensedBlack.ttf",
"fonts/NotoSansArabicUI/full/ttf/NotoSansArabicUI-CondensedExtraLight.ttf",
"fonts/NotoSansArabicUI/full/ttf/NotoSansArabicUI-ExtraCondensedSemiBold.ttf",
"fonts/NotoSansArabicUI/full/ttf/NotoSansArabicUI-Medium.ttf",
"fonts/NotoSansArabicUI/full/ttf/NotoSansArabicUI-CondensedThin.ttf",
"fonts/NotoSansArabicUI/full/ttf/NotoSansArabicUI-CondensedBold.ttf",
"fonts/NotoSansArabicUI/full/ttf/NotoSansArabicUI-SemiCondensedThin.ttf",
"fonts/NotoSansArabicUI/full/ttf/NotoSansArabicUI-Bold.ttf",
"fonts/NotoSansArabicUI/full/ttf/NotoSansArabicUI-Condensed.ttf",
"fonts/NotoSansArabicUI/full/ttf/NotoSansArabicUI-SemiBold.ttf",
"fonts/NotoSansArabicUI/full/ttf/NotoSansArabicUI-ExtraCondensed.ttf",
"fonts/NotoSansArabicUI/full/ttf/NotoSansArabicUI-ExtraCondensedLight.ttf",
"fonts/NotoSansArabicUI/full/ttf/NotoSansArabicUI-CondensedSemiBold.ttf",
"fonts/NotoSansArabicUI/full/ttf/NotoSansArabicUI-ExtraCondensedBlack.ttf",
"fonts/NotoSansArabicUI/full/ttf/NotoSansArabicUI-ExtraCondensedBold.ttf",
"fonts/NotoSansArabicUI/full/ttf/NotoSansArabicUI-ExtraCondensedExtraBold.ttf",
"fonts/NotoSansArabicUI/full/ttf/NotoSansArabicUI-SemiCondensedBlack.ttf",
"fonts/NotoSansArabicUI/full/ttf/NotoSansArabicUI-CondensedMedium.ttf",
"fonts/NotoSansArabicUI/full/ttf/NotoSansArabicUI-ExtraCondensedThin.ttf",
"fonts/NotoSansArabicUI/full/ttf/NotoSansArabicUI-ExtraCondensedExtraLight.ttf",
"fonts/NotoSansArabicUI/full/ttf/NotoSansArabicUI-ExtraLight.ttf",
"fonts/NotoSansArabicUI/full/ttf/NotoSansArabicUI-ExtraCondensedMedium.ttf",
"fonts/NotoSansArabicUI/full/ttf/NotoSansArabicUI-ExtraBold.ttf",
"fonts/NotoSansArabicUI/full/ttf/NotoSansArabicUI-Black.ttf",
"fonts/NotoSansArabicUI/full/ttf/NotoSansArabicUI-CondensedLight.ttf",
"fonts/NotoSansArabicUI/full/slim-variable-ttf/NotoSansArabicUI[wght].ttf",
"fonts/NotoSansArabicUI/full/variable-ttf/NotoSansArabicUI[wdth,wght].ttf",
"fonts/NotoSansArabicUI/hinted/ttf/NotoSansArabicUI-SemiCondensedSemiBold.ttf",
"fonts/NotoSansArabicUI/hinted/ttf/NotoSansArabicUI-SemiCondensedMedium.ttf",
"fonts/NotoSansArabicUI/hinted/ttf/NotoSansArabicUI-SemiCondensedExtraLight.ttf",
"fonts/NotoSansArabicUI/hinted/ttf/NotoSansArabicUI-SemiCondensed.ttf",
"fonts/NotoSansArabicUI/hinted/ttf/NotoSansArabicUI-SemiCondensedLight.ttf",
"fonts/NotoSansArabicUI/hinted/ttf/NotoSansArabicUI-SemiCondensedBold.ttf",
"fonts/NotoSansArabicUI/hinted/ttf/NotoSansArabicUI-SemiCondensedExtraBold.ttf",
"fonts/NotoSansArabicUI/hinted/ttf/NotoSansArabicUI-Thin.ttf",
"fonts/NotoSansArabicUI/hinted/ttf/NotoSansArabicUI-CondensedExtraBold.ttf",
"fonts/NotoSansArabicUI/hinted/ttf/NotoSansArabicUI-Light.ttf",
"fonts/NotoSansArabicUI/hinted/ttf/NotoSansArabicUI-Regular.ttf",
"fonts/NotoSansArabicUI/hinted/ttf/NotoSansArabicUI-CondensedBlack.ttf",
"fonts/NotoSansArabicUI/hinted/ttf/NotoSansArabicUI-CondensedExtraLight.ttf",
"fonts/NotoSansArabicUI/hinted/ttf/NotoSansArabicUI-ExtraCondensedSemiBold.ttf",
"fonts/NotoSansArabicUI/hinted/ttf/NotoSansArabicUI-Medium.ttf",
"fonts/NotoSansArabicUI/hinted/ttf/NotoSansArabicUI-CondensedThin.ttf",
"fonts/NotoSansArabicUI/hinted/ttf/NotoSansArabicUI-CondensedBold.ttf",
"fonts/NotoSansArabicUI/hinted/ttf/NotoSansArabicUI-SemiCondensedThin.ttf",
"fonts/NotoSansArabicUI/hinted/ttf/NotoSansArabicUI-Bold.ttf",
"fonts/NotoSansArabicUI/hinted/ttf/NotoSansArabicUI-Condensed.ttf",
"fonts/NotoSansArabicUI/hinted/ttf/NotoSansArabicUI-SemiBold.ttf",
"fonts/NotoSansArabicUI/hinted/ttf/NotoSansArabicUI-ExtraCondensed.ttf",
"fonts/NotoSansArabicUI/hinted/ttf/NotoSansArabicUI-ExtraCondensedLight.ttf",
"fonts/NotoSansArabicUI/hinted/ttf/NotoSansArabicUI-CondensedSemiBold.ttf",
"fonts/NotoSansArabicUI/hinted/ttf/NotoSansArabicUI-ExtraCondensedBlack.ttf",
"fonts/NotoSansArabicUI/hinted/ttf/NotoSansArabicUI-ExtraCondensedBold.ttf",
"fonts/NotoSansArabicUI/hinted/ttf/NotoSansArabicUI-ExtraCondensedExtraBold.ttf",
"fonts/NotoSansArabicUI/hinted/ttf/NotoSansArabicUI-SemiCondensedBlack.ttf",
"fonts/NotoSansArabicUI/hinted/ttf/NotoSansArabicUI-CondensedMedium.ttf",
"fonts/NotoSansArabicUI/hinted/ttf/NotoSansArabicUI-ExtraCondensedThin.ttf",
"fonts/NotoSansArabicUI/hinted/ttf/NotoSansArabicUI-ExtraCondensedExtraLight.ttf",
"fonts/NotoSansArabicUI/hinted/ttf/NotoSansArabicUI-ExtraLight.ttf",
"fonts/NotoSansArabicUI/hinted/ttf/NotoSansArabicUI-ExtraCondensedMedium.ttf",
"fonts/NotoSansArabicUI/hinted/ttf/NotoSansArabicUI-ExtraBold.ttf",
"fonts/NotoSansArabicUI/hinted/ttf/NotoSansArabicUI-Black.ttf",
"fonts/NotoSansArabicUI/hinted/ttf/NotoSansArabicUI-CondensedLight.ttf",
"fonts/NotoSansArabicUI/unhinted/otf/NotoSansArabicUI-SemiCondensedBold.otf",
"fonts/NotoSansArabicUI/unhinted/otf/NotoSansArabicUI-Bold.otf",
"fonts/NotoSansArabicUI/unhinted/otf/NotoSansArabicUI-Light.otf",
"fonts/NotoSansArabicUI/unhinted/otf/NotoSansArabicUI-CondensedSemiBold.otf",
"fonts/NotoSansArabicUI/unhinted/otf/NotoSansArabicUI-ExtraCondensedThin.otf",
"fonts/NotoSansArabicUI/unhinted/otf/NotoSansArabicUI-ExtraCondensedLight.otf",
"fonts/NotoSansArabicUI/unhinted/otf/NotoSansArabicUI-ExtraLight.otf",
"fonts/NotoSansArabicUI/unhinted/otf/NotoSansArabicUI-ExtraCondensedExtraLight.otf",
"fonts/NotoSansArabicUI/unhinted/otf/NotoSansArabicUI-SemiCondensedBlack.otf",
"fonts/NotoSansArabicUI/unhinted/otf/NotoSansArabicUI-CondensedBold.otf",
"fonts/NotoSansArabicUI/unhinted/otf/NotoSansArabicUI-CondensedBlack.otf",
"fonts/NotoSansArabicUI/unhinted/otf/NotoSansArabicUI-CondensedExtraBold.otf",
"fonts/NotoSansArabicUI/unhinted/otf/NotoSansArabicUI-ExtraCondensedSemiBold.otf",
"fonts/NotoSansArabicUI/unhinted/otf/NotoSansArabicUI-ExtraBold.otf",
"fonts/NotoSansArabicUI/unhinted/otf/NotoSansArabicUI-Black.otf",
"fonts/NotoSansArabicUI/unhinted/otf/NotoSansArabicUI-Regular.otf",
"fonts/NotoSansArabicUI/unhinted/otf/NotoSansArabicUI-ExtraCondensedBlack.otf",
"fonts/NotoSansArabicUI/unhinted/otf/NotoSansArabicUI-SemiCondensedMedium.otf",
"fonts/NotoSansArabicUI/unhinted/otf/NotoSansArabicUI-SemiCondensedLight.otf",
"fonts/NotoSansArabicUI/unhinted/otf/NotoSansArabicUI-ExtraCondensedExtraBold.otf",
"fonts/NotoSansArabicUI/unhinted/otf/NotoSansArabicUI-Medium.otf",
"fonts/NotoSansArabicUI/unhinted/otf/NotoSansArabicUI-ExtraCondensedBold.otf",
"fonts/NotoSansArabicUI/unhinted/otf/NotoSansArabicUI-SemiCondensedExtraBold.otf",
"fonts/NotoSansArabicUI/unhinted/otf/NotoSansArabicUI-Thin.otf",
"fonts/NotoSansArabicUI/unhinted/otf/NotoSansArabicUI-SemiCondensedExtraLight.otf",
"fonts/NotoSansArabicUI/unhinted/otf/NotoSansArabicUI-SemiCondensedThin.otf",
"fonts/NotoSansArabicUI/unhinted/otf/NotoSansArabicUI-CondensedThin.otf",
"fonts/NotoSansArabicUI/unhinted/otf/NotoSansArabicUI-SemiCondensed.otf",
"fonts/NotoSansArabicUI/unhinted/otf/NotoSansArabicUI-CondensedMedium.otf",
"fonts/NotoSansArabicUI/unhinted/otf/NotoSansArabicUI-SemiBold.otf",
"fonts/NotoSansArabicUI/unhinted/otf/NotoSansArabicUI-ExtraCondensed.otf",
"fonts/NotoSansArabicUI/unhinted/otf/NotoSansArabicUI-SemiCondensedSemiBold.otf",
"fonts/NotoSansArabicUI/unhinted/otf/NotoSansArabicUI-CondensedLight.otf",
"fonts/NotoSansArabicUI/unhinted/otf/NotoSansArabicUI-ExtraCondensedMedium.otf",
"fonts/NotoSansArabicUI/unhinted/otf/NotoSansArabicUI-Condensed.otf",
"fonts/NotoSansArabicUI/unhinted/otf/NotoSansArabicUI-CondensedExtraLight.otf",
"fonts/NotoSansArabicUI/unhinted/ttf/NotoSansArabicUI-SemiCondensedSemiBold.ttf",
"fonts/NotoSansArabicUI/unhinted/ttf/NotoSansArabicUI-SemiCondensedMedium.ttf",
"fonts/NotoSansArabicUI/unhinted/ttf/NotoSansArabicUI-SemiCondensedExtraLight.ttf",
"fonts/NotoSansArabicUI/unhinted/ttf/NotoSansArabicUI-SemiCondensed.ttf",
"fonts/NotoSansArabicUI/unhinted/ttf/NotoSansArabicUI-SemiCondensedLight.ttf",
"fonts/NotoSansArabicUI/unhinted/ttf/NotoSansArabicUI-SemiCondensedBold.ttf",
"fonts/NotoSansArabicUI/unhinted/ttf/NotoSansArabicUI-SemiCondensedExtraBold.ttf",
"fonts/NotoSansArabicUI/unhinted/ttf/NotoSansArabicUI-Thin.ttf",
"fonts/NotoSansArabicUI/unhinted/ttf/NotoSansArabicUI-CondensedExtraBold.ttf",
"fonts/NotoSansArabicUI/unhinted/ttf/NotoSansArabicUI-Light.ttf",
"fonts/NotoSansArabicUI/unhinted/ttf/NotoSansArabicUI-Regular.ttf",
"fonts/NotoSansArabicUI/unhinted/ttf/NotoSansArabicUI-CondensedBlack.ttf",
"fonts/NotoSansArabicUI/unhinted/ttf/NotoSansArabicUI-CondensedExtraLight.ttf",
"fonts/NotoSansArabicUI/unhinted/ttf/NotoSansArabicUI-ExtraCondensedSemiBold.ttf",
"fonts/NotoSansArabicUI/unhinted/ttf/NotoSansArabicUI-Medium.ttf",
"fonts/NotoSansArabicUI/unhinted/ttf/NotoSansArabicUI-CondensedThin.ttf",
"fonts/NotoSansArabicUI/unhinted/ttf/NotoSansArabicUI-CondensedBold.ttf",
"fonts/NotoSansArabicUI/unhinted/ttf/NotoSansArabicUI-SemiCondensedThin.ttf",
"fonts/NotoSansArabicUI/unhinted/ttf/NotoSansArabicUI-Bold.ttf",
"fonts/NotoSansArabicUI/unhinted/ttf/NotoSansArabicUI-Condensed.ttf",
"fonts/NotoSansArabicUI/unhinted/ttf/NotoSansArabicUI-SemiBold.ttf",
"fonts/NotoSansArabicUI/unhinted/ttf/NotoSansArabicUI-ExtraCondensed.ttf",
"fonts/NotoSansArabicUI/unhinted/ttf/NotoSansArabicUI-ExtraCondensedLight.ttf",
"fonts/NotoSansArabicUI/unhinted/ttf/NotoSansArabicUI-CondensedSemiBold.ttf",
"fonts/NotoSansArabicUI/unhinted/ttf/NotoSansArabicUI-ExtraCondensedBlack.ttf",
"fonts/NotoSansArabicUI/unhinted/ttf/NotoSansArabicUI-ExtraCondensedBold.ttf",
"fonts/NotoSansArabicUI/unhinted/ttf/NotoSansArabicUI-ExtraCondensedExtraBold.ttf",
"fonts/NotoSansArabicUI/unhinted/ttf/NotoSansArabicUI-SemiCondensedBlack.ttf",
"fonts/NotoSansArabicUI/unhinted/ttf/NotoSansArabicUI-CondensedMedium.ttf",
"fonts/NotoSansArabicUI/unhinted/ttf/NotoSansArabicUI-ExtraCondensedThin.ttf",
"fonts/NotoSansArabicUI/unhinted/ttf/NotoSansArabicUI-ExtraCondensedExtraLight.ttf",
"fonts/NotoSansArabicUI/unhinted/ttf/NotoSansArabicUI-ExtraLight.ttf",
"fonts/NotoSansArabicUI/unhinted/ttf/NotoSansArabicUI-ExtraCondensedMedium.ttf",
"fonts/NotoSansArabicUI/unhinted/ttf/NotoSansArabicUI-ExtraBold.ttf",
"fonts/NotoSansArabicUI/unhinted/ttf/NotoSansArabicUI-Black.ttf",
"fonts/NotoSansArabicUI/unhinted/ttf/NotoSansArabicUI-CondensedLight.ttf",
"fonts/NotoSansArabicUI/unhinted/slim-variable-ttf/NotoSansArabicUI[wght].ttf",
"fonts/NotoSansArabicUI/unhinted/variable-ttf/NotoSansArabicUI[wdth,wght].ttf"
],
"latest_release": {
"notes": "Noto Sans Arabic UI v2.011\n\nThis release unencodes the previously encoded U+2011 non-breaking hyphen.\n",
"published": "2024-06-12T16:09:17+00:00",
"url": "https://github.com/notofonts/arabic/releases/tag/NotoSansArabicUI-v2.011",
"version": "v2.011"
}
}
},
"known_releases": [
"NotoNaskhArabic-v2.013",
"NotoSansArabic-v2.010",
"NotoNaskhArabic-v2.014",
"NotoNaskhArabicUI-v2.014",
"NotoNaskhArabic-v2.015",
"NotoNaskhArabic-v2.016",
"NotoNaskhArabic-v2.017",
"NotoSansArabic-v2.011",
"NotoKufiArabic-v2.108",
"NotoSansArabic-v2.012",
"NotoNaskhArabic-v2.018",
"NotoKufiArabic-v2.109",
"NotoNaskhArabic-v2.019",
"NotoSansArabicUI-v2.011",
"NotoNaskhArabicUI-v2.017"
]
},
"armenian": {
"families": {
"Noto Sans Armenian": {
"files": [
"fonts/NotoSansArmenian/unhinted/ttf/NotoSansArmenian-SemiCondensedMedium.ttf",
"fonts/NotoSansArmenian/unhinted/ttf/NotoSansArmenian-SemiCondensedSemiBold.ttf",
"fonts/NotoSansArmenian/unhinted/ttf/NotoSansArmenian-CondensedSemiBold.ttf",
"fonts/NotoSansArmenian/unhinted/ttf/NotoSansArmenian-CondensedLight.ttf",
"fonts/NotoSansArmenian/unhinted/ttf/NotoSansArmenian-Medium.ttf",
"fonts/NotoSansArmenian/unhinted/ttf/NotoSansArmenian-SemiCondensedBold.ttf",
"fonts/NotoSansArmenian/unhinted/ttf/NotoSansArmenian-CondensedThin.ttf",
"fonts/NotoSansArmenian/unhinted/ttf/NotoSansArmenian-CondensedBlack.ttf",
"fonts/NotoSansArmenian/unhinted/ttf/NotoSansArmenian-ExtraCondensedSemiBold.ttf",
"fonts/NotoSansArmenian/unhinted/ttf/NotoSansArmenian-ExtraCondensedBold.ttf",
"fonts/NotoSansArmenian/unhinted/ttf/NotoSansArmenian-SemiCondensedBlack.ttf",
"fonts/NotoSansArmenian/unhinted/ttf/NotoSansArmenian-SemiCondensedExtraBold.ttf",
"fonts/NotoSansArmenian/unhinted/ttf/NotoSansArmenian-Black.ttf",
"fonts/NotoSansArmenian/unhinted/ttf/NotoSansArmenian-Regular.ttf",
"fonts/NotoSansArmenian/unhinted/ttf/NotoSansArmenian-ExtraCondensedThin.ttf",
"fonts/NotoSansArmenian/unhinted/ttf/NotoSansArmenian-ExtraBold.ttf",
"fonts/NotoSansArmenian/unhinted/ttf/NotoSansArmenian-ExtraCondensedLight.ttf",
"fonts/NotoSansArmenian/unhinted/ttf/NotoSansArmenian-CondensedExtraLight.ttf",
"fonts/NotoSansArmenian/unhinted/ttf/NotoSansArmenian-Thin.ttf",
"fonts/NotoSansArmenian/unhinted/ttf/NotoSansArmenian-SemiCondensedExtraLight.ttf",
"fonts/NotoSansArmenian/unhinted/ttf/NotoSansArmenian-SemiCondensedThin.ttf",
"fonts/NotoSansArmenian/unhinted/ttf/NotoSansArmenian-ExtraCondensedMedium.ttf",
"fonts/NotoSansArmenian/unhinted/ttf/NotoSansArmenian-ExtraCondensedExtraLight.ttf",
"fonts/NotoSansArmenian/unhinted/ttf/NotoSansArmenian-Condensed.ttf",
"fonts/NotoSansArmenian/unhinted/ttf/NotoSansArmenian-Light.ttf",
"fonts/NotoSansArmenian/unhinted/ttf/NotoSansArmenian-SemiBold.ttf",
"fonts/NotoSansArmenian/unhinted/ttf/NotoSansArmenian-ExtraLight.ttf",
"fonts/NotoSansArmenian/unhinted/ttf/NotoSansArmenian-CondensedExtraBold.ttf",
"fonts/NotoSansArmenian/unhinted/ttf/NotoSansArmenian-ExtraCondensedBlack.ttf",
"fonts/NotoSansArmenian/unhinted/ttf/NotoSansArmenian-CondensedMedium.ttf",
"fonts/NotoSansArmenian/unhinted/ttf/NotoSansArmenian-Bold.ttf",
"fonts/NotoSansArmenian/unhinted/ttf/NotoSansArmenian-CondensedBold.ttf",
"fonts/NotoSansArmenian/unhinted/ttf/NotoSansArmenian-ExtraCondensedExtraBold.ttf",
"fonts/NotoSansArmenian/unhinted/ttf/NotoSansArmenian-ExtraCondensed.ttf",
"fonts/NotoSansArmenian/unhinted/ttf/NotoSansArmenian-SemiCondensed.ttf",
"fonts/NotoSansArmenian/unhinted/ttf/NotoSansArmenian-SemiCondensedLight.ttf",
"fonts/NotoSansArmenian/unhinted/variable/NotoSansArmenian[wdth,wght].ttf",
"fonts/NotoSansArmenian/unhinted/slim-variable-ttf/NotoSansArmenian[wght].ttf",
"fonts/NotoSansArmenian/unhinted/otf/NotoSansArmenian-ExtraCondensedBold.otf",
"fonts/NotoSansArmenian/unhinted/otf/NotoSansArmenian-ExtraCondensedThin.otf",
"fonts/NotoSansArmenian/unhinted/otf/NotoSansArmenian-ExtraCondensedBlack.otf",
"fonts/NotoSansArmenian/unhinted/otf/NotoSansArmenian-SemiBold.otf",
"fonts/NotoSansArmenian/unhinted/otf/NotoSansArmenian-Black.otf",
"fonts/NotoSansArmenian/unhinted/otf/NotoSansArmenian-Light.otf",
"fonts/NotoSansArmenian/unhinted/otf/NotoSansArmenian-CondensedThin.otf",
"fonts/NotoSansArmenian/unhinted/otf/NotoSansArmenian-SemiCondensedLight.otf",
"fonts/NotoSansArmenian/unhinted/otf/NotoSansArmenian-Regular.otf",
"fonts/NotoSansArmenian/unhinted/otf/NotoSansArmenian-ExtraCondensedLight.otf",
"fonts/NotoSansArmenian/unhinted/otf/NotoSansArmenian-ExtraCondensedExtraLight.otf",
"fonts/NotoSansArmenian/unhinted/otf/NotoSansArmenian-CondensedLight.otf",
"fonts/NotoSansArmenian/unhinted/otf/NotoSansArmenian-SemiCondensedExtraBold.otf",
"fonts/NotoSansArmenian/unhinted/otf/NotoSansArmenian-ExtraLight.otf",
"fonts/NotoSansArmenian/unhinted/otf/NotoSansArmenian-SemiCondensedSemiBold.otf",
"fonts/NotoSansArmenian/unhinted/otf/NotoSansArmenian-SemiCondensed.otf",
"fonts/NotoSansArmenian/unhinted/otf/NotoSansArmenian-SemiCondensedExtraLight.otf",
"fonts/NotoSansArmenian/unhinted/otf/NotoSansArmenian-ExtraCondensedMedium.otf",
"fonts/NotoSansArmenian/unhinted/otf/NotoSansArmenian-SemiCondensedBold.otf",
"fonts/NotoSansArmenian/unhinted/otf/NotoSansArmenian-Bold.otf",
"fonts/NotoSansArmenian/unhinted/otf/NotoSansArmenian-CondensedSemiBold.otf",
"fonts/NotoSansArmenian/unhinted/otf/NotoSansArmenian-ExtraCondensedSemiBold.otf",
"fonts/NotoSansArmenian/unhinted/otf/NotoSansArmenian-Condensed.otf",
"fonts/NotoSansArmenian/unhinted/otf/NotoSansArmenian-ExtraBold.otf",
"fonts/NotoSansArmenian/unhinted/otf/NotoSansArmenian-CondensedBlack.otf",
"fonts/NotoSansArmenian/unhinted/otf/NotoSansArmenian-ExtraCondensedExtraBold.otf",
"fonts/NotoSansArmenian/unhinted/otf/NotoSansArmenian-CondensedExtraBold.otf",
"fonts/NotoSansArmenian/unhinted/otf/NotoSansArmenian-CondensedMedium.otf",
"fonts/NotoSansArmenian/unhinted/otf/NotoSansArmenian-CondensedBold.otf",
"fonts/NotoSansArmenian/unhinted/otf/NotoSansArmenian-Thin.otf",
"fonts/NotoSansArmenian/unhinted/otf/NotoSansArmenian-ExtraCondensed.otf",
"fonts/NotoSansArmenian/unhinted/otf/NotoSansArmenian-Medium.otf",
"fonts/NotoSansArmenian/unhinted/otf/NotoSansArmenian-CondensedExtraLight.otf",
"fonts/NotoSansArmenian/unhinted/otf/NotoSansArmenian-SemiCondensedBlack.otf",
"fonts/NotoSansArmenian/unhinted/otf/NotoSansArmenian-SemiCondensedThin.otf",
"fonts/NotoSansArmenian/unhinted/otf/NotoSansArmenian-SemiCondensedMedium.otf",
"fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-SemiCondensedMedium.ttf",
"fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-SemiCondensedSemiBold.ttf",
"fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-CondensedSemiBold.ttf",
"fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-CondensedLight.ttf",
"fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-Medium.ttf",
"fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-SemiCondensedBold.ttf",
"fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-CondensedThin.ttf",
"fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-CondensedBlack.ttf",
"fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-ExtraCondensedSemiBold.ttf",
"fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-ExtraCondensedBold.ttf",
"fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-SemiCondensedBlack.ttf",
"fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-SemiCondensedExtraBold.ttf",
"fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-Black.ttf",
"fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-Regular.ttf",
"fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-ExtraCondensedThin.ttf",
"fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-ExtraBold.ttf",
"fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-ExtraCondensedLight.ttf",
"fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-CondensedExtraLight.ttf",
"fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-Thin.ttf",
"fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-SemiCondensedExtraLight.ttf",
"fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-SemiCondensedThin.ttf",
"fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-ExtraCondensedMedium.ttf",
"fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-ExtraCondensedExtraLight.ttf",
"fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-Condensed.ttf",
"fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-Light.ttf",
"fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-SemiBold.ttf",
"fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-ExtraLight.ttf",
"fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-CondensedExtraBold.ttf",
"fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-ExtraCondensedBlack.ttf",
"fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-CondensedMedium.ttf",
"fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-Bold.ttf",
"fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-CondensedBold.ttf",
"fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-ExtraCondensedExtraBold.ttf",
"fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-ExtraCondensed.ttf",
"fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-SemiCondensed.ttf",
"fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-SemiCondensedLight.ttf",
"fonts/NotoSansArmenian/full/variable/NotoSansArmenian[wdth,wght].ttf",
"fonts/NotoSansArmenian/full/slim-variable-ttf/NotoSansArmenian[wght].ttf",
"fonts/NotoSansArmenian/full/otf/NotoSansArmenian-ExtraCondensedBold.otf",
"fonts/NotoSansArmenian/full/otf/NotoSansArmenian-ExtraCondensedThin.otf",
"fonts/NotoSansArmenian/full/otf/NotoSansArmenian-ExtraCondensedBlack.otf",
"fonts/NotoSansArmenian/full/otf/NotoSansArmenian-SemiBold.otf",
"fonts/NotoSansArmenian/full/otf/NotoSansArmenian-Black.otf",
"fonts/NotoSansArmenian/full/otf/NotoSansArmenian-Light.otf",
"fonts/NotoSansArmenian/full/otf/NotoSansArmenian-CondensedThin.otf",
"fonts/NotoSansArmenian/full/otf/NotoSansArmenian-SemiCondensedLight.otf",
"fonts/NotoSansArmenian/full/otf/NotoSansArmenian-Regular.otf",
"fonts/NotoSansArmenian/full/otf/NotoSansArmenian-ExtraCondensedLight.otf",
"fonts/NotoSansArmenian/full/otf/NotoSansArmenian-ExtraCondensedExtraLight.otf",
"fonts/NotoSansArmenian/full/otf/NotoSansArmenian-CondensedLight.otf",
"fonts/NotoSansArmenian/full/otf/NotoSansArmenian-SemiCondensedExtraBold.otf",
"fonts/NotoSansArmenian/full/otf/NotoSansArmenian-ExtraLight.otf",
"fonts/NotoSansArmenian/full/otf/NotoSansArmenian-SemiCondensedSemiBold.otf",
"fonts/NotoSansArmenian/full/otf/NotoSansArmenian-SemiCondensed.otf",
"fonts/NotoSansArmenian/full/otf/NotoSansArmenian-SemiCondensedExtraLight.otf",
"fonts/NotoSansArmenian/full/otf/NotoSansArmenian-ExtraCondensedMedium.otf",
"fonts/NotoSansArmenian/full/otf/NotoSansArmenian-SemiCondensedBold.otf",
"fonts/NotoSansArmenian/full/otf/NotoSansArmenian-Bold.otf",
"fonts/NotoSansArmenian/full/otf/NotoSansArmenian-CondensedSemiBold.otf",
"fonts/NotoSansArmenian/full/otf/NotoSansArmenian-ExtraCondensedSemiBold.otf",
"fonts/NotoSansArmenian/full/otf/NotoSansArmenian-Condensed.otf",
"fonts/NotoSansArmenian/full/otf/NotoSansArmenian-ExtraBold.otf",
"fonts/NotoSansArmenian/full/otf/NotoSansArmenian-CondensedBlack.otf",
"fonts/NotoSansArmenian/full/otf/NotoSansArmenian-ExtraCondensedExtraBold.otf",
"fonts/NotoSansArmenian/full/otf/NotoSansArmenian-CondensedExtraBold.otf",
"fonts/NotoSansArmenian/full/otf/NotoSansArmenian-CondensedMedium.otf",
"fonts/NotoSansArmenian/full/otf/NotoSansArmenian-CondensedBold.otf",
"fonts/NotoSansArmenian/full/otf/NotoSansArmenian-Thin.otf",
"fonts/NotoSansArmenian/full/otf/NotoSansArmenian-ExtraCondensed.otf",
"fonts/NotoSansArmenian/full/otf/NotoSansArmenian-Medium.otf",
"fonts/NotoSansArmenian/full/otf/NotoSansArmenian-CondensedExtraLight.otf",
"fonts/NotoSansArmenian/full/otf/NotoSansArmenian-SemiCondensedBlack.otf",
"fonts/NotoSansArmenian/full/otf/NotoSansArmenian-SemiCondensedThin.otf",
"fonts/NotoSansArmenian/full/otf/NotoSansArmenian-SemiCondensedMedium.otf",
"fonts/NotoSansArmenian/hinted/ttf/NotoSansArmenian-SemiCondensedMedium.ttf",
"fonts/NotoSansArmenian/hinted/ttf/NotoSansArmenian-SemiCondensedSemiBold.ttf",
"fonts/NotoSansArmenian/hinted/ttf/NotoSansArmenian-CondensedSemiBold.ttf",
"fonts/NotoSansArmenian/hinted/ttf/NotoSansArmenian-CondensedLight.ttf",
"fonts/NotoSansArmenian/hinted/ttf/NotoSansArmenian-Medium.ttf",
"fonts/NotoSansArmenian/hinted/ttf/NotoSansArmenian-SemiCondensedBold.ttf",
"fonts/NotoSansArmenian/hinted/ttf/NotoSansArmenian-CondensedThin.ttf",
"fonts/NotoSansArmenian/hinted/ttf/NotoSansArmenian-CondensedBlack.ttf",
"fonts/NotoSansArmenian/hinted/ttf/NotoSansArmenian-ExtraCondensedSemiBold.ttf",
"fonts/NotoSansArmenian/hinted/ttf/NotoSansArmenian-ExtraCondensedBold.ttf",
"fonts/NotoSansArmenian/hinted/ttf/NotoSansArmenian-SemiCondensedBlack.ttf",
"fonts/NotoSansArmenian/hinted/ttf/NotoSansArmenian-SemiCondensedExtraBold.ttf",
"fonts/NotoSansArmenian/hinted/ttf/NotoSansArmenian-Black.ttf",
"fonts/NotoSansArmenian/hinted/ttf/NotoSansArmenian-Regular.ttf",
"fonts/NotoSansArmenian/hinted/ttf/NotoSansArmenian-ExtraCondensedThin.ttf",
"fonts/NotoSansArmenian/hinted/ttf/NotoSansArmenian-ExtraBold.ttf",
"fonts/NotoSansArmenian/hinted/ttf/NotoSansArmenian-ExtraCondensedLight.ttf",
"fonts/NotoSansArmenian/hinted/ttf/NotoSansArmenian-CondensedExtraLight.ttf",
"fonts/NotoSansArmenian/hinted/ttf/NotoSansArmenian-Thin.ttf",
"fonts/NotoSansArmenian/hinted/ttf/NotoSansArmenian-SemiCondensedExtraLight.ttf",
"fonts/NotoSansArmenian/hinted/ttf/NotoSansArmenian-SemiCondensedThin.ttf",
"fonts/NotoSansArmenian/hinted/ttf/NotoSansArmenian-ExtraCondensedMedium.ttf",
"fonts/NotoSansArmenian/hinted/ttf/NotoSansArmenian-ExtraCondensedExtraLight.ttf",
"fonts/NotoSansArmenian/hinted/ttf/NotoSansArmenian-Condensed.ttf",
"fonts/NotoSansArmenian/hinted/ttf/NotoSansArmenian-Light.ttf",
"fonts/NotoSansArmenian/hinted/ttf/NotoSansArmenian-SemiBold.ttf",
"fonts/NotoSansArmenian/hinted/ttf/NotoSansArmenian-ExtraLight.ttf",
"fonts/NotoSansArmenian/hinted/ttf/NotoSansArmenian-CondensedExtraBold.ttf",
"fonts/NotoSansArmenian/hinted/ttf/NotoSansArmenian-ExtraCondensedBlack.ttf",
"fonts/NotoSansArmenian/hinted/ttf/NotoSansArmenian-CondensedMedium.ttf",
"fonts/NotoSansArmenian/hinted/ttf/NotoSansArmenian-Bold.ttf",
"fonts/NotoSansArmenian/hinted/ttf/NotoSansArmenian-CondensedBold.ttf",
"fonts/NotoSansArmenian/hinted/ttf/NotoSansArmenian-ExtraCondensedExtraBold.ttf",
"fonts/NotoSansArmenian/hinted/ttf/NotoSansArmenian-ExtraCondensed.ttf",
"fonts/NotoSansArmenian/hinted/ttf/NotoSansArmenian-SemiCondensed.ttf",
"fonts/NotoSansArmenian/hinted/ttf/NotoSansArmenian-SemiCondensedLight.ttf",
"fonts/NotoSansArmenian/googlefonts/ttf/NotoSansArmenian-Medium.ttf",
"fonts/NotoSansArmenian/googlefonts/ttf/NotoSansArmenian-Black.ttf",
"fonts/NotoSansArmenian/googlefonts/ttf/NotoSansArmenian-Regular.ttf",
"fonts/NotoSansArmenian/googlefonts/ttf/NotoSansArmenian-ExtraBold.ttf",
"fonts/NotoSansArmenian/googlefonts/ttf/NotoSansArmenian-Thin.ttf",
"fonts/NotoSansArmenian/googlefonts/ttf/NotoSansArmenian-Light.ttf",
"fonts/NotoSansArmenian/googlefonts/ttf/NotoSansArmenian-SemiBold.ttf",
"fonts/NotoSansArmenian/googlefonts/ttf/NotoSansArmenian-ExtraLight.ttf",
"fonts/NotoSansArmenian/googlefonts/ttf/NotoSansArmenian-Bold.ttf",
"fonts/NotoSansArmenian/googlefonts/variable/NotoSansArmenian[wdth,wght].ttf"
],
"latest_release": {
"notes": "Noto Sans Armenian v2.008\n\nThis release\n\n* Fixes the attachment of dieresis to digraphs (#2)\n* Fixes spacing around dieresis and punctuation (#5)\n* Adds the right single quotation mark U+2019 (#4)\n",
"published": "2023-09-25T11:11:05",
"url": "https://github.com/notofonts/armenian/releases/tag/NotoSansArmenian-v2.008",
"version": "v2.008"
}
},
"Noto Serif Armenian": {
"files": [
"fonts/NotoSerifArmenian/unhinted/ttf/NotoSerifArmenian-ExtraCondensedExtraLight.ttf",
"fonts/NotoSerifArmenian/unhinted/ttf/NotoSerifArmenian-Regular.ttf",
"fonts/NotoSerifArmenian/unhinted/ttf/NotoSerifArmenian-CondensedLight.ttf",
"fonts/NotoSerifArmenian/unhinted/ttf/NotoSerifArmenian-SemiCondensedThin.ttf",
"fonts/NotoSerifArmenian/unhinted/ttf/NotoSerifArmenian-ExtraCondensedThin.ttf",
"fonts/NotoSerifArmenian/unhinted/ttf/NotoSerifArmenian-CondensedThin.ttf",
"fonts/NotoSerifArmenian/unhinted/ttf/NotoSerifArmenian-SemiCondensedExtraBold.ttf",
"fonts/NotoSerifArmenian/unhinted/ttf/NotoSerifArmenian-ExtraCondensed.ttf",
"fonts/NotoSerifArmenian/unhinted/ttf/NotoSerifArmenian-SemiBold.ttf",
"fonts/NotoSerifArmenian/unhinted/ttf/NotoSerifArmenian-Black.ttf",
"fonts/NotoSerifArmenian/unhinted/ttf/NotoSerifArmenian-Bold.ttf",
"fonts/NotoSerifArmenian/unhinted/ttf/NotoSerifArmenian-SemiCondensedBlack.ttf",
"fonts/NotoSerifArmenian/unhinted/ttf/NotoSerifArmenian-CondensedExtraBold.ttf",
"fonts/NotoSerifArmenian/unhinted/ttf/NotoSerifArmenian-Light.ttf",
"fonts/NotoSerifArmenian/unhinted/ttf/NotoSerifArmenian-SemiCondensedMedium.ttf",
"fonts/NotoSerifArmenian/unhinted/ttf/NotoSerifArmenian-ExtraCondensedMedium.ttf",
"fonts/NotoSerifArmenian/unhinted/ttf/NotoSerifArmenian-ExtraCondensedSemiBold.ttf",
"fonts/NotoSerifArmenian/unhinted/ttf/NotoSerifArmenian-ExtraLight.ttf",
"fonts/NotoSerifArmenian/unhinted/ttf/NotoSerifArmenian-SemiCondensedLight.ttf",
"fonts/NotoSerifArmenian/unhinted/ttf/NotoSerifArmenian-CondensedBold.ttf",
"fonts/NotoSerifArmenian/unhinted/ttf/NotoSerifArmenian-CondensedBlack.ttf",
"fonts/NotoSerifArmenian/unhinted/ttf/NotoSerifArmenian-CondensedExtraLight.ttf",
"fonts/NotoSerifArmenian/unhinted/ttf/NotoSerifArmenian-ExtraBold.ttf",
"fonts/NotoSerifArmenian/unhinted/ttf/NotoSerifArmenian-SemiCondensedExtraLight.ttf",
"fonts/NotoSerifArmenian/unhinted/ttf/NotoSerifArmenian-Condensed.ttf",
"fonts/NotoSerifArmenian/unhinted/ttf/NotoSerifArmenian-SemiCondensedBold.ttf",
"fonts/NotoSerifArmenian/unhinted/ttf/NotoSerifArmenian-Thin.ttf",
"fonts/NotoSerifArmenian/unhinted/ttf/NotoSerifArmenian-CondensedMedium.ttf",
"fonts/NotoSerifArmenian/unhinted/ttf/NotoSerifArmenian-SemiCondensed.ttf",
"fonts/NotoSerifArmenian/unhinted/ttf/NotoSerifArmenian-ExtraCondensedBlack.ttf",
"fonts/NotoSerifArmenian/unhinted/ttf/NotoSerifArmenian-CondensedSemiBold.ttf",
"fonts/NotoSerifArmenian/unhinted/ttf/NotoSerifArmenian-ExtraCondensedLight.ttf",
"fonts/NotoSerifArmenian/unhinted/ttf/NotoSerifArmenian-Medium.ttf",
"fonts/NotoSerifArmenian/unhinted/ttf/NotoSerifArmenian-ExtraCondensedExtraBold.ttf",
"fonts/NotoSerifArmenian/unhinted/ttf/NotoSerifArmenian-SemiCondensedSemiBold.ttf",
"fonts/NotoSerifArmenian/unhinted/ttf/NotoSerifArmenian-ExtraCondensedBold.ttf",
"fonts/NotoSerifArmenian/unhinted/variable/NotoSerifArmenian[wdth,wght].ttf",
"fonts/NotoSerifArmenian/unhinted/slim-variable-ttf/NotoSerifArmenian[wght].ttf",
"fonts/NotoSerifArmenian/unhinted/otf/NotoSerifArmenian-CondensedExtraBold.otf",
"fonts/NotoSerifArmenian/unhinted/otf/NotoSerifArmenian-SemiCondensedSemiBold.otf",
"fonts/NotoSerifArmenian/unhinted/otf/NotoSerifArmenian-ExtraCondensedExtraBold.otf",
"fonts/NotoSerifArmenian/unhinted/otf/NotoSerifArmenian-ExtraCondensedLight.otf",
"fonts/NotoSerifArmenian/unhinted/otf/NotoSerifArmenian-ExtraCondensedBold.otf",
"fonts/NotoSerifArmenian/unhinted/otf/NotoSerifArmenian-SemiCondensedThin.otf",
"fonts/NotoSerifArmenian/unhinted/otf/NotoSerifArmenian-Black.otf",
"fonts/NotoSerifArmenian/unhinted/otf/NotoSerifArmenian-ExtraCondensedMedium.otf",
"fonts/NotoSerifArmenian/unhinted/otf/NotoSerifArmenian-SemiCondensed.otf",
"fonts/NotoSerifArmenian/unhinted/otf/NotoSerifArmenian-CondensedBlack.otf",
"fonts/NotoSerifArmenian/unhinted/otf/NotoSerifArmenian-ExtraCondensedExtraLight.otf",
"fonts/NotoSerifArmenian/unhinted/otf/NotoSerifArmenian-Regular.otf",
"fonts/NotoSerifArmenian/unhinted/otf/NotoSerifArmenian-CondensedSemiBold.otf",
"fonts/NotoSerifArmenian/unhinted/otf/NotoSerifArmenian-Bold.otf",
"fonts/NotoSerifArmenian/unhinted/otf/NotoSerifArmenian-ExtraCondensedThin.otf",
"fonts/NotoSerifArmenian/unhinted/otf/NotoSerifArmenian-ExtraCondensedBlack.otf",
"fonts/NotoSerifArmenian/unhinted/otf/NotoSerifArmenian-SemiCondensedBlack.otf",
"fonts/NotoSerifArmenian/unhinted/otf/NotoSerifArmenian-Light.otf",
"fonts/NotoSerifArmenian/unhinted/otf/NotoSerifArmenian-CondensedThin.otf",
"fonts/NotoSerifArmenian/unhinted/otf/NotoSerifArmenian-CondensedLight.otf",
"fonts/NotoSerifArmenian/unhinted/otf/NotoSerifArmenian-SemiCondensedMedium.otf",
"fonts/NotoSerifArmenian/unhinted/otf/NotoSerifArmenian-SemiCondensedExtraBold.otf",
"fonts/NotoSerifArmenian/unhinted/otf/NotoSerifArmenian-CondensedExtraLight.otf",
"fonts/NotoSerifArmenian/unhinted/otf/NotoSerifArmenian-ExtraCondensed.otf",
"fonts/NotoSerifArmenian/unhinted/otf/NotoSerifArmenian-Thin.otf",
"fonts/NotoSerifArmenian/unhinted/otf/NotoSerifArmenian-SemiBold.otf",
"fonts/NotoSerifArmenian/unhinted/otf/NotoSerifArmenian-SemiCondensedExtraLight.otf",
"fonts/NotoSerifArmenian/unhinted/otf/NotoSerifArmenian-ExtraCondensedSemiBold.otf",
"fonts/NotoSerifArmenian/unhinted/otf/NotoSerifArmenian-CondensedMedium.otf",
"fonts/NotoSerifArmenian/unhinted/otf/NotoSerifArmenian-CondensedBold.otf",
"fonts/NotoSerifArmenian/unhinted/otf/NotoSerifArmenian-SemiCondensedBold.otf",
"fonts/NotoSerifArmenian/unhinted/otf/NotoSerifArmenian-ExtraBold.otf",
"fonts/NotoSerifArmenian/unhinted/otf/NotoSerifArmenian-Medium.otf",
"fonts/NotoSerifArmenian/unhinted/otf/NotoSerifArmenian-Condensed.otf",
"fonts/NotoSerifArmenian/unhinted/otf/NotoSerifArmenian-ExtraLight.otf",
"fonts/NotoSerifArmenian/unhinted/otf/NotoSerifArmenian-SemiCondensedLight.otf",
"fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-ExtraCondensedExtraLight.ttf",
"fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-Regular.ttf",
"fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-CondensedLight.ttf",
"fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-SemiCondensedThin.ttf",
"fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-ExtraCondensedThin.ttf",
"fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-CondensedThin.ttf",
"fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-SemiCondensedExtraBold.ttf",
"fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-ExtraCondensed.ttf",
"fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-SemiBold.ttf",
"fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-Black.ttf",
"fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-Bold.ttf",
"fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-SemiCondensedBlack.ttf",
"fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-CondensedExtraBold.ttf",
"fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-Light.ttf",
"fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-SemiCondensedMedium.ttf",
"fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-ExtraCondensedMedium.ttf",
"fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-ExtraCondensedSemiBold.ttf",
"fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-ExtraLight.ttf",
"fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-SemiCondensedLight.ttf",
"fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-CondensedBold.ttf",
"fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-CondensedBlack.ttf",
"fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-CondensedExtraLight.ttf",
"fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-ExtraBold.ttf",
"fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-SemiCondensedExtraLight.ttf",
"fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-Condensed.ttf",
"fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-SemiCondensedBold.ttf",
"fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-Thin.ttf",
"fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-CondensedMedium.ttf",
"fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-SemiCondensed.ttf",
"fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-ExtraCondensedBlack.ttf",
"fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-CondensedSemiBold.ttf",
"fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-ExtraCondensedLight.ttf",
"fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-Medium.ttf",
"fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-ExtraCondensedExtraBold.ttf",
"fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-SemiCondensedSemiBold.ttf",
"fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-ExtraCondensedBold.ttf",
"fonts/NotoSerifArmenian/full/variable/NotoSerifArmenian[wdth,wght].ttf",
"fonts/NotoSerifArmenian/full/slim-variable-ttf/NotoSerifArmenian[wght].ttf",
"fonts/NotoSerifArmenian/full/otf/NotoSerifArmenian-CondensedExtraBold.otf",
"fonts/NotoSerifArmenian/full/otf/NotoSerifArmenian-SemiCondensedSemiBold.otf",
"fonts/NotoSerifArmenian/full/otf/NotoSerifArmenian-ExtraCondensedExtraBold.otf",
"fonts/NotoSerifArmenian/full/otf/NotoSerifArmenian-ExtraCondensedLight.otf",
"fonts/NotoSerifArmenian/full/otf/NotoSerifArmenian-ExtraCondensedBold.otf",
"fonts/NotoSerifArmenian/full/otf/NotoSerifArmenian-SemiCondensedThin.otf",
"fonts/NotoSerifArmenian/full/otf/NotoSerifArmenian-Black.otf",
"fonts/NotoSerifArmenian/full/otf/NotoSerifArmenian-ExtraCondensedMedium.otf",
"fonts/NotoSerifArmenian/full/otf/NotoSerifArmenian-SemiCondensed.otf",
"fonts/NotoSerifArmenian/full/otf/NotoSerifArmenian-CondensedBlack.otf",
"fonts/NotoSerifArmenian/full/otf/NotoSerifArmenian-ExtraCondensedExtraLight.otf",
"fonts/NotoSerifArmenian/full/otf/NotoSerifArmenian-Regular.otf",
"fonts/NotoSerifArmenian/full/otf/NotoSerifArmenian-CondensedSemiBold.otf",
"fonts/NotoSerifArmenian/full/otf/NotoSerifArmenian-Bold.otf",