-
Notifications
You must be signed in to change notification settings - Fork 37
/
texlive_2022_repos.bzl
6591 lines (6588 loc) · 776 KB
/
texlive_2022_repos.bzl
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
"""
The TeXLive distribution repositorties.
"""
TEXLIVE_VERSION_2022 = "20220321"
TEXLIVE_MODULAR_PACKAGES_BIN_2022 = [
("bin/aarch64-linux", "e9d0a9c0e310c6f975e1df940fa94bceebd7a91acb1fe54d2bda147a7613baed", []),
("bin/amd64-freebsd", "8b8274e7dfb5e10705ad6046dda45fcb39d2d72d9e56bc0f17013003299143f2", []),
("bin/amd64-netbsd", "f5a831427f4e8d7f8e7d16077fb66dd436f9968cdb29835febe0c5394acaa98f", []),
("bin/armhf-linux", "ab55c24beabfee98f5a07917838ef8d8ea6ea18b1fcc9cee50e1ee7810865162", []),
("bin/i386-cygwin", "15f507cad7cec7331445e1d7af026773fa78c9c76ea53870ccdc2cbd4facf38c", []),
("bin/i386-freebsd", "2962d4c413b37a267f5d43c234e20ad83dba6476bc43132552b94b28c6c418e8", []),
("bin/i386-linux", "1ff64574d46269dd5b26c62e11c754e5057e2e823d98003e3854eac08d7fa2dd", []),
("bin/i386-netbsd", "4247f60ddad22758c99047e85c0155bcab2eb3f77d9607f5a9c8aee6b1f61e35", []),
("bin/i386-solaris", "15ff8f4841239322d73664497dd94b725d3cd6690fe78d90ff557b965496fec9", []),
("bin/universal-darwin", "3af02eb69ab7142570cde69757e16098066ff78a7667b602df9c1e1fbaa7bf48", []),
("bin/win32", "0f14c1aad3223e2a2a02d10d0265e185dc17b6f78b0e24acb2dbcbc84205a92e", []),
("bin/x86_64-cygwin", "3e0e42f9f2a2e24b43155cf592565eb5b008c4d5d12d0822402f389663808cfb", []),
("bin/x86_64-darwinlegacy", "d0427834a7dc109b38d2ac3cc714a998f833083fd996731187aa484097e226fc", []),
("bin/x86_64-linux", "840374f0f1f31a7763206e8925f2f0894a8599dffb17cdd51481f20b1e3533a3", []),
("bin/x86_64-linuxmusl", "8b46a33fb1e34d7208fad26f6832db897350fbba4e712b2eeae468994ab53168", []),
("bin/x86_64-solaris", "c7f8e1d662b794053fc8a06776a73b04e072b939bd3f7c4c3308f63ab9b98eb9", []),
]
TEXLIVE_MODULAR_PACKAGES_OTHER_2022 = [
("extra/tlpkg/TeXLive", "1e220578cbe21cca2175e68c84e0eefdf64c2ca71ce157e505b23940a337a789", []),
("texmf/texmf-dist/asymptote", "a9a1819f80f75d2c3dfe34b395215fb95b5bfc224c7ab5794f027b788d835334", []),
("texmf/texmf-dist/bibtex/bib/abntex2", "c14b514b9e891c4524a1f35f4b7eb2ef75f45c5ece7f41dfb6fd9bb950e29a97", []),
("texmf/texmf-dist/bibtex/bib/abstyles", "c34b0359b0a520717fab39f72d14691f597a76fec3987e166b4adbe3100f88b7", []),
("texmf/texmf-dist/bibtex/bib/amsrefs", "52b5c957da4f8d8982ee1c67680e82c0e75caa73332df54cae2c20339fa984b1", []),
("texmf/texmf-dist/bibtex/bib/archaeologie", "741e33f2ca1673e8f6db761f90df6ffe0889802365e504e1c6568bc6c73b26c0", []),
("texmf/texmf-dist/bibtex/bib/attachfile", "62e2a16be67982bb4a95815f978f45670ffaa97e0d9cc37e826c13ed30f95940", []),
("texmf/texmf-dist/bibtex/bib/base", "0099ea932facaee63ee61b37742c3fcdb4560fe4541e13fc492a1fbde86f493d", []),
("texmf/texmf-dist/bibtex/bib/beebe", "64148b5d4a6aeff8306570ec7e4991ba32adf11c44c457d04de7553d1ed79c33", []),
("texmf/texmf-dist/bibtex/bib/biblatex/biblatex", "ff5cc90d08268eb051164d9cb4642445bd84a3c7dda137b056d32e70cece1fe7", []),
("texmf/texmf-dist/bibtex/bib/cnltx", "a71821f2dbd69fbf7d4a300c5cd0e77ce4e30d950d11dc46b93175b22d8e8c3e", []),
("texmf/texmf-dist/bibtex/bib/directory", "1bf5097e2899be67120560253526d62e4313a9c8b57a6658a068ac4265997f30", []),
("texmf/texmf-dist/bibtex/bib/dk-bib", "4bedcf532621fc057b7770ff95550c7b070a127e447b45cb0fde0a97ebf483fa", []),
("texmf/texmf-dist/bibtex/bib/frankenstein", "7cd00a95aef570ed8fd01142c042b0d33c07a0c04ff6a4861da9a85a92facb51", []),
("texmf/texmf-dist/bibtex/bib/glossaries-extra", "2f25da58b2b8a505199c28fafed52c0a03d10eefda6c4e4e90a089c04b98fa41", []),
("texmf/texmf-dist/bibtex/bib/gloss", "e73624e166d1bbd211d111f15f1571d6ade12c5e1eb245d47d8ebde5cb8a54f3", []),
("texmf/texmf-dist/bibtex/bib/gustlib", "75df19e1100fa0ac6625db2984975307c9fbfe1c4eb994fa3747420402a9c80b", []),
("texmf/texmf-dist/bibtex/bib/harvard", "14f4541f9b5e71354b2aa219d14fba0184a7699c742d2f5582a1477172a0ddba", []),
("texmf/texmf-dist/bibtex/bib/ieeetran", "84654ad2b14ecce3ef7a678f38bbc57289bd26b2c1cc60f777a5970215397027", []),
("texmf/texmf-dist/bibtex/bib/jurabib", "2e5e98bf79eebf515c1218c1f341b5c9785246f34c8d878008f2a01a40dd052e", []),
("texmf/texmf-dist/bibtex/bib/lsc", "5e2825c60e6d0e7cb32e126944eb1985b4e05b5048c7eac5fa1612246d0410af", []),
("texmf/texmf-dist/bibtex/bib/msc", "f31e091a0ac020984c04ba3cec10be5ab04f4aa5dacf574e3adeb2fb6803d7d4", []),
("texmf/texmf-dist/bibtex/bib/nostarch", "ee5f7f59de47073fb1274ad7bd7b3aedd3110f9bc900a275269ee05a4957871b", []),
("texmf/texmf-dist/bibtex/bib/oberdiek", "b906935cab55cea1977d0b908dfeaac3ad909c1187cf6c3438849f88ea23aac0", []),
("texmf/texmf-dist/bibtex/bib/spie", "8d1882b1f605e8e5a4cff8ccc3ada8b454ba82e4974c05453ff0f492e1a63874", []),
("texmf/texmf-dist/bibtex/bib/testidx", "7c95d485b175b4f248c10950a6f9555182d6924da35fd765660ec114ad5b41d5", []),
("texmf/texmf-dist/bibtex/bst/aaai-named", "661739d50d7e754db850bf1604a9e7f3de23dbfd78754f18135b4999d41a8b84", []),
("texmf/texmf-dist/bibtex/bst/aastex", "6c9045f780651ba6c7de8c258ca325016e3b2343b5fe173391ca34fb57e9053d", []),
("texmf/texmf-dist/bibtex/bst/abntex2", "a45881efe1776efc519ff207be8c1c5ce225030dc1af7d96a2fc820a43996398", []),
("texmf/texmf-dist/bibtex/bst/abstyles", "0836b0f4f80d6eba0e676d208e23392de1047c8d5e004ce8378c2d00926dfcbb", []),
("texmf/texmf-dist/bibtex/bst/achemso", "9636038ea80d3eca339130df6a282c91176b7c5b095d8a958f1e98a75bc298a5", []),
("texmf/texmf-dist/bibtex/bst/acmart", "fd4a2521b51bb91453c333f57cde53673a5bd8245c6002418b096a12aeb53f47", []),
("texmf/texmf-dist/bibtex/bst/adfathesis", "84ec95679f2bdf1979019c9ebdeb4357bb5d122a722527f675ab32f402bde327", []),
("texmf/texmf-dist/bibtex/bst/adrconv", "e1e408878a4a0f25674eb52871695b18cec1cd824af405a4f759f7d434aa27b5", []),
("texmf/texmf-dist/bibtex/bst/afthesis", "3943233a558bfe263036e958a88be4eba6f76cd8e951477f5d45cf8526a6fc09", []),
("texmf/texmf-dist/bibtex/bst/aguplus", "2c878b272173021b407271f649c2e6652efeda82930d7d92f908c00b267fd40c", []),
("texmf/texmf-dist/bibtex/bst/aiaa", "a0a78aa5b922e32dff51e8d7f48b79ac2f956c9efbd4666bf7ee494aef2a16e6", []),
("texmf/texmf-dist/bibtex/bst/aichej", "4deca9e1634b9cd7f1cbf0f1212a57fcdfc82c6608ad5aab842e7151361d73b7", []),
("texmf/texmf-dist/bibtex/bst/ajl", "78822b714f2be3542641aecf5e540224a3d0517e3ce89d36253f65a1f05e52ed", []),
("texmf/texmf-dist/bibtex/bst/alpha-persian", "9b6d60accff68b7f24e10c00872ef668fe83fb28ad6b8a065841a9b3086f515d", []),
("texmf/texmf-dist/bibtex/bst/ametsoc", "78b4de256960244b1210497b8d6a7f02421c1edd105f53567a85be46931d7ea7", []),
("texmf/texmf-dist/bibtex/bst/amscls", "a83ccada046c2ac0eda4c5658e680fe0ed933bbe84810f0ee8c7964e73f63bfe", []),
("texmf/texmf-dist/bibtex/bst/amsrefs", "0866aa18a00612d2d2fd00de4e6f580cb176ed09b8c8c414bbb57a7f3f12a572", []),
("texmf/texmf-dist/bibtex/bst/annotate", "661fb8dc8f4b573d1b2725a63b2b4606137b84bdd8550dc6868040d0778eaa90", []),
("texmf/texmf-dist/bibtex/bst/aomart", "742c8010b96f7c86c2bbd62c0b8ba8d2a55f8d2570988d5648c50e68026acff6", []),
("texmf/texmf-dist/bibtex/bst/apacite", "f86c0e3ffb8aeda16c48e11f0c88605ebd15b55c368e85836e856ab391e8e266", []),
("texmf/texmf-dist/bibtex/bst/apalike2", "825e65528da4c218ce79656bede9cdd693921e44db25a4591a0ac221872049ab", []),
("texmf/texmf-dist/bibtex/bst/apalike-ejor", "f8c322252382573e1314066a04fa06fcdd2bb19e36d75e5ab3a1264814e5b82b", []),
("texmf/texmf-dist/bibtex/bst/apalike-german", "24acbf2fe68728d4a314241f0a7995f9d698ca12f65a7ac1448db3ab30f8bf51", []),
("texmf/texmf-dist/bibtex/bst/asaetr", "3bcd2b999aa65221d141e965dcbce679015443d49902a0d1cef5e890c4166ce2", []),
("texmf/texmf-dist/bibtex/bst/ascelike", "2e51e4294e8774651d49265d7fed76c26ddcb88859b4d7f8e3cc911f4c8b724a", []),
("texmf/texmf-dist/bibtex/bst/asmeconf", "fe5eb23b912fac6aaac00b03716ae3724c7786cfcd32a5fb7c7d841c67912fcb", []),
("texmf/texmf-dist/bibtex/bst/asmejour", "d350b0ae0fa0a95664cf17b3608d66e4acdd3eebc14165361a6cb18576b1afdc", []),
("texmf/texmf-dist/bibtex/bst/authordate", "22c6e6cf2c3907c40b8493cdf6f221e0c90f35a0f7030395e7e9fa925f2a954e", []),
("texmf/texmf-dist/bibtex/bst/babelbib", "30be47f402db958a6c57e79f51ad9d4fe2fbc58cd623ee019260bd7ed7692a4f", []),
("texmf/texmf-dist/bibtex/bst/base", "83a12dcdd3e7418526d2b00972f6c4eb2b596d950f8d493ad4e52973b0c21475", []),
("texmf/texmf-dist/bibtex/bst/bath-bst", "628fdd1a486cf31d5cf70e2d0d9713b7668e10bd8c0132fccbbf1a98156090ad", []),
("texmf/texmf-dist/bibtex/bst/beilstein", "7f2f10ef12d9e61e7438a3ff2f396bcfe714ddf2355bc8c800d7233dc46144a1", []),
("texmf/texmf-dist/bibtex/bst/besjournals", "ff89454fae42ff30d22caffa2f64aac3f6532f5e0b1c8d58fc1e49a60cb312b0", []),
("texmf/texmf-dist/bibtex/bst/bestpapers", "0638f2a743dc0f680c8049801917d9fe492e1e4433c26e8212f70fe01960d7c7", []),
("texmf/texmf-dist/bibtex/bst/bgteubner", "727fd01b2af36baf2ac0eb7a7c38ade26bd6d3a945cd33ab2a161aa4c3477b85", []),
("texmf/texmf-dist/bibtex/bst/bibexport", "17315bfb36223353be340e7cc6a395292a1f5ffbd369e6533a952f064713ad34", []),
("texmf/texmf-dist/bibtex/bst/bib-fr", "d87f8ea0b724a93d8a24ea07263a332a8d20baf57bb3a8a36712648c721bbb3a", []),
("texmf/texmf-dist/bibtex/bst/bibhtml", "2176752550f839a1718dce5f94f27be5277f65257e8afe9a8003808d8be128ec", []),
("texmf/texmf-dist/bibtex/bst/biblatex", "2c41583f67b284ab055c3aa589b07f1bc5dd388011306ce2b00693bef2ee5da1", []),
("texmf/texmf-dist/bibtex/bst/biolett-bst", "ddbbb21bc22d83514593135607463c35a2cad4d8b4b8e47a348b9d85ac8d7e00", []),
("texmf/texmf-dist/bibtex/bst/bookdb", "aba68652a9edbe2c844042fa13086e76c26a0558f698b5f9393e64f518d07cde", []),
("texmf/texmf-dist/bibtex/bst/cascadilla", "1f481b4fbc7ad7473d24c01867d7ce1f628f1735a1d197dd51590412d1a0e8e3", []),
("texmf/texmf-dist/bibtex/bst/cell", "0f2334f512921e6cbc56b5b80a613cab6a7dc347f784ad0f01e00d24564147a1", []),
("texmf/texmf-dist/bibtex/bst/chembst", "72b50d768a804b305e91e6b750676e02fd3babfe5e2712a0b60378fd82008805", []),
("texmf/texmf-dist/bibtex/bst/chem-journal", "ed4b5b1be9717b741fc16d868e81540a566822c0d0aafe3115f164c7ebbfb2bf", []),
("texmf/texmf-dist/bibtex/bst/chet", "150823de8282eaaeb20150121ed3b0dd1e2d8a7d64484873885ec4b3add11609", []),
("texmf/texmf-dist/bibtex/bst/chicago-annote", "ef3c6274784d5762bc6953da4b024cb9e642d291a409f2b79d8ca464e2bcd2a0", []),
("texmf/texmf-dist/bibtex/bst/chicagoa", "4c2d1ce8face3349235f62b531f26717c7c1cf309e5e73d7c291c42f70aef346", []),
("texmf/texmf-dist/bibtex/bst/chicago", "c42caca5146d5a41d03e131854b3bda36d7975848e0d072dfc418799e3d1e6c4", []),
("texmf/texmf-dist/bibtex/bst/chscite", "29e73306d1174416b4421cd099ea0002feb9fa26fc7490eb832f564a82bc96fa", []),
("texmf/texmf-dist/bibtex/bst/cje", "1214976612092bc5cbb09c8f6ea5ebc0cd91d5661ee755cb830ff20fce4f0062", []),
("texmf/texmf-dist/bibtex/bst/cmpj", "fadbee68a99d133f1d3af3940b876417da015a81b544178d1d3a98270f3a6736", []),
("texmf/texmf-dist/bibtex/bst/cnbwp", "05861c67a5115329b526bea027856c0700506973230b637457bf982651d67c48", []),
("texmf/texmf-dist/bibtex/bst/computational-complexity", "aaf6beafc25af721f35d3cac3a2d1bea5fa8fad10b437ed275c7d9fe884bbffe", []),
("texmf/texmf-dist/bibtex/bst/confproc", "d1adab1acc0857835fcc09c1f61e90f0f415af452ff2bbccff34c3663dce704d", []),
("texmf/texmf-dist/bibtex/bst/context/mkii", "65b91a07ae1d84d4f2158c824578602f09f3494984d278a634dbc52c84a264a1", []),
("texmf/texmf-dist/bibtex/bst/cquthesis", "91e236d8260eeee3322a81bec921c4a609dc2ad25de41bf0f63745a8aa90ab6c", []),
("texmf/texmf-dist/bibtex/bst/datatool", "88d75f8f420fad4f894316b8727661f3aa7950414cfafd1d324460af7b6c6308", []),
("texmf/texmf-dist/bibtex/bst/din1505", "cac8877f4984bef62e9f431986c29b0534b5cc2e2f9770aa76c9bf1828c52df8", []),
("texmf/texmf-dist/bibtex/bst/dinat", "fe1b4f0ecde0deac7b0fb281d69239523aafb112a315e3bc676c3fe19a261d91", []),
("texmf/texmf-dist/bibtex/bst/directory", "f82d422ee755b91bf7b01a70a7ab8f117a834f8618136263a61d62b7692b1319", []),
("texmf/texmf-dist/bibtex/bst/dk-bib", "ab8e1453c82713be4d87c6c8045a3e45b30b1fc7c9be7554b0f1abffcb0498e9", []),
("texmf/texmf-dist/bibtex/bst/dlfltxb", "4dc8018d9fb6ecf16e31f955b22b55c5c28175cc331b97a242e82bfa7a7e87e8", []),
("texmf/texmf-dist/bibtex/bst/dvdcoll", "a8685e1a17ea8eaa3c594ef9656b701797134f0834e791d93f3ca0d1908a1ec6", []),
("texmf/texmf-dist/bibtex/bst/econ-bst", "4240fe05b2b3be8610481c913663b1c30200e8c26ea9152fe12aad572900ac5c", []),
("texmf/texmf-dist/bibtex/bst/economic", "40513924d7339b574236a18e341dc74a501467f47d186feac5ad72c147a680f6", []),
("texmf/texmf-dist/bibtex/bst/elsarticle", "be392ed8e273ab2fe692b3de19439335d7b45f4a1d239cabadb1789760d80049", []),
("texmf/texmf-dist/bibtex/bst/els-cas-templates", "635732bdd0a6531f2d7a9907ce58623380294f5cc09f3ef318478bd2955bb790", []),
("texmf/texmf-dist/bibtex/bst/fbs", "ace70ca5a63b74ff2e8436fb804cbe62f5ab8feb091c28627955148604b13523", []),
("texmf/texmf-dist/bibtex/bst/fcavtex", "2a7b6b1ed16966816f0fe718438cf57060c1a428307d1880c2f20a4786d0c0ba", []),
("texmf/texmf-dist/bibtex/bst/figbib", "21b0b869fcae8b9bc7294b9d6529769328158a11f6c3b93215054e081cb6f763", []),
("texmf/texmf-dist/bibtex/bst/finbib", "5b192194f028dabca29896c4046870f7ebdfa6c24465d2c95e8a830f6ada9c09", []),
("texmf/texmf-dist/bibtex/bst/francais-bst", "12a8e5a5da940b6110315f5bc66ff978101cac7a4718c6c831b012ae22d8858b", []),
("texmf/texmf-dist/bibtex/bst/frankenstein", "129813aaf8d7fe07f57c3b03891cf5db9a63696953a9fae85b2061f40d8b6408", []),
("texmf/texmf-dist/bibtex/bst/gammas", "f1c0ad3eaa18233bd9db54943cecedafd8b232b01c442f9e811cfdd048f2b8ba", []),
("texmf/texmf-dist/bibtex/bst/gbt7714", "78db9e85a5f45b7f4194a613a73ae52d565afddd26bf243257456b0c9e7348e2", []),
("texmf/texmf-dist/bibtex/bst/germbib", "93a4e0ea8c01eab3370a1c38f68904f977864fc1b2ff1887670e313ef4ad8e53", []),
("texmf/texmf-dist/bibtex/bst/gloss", "731e0c02b9c71caf746ba2a787c692dafbfbbec76d687f1396096702ccba902a", []),
("texmf/texmf-dist/bibtex/bst/gost", "d302af6c070b22d3f3584a3f0bdd0209f6241507b63c322dabc8758337c728c8", []),
("texmf/texmf-dist/bibtex/bst/gustlib", "496fc7dd1c676f7739b0b52750294993d9511dcc82c3deec30e925a18146d996", []),
("texmf/texmf-dist/bibtex/bst/harvard", "6f6fd26ec42cd0ef08af7ddf4130098f133ee25a7b28236e5da978940400dec7", []),
("texmf/texmf-dist/bibtex/bst/hc", "6e256b4f654b614dc74865ddcf0bb3bf8708f7c47e62a94df0f474a97ec2125d", []),
("texmf/texmf-dist/bibtex/bst/hithesis", "b1617c1407888be820decce811034d275b043ee077493138eb8d0b93d04bfdd5", []),
("texmf/texmf-dist/bibtex/bst/hitszbeamer", "d7e9872b621eebe3f1b5efcd1bac9fd3f5b402de114adeed4d5aa25a4581d7a7", []),
("texmf/texmf-dist/bibtex/bst/hitszthesis", "3a23b351b4555c9e442153486ce2b369fc050dc2b143d99db4d70793fb218256", []),
("texmf/texmf-dist/bibtex/bst/hustthesis", "802112c60a8cb5cbb5179b35044e1d358ede16d23537d488ef7e59ab9382f088", []),
("texmf/texmf-dist/bibtex/bst/ieeepes", "6cfe5c681ae1b49363c583d46d170295cb2a9b0adc5c9d95662d4d61674e6f53", []),
("texmf/texmf-dist/bibtex/bst/ieeetran", "297c0d37952dfe9bfc05fc515c11a1ba233374045d152bea08ab321e5a47e180", []),
("texmf/texmf-dist/bibtex/bst/ijmart", "d609711badce60056b0091be9767bf63d510deeffd0abf6d6953780bf5f29860", []),
("texmf/texmf-dist/bibtex/bst/ijqc", "2729023504038aab25f1b5ca9813080314cb9ef2cb9c85544d3846a3586e1694", []),
("texmf/texmf-dist/bibtex/bst/imac", "044d1cdcd1603261f18a1f773477e62729491b37761b274cecc343a83d777cbe", []),
("texmf/texmf-dist/bibtex/bst/index", "b73e7dc9825a5207c5f55a5205b6dcf2ee8deb0b7d2c797c12725b940b8b9c9d", []),
("texmf/texmf-dist/bibtex/bst/inlinebib", "5b65195f9f86ff906e2f40123661fe12ffd2ef8a78ccd35746aa3c39c07c2d8d", []),
("texmf/texmf-dist/bibtex/bst/iopart-num", "7d011843f19b7370223acb8334ba11e1f7c228e82bfff491a04a33b50b341f46", []),
("texmf/texmf-dist/bibtex/bst/is-bst", "706b373c1a0f0de3bea152dbe8664c9cdaf2999d1eae20cb1ca7687600c90d50", []),
("texmf/texmf-dist/bibtex/bst/jbact", "73bc90d2cadb27ab8bb6735934615948a5207202498553b44db0895dddd6e2f3", []),
("texmf/texmf-dist/bibtex/bst/jmb", "ce3a04df114b61a1ec08b69ae89815c0d7adb3134fd4047220ba0370c7c036e5", []),
("texmf/texmf-dist/bibtex/bst/jneurosci", "3ca4b93a4b4b506c3fa06f8aedbfc75853d1a78662cd740fe5c6f965d33e8cde", []),
("texmf/texmf-dist/bibtex/bst/jurabib", "51db2ffb45bf798b631fe87404449af3a157224ae7b7ba6bbeada2d342eb3908", []),
("texmf/texmf-dist/bibtex/bst/jurarsp", "d2c9f0b987c394326ec21798171532aa9e41cb538190050fca55616ac1dc481a", []),
("texmf/texmf-dist/bibtex/bst/kluwer", "bf7b1a4b72100c40e36da0b627aec1abc553f21972131aea321abf83879926b2", []),
("texmf/texmf-dist/bibtex/bst/ksfh_nat", "e055ac4db86639051f4f956e19f0dd818cd9038e9b84447ab07d91d47041e4ae", []),
("texmf/texmf-dist/bibtex/bst/lion-msc", "72d1bb8b2f7d8a0ae39cfc27ebaa603174d42b20f7692e88251a6caade04dfd7", []),
("texmf/texmf-dist/bibtex/bst/listbib", "240d24be6bb5af6a71ba79fee2b601d8788d6ef5367920b21828bdd39f79e972", []),
("texmf/texmf-dist/bibtex/bst/llncs", "2f7ac975439b4e0a3ccf552b7bbf3cf132b4bc9c72de22d2b7f5a375f8ce2c60", []),
("texmf/texmf-dist/bibtex/bst/lni", "39df09f212b3afc91bbe84e0ea2d4a516f3a788f548a40b403b329976744c28f", []),
("texmf/texmf-dist/bibtex/bst/mciteplus", "75a223608f859fffbbf00dfe0a270f5048a9ee1f71ec4bf2e2d8c36e8e6b23fa", []),
("texmf/texmf-dist/bibtex/bst/mnras", "97a9cf9b4d708c85a9ce12a9af2d984bb4f42629f2a87b658e134230f3379ae5", []),
("texmf/texmf-dist/bibtex/bst/mslapa", "20e066b276d1750d80e102298c2dd2e303a71b256d5297622d9c25917495043b", []),
("texmf/texmf-dist/bibtex/bst/multibibliography", "bc447cc6176752374dfe15a7bfea3018b64c19b05db9786899bedcc8d3a700e2", []),
("texmf/texmf-dist/bibtex/bst/multibib", "91e5d9d7bceb32968d6af184c57e1edf38e6bb61b911ac5b57ceb55432546d14", []),
("texmf/texmf-dist/bibtex/bst/munich", "80acdc8fcbf26fb75e99c01ff76056f7368892a3c4d891dbcf15189a049f7c72", []),
("texmf/texmf-dist/bibtex/bst/nar", "73990432013a9d264af2896c94fd5ce0cba073ad305e07bfbaf3df74365c1a94", []),
("texmf/texmf-dist/bibtex/bst/natbib", "dbd59a1bee0bed0f0a3071936d348b13d161b39c5eefddecf26771e565449196", []),
("texmf/texmf-dist/bibtex/bst/nature", "2b302151dea4f6cd16e8e1e2225099689bdb1b0b6aa9d2d30dc25bdacb17afd1", []),
("texmf/texmf-dist/bibtex/bst/nddiss", "53f13f55ba0037a55188f6f4e11bd59bd196de9047574a41288054de0b70159b", []),
("texmf/texmf-dist/bibtex/bst/newcastle-bst", "d9c50de2d3ff68b0537af68ad6c437b7e9282c2c9e9963f8f97c07cbe44ef8b6", []),
("texmf/texmf-dist/bibtex/bst/nmbib", "4970a4b081e8d72d24774b5d302de33e516613eb8a8939a544d49241aec0e8e8", []),
("texmf/texmf-dist/bibtex/bst/notex-bst", "38bbf62585af53d3c74c84b665aaa9c35eb216f8222040dc3ac4009a85aa8776", []),
("texmf/texmf-dist/bibtex/bst/opcit", "834f6d26cffdf6a09d2bb07c4d2392829f295b5c1ad2f6df7692a2cfe96f4387", []),
("texmf/texmf-dist/bibtex/bst/perception", "65fb946ca66a28a4bafaa8e8511210872d41ea510a8df67662a02711bb8c0988", []),
("texmf/texmf-dist/bibtex/bst/persian-bib", "d3c4806dd438e819d6907f99159a1ca6476cf696aef8579506fe7080c93c82dc", []),
("texmf/texmf-dist/bibtex/bst/phfnote", "4e442ed048eca1d0d6258f8d09dc4b853f3a5d8d3e21c48083f2d48adc73c9db", []),
("texmf/texmf-dist/bibtex/bst/plainyr", "7d4c9f37dbec315a7dbfb69dc3deaa4c6a39db38a47105cb617b1b77ab3e2465", []),
("texmf/texmf-dist/bibtex/bst/pnas2009", "861e3b6e92ab46788a9f8922a5318ed140e4f34597fffe3f7c68155df590ab09", []),
("texmf/texmf-dist/bibtex/bst/prtec", "4a8a653ff7d216d7275c75bafbcffb24e2c79eb331e5c1f6a53e22a5221b2fdb", []),
("texmf/texmf-dist/bibtex/bst/przechlewski-book", "405b04c4d18e630fa410ec06e0e5cba020c57fb33f9c818417852afeda45d179", []),
("texmf/texmf-dist/bibtex/bst/resphilosophica", "781f39025613a6cd48aa577931f44e2be5cd1423b923f52d760e880dc62085ec", []),
("texmf/texmf-dist/bibtex/bst/revtex4-1", "c81a585b14d112eafa7ed3a5e0b2a896af72c603b9e81e49a240bb22d4391529", []),
("texmf/texmf-dist/bibtex/bst/revtex4", "3232cce9594406d2f6fd93d75921a76ffee819477f3a692462acd31dee58e2fd", []),
("texmf/texmf-dist/bibtex/bst/revtex", "09862d8ec2e66c438c1b104b69dd0f28c2de728cc738d3edaa6c04d2264e19ac", []),
("texmf/texmf-dist/bibtex/bst/rsc", "d7ea8dccac515f3f394e70e025e1389015d79c0571ecdb583e5a10beb9d23216", []),
("texmf/texmf-dist/bibtex/bst/sageep", "60a98f58c37b0d68a4d40d46d2ec329f4e0fd218ff5254c4ce942d1f7b2968b5", []),
("texmf/texmf-dist/bibtex/bst/sapthesis", "fb03ffc0eb5528458115e008bd4424cc98c401cf9cd3114d6576c4f6c6b44fef", []),
("texmf/texmf-dist/bibtex/bst/savetrees", "47d8a3e3412ec1c255b55f579896bb61bc7de39336c3ca2435e501a0e8ee9011", []),
("texmf/texmf-dist/bibtex/bst/seuthesis", "8a070fee7c70f3976d40ceb30c7628145ba24c691d6e3e34552b6b0c57259561", []),
("texmf/texmf-dist/bibtex/bst/seuthesix", "b21ed273516e5edab4346272bac4b4e9ca07dc63bb7331bf9276fdab83d3e676", []),
("texmf/texmf-dist/bibtex/bst/shipunov", "edac9b5830b9a855aff36fc7a80ccdc2cb041b4a941c7e5966c90c4dd2cf5711", []),
("texmf/texmf-dist/bibtex/bst/smflatex", "e49a52e31b24c625275d66e14e5514d9057cca9f120b60d62ebc3b1a280a044c", []),
("texmf/texmf-dist/bibtex/bst/sort-by-letters", "6ec8863138b17bd021350483e7718d7bc6b4cfd84afc02d0c030920d178a1eda", []),
("texmf/texmf-dist/bibtex/bst/spie", "3dc6deccf9ba4e1c691c1ceb94a37b019e98d288800f7a596e7fa73ba9efd258", []),
("texmf/texmf-dist/bibtex/bst/stellenbosch", "1e5547cd25c9e6f3905e0c34da1085b077f7259a633372ddc8758c5ce5542344", []),
("texmf/texmf-dist/bibtex/bst/swebib", "d1eac96846055eaf10e81b69d9fbb345ece558935084740d7eec6b252d14a48f", []),
("texmf/texmf-dist/bibtex/bst/texsis", "4a969932f635daa85fb1f8639c651b97588754add576add2db2a729eaa7b6a4b", []),
("texmf/texmf-dist/bibtex/bst/thubeamer", "af2cc044d398f44144acd3993879455902d5d949a14fe0acb7307ac12d38028f", []),
("texmf/texmf-dist/bibtex/bst/thuthesis", "55b923dfe5d2c1e91bf220cdeaa845f208d1237d262641814dd8cbe58e6530d7", []),
("texmf/texmf-dist/bibtex/bst/tufte-latex", "724dd4e12e21386c88ccd3deeb4ce4a862a09ebc56e42b5fb03cf6b8c2996794", []),
("texmf/texmf-dist/bibtex/bst/tugboat", "3b957e12576349436890c7065ce66cb6fb7381b67495bcb38900bfff993ca2e0", []),
("texmf/texmf-dist/bibtex/bst/udesoftec", "cc0f3c758fc96e8e5eca975d8d9f0385320fa8bad39db647749b378812aad0de", []),
("texmf/texmf-dist/bibtex/bst/uestcthesis", "5adae5106637566eb09782a235d5ae062ffe0fbca7d963a63db45f7b5ea8c005", []),
("texmf/texmf-dist/bibtex/bst/unamthesis", "b8306896501f3b6ae8def398ebffebffe5b239d07cb9c7a464bdbc2cb57ae052", []),
("texmf/texmf-dist/bibtex/bst/unifith", "afca3be45cdc36fbb402bf75f07431371ca4f440ebfcd7b47ccd2e99296315f0", []),
("texmf/texmf-dist/bibtex/bst/upmethodology", "d30473ad5a6c533d575805cb1a329c6125c1fd783d01c9e4fd0bbae3353ea9cb", []),
("texmf/texmf-dist/bibtex/bst/urlbst", "895a062a4790e2326e921578137abfaafd47420216708653f835027da62f7f82", []),
("texmf/texmf-dist/bibtex/bst/vak", "a08c130e1fd437133388ae120139abfc3c8193a4d251d30bafec78fe753345d4", []),
("texmf/texmf-dist/bibtex/bst/vancouver", "b8d8123f370581a8457fcb7af2fde6e4e679944bdb7b8c78b10e5fe81aaffc95", []),
("texmf/texmf-dist/bibtex/bst/zootaxa-bst", "0b09a7f799866a94a6169dcd204ba3fa7b019b2e3ac14aba6ae00cb5e2f084d1", []),
("texmf/texmf-dist/bibtex/csf/base", "cc1c78d8e732b577d857aeab7a8a598cc650bc8b7466412c75a54be23a207414", []),
("texmf/texmf-dist/bibtex/csf/dk-bib", "2f84589a5d2ecd779ad3ff21ae81114f01da9a913f10279a8040e9d17d34df40", []),
("texmf/texmf-dist/bibtex/csf/gost", "4875cec276b86998cafbec2b5334d48724752696e6566692ce884bac2d7589b5", []),
("texmf/texmf-dist/bibtex/csf/persian-bib", "535f8684e7a3b882e82a26cc28796d2bf770a825b28e201d8fca6628162d9719", []),
("texmf/texmf-dist/bibtex/csf/polish-csf", "fd2a8780836dc43affdc2d7743edc9f8c51ccf220246d9444e3fabb683aea339", []),
("texmf/texmf-dist/chktex", "d666e7ca8483337a2910df17801c4bcbdffbd35c371ecace817b68d8df522e99", []),
("texmf/texmf-dist/context/data/scite/context", "cc7809b87fe74c020ddca184abd049b9596d316e5ae2e25bbb5877a34ab75216", []),
("texmf/texmf-dist/context/data/texfont", "8b81b134f0cfa87f3bc6352067aed88d9bfd698ace40c6a85909ad789bea4e13", []),
("texmf/texmf-dist/context/data/textadept/context", "fc37de76b5c0eada7762a92fc3f93e8cedb7d6cc9fa5e8ac32b9a90dd7423a32", []),
("texmf/texmf-dist/context/data/texworks", "68ff38c0cbc9a6abe276b9ba2bfb37804ab3d808544bd85110ca5a4125d4ac0d", []),
("texmf/texmf-dist/context/data/vscode", "aacc8534b0d3837ef55d33b9c5646820a990b2498b1c4e79258d45e6b8028de1", []),
("texmf/texmf-dist/dvipdfmx", "6ac89ed7549aef8eaaced4dd4a187c068593fcb6b4a76c4c9aa47c7b455bcf65", []),
("texmf/texmf-dist/dvips/arphic", "360d41f4653af3ee4870006837f521c05f5944e3740e937f0b3d6296eb23caef", []),
("texmf/texmf-dist/dvips/avantgar", "283f04cb1ddf097018ca122806c3b026eba24099d208168f9ede77d8f6b3015c", []),
("texmf/texmf-dist/dvips/base", "c5ed9cb0dfade01bfa77a42e369e068753bac38d1b79828222bf1b16e260df44", []),
("texmf/texmf-dist/dvips/bookman", "761f9eda43cecbdfa27960bc935dcabd89662d282446e7a6d80dbe92ad48348a", []),
("texmf/texmf-dist/dvips/brushscr", "908363a89139252b53b29872d992862380d8693350d41cf9faedc50de260f5a5", []),
("texmf/texmf-dist/dvips/cm-super", "b102fcd3c1d843ae8be0a8491451e9c6901e80408dfcb8202207cae7162b1bb4", []),
("texmf/texmf-dist/dvips/colorsep", "660d5070e2197175475f81aafc82926ef96a1e796cd23bd5e040ffd1b3a8aa7d", []),
("texmf/texmf-dist/dvips/config", "5aea57390482a8bffc31d1f59a1d7e19e755770342f8f1be9270f505c5640d65", []),
("texmf/texmf-dist/dvips/courier", "0a7311996292e4f69143d8adfecb718be936ffe88803dfaf838380a7697a0f4e", []),
("texmf/texmf-dist/dvips/dvipsconfig", "95deff2f71c672e16f8fe9e5194dad205665f3aa14962b79b35873c64eabee13", []),
("texmf/texmf-dist/dvips/esint-type1", "54315fcba0e8e7f6605a07a561ce526a2237f212459bc27c464d224b3fbf7681", []),
("texmf/texmf-dist/dvips/garuda-c90", "4c48eafcc6472e7205c1b45e53e4f472a83c19af445a481377e15a6e3526f9c2", []),
("texmf/texmf-dist/dvips/gastex", "ec1f330be77b2c6ed544d949a17509d95efdf7cecd78464069b9b85bea273a44", []),
("texmf/texmf-dist/dvips/getafm", "fd2cbe7710cef12d09c265b9b3fd6684e60da3250710cc505f581393b024bbbd", []),
("texmf/texmf-dist/dvips/gsftopk", "3d2afb117b50c48f159580debb275aac9f29d96089809a9b73124faec9adee32", []),
("texmf/texmf-dist/dvips/helvetic", "db59b8b0a98ae3e5f890b3c7f90a73ccb8f751b98b455d558a9b4a81d137e856", []),
("texmf/texmf-dist/dvips/initials", "c7e505aa60495017d4c0af99ee991e6567b7b3f3610f70109d4eee59c1cbc8b7", []),
("texmf/texmf-dist/dvips/l3backend", "812447f57d324f533f9df642264f28d3cca84f0686d4711d061fb40c07554d69", []),
("texmf/texmf-dist/dvips/mathdesign", "ba02c5b512f107e2de30bedd848d9c516eebdcf9bdd9f5542f61225555fc82c9", []),
("texmf/texmf-dist/dvips/musixtex", "8c04db9eb167febc52c590eb8a454e9b105ec7538e11d6443ca0c83400562c1b", []),
("texmf/texmf-dist/dvips/ncntrsbk", "48cb15481bec7c2eb8fe149a07aef948ef746052f2c7ea6c6b54b55c9008b62e", []),
("texmf/texmf-dist/dvips/norasi-c90", "2b842c4253d0378eab00b91b4a96aba8cb62e7235e785b3fb5f006361abd4cc0", []),
("texmf/texmf-dist/dvips/omega", "3034793affb00428aa0e747c9964c19851c1b83151f4c06edbc8ff6afdd14941", []),
("texmf/texmf-dist/dvips/palatino", "c8b32eecf305d007ed2b919e737fe87e1d32bf0b89ae70593b7d938b9585fa50", []),
("texmf/texmf-dist/dvips/pl", "d8de79b75475f4906f06909ba4e89dc6750f0494f715bcd1cd13a7fcdde733b7", []),
("texmf/texmf-dist/dvips/psfrag", "d2f1a51253c30528eaa4a11df1244ea543483a8a511872483dfdd3e9fa95a260", []),
("texmf/texmf-dist/dvips/pspicture", "0290457d1c145efc13e1ae865a463241d1f18969fec6b7ac098fe738d022b7fc", []),
("texmf/texmf-dist/dvips/pst-3dplot", "377713e043abcdbbcac6a5277c623565ab207a8285f4c71ddbdca1f28a408029", []),
("texmf/texmf-dist/dvips/pst-3d", "e2baf817ef4bd1d177fc8bc15d6367e0e87c0ec47b5d9723ee9eec52c96e82b4", []),
("texmf/texmf-dist/dvips/pst-antiprism", "190f6ec7f74ccd2add3f9129dd0faee4e02b2f13cbf6dc4bedb68415f506b41f", []),
("texmf/texmf-dist/dvips/pst-barcode", "e1cfc8f85004e28935bcf738f6d464e858e2537f646b25605ca789e2a3f579d3", []),
("texmf/texmf-dist/dvips/pst-bar", "bd4d127e0bebe154b3d9e53af42e5656fe5ddab21bc5a51321bf32a75bd89d9b", []),
("texmf/texmf-dist/dvips/pst-bezier", "a0a3cfe899da0cf2c559d2fc00e6fc4538ae81cf0ded339b2f273ba6eb8ddb2b", []),
("texmf/texmf-dist/dvips/pst-blur", "bf0ea96f627597e66a1aa63679c1e41ccdfbf512b4765417637380b1a17b8fff", []),
("texmf/texmf-dist/dvips/pst-bspline", "1a6356e8f8125f58f7a8a90ff54c4e8126218019f47b7319185cd8eca33820c6", []),
("texmf/texmf-dist/dvips/pst-cie", "c1fd11b4b106e960d698ff80511abaef8f416997b28cb410a7489b2a5f898024", []),
("texmf/texmf-dist/dvips/pst-circ", "5a2a6eae54e4229c5503e3b1f80a8b5bb8a69495456aa7075ad8ce53d89fddf0", []),
("texmf/texmf-dist/dvips/pst-coil", "77e25eab6bcda4302668b29ce2ced6b1d277068aee1c64297be16b275302829f", []),
("texmf/texmf-dist/dvips/pst-cox", "62706b5d7028d1b3e21e1516fbfc7ad8ee9d7eb4dcfab7eedb7f98f09f533286", []),
("texmf/texmf-dist/dvips/pst-electricfield", "a840932c0d3ee45bfa4fb914f5eb74744c05db2c93ad24def0205d4e61a8c861", []),
("texmf/texmf-dist/dvips/pst-eucl", "96089493c36fdda7ebb0fef46717892ce59edb774ac5e5b3b0039a7f954b7ecb", []),
("texmf/texmf-dist/dvips/pst-feyn", "8e365ce86932bacade25f6c27e25fbb76c0bfe5f9a41dea8dd6243def4abf656", []),
("texmf/texmf-dist/dvips/pst-fractal", "95adc8991dfca9b2ea0ccc3d5b691147c1e4e02c6dd3eebf04914418230ca1c7", []),
("texmf/texmf-dist/dvips/pst-func", "86158ca9e38d9efe4109e17ae068c0c5a3bb1373a9c4bd643d29a2a607826918", []),
("texmf/texmf-dist/dvips/pst-fun", "d017f4abb73caf4117c9b0db2d8c2c4807af4ddb3e1680c5654aa0cf918b9a22", []),
("texmf/texmf-dist/dvips/pst-geo", "e7c1b268e2d21d3a71ed6abe39c47f30d97ecc1baf02a16bbf54ff0a2880178f", []),
("texmf/texmf-dist/dvips/pst-grad", "5b78a0f525067fdce3482a448338f9562a86aba7fced60a95449ca5450a1f62e", []),
("texmf/texmf-dist/dvips/pst-intersect", "a298f84ef2b666bffaa3c94a399e7660492f80d7d1daa49f961c1f78159e4661", []),
("texmf/texmf-dist/dvips/pst-knot", "205b2496d6cb1b7b871133e2d5d904a1a84c8dff69d3d0059e5188a3be3c5afa", []),
("texmf/texmf-dist/dvips/pst-light3d", "cbaa95166bdffe29f321fec7c24a2d0fe6d6848c0e49e047ea5d876b68b9c65d", []),
("texmf/texmf-dist/dvips/pst-lsystem", "55435e37ac08d37c024f1c2fb7d688e2bab1ee27ab868d3b17f6b509118ae34c", []),
("texmf/texmf-dist/dvips/pst-magneticfield", "7b220bb19fd52bb4978830ee2059472308701060a3b9244e880d5f9a8ea7de6a", []),
("texmf/texmf-dist/dvips/pst-marble", "7f5128cb9f3cc597eb0082ea9e09c3b875dbe8e698cbce56d084d02475c07486", []),
("texmf/texmf-dist/dvips/pst-math", "ecf81503e723ff33949f9b1e345ce36424054f6709ecfa1b52ce9b2a18eaed9d", []),
("texmf/texmf-dist/dvips/pst-mirror", "fbb5c5d4a858dae771962947896e99182e3f38b1891d15fd35f52164e43370b9", []),
("texmf/texmf-dist/dvips/pst-moire", "a534de6951b6013078b99255e3a3a7507119890410a9b0799d666e46e0b01d55", []),
("texmf/texmf-dist/dvips/pst-node", "ae88c55f2fd1765347adafd4c592b52fb5818aa462de1d2fd296d7af2776d015", []),
("texmf/texmf-dist/dvips/pst-ode", "2311d12c8f1b316a36a850a0fd5ceb71083f4c0639192b6fecfcfca0261ec804", []),
("texmf/texmf-dist/dvips/pst-optexp", "e82ce6d3ea5d12894d8fe72dfba9d9a147a37ba831b25866ceb9570380268b37", []),
("texmf/texmf-dist/dvips/pst-ovl", "004742600bad68794eed85626a71a6acba8b8423639d0b468befb45ea661121d", []),
("texmf/texmf-dist/dvips/pstricks-add", "a9f147dbc1303bbeb32f2402f30370100dd397c3fcbe8e3b53bfd71160f3c741", []),
("texmf/texmf-dist/dvips/pstricks", "1661eeb206b27349ab505f6d2e2562e3c277baced86845009a1c29fa84856420", []),
("texmf/texmf-dist/dvips/pst-shell", "5e61e233ca000150f01ec51061d4315280640fa2067edf4e9e68c57abd5cbf94", []),
("texmf/texmf-dist/dvips/pst-slpe", "c9d11af56d03e1a72d01e8ba75b0b3c39ea53e75d473eea1764dad9bba5a1cb1", []),
("texmf/texmf-dist/dvips/pst-solarsystem", "b65422072be78983902dc88dc8e1446ee65f4a4a8f533bb9ca410c6485c44e44", []),
("texmf/texmf-dist/dvips/pst-solides3d", "0bddb8458c46b45c2a3d80af3959c1ab9def70f5e562fb027657a4c4cdf65b2c", []),
("texmf/texmf-dist/dvips/pst-spectra", "05f46d9cbdfa27224b41007ba250628e931a06bafdc01d43fe796b02ea01664c", []),
("texmf/texmf-dist/dvips/pst-spinner", "ef1166dea24d6394e36f804ed16a89bce9d8bae966ca3ff383e4c50db61ec331", []),
("texmf/texmf-dist/dvips/pst-text", "fe05e45a4d6161f20163997aa4c1bbc4045800d12661ef241312400eef353e00", []),
("texmf/texmf-dist/dvips/pst-tools", "cdd5ebd40d0bccba2b93669329e5c6f0134400e6ea000aacbbe72ba83dc2da6d", []),
("texmf/texmf-dist/dvips/pst-turtle", "9d490065feeeca89cf78faed39e1c1e8d43b57910c9f8e8130b14e29a4deeb82", []),
("texmf/texmf-dist/dvips/pst-vectorian", "fa63a6216084bd1321d3c4d4bda4869c0e30f89d5e7b40443aadf7a3fbc37bb5", []),
("texmf/texmf-dist/dvips/symbol", "2ea802c861f1d95a54f8397ecef042ae37ffbf9f9577a785776a458e5874c0ef", []),
("texmf/texmf-dist/dvips/tetex", "39d73f91071d1ba678d59e2a31ce9f5992a95436ccc168cd17a06cb44dd682b6", []),
("texmf/texmf-dist/dvips/tex-ps", "45c63db3a09c23e7cc601a5481d8b055bc6310a5b8fd235c657cff0a9e7c0c19", []),
("texmf/texmf-dist/dvips/times", "03fdc7e98f7a6702f0dc8bb4c21651fce4d9bb8fbf2854f818dbf6482522eacd", []),
("texmf/texmf-dist/dvips/tree-dvips", "d2de0a86d95e8aee50ec937ba8993c1f308f344cef987ad13488be291d0d577c", []),
("texmf/texmf-dist/dvips/uhc", "a59548175105e22eca1fda146b5589fb1789386a953f4b99912be5da5f394a7c", []),
("texmf/texmf-dist/dvips/xcolor", "826b378c787f144995d2b283c17d7b61ebb362eef76f0bc88a64ab43d27d92da", []),
("texmf/texmf-dist/dvips/xdvi", "98bde006adbf5945db1eb4ad5deeee2f73bb894bed83001eb75685d7d9c9b4f8", []),
("texmf/texmf-dist/dvips/xypic", "d0fbe8804ec5bf4c48661c155f697825adbad62071999cdab2b819c25b9c076b", []),
("texmf/texmf-dist/dvips/yfonts-t1", "f668627116f20bd00584a201b297c44a6c5f9497db4cde7fb0b37a46afa73288", []),
("texmf/texmf-dist/dvips/zapfchan", "46f8bb92193c58e5837a4bbfa40f983f160a70e62dc01e2f62f572564a09b9fd", []),
("texmf/texmf-dist/dvips/zapfding", "4c7d14f15d30a200d052dbe9f00ed8079232171781c0c4fca8daf2dd267faa91", []),
("texmf/texmf-dist/fonts/afm/adobe/avantgar", "0ff355c819a9452e7dde64cf2a5a63784fa435aacc96dca9c115460f692e983d", []),
("texmf/texmf-dist/fonts/afm/adobe/bookman", "ea43293ae9bc02e52a2daebbd76ef8527edbb821642ad58920cba72d300b22a7", []),
("texmf/texmf-dist/fonts/afm/adobe/courier", "05758bf09148ad81f9e75e7c45f815b06001909049343550786003113c2ef395", []),
("texmf/texmf-dist/fonts/afm/adobe/helvetic", "70e83ade8cdf66caa7b66327dc77f603891a394873ea70728de19a90fc7c129b", []),
("texmf/texmf-dist/fonts/afm/adobe/ncntrsbk", "f70d0b86178db221af0201093a103008ce6e7845b66718539dad738ccfa0b34b", []),
("texmf/texmf-dist/fonts/afm/adobe/palatino", "9e7f0ca6bee892b1abebbeafa4e44198f05e3bdd78e5be4d554667fd2d0e4651", []),
("texmf/texmf-dist/fonts/afm/adobe/symbol", "15a6ddef199ca03525b55ddd64e0397abc04fc9216b60b39e74ec9946b50b85e", []),
("texmf/texmf-dist/fonts/afm/adobe/times", "c8a65f8eec88943284018aeac367980fbe9871f12d1c33c24a137ebc1d2d8b43", []),
("texmf/texmf-dist/fonts/afm/adobe/utopia", "76e3bd19b8074004701eaadfc7cf6e2b27a3c85656922513e8d3c1eee0712faa", []),
("texmf/texmf-dist/fonts/afm/adobe/zapfchan", "3912ee25d2cdbb627f54fc483a693a94c477cb3f3aa1162b2eb2670a73f766c2", []),
("texmf/texmf-dist/fonts/afm/adobe/zapfding", "817cbb856f5a6def1f273f96f797ab1c56bc2e03e0d6b26f42294e194f6d5edf", []),
("texmf/texmf-dist/fonts/afm/arabi/arabeyes", "20f038664110891b3accf10d961b14e31eff4fc11f7ba55bf75be2d28deda1bb", []),
("texmf/texmf-dist/fonts/afm/arkandis/adforn", "4fcdcc4780767e23c21f616e6964df902e3034cc76eed7631f19ac863b0cfda1", []),
("texmf/texmf-dist/fonts/afm/arkandis/adfsymbols", "8061a750afbbe44e33c5f29a06bf408bac359f4d233ea7ffdcdf704176838715", []),
("texmf/texmf-dist/fonts/afm/arkandis/baskervald", "6be8cf39729ad4dd7d3cb2098e298d7a993e308f2cb4608fb1c997e17e0b8fb7", []),
("texmf/texmf-dist/fonts/afm/arkandis/berenisadf", "fa6c877b20101396f70bafdf119cc57c62c803229cbf4b1a3db5274ce6d4000e", []),
("texmf/texmf-dist/fonts/afm/arkandis/electrum", "8222d85dc800636350c4d0f01a198865b12172a4005d4913389598dfbb82f286", []),
("texmf/texmf-dist/fonts/afm/arkandis/libris", "22f796b6c806b342bc6bebeed36fd1c113c84f1919a379fa02b0aaace94cb31e", []),
("texmf/texmf-dist/fonts/afm/arkandis/romande", "deb7fcd78f282e88082680daf93602aadf77ef5189af7f06b3be8ceeb3261b0d", []),
("texmf/texmf-dist/fonts/afm/arkandis/venturis2", "865bb22e3c86521700f7116aef602ef13e791e15c43fd42e9e8b814a3fcc995b", []),
("texmf/texmf-dist/fonts/afm/arkandis/venturisold", "17397507e9854044557433bf6768268f4fe864e8fca6425cbc828efe00000d84", []),
("texmf/texmf-dist/fonts/afm/arkandis/venturissans2", "16ccd168bb613ec0041c810e4f59ef57f5f3cfbd098944bcd4f077b94631d14c", []),
("texmf/texmf-dist/fonts/afm/arkandis/venturissans", "e4c4f8814481248be4af6e5c05f429bf0864f68c2e624bd0c23f9a90b9ae1d5e", []),
("texmf/texmf-dist/fonts/afm/arkandis/venturis", "5de4613e6bfcf6e57ea538d8627406fa2e41cb85c29f3582cef30868eab09bbd", []),
("texmf/texmf-dist/fonts/afm/arphic/bkaiu", "5a94ef321f2441ca7acc3aee2a7196ab5cfd6647332e7a957b270f1e00b54f2e", []),
("texmf/texmf-dist/fonts/afm/arphic/bsmiu", "29a934016afbadcf1eacb34b82b3ebe02cdddb821708e6e841515443189f7d41", []),
("texmf/texmf-dist/fonts/afm/arphic/gbsnu", "aadcbb1a27324c3454c14572fd6951ac17c7d5c80aaf0032072d92f9811cca49", []),
("texmf/texmf-dist/fonts/afm/arphic/gkaiu", "0741e8f4d350a8eff84cb29b03d81e5ee884d8534764cd2456929c0b71c0c641", []),
("texmf/texmf-dist/fonts/afm/bitstrea/charter", "ef76c4a2e04006afb0555023f3f56dfcd2642db5e1dfcbc25307c69eac4d9254", []),
("texmf/texmf-dist/fonts/afm/esstix", "051ed8f680c323e0b46653f956148ff178eef3687b9b6b56736aa245a805d5d6", []),
("texmf/texmf-dist/fonts/afm/gust/poltawski", "0b8d11f5b287850707d5eda8fb40b00698af122051cd8a2b6ff49f1555d779f8", []),
("texmf/texmf-dist/fonts/afm/hoekwater/context", "1fc36f864a42b797db87b4dd57e0406a42bc4a8c1dd43791e6bf7f0819f56d68", []),
("texmf/texmf-dist/fonts/afm/hoekwater/manfnt-font", "9ac4514e94693ad1db3ac276559ba8bc9fbf88434bfd89d93fd0442a3bfedb34", []),
("texmf/texmf-dist/fonts/afm/hoekwater/mflogo-font", "b794fb43005ece3bccac383f1c3d7f1b7cb30f71aab8b6606c0a5d30773074e2", []),
("texmf/texmf-dist/fonts/afm/jmn/hans", "31b3728f031d2c56e27b05862db5e8a6c67817c500f917122cae84d7debdfa71", []),
("texmf/texmf-dist/fonts/afm/metapost", "8ddec40a02f055e9fb0ada549305b9d4d63c179615b8b59a31cab3ff45f3ff64", []),
("texmf/texmf-dist/fonts/afm/nowacki/iwona", "c00f9b5bb118002186d545085e39cd5bfd208085f90c521d511ab47d0776aa51", []),
("texmf/texmf-dist/fonts/afm/nowacki/kurier", "108168018567fca7bf94a1471707d33e7b0d2bc2dc1699894a922ba565bd1422", []),
("texmf/texmf-dist/fonts/afm/paratype/ptmono", "76817ed2bdf1482991b49ca832ce26c0b8f22a4ed470155bfe55e2e2668e985c", []),
("texmf/texmf-dist/fonts/afm/paratype/ptsans", "d903c00afb9c6fc3e33b21ccc35d697438011c7103bb659a3e8dcf07d4230db1", []),
("texmf/texmf-dist/fonts/afm/paratype/ptserif", "707582e6e9323aca5534ab5de76fbc62cb855ed4cc1bee1755054f253c17b793", []),
("texmf/texmf-dist/fonts/afm/public/amsfonts/cmextra", "e19a3dbcf2b29cbf269256d5e57652d67d3b6afe43c9c41f695fc2935d673d26", []),
("texmf/texmf-dist/fonts/afm/public/amsfonts/cm", "cf7449d264dce6941b14658bcec9a3c1920f8d42821b66f6469358c9be7acaed", []),
("texmf/texmf-dist/fonts/afm/public/amsfonts/cyrillic", "981aad4fe8e0e32d839726e120b70e1f72053d9136270a8f03fb00df2d84fa9d", []),
("texmf/texmf-dist/fonts/afm/public/amsfonts/euler", "77330e7482c48f1365cd9541cca617b49d1676d5bcd7f69b343aafd839df97df", []),
("texmf/texmf-dist/fonts/afm/public/amsfonts/latxfont", "024a9ff1a00a756541580243147aaf17f2188d7d1299b48721a4ede3628f1e17", []),
("texmf/texmf-dist/fonts/afm/public/amsfonts/symbols", "cc5c0facf1354fbd4f5b9274b42bd63de9acf241003c4867f1b182b11ff3ff84", []),
("texmf/texmf-dist/fonts/afm/public/anonymouspro", "b4738d3d5f92e713a12ffee6e3ea49337c0d9498ba7384d743944003f3038aa8", []),
("texmf/texmf-dist/fonts/afm/public/antt", "b37beadf854cea0bec5d6d3a76864b299c8fc9d2294744189f100a9acb8ac56d", []),
("texmf/texmf-dist/fonts/afm/public/aramaic-serto", "ba4be59a0cea9dbc260796bc34f00f3312ed7ab41b58108c07ee05bb79ba165c", []),
("texmf/texmf-dist/fonts/afm/public/archaic", "5ba5d31594d80647374ca0b1fb380106c6d117fbd74123b90f00964e51b77f7a", []),
("texmf/texmf-dist/fonts/afm/public/arev", "3bbc2d836669e3a4d89810e9b835ce27b4adae002075028c72d6a8d2c63655f3", []),
("texmf/texmf-dist/fonts/afm/public/armenian", "34159734f423173553fe243da157a689967a2931541754251f9fee85619dd195", []),
("texmf/texmf-dist/fonts/afm/public/augie", "97eeb303e5d03389ae0d5ffdbe04fb9915d77f7b27594540e37e24f332ece177", []),
("texmf/texmf-dist/fonts/afm/public/auncial-new", "5a51c4f3df998662a5c86c5b8a142caddd245b09c38f474bd1c5c517c0405c2a", []),
("texmf/texmf-dist/fonts/afm/public/aurical", "7f00f3203bc992d2ef2c4efc038091cebf7b4511fdec978db34ed15a399e53b7", []),
("texmf/texmf-dist/fonts/afm/public/baskervaldx", "90a73ce057627e02cc1d072eaf519539138614c91cbb2f9f23d9be622a225648", []),
("texmf/texmf-dist/fonts/afm/public/bbold-type1", "5f1a2e88b110165d7770bd82f42069eeafa1e500179275235a6e68e0db7ee066", []),
("texmf/texmf-dist/fonts/afm/public/bboldx", "fa8850aadc4123d87a82ebe17457cf56e08dbf95ca7f2628ce196e3777c4f132", []),
("texmf/texmf-dist/fonts/afm/public/bera", "685cef6bb4db8ffb54ebc4e4791fa46b6d40378ec4e6ce5582c3368f2bee594a", []),
("texmf/texmf-dist/fonts/afm/public/bookhands", "1d2d47ab895bf185651ae2d1e26ef1449d9d4abb98c4158579a55cb064fb4b4e", []),
("texmf/texmf-dist/fonts/afm/public/brushscr", "56f81b343f64fe285a5d9dcb0ca6440b24a4ad856f2f5e7a74afd4ad4861dfc0", []),
("texmf/texmf-dist/fonts/afm/public/calligra-type1", "47bfbf612145bc43f7ccd857a4adc4366ae19fb3f1cef1f578e95e09a6ed1988", []),
("texmf/texmf-dist/fonts/afm/public/carolmin-ps", "6c80f12c5c28859cb6582e391e093ae3978b17bbed22353061d008fea95f4b7b", []),
("texmf/texmf-dist/fonts/afm/public/chemarrow", "9f5e53e70ce9e254c54bea69e830402e6fd45c3d9bb9e4fa9eb2efbc55dc2180", []),
("texmf/texmf-dist/fonts/afm/public/cjhebrew", "d5bb87baf41cbec71521fe6268bcdd5f76907988b38afc57d05cdde6558bf67c", []),
("texmf/texmf-dist/fonts/afm/public/cm-lgc", "0d1c108ee01d62baf4e987f47423bbbb74acccd83bf5abc806bae6c5bdec29f9", []),
("texmf/texmf-dist/fonts/afm/public/cmsrb", "96c166718961426ceaa79bb802ea97778ef3b8905ce5a975ade89769e4547560", []),
("texmf/texmf-dist/fonts/afm/public/cm-super", "aeb853fa4ce8e294895ed6fb40c8913beecaa6ce17206ff3eafb220569dd7125", []),
("texmf/texmf-dist/fonts/afm/public/cm-unicode", "2d2ce2a05a0f55862c2e1ab339ed32eedca81bc8a746b55995e083ac20a6ea12", []),
("texmf/texmf-dist/fonts/afm/public/cmupint", "8ee7df7207b061d0e4ffe6e63346a7ce406557377d2ac54ab461b1f7f565a469", []),
("texmf/texmf-dist/fonts/afm/public/cochineal", "cc102957b4c7d11de5314ee0206056ec2fabd57a2b783c5e1b3ba652d9f3e77d", []),
("texmf/texmf-dist/fonts/afm/public/countriesofeurope", "58fee5d2eed4252c4ebe7f6bf7e7d45f0f632ce9493a248ea7df8865b41a2250", []),
("texmf/texmf-dist/fonts/afm/public/cryst", "8caf31ab2da9f37c77dafee7a7de138d45b87211f47b6474ac7f26b9dfab3375", []),
("texmf/texmf-dist/fonts/afm/public/cyklop", "e16f18a7478b3cec3ebbc511e240560df876dc2f4176b9220a17076fe92d9c45", []),
("texmf/texmf-dist/fonts/afm/public/dad", "9d8268ca351f6604a30c833fa97d4c39fc288d905690740a3ef5595a96bc86db", []),
("texmf/texmf-dist/fonts/afm/public/dejavu", "fa92f13b92e994389b796911a64ccb4591a9678358b8891f8ec44510983ee46e", []),
("texmf/texmf-dist/fonts/afm/public/dictsym", "6b46de2644a03bfda6c5263492a1b6bc08089f2f476d2f9718bc16f44245b4e9", []),
("texmf/texmf-dist/fonts/afm/public/dozenal", "8e12ef558963f92d01cef15e478073cdf9ed82d5e545f2f0785fd5b12b961955", []),
("texmf/texmf-dist/fonts/afm/public/drm", "634c87290ca7c0e783d763a800a90aa652c7a841338060ffce0cf0eb376e3af2", []),
("texmf/texmf-dist/fonts/afm/public/dsserif", "3164731ba6a8d86cf61617a15482c860eb322090a8d66b45137cf3427ec6f0fc", []),
("texmf/texmf-dist/fonts/afm/public/dutchcal", "d8d193c46f9f32ac9f043ae2ea0fbca0bf7290726654798438778edc2b8973e1", []),
("texmf/texmf-dist/fonts/afm/public/epigrafica", "f8d79f0b02aefd347773c3b0a19de9311e26cab44d4fbcb5f74ecb32e521e7d3", []),
("texmf/texmf-dist/fonts/afm/public/erewhon", "76c0fcea2c5ff0f80c393df7c5c06047cda7fc909c99bc108e9d7f4499322012", []),
("texmf/texmf-dist/fonts/afm/public/etbb", "4cdc46af25f1f582d932cafef9a8c149ad80a8d7aadd384b9dc8e5ac406306a6", []),
("texmf/texmf-dist/fonts/afm/public/fetamont", "0889b2af9e1dd7f3cf32749e6e0963e6fb7e3fc6a96233a8772f516670ccb487", []),
("texmf/texmf-dist/fonts/afm/public/figbas", "5303c915ab0b67a08c974da64b4a79b21f35503f910e1e4d49d90f091124dab4", []),
("texmf/texmf-dist/fonts/afm/public/fonetika", "a40751ed0d4e0bb828bb0d01fe90537d087511e18718dc7b26b779f7b4c165ba", []),
("texmf/texmf-dist/fonts/afm/public/fonts-tlwg", "28ee85c0797c4f867e1c84d9d753cc0e03fc5e8d9b1ddd39dbba73547337e70e", []),
("texmf/texmf-dist/fonts/afm/public/fouriernc", "fe93c6205c1cf5471f305244f028527684bdbb7e0b89fe64f660110bf4e0320e", []),
("texmf/texmf-dist/fonts/afm/public/fourier", "ed459a6fd1294967561019f7b14c158bd38e85dcd45c3eb4d85ca3aa22e1024b", []),
("texmf/texmf-dist/fonts/afm/public/fpl", "14e9dae44bd1fbe1072c1a79a79005ad9e6cccd511d5e7c87f254ec08d43574c", []),
("texmf/texmf-dist/fonts/afm/public/frimurer", "82831b7a35fd08638f08c2a627a98a219df9f190f72409e5c429c1baba3acf72", []),
("texmf/texmf-dist/fonts/afm/public/gentium-tug", "23f2b5d828f947d70096c5151eee69e5cb3175ed8453dbd7dbf30908f413364f", []),
("texmf/texmf-dist/fonts/afm/public/gfsartemisia", "c5150f947a2dddc8a16fc6d9a500272e5a53d0c3a83b0dc2d8aee0339d2e5435", []),
("texmf/texmf-dist/fonts/afm/public/gfsbaskerville", "5e578f7b8c68622eb6e2e4188b6cd37e41753dc5f7487e252d5b332e12a220d6", []),
("texmf/texmf-dist/fonts/afm/public/gfsbodoni", "a220d24ffb214476f8709ae2dbae26fb55e13ffe5e8ae91e332581fe1a49e3a6", []),
("texmf/texmf-dist/fonts/afm/public/gfscomplutum", "650f395d57cb6a7c48b0f9adb8419db8306f7b066987096c4dd9df5981e0038e", []),
("texmf/texmf-dist/fonts/afm/public/gfsdidot", "1e7050aaaf7feb7d8a1ece9eafb2992c9aac1368dd8757c3b216ab586f601ec9", []),
("texmf/texmf-dist/fonts/afm/public/gfsneohellenic", "623778afb934597be8971e305eb0d0dc0279dab2a1a9ed9463f3f73020efea9d", []),
("texmf/texmf-dist/fonts/afm/public/gfsporson", "121cf0be99d4cc46756f6f6babeeb338e729970c6212e8d952b0698e61fc996c", []),
("texmf/texmf-dist/fonts/afm/public/gfssolomos", "c900e6142dde0dedb9a737bfd9fd02833ccb5c47254195519d8eb07c1445f7af", []),
("texmf/texmf-dist/fonts/afm/public/hfbright", "6a447ec0a0213d36ded20960a9147d59809866f02009833eb52d35e5b1005de2", []),
("texmf/texmf-dist/fonts/afm/public/ibygrk", "e7c83556c49517905ccc143ec60fe48f460773c63a76f5b3908432a1f4ccb205", []),
("texmf/texmf-dist/fonts/afm/public/initials", "8e2e5293f4af77486c816ae3dff2cb39f741dba1eb9e7fdaeb4c6a6733fca57f", []),
("texmf/texmf-dist/fonts/afm/public/kerkis", "331ec422f91f08832471d12c17b35c6c99c5bfba14c63f275dd7ba0091108a24", []),
("texmf/texmf-dist/fonts/afm/public/knitting", "61ba0e596ece1acaa454399c56b2277307019d6205840f911afa968a2eb992f2", []),
("texmf/texmf-dist/fonts/afm/public/libertinust1math", "62c6e03dc3221bfb942f728d6a50280af1c656f0ee0419310f24315fa1afe79a", []),
("texmf/texmf-dist/fonts/afm/public/linearA", "e29dc0cba3f8e991077e58af974513ec853b4565020f198d7b22ff95de96d03a", []),
("texmf/texmf-dist/fonts/afm/public/lm", "92f1fea6d0de9d7037344d4b26860fbe48d5140f194c6394b48fddd9484b2aa9", []),
("texmf/texmf-dist/fonts/afm/public/marvosym", "db7a4b858d82856fa8c1eb494d655a997f063919d61f31f00fca6d28dd11ee32", []),
("texmf/texmf-dist/fonts/afm/public/mathpazo", "a620518215fa0a56b5922437562f32cc86609ca2e55621040b031e9ed6129e1b", []),
("texmf/texmf-dist/fonts/afm/public/miama", "d525726a310d67c0cf75fbd0aa9ea98e523951a35dba4799f4e52cf0b815844f", []),
("texmf/texmf-dist/fonts/afm/public/mxedruli", "e8c4502b55f71cf5b74217388a3f0a89dfc2b9a080f1c9fe8daf6647394e7fce", []),
("texmf/texmf-dist/fonts/afm/public/nanumtype1", "87c1f5b94ee58cbdd0f45bf8459fa9bab29968d86c899c082198d6d5df05e467", []),
("texmf/texmf-dist/fonts/afm/public/newpx", "4022f87398a738602914cf3ce0b82cb89196dcce8f318635e9d1e2347d5e25e9", []),
("texmf/texmf-dist/fonts/afm/public/newtx", "b5a252874b2094cc582ca0128af1f0f293b39d54cc5ed394684ee099481d19e8", []),
("texmf/texmf-dist/fonts/afm/public/niceframe-type1", "434d8bbe8a32617661e7df039b1130d20a7abab5699bebb85d4cf05470f9157b", []),
("texmf/texmf-dist/fonts/afm/public/nimbus15", "b65a784766306cad4660ae29cfcd79b488a912b8e2394060301f202043d20ad0", []),
("texmf/texmf-dist/fonts/afm/public/ocherokee", "f3164db2421c7f69b0531a3628a2d94ca9de914725c02fd570239704c19e7c87", []),
("texmf/texmf-dist/fonts/afm/public/old-arrows", "64d13951af29d76750b9aa47b625eb70883b692529967632761c45e13d977931", []),
("texmf/texmf-dist/fonts/afm/public/omega", "09b3e468a61beaa116762c0c9ebb45a0f8cfec03c983c09b598ae00c00ee7a91", []),
("texmf/texmf-dist/fonts/afm/public/phaistos", "5288eb39e42e89f138a5154b31301476c5f61ac530a33bdf8fa3dde3a7bed80a", []),
("texmf/texmf-dist/fonts/afm/public/plimsoll", "6295ace705ccd15701dfab7bcd4a1e481610938756bc36fbf2e914c93447aec9", []),
("texmf/texmf-dist/fonts/afm/public/pl", "bf3ecac8e6567d450c62d1b9ce908634d48b7e816812a611f9a1695092cbb4de", []),
("texmf/texmf-dist/fonts/afm/public/prodint", "e2c9a34e9c3335a567ff1a35ead2be29c5ba6c8590b81a7a3b8f5e5ed195ed82", []),
("texmf/texmf-dist/fonts/afm/public/pxfonts", "b552de42a56efde8ed1c07f5dea52ffce369455d5e98d5007048300ace7d253c", []),
("texmf/texmf-dist/fonts/afm/public/rsfs", "72dadde54b8b816a1e86ae101560be9c9666cfd246ede25cb7d1d38b67547b74", []),
("texmf/texmf-dist/fonts/afm/public/scholax", "c28fe056c7566cee2af8af3ba5ee6cfa70bcb4641b486001413af63a439e03df", []),
("texmf/texmf-dist/fonts/afm/public/semaphor", "20f1d081171d8041ad68e868a611704d58b9f85938300068f12e432219d74c4a", []),
("texmf/texmf-dist/fonts/afm/public/skaknew", "f6114f15ad174f82ce692ace2faed0f56a8b24fedc67e45c717f844bbc1bc471", []),
("texmf/texmf-dist/fonts/afm/public/starfont", "e7d8988207424ba315a1484877767278cae1fbdc3e8dd3bdadd96629cad2b918", []),
("texmf/texmf-dist/fonts/afm/public/stickstoo", "4f4e1095007ebaf35494c9555854f171d797ac00d61f268f1aec21c2389d3534", []),
("texmf/texmf-dist/fonts/afm/public/stmaryrd", "088cf97787200faa8d8545abccbc089ed2e9af0f7af9e16f9628521ec2ff70ef", []),
("texmf/texmf-dist/fonts/afm/public/svrsymbols", "dd39b81b89282201d4f90e0d364b8e86a3afe1c3e6a483d854eaf08c9c3a58ba", []),
("texmf/texmf-dist/fonts/afm/public/tabvar", "f3ef4009aa2fdb2f866ca5f96b46a6934ec91f01e4015205f8fd89d3d1a4cf9d", []),
("texmf/texmf-dist/fonts/afm/public/tempora", "8d1ba1fd9f2b153ba43fa9dec3c92eca4efd548e6e25c2358d0a3d5e15759390", []),
("texmf/texmf-dist/fonts/afm/public/tex-gyre", "9986366447d1dd4a8f07fe2d3713c452d4e8337af19761940f4e3272728e81f6", []),
("texmf/texmf-dist/fonts/afm/public/tfrupee", "400319ea668e806ee6a16d74ceddc5f9f564f59248c377e985f76a2fa0061278", []),
("texmf/texmf-dist/fonts/afm/public/trajan", "462bb9818e667e2566107f5d891de44ca2ff3de41450413b2b6b04245abc55ec", []),
("texmf/texmf-dist/fonts/afm/public/txfontsb", "67cf9048623e4138f6eabe2f2827740f1004c9a2cec2245ae6208c7a48780c47", []),
("texmf/texmf-dist/fonts/afm/public/txfonts", "7306029caca93e39e27320dd321f151090b4fa774aeac4a93161d16e4b44f128", []),
("texmf/texmf-dist/fonts/afm/public/velthuis", "360690439629f6e7860adff09fa3a0f02aadcea8da59ce2b4a86d2572cae9b9a", []),
("texmf/texmf-dist/fonts/afm/public/wasy-type1", "205f24cd6f8807dc6bd9b0bb3a182ada9991abdb122de57cd84e0fbb83b0b166", []),
("texmf/texmf-dist/fonts/afm/public/xcharter", "6e5627963d7dc58862549753f66fa39a4ce535134f485a6e6e2d44ae4d78007d", []),
("texmf/texmf-dist/fonts/afm/public/xypic", "e8c18458af865235b229f80882e458da7a437a4acac41de256b8c311e613129d", []),
("texmf/texmf-dist/fonts/afm/public/yfonts-t1", "58a2ecd9a269ebee4b3d5d77c0f25c8d92a6e9b1867e92c95ac9a0f9b5fb2d20", []),
("texmf/texmf-dist/fonts/afm/uhc/umj", "00e690d45cbd3fbdbc3c84f9de4da2d7a57e7bbdce2cb8722d3c37365a67988b", []),
("texmf/texmf-dist/fonts/afm/urw/antiqua", "8ff87881a1d599b995fe19a7f09123110bde3a7452e205b76ea1f5169f246894", []),
("texmf/texmf-dist/fonts/afm/urw/avantgar", "8d526a6f7df57174aa08fa317e7039fcf1b75ea6fbdb405cb87e12a1ecf7acf1", []),
("texmf/texmf-dist/fonts/afm/urw/bookman", "78a9244ac681bbd8ffc16f327993660baf972a7c9ec471e2ff6958af94ff9aa2", []),
("texmf/texmf-dist/fonts/afm/urw/courier", "6fd8f346c1957847aef9e534d45502cdfbb00d8edcb155a7d2c17c510ef2aab1", []),
("texmf/texmf-dist/fonts/afm/urw/grotesq", "4309000cb746f0aa10803b66246684bc3b329d5557cd8f1ef85ac353e5032599", []),
("texmf/texmf-dist/fonts/afm/urw/helvetic", "deae3affb4227b141328a8f048227f38e8eb2f2469b92265d0eea4324541a7a0", []),
("texmf/texmf-dist/fonts/afm/urw/ncntrsbk", "b10bdaad322b91827435c164f912485d4da31b01665d70d6984d79499c26c6eb", []),
("texmf/texmf-dist/fonts/afm/urw/palatino", "84d8615dab6b5a9d7b9f531d1f96e3c8ad768612ab6b50041f542b687bfa84b2", []),
("texmf/texmf-dist/fonts/afm/urw/symbol", "06587f961df86026a46b8a1231a74a4b60a64ee8fb84d49b7e4506b65aefd38b", []),
("texmf/texmf-dist/fonts/afm/urw/times", "61267c9cbe1a61d013ab76015eac3363cf1c8c9ee22644bc13ae9e72d8be5dc3", []),
("texmf/texmf-dist/fonts/afm/urw/zapfchan", "b3f63d78d4c5d4e51777339ea2d8fae88eb2b80cfb57de0b7b7225decdb9d6d2", []),
("texmf/texmf-dist/fonts/afm/urw/zapfding", "8c270d3184274a105d2373d8cf0225d0a403d5381d908c2ef120cabecd259f7e", []),
("texmf/texmf-dist/fonts/afm/vntex/chartervn", "2afd48056405ac40ea0f4bec8f8427e4f055d613a786df65f8ed31cf92dff277", []),
("texmf/texmf-dist/fonts/afm/vntex/grotesqvn", "d50f3595e8933147133295baf4c511848ff787736c7f05b9cd97ecd996274af0", []),
("texmf/texmf-dist/fonts/afm/vntex/urwvn", "8738b55044028839248ca4f719ca027ee04eaec48f687c0f22045ab2ecc8fd61", []),
("texmf/texmf-dist/fonts/afm/vntex/vntopia", "5872de12d146f5bc4363bdd9d47c31776755ad8e1515caf37de47eafeda89bf9", []),
("texmf/texmf-dist/fonts/afm/wadalab/dgj", "6f10da89de4495b34388b8aca528fbdba046bf0f512389a091eddb86495b0345", []),
("texmf/texmf-dist/fonts/afm/wadalab/dmj", "f7b7f54a4e10f7a79cae1441a18a14fddc26727fbfc0686010142e69e6fca12e", []),
("texmf/texmf-dist/fonts/afm/wadalab/mc2j", "7859be5c575e00a0a4c014292833dc7c3489d56c3d6df702866ba711301fc26e", []),
("texmf/texmf-dist/fonts/afm/wadalab/mcj", "67f17c06db711164787e81efe4ced0391623542620acb67b3e16b2d65f642c84", []),
("texmf/texmf-dist/fonts/afm/wadalab/mr2j", "c5b98cdc22cd2a56827fb402c66da3c0f388e471be51497dab88a50eda4c639a", []),
("texmf/texmf-dist/fonts/afm/wadalab/mrj", "3e8f289ef00af14f43806f3a483237241d79ca5a591675f4b3664b41b74086dc", []),
("texmf/texmf-dist/fonts/cid/fontforge", "dbeb52c4919da02986ad0544e67d1b160aea2ccf4cbce346fcace8789984af48", []),
("texmf/texmf-dist/fonts/cmap/adobemapping/cmap-resources", "adc27c0b44846db223e1c9ebee37aaeb5d71c650aba236df29f4b5e36ee822fa", []),
("texmf/texmf-dist/fonts/cmap/adobemapping/mapping-resources-pdf", "8432243043de3ba674690045b8b9296c065e601213d7b5dd5b9a8fca192a13ff", []),
("texmf/texmf-dist/fonts/cmap/dvipdfmx", "7e61de83271127f5f07b430ca5d73b0d64279f2e0fc1c9e905df1811d64ac2b7", []),
("texmf/texmf-dist/fonts/cmap/ptex-fontmaps", "cb87fabcd67b6c9edad17ad841bded1abcfb13ae3133fb834b47f65022c9894c", []),
("texmf/texmf-dist/fonts/cmap/uptex-fonts", "e38ddb42e94b69704d60ce88137c9a87d63c49555f06a6f715aa5ff208d549c0", []),
("texmf/texmf-dist/fonts/enc/dvips/accanthis", "6253534964bc77e1bd8db06afc2f556d710c80831c39e9853ded255744876583", []),
("texmf/texmf-dist/fonts/enc/dvips/adforn", "2e1eecb9bc2be8417a9b0809712e8df746dbef3ad07d0b96e0361753d86d3528", []),
("texmf/texmf-dist/fonts/enc/dvips/adfsymbols", "123b08ecd653a330f3816c4ef685af8e1904bba7e699f00fb3b0ac82e14862d6", []),
("texmf/texmf-dist/fonts/enc/dvips/aesupp", "dce3534e7b194f6fec357ca624d6e9c783c697b6ae0dadbf0c0c256e581db7f0", []),
("texmf/texmf-dist/fonts/enc/dvips/afm2pl", "fcf9445df0f1ab6c6eaedbeeacd1d6609fed94a8190aa3c8f611deb8afbf5c23", []),
("texmf/texmf-dist/fonts/enc/dvips/alegreya", "8fd0a5115ab6c3c8d96bc77bc37cb949ac97ac1488766c41f3ed6f4f0ed623de", []),
("texmf/texmf-dist/fonts/enc/dvips/alfaslabone", "30d258ffc4550a1e5a88427e48e892d71db54bafb58dc2d55f22b51636ae8d93", []),
("texmf/texmf-dist/fonts/enc/dvips/algolrevived", "839ee9857de64fd64adafc453972a5a22345f11a7c80ea7ebf53a40f074778d1", []),
("texmf/texmf-dist/fonts/enc/dvips/almendra", "cb9914ddd12215c4e7968b3e38b27d1e0e6107f400f43ef668667b4531a1e4eb", []),
("texmf/texmf-dist/fonts/enc/dvips/andika", "1a872e836d36f44d0f02af9b1249fa8c572d4be7a5c3764d261057d4de30a917", []),
("texmf/texmf-dist/fonts/enc/dvips/anonymouspro", "348f428a0bcc92dd112a6a00467d58ba771626be476ad50a3c359fec4159c560", []),
("texmf/texmf-dist/fonts/enc/dvips/antt", "f0d59401e83889328f3b1f51b368269ff66f6569490b97e7e3e1f124deb1703a", []),
("texmf/texmf-dist/fonts/enc/dvips/arabi", "dbaec31b8290c09898968766cf5b216dd220565bf30e5ffbb909729b46e15a2f", []),
("texmf/texmf-dist/fonts/enc/dvips/archivo", "9beaee7614c33856eed6a238992b391c305a86e99e37e4c650398b619118fe83", []),
("texmf/texmf-dist/fonts/enc/dvips/arev", "131529ebb63e25897f4d54462b0ac7d83b3a491a65276987b803a8080d4b11a5", []),
("texmf/texmf-dist/fonts/enc/dvips/arimo", "6a6b9a8487fb293328bb3a17c59432ff8ca4d1f4593818e9aac04dc58a5e43f4", []),
("texmf/texmf-dist/fonts/enc/dvips/arvo", "82eebf3dc9361df7216442a9ecc4425f10c88b628b6490330578ad35346686eb", []),
("texmf/texmf-dist/fonts/enc/dvips/atkinson", "3ad3f1f39788027ee7fe4dd53c524457d9f70c2b00d705effb4e1408efcd1ab2", []),
("texmf/texmf-dist/fonts/enc/dvips/b1encoding", "c623dc9f3120ad3143bfb9cc14a28f1dbec0319fdebc78766fe26868a1034d23", []),
("texmf/texmf-dist/fonts/enc/dvips/base", "5888c9a376d9054a64d7115118de26f094140be140ec7a85f214fd82ca07ccaf", []),
("texmf/texmf-dist/fonts/enc/dvips/baskervald", "f2b8f5c4a9ba7971a9658fa466284b39a0693c06ab5f574fee4674e1166cba64", []),
("texmf/texmf-dist/fonts/enc/dvips/baskervaldx", "3c7b85c6c4595ca17924701a06158703aa6eb10e779b924be75e3c6cb8347868", []),
("texmf/texmf-dist/fonts/enc/dvips/baskervillef", "0c4b3f523d162e05bcb5717ce8e37047311565dd1feb6a1eaa6e1ec817b50ea1", []),
("texmf/texmf-dist/fonts/enc/dvips/bboldx", "8441da0aef04d68d0130663e74f4942d9324d3fca4fda2b04dedf27d755ea6e8", []),
("texmf/texmf-dist/fonts/enc/dvips/berenisadf", "80cbd7ef402f7b95825330b9cdd6c15ed806bd7b377413ae5cc9fe4e6595def5", []),
("texmf/texmf-dist/fonts/enc/dvips/bitter", "21bcc5464eac8b0a26607454787c0297749d46fb88931cf9c9491fd775e69584", []),
("texmf/texmf-dist/fonts/enc/dvips/c90", "beea4be54600aede32535e679833d317da0db8d4dd2adedec7ac19ab6a75c4bc", []),
("texmf/texmf-dist/fonts/enc/dvips/cabin", "60d255d62b5b3144231cf871413fabffdc5dd93340530b30f8cb8138d755dcf1", []),
("texmf/texmf-dist/fonts/enc/dvips/caladea", "f012366dbed30c624a914d0427710e381f858cf45c3ee321bbf465ec011f4805", []),
("texmf/texmf-dist/fonts/enc/dvips/cantarell", "eafd4472cc9fa72968411c7460604d588c88857d49ae9689dff121fbfd53bc8d", []),
("texmf/texmf-dist/fonts/enc/dvips/carlito", "f994324cb3d289bacdd077c51bc9ea2dc46a894222e5d77cbebbd8558d433d39", []),
("texmf/texmf-dist/fonts/enc/dvips/cascadia-code", "56a8effc09537cc0e756744ed686ff95d2ddb09d7ff9dae0fe12f609d75b6817", []),
("texmf/texmf-dist/fonts/enc/dvips/cbfonts", "a40378b9d6f35ed0425a9bc979c900c03a492e4ec35d34b9280efe5b557d4270", []),
("texmf/texmf-dist/fonts/enc/dvips/ccicons", "7c96c6d083e4b9be5605f57659bcbe395aa112a6f86e22c1a4adc7596174b309", []),
("texmf/texmf-dist/fonts/enc/dvips/cfr-lm", "34c5b403f1601afaed4a7350e06415ff7944c5d722173fe93b73cdb274d49d1f", []),
("texmf/texmf-dist/fonts/enc/dvips/charissil", "9317c675e12e0cef2d1465332ef902194b4d8a1a427e243f22ee1026694f855b", []),
("texmf/texmf-dist/fonts/enc/dvips/chessfss", "e4ede85472f3eee6fd107824c09927f773802e98b97554347037504ffea82f5b", []),
("texmf/texmf-dist/fonts/enc/dvips/chivo", "96109f3142dff9cd92def68c4b6d4192bb86a22cd9387b8ca5371b188f01ae75", []),
("texmf/texmf-dist/fonts/enc/dvips/cinzel", "86d6c0a3eed9cbb467d16ae842014cdcd489b16c9a5d21d291c8b040821aea07", []),
("texmf/texmf-dist/fonts/enc/dvips/cjhebrew", "782f3b169635ce46f95d5e34aed3c0b2012c05b3dd5738448846b0a90b8f54f5", []),
("texmf/texmf-dist/fonts/enc/dvips/clara", "90f2670550dcc96f36aba8b3ffd3f7d5dc203661038f64ca26dc6ca6273c25f1", []),
("texmf/texmf-dist/fonts/enc/dvips/clearsans", "ef90769a1eebbc362c5512aedebb568aa34546e4dde239406a34d5f6c9857d22", []),
("texmf/texmf-dist/fonts/enc/dvips/cmathbb", "ad2edae9f9fb3f23c3bb22e12f70370fb9e1cfc8d863dbffc6c6da977ebb0dc2", []),
("texmf/texmf-dist/fonts/enc/dvips/cm-lgc", "c46b632844e33063c51e206a6799c3bf7b2cc6fb3270684d8187038228058164", []),
("texmf/texmf-dist/fonts/enc/dvips/cmsrb", "bb116303d1d15086af11166dc15c9c3634ffb9fe0334b8207642173c130e7075", []),
("texmf/texmf-dist/fonts/enc/dvips/cm-super", "c7f51ea3285cf9d964f5b8c38fb3a1253f9e4f3034008153c44f9d8dccf3b08f", []),
("texmf/texmf-dist/fonts/enc/dvips/cm-unicode", "a28599a802111c61603089071ef61d65b8bfc3800feaf4084b3cdd4fabfabc63", []),
("texmf/texmf-dist/fonts/enc/dvips/cochineal", "1199b735c8aa458bb81ef0b3a53e742483c2248b685997ef25e8cffbf5995485", []),
("texmf/texmf-dist/fonts/enc/dvips/coelacanth", "fdca962485126adc9e4d66fa49eec3d691e6b97ed47fb08239839b546ac71fa8", []),
("texmf/texmf-dist/fonts/enc/dvips/comfortaa", "0dc51c207621ff1a1498d9c4a2acb3358de320e7a8e61a627fa45b0ac82e1c47", []),
("texmf/texmf-dist/fonts/enc/dvips/comicneue", "2714c6ea5e1023e264b0844e6f02b5c632e41dcadf2e4e919683705fcd1c38d9", []),
("texmf/texmf-dist/fonts/enc/dvips/context", "8726bb4aa9c4dfd557f1392dd3226f7e25bb19d5f2f2a0a22c16b76d30eb231f", []),
("texmf/texmf-dist/fonts/enc/dvips/cormorantgaramond", "cd9b31006b97b826405f457dacc700bfb4299bb457f421a422dcd6d664a89ebf", []),
("texmf/texmf-dist/fonts/enc/dvips/countriesofeurope", "61ec570044aac68ce202caa8acfeac0b8b86011b01ae1e648c0aacf8b1597fb4", []),
("texmf/texmf-dist/fonts/enc/dvips/courierten", "a5b98d7936bd01f7fead7146cf92b0458ffa9264ef4868b8007f744671886f8c", []),
("texmf/texmf-dist/fonts/enc/dvips/crimsonpro", "ad260511a4317175c48fef1be452f887243d34b3f371e8895197426c9aeb7136", []),
("texmf/texmf-dist/fonts/enc/dvips/crimson", "784fa7b9629ee92a14941245490bbab27df87ff684681649db978e5c3e9f91f3", []),
("texmf/texmf-dist/fonts/enc/dvips/cs", "0fd7f8e006eb6d1fa0980abd3d92ebe91f28688bcd6a074534566ac5350e88b1", []),
("texmf/texmf-dist/fonts/enc/dvips/cyklop", "3811e64a5fe9912eba00fa1a547a2232037778400f01d44dbf7626b1dadfca09", []),
("texmf/texmf-dist/fonts/enc/dvips/dantelogo", "b318cc988a9a8818805b85f092ab83ba04d26bdf59b69a5f948e6b4e7beee579", []),
("texmf/texmf-dist/fonts/enc/dvips/dejavu", "e83ba4bb881399a605ae925a0e02263379512ec3d9628a08df3183f1d3b68dac", []),
("texmf/texmf-dist/fonts/enc/dvips/domitian", "fbb078a339e53ddcea3c83d714d819bf6c9695b60f92a5f2aabdc49d53fcacd3", []),
("texmf/texmf-dist/fonts/enc/dvips/droid", "639515f6aba1715b3f6a9364b503bfb22f53ffdea25616b9e0bf3287a235bf55", []),
("texmf/texmf-dist/fonts/enc/dvips/ebgaramond-maths", "011506e1512234dd4b22e14e1920ebfc6ffa165f2cc39300a3d1d561e6f658d8", []),
("texmf/texmf-dist/fonts/enc/dvips/ebgaramond", "42770f8ec8be23506e04f99dffbfa183766ec4f67882a53242a30530837c424d", []),
("texmf/texmf-dist/fonts/enc/dvips/electrum", "13da461485f05b8eeda70753acdab1c6c2a4b27c52f8e2dac65f24c360e2eb19", []),
("texmf/texmf-dist/fonts/enc/dvips/epigrafica", "86eedca9817e1019493d2eba9602c5576a42fc15ace56800c2f3eb338f2c007f", []),
("texmf/texmf-dist/fonts/enc/dvips/erewhon", "0c9bb50def5c55983a8ec102fed28a32d759366dda6844e25e078c83d788b36c", []),
("texmf/texmf-dist/fonts/enc/dvips/etbb", "b2de1179c271424c38055a5506c6ca0f71332e72e9033b4c4bbc8043ca2c8565", []),
("texmf/texmf-dist/fonts/enc/dvips/fbb", "fc2f7390aaff51eb4c9109db6942cd5cdd2cf807d9243db5f6f0b27b72f1d8c4", []),
("texmf/texmf-dist/fonts/enc/dvips/fdsymbol", "66ce75144700930ace072fb8e38f653fca8673800fc0b231434d3fd61f2cf44e", []),
("texmf/texmf-dist/fonts/enc/dvips/fira", "a9076583d9fd2f23a1c0517046ae9abb1900859e6fc8d458ea8bdf9fb12e10b1", []),
("texmf/texmf-dist/fonts/enc/dvips/fontawesome5", "45366ddf6d7e29972390c478b6b1672960677f231f83007020fcbdf44d49d09c", []),
("texmf/texmf-dist/fonts/enc/dvips/fontawesome", "c23e7ddd945975c35d270279df7643b3ece6f78ecd017b9fa46ced3fc07801f6", []),
("texmf/texmf-dist/fonts/enc/dvips/fontools", "16f22dcb8d3dd4af46155f6ebad701a6f39d39a37e60a2f808d074246e1f11ef", []),
("texmf/texmf-dist/fonts/enc/dvips/fonts-tlwg", "f7197ca70b1d1664767d7e4a8065eba716c97587702ea9be713265b051260860", []),
("texmf/texmf-dist/fonts/enc/dvips/forum", "7a5180683c431cd72eb415138fadb5916755566ede0a5e96cd62e45c4fe4c4f2", []),
("texmf/texmf-dist/fonts/enc/dvips/frimurer", "9953eb77bccbf8a1fae99a9f588ee660f526b56ff37e9ffea62ba61388dcf55b", []),
("texmf/texmf-dist/fonts/enc/dvips/garamond-libre", "cd1cd12c532ec16505700bdbe2c79d45396e098c4c2843a181de28b5a867891b", []),
("texmf/texmf-dist/fonts/enc/dvips/gentium-tug", "298eb0612fe40c808596c90ab8ba380738a2f3c33d068ac3b202a0fc9d8b2b2c", []),
("texmf/texmf-dist/fonts/enc/dvips/gfsartemisia", "353520bd090da348354749ccf2cb455873bdb53c7412fda0a121fabe245be7f4", []),
("texmf/texmf-dist/fonts/enc/dvips/gfsbaskerville", "162a5ea4505226179225eadd248ed43d1ce92aa94631f145975508ca7f2781fa", []),
("texmf/texmf-dist/fonts/enc/dvips/gfsbodoni", "120598a82f699e43b85188f4b863444f77071602dc53609d359493632693d34d", []),
("texmf/texmf-dist/fonts/enc/dvips/gfscomplutum", "2ecb4dfb570d6b3a1daf415a0ab56fcc83efb7de0534355a53d4ee00249edb85", []),
("texmf/texmf-dist/fonts/enc/dvips/gfsdidot", "9aeb6da77326e1500e2ed2b92146539ce39aa279e22a05bcf5fcc7bbdb310706", []),
("texmf/texmf-dist/fonts/enc/dvips/gfsneohellenic", "85ca1f7195ced18bd723f3455e967dd225f182ce6765ee34326334ced9f51ba1", []),
("texmf/texmf-dist/fonts/enc/dvips/gfsporson", "4c672bfa64351a8a05c82a7739f39ccaa9cb796f05e70e429a89bd8e1c50deee", []),
("texmf/texmf-dist/fonts/enc/dvips/gfssolomos", "3da668d50c3f2c76e65b2810982350e6828ba796dbbd3d1019f5251066d66b13", []),
("texmf/texmf-dist/fonts/enc/dvips/gillius", "2776b69879940d9fedf349e2ac5d8b6b930d94b6d14374647bc37361a5e5eaf4", []),
("texmf/texmf-dist/fonts/enc/dvips/gofonts", "452ec1db4636924a3bb9ec5e3522848f32f0de79dedcae7e800d6c66c6b7e004", []),
("texmf/texmf-dist/fonts/enc/dvips/gudea", "591a0c0ce6b7c1395f103c48e486875919704c199c0955678beb2aebaaf2eb4d", []),
("texmf/texmf-dist/fonts/enc/dvips/heuristica", "7579c58a00fa9e80228960c6b8819453d0e4cbfaf12d16d59d397cd2fde65795", []),
("texmf/texmf-dist/fonts/enc/dvips/hfbright", "26744fffa61de45df125bef30bdf577e9f9ec8ec7694150b4291de2fdf7f18f1", []),
("texmf/texmf-dist/fonts/enc/dvips/hindmadurai", "7b0180830c66948748338d822fd1c795d526c1bdcdd987cf9bfc637426f878b7", []),
("texmf/texmf-dist/fonts/enc/dvips/ibarra", "54e9dbe15b5948093b88d1649b64737c3644db864004ab3e61d2098d037bb6e9", []),
("texmf/texmf-dist/fonts/enc/dvips/ibygrk", "2a288f0b8d4c7a14e31f9d2a71978876939fa9a9f0e32eca1118e9c16b64a380", []),
("texmf/texmf-dist/fonts/enc/dvips/imfellenglish", "830b8aa2f16d95ef2d86e0fcf6be1f228a9de270f6eeee402a7be2d68187fcd6", []),
("texmf/texmf-dist/fonts/enc/dvips/inconsolata", "3149e7ed1124c881b54abd8afeab4b4097ca6cdec2411f1e2955d74c9df386ce", []),
("texmf/texmf-dist/fonts/enc/dvips/inriafonts", "6e7074e5eb659679e3ff63130293d1242b10bead0da369d80c7df706fb63b044", []),
("texmf/texmf-dist/fonts/enc/dvips/inter", "b7d9118eb036a0ffbd800295ac764973b350555230036b1715d91ade89f36e5d", []),
("texmf/texmf-dist/fonts/enc/dvips/ipaex-type1", "d4c331a12d5f907cb35ff7fd00c3b6fcfd7253f443ea6759898525822391f9d7", []),
("texmf/texmf-dist/fonts/enc/dvips/iwona", "67bdafa4a0d688913899ab1484ba6de36e4955b82e36c638eb9ebfb011543dc7", []),
("texmf/texmf-dist/fonts/enc/dvips/jmn", "5d6000b6931b152ccc944d5a079f702a5c8146f112f214a9ab6fbcd62952aded", []),
("texmf/texmf-dist/fonts/enc/dvips/josefin", "a06022ebb8cb7f356a08d51661082d5796323e59b33d6fb31fdf66eb5dbac5ec", []),
("texmf/texmf-dist/fonts/enc/dvips/junicode", "a7a86b34cecf4f9afb33db047d085700657b816d359c6aed59404a5d0f99d216", []),
("texmf/texmf-dist/fonts/enc/dvips/kerkis", "08f41777d07002bf22a001059b88f113d824b790c8843eec491d79ccc47110d5", []),
("texmf/texmf-dist/fonts/enc/dvips/kpfonts", "8a37afb024fff749dbcb8093e590d6a302773a60563a86c6d78e05d5da87dbfb", []),
("texmf/texmf-dist/fonts/enc/dvips/kurier", "1f83dcb64e2729f38da2221cc7bbce7dfcba629b474f5ad8cd90ce53161ed4bf", []),
("texmf/texmf-dist/fonts/enc/dvips/lato", "4085caa53f45ffcb4d2409d68956522725e28d654f50b71c599a3543d68433cf", []),
("texmf/texmf-dist/fonts/enc/dvips/libertinegc", "bf6375859aaaca310827386059c4b8f685bea5b616ebc321a08f29011ee6af25", []),
("texmf/texmf-dist/fonts/enc/dvips/libertine", "f875983911d141717f6b67057668b5dd02aba94e8301b66257953ab911b801c9", []),
("texmf/texmf-dist/fonts/enc/dvips/libertinust1math", "78006955fe892b9da66360da840536a9fc501ef6d10faa256032e65b46857bc5", []),
("texmf/texmf-dist/fonts/enc/dvips/libertinus-type1", "0745c1be8a64ea923fdd90278f61aaa77a3e5550ad05d80fa0e9377a7fde18a9", []),
("texmf/texmf-dist/fonts/enc/dvips/librebaskerville", "d77c2d314238808b79dd8d1d0570b9b02332dafc02e6bff0d3c3c2e940f04f9a", []),
("texmf/texmf-dist/fonts/enc/dvips/librebodoni", "1ddd4646c51f17b505a7c85283b90e302f354f5fbf6980af62f5a37874617f31", []),
("texmf/texmf-dist/fonts/enc/dvips/librecaslon", "e637f05b62eefb3940d449a7ebe37d7d3310d1053f8cbce1bfe12f737e221b56", []),
("texmf/texmf-dist/fonts/enc/dvips/librefranklin", "e96ee97d4fcaad9d0f0f3bd5e050ccec45425d59dc8f9c7c329ddd02eb5b7073", []),
("texmf/texmf-dist/fonts/enc/dvips/libris", "8d77c7a502c3c02102d8fa3b2fcd8e0cd0233d5e64cd157db7098fe737cde496", []),
("texmf/texmf-dist/fonts/enc/dvips/linguisticspro", "4fe0695769d5328d7370aea8fa6503ebca443d7f7a42442c90c1969ad61b50b4", []),
("texmf/texmf-dist/fonts/enc/dvips/lithuanian", "cc87952ecb7aba3440e36f5dc16388fef5573659665e40d2ddfbea5032d9e4e9", []),
("texmf/texmf-dist/fonts/enc/dvips/lm", "eee8c1f87bcb8897ebda695427a8219814971cc1ed89ffc31402d452fa2a03f0", []),
("texmf/texmf-dist/fonts/enc/dvips/lobster2", "00d31cb486ce99a8d54111ba3173f4d658ff2cd7a556c1a2c34441a773b8574f", []),
("texmf/texmf-dist/fonts/enc/dvips/ly1", "fe03037a7a38f86de532959370eede029af2f3e56b264d3b6696289274c404b5", []),
("texmf/texmf-dist/fonts/enc/dvips/magra", "89ef7a4c0597306af8b0efff5b2141ea32ac04ea01acf10a036dd51b1b03fb51", []),
("texmf/texmf-dist/fonts/enc/dvips/marcellus", "0e1c6972c2da29532308753a510535de3f9d0250b8218b2653643e053fc7442f", []),
("texmf/texmf-dist/fonts/enc/dvips/mathdesign", "2f7df965f9e190b9b4e276f2a06b091683f6f51a1cf0885bbf8416582b64d0d1", []),
("texmf/texmf-dist/fonts/enc/dvips/mdsymbol", "f4c9a6f5072ea2124a28b916084c1e73a58ebfc999d41620ea3bcd7351fe8d50", []),
("texmf/texmf-dist/fonts/enc/dvips/merriweather", "c4f86110b6fe6132abbff0e92e4887b3fd161819ba1e123cea4d067da9ef5b8a", []),
("texmf/texmf-dist/fonts/enc/dvips/metapost", "e864205eeb7f8c6662657c72da63d6bdd699eef2af758dc9aaf773b910978fac", []),
("texmf/texmf-dist/fonts/enc/dvips/miama", "a0b551d97d0c47284a7f2074b402a9d7e4dc52d8b7596fcea3a8ac833bc0136a", []),
("texmf/texmf-dist/fonts/enc/dvips/mintspirit", "3ebe844d485ece4fdad21246fdadc0710245b09f2a1a2e885a8808c9ff7fafce", []),
("texmf/texmf-dist/fonts/enc/dvips/mnsymbol", "b11bdf76e62d6d92fe48a89b9cf58efe07a047cdd981163c87594975c8442b5b", []),
("texmf/texmf-dist/fonts/enc/dvips/montserrat", "e9b0a7df5362ffd1054244a286d1f8bc58dbfb3bea6383b33eb96ba16e3eab2d", []),
("texmf/texmf-dist/fonts/enc/dvips/newpx", "6bdb27e469a1e742c472391fc6889851195e1a2e25a4e2c619df8e0193f1b410", []),
("texmf/texmf-dist/fonts/enc/dvips/newtx", "969f6056ad8cc0f4d3dea5cec96940a2a4963691d061546544fdeab8a8c81252", []),
("texmf/texmf-dist/fonts/enc/dvips/newtxtt", "6429cd6e4e451be78fc2ce26481cbb922864fbcedea2562d48bafb4348b17626", []),
("texmf/texmf-dist/fonts/enc/dvips/nimbus15", "de735bf86248bd294ee9339b5b98924998467dc283e72237f454479a384ef725", []),
("texmf/texmf-dist/fonts/enc/dvips/noto", "c5647a1da3e56d0615b75dcb5cdd14a43cabcb1a4c56c2074c0909926826c7ae", []),
("texmf/texmf-dist/fonts/enc/dvips/nunito", "b3ca76a87a551b75d82c8b134c7040b20a58e473ba3a97b8005cd39122995927", []),
("texmf/texmf-dist/fonts/enc/dvips/old-arrows", "5989a2913255d44b79a6c96395bc5693f981dcb9ece3e88282af04fe0111f54a", []),
("texmf/texmf-dist/fonts/enc/dvips/oldstandard", "17ae33d7c5ed5b8b30a622e2dad04b49421c26c3df8e531e8e3b7f49ff0115bd", []),
("texmf/texmf-dist/fonts/enc/dvips/opensans", "603e2b05d223d4c9663e8c6a1e5a7e142275b9a3cbc872846409181d1799666d", []),
("texmf/texmf-dist/fonts/enc/dvips/oswald", "9e99e2e1dd98a2c68d561cfbed9d796af59ff8722b38cc6e9ba0b3ffb6ee7876", []),
("texmf/texmf-dist/fonts/enc/dvips/overlock", "f4966a1571462ca6c2515942811dddcc1f3faa77ce2a97dab457bf0eb54b87c3", []),
("texmf/texmf-dist/fonts/enc/dvips/paratype", "917fb8f8f0f7722d6577d6201576e01ed233ed2e65b7c0f297f7bc08fc1692e3", []),
("texmf/texmf-dist/fonts/enc/dvips/playfair", "d28282f97388fe494f2f5d3797c1be5f06811c5f6cf2221f0c89fc0d5be4bb64", []),
("texmf/texmf-dist/fonts/enc/dvips/plex", "d4ba387ac007b8d722e4c14caf6461d32ab8aefb9d0ebd3c7e0a24763c610ad4", []),
("texmf/texmf-dist/fonts/enc/dvips/plimsoll", "0f4334b183c540cf292bed7ffadddeb8b466c1a7b13e08c0bc5d63b20454776e", []),
("texmf/texmf-dist/fonts/enc/dvips/pl", "cce6fb508ac8d562aa78e717f7e6a9ab1327334201f3623e8cbab9916b903389", []),
("texmf/texmf-dist/fonts/enc/dvips/poiretone", "c8c5f27c44bfd73a73db4c412258b0d8efc862d78d06da247bfb806d88edea4c", []),
("texmf/texmf-dist/fonts/enc/dvips/poltawski", "8b722ab1ced698dd413fad1f16abc186be60c3aa90a2b5f72f79fc41bd9acc7a", []),
("texmf/texmf-dist/fonts/enc/dvips/quattrocento", "68b7c11f8a546214dc8034237fa1087036e3898eebc4cef2943bc45fc0972f8e", []),
("texmf/texmf-dist/fonts/enc/dvips/raleway", "17860880e5bfcfebec1d0cc76d807fe2d7deafd141c677ff66384544a51a17a1", []),
("texmf/texmf-dist/fonts/enc/dvips/roboto", "c2f4b638e21a86cabc6fef81a3e41e0a233c9c8d6e82b8b2e659a44521ff83d9", []),
("texmf/texmf-dist/fonts/enc/dvips/romande", "e2793620c51655bb535677651b8afee5f761b91a5c1c3be4d75fbb7fb5e71393", []),
("texmf/texmf-dist/fonts/enc/dvips/rosario", "6e0d0b3c758e64767c74337cfd0490fba9f53b393ee6ed2d91b2f5505b389825", []),
("texmf/texmf-dist/fonts/enc/dvips/scholax", "0eeacdfc1805f94696728e79bff5eaed1347a3657e4e7504b288074f9d6acaee", []),
("texmf/texmf-dist/fonts/enc/dvips/semaphor", "bdbf7890ec0d594353355c39165d1af49c57f65785fbfc849189f90dbc0f9870", []),
("texmf/texmf-dist/fonts/enc/dvips/sourcecodepro", "606f9811c4fd2fe509a83ea50943765e2d021789e2c2e70721f8efa54f37f8fb", []),
("texmf/texmf-dist/fonts/enc/dvips/sourcesanspro", "979be396560369cdc20397e45ab62ae61c25e465e73f214380ce7c47f6d29d7a", []),
("texmf/texmf-dist/fonts/enc/dvips/sourceserifpro", "c5147dac397c5a50c2171f313eee60ce8840997648264c191ef5baeda3488555", []),
("texmf/texmf-dist/fonts/enc/dvips/spectral", "571c13c2ba4515f68daa327270d8cdbdf2cc9c905322d7922b026eefdef643cb", []),
("texmf/texmf-dist/fonts/enc/dvips/stepgreek", "6befaf606180fbd1cc929315467f10d897861ee1daaaba6225d3d9ae8460f5a5", []),
("texmf/texmf-dist/fonts/enc/dvips/step", "41db74b581dc4f691c37e5afb00e6950c69088cba1d8b04c685dcb7ae67f446d", []),
("texmf/texmf-dist/fonts/enc/dvips/stickstoo", "227702e51cc8553d3b120cd5b80f684b907665d9b2f96f22f162db9311ccb553", []),
("texmf/texmf-dist/fonts/enc/dvips/stix2-type1", "ae5e93c86ad41d0e5d4ce96f3aaab52b5e80b763274acd570084f528dce02d7b", []),
("texmf/texmf-dist/fonts/enc/dvips/stix", "a4a706543655c0f88a7638cc29920c4a319b9c23e4812b8bd7e52026dbacf0f7", []),
("texmf/texmf-dist/fonts/enc/dvips/superiors", "e82c3bfdbdf715dd86322d55e740ed1276a7428ec04cded27b34c83f5a748b68", []),
("texmf/texmf-dist/fonts/enc/dvips/tempora", "349cfcb07b605495f69048e7a97debd089802ad43411475e6c3d87a3856fbd02", []),
("texmf/texmf-dist/fonts/enc/dvips/tengwarscript", "ccf5f0a243363413a82503768f44e7da2e24f5d448f75535d004f241a3625d26", []),
("texmf/texmf-dist/fonts/enc/dvips/tetex", "8d143060be80bf5d57d6f8f8fddb754ae0359e68f736632366322dfb0e52bc44", []),
("texmf/texmf-dist/fonts/enc/dvips/tex-gyre", "2b41ef906a28374cb57af8102b96e3968b9d28ca90fdb0e9443bdafe3284bb93", []),
("texmf/texmf-dist/fonts/enc/dvips/theanodidot", "e56bc6993551b093db883ac269abb45314b7f21f73fa6ba22783e85390ad1940", []),
("texmf/texmf-dist/fonts/enc/dvips/theanomodern", "4c9e330d310b6a95fd2a517166c35724faa4461649308ab362f797dd3a7d7e87", []),
("texmf/texmf-dist/fonts/enc/dvips/theanooldstyle", "afc598aa0962427b6082552cf2630ca75d23c5c44d2bd3f6d880d5714f988261", []),
("texmf/texmf-dist/fonts/enc/dvips/tinos", "c6ac684cf6b293d80825630e077be60c176e675d8ca4158df371c3f7bd38c344", []),
("texmf/texmf-dist/fonts/enc/dvips/txfontsb", "d2d4e96a2aa88985a8a4b00896e294faf3f4a2bfec30526c9499f07ecf9a53f8", []),
("texmf/texmf-dist/fonts/enc/dvips/txfonts", "24d092af4e408920316960a19c8d531a0bf9229f5567515cb79e8e8cd431fca5", []),
("texmf/texmf-dist/fonts/enc/dvips/universalis", "93454fca83caf20d787f8398cf1a0d4cf9b3f7a4269db168b9c7fe1b2a85f517", []),
("texmf/texmf-dist/fonts/enc/dvips/venturisadf", "2f691211b9577c35ca7256f37efb8f74c083b7c226408923f652bfcc9d843356", []),
("texmf/texmf-dist/fonts/enc/dvips/vntex", "5f9e1d6e9e74f8c8b9f7e857346bfc46f8c61bd6416a3256ad05ec19d9088c48", []),
("texmf/texmf-dist/fonts/enc/dvips/xcharter", "24fafe88f4585226a535ca886700ac5698f173b6bf27d3f2754a1b5709839ebf", []),
("texmf/texmf-dist/fonts/enc/dvips/xypic", "3b097d35bdf71de08aeff9401070ae5c1a79b04894117c51d45510cd62cb0551", []),
("texmf/texmf-dist/fonts/enc/pdftex/vntex", "8ab4c3c8865e34e9fc20400605bffd14c76f3370d1ee0b5e63d7269ce2bf125b", []),
("texmf/texmf-dist/fonts/enc/t2", "c9868380e52c504e2dfeabd2ad0431715465921c2fea3bef851730d33fd5e79d", []),
("texmf/texmf-dist/fonts/enc/ttf2pk/base", "f6cac20761355c2539a66a97b916798152ccf39dbcc10ef5762cd3def8e14ff3", []),
("texmf/texmf-dist/fonts/lig/afm2pl", "133adeaf652152529493a4209fa781ecae14664377e853849def78b6aeecf710", []),
("texmf/texmf-dist/fonts/map/dvipdfm/lm", "fceee821f924f38335460d98443196d9ff04a75754929a325aab4f165ea7a6c7", []),
("texmf/texmf-dist/fonts/map/dvipdfmx", "833bba3645feac567ae48427e062df5adf889990b29d89dc174e04179b66363f", []),
("texmf/texmf-dist/fonts/map/dvips/accanthis", "39c6c49819abfe6bd88bdfbeacfe4a49945927c0ea9bb92f0b0db7646dbf0fcc", []),
("texmf/texmf-dist/fonts/map/dvips/adforn", "5a41da83fce798936f9a732fb344144dcf954e468b94e97565e00859d140e3fb", []),
("texmf/texmf-dist/fonts/map/dvips/adfsymbols", "1121382ea9e1150a9bf936d19d9f034ff42b398b8fcfb3c1ea8a7729344ebb3d", []),
("texmf/texmf-dist/fonts/map/dvips/aesupp", "4ba27f45305d943c8743441baf1d69b4408921e8d0f973d517e23a9ec529d0e7", []),
("texmf/texmf-dist/fonts/map/dvips/alegreya", "566a139c1022624741d60120a4ea453f24105b371d4539e717f0a0790d249537", []),
("texmf/texmf-dist/fonts/map/dvips/alfaslabone", "4fc8a034d5efc11a639fa96f75f6319830e93029b2ed19d398caa1d02db306b5", []),
("texmf/texmf-dist/fonts/map/dvips/algolrevived", "5c1bcc2bf6bd76473832d83768048af3d8e1366c4d6e7ace11313842cce364d0", []),
("texmf/texmf-dist/fonts/map/dvips/allrunes", "acc8c4eeaa5ddd7b446d25db965a990cdbd63ec721f1f69aa98f1ea4101384bb", []),
("texmf/texmf-dist/fonts/map/dvips/almendra", "6db1a8ecff5f6bce39e1c7ff6a58213b19502f898306e81b297add5119dee12c", []),
("texmf/texmf-dist/fonts/map/dvips/amsfonts", "0cbca96f1a9801a2f1954255db9148f0a85e609bc07087dc30347b9f93c4c27b", []),
("texmf/texmf-dist/fonts/map/dvips/andika", "081427e71d3d49dc727dfca8355559bce6e5cb70713f5b086985e7e7b6a37d7d", []),
("texmf/texmf-dist/fonts/map/dvips/anonymouspro", "7ff277d64011655c71f7a8afeea8b3aac969ae18384144f4b0564893e84c73fb", []),
("texmf/texmf-dist/fonts/map/dvips/antiqua", "c1ddf0460a7629ec34a6233da4f17930e8c6352b6735b0f436e3ce7af90f860c", []),
("texmf/texmf-dist/fonts/map/dvips/antt", "e2745ffe8c5d58c5f359518e1fb54c56373b4347fd89ec8bd48d416edf77c822", []),
("texmf/texmf-dist/fonts/map/dvips/arabi", "16e4f6f4700886bb6a9a87b9924adab784ddf8d2e1b95109fb9e146be5a96e0b", []),
("texmf/texmf-dist/fonts/map/dvips/arabtex", "95b1f1dba654eb35d3220587d4016ad8622e67abf7703ca2c7edd6aec7229f18", []),
("texmf/texmf-dist/fonts/map/dvips/aramaic-serto", "af896c48e9738d2762c1d25069a35e7183702cd5e1b1e358880d17f9d0231c88", []),
("texmf/texmf-dist/fonts/map/dvips/archaic", "a63c131469bf73721999037280839ae8ceaec0a95911e254d5d36815481cf97c", []),
("texmf/texmf-dist/fonts/map/dvips/archivo", "a7033a47dbaaf690feb10124d59b6381d400c413bf7e53970e034c2b596f34e2", []),
("texmf/texmf-dist/fonts/map/dvips/arev", "a88e6039686f8ada701044c96e9a440306407f350800bdf7546096cb5e8af7bd", []),
("texmf/texmf-dist/fonts/map/dvips/arimo", "dbd612110e30dd8425b184b30fce70f030f0ac0745f41983414ecad3ca8355e0", []),
("texmf/texmf-dist/fonts/map/dvips/armenian", "e5140bf77d6c161e3a384bf275162bff114bfe2021a394215ef561f95bfd5277", []),
("texmf/texmf-dist/fonts/map/dvips/arphic", "d8ee112136b73ac8f57c2c767d3a5ea0677e8f8eb15e72766d2cc2791649d6e1", []),
("texmf/texmf-dist/fonts/map/dvips/arvo", "8d98a489aab4f0e3dd15fc0ec3f8a696e81e2bd8acebe948a96ec97a838980c9", []),
("texmf/texmf-dist/fonts/map/dvips/ascii-font", "4c49728b9e6727a513ecc9e263268ee7a71f1507156d1c9256b75685c26bc68f", []),
("texmf/texmf-dist/fonts/map/dvips/ascmac", "e9f8f10ad4695d2f109f1d3942da458106e8131639854c8b5ef79bd0d21915c3", []),
("texmf/texmf-dist/fonts/map/dvips/aspectratio", "1a5a7812f3aab9ee330edf5ef24c24290842689fdb33d88826c48f01e043fd28", []),
("texmf/texmf-dist/fonts/map/dvips/atkinson", "90ef2e5783e5b1a46847c9f8d8f30593b9f9f234821fefaa1160bf6b9752dd3e", []),
("texmf/texmf-dist/fonts/map/dvips/augie", "aaa98ad6b8c46f6fd95d19a3eb136c11493039f13d0a2c3f0905ad1cc70f3083", []),
("texmf/texmf-dist/fonts/map/dvips/auncial-new", "bb12451c97bf5f22bda0d97f065ae3501f90c1440d9b154cbc1081f6f257bbc4", []),
("texmf/texmf-dist/fonts/map/dvips/aurical", "f827f81c0b1cf62efdd0dbf901d19d735f6fa671a65b5a6f615a65b8308d3a02", []),
("texmf/texmf-dist/fonts/map/dvips/avantgar", "da074bebe1b0aeebeafc1f9de0e0aa8d5d335272daeb1cbd53a2943149fce8ed", []),
("texmf/texmf-dist/fonts/map/dvips/baskervald", "4723289b08ba8ddd633671967f6f2cdf47e3cf7e83c57efdf41cb1068be04616", []),
("texmf/texmf-dist/fonts/map/dvips/baskervaldx", "6cf118e2ad41e7eae053a6bfcfba8d7d0622ec4ba190427c12810d8881880edd", []),
("texmf/texmf-dist/fonts/map/dvips/baskervillef", "f9113ab9706a0738adcf4d4a1048c34911555aaed275b87cb30bd982d7f16bde", []),
("texmf/texmf-dist/fonts/map/dvips/bbold-type1", "68b7396d755743344adfb6bd271e3bbb2116b43494d1cc2d6ed7a5df3e5f9850", []),
("texmf/texmf-dist/fonts/map/dvips/bboldx", "04c39d56a2794dd5fa38a232148985df099277fc68b926a84de76c82234ff506", []),
("texmf/texmf-dist/fonts/map/dvips/belleek", "0f3a63acb70509394c44e72f99f41e203687f3f4e9bfe9bde9b4d6176302da49", []),
("texmf/texmf-dist/fonts/map/dvips/bera", "34e4a4b974375747cbe750baa79874525e1788455b8b722b6651e9280e83f11b", []),
("texmf/texmf-dist/fonts/map/dvips/berenisadf", "8106a66ab4aef5ff41a6d6cfc1c18bf5071ed66709c5eaee0e4b81d627f93284", []),
("texmf/texmf-dist/fonts/map/dvips/beuron", "80806088754bacfe771df3da57b0664b82ddff435efff0ff99dd8e354a0dd6ed", []),
("texmf/texmf-dist/fonts/map/dvips/bguq", "f06e9534e167591eaa3a739386feb717f2d3c2bc8486331af02c1bcca5be36cd", []),
("texmf/texmf-dist/fonts/map/dvips/bitter", "87dd347f922a2ff0b9ebbfd5db7d8f571fb4e22914721b6a761558d6ef941fb4", []),
("texmf/texmf-dist/fonts/map/dvips/bookhands", "5fea17a49043291c15e6dd146b36f646d471f6758b17f233616c2ef43cebb207", []),
("texmf/texmf-dist/fonts/map/dvips/bookman", "a0dd27ce8e1aac5d045d2dbaaa446a4656385fe42bdd820e11dd6a2846c5388a", []),
("texmf/texmf-dist/fonts/map/dvips/boondox", "4bd76ac0870d74f620439adc55f575cdc91c4996223a76e7f96d935fa0fc709a", []),
("texmf/texmf-dist/fonts/map/dvips/brushscr", "a8219759172080bf8d7af983523caa3b57684ddd5788f0cb4049715e00a3239a", []),
("texmf/texmf-dist/fonts/map/dvips/burmese", "16ef163bc7f871f50dcdc9b0100c1860dc5e0cf248e9ca02ce69845d39bd3ed6", []),
("texmf/texmf-dist/fonts/map/dvips/cabin", "0ca33dc3ba17c3a5223de74eb69a72f7d068cc50200a2fb193ee98320eb9f07a", []),
("texmf/texmf-dist/fonts/map/dvips/caladea", "c1e7fb7ddf2ae1b2ee2595f18f210613e363a8fb9fdd32ddaf7d24beb642091d", []),
("texmf/texmf-dist/fonts/map/dvips/calligra-type1", "801f5af58a71d35e2d2049350e50f2e4675f11e4f597a039b448146abfd4735c", []),
("texmf/texmf-dist/fonts/map/dvips/cantarell", "a4c2696c6eca97e935f3f280db35b7e60708b404298d2f2fe78ee0c66b0d6b7c", []),
("texmf/texmf-dist/fonts/map/dvips/carlito", "ce3f859aa9f0c3ef858b0ed11ec22c577c2557b1692218133150fdb8963ae3d2", []),
("texmf/texmf-dist/fonts/map/dvips/carolmin-ps", "a2921863518a88858cf0ced2e4b80c44cbf7db86646bfd20d683cfac9ea36b68", []),
("texmf/texmf-dist/fonts/map/dvips/cascadia-code", "eac83d776be8c958d58c713a8c7fa54cfbfd0655387fc3fd2ab83b085b5172e7", []),
("texmf/texmf-dist/fonts/map/dvips/cbfonts", "95658cc896b0cf79f2efe71fec8f7fcee514e5eed078aefaaaf474a4368f0194", []),
("texmf/texmf-dist/fonts/map/dvips/ccicons", "39f27a47debdf3b24847aaebee056f3a1b5bfeabb8d61e0210997c86ebe3f035", []),
("texmf/texmf-dist/fonts/map/dvips/cc-pl", "386fb606449a317db91f61b8cf007e58073343fc240a23a42f983c6f34efb02c", []),
("texmf/texmf-dist/fonts/map/dvips/cfr-lm", "5dbab817a0d83db9a23175ed188d7b457011373e5974f83b3e86930fcaa9f9f8", []),
("texmf/texmf-dist/fonts/map/dvips/charissil", "57abd04f0fd68a79cf91a2b3f3c192b01016651f083d676c402f797059308b0f", []),
("texmf/texmf-dist/fonts/map/dvips/chemarrow", "64d9fe2b6a41d4fec6895fbbe36bbf6498d6675640b1c1db5e3297b3a44eb1f3", []),
("texmf/texmf-dist/fonts/map/dvips/chivo", "3510ac131ba72b049f2e6d2148d94f877148a4b377a03bb924b663fe7245e3e6", []),
("texmf/texmf-dist/fonts/map/dvips/cinzel", "9549a4d17a486eaec7729e0fe2f76d248f7d9abc9ae2db59dcaa35661f230b88", []),
("texmf/texmf-dist/fonts/map/dvips/cjhebrew", "5bd79202bcb4f91a0cdbda64386f0f580956bbe893b2cda2bdc8d82f23e0abbc", []),
("texmf/texmf-dist/fonts/map/dvips/clara", "d6b53e2d85d4e3185070844260f8d78903ed4bfae7705054c6c85ae26b34dd05", []),
("texmf/texmf-dist/fonts/map/dvips/clearsans", "d02800e3dc66d12cf939c5b80f23f829476c1200257ef67bc69444b874115a24", []),
("texmf/texmf-dist/fonts/map/dvips/cmathbb", "bea9b8974fe3a710eb336e0dbd9e4f5be5ecf0102a5bdcd91b10d00955b0dec9", []),
("texmf/texmf-dist/fonts/map/dvips/cmcyr", "00133d49ac4029cf4472435a0538d54cbdcec0627fe75635347f9bc1dfac98dc", []),
("texmf/texmf-dist/fonts/map/dvips/cmexb", "a285ae84ee104a250134a12fc7f161629ef354067fb85fd7250024978b156482", []),
("texmf/texmf-dist/fonts/map/dvips/cm-lgc", "d4d05aa5c44eefff3ea70db34f2be211852ef9b9c8243924e7b8371af9853b83", []),
("texmf/texmf-dist/fonts/map/dvips/cmll", "da593c85703bdeb881bcf4575ffb247d4427635f56b9042eb28a93d964bd1279", []),
("texmf/texmf-dist/fonts/map/dvips/cmsrb", "9d9b234699f25937303e1950572fa4d660843d36da74e64b4bff75469aa88549", []),
("texmf/texmf-dist/fonts/map/dvips/cm-super", "86dd624bb4138ab1d892d39297b488cdea1e0b7f64e5807ae87676e4546a6595", []),
("texmf/texmf-dist/fonts/map/dvips/cm", "f4d76156e1c8d8aa802e74eb670f7458dce4592097786cc4d59cfbf8ee1557b3", []),
("texmf/texmf-dist/fonts/map/dvips/cm-unicode", "8c12dd8f365cf28eacfa05d5d68165f876a3443e2265f511c91d28399aa83303", []),
("texmf/texmf-dist/fonts/map/dvips/cmupint", "934c0be541302b37dd32ca7216e95d386dd09ee7191fc3640d0df7227354a960", []),
("texmf/texmf-dist/fonts/map/dvips/cochineal", "7c77ede9580de753cc46550eb2660e2b456f6110f567a2b3085086f6d97912ad", []),
("texmf/texmf-dist/fonts/map/dvips/coelacanth", "8e9ad71e1f8dae5d62403d3215cf7a7a10ec5bc37f36853fb89b2de3cee2be0e", []),
("texmf/texmf-dist/fonts/map/dvips/comfortaa", "b63ccde17d99ce6554c157d6ccf5810db82089b9a5bb41db7f4945bcb8bd70e3", []),
("texmf/texmf-dist/fonts/map/dvips/comicneue", "c41629a02897269fbbf2b528b6dd828d76e94302d4d484ebc054a13707df0008", []),
("texmf/texmf-dist/fonts/map/dvips/context", "66a6c6e3a82c777fa5e91e41ff82825f03702195fc8e78842f1a4b715ec0fc89", []),
("texmf/texmf-dist/fonts/map/dvips/cormorantgaramond", "8951922f291589d1400327013fd4e0bbb0495f720e9a022d99cd192d1787ae83", []),
("texmf/texmf-dist/fonts/map/dvips/countriesofeurope", "c2307efd74019d70032834310a78ca1600e2f50365474cace7005444eaa35750", []),
("texmf/texmf-dist/fonts/map/dvips/courier", "949ca5ea1ad2d91012d24519c57c7f41fb4175e76d0e604b901a8dd76360c4d0", []),
("texmf/texmf-dist/fonts/map/dvips/courierten", "2615ab53bc41beb769efe8c401251f30d2510b5c758b546961da60698b645863", []),
("texmf/texmf-dist/fonts/map/dvips/crimsonpro", "1837a0ae3b853968336535a2d1c7348bea6507911cbb003ba92bfda5677b5b13", []),
("texmf/texmf-dist/fonts/map/dvips/crimson", "7d2d4149f456a9aefe5012daf4cc747932571adaf8109ffe05483da98bb2d3e1", []),
("texmf/texmf-dist/fonts/map/dvips/cs", "fac1828086d9bc3f4c5b739000f4f477f9e91759a96af6a569496c211bc42ac3", []),
("texmf/texmf-dist/fonts/map/dvips/cuprum", "25d023a8c7813b706af99b53b243821d01b786b32cb63e20d04d5f466775fb6f", []),
("texmf/texmf-dist/fonts/map/dvips/cyklop", "eca1d4e58e552a92d34f4498a2c7eca45a72bc88829344f02e89c07159407cb3", []),
("texmf/texmf-dist/fonts/map/dvips/dad", "d2ac6ace15011485354073b64f5ef85871a5fecc366dfd9f220f1734409ee33d", []),
("texmf/texmf-dist/fonts/map/dvips/dantelogo", "e3a6c1179ae7524ef9d63f20eedd2391dddd9efaba2ae03d1fe862a2b715fe0f", []),
("texmf/texmf-dist/fonts/map/dvips/dejavu", "2a7f2ee42ff79d709a5c998d03239fcd425dd3eb62a04c269429aa1979f158d6", []),
("texmf/texmf-dist/fonts/map/dvips/dictsym", "abdde61a57d3f783a3a1b157f1b9d0463f1b6ba303dafb0750d38157d336d79c", []),
("texmf/texmf-dist/fonts/map/dvips/domitian", "19201fda07a201f29d73e7ff3ba3ff9abac3719cc8a8366202eda610105de1c1", []),
("texmf/texmf-dist/fonts/map/dvips/doublestroke", "0ae3c789cde2292aa07422f950dcaebe47c90313cc419dfa92d876f9378bdbd4", []),
("texmf/texmf-dist/fonts/map/dvips/dozenal", "dcd1cb13c2eddb0dc4fb9cb04c0c62d77082962aa44d6186a60ef239237c0037", []),
("texmf/texmf-dist/fonts/map/dvips/drm", "e304b4c62154815a8a6f3963a2c09db34880c663671a1a1ddb95bf11c921bb09", []),
("texmf/texmf-dist/fonts/map/dvips/droid", "6506b7faa826acb533e5b8b353d8867705fde3bf8ef6607931610c01111a638f", []),
("texmf/texmf-dist/fonts/map/dvips/dsserif", "966424a31396e57ea17b15aecef3667f88a3516a9de940f622058b6fd2615208", []),
("texmf/texmf-dist/fonts/map/dvips/dummy-space", "30e10535647e26becdabffda6b860679b9ba15441c7ea5f19c69693eb4e6b962", []),
("texmf/texmf-dist/fonts/map/dvips/dutchcal", "f32509f59027898880cf1339702f5165686834eb9c166b570d88c7dff07507e0", []),
("texmf/texmf-dist/fonts/map/dvips/ebgaramond-maths", "f2463d020bcd3458488c40a82119906c66c475302d02f98d4d9e2ff6402ab78b", []),
("texmf/texmf-dist/fonts/map/dvips/ebgaramond", "dc9b52629dd2e10236ce405f117ba85c18bd4df663c29c7463495ff2bab83971", []),
("texmf/texmf-dist/fonts/map/dvips/electrum", "ce3410a4192a49229ab6326236bd538fae138f0a50d16bf0e18644943d39daf4", []),
("texmf/texmf-dist/fonts/map/dvips/epigrafica", "3c5b06e186eaa902a49e773b5b2103f5c2b1d7282f8f3626e08ba75e6729c26e", []),
("texmf/texmf-dist/fonts/map/dvips/epiolmec", "e5ec9f3a194e99047f721daec675aacc45a79712d060aa4248776764fa05c286", []),
("texmf/texmf-dist/fonts/map/dvips/erewhon", "be5af749c1c3753d83396c6d06698437bdf5c74da011533c6c8903075ae46c10", []),
("texmf/texmf-dist/fonts/map/dvips/esint-type1", "5e53e63272c4a6fdea43037f5fffbf7fc86e3426e69e9b4f4066dcc970bc4013", []),
("texmf/texmf-dist/fonts/map/dvips/esrelation", "e8a641b8081812dfdc93a5677ba0d86948595445666eff55b8f2a920adf2fde9", []),
("texmf/texmf-dist/fonts/map/dvips/esstix", "acb17322d66c07d906766befd7f72dbfd8020df80f627edb7cc82f6e92300567", []),
("texmf/texmf-dist/fonts/map/dvips/esvect", "333d48f447f1f22c8211696ed70fcf90418a35603225d21889bd51b6382c8d49", []),
("texmf/texmf-dist/fonts/map/dvips/etbb", "cfda6f28dd3c4ddaa60ccb080212d00787ab6c1a35bfeadf7f86b6fa2f0b0c89", []),
("texmf/texmf-dist/fonts/map/dvips/ethiop-t1", "a96780de6753eadaa55e125d84c1fd81bbd25aa95604742a18e2ae26bd40f892", []),
("texmf/texmf-dist/fonts/map/dvips/eurosym", "f99661a797286a72865969bd26f0f0d036d0fabf084b847a36f678238feea415", []),
("texmf/texmf-dist/fonts/map/dvips/fbb", "02f2cfba461310181b6b54315cd12e2a7cc891eb6b5bb492ba4b1d980be60d46", []),
("texmf/texmf-dist/fonts/map/dvips/fdsymbol", "9c87193ffa7285a0cdff36de55f8b38d6dc46a355659b4f423ba326a0697385c", []),
("texmf/texmf-dist/fonts/map/dvips/fetamont", "4619c7b5569881c35b3d4ab884fb3e0a03f7dce0def3df7d7c4d98e0b130026d", []),
("texmf/texmf-dist/fonts/map/dvips/fge", "4a1ada4ccec533fc2e9741d3f5e3054be01d31e8635e8419c45ddf672194926c", []),
("texmf/texmf-dist/fonts/map/dvips/figbas", "4545d79bc5536eeaa88e2ae90f88cc0ff745a8a60e42097b547d2e59787717f2", []),
("texmf/texmf-dist/fonts/map/dvips/fira", "3fa63d9f7184671a64cb92957fc28b718a06e58816c3a02b6c019dfa95252455", []),
("texmf/texmf-dist/fonts/map/dvips/foekfont", "126dff74f8dba1deac2b0b2da4d4b7be7fe37da134ed477b4b9f7fb79ae9d30f", []),
("texmf/texmf-dist/fonts/map/dvips/fonetika", "2e2c5393b2cd0548429c562429d53a9c0e107525cd703df3e28371896b16e2f8", []),
("texmf/texmf-dist/fonts/map/dvips/fontawesome5", "5449706c6c973267a389e1a069ca7664b16bea20ffbe2dca8c5b3053745ca221", []),
("texmf/texmf-dist/fonts/map/dvips/fontawesome", "c03d97af5987c96e754edc74316230e83b46b42a10dad934778394fd554ad98d", []),
("texmf/texmf-dist/fonts/map/dvips/fonts-tlwg", "5fea8c60e81140c0430f78f720f9ace7a77887c901077ac0821d22848465c2ed", []),
("texmf/texmf-dist/fonts/map/dvips/forum", "5939ef917a7302cc036b2d0168f167ad9adafdf6b30ec4eb9c604ef5d3d341ca", []),
("texmf/texmf-dist/fonts/map/dvips/fourier", "ee9c38001033addd686eb57d4985a76dbdd8725928cf71fd8b8496348c097735", []),
("texmf/texmf-dist/fonts/map/dvips/frcursive", "56dd179f92bc743ed04ad977d75ff73a3ffb872a281b559ce2fd251620005148", []),
("texmf/texmf-dist/fonts/map/dvips/garamond-libre", "04aa42097ca19b47ac61c07c2f02b6ed726fffc6b572bb5d9f9b251c88179ebf", []),
("texmf/texmf-dist/fonts/map/dvips/garuda-c90", "f216f279c6a7d1e8cd45c159bed35bdb935456337772d5a7f99b67c9c65637c6", []),
("texmf/texmf-dist/fonts/map/dvips/gentium-tug", "98af0167ca9ecfc2960c19cde6d2b63198ce0443c5922f687f8417e19ef2982c", []),
("texmf/texmf-dist/fonts/map/dvips/gfsartemisia", "29cca3697f8a623e1ba9d885ac32f89cd308e63a0e5c1988df6ac2865a83d27c", []),
("texmf/texmf-dist/fonts/map/dvips/gfsbaskerville", "180e0fbdf561049e9c15e5120598e7a6d983539c90b8aec72f8b5bc59d37d02d", []),
("texmf/texmf-dist/fonts/map/dvips/gfsbodoni", "ed0b741eb5bd846e97f61d5e378fcebbd45272764ca47cef24784f55f89e4057", []),
("texmf/texmf-dist/fonts/map/dvips/gfscomplutum", "d012428541f42d33274a5908926e164c3adba302d85752211b78f3d90a02dbe8", []),
("texmf/texmf-dist/fonts/map/dvips/gfsdidot", "970c343403a5f8ca86156063c02689e76f0b6ade06b2503fa72264dffc93718f", []),
("texmf/texmf-dist/fonts/map/dvips/gfsneohellenic", "82e56680a6cd4a0747ae05bf507f39d12e1f1938510f1f2c956257dd6e0abf63", []),
("texmf/texmf-dist/fonts/map/dvips/gfsporson", "5996fe7682a543fc9a99a17d1a5d51b5ec4b86e7bb1e950f05057231cb15bf8a", []),
("texmf/texmf-dist/fonts/map/dvips/gfssolomos", "8aa140d1976c2784869730ad35be9cb27020ad622e8c16990a2d9b0503dc170d", []),
("texmf/texmf-dist/fonts/map/dvips/gillcm", "b2842f7f9ab20faf6ab7f8a7fd9b33144572cab085288e663fa69da77f843d59", []),
("texmf/texmf-dist/fonts/map/dvips/gillius", "e4d4581624fb5f40c17522bf25ba01d2ae33e284a811fad8f5c0270de0558db4", []),
("texmf/texmf-dist/fonts/map/dvips/gofonts", "e91fdfc910c0e73ec7fadc13af48dd76b86e8f33a1f61ef950e64b4dbd99d242", []),
("texmf/texmf-dist/fonts/map/dvips/greektonoi", "5e51116e98fb58bd1c80c36dda4e3841086737a6d3aa135c062250d685e7b605", []),
("texmf/texmf-dist/fonts/map/dvips/grotesq", "22b03419f8fb2318bbc85f23605d97751d82918a97f4e77e1a6e84bebd236c3d", []),
("texmf/texmf-dist/fonts/map/dvips/gudea", "2e4072982f00afcb15b8f000c385f744b72d6028ede3e2c1dd5556b7d5c29ac3", []),
("texmf/texmf-dist/fonts/map/dvips/hacm", "75eeb29eb5355c32b0fec2681b9b3cffbd06f62018ac53c17e5de255cf04ddb2", []),
("texmf/texmf-dist/fonts/map/dvips/helvetic", "f79048afc178798ff1224c4660269c9ef26d65880f2d79aec730d15b03e8c2ce", []),
("texmf/texmf-dist/fonts/map/dvips/heuristica", "e27b52bc4a260f87d71476057410b84c80bf94e4067cd68d9eaa20cfda55b806", []),
("texmf/texmf-dist/fonts/map/dvips/hfbright", "feaaf5eac6e115f0f26aed82d1730e9b27e10fdfda1a64e1c8fad43e90fa72a0", []),
("texmf/texmf-dist/fonts/map/dvips/hindmadurai", "d224bf7f6bfc395e69c4e6863db072d822f0885cbde4044b1b030b08ce733cf3", []),
("texmf/texmf-dist/fonts/map/dvips/ibarra", "2e584921773792e2b171d5123188d587c619f79131ca9f2c7480a6ddc10bf8ad", []),
("texmf/texmf-dist/fonts/map/dvips/ibygrk", "367ebc092d0a17629a7d2222e06a0e42cbfa2f6de3faa613fe794d4968f23782", []),
("texmf/texmf-dist/fonts/map/dvips/imfellenglish", "15853a0e3d9333c3885e4294e2c440b2f06aa1e534c0c7077bec26612452fe35", []),
("texmf/texmf-dist/fonts/map/dvips/inconsolata", "6376c344c37fcb3c7e452db7a96e521745eae40c89c68452eb681d41b0642337", []),
("texmf/texmf-dist/fonts/map/dvips/initials", "67152a64dbaa8bc0a9e20e23146d22473f772a7ba22b5ff768180d1a41bcc763", []),
("texmf/texmf-dist/fonts/map/dvips/inriafonts", "fcc6c1f381d3c3e486635e055907a3f994b4c4f913d40f976e8d50e6ab96143a", []),
("texmf/texmf-dist/fonts/map/dvips/inter", "c99334f20af7d8cb2f97a9a885d5947d8722cfe7c86f0cb2052962c687ea004d", []),
("texmf/texmf-dist/fonts/map/dvips/ipaex-type1", "e7ad62c819b055824623065af3c5219ff6aa616d3cd11ba96dd2eaf2390ee435", []),
("texmf/texmf-dist/fonts/map/dvips/iwona", "66769888b8ca8434a7d1afc103d34482a8bb9dab39d61b0848a0ed4878cab847", []),
("texmf/texmf-dist/fonts/map/dvips/jamtimes", "97f5a8eeb4805a0dc5ba4911bf26c0c6275208af5ba806f75c34311f60873fd7", []),
("texmf/texmf-dist/fonts/map/dvips/jmn", "cc26e80b27547f086cc844363620bdfed980b2aa2f8c42b1ffa2ef1e2ec3d700", []),
("texmf/texmf-dist/fonts/map/dvips/josefin", "7f5e3b832217f13d1cd254e20973444dbe198d55c0cb38a5ac11a178a7bd2c9f", []),
("texmf/texmf-dist/fonts/map/dvips/junicode", "7af869fb5998d13fcb30c54416b2d729fb6f93ab7a6f5e50091bac7df7ea528a", []),
("texmf/texmf-dist/fonts/map/dvips/kerkis", "0cb1b459b2d28531a34a99c36fc24177410f7e156004e468dcffda4c649375c9", []),
("texmf/texmf-dist/fonts/map/dvips/knitting", "60e1184fa9dcd31baaf9ad850d9afed774b084d438aa317f40b3a2d84d875927", []),
("texmf/texmf-dist/fonts/map/dvips/kpfonts", "c5b209b1f4eac27c38ab4e3b8fc1843158a0587ef907f7bbd34a6011e3c0eec3", []),
("texmf/texmf-dist/fonts/map/dvips/kurier", "0590cd188cd00750c6088d3860c713b2ff3776057b90895bc8613864b0d1746c", []),
("texmf/texmf-dist/fonts/map/dvips/lato", "0bb1be8549c3a29edf6f27a009eb3e46759f9a90ea3ef2e05351227a1dd2e686", []),
("texmf/texmf-dist/fonts/map/dvips/libertinegc", "4ebc6b071085c20937ccb471a7be5ec9445b16237d636971bf04221ee89ae8e8", []),
("texmf/texmf-dist/fonts/map/dvips/libertine", "beffd9b0cba016c796e68a82e505b24ef384f8f0def5bed2535111c40bfe1c2a", []),
("texmf/texmf-dist/fonts/map/dvips/libertinust1math", "8966a80333c4674feda5b43850c340255f5b4791b3a964c3f417e704054d2797", []),
("texmf/texmf-dist/fonts/map/dvips/libertinus-type1", "13b6cc83f956eb91c17d3bd59158af126afffd30a642e670e5681380dbdb95be", []),
("texmf/texmf-dist/fonts/map/dvips/librebaskerville", "6f319375b546cd9d85a1b5468ce443b30e82cd1699a1b0fc32e5bfe1ad587699", []),
("texmf/texmf-dist/fonts/map/dvips/librebodoni", "a8274c2ebc0c3860e44ddf9c35424b20dd57036def51aef3a3493795699b5ef6", []),
("texmf/texmf-dist/fonts/map/dvips/librecaslon", "902162cc7bffd8925e4180c35065bef1a8fec6a115317ac1923a5a47672c6be5", []),
("texmf/texmf-dist/fonts/map/dvips/librefranklin", "62f7f8f02590a3499b01950de86ce1f330d94feda75259aeb9715cc96b39152e", []),
("texmf/texmf-dist/fonts/map/dvips/libris", "4a4b528ae3d8ab950ad960fb6e778d146aa06c6879a00dff79a1c6c0ae470cae", []),
("texmf/texmf-dist/fonts/map/dvips/linearA", "326475ecf66cbdf18972a78481af42819f72012349809fdcbd133bcbaec0400f", []),
("texmf/texmf-dist/fonts/map/dvips/linguisticspro", "c4024a6eafade0015a77a204273b0044a6c5bcaffc7b3a8738f7ff0d5cae26cd", []),
("texmf/texmf-dist/fonts/map/dvips/lithuanian", "095745a8af842647ea6f3a3324fd581bc797269d0ed808df0913a3dda1ad2408", []),
("texmf/texmf-dist/fonts/map/dvips/lm", "b4de121e7212b2e430a7cbdd9ee8a75362da85c833f17f433c0ab3da21448971", []),
("texmf/texmf-dist/fonts/map/dvips/lobster2", "95d4470003de82f5005d1ecb979685179f5c0b1b428989d089830598f3ca1385", []),
("texmf/texmf-dist/fonts/map/dvips/lxfonts", "9c3ceec9b128cd9246f27e010756618042383fa91bc63f21d779bf8d6b429490", []),
("texmf/texmf-dist/fonts/map/dvips/ly1", "101e13fdf27561ebc9924e8ae32fffecd0065af8877dfdfbfba094d716032cbf", []),
("texmf/texmf-dist/fonts/map/dvips/magra", "a2bef62faed181e366a6e28d72d44c914cd937011da6bcffc896d0259301f9d6", []),
("texmf/texmf-dist/fonts/map/dvips/manfnt-font", "ac4463a15d37a145ebc1abe022bd12aadc3f08de0356a23f1ae16991d93b0b2d", []),
("texmf/texmf-dist/fonts/map/dvips/marcellus", "7c2479d46b83c2bc35f85da4100adf19b9e09d70ff5ec30916ca479e13636367", []),
("texmf/texmf-dist/fonts/map/dvips/marvosym", "bdfae8b51548abcd10e792271e6c738396697726e2e55a6df6a9cafe5498cc15", []),
("texmf/texmf-dist/fonts/map/dvips/mathabx-type1", "dbba2516fabbf1eecdb756267efc919746caabfa94cbf65245d3e5198b194852", []),
("texmf/texmf-dist/fonts/map/dvips/mathdesign", "04c807a2f44038eaf31701a86965cf6cf74afe6eb71e9925a280b35932697a74", []),
("texmf/texmf-dist/fonts/map/dvips/mdsymbol", "832e8eda7f54fc0145f8c8cf3b7a53a7115653bcbc7c6fa59828da0752babd3c", []),
("texmf/texmf-dist/fonts/map/dvips/merriweather", "6acd332ea816c5bc7faaa66920bb2b0baaa74260f721e999638533023bbbd19b", []),
("texmf/texmf-dist/fonts/map/dvips/metapost", "903dfe05de48fa462955956e6d23de251908f2269a64bb1951e4a68fd20498af", []),
("texmf/texmf-dist/fonts/map/dvips/mflogo-font", "2d4ee17ef82992d48e9de597a2482e57943f45ba855bef962179fc4bcd77c470", []),
("texmf/texmf-dist/fonts/map/dvips/miama", "c120d0737e5e4ec6c328e16cfb2dee4a6466a4df1dbca502725e63ab28ae192f", []),
("texmf/texmf-dist/fonts/map/dvips/mintspirit", "027e8d49a8e182642cc72148f1ddc528b1a709a8c9ddf524072d4b1bb4d66b18", []),
("texmf/texmf-dist/fonts/map/dvips/mlmodern", "290e4b16ca3af4ed8e0995c6af06feebe9508e627e596653028e83479e6e9e4e", []),
("texmf/texmf-dist/fonts/map/dvips/mnsymbol", "176e0b47fbc80649a0bbb30c024f47eadb46a8eedb79951648cfad8dd065d6d6", []),
("texmf/texmf-dist/fonts/map/dvips/montex", "df3722cf8fb6ddfae10078f1b06a1e1c25f501a005cf179c6a8207b72dff1aa3", []),
("texmf/texmf-dist/fonts/map/dvips/montserrat", "1253a325e0a42466401152841377f179de5aa12f465b414c67b98536fd99472d", []),
("texmf/texmf-dist/fonts/map/dvips/mpfonts", "2224dd994f3a754cf328d4207e467c1dc732c29a72e2a85bb76510be54f78963", []),
("texmf/texmf-dist/fonts/map/dvips/musixtex-fonts", "4eb77d650e1d8ac7a3dc862474a080e3cb4db54952efa2ea8d55d0634e7d4843", []),
("texmf/texmf-dist/fonts/map/dvips/mxedruli", "103fd55cc02ed3dbf18d0b85e410ec5d89a4c3a76ad259a709f1f138799c083c", []),
("texmf/texmf-dist/fonts/map/dvips/nanumtype1", "465a4708ab57176c648a493fa22746a3dcb313731845613ec738cdc6f08238df", []),
("texmf/texmf-dist/fonts/map/dvips/ncntrsbk", "778031e43900fe918f520bd033b44f0b0ea2fe583f54c5bd47b85d61f43142d6", []),
("texmf/texmf-dist/fonts/map/dvips/newpx", "ad184aa992b29aea53d1469fc13f24243a6483e05afb3c64cef74eb929e7b073", []),
("texmf/texmf-dist/fonts/map/dvips/newtxsf", "f4e346a9359a2c22b43db8a7473d67ddf9342bdbac67ef94056bf2a0309da3e9", []),
("texmf/texmf-dist/fonts/map/dvips/newtx", "42ce9597ada5d79c20c69139f0e74ba5eb37ba5f19cc5b5542f2dc0cd0df9203", []),
("texmf/texmf-dist/fonts/map/dvips/newtxtt", "591d279574c59ca2fb5ca7670d942c20dd2bd2c994f9e630332e7f44049969b4", []),
("texmf/texmf-dist/fonts/map/dvips/niceframe-type1", "e4ec0e90064f4c22dfb3197a2cadbfbd166d6046ea6d2eaa195c84b66f94e366", []),
("texmf/texmf-dist/fonts/map/dvips/nimbus15", "a6a24ad4bd86ef1950ed9be9b8c1dd10fb636d34b81670397907830857ebe8ad", []),
("texmf/texmf-dist/fonts/map/dvips/norasi-c90", "da4b291e83e0ceab9a99789a18ac4fc23036db25a2f994f5f7bfeed903c69ae1", []),
("texmf/texmf-dist/fonts/map/dvips/notomath", "705c04d8e040fa68359a269a95a36a10e1b8547be70be34fe3a7f05c934a59e0", []),
("texmf/texmf-dist/fonts/map/dvips/noto", "574af38669b9bf1839908c7d7e76efaba7062ac5fa5923c58d90b707c9d77100", []),
("texmf/texmf-dist/fonts/map/dvips/nunito", "b9dc424498099a037ac9d3d4c88511c78fecd90c9af385a0c5a975884ba2133f", []),
("texmf/texmf-dist/fonts/map/dvips/ocherokee", "541015855922901c6a86a99333363062cb4534daaab1e88868b67867e14f2622", []),
("texmf/texmf-dist/fonts/map/dvips/ocr-b-outline", "af5defc0e2e63ae21366b5262f4b77f5350fbbf56282ebf4dda3af6ece805936", []),
("texmf/texmf-dist/fonts/map/dvips/oinuit", "9fc7d66d10e3727990c5ab0dc8a58f786de5179764a1019936bce9c0508880bc", []),
("texmf/texmf-dist/fonts/map/dvips/old-arrows", "faeff9c590db6503ecf5d6858202f5568f56ca5a2c2340128604aa5674b1af48", []),
("texmf/texmf-dist/fonts/map/dvips/oldstandard", "16b13a76ec4735747313eab4f38ca958494f5ed113e3baab60af079b16bcd9b9", []),
("texmf/texmf-dist/fonts/map/dvips/omega", "7e9eb67d34fe82adec2865db4819bce33f09da40040168c6748afe5292bccaa1", []),
("texmf/texmf-dist/fonts/map/dvips/opensans", "6ab560e19ec904defa9d4bb5a9bd2b90015adf48db900c7f0669abe8cd012409", []),
("texmf/texmf-dist/fonts/map/dvips/oswald", "19574ee1ae07ee6b30c2e0db08bd324d01b41cf9b964a91edadd9157e2438383", []),
("texmf/texmf-dist/fonts/map/dvips/overlock", "1fa0b03d65faecf99e9018a8e34c43c413920d08516572f52e1ecc87f853dc04", []),
("texmf/texmf-dist/fonts/map/dvips/palatino", "4db047d10cfb9ddf3847ad17d7aaa949752181cc8610c5bf131aa7d8827cd9e2", []),
("texmf/texmf-dist/fonts/map/dvips/paratype", "07f5207cfe337fa593c255a94f1557f0b5cc9be254d02870a19f9ff0647dc535", []),
("texmf/texmf-dist/fonts/map/dvips/phaistos", "5cd5fa182caa1a6057b671d8a487636988ba71515e31746ccc87ca081e0a5990", []),
("texmf/texmf-dist/fonts/map/dvips/pigpen", "9c549f778cbeb606f4ee2f8511c75a9dfaca00985c034875465603e6f9f45eef", []),
("texmf/texmf-dist/fonts/map/dvips/playfair", "e3339f99b96802ffa7fadefef603b1edde0a232cdc6b858fe291e881ca6781fc", []),
("texmf/texmf-dist/fonts/map/dvips/plex", "c292e76b4c69cca439c3300a0d707b1996fe6ce6d35baee1cc22ac268707be96", []),
("texmf/texmf-dist/fonts/map/dvips/plimsoll", "70f246db0272117f54c43185f526756cc7f531d80032a648cb4039c46f3fdfc7", []),
("texmf/texmf-dist/fonts/map/dvips/pl", "1c1e5d3502c1d59cd859534aa4bebfe24bf4946a313b4ba1fa50625007542d57", []),
("texmf/texmf-dist/fonts/map/dvips/poiretone", "035ab573d0fd186fd861cf0b2fe4934c060b781bc76301cf45459e64b5de96de", []),
("texmf/texmf-dist/fonts/map/dvips/poltawski", "a595bb19f843e7459956214c9e4d0c465a0601b66f290b09ae59b708acb0130e", []),
("texmf/texmf-dist/fonts/map/dvips/prodint", "4123d277a1211947a20da671e0d98f2ab973ae135bea0781fd32957d1ff5009c", []),
("texmf/texmf-dist/fonts/map/dvips/pslatex", "4a624885275b014aff14367ee6f425de0ce2724c838bb4a768fc1cfabf17e7eb", []),
("texmf/texmf-dist/fonts/map/dvips/psnfss", "a2d0c001e2f879a89c0b9753b7b2372ccbbe7c4fdcf78e21ee89140ccb5a4bf5", []),
("texmf/texmf-dist/fonts/map/dvips/pxfonts", "547be37a4881f8a55d41e0708267da8d6cff85b4b31c977f4cf14f945a2f533b", []),
("texmf/texmf-dist/fonts/map/dvips/quattrocento", "cc9f859a05fa4f9f34cb07085a55cfd9147d7ce0a78601f07be390528304b8d3", []),
("texmf/texmf-dist/fonts/map/dvips/raleway", "932f199e5068c734de5d67d61f574c6a5709f5448d7d66ca8a17b50c8d158ed6", []),
("texmf/texmf-dist/fonts/map/dvips/recycle", "eff9aaee344d93675ffb713d3cd6b6f4b882fc83dcbbe64c56ffd23635e44c76", []),
("texmf/texmf-dist/fonts/map/dvips/roboto", "be0834e56ef3d25661fba74ad29efe87ceea69823e75e7f4331c412fd81cd157", []),
("texmf/texmf-dist/fonts/map/dvips/rojud", "55313a7aeba9d8bdddb7161cd88b8a53112a9248ab4e55f296d4479f9a1c0010", []),
("texmf/texmf-dist/fonts/map/dvips/romande", "91c9a8977afbfda5739c70856a399861de631df00fb41aaf94bdfc6d45fc8630", []),
("texmf/texmf-dist/fonts/map/dvips/rosario", "cf788b4306289870b1c6df790e70ba24c48864755fa3987a048d82928906d4c5", []),
("texmf/texmf-dist/fonts/map/dvips/rsfso", "21b538133f3aba0e790e902140b4cdff3b47f0edfe88f2d83239a5bb1edc1382", []),
("texmf/texmf-dist/fonts/map/dvips/rsfs", "ea00417fe96e813c0c33b4c904442c626b0ead13f557e9e613e6062e06c514a2", []),
("texmf/texmf-dist/fonts/map/dvips/sanskrit-t1", "8dcb691434d40e51a0c00c01ca6357d2b731aa0976adcc5e1c00f91cc975acfe", []),
("texmf/texmf-dist/fonts/map/dvips/sansmathaccent", "7c3f574d55ad5015f9c6de661e91779be20d918a8068fa85655e589c5ac76053", []),
("texmf/texmf-dist/fonts/map/dvips/sansmathfonts", "03864cbb8aad5c9f3299cdbc5a9b330f0fab126ebba92f3a5fa04f851eff7def", []),
("texmf/texmf-dist/fonts/map/dvips/scanpages", "d06be4952ff2826c694a35ca0f383383538b6b3b9abc261a402b1f942644b82f", []),
("texmf/texmf-dist/fonts/map/dvips/scholax", "cffe98a95ae4fde207f3465a1b4ceff256df04acb9fa342f3f5e210c6355450f", []),
("texmf/texmf-dist/fonts/map/dvips/semaphor", "0a1ef6475b87380c91cf9112576686ee47662000a60dd36b2d0813f428ef3290", []),
("texmf/texmf-dist/fonts/map/dvips/skaknew", "7fc355ef5fe09e89d7cabfdae2ef75a4c5177d10478606cd92cd91262e0c5e6b", []),
("texmf/texmf-dist/fonts/map/dvips/sourcecodepro", "e5fbc57f14d7941784dfe2d533acb50bdf75e9dd13a8470d04a3039cdddb4085", []),
("texmf/texmf-dist/fonts/map/dvips/sourcesanspro", "5ede0d264a86eda97bee52f312cad78df19fa7cf89744cf74a9ac100d7448da0", []),
("texmf/texmf-dist/fonts/map/dvips/sourceserifpro", "61a865e9207988cdafe98ffdfc58ce320a4e6dcefd49d396eaaf02c7c8893db4", []),
("texmf/texmf-dist/fonts/map/dvips/spectral", "8cb4600642c2523a5e3a0126c1f584f86906847e2cbf7d37590347833e036347", []),
("texmf/texmf-dist/fonts/map/dvips/starfont", "24a0a1c276e851590f1fae113e6024a41b81ca6b38117f39c97f70446923234f", []),
("texmf/texmf-dist/fonts/map/dvips/staves", "684e8837b6fe5b181949a8db2990a0500566bc2c81b0f138085e4ac4336d7e9f", []),
("texmf/texmf-dist/fonts/map/dvips/stepgreek", "01f0a90fa710cde88cf45d0a1b0c23cd57c0c211e330f00e93b239e500bf84dd", []),
("texmf/texmf-dist/fonts/map/dvips/step", "48c64890ba18e15ee64388013c862ec555b6281bc7c8d46a96cabe33a2f02c60", []),
("texmf/texmf-dist/fonts/map/dvips/stickstoo", "b5da4232c305039022b2cd26debd57fa073733fd7ed7726a044c79798f8a0702", []),
("texmf/texmf-dist/fonts/map/dvips/stix2-type1", "c287d615db42afe7cd5d770b5c95fa99c0900d1efeb65cd015a665d06ed8e2b7", []),
("texmf/texmf-dist/fonts/map/dvips/stix", "ed2a438e5a301455dfbd439eba190cc95e61cc972c9a2b4f53fef6f2194ba511", []),
("texmf/texmf-dist/fonts/map/dvips/stmaryrd", "cf8dd3a2e759db21fad86a3524e1f5a2b8ce3bf632b72a6258c9de56c898afbe", []),
("texmf/texmf-dist/fonts/map/dvips/superiors", "5fe37e27c81b59eed5282dda6154abd5126b0b228055f2414fbe8d7c37837a44", []),
("texmf/texmf-dist/fonts/map/dvips/svrsymbols", "36a882973915ebf29ba56a92feb1cfd084b0423a1093b2a5f9bbafb4cff6b391", []),
("texmf/texmf-dist/fonts/map/dvips/symbol", "30fb59e097a955df4a22374c11c4ca1ae016a53365f08e594b87f178affc4342", []),
("texmf/texmf-dist/fonts/map/dvips/tabvar", "1ed876ae3cc811d7acfe1069a89589b95d3acbbc03d2f6d6259e7afb4d8fa70d", []),
("texmf/texmf-dist/fonts/map/dvips/tempora", "f7b4a4542e39377b8b555a02c7048cfb566ec511c95795bacbc66e66639d16cf", []),
("texmf/texmf-dist/fonts/map/dvips/tengwarscript", "00987428e74261b9bedb1e6d1716039661525d780757df71bf75ce5b540d0c18", []),
("texmf/texmf-dist/fonts/map/dvips/tetex", "93884ebbced2ad5ddf2c7eb4f5f335ee4b7a98559085423642907b9497c986df", []),
("texmf/texmf-dist/fonts/map/dvips/tex-gyre", "3f02f8b223b12dadedd3ceb0979b620f669cfb36a0951beb915b1e32b5d470d4", []),
("texmf/texmf-dist/fonts/map/dvips/tfrupee", "a1ade727f8ef67c2cdc3da65a4f28ee823b0e0a60b7f795228b1d8fed1477682", []),
("texmf/texmf-dist/fonts/map/dvips/theanodidot", "b547b5ac82d39549852cf43ac90b985184dd88fec9339bbd9b77cf0992ab1257", []),
("texmf/texmf-dist/fonts/map/dvips/theanomodern", "ca7d35ffcd7333b26433f7965b2d5547470c1806aa74c062414a7b049ae544d1", []),
("texmf/texmf-dist/fonts/map/dvips/theanooldstyle", "d5c7b73c0baf8aff235beab63fcd96363d63d13ac1659669ebccd155a20aaefd", []),
("texmf/texmf-dist/fonts/map/dvips/times", "dccf2aa1d3bbd4f5302b46b86d248b7a5c055df56ef104842a64ed8fce4e9074", []),
("texmf/texmf-dist/fonts/map/dvips/tinos", "1f98d157972403bffbde60e63b3c042ad361d4e99aa40636f7f2c3bce77ee97c", []),
("texmf/texmf-dist/fonts/map/dvips/tipa", "09dced43d0b1dbe85cab4e19b0cc4a7d53d96b296e42a4802337103662c40464", []),
("texmf/texmf-dist/fonts/map/dvips/trajan", "84285a967f4e3e4b0cbe94ad11da55485ab6125cc5765f866f1726946043a653", []),
("texmf/texmf-dist/fonts/map/dvips/txfontsb", "445a8d89b6e75ccc079a8f6de51175623aa4f5bfd349314a9b3080ca57bbfaa5", []),
("texmf/texmf-dist/fonts/map/dvips/txfonts", "fbd8c0938404f83874266f6dfb8d6a36fad3950dfdab932112fa0041531ff196", []),
("texmf/texmf-dist/fonts/map/dvips/txuprcal", "44eaec97f5c82af7c497620b9681c07449c49ab9aedd7e4fab3641501f7e732c", []),
("texmf/texmf-dist/fonts/map/dvips/uhc", "85c4455e931103c75754584ae2729d1c22c49602e2fb5aefed50cb83aa935513", []),
("texmf/texmf-dist/fonts/map/dvips/universalis", "72194c0397a014642a4cbc0898e48fc07083b0848fca624c60909162fefc6176", []),
("texmf/texmf-dist/fonts/map/dvips/updmap", "c492b147342a34dc5c6b573252056532d51304584dc862adc4249cbce73d6978", []),
("texmf/texmf-dist/fonts/map/dvips/velthuis", "a86b8658a287ea4269b7aaaee1e9a1b5d55d18c1f34f6b875f6a45daaba533a0", []),
("texmf/texmf-dist/fonts/map/dvips/venturis2", "6f2886510d857a31e9ccf3ce956c1bd0ae13be926b6b0febe982fba5eb18aeab", []),
("texmf/texmf-dist/fonts/map/dvips/venturisold", "a9f75f4995eb6d560de00081056b8b0077f611c5f48f87b3bf5e24786f2b51bf", []),
("texmf/texmf-dist/fonts/map/dvips/venturissans2", "20c6faf48460624ddfae34abe0ff84b24c6e2f1cea2e017c098e5fc92cb49a24", []),
("texmf/texmf-dist/fonts/map/dvips/venturissans", "264ed70a19b4c0003eb61f571b01ca20308f442e32a8876bc2e1d2f47c7133eb", []),
("texmf/texmf-dist/fonts/map/dvips/venturis", "1c649f6f36fe01522c50268e00752f7be3501ccb7ae8b62bf3fa839595744a03", []),
("texmf/texmf-dist/fonts/map/dvips/vntex", "726a9bb4905b69b75c2d3b4163fdf9a877f4cef314f8c5297a3692ab00d49f6d", []),
("texmf/texmf-dist/fonts/map/dvips/wadalab", "8aee853b893e370b140a78e725f6895bae0503c27676d0f254e08c138aaf8af8", []),
("texmf/texmf-dist/fonts/map/dvips/wasy-type1", "4266a451137627f97108afb1219d87cf451fe2fba90618431f322b1e215c7625", []),
("texmf/texmf-dist/fonts/map/dvips/xcharter", "a875079f0a1f8e1a192e27297f2398b9b53401731efa13e1db05145751d397b0", []),
("texmf/texmf-dist/fonts/map/dvips/xypic", "680a52efc89cbe7e5c9439d4cd9b09d357684977d485a7af49d05f124c3a907e", []),
("texmf/texmf-dist/fonts/map/dvips/yfonts-t1", "1469801e5c52a2999a34dbbaf7a333239b627a4d2c188c40ad997878f7896a59", []),
("texmf/texmf-dist/fonts/map/dvips/yhmath", "9e2f5b8bd39f2ef8220927befa784b5b0a7dd560d2b3d5392d4c8f5041fef065", []),
("texmf/texmf-dist/fonts/map/dvips/zapfchan", "5100c04fda3b3f6f1be0f7256c17577012c757ad0c0bcd2e03a6174fc228617e", []),
("texmf/texmf-dist/fonts/map/dvips/zapfding", "5990647b9d138e2bb5809fbf4dc670070136a1c53b3add00b1acf57a1a5c1a32", []),
("texmf/texmf-dist/fonts/map/fontname", "7079127f215a33c90702dc4d47631ff3edaa252598a266cae6c422deca0569b6", []),
("texmf/texmf-dist/fonts/map/glyphlist", "42b0689d8f6499d7a854f026654e3bb8ac52c5660d66a2d1b49d0dfbad9bde8b", []),
("texmf/texmf-dist/fonts/map/luatex/context", "9bb0e1dcec368bccee1b29354a71c86cc73cd8acfbbd0720c1b69f88114ee77d", []),
("texmf/texmf-dist/fonts/map/pdftex/context", "db1948707dd625512de9c8b8756ca2829edc093ee4aa1a70c129ccd9956ed7ba", []),
("texmf/texmf-dist/fonts/map/pdftex/gentium-tug", "ffa4686db9206ffafbae0524953f5b747f25b383d9ac1a050b73da3652b97455", []),
("texmf/texmf-dist/fonts/map/pdftex/updmap", "ad6d94411d4bd4f39bda925129fd5f45bb31be3249a60a0028b9d65317723e0e", []),
("texmf/texmf-dist/fonts/map/vtex/antiqua", "288815dea2dc13199e64b638d503bd22a1020e5ed8c499441dadeaff14165b0d", []),
("texmf/texmf-dist/fonts/map/vtex/cm-super", "bad47b5d908cbdc78baec5e3451f51b2e024537cf138f70856ab5a5b70a28641", []),
("texmf/texmf-dist/fonts/map/vtex/mnsymbol", "a1fef435ab2d1d1070c61ad32d42adbb8eeb35f6cdb12355ba510781317c2f46", []),
("texmf/texmf-dist/fonts/misc/cjk-gs-integrate", "382223b8da5ca2a82779c904d5e0fab2375a11385af43df870c7b8d7a1edaac2", []),
("texmf/texmf-dist/fonts/misc/cns", "9df1071d0de2a2cfcd21b615f2323c8f564654d06cd01b27a5e2267672085af8", []),
("texmf/texmf-dist/fonts/misc/ptex-fontmaps", "e5c7d309116ca2eee2b239afdd4a574ecfc7ad7c38fd1cc78bee7b2a92b2918b", []),
("texmf/texmf-dist/fonts/misc/xetex/fontmapping/arabxetex", "483879e5a02ba2d284098fd3a33f946a2f6420a322ce5f0c0f0c9237db594319", []),
("texmf/texmf-dist/fonts/misc/xetex/fontmapping/base", "008e6e0a08aff6dfd0447bc02c6c3b7a9479cea895dc90ea75b82eafcb51703f", []),
("texmf/texmf-dist/fonts/misc/xetex/fontmapping/context", "d607f6732db177d0bed4af4b8198e071fc4ea1ccd5c2944e93467cd969e61f24", []),
("texmf/texmf-dist/fonts/misc/xetex/fontmapping/polyglossia", "ed536199420b2788eff049789fafa4e37a8151bf7af688ff9512331f034015b0", []),
("texmf/texmf-dist/fonts/misc/xetex/fontmapping/xecjk", "976145287d604e8ed5ca34d161313b1f71a39fa752c48e573a9dabb4cec24335", []),
("texmf/texmf-dist/fonts/misc/xetex/fontmapping/xepersian", "b9260181eef9aa13cd8f5fff59b0149fb65e442a2d137197aa9c23a6365555ef", []),
("texmf/texmf-dist/fonts/misc/xetex/fontmapping/xetex-devanagari", "ee7d51daa0155dcb9d2b381ac34ee66a61d6c13c8ad708b4efc8e45d6f371967", []),
("texmf/texmf-dist/fonts/misc/xetex/fontmapping/xetex-itrans", "c645a2b35a555c8db30933761be9b81d14bd5d8cea320e7dda62dec5e05cead9", []),
("texmf/texmf-dist/fonts/misc/xetex/fontmapping/xetex-tibetan", "ce8f77bb98b4249cebb130812c21ec0b39cecd994b7d69ec969b3de8b8d8584e", []),
("texmf/texmf-dist/fonts/ofm/public/cm-lgc", "bdbf2469de9977bdacdaf15ac8348c3d5e88e49c8aa03ab239c3e333ffe65924", []),
("texmf/texmf-dist/fonts/ofm/public/dad", "ab737b3362ae74959b27a362546d69215aa016c8801ab4dc26e4549fe6496726", []),
("texmf/texmf-dist/fonts/ofm/public/ethiop", "69e0b409525a0d8dcc8f6a4c834bcd2cb734d0ee67f94b47b5e144b2376f1c1f", []),
("texmf/texmf-dist/fonts/ofm/public/japanese-otf", "31029dd6b6dd7443bd9c4d75c77dbbe15bf3bf9a83a0d0eb3982bafb57682768", []),
("texmf/texmf-dist/fonts/ofm/public/ocherokee", "48df83621c27a4de8d202400c30c9f0e5c20740d2fb22d0a376c584982dabb30", []),