node-red-contrib-web-worldmap 4.9.0 → 5.0.1
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.
- package/CHANGELOG.md +2 -0
- package/README.md +7 -3
- package/examples/{feedback.json → Feedback.json} +1 -9
- package/examples/MouseCoordinates.json +159 -0
- package/examples/sidcEdgeIcon.json +158 -0
- package/node_modules/@turf/bezier-spline/README.md +15 -21
- package/node_modules/@turf/bezier-spline/dist/cjs/index.cjs +165 -0
- package/node_modules/@turf/bezier-spline/dist/cjs/index.cjs.map +1 -0
- package/node_modules/@turf/bezier-spline/dist/{es/index.js → cjs/index.d.cts} +9 -30
- package/node_modules/@turf/bezier-spline/dist/{js → esm}/index.d.ts +5 -3
- package/node_modules/@turf/bezier-spline/dist/esm/index.js +165 -0
- package/node_modules/@turf/bezier-spline/dist/esm/index.js.map +1 -0
- package/node_modules/@turf/bezier-spline/package.json +33 -25
- package/node_modules/@turf/helpers/README.md +231 -219
- package/node_modules/@turf/helpers/dist/cjs/index.cjs +308 -0
- package/node_modules/@turf/helpers/dist/cjs/index.cjs.map +1 -0
- package/node_modules/@turf/helpers/dist/{es/index.js → cjs/index.d.cts} +103 -303
- package/node_modules/@turf/helpers/dist/{js → esm}/index.d.ts +67 -53
- package/node_modules/@turf/helpers/dist/esm/index.js +308 -0
- package/node_modules/@turf/helpers/dist/esm/index.js.map +1 -0
- package/node_modules/@turf/helpers/package.json +32 -22
- package/node_modules/@turf/invariant/README.md +47 -58
- package/node_modules/@turf/invariant/dist/cjs/index.cjs +127 -0
- package/node_modules/@turf/invariant/dist/cjs/index.cjs.map +1 -0
- package/node_modules/@turf/invariant/dist/cjs/index.d.cts +108 -0
- package/node_modules/@turf/invariant/dist/{js → esm}/index.d.ts +12 -9
- package/node_modules/@turf/invariant/dist/esm/index.js +127 -0
- package/node_modules/@turf/invariant/dist/esm/index.js.map +1 -0
- package/node_modules/@turf/invariant/package.json +31 -22
- package/node_modules/@types/geojson/LICENSE +21 -0
- package/node_modules/@types/geojson/README.md +15 -0
- package/node_modules/@types/geojson/index.d.ts +165 -0
- package/node_modules/@types/geojson/package.json +45 -0
- package/node_modules/body-parser/HISTORY.md +7 -0
- package/node_modules/body-parser/README.md +11 -0
- package/node_modules/body-parser/lib/types/urlencoded.js +30 -7
- package/node_modules/body-parser/package.json +2 -2
- package/node_modules/encodeurl/README.md +19 -38
- package/node_modules/encodeurl/index.js +1 -1
- package/node_modules/encodeurl/package.json +7 -7
- package/node_modules/express/History.md +27 -0
- package/node_modules/express/Readme.md +100 -6
- package/node_modules/express/lib/response.js +11 -10
- package/node_modules/express/package.json +11 -11
- package/node_modules/finalhandler/HISTORY.md +15 -0
- package/node_modules/finalhandler/README.md +2 -2
- package/node_modules/finalhandler/index.js +7 -2
- package/node_modules/finalhandler/package.json +8 -7
- package/node_modules/merge-descriptors/README.md +4 -3
- package/node_modules/merge-descriptors/index.js +3 -3
- package/node_modules/merge-descriptors/package.json +14 -7
- package/node_modules/mime-db/HISTORY.md +14 -0
- package/node_modules/mime-db/README.md +27 -24
- package/node_modules/mime-db/db.json +646 -62
- package/node_modules/mime-db/package.json +9 -13
- package/node_modules/mime-types/node_modules/mime-db/HISTORY.md +507 -0
- package/node_modules/mime-types/node_modules/mime-db/LICENSE +23 -0
- package/node_modules/mime-types/node_modules/mime-db/README.md +100 -0
- package/node_modules/mime-types/node_modules/mime-db/db.json +8519 -0
- package/node_modules/mime-types/node_modules/mime-db/index.js +12 -0
- package/node_modules/mime-types/node_modules/mime-db/package.json +60 -0
- package/node_modules/object-inspect/CHANGELOG.md +15 -0
- package/node_modules/object-inspect/index.js +4 -1
- package/node_modules/object-inspect/package.json +14 -9
- package/node_modules/object-inspect/readme.markdown +9 -11
- package/node_modules/path-to-regexp/index.js +57 -40
- package/node_modules/path-to-regexp/package.json +2 -2
- package/node_modules/qs/.editorconfig +3 -0
- package/node_modules/qs/.eslintrc +2 -2
- package/node_modules/qs/CHANGELOG.md +59 -5
- package/node_modules/qs/README.md +133 -49
- package/node_modules/qs/dist/qs.js +56 -2020
- package/node_modules/qs/lib/parse.js +46 -13
- package/node_modules/qs/lib/stringify.js +53 -28
- package/node_modules/qs/lib/utils.js +47 -34
- package/node_modules/qs/package.json +26 -12
- package/node_modules/qs/test/empty-keys-cases.js +267 -0
- package/node_modules/qs/test/parse.js +347 -32
- package/node_modules/qs/test/stringify.js +436 -47
- package/node_modules/send/HISTORY.md +5 -0
- package/node_modules/send/index.js +1 -2
- package/node_modules/send/node_modules/encodeurl/LICENSE +22 -0
- package/node_modules/send/node_modules/encodeurl/README.md +128 -0
- package/node_modules/send/node_modules/encodeurl/index.js +60 -0
- package/node_modules/send/node_modules/encodeurl/package.json +40 -0
- package/node_modules/send/package.json +1 -1
- package/node_modules/serve-static/HISTORY.md +16 -0
- package/node_modules/serve-static/index.js +1 -2
- package/node_modules/serve-static/package.json +3 -3
- package/node_modules/tslib/CopyrightNotice.txt +15 -0
- package/node_modules/tslib/LICENSE.txt +12 -0
- package/node_modules/tslib/README.md +164 -0
- package/node_modules/tslib/SECURITY.md +41 -0
- package/node_modules/tslib/modules/index.d.ts +37 -0
- package/node_modules/tslib/modules/index.js +68 -0
- package/node_modules/tslib/modules/package.json +3 -0
- package/node_modules/tslib/package.json +47 -0
- package/node_modules/tslib/tslib.d.ts +453 -0
- package/node_modules/tslib/tslib.es6.html +1 -0
- package/node_modules/tslib/tslib.es6.js +379 -0
- package/node_modules/tslib/tslib.es6.mjs +378 -0
- package/node_modules/tslib/tslib.html +1 -0
- package/node_modules/tslib/tslib.js +429 -0
- package/package.json +5 -5
- package/worldmap/index.html +1 -1
- package/worldmap/leaflet/leaflet.mousecoordinate.js +3 -3
- package/worldmap/worldmap.js +123 -36
- package/worldmap.html +1 -1
- package/worldmap.js +23 -4
- package/node_modules/@turf/bezier-spline/dist/es/lib/spline.js +0 -158
- package/node_modules/@turf/bezier-spline/dist/es/package.json +0 -1
- package/node_modules/@turf/bezier-spline/dist/js/index.js +0 -65
- package/node_modules/@turf/bezier-spline/dist/js/lib/spline.d.ts +0 -62
- package/node_modules/@turf/bezier-spline/dist/js/lib/spline.js +0 -160
- package/node_modules/@turf/helpers/dist/es/lib/geojson.js +0 -7
- package/node_modules/@turf/helpers/dist/es/package.json +0 -1
- package/node_modules/@turf/helpers/dist/js/index.js +0 -724
- package/node_modules/@turf/helpers/dist/js/lib/geojson.d.ts +0 -193
- package/node_modules/@turf/helpers/dist/js/lib/geojson.js +0 -9
- package/node_modules/@turf/invariant/dist/es/index.js +0 -223
- package/node_modules/@turf/invariant/dist/es/package.json +0 -1
- package/node_modules/@turf/invariant/dist/js/index.js +0 -233
- package/node_modules/path-to-regexp/History.md +0 -36
- /package/node_modules/{encodeurl → send/node_modules/encodeurl}/HISTORY.md +0 -0
|
@@ -25,6 +25,13 @@
|
|
|
25
25
|
"application/ace+cbor": {
|
|
26
26
|
"source": "iana"
|
|
27
27
|
},
|
|
28
|
+
"application/ace+json": {
|
|
29
|
+
"source": "iana",
|
|
30
|
+
"compressible": true
|
|
31
|
+
},
|
|
32
|
+
"application/ace-groupcomm+cbor": {
|
|
33
|
+
"source": "iana"
|
|
34
|
+
},
|
|
28
35
|
"application/activemessage": {
|
|
29
36
|
"source": "iana"
|
|
30
37
|
},
|
|
@@ -32,6 +39,21 @@
|
|
|
32
39
|
"source": "iana",
|
|
33
40
|
"compressible": true
|
|
34
41
|
},
|
|
42
|
+
"application/aif+cbor": {
|
|
43
|
+
"source": "iana"
|
|
44
|
+
},
|
|
45
|
+
"application/aif+json": {
|
|
46
|
+
"source": "iana",
|
|
47
|
+
"compressible": true
|
|
48
|
+
},
|
|
49
|
+
"application/alto-cdni+json": {
|
|
50
|
+
"source": "iana",
|
|
51
|
+
"compressible": true
|
|
52
|
+
},
|
|
53
|
+
"application/alto-cdnifilter+json": {
|
|
54
|
+
"source": "iana",
|
|
55
|
+
"compressible": true
|
|
56
|
+
},
|
|
35
57
|
"application/alto-costmap+json": {
|
|
36
58
|
"source": "iana",
|
|
37
59
|
"compressible": true
|
|
@@ -72,6 +94,22 @@
|
|
|
72
94
|
"source": "iana",
|
|
73
95
|
"compressible": true
|
|
74
96
|
},
|
|
97
|
+
"application/alto-propmap+json": {
|
|
98
|
+
"source": "iana",
|
|
99
|
+
"compressible": true
|
|
100
|
+
},
|
|
101
|
+
"application/alto-propmapparams+json": {
|
|
102
|
+
"source": "iana",
|
|
103
|
+
"compressible": true
|
|
104
|
+
},
|
|
105
|
+
"application/alto-tips+json": {
|
|
106
|
+
"source": "iana",
|
|
107
|
+
"compressible": true
|
|
108
|
+
},
|
|
109
|
+
"application/alto-tipsparams+json": {
|
|
110
|
+
"source": "iana",
|
|
111
|
+
"compressible": true
|
|
112
|
+
},
|
|
75
113
|
"application/alto-updatestreamcontrol+json": {
|
|
76
114
|
"source": "iana",
|
|
77
115
|
"compressible": true
|
|
@@ -87,6 +125,10 @@
|
|
|
87
125
|
"source": "iana",
|
|
88
126
|
"extensions": ["ez"]
|
|
89
127
|
},
|
|
128
|
+
"application/appinstaller": {
|
|
129
|
+
"compressible": false,
|
|
130
|
+
"extensions": ["appinstaller"]
|
|
131
|
+
},
|
|
90
132
|
"application/applefile": {
|
|
91
133
|
"source": "iana"
|
|
92
134
|
},
|
|
@@ -94,6 +136,14 @@
|
|
|
94
136
|
"source": "apache",
|
|
95
137
|
"extensions": ["aw"]
|
|
96
138
|
},
|
|
139
|
+
"application/appx": {
|
|
140
|
+
"compressible": false,
|
|
141
|
+
"extensions": ["appx"]
|
|
142
|
+
},
|
|
143
|
+
"application/appxbundle": {
|
|
144
|
+
"compressible": false,
|
|
145
|
+
"extensions": ["appxbundle"]
|
|
146
|
+
},
|
|
97
147
|
"application/at+jwt": {
|
|
98
148
|
"source": "iana"
|
|
99
149
|
},
|
|
@@ -155,6 +205,16 @@
|
|
|
155
205
|
"source": "iana",
|
|
156
206
|
"compressible": true
|
|
157
207
|
},
|
|
208
|
+
"application/automationml-aml+xml": {
|
|
209
|
+
"source": "iana",
|
|
210
|
+
"compressible": true,
|
|
211
|
+
"extensions": ["aml"]
|
|
212
|
+
},
|
|
213
|
+
"application/automationml-amlx+zip": {
|
|
214
|
+
"source": "iana",
|
|
215
|
+
"compressible": false,
|
|
216
|
+
"extensions": ["amlx"]
|
|
217
|
+
},
|
|
158
218
|
"application/bacnet-xdd+zip": {
|
|
159
219
|
"source": "iana",
|
|
160
220
|
"compressible": false
|
|
@@ -171,6 +231,12 @@
|
|
|
171
231
|
"charset": "UTF-8",
|
|
172
232
|
"compressible": true
|
|
173
233
|
},
|
|
234
|
+
"application/bufr": {
|
|
235
|
+
"source": "iana"
|
|
236
|
+
},
|
|
237
|
+
"application/c2pa": {
|
|
238
|
+
"source": "iana"
|
|
239
|
+
},
|
|
174
240
|
"application/calendar+json": {
|
|
175
241
|
"source": "iana",
|
|
176
242
|
"compressible": true
|
|
@@ -208,6 +274,11 @@
|
|
|
208
274
|
"compressible": true,
|
|
209
275
|
"extensions": ["ccxml"]
|
|
210
276
|
},
|
|
277
|
+
"application/cda+xml": {
|
|
278
|
+
"source": "iana",
|
|
279
|
+
"charset": "UTF-8",
|
|
280
|
+
"compressible": true
|
|
281
|
+
},
|
|
211
282
|
"application/cdfx+xml": {
|
|
212
283
|
"source": "iana",
|
|
213
284
|
"compressible": true,
|
|
@@ -250,6 +321,9 @@
|
|
|
250
321
|
"application/cfw": {
|
|
251
322
|
"source": "iana"
|
|
252
323
|
},
|
|
324
|
+
"application/cid-edhoc+cbor-seq": {
|
|
325
|
+
"source": "iana"
|
|
326
|
+
},
|
|
253
327
|
"application/city+json": {
|
|
254
328
|
"source": "iana",
|
|
255
329
|
"compressible": true
|
|
@@ -282,6 +356,9 @@
|
|
|
282
356
|
"application/commonground": {
|
|
283
357
|
"source": "iana"
|
|
284
358
|
},
|
|
359
|
+
"application/concise-problem-details+cbor": {
|
|
360
|
+
"source": "iana"
|
|
361
|
+
},
|
|
285
362
|
"application/conference-info+xml": {
|
|
286
363
|
"source": "iana",
|
|
287
364
|
"compressible": true
|
|
@@ -295,6 +372,9 @@
|
|
|
295
372
|
"application/cose-key-set": {
|
|
296
373
|
"source": "iana"
|
|
297
374
|
},
|
|
375
|
+
"application/cose-x509": {
|
|
376
|
+
"source": "iana"
|
|
377
|
+
},
|
|
298
378
|
"application/cpl+xml": {
|
|
299
379
|
"source": "iana",
|
|
300
380
|
"compressible": true,
|
|
@@ -319,6 +399,17 @@
|
|
|
319
399
|
"source": "apache",
|
|
320
400
|
"extensions": ["cu"]
|
|
321
401
|
},
|
|
402
|
+
"application/cwl": {
|
|
403
|
+
"source": "iana",
|
|
404
|
+
"extensions": ["cwl"]
|
|
405
|
+
},
|
|
406
|
+
"application/cwl+json": {
|
|
407
|
+
"source": "iana",
|
|
408
|
+
"compressible": true
|
|
409
|
+
},
|
|
410
|
+
"application/cwl+yaml": {
|
|
411
|
+
"source": "iana"
|
|
412
|
+
},
|
|
322
413
|
"application/cwt": {
|
|
323
414
|
"source": "iana"
|
|
324
415
|
},
|
|
@@ -394,6 +485,9 @@
|
|
|
394
485
|
"application/dots+cbor": {
|
|
395
486
|
"source": "iana"
|
|
396
487
|
},
|
|
488
|
+
"application/dpop+jwt": {
|
|
489
|
+
"source": "iana"
|
|
490
|
+
},
|
|
397
491
|
"application/dskpp+xml": {
|
|
398
492
|
"source": "iana",
|
|
399
493
|
"compressible": true
|
|
@@ -411,9 +505,12 @@
|
|
|
411
505
|
"source": "iana"
|
|
412
506
|
},
|
|
413
507
|
"application/ecmascript": {
|
|
414
|
-
"source": "
|
|
508
|
+
"source": "apache",
|
|
415
509
|
"compressible": true,
|
|
416
|
-
"extensions": ["
|
|
510
|
+
"extensions": ["ecma"]
|
|
511
|
+
},
|
|
512
|
+
"application/edhoc+cbor-seq": {
|
|
513
|
+
"source": "iana"
|
|
417
514
|
},
|
|
418
515
|
"application/edi-consent": {
|
|
419
516
|
"source": "iana"
|
|
@@ -458,6 +555,10 @@
|
|
|
458
555
|
"application/emergencycalldata.ecall.msd": {
|
|
459
556
|
"source": "iana"
|
|
460
557
|
},
|
|
558
|
+
"application/emergencycalldata.legacyesn+json": {
|
|
559
|
+
"source": "iana",
|
|
560
|
+
"compressible": true
|
|
561
|
+
},
|
|
461
562
|
"application/emergencycalldata.providerinfo+xml": {
|
|
462
563
|
"source": "iana",
|
|
463
564
|
"compressible": true
|
|
@@ -517,6 +618,10 @@
|
|
|
517
618
|
"application/fastsoap": {
|
|
518
619
|
"source": "iana"
|
|
519
620
|
},
|
|
621
|
+
"application/fdf": {
|
|
622
|
+
"source": "iana",
|
|
623
|
+
"extensions": ["fdf"]
|
|
624
|
+
},
|
|
520
625
|
"application/fdt+xml": {
|
|
521
626
|
"source": "iana",
|
|
522
627
|
"compressible": true,
|
|
@@ -567,6 +672,10 @@
|
|
|
567
672
|
"application/geopackage+sqlite3": {
|
|
568
673
|
"source": "iana"
|
|
569
674
|
},
|
|
675
|
+
"application/geoxacml+json": {
|
|
676
|
+
"source": "iana",
|
|
677
|
+
"compressible": true
|
|
678
|
+
},
|
|
570
679
|
"application/geoxacml+xml": {
|
|
571
680
|
"source": "iana",
|
|
572
681
|
"compressible": true
|
|
@@ -579,11 +688,26 @@
|
|
|
579
688
|
"compressible": true,
|
|
580
689
|
"extensions": ["gml"]
|
|
581
690
|
},
|
|
691
|
+
"application/gnap-binding-jws": {
|
|
692
|
+
"source": "iana"
|
|
693
|
+
},
|
|
694
|
+
"application/gnap-binding-jwsd": {
|
|
695
|
+
"source": "iana"
|
|
696
|
+
},
|
|
697
|
+
"application/gnap-binding-rotation-jws": {
|
|
698
|
+
"source": "iana"
|
|
699
|
+
},
|
|
700
|
+
"application/gnap-binding-rotation-jwsd": {
|
|
701
|
+
"source": "iana"
|
|
702
|
+
},
|
|
582
703
|
"application/gpx+xml": {
|
|
583
704
|
"source": "apache",
|
|
584
705
|
"compressible": true,
|
|
585
706
|
"extensions": ["gpx"]
|
|
586
707
|
},
|
|
708
|
+
"application/grib": {
|
|
709
|
+
"source": "iana"
|
|
710
|
+
},
|
|
587
711
|
"application/gxf": {
|
|
588
712
|
"source": "apache",
|
|
589
713
|
"extensions": ["gxf"]
|
|
@@ -603,6 +727,11 @@
|
|
|
603
727
|
"application/hjson": {
|
|
604
728
|
"extensions": ["hjson"]
|
|
605
729
|
},
|
|
730
|
+
"application/hl7v2+xml": {
|
|
731
|
+
"source": "iana",
|
|
732
|
+
"charset": "UTF-8",
|
|
733
|
+
"compressible": true
|
|
734
|
+
},
|
|
606
735
|
"application/http": {
|
|
607
736
|
"source": "iana"
|
|
608
737
|
},
|
|
@@ -668,7 +797,7 @@
|
|
|
668
797
|
"extensions": ["its"]
|
|
669
798
|
},
|
|
670
799
|
"application/java-archive": {
|
|
671
|
-
"source": "
|
|
800
|
+
"source": "iana",
|
|
672
801
|
"compressible": false,
|
|
673
802
|
"extensions": ["jar","war","ear"]
|
|
674
803
|
},
|
|
@@ -683,10 +812,10 @@
|
|
|
683
812
|
"extensions": ["class"]
|
|
684
813
|
},
|
|
685
814
|
"application/javascript": {
|
|
686
|
-
"source": "
|
|
815
|
+
"source": "apache",
|
|
687
816
|
"charset": "UTF-8",
|
|
688
817
|
"compressible": true,
|
|
689
|
-
"extensions": ["js"
|
|
818
|
+
"extensions": ["js"]
|
|
690
819
|
},
|
|
691
820
|
"application/jf2feed+json": {
|
|
692
821
|
"source": "iana",
|
|
@@ -707,6 +836,10 @@
|
|
|
707
836
|
"source": "iana",
|
|
708
837
|
"compressible": true
|
|
709
838
|
},
|
|
839
|
+
"application/jscontact+json": {
|
|
840
|
+
"source": "iana",
|
|
841
|
+
"compressible": true
|
|
842
|
+
},
|
|
710
843
|
"application/json": {
|
|
711
844
|
"source": "iana",
|
|
712
845
|
"charset": "UTF-8",
|
|
@@ -728,6 +861,9 @@
|
|
|
728
861
|
"compressible": true,
|
|
729
862
|
"extensions": ["jsonml"]
|
|
730
863
|
},
|
|
864
|
+
"application/jsonpath": {
|
|
865
|
+
"source": "iana"
|
|
866
|
+
},
|
|
731
867
|
"application/jwk+json": {
|
|
732
868
|
"source": "iana",
|
|
733
869
|
"compressible": true
|
|
@@ -760,10 +896,20 @@
|
|
|
760
896
|
"application/link-format": {
|
|
761
897
|
"source": "iana"
|
|
762
898
|
},
|
|
899
|
+
"application/linkset": {
|
|
900
|
+
"source": "iana"
|
|
901
|
+
},
|
|
902
|
+
"application/linkset+json": {
|
|
903
|
+
"source": "iana",
|
|
904
|
+
"compressible": true
|
|
905
|
+
},
|
|
763
906
|
"application/load-control+xml": {
|
|
764
907
|
"source": "iana",
|
|
765
908
|
"compressible": true
|
|
766
909
|
},
|
|
910
|
+
"application/logout+jwt": {
|
|
911
|
+
"source": "iana"
|
|
912
|
+
},
|
|
767
913
|
"application/lost+xml": {
|
|
768
914
|
"source": "iana",
|
|
769
915
|
"compressible": true,
|
|
@@ -954,7 +1100,7 @@
|
|
|
954
1100
|
},
|
|
955
1101
|
"application/mp4": {
|
|
956
1102
|
"source": "iana",
|
|
957
|
-
"extensions": ["mp4s","m4p"]
|
|
1103
|
+
"extensions": ["mp4","mpg4","mp4s","m4p"]
|
|
958
1104
|
},
|
|
959
1105
|
"application/mpeg4-generic": {
|
|
960
1106
|
"source": "iana"
|
|
@@ -983,6 +1129,14 @@
|
|
|
983
1129
|
"charset": "UTF-8",
|
|
984
1130
|
"compressible": true
|
|
985
1131
|
},
|
|
1132
|
+
"application/msix": {
|
|
1133
|
+
"compressible": false,
|
|
1134
|
+
"extensions": ["msix"]
|
|
1135
|
+
},
|
|
1136
|
+
"application/msixbundle": {
|
|
1137
|
+
"compressible": false,
|
|
1138
|
+
"extensions": ["msixbundle"]
|
|
1139
|
+
},
|
|
986
1140
|
"application/msword": {
|
|
987
1141
|
"source": "iana",
|
|
988
1142
|
"compressible": false,
|
|
@@ -1070,6 +1224,9 @@
|
|
|
1070
1224
|
"compressible": false,
|
|
1071
1225
|
"extensions": ["ogx"]
|
|
1072
1226
|
},
|
|
1227
|
+
"application/ohttp-keys": {
|
|
1228
|
+
"source": "iana"
|
|
1229
|
+
},
|
|
1073
1230
|
"application/omdoc+xml": {
|
|
1074
1231
|
"source": "apache",
|
|
1075
1232
|
"compressible": true,
|
|
@@ -1135,7 +1292,7 @@
|
|
|
1135
1292
|
},
|
|
1136
1293
|
"application/pgp-signature": {
|
|
1137
1294
|
"source": "iana",
|
|
1138
|
-
"extensions": ["
|
|
1295
|
+
"extensions": ["sig","asc"]
|
|
1139
1296
|
},
|
|
1140
1297
|
"application/pics-rules": {
|
|
1141
1298
|
"source": "apache",
|
|
@@ -1212,6 +1369,15 @@
|
|
|
1212
1369
|
"source": "iana",
|
|
1213
1370
|
"compressible": true
|
|
1214
1371
|
},
|
|
1372
|
+
"application/private-token-issuer-directory": {
|
|
1373
|
+
"source": "iana"
|
|
1374
|
+
},
|
|
1375
|
+
"application/private-token-request": {
|
|
1376
|
+
"source": "iana"
|
|
1377
|
+
},
|
|
1378
|
+
"application/private-token-response": {
|
|
1379
|
+
"source": "iana"
|
|
1380
|
+
},
|
|
1215
1381
|
"application/problem+json": {
|
|
1216
1382
|
"source": "iana",
|
|
1217
1383
|
"compressible": true
|
|
@@ -1240,6 +1406,26 @@
|
|
|
1240
1406
|
"source": "iana",
|
|
1241
1407
|
"compressible": false
|
|
1242
1408
|
},
|
|
1409
|
+
"application/prs.implied-document+xml": {
|
|
1410
|
+
"source": "iana",
|
|
1411
|
+
"compressible": true
|
|
1412
|
+
},
|
|
1413
|
+
"application/prs.implied-executable": {
|
|
1414
|
+
"source": "iana"
|
|
1415
|
+
},
|
|
1416
|
+
"application/prs.implied-object+json": {
|
|
1417
|
+
"source": "iana",
|
|
1418
|
+
"compressible": true
|
|
1419
|
+
},
|
|
1420
|
+
"application/prs.implied-object+json-seq": {
|
|
1421
|
+
"source": "iana"
|
|
1422
|
+
},
|
|
1423
|
+
"application/prs.implied-object+yaml": {
|
|
1424
|
+
"source": "iana"
|
|
1425
|
+
},
|
|
1426
|
+
"application/prs.implied-structure": {
|
|
1427
|
+
"source": "iana"
|
|
1428
|
+
},
|
|
1243
1429
|
"application/prs.nprend": {
|
|
1244
1430
|
"source": "iana"
|
|
1245
1431
|
},
|
|
@@ -1249,9 +1435,13 @@
|
|
|
1249
1435
|
"application/prs.rdf-xml-crypt": {
|
|
1250
1436
|
"source": "iana"
|
|
1251
1437
|
},
|
|
1438
|
+
"application/prs.vcfbzip2": {
|
|
1439
|
+
"source": "iana"
|
|
1440
|
+
},
|
|
1252
1441
|
"application/prs.xsf+xml": {
|
|
1253
1442
|
"source": "iana",
|
|
1254
|
-
"compressible": true
|
|
1443
|
+
"compressible": true,
|
|
1444
|
+
"extensions": ["xsf"]
|
|
1255
1445
|
},
|
|
1256
1446
|
"application/pskc+xml": {
|
|
1257
1447
|
"source": "iana",
|
|
@@ -1291,7 +1481,7 @@
|
|
|
1291
1481
|
"extensions": ["rnc"]
|
|
1292
1482
|
},
|
|
1293
1483
|
"application/remote-printing": {
|
|
1294
|
-
"source": "
|
|
1484
|
+
"source": "apache"
|
|
1295
1485
|
},
|
|
1296
1486
|
"application/reputon+json": {
|
|
1297
1487
|
"source": "iana",
|
|
@@ -1338,6 +1528,9 @@
|
|
|
1338
1528
|
"compressible": true,
|
|
1339
1529
|
"extensions": ["rusd"]
|
|
1340
1530
|
},
|
|
1531
|
+
"application/rpki-checklist": {
|
|
1532
|
+
"source": "iana"
|
|
1533
|
+
},
|
|
1341
1534
|
"application/rpki-ghostbusters": {
|
|
1342
1535
|
"source": "iana",
|
|
1343
1536
|
"extensions": ["gbr"]
|
|
@@ -1353,6 +1546,9 @@
|
|
|
1353
1546
|
"source": "iana",
|
|
1354
1547
|
"extensions": ["roa"]
|
|
1355
1548
|
},
|
|
1549
|
+
"application/rpki-signed-tal": {
|
|
1550
|
+
"source": "iana"
|
|
1551
|
+
},
|
|
1356
1552
|
"application/rpki-updown": {
|
|
1357
1553
|
"source": "iana"
|
|
1358
1554
|
},
|
|
@@ -1525,7 +1721,7 @@
|
|
|
1525
1721
|
"source": "iana"
|
|
1526
1722
|
},
|
|
1527
1723
|
"application/smil": {
|
|
1528
|
-
"source": "
|
|
1724
|
+
"source": "apache"
|
|
1529
1725
|
},
|
|
1530
1726
|
"application/smil+xml": {
|
|
1531
1727
|
"source": "iana",
|
|
@@ -1560,7 +1756,8 @@
|
|
|
1560
1756
|
"compressible": true
|
|
1561
1757
|
},
|
|
1562
1758
|
"application/sql": {
|
|
1563
|
-
"source": "iana"
|
|
1759
|
+
"source": "iana",
|
|
1760
|
+
"extensions": ["sql"]
|
|
1564
1761
|
},
|
|
1565
1762
|
"application/srgs": {
|
|
1566
1763
|
"source": "iana",
|
|
@@ -1586,10 +1783,19 @@
|
|
|
1586
1783
|
"compressible": true,
|
|
1587
1784
|
"extensions": ["ssml"]
|
|
1588
1785
|
},
|
|
1786
|
+
"application/st2110-41": {
|
|
1787
|
+
"source": "iana"
|
|
1788
|
+
},
|
|
1589
1789
|
"application/stix+json": {
|
|
1590
1790
|
"source": "iana",
|
|
1591
1791
|
"compressible": true
|
|
1592
1792
|
},
|
|
1793
|
+
"application/stratum": {
|
|
1794
|
+
"source": "iana"
|
|
1795
|
+
},
|
|
1796
|
+
"application/swid+cbor": {
|
|
1797
|
+
"source": "iana"
|
|
1798
|
+
},
|
|
1593
1799
|
"application/swid+xml": {
|
|
1594
1800
|
"source": "iana",
|
|
1595
1801
|
"compressible": true,
|
|
@@ -1669,6 +1875,10 @@
|
|
|
1669
1875
|
"source": "iana",
|
|
1670
1876
|
"compressible": true
|
|
1671
1877
|
},
|
|
1878
|
+
"application/tm+json": {
|
|
1879
|
+
"source": "iana",
|
|
1880
|
+
"compressible": true
|
|
1881
|
+
},
|
|
1672
1882
|
"application/tnauthlist": {
|
|
1673
1883
|
"source": "iana"
|
|
1674
1884
|
},
|
|
@@ -1725,6 +1935,9 @@
|
|
|
1725
1935
|
"source": "iana",
|
|
1726
1936
|
"compressible": true
|
|
1727
1937
|
},
|
|
1938
|
+
"application/vc": {
|
|
1939
|
+
"source": "iana"
|
|
1940
|
+
},
|
|
1728
1941
|
"application/vcard+json": {
|
|
1729
1942
|
"source": "iana",
|
|
1730
1943
|
"compressible": true
|
|
@@ -1744,20 +1957,41 @@
|
|
|
1744
1957
|
"compressible": true,
|
|
1745
1958
|
"extensions": ["1km"]
|
|
1746
1959
|
},
|
|
1960
|
+
"application/vnd.1ob": {
|
|
1961
|
+
"source": "iana"
|
|
1962
|
+
},
|
|
1747
1963
|
"application/vnd.3gpp-prose+xml": {
|
|
1748
1964
|
"source": "iana",
|
|
1749
1965
|
"compressible": true
|
|
1750
1966
|
},
|
|
1967
|
+
"application/vnd.3gpp-prose-pc3a+xml": {
|
|
1968
|
+
"source": "iana",
|
|
1969
|
+
"compressible": true
|
|
1970
|
+
},
|
|
1971
|
+
"application/vnd.3gpp-prose-pc3ach+xml": {
|
|
1972
|
+
"source": "iana",
|
|
1973
|
+
"compressible": true
|
|
1974
|
+
},
|
|
1751
1975
|
"application/vnd.3gpp-prose-pc3ch+xml": {
|
|
1752
1976
|
"source": "iana",
|
|
1753
1977
|
"compressible": true
|
|
1754
1978
|
},
|
|
1979
|
+
"application/vnd.3gpp-prose-pc8+xml": {
|
|
1980
|
+
"source": "iana",
|
|
1981
|
+
"compressible": true
|
|
1982
|
+
},
|
|
1755
1983
|
"application/vnd.3gpp-v2x-local-service-information": {
|
|
1756
1984
|
"source": "iana"
|
|
1757
1985
|
},
|
|
1758
1986
|
"application/vnd.3gpp.5gnas": {
|
|
1759
1987
|
"source": "iana"
|
|
1760
1988
|
},
|
|
1989
|
+
"application/vnd.3gpp.5gsa2x": {
|
|
1990
|
+
"source": "iana"
|
|
1991
|
+
},
|
|
1992
|
+
"application/vnd.3gpp.5gsa2x-local-service-information": {
|
|
1993
|
+
"source": "iana"
|
|
1994
|
+
},
|
|
1761
1995
|
"application/vnd.3gpp.access-transfer-events+xml": {
|
|
1762
1996
|
"source": "iana",
|
|
1763
1997
|
"compressible": true
|
|
@@ -1766,6 +2000,14 @@
|
|
|
1766
2000
|
"source": "iana",
|
|
1767
2001
|
"compressible": true
|
|
1768
2002
|
},
|
|
2003
|
+
"application/vnd.3gpp.crs+xml": {
|
|
2004
|
+
"source": "iana",
|
|
2005
|
+
"compressible": true
|
|
2006
|
+
},
|
|
2007
|
+
"application/vnd.3gpp.current-location-discovery+xml": {
|
|
2008
|
+
"source": "iana",
|
|
2009
|
+
"compressible": true
|
|
2010
|
+
},
|
|
1769
2011
|
"application/vnd.3gpp.gmop+xml": {
|
|
1770
2012
|
"source": "iana",
|
|
1771
2013
|
"compressible": true
|
|
@@ -1790,9 +2032,17 @@
|
|
|
1790
2032
|
"source": "iana",
|
|
1791
2033
|
"compressible": true
|
|
1792
2034
|
},
|
|
2035
|
+
"application/vnd.3gpp.mcdata-msgstore-ctrl-request+xml": {
|
|
2036
|
+
"source": "iana",
|
|
2037
|
+
"compressible": true
|
|
2038
|
+
},
|
|
1793
2039
|
"application/vnd.3gpp.mcdata-payload": {
|
|
1794
2040
|
"source": "iana"
|
|
1795
2041
|
},
|
|
2042
|
+
"application/vnd.3gpp.mcdata-regroup+xml": {
|
|
2043
|
+
"source": "iana",
|
|
2044
|
+
"compressible": true
|
|
2045
|
+
},
|
|
1796
2046
|
"application/vnd.3gpp.mcdata-service-config+xml": {
|
|
1797
2047
|
"source": "iana",
|
|
1798
2048
|
"compressible": true
|
|
@@ -1828,6 +2078,10 @@
|
|
|
1828
2078
|
"source": "iana",
|
|
1829
2079
|
"compressible": true
|
|
1830
2080
|
},
|
|
2081
|
+
"application/vnd.3gpp.mcptt-regroup+xml": {
|
|
2082
|
+
"source": "iana",
|
|
2083
|
+
"compressible": true
|
|
2084
|
+
},
|
|
1831
2085
|
"application/vnd.3gpp.mcptt-service-config+xml": {
|
|
1832
2086
|
"source": "iana",
|
|
1833
2087
|
"compressible": true
|
|
@@ -1852,10 +2106,6 @@
|
|
|
1852
2106
|
"source": "iana",
|
|
1853
2107
|
"compressible": true
|
|
1854
2108
|
},
|
|
1855
|
-
"application/vnd.3gpp.mcvideo-affiliation-info+xml": {
|
|
1856
|
-
"source": "iana",
|
|
1857
|
-
"compressible": true
|
|
1858
|
-
},
|
|
1859
2109
|
"application/vnd.3gpp.mcvideo-info+xml": {
|
|
1860
2110
|
"source": "iana",
|
|
1861
2111
|
"compressible": true
|
|
@@ -1868,6 +2118,10 @@
|
|
|
1868
2118
|
"source": "iana",
|
|
1869
2119
|
"compressible": true
|
|
1870
2120
|
},
|
|
2121
|
+
"application/vnd.3gpp.mcvideo-regroup+xml": {
|
|
2122
|
+
"source": "iana",
|
|
2123
|
+
"compressible": true
|
|
2124
|
+
},
|
|
1871
2125
|
"application/vnd.3gpp.mcvideo-service-config+xml": {
|
|
1872
2126
|
"source": "iana",
|
|
1873
2127
|
"compressible": true
|
|
@@ -1906,9 +2160,45 @@
|
|
|
1906
2160
|
"source": "iana",
|
|
1907
2161
|
"extensions": ["pvb"]
|
|
1908
2162
|
},
|
|
2163
|
+
"application/vnd.3gpp.pinapp-info+xml": {
|
|
2164
|
+
"source": "iana",
|
|
2165
|
+
"compressible": true
|
|
2166
|
+
},
|
|
1909
2167
|
"application/vnd.3gpp.s1ap": {
|
|
1910
2168
|
"source": "iana"
|
|
1911
2169
|
},
|
|
2170
|
+
"application/vnd.3gpp.seal-group-doc+xml": {
|
|
2171
|
+
"source": "iana",
|
|
2172
|
+
"compressible": true
|
|
2173
|
+
},
|
|
2174
|
+
"application/vnd.3gpp.seal-info+xml": {
|
|
2175
|
+
"source": "iana",
|
|
2176
|
+
"compressible": true
|
|
2177
|
+
},
|
|
2178
|
+
"application/vnd.3gpp.seal-location-info+xml": {
|
|
2179
|
+
"source": "iana",
|
|
2180
|
+
"compressible": true
|
|
2181
|
+
},
|
|
2182
|
+
"application/vnd.3gpp.seal-mbms-usage-info+xml": {
|
|
2183
|
+
"source": "iana",
|
|
2184
|
+
"compressible": true
|
|
2185
|
+
},
|
|
2186
|
+
"application/vnd.3gpp.seal-network-qos-management-info+xml": {
|
|
2187
|
+
"source": "iana",
|
|
2188
|
+
"compressible": true
|
|
2189
|
+
},
|
|
2190
|
+
"application/vnd.3gpp.seal-ue-config-info+xml": {
|
|
2191
|
+
"source": "iana",
|
|
2192
|
+
"compressible": true
|
|
2193
|
+
},
|
|
2194
|
+
"application/vnd.3gpp.seal-unicast-info+xml": {
|
|
2195
|
+
"source": "iana",
|
|
2196
|
+
"compressible": true
|
|
2197
|
+
},
|
|
2198
|
+
"application/vnd.3gpp.seal-user-profile-info+xml": {
|
|
2199
|
+
"source": "iana",
|
|
2200
|
+
"compressible": true
|
|
2201
|
+
},
|
|
1912
2202
|
"application/vnd.3gpp.sms": {
|
|
1913
2203
|
"source": "iana"
|
|
1914
2204
|
},
|
|
@@ -1932,6 +2222,13 @@
|
|
|
1932
2222
|
"source": "iana",
|
|
1933
2223
|
"compressible": true
|
|
1934
2224
|
},
|
|
2225
|
+
"application/vnd.3gpp.v2x": {
|
|
2226
|
+
"source": "iana"
|
|
2227
|
+
},
|
|
2228
|
+
"application/vnd.3gpp.vae-info+xml": {
|
|
2229
|
+
"source": "iana",
|
|
2230
|
+
"compressible": true
|
|
2231
|
+
},
|
|
1935
2232
|
"application/vnd.3gpp2.bcmcsinfo+xml": {
|
|
1936
2233
|
"source": "iana",
|
|
1937
2234
|
"compressible": true
|
|
@@ -1958,6 +2255,14 @@
|
|
|
1958
2255
|
"source": "iana",
|
|
1959
2256
|
"extensions": ["imp"]
|
|
1960
2257
|
},
|
|
2258
|
+
"application/vnd.acm.addressxfer+json": {
|
|
2259
|
+
"source": "iana",
|
|
2260
|
+
"compressible": true
|
|
2261
|
+
},
|
|
2262
|
+
"application/vnd.acm.chatbot+json": {
|
|
2263
|
+
"source": "iana",
|
|
2264
|
+
"compressible": true
|
|
2265
|
+
},
|
|
1961
2266
|
"application/vnd.acucobol": {
|
|
1962
2267
|
"source": "iana",
|
|
1963
2268
|
"extensions": ["acu"]
|
|
@@ -1991,7 +2296,7 @@
|
|
|
1991
2296
|
"extensions": ["xdp"]
|
|
1992
2297
|
},
|
|
1993
2298
|
"application/vnd.adobe.xfdf": {
|
|
1994
|
-
"source": "
|
|
2299
|
+
"source": "apache",
|
|
1995
2300
|
"extensions": ["xfdf"]
|
|
1996
2301
|
},
|
|
1997
2302
|
"application/vnd.aether.imp": {
|
|
@@ -2041,7 +2346,7 @@
|
|
|
2041
2346
|
"extensions": ["age"]
|
|
2042
2347
|
},
|
|
2043
2348
|
"application/vnd.ah-barcode": {
|
|
2044
|
-
"source": "
|
|
2349
|
+
"source": "apache"
|
|
2045
2350
|
},
|
|
2046
2351
|
"application/vnd.ahead.space": {
|
|
2047
2352
|
"source": "iana",
|
|
@@ -2107,6 +2412,9 @@
|
|
|
2107
2412
|
"application/vnd.apache.arrow.stream": {
|
|
2108
2413
|
"source": "iana"
|
|
2109
2414
|
},
|
|
2415
|
+
"application/vnd.apache.parquet": {
|
|
2416
|
+
"source": "iana"
|
|
2417
|
+
},
|
|
2110
2418
|
"application/vnd.apache.thrift.binary": {
|
|
2111
2419
|
"source": "iana"
|
|
2112
2420
|
},
|
|
@@ -2116,6 +2424,9 @@
|
|
|
2116
2424
|
"application/vnd.apache.thrift.json": {
|
|
2117
2425
|
"source": "iana"
|
|
2118
2426
|
},
|
|
2427
|
+
"application/vnd.apexlang": {
|
|
2428
|
+
"source": "iana"
|
|
2429
|
+
},
|
|
2119
2430
|
"application/vnd.api+json": {
|
|
2120
2431
|
"source": "iana",
|
|
2121
2432
|
"compressible": true
|
|
@@ -2154,7 +2465,7 @@
|
|
|
2154
2465
|
"extensions": ["pkpass"]
|
|
2155
2466
|
},
|
|
2156
2467
|
"application/vnd.arastra.swi": {
|
|
2157
|
-
"source": "
|
|
2468
|
+
"source": "apache"
|
|
2158
2469
|
},
|
|
2159
2470
|
"application/vnd.aristanetworks.swi": {
|
|
2160
2471
|
"source": "iana",
|
|
@@ -2211,6 +2522,14 @@
|
|
|
2211
2522
|
"source": "iana",
|
|
2212
2523
|
"compressible": true
|
|
2213
2524
|
},
|
|
2525
|
+
"application/vnd.belightsoft.lhzd+zip": {
|
|
2526
|
+
"source": "iana",
|
|
2527
|
+
"compressible": false
|
|
2528
|
+
},
|
|
2529
|
+
"application/vnd.belightsoft.lhzl+zip": {
|
|
2530
|
+
"source": "iana",
|
|
2531
|
+
"compressible": false
|
|
2532
|
+
},
|
|
2214
2533
|
"application/vnd.bint.med-content": {
|
|
2215
2534
|
"source": "iana"
|
|
2216
2535
|
},
|
|
@@ -2249,6 +2568,13 @@
|
|
|
2249
2568
|
"source": "iana",
|
|
2250
2569
|
"compressible": true
|
|
2251
2570
|
},
|
|
2571
|
+
"application/vnd.bzip3": {
|
|
2572
|
+
"source": "iana"
|
|
2573
|
+
},
|
|
2574
|
+
"application/vnd.c3voc.schedule+xml": {
|
|
2575
|
+
"source": "iana",
|
|
2576
|
+
"compressible": true
|
|
2577
|
+
},
|
|
2252
2578
|
"application/vnd.cab-jscript": {
|
|
2253
2579
|
"source": "iana"
|
|
2254
2580
|
},
|
|
@@ -2315,6 +2641,16 @@
|
|
|
2315
2641
|
"source": "iana",
|
|
2316
2642
|
"extensions": ["c11amz"]
|
|
2317
2643
|
},
|
|
2644
|
+
"application/vnd.cncf.helm.chart.content.v1.tar+gzip": {
|
|
2645
|
+
"source": "iana"
|
|
2646
|
+
},
|
|
2647
|
+
"application/vnd.cncf.helm.chart.provenance.v1.prov": {
|
|
2648
|
+
"source": "iana"
|
|
2649
|
+
},
|
|
2650
|
+
"application/vnd.cncf.helm.config.v1+json": {
|
|
2651
|
+
"source": "iana",
|
|
2652
|
+
"compressible": true
|
|
2653
|
+
},
|
|
2318
2654
|
"application/vnd.coffeescript": {
|
|
2319
2655
|
"source": "iana"
|
|
2320
2656
|
},
|
|
@@ -2481,6 +2817,9 @@
|
|
|
2481
2817
|
"source": "iana",
|
|
2482
2818
|
"extensions": ["rdz"]
|
|
2483
2819
|
},
|
|
2820
|
+
"application/vnd.datalog": {
|
|
2821
|
+
"source": "iana"
|
|
2822
|
+
},
|
|
2484
2823
|
"application/vnd.datapackage+json": {
|
|
2485
2824
|
"source": "iana",
|
|
2486
2825
|
"compressible": true
|
|
@@ -2691,6 +3030,10 @@
|
|
|
2691
3030
|
"application/vnd.efi.iso": {
|
|
2692
3031
|
"source": "iana"
|
|
2693
3032
|
},
|
|
3033
|
+
"application/vnd.eln+zip": {
|
|
3034
|
+
"source": "iana",
|
|
3035
|
+
"compressible": false
|
|
3036
|
+
},
|
|
2694
3037
|
"application/vnd.emclient.accessrequest+xml": {
|
|
2695
3038
|
"source": "iana",
|
|
2696
3039
|
"compressible": true
|
|
@@ -2729,6 +3072,9 @@
|
|
|
2729
3072
|
"application/vnd.ericsson.quickcall": {
|
|
2730
3073
|
"source": "iana"
|
|
2731
3074
|
},
|
|
3075
|
+
"application/vnd.erofs": {
|
|
3076
|
+
"source": "iana"
|
|
3077
|
+
},
|
|
2732
3078
|
"application/vnd.espass-espass+zip": {
|
|
2733
3079
|
"source": "iana",
|
|
2734
3080
|
"compressible": false
|
|
@@ -2865,7 +3211,7 @@
|
|
|
2865
3211
|
"source": "iana"
|
|
2866
3212
|
},
|
|
2867
3213
|
"application/vnd.fdf": {
|
|
2868
|
-
"source": "
|
|
3214
|
+
"source": "apache",
|
|
2869
3215
|
"extensions": ["fdf"]
|
|
2870
3216
|
},
|
|
2871
3217
|
"application/vnd.fdsn.mseed": {
|
|
@@ -2907,12 +3253,15 @@
|
|
|
2907
3253
|
"source": "iana",
|
|
2908
3254
|
"extensions": ["fm","frame","maker","book"]
|
|
2909
3255
|
},
|
|
3256
|
+
"application/vnd.freelog.comic": {
|
|
3257
|
+
"source": "iana"
|
|
3258
|
+
},
|
|
2910
3259
|
"application/vnd.frogans.fnc": {
|
|
2911
|
-
"source": "
|
|
3260
|
+
"source": "apache",
|
|
2912
3261
|
"extensions": ["fnc"]
|
|
2913
3262
|
},
|
|
2914
3263
|
"application/vnd.frogans.ltf": {
|
|
2915
|
-
"source": "
|
|
3264
|
+
"source": "apache",
|
|
2916
3265
|
"extensions": ["ltf"]
|
|
2917
3266
|
},
|
|
2918
3267
|
"application/vnd.fsc.weblaunch": {
|
|
@@ -2990,28 +3339,58 @@
|
|
|
2990
3339
|
"source": "iana",
|
|
2991
3340
|
"extensions": ["fzs"]
|
|
2992
3341
|
},
|
|
3342
|
+
"application/vnd.ga4gh.passport+jwt": {
|
|
3343
|
+
"source": "iana"
|
|
3344
|
+
},
|
|
2993
3345
|
"application/vnd.genomatix.tuxedo": {
|
|
2994
3346
|
"source": "iana",
|
|
2995
3347
|
"extensions": ["txd"]
|
|
2996
3348
|
},
|
|
3349
|
+
"application/vnd.genozip": {
|
|
3350
|
+
"source": "iana"
|
|
3351
|
+
},
|
|
2997
3352
|
"application/vnd.gentics.grd+json": {
|
|
2998
3353
|
"source": "iana",
|
|
2999
3354
|
"compressible": true
|
|
3000
3355
|
},
|
|
3001
|
-
"application/vnd.
|
|
3356
|
+
"application/vnd.gentoo.catmetadata+xml": {
|
|
3002
3357
|
"source": "iana",
|
|
3003
3358
|
"compressible": true
|
|
3004
3359
|
},
|
|
3005
|
-
"application/vnd.
|
|
3360
|
+
"application/vnd.gentoo.ebuild": {
|
|
3361
|
+
"source": "iana"
|
|
3362
|
+
},
|
|
3363
|
+
"application/vnd.gentoo.eclass": {
|
|
3364
|
+
"source": "iana"
|
|
3365
|
+
},
|
|
3366
|
+
"application/vnd.gentoo.gpkg": {
|
|
3367
|
+
"source": "iana"
|
|
3368
|
+
},
|
|
3369
|
+
"application/vnd.gentoo.manifest": {
|
|
3370
|
+
"source": "iana"
|
|
3371
|
+
},
|
|
3372
|
+
"application/vnd.gentoo.pkgmetadata+xml": {
|
|
3006
3373
|
"source": "iana",
|
|
3007
3374
|
"compressible": true
|
|
3008
3375
|
},
|
|
3376
|
+
"application/vnd.gentoo.xpak": {
|
|
3377
|
+
"source": "iana"
|
|
3378
|
+
},
|
|
3379
|
+
"application/vnd.geo+json": {
|
|
3380
|
+
"source": "apache",
|
|
3381
|
+
"compressible": true
|
|
3382
|
+
},
|
|
3383
|
+
"application/vnd.geocube+xml": {
|
|
3384
|
+
"source": "apache",
|
|
3385
|
+
"compressible": true
|
|
3386
|
+
},
|
|
3009
3387
|
"application/vnd.geogebra.file": {
|
|
3010
3388
|
"source": "iana",
|
|
3011
3389
|
"extensions": ["ggb"]
|
|
3012
3390
|
},
|
|
3013
3391
|
"application/vnd.geogebra.slides": {
|
|
3014
|
-
"source": "iana"
|
|
3392
|
+
"source": "iana",
|
|
3393
|
+
"extensions": ["ggs"]
|
|
3015
3394
|
},
|
|
3016
3395
|
"application/vnd.geogebra.tool": {
|
|
3017
3396
|
"source": "iana",
|
|
@@ -3046,6 +3425,14 @@
|
|
|
3046
3425
|
"source": "iana",
|
|
3047
3426
|
"extensions": ["gmx"]
|
|
3048
3427
|
},
|
|
3428
|
+
"application/vnd.gnu.taler.exchange+json": {
|
|
3429
|
+
"source": "iana",
|
|
3430
|
+
"compressible": true
|
|
3431
|
+
},
|
|
3432
|
+
"application/vnd.gnu.taler.merchant+json": {
|
|
3433
|
+
"source": "iana",
|
|
3434
|
+
"compressible": true
|
|
3435
|
+
},
|
|
3049
3436
|
"application/vnd.google-apps.document": {
|
|
3050
3437
|
"compressible": false,
|
|
3051
3438
|
"extensions": ["gdoc"]
|
|
@@ -3069,7 +3456,7 @@
|
|
|
3069
3456
|
"extensions": ["kmz"]
|
|
3070
3457
|
},
|
|
3071
3458
|
"application/vnd.gov.sk.e-form+xml": {
|
|
3072
|
-
"source": "
|
|
3459
|
+
"source": "apache",
|
|
3073
3460
|
"compressible": true
|
|
3074
3461
|
},
|
|
3075
3462
|
"application/vnd.gov.sk.e-form+zip": {
|
|
@@ -3077,6 +3464,11 @@
|
|
|
3077
3464
|
"compressible": false
|
|
3078
3465
|
},
|
|
3079
3466
|
"application/vnd.gov.sk.xmldatacontainer+xml": {
|
|
3467
|
+
"source": "iana",
|
|
3468
|
+
"compressible": true,
|
|
3469
|
+
"extensions": ["xdcf"]
|
|
3470
|
+
},
|
|
3471
|
+
"application/vnd.gpxsee.map+xml": {
|
|
3080
3472
|
"source": "iana",
|
|
3081
3473
|
"compressible": true
|
|
3082
3474
|
},
|
|
@@ -3151,16 +3543,6 @@
|
|
|
3151
3543
|
"source": "iana",
|
|
3152
3544
|
"extensions": ["les"]
|
|
3153
3545
|
},
|
|
3154
|
-
"application/vnd.hl7cda+xml": {
|
|
3155
|
-
"source": "iana",
|
|
3156
|
-
"charset": "UTF-8",
|
|
3157
|
-
"compressible": true
|
|
3158
|
-
},
|
|
3159
|
-
"application/vnd.hl7v2+xml": {
|
|
3160
|
-
"source": "iana",
|
|
3161
|
-
"charset": "UTF-8",
|
|
3162
|
-
"compressible": true
|
|
3163
|
-
},
|
|
3164
3546
|
"application/vnd.hp-hpgl": {
|
|
3165
3547
|
"source": "iana",
|
|
3166
3548
|
"extensions": ["hpgl"]
|
|
@@ -3185,6 +3567,9 @@
|
|
|
3185
3567
|
"source": "iana",
|
|
3186
3568
|
"extensions": ["pclxl"]
|
|
3187
3569
|
},
|
|
3570
|
+
"application/vnd.hsl": {
|
|
3571
|
+
"source": "iana"
|
|
3572
|
+
},
|
|
3188
3573
|
"application/vnd.httphone": {
|
|
3189
3574
|
"source": "iana"
|
|
3190
3575
|
},
|
|
@@ -3208,7 +3593,7 @@
|
|
|
3208
3593
|
"source": "iana"
|
|
3209
3594
|
},
|
|
3210
3595
|
"application/vnd.ibm.afplinedata": {
|
|
3211
|
-
"source": "
|
|
3596
|
+
"source": "apache"
|
|
3212
3597
|
},
|
|
3213
3598
|
"application/vnd.ibm.electronic-media": {
|
|
3214
3599
|
"source": "iana"
|
|
@@ -3218,7 +3603,7 @@
|
|
|
3218
3603
|
"extensions": ["mpy"]
|
|
3219
3604
|
},
|
|
3220
3605
|
"application/vnd.ibm.modcap": {
|
|
3221
|
-
"source": "
|
|
3606
|
+
"source": "apache",
|
|
3222
3607
|
"extensions": ["afp","listafp","list3820"]
|
|
3223
3608
|
},
|
|
3224
3609
|
"application/vnd.ibm.rights-management": {
|
|
@@ -3294,7 +3679,7 @@
|
|
|
3294
3679
|
"compressible": true
|
|
3295
3680
|
},
|
|
3296
3681
|
"application/vnd.informix-visionary": {
|
|
3297
|
-
"source": "
|
|
3682
|
+
"source": "apache"
|
|
3298
3683
|
},
|
|
3299
3684
|
"application/vnd.infotech.project": {
|
|
3300
3685
|
"source": "iana"
|
|
@@ -3332,6 +3717,21 @@
|
|
|
3332
3717
|
"source": "iana",
|
|
3333
3718
|
"extensions": ["qfx"]
|
|
3334
3719
|
},
|
|
3720
|
+
"application/vnd.ipfs.ipns-record": {
|
|
3721
|
+
"source": "iana"
|
|
3722
|
+
},
|
|
3723
|
+
"application/vnd.ipld.car": {
|
|
3724
|
+
"source": "iana"
|
|
3725
|
+
},
|
|
3726
|
+
"application/vnd.ipld.dag-cbor": {
|
|
3727
|
+
"source": "iana"
|
|
3728
|
+
},
|
|
3729
|
+
"application/vnd.ipld.dag-json": {
|
|
3730
|
+
"source": "iana"
|
|
3731
|
+
},
|
|
3732
|
+
"application/vnd.ipld.raw": {
|
|
3733
|
+
"source": "iana"
|
|
3734
|
+
},
|
|
3335
3735
|
"application/vnd.iptc.g2.catalogitem+xml": {
|
|
3336
3736
|
"source": "iana",
|
|
3337
3737
|
"compressible": true
|
|
@@ -3495,6 +3895,9 @@
|
|
|
3495
3895
|
"application/vnd.laszip": {
|
|
3496
3896
|
"source": "iana"
|
|
3497
3897
|
},
|
|
3898
|
+
"application/vnd.ldev.productlicensing": {
|
|
3899
|
+
"source": "iana"
|
|
3900
|
+
},
|
|
3498
3901
|
"application/vnd.leap+json": {
|
|
3499
3902
|
"source": "iana",
|
|
3500
3903
|
"compressible": true
|
|
@@ -3585,6 +3988,12 @@
|
|
|
3585
3988
|
"source": "iana",
|
|
3586
3989
|
"extensions": ["mcd"]
|
|
3587
3990
|
},
|
|
3991
|
+
"application/vnd.mdl": {
|
|
3992
|
+
"source": "iana"
|
|
3993
|
+
},
|
|
3994
|
+
"application/vnd.mdl-mbsdf": {
|
|
3995
|
+
"source": "iana"
|
|
3996
|
+
},
|
|
3588
3997
|
"application/vnd.medcalcdata": {
|
|
3589
3998
|
"source": "iana",
|
|
3590
3999
|
"extensions": ["mc1"]
|
|
@@ -3593,9 +4002,15 @@
|
|
|
3593
4002
|
"source": "iana",
|
|
3594
4003
|
"extensions": ["cdkey"]
|
|
3595
4004
|
},
|
|
4005
|
+
"application/vnd.medicalholodeck.recordxr": {
|
|
4006
|
+
"source": "iana"
|
|
4007
|
+
},
|
|
3596
4008
|
"application/vnd.meridian-slingshot": {
|
|
3597
4009
|
"source": "iana"
|
|
3598
4010
|
},
|
|
4011
|
+
"application/vnd.mermaid": {
|
|
4012
|
+
"source": "iana"
|
|
4013
|
+
},
|
|
3599
4014
|
"application/vnd.mfer": {
|
|
3600
4015
|
"source": "iana",
|
|
3601
4016
|
"extensions": ["mwf"]
|
|
@@ -3664,6 +4079,9 @@
|
|
|
3664
4079
|
"source": "iana",
|
|
3665
4080
|
"extensions": ["txf"]
|
|
3666
4081
|
},
|
|
4082
|
+
"application/vnd.modl": {
|
|
4083
|
+
"source": "iana"
|
|
4084
|
+
},
|
|
3667
4085
|
"application/vnd.mophun.application": {
|
|
3668
4086
|
"source": "iana",
|
|
3669
4087
|
"extensions": ["mpn"]
|
|
@@ -3883,6 +4301,9 @@
|
|
|
3883
4301
|
"source": "iana",
|
|
3884
4302
|
"extensions": ["mseq"]
|
|
3885
4303
|
},
|
|
4304
|
+
"application/vnd.msgpack": {
|
|
4305
|
+
"source": "iana"
|
|
4306
|
+
},
|
|
3886
4307
|
"application/vnd.msign": {
|
|
3887
4308
|
"source": "iana"
|
|
3888
4309
|
},
|
|
@@ -3911,6 +4332,22 @@
|
|
|
3911
4332
|
"source": "iana",
|
|
3912
4333
|
"compressible": true
|
|
3913
4334
|
},
|
|
4335
|
+
"application/vnd.nato.bindingdataobject+cbor": {
|
|
4336
|
+
"source": "iana"
|
|
4337
|
+
},
|
|
4338
|
+
"application/vnd.nato.bindingdataobject+json": {
|
|
4339
|
+
"source": "iana",
|
|
4340
|
+
"compressible": true
|
|
4341
|
+
},
|
|
4342
|
+
"application/vnd.nato.bindingdataobject+xml": {
|
|
4343
|
+
"source": "iana",
|
|
4344
|
+
"compressible": true,
|
|
4345
|
+
"extensions": ["bdo"]
|
|
4346
|
+
},
|
|
4347
|
+
"application/vnd.nato.openxmlformats-package.iepd+zip": {
|
|
4348
|
+
"source": "iana",
|
|
4349
|
+
"compressible": false
|
|
4350
|
+
},
|
|
3914
4351
|
"application/vnd.ncd.control": {
|
|
3915
4352
|
"source": "iana"
|
|
3916
4353
|
},
|
|
@@ -3997,7 +4434,7 @@
|
|
|
3997
4434
|
"extensions": ["ngdat"]
|
|
3998
4435
|
},
|
|
3999
4436
|
"application/vnd.nokia.n-gage.symbian.install": {
|
|
4000
|
-
"source": "
|
|
4437
|
+
"source": "apache",
|
|
4001
4438
|
"extensions": ["n-gage"]
|
|
4002
4439
|
},
|
|
4003
4440
|
"application/vnd.nokia.ncd": {
|
|
@@ -4045,6 +4482,19 @@
|
|
|
4045
4482
|
"application/vnd.ntt-local.sip-ta_tcp_stream": {
|
|
4046
4483
|
"source": "iana"
|
|
4047
4484
|
},
|
|
4485
|
+
"application/vnd.oai.workflows": {
|
|
4486
|
+
"source": "iana"
|
|
4487
|
+
},
|
|
4488
|
+
"application/vnd.oai.workflows+json": {
|
|
4489
|
+
"source": "iana",
|
|
4490
|
+
"compressible": true
|
|
4491
|
+
},
|
|
4492
|
+
"application/vnd.oai.workflows+yaml": {
|
|
4493
|
+
"source": "iana"
|
|
4494
|
+
},
|
|
4495
|
+
"application/vnd.oasis.opendocument.base": {
|
|
4496
|
+
"source": "iana"
|
|
4497
|
+
},
|
|
4048
4498
|
"application/vnd.oasis.opendocument.chart": {
|
|
4049
4499
|
"source": "iana",
|
|
4050
4500
|
"extensions": ["odc"]
|
|
@@ -4054,7 +4504,7 @@
|
|
|
4054
4504
|
"extensions": ["otc"]
|
|
4055
4505
|
},
|
|
4056
4506
|
"application/vnd.oasis.opendocument.database": {
|
|
4057
|
-
"source": "
|
|
4507
|
+
"source": "apache",
|
|
4058
4508
|
"extensions": ["odb"]
|
|
4059
4509
|
},
|
|
4060
4510
|
"application/vnd.oasis.opendocument.formula": {
|
|
@@ -4109,6 +4559,9 @@
|
|
|
4109
4559
|
"source": "iana",
|
|
4110
4560
|
"extensions": ["odm"]
|
|
4111
4561
|
},
|
|
4562
|
+
"application/vnd.oasis.opendocument.text-master-template": {
|
|
4563
|
+
"source": "iana"
|
|
4564
|
+
},
|
|
4112
4565
|
"application/vnd.oasis.opendocument.text-template": {
|
|
4113
4566
|
"source": "iana",
|
|
4114
4567
|
"extensions": ["ott"]
|
|
@@ -4191,7 +4644,7 @@
|
|
|
4191
4644
|
"compressible": true
|
|
4192
4645
|
},
|
|
4193
4646
|
"application/vnd.oma.bcast.drm-trigger+xml": {
|
|
4194
|
-
"source": "
|
|
4647
|
+
"source": "apache",
|
|
4195
4648
|
"compressible": true
|
|
4196
4649
|
},
|
|
4197
4650
|
"application/vnd.oma.bcast.imd+xml": {
|
|
@@ -4222,7 +4675,7 @@
|
|
|
4222
4675
|
"source": "iana"
|
|
4223
4676
|
},
|
|
4224
4677
|
"application/vnd.oma.bcast.smartcard-trigger+xml": {
|
|
4225
|
-
"source": "
|
|
4678
|
+
"source": "apache",
|
|
4226
4679
|
"compressible": true
|
|
4227
4680
|
},
|
|
4228
4681
|
"application/vnd.oma.bcast.sprov+xml": {
|
|
@@ -4352,6 +4805,9 @@
|
|
|
4352
4805
|
"application/vnd.onepagertatx": {
|
|
4353
4806
|
"source": "iana"
|
|
4354
4807
|
},
|
|
4808
|
+
"application/vnd.onvif.metadata": {
|
|
4809
|
+
"source": "iana"
|
|
4810
|
+
},
|
|
4355
4811
|
"application/vnd.openblox.game+xml": {
|
|
4356
4812
|
"source": "iana",
|
|
4357
4813
|
"compressible": true,
|
|
@@ -4792,6 +5248,9 @@
|
|
|
4792
5248
|
"application/vnd.psfs": {
|
|
4793
5249
|
"source": "iana"
|
|
4794
5250
|
},
|
|
5251
|
+
"application/vnd.pt.mundusmundi": {
|
|
5252
|
+
"source": "iana"
|
|
5253
|
+
},
|
|
4795
5254
|
"application/vnd.publishare-delta-tree": {
|
|
4796
5255
|
"source": "iana",
|
|
4797
5256
|
"extensions": ["qps"]
|
|
@@ -4805,7 +5264,8 @@
|
|
|
4805
5264
|
},
|
|
4806
5265
|
"application/vnd.pwg-xhtml-print+xml": {
|
|
4807
5266
|
"source": "iana",
|
|
4808
|
-
"compressible": true
|
|
5267
|
+
"compressible": true,
|
|
5268
|
+
"extensions": ["xhtm"]
|
|
4809
5269
|
},
|
|
4810
5270
|
"application/vnd.qualcomm.brew-app-res": {
|
|
4811
5271
|
"source": "iana"
|
|
@@ -4903,6 +5363,9 @@
|
|
|
4903
5363
|
"compressible": true,
|
|
4904
5364
|
"extensions": ["musicxml"]
|
|
4905
5365
|
},
|
|
5366
|
+
"application/vnd.relpipe": {
|
|
5367
|
+
"source": "iana"
|
|
5368
|
+
},
|
|
4906
5369
|
"application/vnd.renlearn.rlprint": {
|
|
4907
5370
|
"source": "iana"
|
|
4908
5371
|
},
|
|
@@ -5067,6 +5530,9 @@
|
|
|
5067
5530
|
"source": "iana",
|
|
5068
5531
|
"extensions": ["teacher"]
|
|
5069
5532
|
},
|
|
5533
|
+
"application/vnd.smintio.portals.archive": {
|
|
5534
|
+
"source": "iana"
|
|
5535
|
+
},
|
|
5070
5536
|
"application/vnd.snesdev-page-table": {
|
|
5071
5537
|
"source": "iana"
|
|
5072
5538
|
},
|
|
@@ -5194,6 +5660,9 @@
|
|
|
5194
5660
|
"application/vnd.swiftview-ics": {
|
|
5195
5661
|
"source": "iana"
|
|
5196
5662
|
},
|
|
5663
|
+
"application/vnd.sybyl.mol2": {
|
|
5664
|
+
"source": "iana"
|
|
5665
|
+
},
|
|
5197
5666
|
"application/vnd.sycle+xml": {
|
|
5198
5667
|
"source": "iana",
|
|
5199
5668
|
"compressible": true
|
|
@@ -5313,7 +5782,7 @@
|
|
|
5313
5782
|
"application/vnd.uoml+xml": {
|
|
5314
5783
|
"source": "iana",
|
|
5315
5784
|
"compressible": true,
|
|
5316
|
-
"extensions": ["uoml"]
|
|
5785
|
+
"extensions": ["uoml","uo"]
|
|
5317
5786
|
},
|
|
5318
5787
|
"application/vnd.uplanet.alert": {
|
|
5319
5788
|
"source": "iana"
|
|
@@ -5424,6 +5893,9 @@
|
|
|
5424
5893
|
"source": "iana",
|
|
5425
5894
|
"extensions": ["wmlsc"]
|
|
5426
5895
|
},
|
|
5896
|
+
"application/vnd.wasmflow.wafl": {
|
|
5897
|
+
"source": "iana"
|
|
5898
|
+
},
|
|
5427
5899
|
"application/vnd.webturbo": {
|
|
5428
5900
|
"source": "iana",
|
|
5429
5901
|
"extensions": ["wtb"]
|
|
@@ -5456,6 +5928,9 @@
|
|
|
5456
5928
|
"source": "iana",
|
|
5457
5929
|
"extensions": ["nbp"]
|
|
5458
5930
|
},
|
|
5931
|
+
"application/vnd.wordlift": {
|
|
5932
|
+
"source": "iana"
|
|
5933
|
+
},
|
|
5459
5934
|
"application/vnd.wordperfect": {
|
|
5460
5935
|
"source": "iana",
|
|
5461
5936
|
"extensions": ["wpd"]
|
|
@@ -5490,6 +5965,9 @@
|
|
|
5490
5965
|
"source": "iana",
|
|
5491
5966
|
"extensions": ["xar"]
|
|
5492
5967
|
},
|
|
5968
|
+
"application/vnd.xecrets-encrypted": {
|
|
5969
|
+
"source": "iana"
|
|
5970
|
+
},
|
|
5493
5971
|
"application/vnd.xfdl": {
|
|
5494
5972
|
"source": "iana",
|
|
5495
5973
|
"extensions": ["xfdl"]
|
|
@@ -5561,9 +6039,6 @@
|
|
|
5561
6039
|
"source": "iana",
|
|
5562
6040
|
"extensions": ["cmp"]
|
|
5563
6041
|
},
|
|
5564
|
-
"application/vnd.youtube.yt": {
|
|
5565
|
-
"source": "iana"
|
|
5566
|
-
},
|
|
5567
6042
|
"application/vnd.zul": {
|
|
5568
6043
|
"source": "iana",
|
|
5569
6044
|
"extensions": ["zir","zirz"]
|
|
@@ -5582,6 +6057,9 @@
|
|
|
5582
6057
|
"source": "iana",
|
|
5583
6058
|
"compressible": true
|
|
5584
6059
|
},
|
|
6060
|
+
"application/vp": {
|
|
6061
|
+
"source": "iana"
|
|
6062
|
+
},
|
|
5585
6063
|
"application/vq-rtcpxr": {
|
|
5586
6064
|
"source": "iana"
|
|
5587
6065
|
},
|
|
@@ -6254,6 +6732,10 @@
|
|
|
6254
6732
|
"compressible": true,
|
|
6255
6733
|
"extensions": ["xenc"]
|
|
6256
6734
|
},
|
|
6735
|
+
"application/xfdf": {
|
|
6736
|
+
"source": "iana",
|
|
6737
|
+
"extensions": ["xfdf"]
|
|
6738
|
+
},
|
|
6257
6739
|
"application/xhtml+xml": {
|
|
6258
6740
|
"source": "iana",
|
|
6259
6741
|
"compressible": true,
|
|
@@ -6314,10 +6796,16 @@
|
|
|
6314
6796
|
"compressible": true,
|
|
6315
6797
|
"extensions": ["mxml","xhvml","xvml","xvm"]
|
|
6316
6798
|
},
|
|
6799
|
+
"application/yaml": {
|
|
6800
|
+
"source": "iana"
|
|
6801
|
+
},
|
|
6317
6802
|
"application/yang": {
|
|
6318
6803
|
"source": "iana",
|
|
6319
6804
|
"extensions": ["yang"]
|
|
6320
6805
|
},
|
|
6806
|
+
"application/yang-data+cbor": {
|
|
6807
|
+
"source": "iana"
|
|
6808
|
+
},
|
|
6321
6809
|
"application/yang-data+json": {
|
|
6322
6810
|
"source": "iana",
|
|
6323
6811
|
"compressible": true
|
|
@@ -6334,6 +6822,10 @@
|
|
|
6334
6822
|
"source": "iana",
|
|
6335
6823
|
"compressible": true
|
|
6336
6824
|
},
|
|
6825
|
+
"application/yang-sid+json": {
|
|
6826
|
+
"source": "iana",
|
|
6827
|
+
"compressible": true
|
|
6828
|
+
},
|
|
6337
6829
|
"application/yin+xml": {
|
|
6338
6830
|
"source": "iana",
|
|
6339
6831
|
"compressible": true,
|
|
@@ -6365,7 +6857,8 @@
|
|
|
6365
6857
|
"source": "iana"
|
|
6366
6858
|
},
|
|
6367
6859
|
"audio/aac": {
|
|
6368
|
-
"source": "iana"
|
|
6860
|
+
"source": "iana",
|
|
6861
|
+
"extensions": ["adts","aac"]
|
|
6369
6862
|
},
|
|
6370
6863
|
"audio/ac3": {
|
|
6371
6864
|
"source": "iana"
|
|
@@ -6488,6 +6981,9 @@
|
|
|
6488
6981
|
"audio/evs": {
|
|
6489
6982
|
"source": "iana"
|
|
6490
6983
|
},
|
|
6984
|
+
"audio/flac": {
|
|
6985
|
+
"source": "iana"
|
|
6986
|
+
},
|
|
6491
6987
|
"audio/flexfec": {
|
|
6492
6988
|
"source": "iana"
|
|
6493
6989
|
},
|
|
@@ -6570,6 +7066,9 @@
|
|
|
6570
7066
|
"audio/lpc": {
|
|
6571
7067
|
"source": "iana"
|
|
6572
7068
|
},
|
|
7069
|
+
"audio/matroska": {
|
|
7070
|
+
"source": "iana"
|
|
7071
|
+
},
|
|
6573
7072
|
"audio/melp": {
|
|
6574
7073
|
"source": "iana"
|
|
6575
7074
|
},
|
|
@@ -6589,6 +7088,9 @@
|
|
|
6589
7088
|
"source": "apache",
|
|
6590
7089
|
"extensions": ["mid","midi","kar","rmi"]
|
|
6591
7090
|
},
|
|
7091
|
+
"audio/midi-clip": {
|
|
7092
|
+
"source": "iana"
|
|
7093
|
+
},
|
|
6592
7094
|
"audio/mobile-xmf": {
|
|
6593
7095
|
"source": "iana",
|
|
6594
7096
|
"extensions": ["mxmf"]
|
|
@@ -6850,7 +7352,7 @@
|
|
|
6850
7352
|
"source": "iana"
|
|
6851
7353
|
},
|
|
6852
7354
|
"audio/vnd.qcelp": {
|
|
6853
|
-
"source": "
|
|
7355
|
+
"source": "apache"
|
|
6854
7356
|
},
|
|
6855
7357
|
"audio/vnd.rhetorex.32kadpcm": {
|
|
6856
7358
|
"source": "iana"
|
|
@@ -7009,6 +7511,7 @@
|
|
|
7009
7511
|
"extensions": ["exr"]
|
|
7010
7512
|
},
|
|
7011
7513
|
"image/apng": {
|
|
7514
|
+
"source": "iana",
|
|
7012
7515
|
"compressible": false,
|
|
7013
7516
|
"extensions": ["apng"]
|
|
7014
7517
|
},
|
|
@@ -7028,7 +7531,7 @@
|
|
|
7028
7531
|
"image/bmp": {
|
|
7029
7532
|
"source": "iana",
|
|
7030
7533
|
"compressible": true,
|
|
7031
|
-
"extensions": ["bmp"]
|
|
7534
|
+
"extensions": ["bmp","dib"]
|
|
7032
7535
|
},
|
|
7033
7536
|
"image/cgm": {
|
|
7034
7537
|
"source": "iana",
|
|
@@ -7038,6 +7541,10 @@
|
|
|
7038
7541
|
"source": "iana",
|
|
7039
7542
|
"extensions": ["drle"]
|
|
7040
7543
|
},
|
|
7544
|
+
"image/dpx": {
|
|
7545
|
+
"source": "iana",
|
|
7546
|
+
"extensions": ["dpx"]
|
|
7547
|
+
},
|
|
7041
7548
|
"image/emf": {
|
|
7042
7549
|
"source": "iana",
|
|
7043
7550
|
"extensions": ["emf"]
|
|
@@ -7083,6 +7590,9 @@
|
|
|
7083
7590
|
"source": "iana",
|
|
7084
7591
|
"extensions": ["ief"]
|
|
7085
7592
|
},
|
|
7593
|
+
"image/j2c": {
|
|
7594
|
+
"source": "iana"
|
|
7595
|
+
},
|
|
7086
7596
|
"image/jls": {
|
|
7087
7597
|
"source": "iana",
|
|
7088
7598
|
"extensions": ["jls"]
|
|
@@ -7108,13 +7618,17 @@
|
|
|
7108
7618
|
"image/jpm": {
|
|
7109
7619
|
"source": "iana",
|
|
7110
7620
|
"compressible": false,
|
|
7111
|
-
"extensions": ["jpm"]
|
|
7621
|
+
"extensions": ["jpm","jpgm"]
|
|
7112
7622
|
},
|
|
7113
7623
|
"image/jpx": {
|
|
7114
7624
|
"source": "iana",
|
|
7115
7625
|
"compressible": false,
|
|
7116
7626
|
"extensions": ["jpx","jpf"]
|
|
7117
7627
|
},
|
|
7628
|
+
"image/jxl": {
|
|
7629
|
+
"source": "iana",
|
|
7630
|
+
"extensions": ["jxl"]
|
|
7631
|
+
},
|
|
7118
7632
|
"image/jxr": {
|
|
7119
7633
|
"source": "iana",
|
|
7120
7634
|
"extensions": ["jxr"]
|
|
@@ -7164,7 +7678,7 @@
|
|
|
7164
7678
|
},
|
|
7165
7679
|
"image/prs.btif": {
|
|
7166
7680
|
"source": "iana",
|
|
7167
|
-
"extensions": ["btif"]
|
|
7681
|
+
"extensions": ["btif","btf"]
|
|
7168
7682
|
},
|
|
7169
7683
|
"image/prs.pti": {
|
|
7170
7684
|
"source": "iana",
|
|
@@ -7317,7 +7831,7 @@
|
|
|
7317
7831
|
"extensions": ["pcx"]
|
|
7318
7832
|
},
|
|
7319
7833
|
"image/webp": {
|
|
7320
|
-
"source": "
|
|
7834
|
+
"source": "iana",
|
|
7321
7835
|
"extensions": ["webp"]
|
|
7322
7836
|
},
|
|
7323
7837
|
"image/wmf": {
|
|
@@ -7405,6 +7919,9 @@
|
|
|
7405
7919
|
"source": "apache",
|
|
7406
7920
|
"extensions": ["xwd"]
|
|
7407
7921
|
},
|
|
7922
|
+
"message/bhttp": {
|
|
7923
|
+
"source": "iana"
|
|
7924
|
+
},
|
|
7408
7925
|
"message/cpim": {
|
|
7409
7926
|
"source": "iana"
|
|
7410
7927
|
},
|
|
@@ -7447,7 +7964,16 @@
|
|
|
7447
7964
|
"source": "iana",
|
|
7448
7965
|
"compressible": true
|
|
7449
7966
|
},
|
|
7967
|
+
"message/mls": {
|
|
7968
|
+
"source": "iana"
|
|
7969
|
+
},
|
|
7450
7970
|
"message/news": {
|
|
7971
|
+
"source": "apache"
|
|
7972
|
+
},
|
|
7973
|
+
"message/ohttp-req": {
|
|
7974
|
+
"source": "iana"
|
|
7975
|
+
},
|
|
7976
|
+
"message/ohttp-res": {
|
|
7451
7977
|
"source": "iana"
|
|
7452
7978
|
},
|
|
7453
7979
|
"message/partial": {
|
|
@@ -7460,7 +7986,7 @@
|
|
|
7460
7986
|
"extensions": ["eml","mime"]
|
|
7461
7987
|
},
|
|
7462
7988
|
"message/s-http": {
|
|
7463
|
-
"source": "
|
|
7989
|
+
"source": "apache"
|
|
7464
7990
|
},
|
|
7465
7991
|
"message/sip": {
|
|
7466
7992
|
"source": "iana"
|
|
@@ -7472,7 +7998,7 @@
|
|
|
7472
7998
|
"source": "iana"
|
|
7473
7999
|
},
|
|
7474
8000
|
"message/vnd.si.simp": {
|
|
7475
|
-
"source": "
|
|
8001
|
+
"source": "apache"
|
|
7476
8002
|
},
|
|
7477
8003
|
"message/vnd.wfa.wsc": {
|
|
7478
8004
|
"source": "iana",
|
|
@@ -7500,6 +8026,10 @@
|
|
|
7500
8026
|
"compressible": false,
|
|
7501
8027
|
"extensions": ["igs","iges"]
|
|
7502
8028
|
},
|
|
8029
|
+
"model/jt": {
|
|
8030
|
+
"source": "iana",
|
|
8031
|
+
"extensions": ["jt"]
|
|
8032
|
+
},
|
|
7503
8033
|
"model/mesh": {
|
|
7504
8034
|
"source": "iana",
|
|
7505
8035
|
"compressible": false,
|
|
@@ -7513,6 +8043,10 @@
|
|
|
7513
8043
|
"source": "iana",
|
|
7514
8044
|
"extensions": ["obj"]
|
|
7515
8045
|
},
|
|
8046
|
+
"model/prc": {
|
|
8047
|
+
"source": "iana",
|
|
8048
|
+
"extensions": ["prc"]
|
|
8049
|
+
},
|
|
7516
8050
|
"model/step": {
|
|
7517
8051
|
"source": "iana"
|
|
7518
8052
|
},
|
|
@@ -7535,6 +8069,18 @@
|
|
|
7535
8069
|
"source": "iana",
|
|
7536
8070
|
"extensions": ["stl"]
|
|
7537
8071
|
},
|
|
8072
|
+
"model/u3d": {
|
|
8073
|
+
"source": "iana",
|
|
8074
|
+
"extensions": ["u3d"]
|
|
8075
|
+
},
|
|
8076
|
+
"model/vnd.bary": {
|
|
8077
|
+
"source": "iana",
|
|
8078
|
+
"extensions": ["bary"]
|
|
8079
|
+
},
|
|
8080
|
+
"model/vnd.cld": {
|
|
8081
|
+
"source": "iana",
|
|
8082
|
+
"extensions": ["cld"]
|
|
8083
|
+
},
|
|
7538
8084
|
"model/vnd.collada+xml": {
|
|
7539
8085
|
"source": "iana",
|
|
7540
8086
|
"compressible": true,
|
|
@@ -7582,7 +8128,8 @@
|
|
|
7582
8128
|
"extensions": ["x_t"]
|
|
7583
8129
|
},
|
|
7584
8130
|
"model/vnd.pytha.pyox": {
|
|
7585
|
-
"source": "iana"
|
|
8131
|
+
"source": "iana",
|
|
8132
|
+
"extensions": ["pyo","pyox"]
|
|
7586
8133
|
},
|
|
7587
8134
|
"model/vnd.rosette.annotated-data-model": {
|
|
7588
8135
|
"source": "iana"
|
|
@@ -7591,6 +8138,10 @@
|
|
|
7591
8138
|
"source": "iana",
|
|
7592
8139
|
"extensions": ["vds"]
|
|
7593
8140
|
},
|
|
8141
|
+
"model/vnd.usda": {
|
|
8142
|
+
"source": "iana",
|
|
8143
|
+
"extensions": ["usda"]
|
|
8144
|
+
},
|
|
7594
8145
|
"model/vnd.usdz+zip": {
|
|
7595
8146
|
"source": "iana",
|
|
7596
8147
|
"compressible": false,
|
|
@@ -7736,7 +8287,7 @@
|
|
|
7736
8287
|
"source": "iana"
|
|
7737
8288
|
},
|
|
7738
8289
|
"text/ecmascript": {
|
|
7739
|
-
"source": "
|
|
8290
|
+
"source": "apache"
|
|
7740
8291
|
},
|
|
7741
8292
|
"text/encaprtp": {
|
|
7742
8293
|
"source": "iana"
|
|
@@ -7759,6 +8310,9 @@
|
|
|
7759
8310
|
"text/grammar-ref-list": {
|
|
7760
8311
|
"source": "iana"
|
|
7761
8312
|
},
|
|
8313
|
+
"text/hl7v2": {
|
|
8314
|
+
"source": "iana"
|
|
8315
|
+
},
|
|
7762
8316
|
"text/html": {
|
|
7763
8317
|
"source": "iana",
|
|
7764
8318
|
"compressible": true,
|
|
@@ -7769,7 +8323,9 @@
|
|
|
7769
8323
|
},
|
|
7770
8324
|
"text/javascript": {
|
|
7771
8325
|
"source": "iana",
|
|
7772
|
-
"
|
|
8326
|
+
"charset": "UTF-8",
|
|
8327
|
+
"compressible": true,
|
|
8328
|
+
"extensions": ["js","mjs"]
|
|
7773
8329
|
},
|
|
7774
8330
|
"text/jcr-cnd": {
|
|
7775
8331
|
"source": "iana"
|
|
@@ -7785,7 +8341,7 @@
|
|
|
7785
8341
|
"text/markdown": {
|
|
7786
8342
|
"source": "iana",
|
|
7787
8343
|
"compressible": true,
|
|
7788
|
-
"extensions": ["
|
|
8344
|
+
"extensions": ["md","markdown"]
|
|
7789
8345
|
},
|
|
7790
8346
|
"text/mathml": {
|
|
7791
8347
|
"source": "nginx",
|
|
@@ -7830,6 +8386,9 @@
|
|
|
7830
8386
|
"text/prs.prop.logic": {
|
|
7831
8387
|
"source": "iana"
|
|
7832
8388
|
},
|
|
8389
|
+
"text/prs.texi": {
|
|
8390
|
+
"source": "iana"
|
|
8391
|
+
},
|
|
7833
8392
|
"text/raptorfec": {
|
|
7834
8393
|
"source": "iana"
|
|
7835
8394
|
},
|
|
@@ -7952,6 +8511,9 @@
|
|
|
7952
8511
|
"source": "iana",
|
|
7953
8512
|
"charset": "UTF-8"
|
|
7954
8513
|
},
|
|
8514
|
+
"text/vnd.exchangeable": {
|
|
8515
|
+
"source": "iana"
|
|
8516
|
+
},
|
|
7955
8517
|
"text/vnd.familysearch.gedcom": {
|
|
7956
8518
|
"source": "iana",
|
|
7957
8519
|
"extensions": ["ged"]
|
|
@@ -8013,7 +8575,7 @@
|
|
|
8013
8575
|
"source": "iana"
|
|
8014
8576
|
},
|
|
8015
8577
|
"text/vnd.si.uricatalogue": {
|
|
8016
|
-
"source": "
|
|
8578
|
+
"source": "apache"
|
|
8017
8579
|
},
|
|
8018
8580
|
"text/vnd.sosi": {
|
|
8019
8581
|
"source": "iana"
|
|
@@ -8027,6 +8589,9 @@
|
|
|
8027
8589
|
"source": "iana",
|
|
8028
8590
|
"charset": "UTF-8"
|
|
8029
8591
|
},
|
|
8592
|
+
"text/vnd.vcf": {
|
|
8593
|
+
"source": "iana"
|
|
8594
|
+
},
|
|
8030
8595
|
"text/vnd.wap.si": {
|
|
8031
8596
|
"source": "iana"
|
|
8032
8597
|
},
|
|
@@ -8041,12 +8606,19 @@
|
|
|
8041
8606
|
"source": "iana",
|
|
8042
8607
|
"extensions": ["wmls"]
|
|
8043
8608
|
},
|
|
8609
|
+
"text/vnd.zoo.kcl": {
|
|
8610
|
+
"source": "iana"
|
|
8611
|
+
},
|
|
8044
8612
|
"text/vtt": {
|
|
8045
8613
|
"source": "iana",
|
|
8046
8614
|
"charset": "UTF-8",
|
|
8047
8615
|
"compressible": true,
|
|
8048
8616
|
"extensions": ["vtt"]
|
|
8049
8617
|
},
|
|
8618
|
+
"text/wgsl": {
|
|
8619
|
+
"source": "iana",
|
|
8620
|
+
"extensions": ["wgsl"]
|
|
8621
|
+
},
|
|
8050
8622
|
"text/x-asm": {
|
|
8051
8623
|
"source": "apache",
|
|
8052
8624
|
"extensions": ["s","asm"]
|
|
@@ -8177,6 +8749,9 @@
|
|
|
8177
8749
|
"video/encaprtp": {
|
|
8178
8750
|
"source": "iana"
|
|
8179
8751
|
},
|
|
8752
|
+
"video/evc": {
|
|
8753
|
+
"source": "iana"
|
|
8754
|
+
},
|
|
8180
8755
|
"video/ffv1": {
|
|
8181
8756
|
"source": "iana"
|
|
8182
8757
|
},
|
|
@@ -8210,6 +8785,9 @@
|
|
|
8210
8785
|
"video/h265": {
|
|
8211
8786
|
"source": "iana"
|
|
8212
8787
|
},
|
|
8788
|
+
"video/h266": {
|
|
8789
|
+
"source": "iana"
|
|
8790
|
+
},
|
|
8213
8791
|
"video/iso.segment": {
|
|
8214
8792
|
"source": "iana",
|
|
8215
8793
|
"extensions": ["m4s"]
|
|
@@ -8228,6 +8806,12 @@
|
|
|
8228
8806
|
"video/jxsv": {
|
|
8229
8807
|
"source": "iana"
|
|
8230
8808
|
},
|
|
8809
|
+
"video/matroska": {
|
|
8810
|
+
"source": "iana"
|
|
8811
|
+
},
|
|
8812
|
+
"video/matroska-3d": {
|
|
8813
|
+
"source": "iana"
|
|
8814
|
+
},
|
|
8231
8815
|
"video/mj2": {
|
|
8232
8816
|
"source": "iana",
|
|
8233
8817
|
"extensions": ["mj2","mjp2"]
|
|
@@ -8240,7 +8824,7 @@
|
|
|
8240
8824
|
},
|
|
8241
8825
|
"video/mp2t": {
|
|
8242
8826
|
"source": "iana",
|
|
8243
|
-
"extensions": ["ts"]
|
|
8827
|
+
"extensions": ["ts","m2t","m2ts","mts"]
|
|
8244
8828
|
},
|
|
8245
8829
|
"video/mp4": {
|
|
8246
8830
|
"source": "iana",
|
|
@@ -8407,7 +8991,7 @@
|
|
|
8407
8991
|
"source": "iana"
|
|
8408
8992
|
},
|
|
8409
8993
|
"video/vnd.radgamettools.smacker": {
|
|
8410
|
-
"source": "
|
|
8994
|
+
"source": "apache"
|
|
8411
8995
|
},
|
|
8412
8996
|
"video/vnd.sealed.mpeg1": {
|
|
8413
8997
|
"source": "iana"
|