mime-types-data 3.2025.0402 → 3.2025.0520
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +211 -292
- data/Manifest.txt +1 -0
- data/README.md +16 -9
- data/Rakefile +15 -5
- data/data/content_type_mime.db +240 -48
- data/data/ext_mime.db +1611 -1204
- data/data/mime-types.json +1 -1
- data/data/mime.content_type.column +441 -57
- data/data/mime.docs.column +384 -0
- data/data/mime.encoding.column +384 -0
- data/data/mime.flags.column +384 -0
- data/data/mime.friendly.column +384 -0
- data/data/mime.pext.column +384 -0
- data/data/mime.spri.column +0 -0
- data/data/mime.use_instead.column +384 -0
- data/data/mime.xrefs.column +388 -4
- data/lib/mime/types/data.rb +1 -1
- metadata +10 -9
data/data/ext_mime.db
CHANGED
@@ -1,1204 +1,1611 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
|
226
|
-
|
227
|
-
|
228
|
-
|
229
|
-
|
230
|
-
|
231
|
-
|
232
|
-
|
233
|
-
|
234
|
-
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
|
243
|
-
|
244
|
-
|
245
|
-
|
246
|
-
|
247
|
-
|
248
|
-
|
249
|
-
|
250
|
-
|
251
|
-
|
252
|
-
|
253
|
-
|
254
|
-
|
255
|
-
|
256
|
-
|
257
|
-
|
258
|
-
|
259
|
-
|
260
|
-
|
261
|
-
|
262
|
-
|
263
|
-
|
264
|
-
|
265
|
-
|
266
|
-
|
267
|
-
|
268
|
-
|
269
|
-
|
270
|
-
|
271
|
-
|
272
|
-
|
273
|
-
|
274
|
-
|
275
|
-
|
276
|
-
|
277
|
-
|
278
|
-
|
279
|
-
|
280
|
-
|
281
|
-
|
282
|
-
|
283
|
-
|
284
|
-
|
285
|
-
|
286
|
-
|
287
|
-
|
288
|
-
|
289
|
-
|
290
|
-
|
291
|
-
|
292
|
-
|
293
|
-
|
294
|
-
|
295
|
-
|
296
|
-
|
297
|
-
|
298
|
-
|
299
|
-
|
300
|
-
|
301
|
-
|
302
|
-
|
303
|
-
|
304
|
-
|
305
|
-
|
306
|
-
|
307
|
-
|
308
|
-
|
309
|
-
|
310
|
-
|
311
|
-
|
312
|
-
|
313
|
-
|
314
|
-
|
315
|
-
|
316
|
-
|
317
|
-
|
318
|
-
|
319
|
-
|
320
|
-
|
321
|
-
|
322
|
-
|
323
|
-
|
324
|
-
|
325
|
-
|
326
|
-
|
327
|
-
|
328
|
-
|
329
|
-
|
330
|
-
|
331
|
-
|
332
|
-
|
333
|
-
|
334
|
-
|
335
|
-
|
336
|
-
|
337
|
-
|
338
|
-
|
339
|
-
|
340
|
-
|
341
|
-
|
342
|
-
|
343
|
-
|
344
|
-
|
345
|
-
|
346
|
-
|
347
|
-
|
348
|
-
|
349
|
-
|
350
|
-
|
351
|
-
|
352
|
-
|
353
|
-
|
354
|
-
|
355
|
-
|
356
|
-
|
357
|
-
|
358
|
-
|
359
|
-
|
360
|
-
|
361
|
-
|
362
|
-
|
363
|
-
|
364
|
-
|
365
|
-
|
366
|
-
|
367
|
-
|
368
|
-
|
369
|
-
|
370
|
-
|
371
|
-
|
372
|
-
|
373
|
-
|
374
|
-
|
375
|
-
|
376
|
-
|
377
|
-
|
378
|
-
|
379
|
-
|
380
|
-
|
381
|
-
|
382
|
-
|
383
|
-
|
384
|
-
|
385
|
-
|
386
|
-
|
387
|
-
|
388
|
-
|
389
|
-
|
390
|
-
|
391
|
-
|
392
|
-
|
393
|
-
|
394
|
-
|
395
|
-
|
396
|
-
|
397
|
-
|
398
|
-
|
399
|
-
|
400
|
-
|
401
|
-
|
402
|
-
|
403
|
-
|
404
|
-
|
405
|
-
|
406
|
-
|
407
|
-
|
408
|
-
|
409
|
-
|
410
|
-
|
411
|
-
|
412
|
-
|
413
|
-
|
414
|
-
|
415
|
-
|
416
|
-
|
417
|
-
|
418
|
-
|
419
|
-
|
420
|
-
|
421
|
-
|
422
|
-
|
423
|
-
|
424
|
-
|
425
|
-
|
426
|
-
|
427
|
-
|
428
|
-
|
429
|
-
|
430
|
-
|
431
|
-
|
432
|
-
|
433
|
-
|
434
|
-
|
435
|
-
|
436
|
-
|
437
|
-
|
438
|
-
|
439
|
-
|
440
|
-
|
441
|
-
|
442
|
-
|
443
|
-
|
444
|
-
|
445
|
-
|
446
|
-
|
447
|
-
|
448
|
-
|
449
|
-
|
450
|
-
|
451
|
-
|
452
|
-
|
453
|
-
|
454
|
-
|
455
|
-
|
456
|
-
|
457
|
-
|
458
|
-
|
459
|
-
|
460
|
-
|
461
|
-
|
462
|
-
|
463
|
-
|
464
|
-
|
465
|
-
|
466
|
-
|
467
|
-
|
468
|
-
|
469
|
-
|
470
|
-
|
471
|
-
|
472
|
-
|
473
|
-
|
474
|
-
|
475
|
-
|
476
|
-
|
477
|
-
|
478
|
-
|
479
|
-
|
480
|
-
|
481
|
-
|
482
|
-
|
483
|
-
|
484
|
-
|
485
|
-
|
486
|
-
|
487
|
-
|
488
|
-
|
489
|
-
|
490
|
-
|
491
|
-
|
492
|
-
|
493
|
-
|
494
|
-
|
495
|
-
|
496
|
-
|
497
|
-
|
498
|
-
|
499
|
-
|
500
|
-
|
501
|
-
|
502
|
-
|
503
|
-
|
504
|
-
|
505
|
-
|
506
|
-
|
507
|
-
|
508
|
-
|
509
|
-
|
510
|
-
|
511
|
-
|
512
|
-
|
513
|
-
|
514
|
-
|
515
|
-
|
516
|
-
|
517
|
-
|
518
|
-
|
519
|
-
|
520
|
-
|
521
|
-
|
522
|
-
|
523
|
-
|
524
|
-
|
525
|
-
|
526
|
-
|
527
|
-
|
528
|
-
|
529
|
-
|
530
|
-
|
531
|
-
|
532
|
-
|
533
|
-
|
534
|
-
|
535
|
-
|
536
|
-
|
537
|
-
|
538
|
-
|
539
|
-
|
540
|
-
|
541
|
-
|
542
|
-
|
543
|
-
|
544
|
-
|
545
|
-
|
546
|
-
|
547
|
-
|
548
|
-
|
549
|
-
|
550
|
-
|
551
|
-
|
552
|
-
|
553
|
-
|
554
|
-
|
555
|
-
|
556
|
-
|
557
|
-
|
558
|
-
|
559
|
-
|
560
|
-
|
561
|
-
|
562
|
-
|
563
|
-
|
564
|
-
|
565
|
-
|
566
|
-
|
567
|
-
|
568
|
-
|
569
|
-
|
570
|
-
|
571
|
-
|
572
|
-
|
573
|
-
|
574
|
-
|
575
|
-
|
576
|
-
|
577
|
-
|
578
|
-
|
579
|
-
|
580
|
-
|
581
|
-
|
582
|
-
|
583
|
-
|
584
|
-
|
585
|
-
|
586
|
-
|
587
|
-
|
588
|
-
|
589
|
-
|
590
|
-
|
591
|
-
|
592
|
-
|
593
|
-
|
594
|
-
|
595
|
-
|
596
|
-
|
597
|
-
|
598
|
-
|
599
|
-
|
600
|
-
|
601
|
-
|
602
|
-
|
603
|
-
|
604
|
-
|
605
|
-
|
606
|
-
|
607
|
-
|
608
|
-
|
609
|
-
|
610
|
-
|
611
|
-
|
612
|
-
|
613
|
-
|
614
|
-
|
615
|
-
|
616
|
-
|
617
|
-
|
618
|
-
|
619
|
-
|
620
|
-
|
621
|
-
|
622
|
-
|
623
|
-
|
624
|
-
|
625
|
-
|
626
|
-
|
627
|
-
|
628
|
-
|
629
|
-
|
630
|
-
|
631
|
-
|
632
|
-
|
633
|
-
|
634
|
-
|
635
|
-
|
636
|
-
|
637
|
-
|
638
|
-
|
639
|
-
|
640
|
-
|
641
|
-
|
642
|
-
|
643
|
-
|
644
|
-
|
645
|
-
|
646
|
-
|
647
|
-
|
648
|
-
|
649
|
-
|
650
|
-
|
651
|
-
|
652
|
-
|
653
|
-
|
654
|
-
|
655
|
-
|
656
|
-
|
657
|
-
|
658
|
-
|
659
|
-
|
660
|
-
|
661
|
-
|
662
|
-
|
663
|
-
|
664
|
-
|
665
|
-
|
666
|
-
|
667
|
-
|
668
|
-
|
669
|
-
|
670
|
-
|
671
|
-
|
672
|
-
|
673
|
-
|
674
|
-
|
675
|
-
|
676
|
-
|
677
|
-
|
678
|
-
|
679
|
-
|
680
|
-
|
681
|
-
|
682
|
-
|
683
|
-
|
684
|
-
|
685
|
-
|
686
|
-
|
687
|
-
|
688
|
-
|
689
|
-
|
690
|
-
|
691
|
-
|
692
|
-
|
693
|
-
|
694
|
-
|
695
|
-
|
696
|
-
|
697
|
-
|
698
|
-
|
699
|
-
|
700
|
-
|
701
|
-
|
702
|
-
|
703
|
-
|
704
|
-
|
705
|
-
|
706
|
-
|
707
|
-
|
708
|
-
|
709
|
-
|
710
|
-
|
711
|
-
|
712
|
-
|
713
|
-
|
714
|
-
|
715
|
-
|
716
|
-
|
717
|
-
|
718
|
-
|
719
|
-
|
720
|
-
|
721
|
-
|
722
|
-
|
723
|
-
|
724
|
-
|
725
|
-
|
726
|
-
|
727
|
-
|
728
|
-
|
729
|
-
|
730
|
-
|
731
|
-
|
732
|
-
|
733
|
-
|
734
|
-
|
735
|
-
|
736
|
-
|
737
|
-
|
738
|
-
|
739
|
-
|
740
|
-
|
741
|
-
|
742
|
-
|
743
|
-
|
744
|
-
|
745
|
-
|
746
|
-
|
747
|
-
|
748
|
-
|
749
|
-
|
750
|
-
|
751
|
-
|
752
|
-
|
753
|
-
|
754
|
-
|
755
|
-
|
756
|
-
|
757
|
-
|
758
|
-
|
759
|
-
|
760
|
-
|
761
|
-
|
762
|
-
|
763
|
-
|
764
|
-
|
765
|
-
|
766
|
-
|
767
|
-
|
768
|
-
|
769
|
-
|
770
|
-
|
771
|
-
|
772
|
-
|
773
|
-
|
774
|
-
|
775
|
-
|
776
|
-
|
777
|
-
|
778
|
-
|
779
|
-
|
780
|
-
|
781
|
-
|
782
|
-
|
783
|
-
|
784
|
-
|
785
|
-
|
786
|
-
|
787
|
-
|
788
|
-
|
789
|
-
|
790
|
-
|
791
|
-
|
792
|
-
|
793
|
-
|
794
|
-
|
795
|
-
|
796
|
-
|
797
|
-
|
798
|
-
|
799
|
-
|
800
|
-
|
801
|
-
|
802
|
-
|
803
|
-
|
804
|
-
|
805
|
-
|
806
|
-
|
807
|
-
|
808
|
-
|
809
|
-
|
810
|
-
|
811
|
-
|
812
|
-
|
813
|
-
|
814
|
-
|
815
|
-
|
816
|
-
|
817
|
-
|
818
|
-
|
819
|
-
|
820
|
-
|
821
|
-
|
822
|
-
|
823
|
-
|
824
|
-
|
825
|
-
|
826
|
-
|
827
|
-
|
828
|
-
|
829
|
-
|
830
|
-
|
831
|
-
|
832
|
-
|
833
|
-
|
834
|
-
|
835
|
-
|
836
|
-
|
837
|
-
|
838
|
-
|
839
|
-
|
840
|
-
|
841
|
-
|
842
|
-
|
843
|
-
|
844
|
-
|
845
|
-
|
846
|
-
|
847
|
-
|
848
|
-
|
849
|
-
|
850
|
-
|
851
|
-
|
852
|
-
|
853
|
-
|
854
|
-
|
855
|
-
|
856
|
-
|
857
|
-
|
858
|
-
|
859
|
-
|
860
|
-
|
861
|
-
|
862
|
-
|
863
|
-
|
864
|
-
|
865
|
-
|
866
|
-
|
867
|
-
|
868
|
-
|
869
|
-
|
870
|
-
|
871
|
-
|
872
|
-
|
873
|
-
|
874
|
-
|
875
|
-
|
876
|
-
|
877
|
-
|
878
|
-
|
879
|
-
|
880
|
-
|
881
|
-
|
882
|
-
|
883
|
-
|
884
|
-
|
885
|
-
|
886
|
-
|
887
|
-
|
888
|
-
|
889
|
-
|
890
|
-
|
891
|
-
|
892
|
-
|
893
|
-
|
894
|
-
|
895
|
-
|
896
|
-
|
897
|
-
|
898
|
-
|
899
|
-
|
900
|
-
|
901
|
-
|
902
|
-
|
903
|
-
|
904
|
-
|
905
|
-
|
906
|
-
|
907
|
-
|
908
|
-
|
909
|
-
|
910
|
-
|
911
|
-
|
912
|
-
|
913
|
-
|
914
|
-
|
915
|
-
|
916
|
-
|
917
|
-
|
918
|
-
|
919
|
-
|
920
|
-
|
921
|
-
|
922
|
-
|
923
|
-
|
924
|
-
|
925
|
-
|
926
|
-
|
927
|
-
|
928
|
-
|
929
|
-
|
930
|
-
|
931
|
-
|
932
|
-
|
933
|
-
|
934
|
-
|
935
|
-
|
936
|
-
|
937
|
-
|
938
|
-
|
939
|
-
|
940
|
-
|
941
|
-
|
942
|
-
|
943
|
-
|
944
|
-
|
945
|
-
|
946
|
-
|
947
|
-
|
948
|
-
|
949
|
-
|
950
|
-
|
951
|
-
|
952
|
-
|
953
|
-
|
954
|
-
|
955
|
-
|
956
|
-
|
957
|
-
|
958
|
-
|
959
|
-
|
960
|
-
|
961
|
-
|
962
|
-
|
963
|
-
|
964
|
-
|
965
|
-
|
966
|
-
|
967
|
-
|
968
|
-
|
969
|
-
|
970
|
-
|
971
|
-
|
972
|
-
|
973
|
-
|
974
|
-
|
975
|
-
|
976
|
-
|
977
|
-
|
978
|
-
|
979
|
-
|
980
|
-
|
981
|
-
|
982
|
-
|
983
|
-
|
984
|
-
|
985
|
-
|
986
|
-
|
987
|
-
|
988
|
-
|
989
|
-
|
990
|
-
|
991
|
-
|
992
|
-
|
993
|
-
|
994
|
-
|
995
|
-
|
996
|
-
|
997
|
-
|
998
|
-
|
999
|
-
|
1000
|
-
|
1001
|
-
|
1002
|
-
|
1003
|
-
|
1004
|
-
|
1005
|
-
|
1006
|
-
|
1007
|
-
|
1008
|
-
|
1009
|
-
|
1010
|
-
|
1011
|
-
|
1012
|
-
|
1013
|
-
|
1014
|
-
|
1015
|
-
|
1016
|
-
|
1017
|
-
|
1018
|
-
|
1019
|
-
|
1020
|
-
|
1021
|
-
|
1022
|
-
|
1023
|
-
|
1024
|
-
|
1025
|
-
|
1026
|
-
|
1027
|
-
|
1028
|
-
|
1029
|
-
|
1030
|
-
|
1031
|
-
|
1032
|
-
|
1033
|
-
|
1034
|
-
|
1035
|
-
|
1036
|
-
|
1037
|
-
|
1038
|
-
|
1039
|
-
|
1040
|
-
|
1041
|
-
|
1042
|
-
|
1043
|
-
|
1044
|
-
|
1045
|
-
|
1046
|
-
|
1047
|
-
|
1048
|
-
|
1049
|
-
|
1050
|
-
|
1051
|
-
|
1052
|
-
|
1053
|
-
|
1054
|
-
|
1055
|
-
|
1056
|
-
|
1057
|
-
|
1058
|
-
|
1059
|
-
|
1060
|
-
|
1061
|
-
|
1062
|
-
|
1063
|
-
|
1064
|
-
|
1065
|
-
|
1066
|
-
|
1067
|
-
|
1068
|
-
|
1069
|
-
|
1070
|
-
|
1071
|
-
|
1072
|
-
|
1073
|
-
|
1074
|
-
|
1075
|
-
|
1076
|
-
|
1077
|
-
|
1078
|
-
|
1079
|
-
|
1080
|
-
|
1081
|
-
|
1082
|
-
|
1083
|
-
|
1084
|
-
|
1085
|
-
|
1086
|
-
|
1087
|
-
|
1088
|
-
|
1089
|
-
|
1090
|
-
|
1091
|
-
|
1092
|
-
|
1093
|
-
|
1094
|
-
|
1095
|
-
|
1096
|
-
|
1097
|
-
|
1098
|
-
|
1099
|
-
|
1100
|
-
|
1101
|
-
|
1102
|
-
|
1103
|
-
|
1104
|
-
|
1105
|
-
|
1106
|
-
|
1107
|
-
|
1108
|
-
|
1109
|
-
|
1110
|
-
|
1111
|
-
|
1112
|
-
|
1113
|
-
|
1114
|
-
|
1115
|
-
|
1116
|
-
|
1117
|
-
|
1118
|
-
|
1119
|
-
|
1120
|
-
|
1121
|
-
|
1122
|
-
|
1123
|
-
|
1124
|
-
|
1125
|
-
|
1126
|
-
|
1127
|
-
|
1128
|
-
|
1129
|
-
|
1130
|
-
|
1131
|
-
|
1132
|
-
|
1133
|
-
|
1134
|
-
|
1135
|
-
|
1136
|
-
|
1137
|
-
|
1138
|
-
|
1139
|
-
|
1140
|
-
|
1141
|
-
|
1142
|
-
|
1143
|
-
|
1144
|
-
|
1145
|
-
|
1146
|
-
|
1147
|
-
|
1148
|
-
|
1149
|
-
|
1150
|
-
|
1151
|
-
|
1152
|
-
|
1153
|
-
|
1154
|
-
|
1155
|
-
|
1156
|
-
|
1157
|
-
|
1158
|
-
|
1159
|
-
|
1160
|
-
|
1161
|
-
|
1162
|
-
|
1163
|
-
|
1164
|
-
|
1165
|
-
|
1166
|
-
|
1167
|
-
|
1168
|
-
|
1169
|
-
|
1170
|
-
|
1171
|
-
|
1172
|
-
|
1173
|
-
|
1174
|
-
|
1175
|
-
|
1176
|
-
|
1177
|
-
|
1178
|
-
|
1179
|
-
|
1180
|
-
|
1181
|
-
|
1182
|
-
|
1183
|
-
|
1184
|
-
|
1185
|
-
|
1186
|
-
|
1187
|
-
|
1188
|
-
|
1189
|
-
|
1190
|
-
|
1191
|
-
|
1192
|
-
|
1193
|
-
|
1194
|
-
|
1195
|
-
|
1196
|
-
|
1197
|
-
|
1198
|
-
|
1199
|
-
|
1200
|
-
|
1201
|
-
|
1202
|
-
|
1203
|
-
|
1204
|
-
|
1
|
+
.htaccess text/plain quoted-printable
|
2
|
+
123 application/vnd.lotus-1-2-3 base64
|
3
|
+
3dml text/vnd.in3d.3dml quoted-printable
|
4
|
+
3ds image/x-3ds base64
|
5
|
+
3fr image/x-hasselblad-3fr base64
|
6
|
+
3g2 video/3gpp2 base64
|
7
|
+
3gp video/3gpp base64
|
8
|
+
3gpp video/3gpp base64
|
9
|
+
3gpp2 video/3gpp2 base64
|
10
|
+
3mf application/vnd.ms-package.3dmanufacturing-3dmodel+xml base64
|
11
|
+
4th text/x-forth quoted-printable
|
12
|
+
7z application/x-7z-compressed base64
|
13
|
+
@dir application/x-director base64
|
14
|
+
@dxr application/x-director base64
|
15
|
+
a application/x-archive base64
|
16
|
+
aab application/x-authorware-bin base64
|
17
|
+
aac audio/aac base64
|
18
|
+
aam application/x-authorware-map base64
|
19
|
+
aart text/plain quoted-printable
|
20
|
+
aas application/x-authorware-seg base64
|
21
|
+
abs-linkmap text/plain quoted-printable
|
22
|
+
abs-menulinks text/plain quoted-printable
|
23
|
+
abw application/x-abiword base64
|
24
|
+
ac text/plain quoted-printable
|
25
|
+
ac3 audio/ac3 base64
|
26
|
+
acc application/vnd.americandynamics.acc base64
|
27
|
+
accdb application/x-msaccess base64
|
28
|
+
ace application/x-ace-compressed base64
|
29
|
+
acfm application/x-font-adobe-metric base64
|
30
|
+
acu application/vnd.acucobol base64
|
31
|
+
acutc application/vnd.acucorp 7bit
|
32
|
+
ad text/x-asciidoc quoted-printable
|
33
|
+
ad.txt text/x-asciidoc quoted-printable
|
34
|
+
ada text/x-ada quoted-printable
|
35
|
+
adb text/x-ada quoted-printable
|
36
|
+
adf application/x-amiga-disk-format base64
|
37
|
+
adoc text/x-asciidoc quoted-printable
|
38
|
+
adoc.txt text/x-asciidoc quoted-printable
|
39
|
+
adp audio/adpcm base64
|
40
|
+
ads text/x-ada quoted-printable
|
41
|
+
aep application/vnd.audiograph base64
|
42
|
+
aet application/vnd.adobe.aftereffects.template base64
|
43
|
+
afm application/x-font-type1 base64
|
44
|
+
afp application/vnd.ibm.modcap base64
|
45
|
+
ahead application/vnd.ahead.space base64
|
46
|
+
ai application/postscript 8bit
|
47
|
+
aif audio/x-aiff base64
|
48
|
+
aifc audio/x-aiff base64
|
49
|
+
aiff audio/x-aiff base64
|
50
|
+
air application/vnd.adobe.air-application-installer-package+zip base64
|
51
|
+
ait application/vnd.dvb.ait base64
|
52
|
+
aj text/x-aspectj quoted-printable
|
53
|
+
al text/x-perl quoted-printable
|
54
|
+
am text/plain quoted-printable
|
55
|
+
amf application/x-amf base64
|
56
|
+
amfm application/x-font-adobe-metric base64
|
57
|
+
ami application/vnd.amiga.ami base64
|
58
|
+
amr audio/AMR base64
|
59
|
+
ani application/octet-stream base64
|
60
|
+
anpa text/vnd.iptc.anpa quoted-printable
|
61
|
+
apk application/vnd.android.package-archive base64
|
62
|
+
appcache text/cache-manifest quoted-printable
|
63
|
+
applescript text/x-applescript quoted-printable
|
64
|
+
application application/x-ms-application base64
|
65
|
+
apr application/vnd.lotus-approach base64
|
66
|
+
apt text/plain quoted-printable
|
67
|
+
ar application/x-archive base64
|
68
|
+
arc application/x-freearc base64
|
69
|
+
arj application/x-arj base64
|
70
|
+
arw image/x-raw-sony base64
|
71
|
+
as text/x-actionscript quoted-printable
|
72
|
+
asc text/plain quoted-printable
|
73
|
+
asciidoc text/x-asciidoc quoted-printable
|
74
|
+
asf application/vnd.ms-asf base64
|
75
|
+
asice application/vnd.etsi.asic-e+zip base64
|
76
|
+
asics application/vnd.etsi.asic-s+zip base64
|
77
|
+
asm text/x-asm quoted-printable
|
78
|
+
asnd audio/vnd.adobe.soundbooth base64
|
79
|
+
aso application/vnd.accpac.simply.aso base64
|
80
|
+
asp text/asp quoted-printable
|
81
|
+
aspx text/aspdotnet quoted-printable
|
82
|
+
asx video/x-ms-asf base64
|
83
|
+
atc application/vnd.acucorp 7bit
|
84
|
+
atom application/atom+xml 8bit
|
85
|
+
atomcat application/atomcat+xml 8bit
|
86
|
+
atomsvc application/atomsvc+xml 8bit
|
87
|
+
atx application/vnd.antix.game-component base64
|
88
|
+
au audio/basic base64
|
89
|
+
avi video/x-msvideo base64
|
90
|
+
avif image/avif base64
|
91
|
+
aw application/applixware base64
|
92
|
+
awb audio/AMR-WB base64
|
93
|
+
awk text/x-awk quoted-printable
|
94
|
+
axx application/x-axcrypt base64
|
95
|
+
azf application/vnd.airzip.filesecure.azf base64
|
96
|
+
azs application/vnd.airzip.filesecure.azs base64
|
97
|
+
azw application/vnd.amazon.ebook base64
|
98
|
+
bas text/x-basic quoted-printable
|
99
|
+
bash application/x-sh 8bit
|
100
|
+
bat application/x-msdownload base64
|
101
|
+
bau application/vnd.openofficeorg.autotext base64
|
102
|
+
bay image/x-raw-casio base64
|
103
|
+
bck application/x-VMSBACKUP base64
|
104
|
+
bcpio application/x-bcpio base64
|
105
|
+
bdf application/x-font-bdf base64
|
106
|
+
bdm video/MP2T base64
|
107
|
+
bed application/vnd.realvnc.bed base64
|
108
|
+
bh2 application/vnd.fujitsu.oasysprs base64
|
109
|
+
bib application/x-bibtex-text-file base64
|
110
|
+
bibtex application/x-bibtex-text-file base64
|
111
|
+
bin application/octet-stream base64
|
112
|
+
bkm application/vnd.nervana base64
|
113
|
+
blb application/x-blorb base64
|
114
|
+
bleep application/x-bleeper base64
|
115
|
+
blorb application/x-blorb base64
|
116
|
+
bmi application/vnd.bmi base64
|
117
|
+
bmp image/bmp base64
|
118
|
+
book application/vnd.framemaker base64
|
119
|
+
box application/vnd.previewsystems.box base64
|
120
|
+
boz application/x-bzip2 base64
|
121
|
+
bpd application/vnd.hbci base64
|
122
|
+
bpg image/x-bpg base64
|
123
|
+
bpk application/octet-stream base64
|
124
|
+
bpm application/bizagi-modeler base64
|
125
|
+
br application/x-brotli base64
|
126
|
+
brotli application/x-brotli base64
|
127
|
+
bsh text/plain quoted-printable
|
128
|
+
btif image/prs.btif base64
|
129
|
+
bup application/x-dvd-ifo base64
|
130
|
+
bz application/x-bzip base64
|
131
|
+
bz2 application/x-bzip2 base64
|
132
|
+
c text/plain quoted-printable
|
133
|
+
c++ text/x-c++src quoted-printable
|
134
|
+
c11amc application/vnd.cluetrust.cartomobile-config base64
|
135
|
+
c11amz application/vnd.cluetrust.cartomobile-config-pkg base64
|
136
|
+
c4d application/vnd.clonk.c4group base64
|
137
|
+
c4f application/vnd.clonk.c4group base64
|
138
|
+
c4g application/vnd.clonk.c4group base64
|
139
|
+
c4p application/vnd.clonk.c4group base64
|
140
|
+
c4u application/vnd.clonk.c4group base64
|
141
|
+
cab application/vnd.ms-cab-compressed base64
|
142
|
+
caf audio/x-caf base64
|
143
|
+
cap application/vnd.tcpdump.pcap base64
|
144
|
+
car application/vnd.curl.car base64
|
145
|
+
cat application/vnd.ms-pki.seccat base64
|
146
|
+
cb7 application/x-cbr base64
|
147
|
+
cba application/x-cbr base64
|
148
|
+
cbl text/x-cobol quoted-printable
|
149
|
+
cbor application/cbor base64
|
150
|
+
cbr application/x-cbr base64
|
151
|
+
cbt application/x-cbr base64
|
152
|
+
cbz application/x-cbr base64
|
153
|
+
cc text/plain quoted-printable
|
154
|
+
ccc text/vnd.net2phone.commcenter.command quoted-printable
|
155
|
+
cct application/x-director base64
|
156
|
+
ccxml application/ccxml+xml base64
|
157
|
+
cda application/x-cdf base64
|
158
|
+
cdbcmsg application/vnd.contact.cmsg base64
|
159
|
+
cdf application/x-netcdf base64
|
160
|
+
cdkey application/vnd.mediastation.cdkey base64
|
161
|
+
cdmia application/cdmi-capability base64
|
162
|
+
cdmic application/cdmi-container base64
|
163
|
+
cdmid application/cdmi-domain base64
|
164
|
+
cdmio application/cdmi-object base64
|
165
|
+
cdmiq application/cdmi-queue base64
|
166
|
+
cdr application/coreldraw base64
|
167
|
+
cdx chemical/x-cdx base64
|
168
|
+
cdxml application/vnd.chemdraw+xml base64
|
169
|
+
cdy application/vnd.cinderella base64
|
170
|
+
cel image/vnd.dgn base64
|
171
|
+
cer application/pkix-cert base64
|
172
|
+
cfc text/x-coldfusion quoted-printable
|
173
|
+
cfg text/x-config quoted-printable
|
174
|
+
cfm text/x-coldfusion quoted-printable
|
175
|
+
cfml text/x-coldfusion quoted-printable
|
176
|
+
cfs application/x-cfs-compressed base64
|
177
|
+
cgi text/x-cgi quoted-printable
|
178
|
+
cgm image/cgm base64
|
179
|
+
chat application/x-chat base64
|
180
|
+
chm application/vnd.ms-htmlhelp base64
|
181
|
+
chrt application/vnd.kde.kchart base64
|
182
|
+
cif chemical/x-cif base64
|
183
|
+
cii application/vnd.anser-web-certificate-issue-initiation base64
|
184
|
+
cil application/vnd.ms-artgalry base64
|
185
|
+
cjs text/javascript quoted-printable
|
186
|
+
cl text/x-common-lisp quoted-printable
|
187
|
+
cla application/vnd.claymore base64
|
188
|
+
class application/octet-stream base64
|
189
|
+
classpath text/plain quoted-printable
|
190
|
+
clj text/x-clojure quoted-printable
|
191
|
+
clkk application/vnd.crick.clicker.keyboard base64
|
192
|
+
clkp application/vnd.crick.clicker.palette base64
|
193
|
+
clkt application/vnd.crick.clicker.template base64
|
194
|
+
clkw application/vnd.crick.clicker.wordbank base64
|
195
|
+
clkx application/vnd.crick.clicker base64
|
196
|
+
clp application/x-msclip base64
|
197
|
+
clpi video/MP2T base64
|
198
|
+
cls text/x-vbasic quoted-printable
|
199
|
+
cmc application/vnd.cosmocaller base64
|
200
|
+
cmd application/x-msdownload base64
|
201
|
+
cmdf chemical/x-cmdf base64
|
202
|
+
cml chemical/x-cml base64
|
203
|
+
cmp application/vnd.yellowriver-custom-menu base64
|
204
|
+
cmx image/x-cmx base64
|
205
|
+
cnd text/plain quoted-printable
|
206
|
+
cob text/x-cobol quoted-printable
|
207
|
+
cod application/vnd.rim.cod base64
|
208
|
+
coffee text/x-coffeescript quoted-printable
|
209
|
+
com application/x-msdownload base64
|
210
|
+
conf text/plain quoted-printable
|
211
|
+
config text/x-config quoted-printable
|
212
|
+
cpi video/MP2T base64
|
213
|
+
cpio application/x-cpio base64
|
214
|
+
cpp text/plain quoted-printable
|
215
|
+
cpt application/x-mac-compactpro base64
|
216
|
+
cr2 image/x-canon-cr2 base64
|
217
|
+
cr3 image/x-canon-cr3 base64
|
218
|
+
crd application/x-mscardfile base64
|
219
|
+
crl application/pkix-crl base64
|
220
|
+
crt application/x-x509-ca-cert base64
|
221
|
+
crw image/x-canon-crw base64
|
222
|
+
crx application/x-chrome-extension base64
|
223
|
+
cryptonote application/vnd.rig.cryptonote base64
|
224
|
+
cs text/x-csharp quoted-printable
|
225
|
+
csh application/x-csh 8bit
|
226
|
+
csm application/x-cu-seeme base64
|
227
|
+
csml chemical/x-csml base64
|
228
|
+
csp application/vnd.commonspace base64
|
229
|
+
css text/css 8bit
|
230
|
+
cst application/x-director base64
|
231
|
+
csv text/csv 8bit
|
232
|
+
cu application/x-cu-seeme base64
|
233
|
+
curl application/vnd.curl base64
|
234
|
+
cw application/prs.cww base64
|
235
|
+
cwiki text/plain quoted-printable
|
236
|
+
cwk application/x-appleworks base64
|
237
|
+
cww application/prs.cww base64
|
238
|
+
cxt application/x-director base64
|
239
|
+
cxx text/x-c quoted-printable
|
240
|
+
d text/x-d quoted-printable
|
241
|
+
dae model/vnd.collada+xml base64
|
242
|
+
daf application/vnd.Mobius.DAF base64
|
243
|
+
dart application/vnd.dart base64
|
244
|
+
dat text/plain quoted-printable
|
245
|
+
data text/plain quoted-printable
|
246
|
+
dataless application/vnd.fdsn.seed base64
|
247
|
+
davmount application/davmount+xml base64
|
248
|
+
dbase application/x-dbf base64
|
249
|
+
dbase3 application/x-dbf base64
|
250
|
+
dbf application/x-dbf base64
|
251
|
+
dbk application/docbook+xml base64
|
252
|
+
dcl text/plain quoted-printable
|
253
|
+
dcm application/dicom base64
|
254
|
+
dcr application/x-director base64
|
255
|
+
dcs image/x-raw-kodak base64
|
256
|
+
dcurl text/vnd.curl.dcurl quoted-printable
|
257
|
+
dcx image/vnd.zbrush.dcx base64
|
258
|
+
dd2 application/vnd.oma.dd2+xml base64
|
259
|
+
ddd application/vnd.fujixerox.ddd base64
|
260
|
+
deb application/x-debian-package base64
|
261
|
+
def text/plain quoted-printable
|
262
|
+
deploy application/octet-stream base64
|
263
|
+
der application/x-x509-ca-cert base64
|
264
|
+
dex application/x-dex base64
|
265
|
+
dfac application/vnd.dreamfactory base64
|
266
|
+
dgc application/x-dgc-compressed base64
|
267
|
+
dgn image/x-vnd.dgn base64
|
268
|
+
dgnlib image/vnd.dgn base64
|
269
|
+
dib image/bmp base64
|
270
|
+
dic text/x-c quoted-printable
|
271
|
+
dif application/dif+xml base64
|
272
|
+
diff text/x-diff quoted-printable
|
273
|
+
dir application/x-director base64
|
274
|
+
dis application/vnd.Mobius.DIS base64
|
275
|
+
dist application/octet-stream base64
|
276
|
+
distz application/octet-stream base64
|
277
|
+
djv image/vnd.djvu base64
|
278
|
+
djvu image/vnd.djvu base64
|
279
|
+
dl video/x-dl base64
|
280
|
+
dll application/octet-stream base64
|
281
|
+
dmg application/x-apple-diskimage base64
|
282
|
+
dmp application/vnd.tcpdump.pcap base64
|
283
|
+
dms application/octet-stream base64
|
284
|
+
dna application/vnd.dna base64
|
285
|
+
dng image/x-adobe-dng base64
|
286
|
+
do application/x-stata-do base64
|
287
|
+
doc text/plain quoted-printable
|
288
|
+
docm application/vnd.ms-word.document.macroEnabled.12 base64
|
289
|
+
docx application/vnd.openxmlformats-officedocument.wordprocessingml.document base64
|
290
|
+
dot application/msword base64
|
291
|
+
dotm application/vnd.ms-word.template.macroEnabled.12 base64
|
292
|
+
dotx application/vnd.openxmlformats-officedocument.wordprocessingml.template base64
|
293
|
+
dp application/vnd.osgi.dp base64
|
294
|
+
dpg application/vnd.dpgraph base64
|
295
|
+
dpr text/x-pascal quoted-printable
|
296
|
+
dpx image/x-dpx base64
|
297
|
+
dra audio/vnd.dra base64
|
298
|
+
drc video/x-dirac base64
|
299
|
+
drf image/x-raw-kodak base64
|
300
|
+
dsc text/prs.lines.tag quoted-printable
|
301
|
+
dsp text/plain quoted-printable
|
302
|
+
dssc application/dssc+der base64
|
303
|
+
dsw text/plain quoted-printable
|
304
|
+
dta application/x-stata-dta base64
|
305
|
+
dtb application/x-dtbook+xml base64
|
306
|
+
dtd text/xml 8bit
|
307
|
+
dts audio/vnd.dts base64
|
308
|
+
dtshd audio/vnd.dts.hd base64
|
309
|
+
dump application/octet-stream base64
|
310
|
+
dv video/DV base64
|
311
|
+
dvb video/vnd.dvb.file base64
|
312
|
+
dvi application/x-dvi base64
|
313
|
+
dwf model/vnd.dwf base64
|
314
|
+
dwfx model/vnd.dwfx+xps base64
|
315
|
+
dwg image/vnd.dwg base64
|
316
|
+
dxb image/vnd.dxb base64
|
317
|
+
dxf image/vnd.dxf base64
|
318
|
+
dxp application/vnd.spotfire.dxp base64
|
319
|
+
dxr application/x-director base64
|
320
|
+
dylib application/octet-stream base64
|
321
|
+
e text/x-eiffel quoted-printable
|
322
|
+
e57 model/e57 base64
|
323
|
+
ear application/x-tika-java-enterprise-archive base64
|
324
|
+
ecelp4800 audio/vnd.nuera.ecelp4800 base64
|
325
|
+
ecelp7470 audio/vnd.nuera.ecelp7470 base64
|
326
|
+
ecelp9600 audio/vnd.nuera.ecelp9600 base64
|
327
|
+
ecma application/ecmascript base64
|
328
|
+
edm application/vnd.novadigm.EDM base64
|
329
|
+
edx application/vnd.novadigm.EDX base64
|
330
|
+
efif application/vnd.picsel base64
|
331
|
+
egrm text/plain quoted-printable
|
332
|
+
ei6 application/vnd.pg.osasli base64
|
333
|
+
el text/x-emacs-lisp quoted-printable
|
334
|
+
elc application/octet-stream base64
|
335
|
+
emf image/emf base64
|
336
|
+
eml message/rfc822 8bit
|
337
|
+
emlx message/x-emlx base64
|
338
|
+
emm application/vnd.ibm.electronic-media base64
|
339
|
+
emma application/emma+xml base64
|
340
|
+
emz application/x-msmetafile base64
|
341
|
+
enr application/x-endnote-refer base64
|
342
|
+
ens application/x-endnote-style base64
|
343
|
+
ent text/plain quoted-printable
|
344
|
+
entity application/vnd.nervana base64
|
345
|
+
enw application/x-endnote-refer base64
|
346
|
+
eol audio/vnd.digital-winds 7bit
|
347
|
+
eot application/vnd.ms-fontobject base64
|
348
|
+
eps application/postscript 8bit
|
349
|
+
epsf application/postscript 8bit
|
350
|
+
epsi application/postscript 8bit
|
351
|
+
epub application/epub+zip base64
|
352
|
+
erf image/x-epson-erf base64
|
353
|
+
erl text/x-erlang quoted-printable
|
354
|
+
es application/ecmascript base64
|
355
|
+
es3 application/vnd.eszigno3+xml base64
|
356
|
+
esa application/vnd.osgi.subsystem base64
|
357
|
+
esf application/vnd.epson.esf base64
|
358
|
+
et3 application/vnd.eszigno3+xml base64
|
359
|
+
etx text/x-setext quoted-printable
|
360
|
+
eva application/x-eva base64
|
361
|
+
evc audio/EVRC base64
|
362
|
+
evy application/x-envoy base64
|
363
|
+
exe application/x-msdownload base64
|
364
|
+
exi application/exi base64
|
365
|
+
exp text/x-expect quoted-printable
|
366
|
+
exr image/aces base64
|
367
|
+
ext application/vnd.novadigm.EXT base64
|
368
|
+
ez application/andrew-inset base64
|
369
|
+
ez2 application/vnd.ezpix-album base64
|
370
|
+
ez3 application/vnd.ezpix-package base64
|
371
|
+
f text/x-fortran quoted-printable
|
372
|
+
f4a audio/mp4 base64
|
373
|
+
f4b audio/mp4 base64
|
374
|
+
f4p video/mp4 base64
|
375
|
+
f4v video/mp4 base64
|
376
|
+
f77 text/x-fortran quoted-printable
|
377
|
+
f90 text/x-fortran quoted-printable
|
378
|
+
fb application/vnd.framemaker base64
|
379
|
+
fb2 application/x-fictionbook+xml base64
|
380
|
+
fbdoc application/vnd.framemaker base64
|
381
|
+
fbs image/vnd.fastbidsheet base64
|
382
|
+
fcdt application/vnd.adobe.formscentral.fcdt base64
|
383
|
+
fcs application/vnd.isac.fcs base64
|
384
|
+
fdf application/vnd.fdf base64
|
385
|
+
fe_launch application/vnd.denovo.fcselayout-link base64
|
386
|
+
fff image/x-raw-imacon base64
|
387
|
+
fg5 application/vnd.fujitsu.oasysgp base64
|
388
|
+
fgd application/x-director base64
|
389
|
+
fh image/x-freehand base64
|
390
|
+
fh10 image/x-freehand base64
|
391
|
+
fh11 image/x-freehand base64
|
392
|
+
fh12 image/x-freehand base64
|
393
|
+
fh4 image/x-freehand base64
|
394
|
+
fh40 image/x-freehand base64
|
395
|
+
fh5 image/x-freehand base64
|
396
|
+
fh50 image/x-freehand base64
|
397
|
+
fh7 image/x-freehand base64
|
398
|
+
fh8 image/x-freehand base64
|
399
|
+
fh9 image/x-freehand base64
|
400
|
+
fhc image/x-freehand base64
|
401
|
+
fig application/x-xfig base64
|
402
|
+
fit application/fits base64
|
403
|
+
fits application/fits base64
|
404
|
+
flac audio/flac base64
|
405
|
+
flc video/x-flc base64
|
406
|
+
fli video/x-fli base64
|
407
|
+
flo application/vnd.micrografx.flo base64
|
408
|
+
flv video/x-flv base64
|
409
|
+
flw application/vnd.kde.kivio base64
|
410
|
+
flx text/vnd.fmi.flexstor quoted-printable
|
411
|
+
fly text/vnd.fly quoted-printable
|
412
|
+
fm application/vnd.framemaker base64
|
413
|
+
fn text/plain quoted-printable
|
414
|
+
fnc application/vnd.frogans.fnc base64
|
415
|
+
fo application/xslfo+xml base64
|
416
|
+
fodp application/vnd.oasis.opendocument.flat.presentation base64
|
417
|
+
fods application/vnd.oasis.opendocument.flat.spreadsheet base64
|
418
|
+
fodt application/vnd.oasis.opendocument.flat.text base64
|
419
|
+
for text/x-fortran quoted-printable
|
420
|
+
fp7 application/x-filemaker base64
|
421
|
+
fpx image/vnd.fpx base64
|
422
|
+
frame application/vnd.framemaker base64
|
423
|
+
frm application/vnd.framemaker base64
|
424
|
+
fsc application/vnd.fsc.weblaunch 7bit
|
425
|
+
fst image/vnd.fst base64
|
426
|
+
ft text/plain quoted-printable
|
427
|
+
ft10 image/x-freehand base64
|
428
|
+
ft11 image/x-freehand base64
|
429
|
+
ft12 image/x-freehand base64
|
430
|
+
ft7 image/x-freehand base64
|
431
|
+
ft8 image/x-freehand base64
|
432
|
+
ft9 image/x-freehand base64
|
433
|
+
ftc application/vnd.fluxtime.clip base64
|
434
|
+
fti application/vnd.anser-web-funds-transfer-initiation base64
|
435
|
+
fts application/fits base64
|
436
|
+
fv text/plain quoted-printable
|
437
|
+
fvt video/vnd.fvt base64
|
438
|
+
fxp application/vnd.adobe.fxp base64
|
439
|
+
fxpl application/vnd.adobe.fxp base64
|
440
|
+
fzs application/vnd.fuzzysheet base64
|
441
|
+
g text/plain quoted-printable
|
442
|
+
g2w application/vnd.geoplan base64
|
443
|
+
g3 image/g3fax base64
|
444
|
+
g3w application/vnd.geospace base64
|
445
|
+
gac application/vnd.groove-account base64
|
446
|
+
gam application/x-tads base64
|
447
|
+
gbr application/rpki-ghostbusters base64
|
448
|
+
gca application/x-gca-compressed base64
|
449
|
+
gdl model/vnd.gdl base64
|
450
|
+
geo application/vnd.dynageo base64
|
451
|
+
gex application/vnd.geometry-explorer base64
|
452
|
+
ggb application/vnd.geogebra.file base64
|
453
|
+
ggs application/vnd.geogebra.slides base64
|
454
|
+
ggt application/vnd.geogebra.tool base64
|
455
|
+
ghf application/vnd.groove-help base64
|
456
|
+
gif image/gif base64
|
457
|
+
gim application/vnd.groove-identity-message base64
|
458
|
+
gl video/x-gl base64
|
459
|
+
gml application/gml+xml base64
|
460
|
+
gmx application/vnd.gmx base64
|
461
|
+
gnucash application/x-gnucash base64
|
462
|
+
gnumakefile text/x-makefile quoted-printable
|
463
|
+
gnumeric application/x-gnumeric base64
|
464
|
+
go text/x-go quoted-printable
|
465
|
+
gp4 application/x-guitar-pro base64
|
466
|
+
gpg application/octet-stream base64
|
467
|
+
gph application/vnd.FloGraphIt base64
|
468
|
+
gpkg application/x-geopackage base64
|
469
|
+
gpx application/gpx+xml base64
|
470
|
+
gqf application/vnd.grafeq base64
|
471
|
+
gqs application/vnd.grafeq base64
|
472
|
+
gram application/srgs base64
|
473
|
+
gramps application/x-gramps-xml base64
|
474
|
+
grb application/x-grib base64
|
475
|
+
grb1 application/x-grib base64
|
476
|
+
grb2 application/x-grib base64
|
477
|
+
gre application/vnd.geometry-explorer base64
|
478
|
+
grm text/plain quoted-printable
|
479
|
+
groovy text/x-groovy quoted-printable
|
480
|
+
grv application/vnd.groove-injector base64
|
481
|
+
grxml application/srgs+xml base64
|
482
|
+
gsf application/x-font-ghostscript base64
|
483
|
+
gslib audio/x-psf base64
|
484
|
+
gtar application/x-gtar base64
|
485
|
+
gtm application/vnd.groove-tool-message base64
|
486
|
+
gtw model/vnd.gtw base64
|
487
|
+
gv text/vnd.graphviz quoted-printable
|
488
|
+
gxf application/gxf base64
|
489
|
+
gxt application/vnd.geonext base64
|
490
|
+
gz application/gzip base64
|
491
|
+
h text/plain quoted-printable
|
492
|
+
h++ text/x-c++hdr quoted-printable
|
493
|
+
h261 video/H261 base64
|
494
|
+
h263 video/H263 base64
|
495
|
+
h264 video/H264 base64
|
496
|
+
h5 application/x-hdf base64
|
497
|
+
hal application/vnd.hal+xml base64
|
498
|
+
haml text/x-haml quoted-printable
|
499
|
+
handlers text/plain quoted-printable
|
500
|
+
hbc application/vnd.hbci base64
|
501
|
+
hbci application/vnd.hbci base64
|
502
|
+
hdf application/x-hdf base64
|
503
|
+
hdr application/envi.hdr base64
|
504
|
+
he5 application/x-hdf base64
|
505
|
+
heic image/heic base64
|
506
|
+
heics image/heic-sequence base64
|
507
|
+
heif image/heif base64
|
508
|
+
heifs image/heif-sequence base64
|
509
|
+
hep application/x-hep base64
|
510
|
+
hfa application/x-erdas-hfa base64
|
511
|
+
hh text/plain quoted-printable
|
512
|
+
hif image/heic base64
|
513
|
+
hlp text/plain quoted-printable
|
514
|
+
hp text/x-c++hdr quoted-printable
|
515
|
+
hpgl application/vnd.hp-HPGL base64
|
516
|
+
hpid application/vnd.hp-hpid base64
|
517
|
+
hpp text/plain quoted-printable
|
518
|
+
hprof application/vnd.java.hprof base64
|
519
|
+
hprof.txt application/vnd.java.hprof.text base64
|
520
|
+
hps application/vnd.hp-hps base64
|
521
|
+
hqx application/mac-binhex40 8bit
|
522
|
+
hs text/x-haskell quoted-printable
|
523
|
+
htc text/plain quoted-printable
|
524
|
+
htke application/vnd.kenameaapp base64
|
525
|
+
htm text/html 8bit
|
526
|
+
html text/html 8bit
|
527
|
+
htmlx text/html 8bit
|
528
|
+
htx text/html 8bit
|
529
|
+
hvd application/vnd.yamaha.hv-dic base64
|
530
|
+
hvp application/vnd.yamaha.hv-voice base64
|
531
|
+
hvs application/vnd.yamaha.hv-script base64
|
532
|
+
hwpx application/hwp+zip base64
|
533
|
+
hx text/x-haxe quoted-printable
|
534
|
+
hxx text/x-c++hdr quoted-printable
|
535
|
+
i2g application/vnd.intergeo base64
|
536
|
+
i3 text/x-modula quoted-printable
|
537
|
+
ibooks application/x-ibooks+zip base64
|
538
|
+
ica application/x-ica base64
|
539
|
+
icb image/x-tga base64
|
540
|
+
icc application/vnd.iccprofile base64
|
541
|
+
ice x-conference/x-cooltalk base64
|
542
|
+
icm application/vnd.iccprofile base64
|
543
|
+
icns image/icns base64
|
544
|
+
ico image/vnd.microsoft.icon base64
|
545
|
+
ics text/calendar quoted-printable
|
546
|
+
idl text/x-idl quoted-printable
|
547
|
+
idml application/vnd.adobe.indesign-idml-package base64
|
548
|
+
ief image/ief base64
|
549
|
+
ifb text/calendar quoted-printable
|
550
|
+
ifm application/vnd.shana.informed.formdata base64
|
551
|
+
ifo application/x-dvd-ifo base64
|
552
|
+
ig text/x-modula quoted-printable
|
553
|
+
iges model/iges base64
|
554
|
+
igl application/vnd.igloader base64
|
555
|
+
igm application/vnd.insors.igm base64
|
556
|
+
igs model/iges base64
|
557
|
+
igx application/vnd.micrografx.igx base64
|
558
|
+
ihtml text/plain quoted-printable
|
559
|
+
iif application/vnd.shana.informed.interchange base64
|
560
|
+
iiq image/x-raw-phaseone base64
|
561
|
+
imagemap application/x-imagemap 8bit
|
562
|
+
imap application/x-imagemap 8bit
|
563
|
+
imp application/vnd.accpac.simply.imp base64
|
564
|
+
ims application/vnd.ms-ims base64
|
565
|
+
in text/plain quoted-printable
|
566
|
+
indd application/x-adobe-indesign base64
|
567
|
+
ini text/x-ini quoted-printable
|
568
|
+
ink application/inkml+xml base64
|
569
|
+
inkml application/inkml+xml base64
|
570
|
+
install text/plain quoted-printable
|
571
|
+
inx application/x-adobe-indesign-interchange base64
|
572
|
+
iota application/vnd.astraea-software.iota base64
|
573
|
+
ipa application/octet-stream base64
|
574
|
+
ipfix application/ipfix base64
|
575
|
+
ipk application/vnd.shana.informed.package base64
|
576
|
+
irm application/vnd.ibm.rights-management base64
|
577
|
+
irp application/vnd.irepository.package+xml base64
|
578
|
+
iso application/x-iso9660-image base64
|
579
|
+
iso19139 text/iso19139+xml quoted-printable
|
580
|
+
itk text/x-tcl quoted-printable
|
581
|
+
itp application/vnd.shana.informed.formtemplate base64
|
582
|
+
ivf video/x-ivf base64
|
583
|
+
ivp application/vnd.immervision-ivp base64
|
584
|
+
ivu application/vnd.immervision-ivu base64
|
585
|
+
j2c image/x-jp2-codestream base64
|
586
|
+
jad text/vnd.sun.j2me.app-descriptor 8bit
|
587
|
+
jam application/vnd.jam base64
|
588
|
+
jar application/java-archive base64
|
589
|
+
java text/x-java-source quoted-printable
|
590
|
+
jb2 image/x-jbig2 base64
|
591
|
+
jbig2 image/x-jbig2 base64
|
592
|
+
jdf application/x-jeol-jdf base64
|
593
|
+
jfi image/jpeg base64
|
594
|
+
jfif image/jpeg base64
|
595
|
+
jif image/jpeg base64
|
596
|
+
jisp application/vnd.jisp base64
|
597
|
+
jks application/x-java-keystore base64
|
598
|
+
jl text/x-common-lisp quoted-printable
|
599
|
+
jlt application/vnd.hp-jlyt base64
|
600
|
+
jmx text/plain quoted-printable
|
601
|
+
jng video/x-jng base64
|
602
|
+
jnilib application/x-java-jnilib base64
|
603
|
+
jnlp application/x-java-jnlp-file base64
|
604
|
+
joda application/vnd.joost.joda-archive base64
|
605
|
+
jp2 image/jp2 base64
|
606
|
+
jpe image/jpeg base64
|
607
|
+
jpeg image/jpeg base64
|
608
|
+
jpf image/jpx base64
|
609
|
+
jpg image/jpeg base64
|
610
|
+
jpg2 image/jp2 base64
|
611
|
+
jpgm image/jpm base64
|
612
|
+
jpgv video/JPEG base64
|
613
|
+
jpm image/jpm base64
|
614
|
+
jpx image/jpx base64
|
615
|
+
js text/javascript quoted-printable
|
616
|
+
json application/json 8bit
|
617
|
+
jsonml application/jsonml+json base64
|
618
|
+
jsp text/x-jsp quoted-printable
|
619
|
+
junit text/plain quoted-printable
|
620
|
+
jx text/plain quoted-printable
|
621
|
+
jxl image/jxl base64
|
622
|
+
k25 image/x-raw-kodak base64
|
623
|
+
kar audio/midi base64
|
624
|
+
karbon application/vnd.kde.karbon base64
|
625
|
+
kcm application/vnd.nervana base64
|
626
|
+
kdc image/x-raw-kodak base64
|
627
|
+
key application/vnd.apple.keynote base64
|
628
|
+
keys text/plain quoted-printable
|
629
|
+
kfo application/vnd.kde.kformula base64
|
630
|
+
kia application/vnd.kidspiration base64
|
631
|
+
kil application/x-killustrator base64
|
632
|
+
kml application/vnd.google-earth.kml+xml 8bit
|
633
|
+
kmz application/vnd.google-earth.kmz 8bit
|
634
|
+
kne application/vnd.Kinar base64
|
635
|
+
knp application/vnd.Kinar base64
|
636
|
+
kom application/vnd.hbci base64
|
637
|
+
kon application/vnd.kde.kontour base64
|
638
|
+
kpr application/vnd.kde.kpresenter base64
|
639
|
+
kpt application/vnd.kde.kpresenter base64
|
640
|
+
kpxx application/vnd.ds-keypoint base64
|
641
|
+
ksp application/vnd.kde.kspread base64
|
642
|
+
ktr application/vnd.kahootz base64
|
643
|
+
ktx image/ktx base64
|
644
|
+
ktz application/vnd.kahootz base64
|
645
|
+
kwd application/vnd.kde.kword base64
|
646
|
+
kwt application/vnd.kde.kword base64
|
647
|
+
l text/x-lex quoted-printable
|
648
|
+
l16 audio/L16 base64
|
649
|
+
las application/x-asprs base64
|
650
|
+
lasxml application/vnd.las.las+xml base64
|
651
|
+
latex application/x-latex 8bit
|
652
|
+
laz application/x-asprs base64
|
653
|
+
lbd application/vnd.llamagraphics.life-balance.desktop base64
|
654
|
+
lbe application/vnd.llamagraphics.life-balance.exchange+xml base64
|
655
|
+
les application/vnd.hhe.lesson-player base64
|
656
|
+
less text/x-less quoted-printable
|
657
|
+
lha application/octet-stream base64
|
658
|
+
lhs text/x-haskell quoted-printable
|
659
|
+
license text/plain quoted-printable
|
660
|
+
link66 application/vnd.route66.link66+xml base64
|
661
|
+
lisp text/x-common-lisp quoted-printable
|
662
|
+
list text/plain quoted-printable
|
663
|
+
list3820 application/vnd.ibm.modcap base64
|
664
|
+
listafp application/vnd.ibm.modcap base64
|
665
|
+
lnk application/x-ms-shortcut base64
|
666
|
+
log text/plain quoted-printable
|
667
|
+
lostxml application/lost+xml base64
|
668
|
+
lrf application/octet-stream base64
|
669
|
+
lrm application/vnd.ms-lrm base64
|
670
|
+
lsp text/x-common-lisp quoted-printable
|
671
|
+
ltf application/vnd.frogans.ltf base64
|
672
|
+
ltx application/x-latex 8bit
|
673
|
+
lua text/x-lua quoted-printable
|
674
|
+
lvp audio/vnd.lucent.voice base64
|
675
|
+
lwp application/vnd.lotus-wordpro base64
|
676
|
+
lyr application/x-esri-layer base64
|
677
|
+
lz application/x-lzip base64
|
678
|
+
lz4 application/x-lz4 base64
|
679
|
+
lzh application/octet-stream base64
|
680
|
+
lzma application/x-lzma base64
|
681
|
+
m text/x-objcsrc quoted-printable
|
682
|
+
m13 application/x-msmediaview base64
|
683
|
+
m14 application/x-msmediaview base64
|
684
|
+
m1v video/mpeg base64
|
685
|
+
m21 application/mp21 base64
|
686
|
+
m2a audio/mpeg base64
|
687
|
+
m2t video/MP2T base64
|
688
|
+
m2ts video/MP2T base64
|
689
|
+
m2v video/mpeg base64
|
690
|
+
m3 text/x-modula quoted-printable
|
691
|
+
m3a audio/mpeg base64
|
692
|
+
m3u audio/x-mpegurl base64
|
693
|
+
m3u8 application/vnd.apple.mpegurl base64
|
694
|
+
m4 text/plain quoted-printable
|
695
|
+
m4a audio/mp4 base64
|
696
|
+
m4b audio/mp4 base64
|
697
|
+
m4s video/iso.segment base64
|
698
|
+
m4u video/vnd.mpegurl 8bit
|
699
|
+
m4v video/vnd.objectvideo base64
|
700
|
+
ma application/mathematica base64
|
701
|
+
mads application/mads+xml base64
|
702
|
+
mag application/vnd.ecowin.chart base64
|
703
|
+
makefile text/x-makefile quoted-printable
|
704
|
+
maker application/vnd.framemaker base64
|
705
|
+
man text/troff 8bit
|
706
|
+
manifest text/plain quoted-printable
|
707
|
+
mar application/octet-stream base64
|
708
|
+
markdown text/markdown quoted-printable
|
709
|
+
mat application/x-matlab-data base64
|
710
|
+
mathml application/mathml+xml base64
|
711
|
+
mb application/mathematica base64
|
712
|
+
mbk application/vnd.Mobius.MBK base64
|
713
|
+
mbox application/mbox base64
|
714
|
+
mc1 application/vnd.medcalcdata base64
|
715
|
+
mcd application/vnd.mcd base64
|
716
|
+
mcurl text/vnd.curl.mcurl quoted-printable
|
717
|
+
md text/markdown quoted-printable
|
718
|
+
mda application/x-msaccess base64
|
719
|
+
mdb application/x-msaccess base64
|
720
|
+
mde application/x-msaccess base64
|
721
|
+
mdf application/x-msaccess base64
|
722
|
+
mdi image/vnd.ms-modi base64
|
723
|
+
mdo text/plain quoted-printable
|
724
|
+
mdtext text/x-web-markdown quoted-printable
|
725
|
+
me text/troff 8bit
|
726
|
+
mef image/x-raw-mamiya base64
|
727
|
+
memgraph application/x-memgraph base64
|
728
|
+
mesh model/mesh base64
|
729
|
+
meta text/plain quoted-printable
|
730
|
+
meta4 application/metalink4+xml base64
|
731
|
+
metalink application/metalink+xml base64
|
732
|
+
mets application/mets+xml base64
|
733
|
+
mf text/plain quoted-printable
|
734
|
+
mfm application/vnd.mfmp base64
|
735
|
+
mft application/rpki-manifest base64
|
736
|
+
mg text/x-modula quoted-printable
|
737
|
+
mgp application/vnd.osgeo.mapguide.package base64
|
738
|
+
mgz application/vnd.proteus.magazine base64
|
739
|
+
mht multipart/related base64
|
740
|
+
mhtml multipart/related base64
|
741
|
+
mid audio/midi base64
|
742
|
+
midi audio/midi base64
|
743
|
+
mie application/x-mie base64
|
744
|
+
mif application/vnd.mif base64
|
745
|
+
mime message/rfc822 8bit
|
746
|
+
minigsf audio/x-psf base64
|
747
|
+
minipsf audio/x-psf base64
|
748
|
+
minipsf1 audio/x-psf base64
|
749
|
+
mj2 video/MJ2 base64
|
750
|
+
mjp2 video/MJ2 base64
|
751
|
+
mjpeg video/x-motion-jpeg base64
|
752
|
+
mjpg video/x-motion-jpeg base64
|
753
|
+
mjs text/javascript quoted-printable
|
754
|
+
mk3d video/x-matroska base64
|
755
|
+
mka audio/matroska base64
|
756
|
+
mkd text/markdown quoted-printable
|
757
|
+
mks video/x-matroska base64
|
758
|
+
mkv video/x-matroska base64
|
759
|
+
ml text/x-ml quoted-printable
|
760
|
+
mli text/x-ocaml quoted-printable
|
761
|
+
mlp application/vnd.dolby.mlp base64
|
762
|
+
mmap application/vnd.mindjet.mindmanager base64
|
763
|
+
mmas application/vnd.mindjet.mindmanager base64
|
764
|
+
mmat application/vnd.mindjet.mindmanager base64
|
765
|
+
mmd application/vnd.chipnuts.karaoke-mmd base64
|
766
|
+
mmf application/vnd.smaf base64
|
767
|
+
mmmp application/vnd.mindjet.mindmanager base64
|
768
|
+
mmp application/vnd.mindjet.mindmanager base64
|
769
|
+
mmpt application/vnd.mindjet.mindmanager base64
|
770
|
+
mmr image/vnd.fujixerox.edmics-mmr base64
|
771
|
+
mng video/x-mng base64
|
772
|
+
mny application/x-msmoney base64
|
773
|
+
mobi application/x-mobipocket-ebook base64
|
774
|
+
mod audio/x-mod base64
|
775
|
+
mods application/mods+xml base64
|
776
|
+
mos image/x-raw-leaf base64
|
777
|
+
mov video/quicktime base64
|
778
|
+
movie video/x-sgi-movie base64
|
779
|
+
mp2 video/mpeg base64
|
780
|
+
mp21 application/mp21 base64
|
781
|
+
mp2a audio/mpeg base64
|
782
|
+
mp3 audio/mpeg base64
|
783
|
+
mp3g video/mpeg base64
|
784
|
+
mp4 audio/mp4 base64
|
785
|
+
mp4a audio/mp4 base64
|
786
|
+
mp4s application/mp4 base64
|
787
|
+
mp4v video/mp4 base64
|
788
|
+
mpc application/vnd.mophun.certificate base64
|
789
|
+
mpd application/dash+xml base64
|
790
|
+
mpe video/mpeg base64
|
791
|
+
mpeg video/mpeg base64
|
792
|
+
mpg video/mpeg base64
|
793
|
+
mpg4 audio/mp4 base64
|
794
|
+
mpga audio/mpeg base64
|
795
|
+
mpkg application/vnd.apple.installer+xml base64
|
796
|
+
mpl video/MP2T base64
|
797
|
+
mpls video/MP2T base64
|
798
|
+
mpm application/vnd.blueice.multipass base64
|
799
|
+
mpn application/vnd.mophun.application base64
|
800
|
+
mpp application/vnd.ms-project base64
|
801
|
+
mpt application/vnd.ms-project base64
|
802
|
+
mpx application/x-project base64
|
803
|
+
mpy application/vnd.ibm.MiniPay base64
|
804
|
+
mqy application/vnd.Mobius.MQY base64
|
805
|
+
mrc application/marc base64
|
806
|
+
mrcx application/marcxml+xml base64
|
807
|
+
mrw image/x-minolta-mrw base64
|
808
|
+
ms text/troff 8bit
|
809
|
+
msa application/vnd.msa-disk-image base64
|
810
|
+
mscml application/mediaservercontrol+xml base64
|
811
|
+
mseed application/vnd.fdsn.mseed base64
|
812
|
+
mseq application/vnd.mseq base64
|
813
|
+
msf application/vnd.epson.msf base64
|
814
|
+
msg application/vnd.ms-outlook base64
|
815
|
+
msh model/mesh base64
|
816
|
+
msi application/x-msdownload base64
|
817
|
+
msl application/vnd.Mobius.MSL base64
|
818
|
+
msp application/x-ms-installer base64
|
819
|
+
mst application/x-ms-installer base64
|
820
|
+
msty application/vnd.muvee.style base64
|
821
|
+
mts video/MP2T base64
|
822
|
+
mus application/vnd.musician base64
|
823
|
+
musicxml application/vnd.recordare.musicxml+xml base64
|
824
|
+
mvb application/x-msmediaview base64
|
825
|
+
mwf application/vnd.MFER base64
|
826
|
+
mxf application/mxf base64
|
827
|
+
mxl application/vnd.recordare.musicxml base64
|
828
|
+
mxmf audio/vnd.nokia.mobile-xmf base64
|
829
|
+
mxml application/xv+xml base64
|
830
|
+
mxs application/vnd.triscape.mxs base64
|
831
|
+
mxu video/vnd.mpegurl 8bit
|
832
|
+
myd application/x-mysql-misam-data base64
|
833
|
+
myi application/x-mysql-misam-compressed-index base64
|
834
|
+
n-gage application/vnd.nokia.n-gage.symbian.install base64
|
835
|
+
n3 text/plain quoted-printable
|
836
|
+
nar application/vnd.iptc.g2.newsmessage+xml base64
|
837
|
+
nb application/mathematica base64
|
838
|
+
nbp application/vnd.wolfram.player base64
|
839
|
+
nc application/x-netcdf base64
|
840
|
+
ncx application/x-dtbncx+xml base64
|
841
|
+
nef image/x-raw-nikon base64
|
842
|
+
nes application/x-nesrom base64
|
843
|
+
nfo text/x-nfo quoted-printable
|
844
|
+
ngdat application/vnd.nokia.n-gage.data base64
|
845
|
+
nim video/vnd.nokia.interleaved-multimedia base64
|
846
|
+
nitf application/vnd.nitf base64
|
847
|
+
nlu application/vnd.neurolanguage.nlu base64
|
848
|
+
nml application/vnd.enliven base64
|
849
|
+
nnd application/vnd.noblenet-directory base64
|
850
|
+
nns application/vnd.noblenet-sealer base64
|
851
|
+
nnw application/vnd.noblenet-web base64
|
852
|
+
notebook application/x-smarttech-notebook base64
|
853
|
+
notice text/plain quoted-printable
|
854
|
+
npx image/vnd.net-fpx base64
|
855
|
+
nroff text/troff 8bit
|
856
|
+
nrw image/x-raw-nikon base64
|
857
|
+
nsc application/x-conference base64
|
858
|
+
nsf application/vnd.lotus-notes base64
|
859
|
+
ntf application/vnd.nitf base64
|
860
|
+
numbers application/vnd.apple.numbers base64
|
861
|
+
nzb application/x-nzb base64
|
862
|
+
oa2 application/vnd.fujitsu.oasys2 base64
|
863
|
+
oa3 application/vnd.fujitsu.oasys3 base64
|
864
|
+
oas application/vnd.fujitsu.oasys base64
|
865
|
+
obd application/x-msbinder base64
|
866
|
+
obj application/x-tgif base64
|
867
|
+
ocaml text/x-ocaml quoted-printable
|
868
|
+
oda application/oda base64
|
869
|
+
odb application/vnd.oasis.opendocument.base base64
|
870
|
+
odc application/vnd.oasis.opendocument.chart-template base64
|
871
|
+
odf application/vnd.oasis.opendocument.formula-template base64
|
872
|
+
odft application/vnd.oasis.opendocument.formula-template base64
|
873
|
+
odg application/vnd.oasis.opendocument.graphics base64
|
874
|
+
odi application/vnd.oasis.opendocument.image-template base64
|
875
|
+
odm application/vnd.oasis.opendocument.text-master base64
|
876
|
+
odp application/vnd.oasis.opendocument.presentation base64
|
877
|
+
ods application/vnd.oasis.opendocument.spreadsheet base64
|
878
|
+
odt application/vnd.oasis.opendocument.text base64
|
879
|
+
oex application/x-opera-extension base64
|
880
|
+
oga audio/ogg base64
|
881
|
+
ogg audio/ogg base64
|
882
|
+
ogm video/x-ogm base64
|
883
|
+
ogv video/ogg base64
|
884
|
+
ogx application/ogg base64
|
885
|
+
omdoc application/omdoc+xml base64
|
886
|
+
onepkg application/onenote base64
|
887
|
+
onetmp application/onenote base64
|
888
|
+
onetoc application/onenote base64
|
889
|
+
onetoc2 application/onenote base64
|
890
|
+
opf application/oebps-package+xml base64
|
891
|
+
opml text/x-opml quoted-printable
|
892
|
+
oprc application/vnd.palm base64
|
893
|
+
opus audio/ogg base64
|
894
|
+
orf image/x-olympus-orf base64
|
895
|
+
org application/vnd.lotus-organizer base64
|
896
|
+
osf application/vnd.yamaha.openscoreformat base64
|
897
|
+
osfpvg application/vnd.yamaha.openscoreformat.osfpvg+xml base64
|
898
|
+
ost application/vnd.ms-outlook-pst base64
|
899
|
+
otc application/vnd.oasis.opendocument.chart-template base64
|
900
|
+
otf font/otf base64
|
901
|
+
otg application/vnd.oasis.opendocument.graphics-template base64
|
902
|
+
oth application/vnd.oasis.opendocument.text-web base64
|
903
|
+
oti application/vnd.oasis.opendocument.image-template base64
|
904
|
+
otm application/vnd.oasis.opendocument.text-master base64
|
905
|
+
otp application/vnd.oasis.opendocument.presentation-template base64
|
906
|
+
ots application/vnd.oasis.opendocument.spreadsheet-template base64
|
907
|
+
ott application/vnd.oasis.opendocument.text-template base64
|
908
|
+
owl application/rdf+xml 8bit
|
909
|
+
oxps application/vnd.ms-xpsdocument 8bit
|
910
|
+
oxt application/vnd.openofficeorg.extension base64
|
911
|
+
p text/x-pascal quoted-printable
|
912
|
+
p10 application/pkcs10 base64
|
913
|
+
p12 application/x-pkcs12 base64
|
914
|
+
p7b application/x-pkcs7-certificates base64
|
915
|
+
p7c application/pkcs7-mime base64
|
916
|
+
p7m application/pkcs7-mime base64
|
917
|
+
p7r application/x-pkcs7-certreqresp base64
|
918
|
+
p7s application/pkcs7-signature base64
|
919
|
+
p8 application/pkcs8 base64
|
920
|
+
pac application/x-ns-proxy-autoconfig base64
|
921
|
+
pack application/x-java-pack200 base64
|
922
|
+
pages application/vnd.apple.pages base64
|
923
|
+
pam image/x-portable-arbitrarymap base64
|
924
|
+
parquet application/x-parquet base64
|
925
|
+
pas text/x-pascal quoted-printable
|
926
|
+
patch text/x-diff quoted-printable
|
927
|
+
paw application/vnd.pawaafile base64
|
928
|
+
pbd application/vnd.powerbuilder6 base64
|
929
|
+
pbm image/x-portable-bitmap base64
|
930
|
+
pcap application/vnd.tcpdump.pcap base64
|
931
|
+
pcapng application/vnd.tcpdump.pcapng base64
|
932
|
+
pcf application/x-font-pcf base64
|
933
|
+
pcl application/vnd.hp-PCL base64
|
934
|
+
pclxl application/vnd.hp-PCLXL base64
|
935
|
+
pct image/x-pict base64
|
936
|
+
pcurl application/vnd.curl.pcurl base64
|
937
|
+
pcx image/vnd.zbrush.pcx base64
|
938
|
+
pdb application/vnd.palm base64
|
939
|
+
pdf application/pdf base64
|
940
|
+
pef image/x-raw-pentax base64
|
941
|
+
pen text/plain quoted-printable
|
942
|
+
perl text/x-perl quoted-printable
|
943
|
+
pfa application/x-font-type1 base64
|
944
|
+
pfb application/x-font-type1 base64
|
945
|
+
pfm application/x-font-type1 base64
|
946
|
+
pfr application/font-tdpfr base64
|
947
|
+
pfx application/x-pkcs12 base64
|
948
|
+
pgb image/vnd.globalgraphics.pgb base64
|
949
|
+
pgm image/x-portable-graymap base64
|
950
|
+
pgn application/x-chess-pgn base64
|
951
|
+
pgp application/octet-stream base64
|
952
|
+
php application/x-httpd-php 8bit
|
953
|
+
php3 text/x-php quoted-printable
|
954
|
+
php4 text/x-php quoted-printable
|
955
|
+
pht application/x-httpd-php 8bit
|
956
|
+
phtml application/x-httpd-php 8bit
|
957
|
+
pic image/x-pict base64
|
958
|
+
pict image/x-pict base64
|
959
|
+
pkd application/vnd.hbci base64
|
960
|
+
pkg application/octet-stream base64
|
961
|
+
pki application/pkixcmp base64
|
962
|
+
pkipath application/pkix-pkipath base64
|
963
|
+
pkpass application/vnd.apple.pkpass base64
|
964
|
+
pl text/x-perl quoted-printable
|
965
|
+
plb application/vnd.3gpp.pic-bw-large base64
|
966
|
+
plc application/vnd.Mobius.PLC base64
|
967
|
+
plf application/vnd.pocketlearn base64
|
968
|
+
plj audio/vnd.everad.plj base64
|
969
|
+
pls application/pls+xml base64
|
970
|
+
plt application/vnd.hp-HPGL base64
|
971
|
+
pm text/x-perl quoted-printable
|
972
|
+
pm5 application/x-pagemaker base64
|
973
|
+
pml application/vnd.ctc-posml base64
|
974
|
+
png image/png base64
|
975
|
+
pnm image/x-portable-anymap base64
|
976
|
+
pod text/plain quoted-printable
|
977
|
+
pom text/plain quoted-printable
|
978
|
+
portpkg application/vnd.macports.portpkg base64
|
979
|
+
pot application/vnd.ms-powerpoint base64
|
980
|
+
potm application/vnd.ms-powerpoint.template.macroEnabled.12 base64
|
981
|
+
potx application/vnd.openxmlformats-officedocument.presentationml.template base64
|
982
|
+
pp text/x-pascal quoted-printable
|
983
|
+
ppa application/vnd.ms-powerpoint base64
|
984
|
+
ppam application/vnd.ms-powerpoint.addin.macroEnabled.12 base64
|
985
|
+
ppd application/vnd.cups-ppd base64
|
986
|
+
ppj image/vnd.adobe.premiere base64
|
987
|
+
ppm image/x-portable-pixmap base64
|
988
|
+
pps application/vnd.ms-powerpoint base64
|
989
|
+
ppsm application/vnd.ms-powerpoint.slideshow.macroEnabled.12 base64
|
990
|
+
ppsx application/vnd.openxmlformats-officedocument.presentationml.slideshow base64
|
991
|
+
ppt application/vnd.ms-powerpoint base64
|
992
|
+
pptm application/vnd.ms-powerpoint.presentation.macroEnabled.12 base64
|
993
|
+
pptx application/vnd.openxmlformats-officedocument.presentationml.presentation base64
|
994
|
+
ppz application/vnd.ms-powerpoint base64
|
995
|
+
pqa application/vnd.palm base64
|
996
|
+
prc application/vnd.palm base64
|
997
|
+
pre application/vnd.lotus-freelance base64
|
998
|
+
prf application/pics-rules base64
|
999
|
+
pro text/x-prolog quoted-printable
|
1000
|
+
project text/plain quoted-printable
|
1001
|
+
properties text/x-java-properties quoted-printable
|
1002
|
+
prql application/prql base64
|
1003
|
+
prt application/x-prt base64
|
1004
|
+
ps application/postscript 8bit
|
1005
|
+
ps1 application/x-msdownload base64
|
1006
|
+
psb application/vnd.3gpp.pic-bw-small base64
|
1007
|
+
psd image/vnd.adobe.photoshop base64
|
1008
|
+
psf application/x-font-linux-psf base64
|
1009
|
+
psf1 audio/x-psf base64
|
1010
|
+
psflib audio/x-psf base64
|
1011
|
+
pskcxml application/pskc+xml base64
|
1012
|
+
psp image/x-paintshoppro base64
|
1013
|
+
pspimage image/x-paintshoppro base64
|
1014
|
+
pst application/vnd.ms-outlook-pst base64
|
1015
|
+
pt5 application/x-pagemaker base64
|
1016
|
+
pti application/vnd.pvi.ptid1 base64
|
1017
|
+
ptid application/vnd.pvi.ptid1 base64
|
1018
|
+
ptx image/x-raw-pentax base64
|
1019
|
+
pub application/x-mspublisher base64
|
1020
|
+
pvb application/vnd.3gpp.pic-bw-var base64
|
1021
|
+
pwn application/vnd.3M.Post-it-Notes base64
|
1022
|
+
pxn image/x-raw-logitech base64
|
1023
|
+
py application/x-python 8bit
|
1024
|
+
pya audio/vnd.ms-playready.media.pya base64
|
1025
|
+
pyv video/vnd.ms-playready.media.pyv base64
|
1026
|
+
qam application/vnd.epson.quickanime base64
|
1027
|
+
qbo application/vnd.intu.qbo base64
|
1028
|
+
qcp audio/vnd.qcelp base64
|
1029
|
+
qfx application/vnd.intu.qfx base64
|
1030
|
+
qps application/vnd.publishare-delta-tree base64
|
1031
|
+
qpw application/x-quattro-pro base64
|
1032
|
+
qt video/quicktime base64
|
1033
|
+
qtl application/x-quicktimeplayer base64
|
1034
|
+
qwd application/vnd.Quark.QuarkXPress 8bit
|
1035
|
+
qwt application/vnd.Quark.QuarkXPress 8bit
|
1036
|
+
qxb application/vnd.Quark.QuarkXPress 8bit
|
1037
|
+
qxd application/vnd.Quark.QuarkXPress 8bit
|
1038
|
+
qxl application/vnd.Quark.QuarkXPress 8bit
|
1039
|
+
qxt application/vnd.Quark.QuarkXPress 8bit
|
1040
|
+
r text/x-rsrc quoted-printable
|
1041
|
+
r3d image/x-raw-red base64
|
1042
|
+
ra audio/x-pn-realaudio base64
|
1043
|
+
raf image/x-fuji-raf base64
|
1044
|
+
ram audio/x-pn-realaudio base64
|
1045
|
+
rar application/x-rar-compressed base64
|
1046
|
+
ras image/x-cmu-raster base64
|
1047
|
+
raw image/x-raw-panasonic base64
|
1048
|
+
rb application/x-ruby 8bit
|
1049
|
+
rbw application/x-ruby 8bit
|
1050
|
+
rcprofile application/vnd.ipunplugged.rcprofile base64
|
1051
|
+
rct application/prs.nprend base64
|
1052
|
+
rdf application/rdf+xml 8bit
|
1053
|
+
rdz application/vnd.data-vision.rdz base64
|
1054
|
+
readme text/plain quoted-printable
|
1055
|
+
reg application/x-msdownload base64
|
1056
|
+
rep application/vnd.businessobjects base64
|
1057
|
+
req application/vnd.nervana base64
|
1058
|
+
request application/vnd.nervana base64
|
1059
|
+
res application/x-dtbresource+xml base64
|
1060
|
+
rest text/x-rst quoted-printable
|
1061
|
+
restx text/x-rst quoted-printable
|
1062
|
+
rexx text/x-rexx quoted-printable
|
1063
|
+
rgb image/x-rgb base64
|
1064
|
+
rhtml application/x-html+ruby 8bit
|
1065
|
+
rif application/reginfo+xml base64
|
1066
|
+
rip audio/vnd.rip base64
|
1067
|
+
ris application/x-research-info-systems base64
|
1068
|
+
rl application/resource-lists+xml base64
|
1069
|
+
rlc image/vnd.fujixerox.edmics-rlc base64
|
1070
|
+
rld application/resource-lists-diff+xml base64
|
1071
|
+
rm application/vnd.rn-realmedia base64
|
1072
|
+
rmi audio/midi base64
|
1073
|
+
rmp audio/x-pn-realaudio-plugin base64
|
1074
|
+
rms application/vnd.jcp.javame.midlet-rms base64
|
1075
|
+
rmvb application/vnd.rn-realmedia-vbr base64
|
1076
|
+
rnc application/relax-ng-compact-syntax base64
|
1077
|
+
rnd application/prs.nprend base64
|
1078
|
+
rng text/plain quoted-printable
|
1079
|
+
rnx text/plain quoted-printable
|
1080
|
+
roa application/rpki-roa base64
|
1081
|
+
roff text/troff 8bit
|
1082
|
+
roles text/plain quoted-printable
|
1083
|
+
rp9 application/vnd.cloanto.rp9 base64
|
1084
|
+
rpm audio/x-pn-realaudio-plugin base64
|
1085
|
+
rpss application/vnd.nokia.radio-presets base64
|
1086
|
+
rpst application/vnd.nokia.radio-preset base64
|
1087
|
+
rq application/sparql-query base64
|
1088
|
+
rs application/rls-services+xml base64
|
1089
|
+
rsd application/rsd+xml base64
|
1090
|
+
rss application/rss+xml base64
|
1091
|
+
rst text/plain quoted-printable
|
1092
|
+
rtf application/rtf base64
|
1093
|
+
rtx text/richtext 8bit
|
1094
|
+
rw2 image/x-raw-panasonic base64
|
1095
|
+
rwz image/x-raw-rawzor base64
|
1096
|
+
s text/x-asm quoted-printable
|
1097
|
+
s11 video/vnd.sealed.mpeg1 base64
|
1098
|
+
s14 video/vnd.sealed.mpeg4 base64
|
1099
|
+
s1a application/vnd.sealedmedia.softseal.pdf base64
|
1100
|
+
s1e application/vnd.sealed.xls base64
|
1101
|
+
s1h application/vnd.sealedmedia.softseal.html base64
|
1102
|
+
s1m audio/vnd.sealedmedia.softseal.mpeg base64
|
1103
|
+
s1p application/vnd.sealed.ppt base64
|
1104
|
+
s1q video/vnd.sealedmedia.softseal.mov base64
|
1105
|
+
s1w application/vnd.sealed.doc base64
|
1106
|
+
s3m audio/s3m base64
|
1107
|
+
s7m application/x-sas-dmdb base64
|
1108
|
+
sa7 application/x-sas-access base64
|
1109
|
+
saf application/vnd.yamaha.smaf-audio base64
|
1110
|
+
sap audio/x-sap base64
|
1111
|
+
sas application/x-sas base64
|
1112
|
+
sas7bacs application/x-sas-access base64
|
1113
|
+
sas7baud application/x-sas-audit base64
|
1114
|
+
sas7bbak application/x-sas-backup base64
|
1115
|
+
sas7bcat application/x-sas-catalog base64
|
1116
|
+
sas7bdat application/x-sas-data base64
|
1117
|
+
sas7bdmd application/x-sas-dmdb base64
|
1118
|
+
sas7bfdb application/x-sas-fdb base64
|
1119
|
+
sas7bitm application/x-sas-itemstor base64
|
1120
|
+
sas7bmdb application/x-sas-mddb base64
|
1121
|
+
sas7bndx application/x-sas-data-index base64
|
1122
|
+
sas7bpgm application/x-sas-program-data base64
|
1123
|
+
sas7bput application/x-sas-putility base64
|
1124
|
+
sas7butl application/x-sas-utility base64
|
1125
|
+
sas7bvew application/x-sas-view base64
|
1126
|
+
sav application/x-spss base64
|
1127
|
+
sbml application/sbml+xml base64
|
1128
|
+
sbs application/x-spss base64
|
1129
|
+
sc application/vnd.ibm.secure-container base64
|
1130
|
+
sc7 application/x-sas-catalog base64
|
1131
|
+
scad application/x-openscad base64
|
1132
|
+
scala text/x-scala quoted-printable
|
1133
|
+
scd application/x-msschedule base64
|
1134
|
+
schemas text/plain quoted-printable
|
1135
|
+
scm application/vnd.lotus-screencam base64
|
1136
|
+
scq application/scvp-cv-request base64
|
1137
|
+
scs application/scvp-cv-response base64
|
1138
|
+
scurl text/vnd.curl.scurl quoted-printable
|
1139
|
+
sd2 application/x-sas-data-v6 base64
|
1140
|
+
sd7 application/x-sas-data base64
|
1141
|
+
sda application/vnd.stardivision.draw base64
|
1142
|
+
sdc application/vnd.stardivision.calc base64
|
1143
|
+
sdd application/vnd.stardivision.impress base64
|
1144
|
+
sdf application/vnd.Kinar base64
|
1145
|
+
sdkd application/vnd.solent.sdkm+xml base64
|
1146
|
+
sdkm application/vnd.solent.sdkm+xml base64
|
1147
|
+
sdo application/vnd.sealed.doc base64
|
1148
|
+
sdoc application/vnd.sealed.doc base64
|
1149
|
+
sdp application/sdp base64
|
1150
|
+
sds application/vnd.stardivision.chart base64
|
1151
|
+
sdw application/vnd.stardivision.writer base64
|
1152
|
+
sed text/x-sed quoted-printable
|
1153
|
+
see application/vnd.seemail base64
|
1154
|
+
seed application/vnd.fdsn.seed base64
|
1155
|
+
sem application/vnd.sealed.eml base64
|
1156
|
+
sema application/vnd.sema base64
|
1157
|
+
semd application/vnd.semd base64
|
1158
|
+
semf application/vnd.semf base64
|
1159
|
+
seml application/vnd.sealed.eml base64
|
1160
|
+
ser application/java-serialized-object base64
|
1161
|
+
setpay application/set-payment-initiation base64
|
1162
|
+
setreg application/set-registration-initiation base64
|
1163
|
+
sf7 application/x-sas-fdb base64
|
1164
|
+
sfd-hdstx application/vnd.hydrostatix.sof-data base64
|
1165
|
+
sfdu application/x-sfdu base64
|
1166
|
+
sfs application/vnd.spotfire.sfs base64
|
1167
|
+
sfv text/x-sfv quoted-printable
|
1168
|
+
sgi image/sgi base64
|
1169
|
+
sgl application/vnd.stardivision.writer-global base64
|
1170
|
+
sgm text/sgml quoted-printable
|
1171
|
+
sgml text/sgml quoted-printable
|
1172
|
+
sh application/x-sh 8bit
|
1173
|
+
shar application/x-shar 8bit
|
1174
|
+
shf application/shf+xml base64
|
1175
|
+
shp application/x-shapefile base64
|
1176
|
+
shtml text/html 8bit
|
1177
|
+
shw application/x-corelpresentations base64
|
1178
|
+
si text/vnd.wap.si quoted-printable
|
1179
|
+
si7 application/x-sas-data-index base64
|
1180
|
+
sib application/x-sibelius base64
|
1181
|
+
sic application/vnd.wap.sic base64
|
1182
|
+
sid image/x-mrsid-image base64
|
1183
|
+
sig application/pgp-signature base64
|
1184
|
+
sil audio/silk base64
|
1185
|
+
silo model/mesh base64
|
1186
|
+
sis application/vnd.symbian.install base64
|
1187
|
+
sisx application/vnd.symbian.install base64
|
1188
|
+
sit application/x-stuffit base64
|
1189
|
+
sitx application/x-stuffitx base64
|
1190
|
+
siv application/sieve base64
|
1191
|
+
sj application/javascript 8bit
|
1192
|
+
skd application/vnd.koan base64
|
1193
|
+
skm application/vnd.koan base64
|
1194
|
+
skp application/vnd.koan base64
|
1195
|
+
skt application/vnd.koan base64
|
1196
|
+
sl text/vnd.wap.sl quoted-printable
|
1197
|
+
slc application/vnd.wap.slc base64
|
1198
|
+
sldasm application/sldworks base64
|
1199
|
+
slddrw application/sldworks base64
|
1200
|
+
sldm application/vnd.ms-powerpoint.slide.macroEnabled.12 base64
|
1201
|
+
sldprt application/sldworks base64
|
1202
|
+
sldx application/vnd.openxmlformats-officedocument.presentationml.slide base64
|
1203
|
+
slt application/vnd.epson.salt base64
|
1204
|
+
sm application/vnd.stepmania.stepchart base64
|
1205
|
+
sm7 application/x-sas-mddb base64
|
1206
|
+
smf application/vnd.stardivision.math base64
|
1207
|
+
smh application/vnd.sealed.mht base64
|
1208
|
+
smht application/vnd.sealed.mht base64
|
1209
|
+
smi application/smil+xml 8bit
|
1210
|
+
smil application/smil+xml 8bit
|
1211
|
+
sml application/smil+xml 8bit
|
1212
|
+
smo video/vnd.sealedmedia.softseal.mov base64
|
1213
|
+
smov video/vnd.sealedmedia.softseal.mov base64
|
1214
|
+
smp audio/vnd.sealedmedia.softseal.mpeg base64
|
1215
|
+
smp3 audio/vnd.sealedmedia.softseal.mpeg base64
|
1216
|
+
smpg video/vnd.sealed.mpeg4 base64
|
1217
|
+
sms application/vnd.3gpp.sms base64
|
1218
|
+
smv audio/SMV base64
|
1219
|
+
smzip application/vnd.stepmania.package base64
|
1220
|
+
snd audio/basic base64
|
1221
|
+
snf application/x-font-snf base64
|
1222
|
+
so application/octet-stream base64
|
1223
|
+
soc application/sgml-open-catalog base64
|
1224
|
+
sp7 application/x-sas-putility base64
|
1225
|
+
spc application/x-pkcs7-certificates base64
|
1226
|
+
spd application/vnd.sealedmedia.softseal.pdf base64
|
1227
|
+
spdf application/vnd.sealedmedia.softseal.pdf base64
|
1228
|
+
spf application/vnd.yamaha.smaf-phrase base64
|
1229
|
+
spl application/x-futuresplash base64
|
1230
|
+
spo application/x-spss base64
|
1231
|
+
spot text/vnd.in3d.spot quoted-printable
|
1232
|
+
spp application/vnd.sealed.ppt base64
|
1233
|
+
sppt application/vnd.sealed.ppt base64
|
1234
|
+
spq application/scvp-vp-request base64
|
1235
|
+
sps application/x-spss base64
|
1236
|
+
spx audio/ogg base64
|
1237
|
+
sql application/x-sql base64
|
1238
|
+
sr2 image/x-raw-sony base64
|
1239
|
+
sr7 application/x-sas-itemstor base64
|
1240
|
+
src application/x-wais-source base64
|
1241
|
+
srf image/x-raw-sony base64
|
1242
|
+
srl application/sereal base64
|
1243
|
+
srt application/x-subrip base64
|
1244
|
+
sru application/sru+xml base64
|
1245
|
+
srx application/sparql-results+xml base64
|
1246
|
+
ss7 application/x-sas-program-data base64
|
1247
|
+
ssdl application/ssdl+xml base64
|
1248
|
+
sse application/vnd.kodak-descriptor base64
|
1249
|
+
ssf application/vnd.epson.ssf base64
|
1250
|
+
ssml application/ssml+xml base64
|
1251
|
+
ssw video/vnd.sealed.swf base64
|
1252
|
+
sswf video/vnd.sealed.swf base64
|
1253
|
+
st application/vnd.sailingtracker.track base64
|
1254
|
+
st7 application/x-sas-audit base64
|
1255
|
+
stc application/vnd.sun.xml.calc.template base64
|
1256
|
+
std application/vnd.sun.xml.draw.template base64
|
1257
|
+
stf application/vnd.wt.stf base64
|
1258
|
+
sti application/vnd.sun.xml.impress.template base64
|
1259
|
+
stk application/hyperstudio base64
|
1260
|
+
stl application/vnd.ms-pki.stl base64
|
1261
|
+
stm application/vnd.sealedmedia.softseal.html base64
|
1262
|
+
stml application/vnd.sealedmedia.softseal.html base64
|
1263
|
+
str application/vnd.pg.format base64
|
1264
|
+
stw application/vnd.sun.xml.writer.template base64
|
1265
|
+
stx application/x-sas-transport base64
|
1266
|
+
su7 application/x-sas-utility base64
|
1267
|
+
sub image/vnd.dvb.subtitle base64
|
1268
|
+
sus application/vnd.sus-calendar base64
|
1269
|
+
susp application/vnd.sus-calendar base64
|
1270
|
+
sv4cpio application/x-sv4cpio base64
|
1271
|
+
sv4crc application/x-sv4crc base64
|
1272
|
+
sv7 application/x-sas-view base64
|
1273
|
+
svc application/vnd.dvb.service base64
|
1274
|
+
svd application/vnd.svd base64
|
1275
|
+
svg image/svg+xml 8bit
|
1276
|
+
svgz image/svg+xml 8bit
|
1277
|
+
swa application/x-director base64
|
1278
|
+
swf application/x-shockwave-flash base64
|
1279
|
+
swi application/vnd.aristanetworks.swi base64
|
1280
|
+
sxc application/vnd.sun.xml.calc base64
|
1281
|
+
sxd application/vnd.sun.xml.draw base64
|
1282
|
+
sxg application/vnd.sun.xml.writer.global base64
|
1283
|
+
sxi application/vnd.sun.xml.impress base64
|
1284
|
+
sxl application/vnd.sealed.xls base64
|
1285
|
+
sxls application/vnd.sealed.xls base64
|
1286
|
+
sxm application/vnd.sun.xml.math base64
|
1287
|
+
sxw application/vnd.sun.xml.writer base64
|
1288
|
+
sz application/x-snappy-framed base64
|
1289
|
+
t text/troff 8bit
|
1290
|
+
t3 application/x-t3vm-image base64
|
1291
|
+
taglet application/vnd.mynfc base64
|
1292
|
+
tao application/vnd.tao.intent-module-archive base64
|
1293
|
+
tar application/x-tar base64
|
1294
|
+
tbk application/x-toolbook base64
|
1295
|
+
tbz application/x-gtar base64
|
1296
|
+
tbz2 application/x-gtar base64
|
1297
|
+
tcap application/vnd.3gpp2.tcap base64
|
1298
|
+
tcl text/x-tcl quoted-printable
|
1299
|
+
tcsh application/x-csh 8bit
|
1300
|
+
teacher application/vnd.smart.teacher base64
|
1301
|
+
tei application/tei+xml base64
|
1302
|
+
teicorpus application/tei+xml base64
|
1303
|
+
tex application/x-tex 8bit
|
1304
|
+
texi application/x-texinfo 8bit
|
1305
|
+
texinfo application/x-texinfo 8bit
|
1306
|
+
text text/plain quoted-printable
|
1307
|
+
textile text/plain quoted-printable
|
1308
|
+
tfi application/thraud+xml base64
|
1309
|
+
tfm application/x-tex-tfm base64
|
1310
|
+
tga image/x-tga base64
|
1311
|
+
tgz application/gzip base64
|
1312
|
+
thmx application/vnd.openxmlformats-officedocument.presentationml.presentation base64
|
1313
|
+
tif image/tiff base64
|
1314
|
+
tiff image/tiff base64
|
1315
|
+
tk text/x-tcl quoted-printable
|
1316
|
+
tld text/plain quoted-printable
|
1317
|
+
tmo application/vnd.tmobile-livetv base64
|
1318
|
+
tmx application/x-tmx base64
|
1319
|
+
toast application/x-roxio-toast base64
|
1320
|
+
torrent application/x-bittorrent base64
|
1321
|
+
tpl application/vnd.groove-tool-template base64
|
1322
|
+
tpt application/vnd.trid.tpt base64
|
1323
|
+
tr text/troff 8bit
|
1324
|
+
tra application/vnd.trueapp base64
|
1325
|
+
trm application/x-msterminal base64
|
1326
|
+
troff text/troff 8bit
|
1327
|
+
ts video/MP2T base64
|
1328
|
+
tsd application/timestamped-data base64
|
1329
|
+
tsv text/tab-separated-values quoted-printable
|
1330
|
+
ttc font/collection base64
|
1331
|
+
ttf font/ttf base64
|
1332
|
+
ttl text/turtle quoted-printable
|
1333
|
+
ttml application/ttml+xml base64
|
1334
|
+
twd application/vnd.SimTech-MindMapper base64
|
1335
|
+
twds application/vnd.SimTech-MindMapper base64
|
1336
|
+
txd application/vnd.genomatix.tuxedo base64
|
1337
|
+
txf application/vnd.Mobius.TXF base64
|
1338
|
+
txt text/plain quoted-printable
|
1339
|
+
types text/plain quoted-printable
|
1340
|
+
tzx application/x-spectrum-tzx base64
|
1341
|
+
u32 application/x-authorware-bin base64
|
1342
|
+
uc2 application/x-uc2-compressed base64
|
1343
|
+
udeb application/x-debian-package base64
|
1344
|
+
ufd application/vnd.ufdl base64
|
1345
|
+
ufdl application/vnd.ufdl base64
|
1346
|
+
ulx application/x-glulx base64
|
1347
|
+
umj application/vnd.umajin base64
|
1348
|
+
unityweb application/vnd.unity base64
|
1349
|
+
uoml application/vnd.uoml+xml base64
|
1350
|
+
upa application/vnd.hbci base64
|
1351
|
+
uri text/uri-list quoted-printable
|
1352
|
+
uris text/uri-list quoted-printable
|
1353
|
+
urls text/uri-list quoted-printable
|
1354
|
+
ustar application/x-ustar base64
|
1355
|
+
utz application/vnd.uiq.theme base64
|
1356
|
+
uu text/x-uuencode quoted-printable
|
1357
|
+
uva audio/vnd.dece.audio base64
|
1358
|
+
uvd application/vnd.dece.data base64
|
1359
|
+
uvf application/vnd.dece.data base64
|
1360
|
+
uvg image/vnd.dece.graphic base64
|
1361
|
+
uvh video/vnd.dece.hd base64
|
1362
|
+
uvi image/vnd.dece.graphic base64
|
1363
|
+
uvm video/vnd.dece.mobile base64
|
1364
|
+
uvp video/vnd.dece.pd base64
|
1365
|
+
uvs video/vnd.dece.sd base64
|
1366
|
+
uvt application/vnd.dece.ttml+xml base64
|
1367
|
+
uvu video/vnd.uvvu.mp4 base64
|
1368
|
+
uvv video/vnd.dece.video base64
|
1369
|
+
uvva audio/vnd.dece.audio base64
|
1370
|
+
uvvd application/vnd.dece.data base64
|
1371
|
+
uvvf application/vnd.dece.data base64
|
1372
|
+
uvvg image/vnd.dece.graphic base64
|
1373
|
+
uvvh video/vnd.dece.hd base64
|
1374
|
+
uvvi image/vnd.dece.graphic base64
|
1375
|
+
uvvm video/vnd.dece.mobile base64
|
1376
|
+
uvvp video/vnd.dece.pd base64
|
1377
|
+
uvvs video/vnd.dece.sd base64
|
1378
|
+
uvvt application/vnd.dece.ttml+xml base64
|
1379
|
+
uvvu video/vnd.uvvu.mp4 base64
|
1380
|
+
uvvv video/vnd.dece.video base64
|
1381
|
+
uvvx application/vnd.dece.unspecified base64
|
1382
|
+
uvvz application/vnd.dece.zip base64
|
1383
|
+
uvx application/vnd.dece.unspecified base64
|
1384
|
+
uvz application/vnd.dece.zip base64
|
1385
|
+
v text/x-verilog quoted-printable
|
1386
|
+
vb text/x-vbdotnet quoted-printable
|
1387
|
+
vbk audio/vnd.nortel.vbk base64
|
1388
|
+
vbs application/x-msdownload base64
|
1389
|
+
vcard text/vcard quoted-printable
|
1390
|
+
vcd application/x-cdlink base64
|
1391
|
+
vcf text/x-vcard 8bit
|
1392
|
+
vcg application/vnd.groove-vcard base64
|
1393
|
+
vcs text/x-vcalendar 8bit
|
1394
|
+
vcx application/vnd.vcx base64
|
1395
|
+
vda image/x-tga base64
|
1396
|
+
vf application/x-tex-virtual-font base64
|
1397
|
+
vhd text/x-vhdl quoted-printable
|
1398
|
+
vhdl text/x-vhdl quoted-printable
|
1399
|
+
vis application/vnd.visionary base64
|
1400
|
+
viv video/vnd.vivo base64
|
1401
|
+
vivo video/vnd.vivo base64
|
1402
|
+
vm text/plain quoted-printable
|
1403
|
+
vmdk application/x-vmdk base64
|
1404
|
+
vob video/x-ms-vob base64
|
1405
|
+
vor application/vnd.stardivision.writer base64
|
1406
|
+
vox application/x-authorware-bin base64
|
1407
|
+
vrml model/vrml base64
|
1408
|
+
vsc application/vnd.vidsoft.vidconference 8bit
|
1409
|
+
vsd application/vnd.visio base64
|
1410
|
+
vsdm application/vnd.ms-visio.drawing.macroEnabled.12 base64
|
1411
|
+
vsdx application/vnd.ms-visio.drawing base64
|
1412
|
+
vsf application/vnd.vsf base64
|
1413
|
+
vsl text/plain quoted-printable
|
1414
|
+
vss application/vnd.visio base64
|
1415
|
+
vssm application/vnd.ms-visio.stencil.macroEnabled.12 base64
|
1416
|
+
vssx application/vnd.ms-visio.stencil base64
|
1417
|
+
vst application/vnd.visio base64
|
1418
|
+
vstm application/vnd.ms-visio.template.macroEnabled.12 base64
|
1419
|
+
vstx application/vnd.ms-visio.template base64
|
1420
|
+
vsw application/vnd.visio base64
|
1421
|
+
vtt text/vtt quoted-printable
|
1422
|
+
vtu model/vnd.vtu base64
|
1423
|
+
vxml application/voicexml+xml base64
|
1424
|
+
w3d application/x-director base64
|
1425
|
+
w60 application/vnd.wordperfect base64
|
1426
|
+
wad application/x-doom base64
|
1427
|
+
war application/x-tika-java-web-archive base64
|
1428
|
+
warc application/warc base64
|
1429
|
+
warc.gz application/warc+gz base64
|
1430
|
+
wasm application/wasm 8bit
|
1431
|
+
wav audio/vnd.wave base64
|
1432
|
+
wax audio/x-ms-wax base64
|
1433
|
+
wb1 application/x-quattro-pro base64
|
1434
|
+
wb2 application/x-quattro-pro base64
|
1435
|
+
wb3 application/x-quattro-pro base64
|
1436
|
+
wbmp image/vnd.wap.wbmp base64
|
1437
|
+
wbs application/vnd.criticaltools.wbs+xml base64
|
1438
|
+
wbxml application/vnd.wap.wbxml base64
|
1439
|
+
wcm application/vnd.ms-works base64
|
1440
|
+
wdb application/vnd.ms-works base64
|
1441
|
+
wdp image/vnd.ms-photo base64
|
1442
|
+
weba audio/webm base64
|
1443
|
+
webapp application/x-web-app-manifest+json base64
|
1444
|
+
webarchive application/x-webarchive base64
|
1445
|
+
webm audio/webm base64
|
1446
|
+
webmanifest application/manifest+json base64
|
1447
|
+
webp image/webp base64
|
1448
|
+
wg application/vnd.pmi.widget base64
|
1449
|
+
wgt application/widget base64
|
1450
|
+
wif application/watcherinfo+xml base64
|
1451
|
+
wk application/x-123 base64
|
1452
|
+
wk1 application/vnd.lotus-1-2-3 base64
|
1453
|
+
wk2 application/vnd.lotus-1-2-3 base64
|
1454
|
+
wk3 application/vnd.lotus-1-2-3 base64
|
1455
|
+
wk4 application/vnd.lotus-1-2-3 base64
|
1456
|
+
wkq application/x-quattro-pro base64
|
1457
|
+
wks application/vnd.lotus-1-2-3 base64
|
1458
|
+
wkz application/x-Wingz base64
|
1459
|
+
wl application/vnd.wolfram.wl base64
|
1460
|
+
wm video/x-ms-wm base64
|
1461
|
+
wma audio/x-ms-wma base64
|
1462
|
+
wmd application/x-ms-wmd base64
|
1463
|
+
wmf image/wmf base64
|
1464
|
+
wml text/vnd.wap.wml quoted-printable
|
1465
|
+
wmlc application/vnd.wap.wmlc base64
|
1466
|
+
wmls text/vnd.wap.wmlscript quoted-printable
|
1467
|
+
wmlsc application/vnd.wap.wmlscriptc base64
|
1468
|
+
wmv audio/x-ms-wmv base64
|
1469
|
+
wmx video/x-ms-wmx base64
|
1470
|
+
wmz application/x-msmetafile base64
|
1471
|
+
woff font/woff base64
|
1472
|
+
woff2 font/woff2 base64
|
1473
|
+
wp application/vnd.wordperfect base64
|
1474
|
+
wp5 application/vnd.wordperfect base64
|
1475
|
+
wp6 application/vnd.wordperfect base64
|
1476
|
+
wp61 application/vnd.wordperfect base64
|
1477
|
+
wpd application/vnd.wordperfect base64
|
1478
|
+
wpl application/vnd.ms-wpl base64
|
1479
|
+
wps application/vnd.ms-works base64
|
1480
|
+
wpt application/vnd.wordperfect base64
|
1481
|
+
wq1 application/x-quattro-pro base64
|
1482
|
+
wq2 application/x-quattro-pro base64
|
1483
|
+
wqd application/vnd.wqd base64
|
1484
|
+
wrd application/msword base64
|
1485
|
+
wri application/x-mswrite base64
|
1486
|
+
wrl model/vrml base64
|
1487
|
+
wsdd text/plain quoted-printable
|
1488
|
+
wsdl application/wsdl+xml base64
|
1489
|
+
wspolicy application/wspolicy+xml base64
|
1490
|
+
wtb application/vnd.webturbo base64
|
1491
|
+
wv application/vnd.wv.csp+wbxml base64
|
1492
|
+
wvx video/x-ms-wvx base64
|
1493
|
+
wz application/x-Wingz base64
|
1494
|
+
x32 application/x-authorware-bin base64
|
1495
|
+
x3d model/x3d+xml base64
|
1496
|
+
x3db model/x3d+binary base64
|
1497
|
+
x3dbz model/x3d+binary base64
|
1498
|
+
x3dv model/x3d+vrml base64
|
1499
|
+
x3dvz model/x3d+vrml base64
|
1500
|
+
x3dz model/x3d+xml base64
|
1501
|
+
x3f image/x-raw-sigma base64
|
1502
|
+
x_b model/vnd.parasolid.transmit.binary base64
|
1503
|
+
x_t model/vnd.parasolid.transmit.text quoted-printable
|
1504
|
+
xaml application/xaml+xml base64
|
1505
|
+
xap application/x-silverlight-app base64
|
1506
|
+
xar application/vnd.xara base64
|
1507
|
+
xargs text/plain quoted-printable
|
1508
|
+
xbap application/x-ms-xbap base64
|
1509
|
+
xbd application/vnd.fujixerox.docuworks.binder base64
|
1510
|
+
xbm image/x-xbitmap 7bit
|
1511
|
+
xcat text/plain quoted-printable
|
1512
|
+
xcf image/x-xcf base64
|
1513
|
+
xcfbz2 image/x-compressed-xcf base64
|
1514
|
+
xcfgz image/x-compressed-xcf base64
|
1515
|
+
xconf text/x-config quoted-printable
|
1516
|
+
xdf application/xcap-diff+xml base64
|
1517
|
+
xdm application/vnd.syncml.dm+xml base64
|
1518
|
+
xdp application/vnd.adobe.xdp+xml base64
|
1519
|
+
xdssc application/dssc+xml base64
|
1520
|
+
xdw application/vnd.fujixerox.docuworks base64
|
1521
|
+
xegrm text/plain quoted-printable
|
1522
|
+
xenc application/xenc+xml base64
|
1523
|
+
xer application/patch-ops-error+xml base64
|
1524
|
+
xfdf application/vnd.adobe.xfdf base64
|
1525
|
+
xfdl application/vnd.xfdl base64
|
1526
|
+
xgrm text/plain quoted-printable
|
1527
|
+
xht application/xhtml+xml 8bit
|
1528
|
+
xhtml application/xhtml+xml 8bit
|
1529
|
+
xhtml2 application/xhtml+xml 8bit
|
1530
|
+
xhvml application/xv+xml base64
|
1531
|
+
xif image/vnd.xiff base64
|
1532
|
+
xla application/vnd.ms-excel base64
|
1533
|
+
xlam application/vnd.ms-excel.addin.macroEnabled.12 base64
|
1534
|
+
xlc application/vnd.ms-excel base64
|
1535
|
+
xld application/vnd.ms-excel base64
|
1536
|
+
xlex text/plain quoted-printable
|
1537
|
+
xlf application/x-xliff+xml base64
|
1538
|
+
xliff application/x-xliff+xml base64
|
1539
|
+
xll application/vnd.ms-excel base64
|
1540
|
+
xlm application/vnd.ms-excel base64
|
1541
|
+
xlog text/plain quoted-printable
|
1542
|
+
xlr application/x-tika-msworks-spreadsheet base64
|
1543
|
+
xls application/vnd.ms-excel base64
|
1544
|
+
xlsb application/vnd.ms-excel.sheet.binary.macroEnabled.12 base64
|
1545
|
+
xlsm application/vnd.ms-excel.sheet.macroEnabled.12 base64
|
1546
|
+
xlsx application/vnd.openxmlformats-officedocument.spreadsheetml.sheet base64
|
1547
|
+
xlt application/vnd.ms-excel base64
|
1548
|
+
xltm application/vnd.ms-excel.template.macroEnabled.12 base64
|
1549
|
+
xltx application/vnd.openxmlformats-officedocument.spreadsheetml.template base64
|
1550
|
+
xlw application/vnd.ms-excel base64
|
1551
|
+
xlz application/x-xliff+zip base64
|
1552
|
+
xm audio/xm base64
|
1553
|
+
xmap text/plain quoted-printable
|
1554
|
+
xmind application/x-xmind base64
|
1555
|
+
xml application/xml 8bit
|
1556
|
+
xmp application/rdf+xml 8bit
|
1557
|
+
xmt_bin model/vnd.parasolid.transmit.binary base64
|
1558
|
+
xmt_txt model/vnd.parasolid.transmit.text quoted-printable
|
1559
|
+
xo application/vnd.olpc-sugar base64
|
1560
|
+
xop application/xop+xml base64
|
1561
|
+
xpi application/x-xpinstall base64
|
1562
|
+
xpl application/xproc+xml base64
|
1563
|
+
xpm image/x-xpixmap 8bit
|
1564
|
+
xport application/x-sas-xport base64
|
1565
|
+
xpr application/vnd.is-xpr base64
|
1566
|
+
xps application/vnd.ms-xpsdocument 8bit
|
1567
|
+
xpt application/x-sas-xport base64
|
1568
|
+
xpw application/vnd.intercon.formnet base64
|
1569
|
+
xpx application/vnd.intercon.formnet base64
|
1570
|
+
xq application/xquery base64
|
1571
|
+
xquery application/xquery base64
|
1572
|
+
xroles text/plain quoted-printable
|
1573
|
+
xsamples text/plain quoted-printable
|
1574
|
+
xsd application/xml 8bit
|
1575
|
+
xsl application/xml 8bit
|
1576
|
+
xslfo application/xslfo+xml base64
|
1577
|
+
xslt application/xslt+xml base64
|
1578
|
+
xsm application/vnd.syncml+xml base64
|
1579
|
+
xsp text/plain quoted-printable
|
1580
|
+
xspf application/xspf+xml base64
|
1581
|
+
xtest text/plain quoted-printable
|
1582
|
+
xul application/vnd.mozilla.xul+xml base64
|
1583
|
+
xvm application/xv+xml base64
|
1584
|
+
xvml application/xv+xml base64
|
1585
|
+
xwd image/x-xwindowdump base64
|
1586
|
+
xweb text/plain quoted-printable
|
1587
|
+
xwelcome text/plain quoted-printable
|
1588
|
+
xyz x-chemical/x-xyz base64
|
1589
|
+
xz application/x-xz base64
|
1590
|
+
y text/x-yacc quoted-printable
|
1591
|
+
yaml text/x-yaml 8bit
|
1592
|
+
yang application/yang base64
|
1593
|
+
yin application/yin+xml base64
|
1594
|
+
yml text/x-yaml 8bit
|
1595
|
+
z application/x-compressed base64
|
1596
|
+
z1 application/x-zmachine base64
|
1597
|
+
z2 application/x-zmachine base64
|
1598
|
+
z3 application/x-zmachine base64
|
1599
|
+
z4 application/x-zmachine base64
|
1600
|
+
z5 application/x-zmachine base64
|
1601
|
+
z6 application/x-zmachine base64
|
1602
|
+
z7 application/x-zmachine base64
|
1603
|
+
z8 application/x-zmachine base64
|
1604
|
+
zaz application/vnd.zzazz.deck+xml base64
|
1605
|
+
zip application/zip base64
|
1606
|
+
zipx application/zip base64
|
1607
|
+
zir application/vnd.zul base64
|
1608
|
+
zirz application/vnd.zul base64
|
1609
|
+
zmm application/vnd.HandHeld-Entertainment+xml base64
|
1610
|
+
zoo application/x-zoo base64
|
1611
|
+
zst application/zstd base64
|