mime-types 1.25.1 → 2.0

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.
Files changed (61) hide show
  1. checksums.yaml +8 -8
  2. checksums.yaml.gz.sig +0 -0
  3. data.tar.gz.sig +0 -0
  4. data/.autotest +5 -0
  5. data/.minitest.rb +2 -0
  6. data/.travis.yml +0 -4
  7. data/Contributing.rdoc +13 -14
  8. data/Gemfile +1 -0
  9. data/History.rdoc +100 -7
  10. data/Licence.rdoc +1 -1
  11. data/Manifest.txt +17 -24
  12. data/README.rdoc +26 -47
  13. data/Rakefile +42 -185
  14. data/data/mime-types.json +1 -0
  15. data/docs/COPYING.txt +339 -339
  16. data/docs/artistic.txt +127 -127
  17. data/lib/mime.rb +50 -0
  18. data/lib/mime/type.rb +634 -0
  19. data/lib/mime/types.rb +254 -912
  20. data/lib/mime/types/cache.rb +73 -0
  21. data/lib/mime/types/loader.rb +248 -0
  22. data/lib/mime/types/loader_path.rb +16 -0
  23. data/support/benchmarker.rb +55 -0
  24. data/support/convert.rb +130 -0
  25. data/support/iana_downloader.rb +201 -0
  26. data/test/fixture/json.json +1 -0
  27. data/test/fixture/old-data +9 -0
  28. data/test/fixture/yaml.yaml +75 -0
  29. data/test/minitest_helper.rb +22 -0
  30. data/test/test_mime_type.rb +337 -143
  31. data/test/test_mime_types.rb +75 -84
  32. data/test/test_mime_types_cache.rb +30 -29
  33. data/test/test_mime_types_class.rb +135 -0
  34. data/test/test_mime_types_lazy.rb +3 -2
  35. data/test/test_mime_types_loader.rb +42 -0
  36. metadata +61 -90
  37. metadata.gz.sig +0 -0
  38. data/lib/mime/types/application +0 -1010
  39. data/lib/mime/types/application.mac +0 -3
  40. data/lib/mime/types/application.nonstandard +0 -132
  41. data/lib/mime/types/application.obsolete +0 -41
  42. data/lib/mime/types/audio +0 -138
  43. data/lib/mime/types/audio.nonstandard +0 -11
  44. data/lib/mime/types/audio.obsolete +0 -1
  45. data/lib/mime/types/image +0 -46
  46. data/lib/mime/types/image.nonstandard +0 -20
  47. data/lib/mime/types/image.obsolete +0 -5
  48. data/lib/mime/types/message +0 -18
  49. data/lib/mime/types/message.obsolete +0 -2
  50. data/lib/mime/types/model +0 -15
  51. data/lib/mime/types/multipart +0 -14
  52. data/lib/mime/types/multipart.nonstandard +0 -1
  53. data/lib/mime/types/multipart.obsolete +0 -7
  54. data/lib/mime/types/other.nonstandard +0 -8
  55. data/lib/mime/types/text +0 -61
  56. data/lib/mime/types/text.nonstandard +0 -7
  57. data/lib/mime/types/text.obsolete +0 -8
  58. data/lib/mime/types/text.vms +0 -1
  59. data/lib/mime/types/video +0 -75
  60. data/lib/mime/types/video.nonstandard +0 -16
  61. data/lib/mime/types/video.obsolete +0 -3
@@ -0,0 +1,42 @@
1
+ # -*- ruby encoding: utf-8 -*-
2
+
3
+ require 'mime/types'
4
+ require 'minitest_helper'
5
+
6
+ class TestMIMETypesLoader < Minitest::Test
7
+ def setup
8
+ @path = File.expand_path('../fixture', __FILE__)
9
+ @loader = MIME::Types::Loader.new(@path)
10
+ end
11
+
12
+ def assert_correctly_loaded(types)
13
+ assert_includes(types, 'application/1d-interleaved-parityfec')
14
+ assert_includes(types['application/acad'].first.references, 'LTSW')
15
+ assert_equal([%w(WebM http://www.webmproject.org/code/specs/container/)],
16
+ types['audio/webm'].first.urls)
17
+ assert_equal(%w(webm), types['audio/webm'].first.extensions)
18
+ refute(types['audio/webm'].first.registered?)
19
+
20
+ assert_equal("Fixes a bug with IE6 and progressive JPEGs",
21
+ types['image/pjpeg'].first.docs)
22
+
23
+ assert(types['application/x-apple-diskimage'].first.system?)
24
+ assert_equal(/mac/, types['application/x-apple-diskimage'].first.system)
25
+
26
+ assert(types['audio/vnd.qcelp'].first.obsolete?)
27
+ assert_equal(%w(audio/QCELP),
28
+ types['audio/vnd.qcelp'].first.use_instead)
29
+ end
30
+
31
+ def test_load_yaml
32
+ assert_correctly_loaded(@loader.load_yaml)
33
+ end
34
+
35
+ def test_load_json
36
+ assert_correctly_loaded(@loader.load_json)
37
+ end
38
+
39
+ def test_load_v1
40
+ assert_correctly_loaded(@loader.load_v1)
41
+ end
42
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mime-types
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.25.1
4
+ version: '2.0'
5
5
  platform: ruby
6
6
  authors:
7
7
  - Austin Ziegler
@@ -36,7 +36,7 @@ cert_chain:
36
36
  SlF1Y3hPVG1URjFOYkxGcGlSd1FVWjF6b1piTmcyZTdtU2hjL2VleG5WTFdL
37
37
  Rkt4Um9QNgpLUGozV29EK3NwQjhmQT09Ci0tLS0tRU5EIENFUlRJRklDQVRF
38
38
  LS0tLS0K
39
- date: 2013-11-24 00:00:00.000000000 Z
39
+ date: 2013-10-28 00:00:00.000000000 Z
40
40
  dependencies:
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: rubyforge
@@ -178,6 +178,20 @@ dependencies:
178
178
  - - ~>
179
179
  - !ruby/object:Gem::Version
180
180
  version: '10.0'
181
+ - !ruby/object:Gem::Dependency
182
+ name: simplecov
183
+ requirement: !ruby/object:Gem::Requirement
184
+ requirements:
185
+ - - ~>
186
+ - !ruby/object:Gem::Version
187
+ version: '0.7'
188
+ type: :development
189
+ prerelease: false
190
+ version_requirements: !ruby/object:Gem::Requirement
191
+ requirements:
192
+ - - ~>
193
+ - !ruby/object:Gem::Version
194
+ version: '0.7'
181
195
  - !ruby/object:Gem::Dependency
182
196
  name: hoe
183
197
  requirement: !ruby/object:Gem::Requirement
@@ -192,95 +206,57 @@ dependencies:
192
206
  - - ~>
193
207
  - !ruby/object:Gem::Version
194
208
  version: '3.7'
195
- description: ! 'This library allows for the identification of a file''s likely MIME
196
- content
197
-
198
- type. This is release 1.25.1, fixing an issue with priority comparison for
199
-
200
- mime-types 1.x. The current release is 2.0, which only supports Ruby 1.9 or
201
-
202
- later.
203
-
204
-
205
- Release 1.25.1 contains all features of 1.25, including the experimental
206
-
207
- caching and lazy loading functionality. The caching and lazy loading features
209
+ description: ! 'The mime-types library provides a library and registry for information
210
+ about
208
211
 
209
- were initially implemented by Greg Brockman (gdb). As these features are
212
+ MIME content type definitions. It can be used to determine defined filename
210
213
 
211
- experimental, they are disabled by default and must be enabled through the use
214
+ extensions for MIME types, or to use filename extensions to look up the likely
212
215
 
213
- of environment variables. The cache is invalidated on a per-version basis; the
216
+ MIME type definitions.
214
217
 
215
- cache for version 1.25 will not be reused for any later version.
216
218
 
219
+ MIME content types are used in MIME-compliant communications, as in e-mail or
217
220
 
218
- To use lazy loading, set the environment variable +RUBY_MIME_TYPES_LAZY_LOAD+
221
+ HTTP traffic, to indicate the type of content which is transmitted. The
219
222
 
220
- to any value other than ''false''. When using lazy loading, the initial startup
223
+ mime-types library provides the ability for detailed information about MIME
221
224
 
222
- of MIME::Types is around 12–25× faster than normal startup (on my system,
225
+ entities (provided as an enumerable collection of MIME::Type objects) to be
223
226
 
224
- normal startup is about 90 ms; lazy startup is about 4 ms). This isn''t
227
+ determined and used programmatically. There are many types defined by RFCs and
225
228
 
226
- generally useful, however, as the MIME::Types database has not been loaded.
229
+ vendors, so the list is long but by definition incomplete; don''t hesitate to to
227
230
 
228
- Lazy startup and load is just *slightly* faster—around 1 ms. The real advantage
231
+ add additional type definitions (see Contributing.rdoc). The primary sources
229
232
 
230
- comes from using the cache.
233
+ for MIME type definitions found in mime-types is the IANA collection of
231
234
 
235
+ registrations (see below for the link), RFCs, and W3C recommendations.
232
236
 
233
- To enable the cache, set the environment variable +RUBY_MIME_TYPES_CACHE+ to a
234
237
 
235
- filename where MIME::Types will have read-write access. The first time a new
238
+ The mime-types library uses semantic versioning. This is release 2.0; there are
236
239
 
237
- version of MIME::Types is run using this file, it will be created, taking a
240
+ incompatible changes in the API provided by mime-types, mostly around registry
238
241
 
239
- little longer than normal. Subsequent loads using the same cache file will be
242
+ initialization (see History.rdoc for full details), and the removal of support
240
243
 
241
- approximately 3½× faster (25 ms) than normal loads. This can be combined with
244
+ for Ruby 1.8 interpreters.
242
245
 
243
- +RUBY_MIME_TYPES_LAZY_LOAD+, but this is *not* recommended in a multithreaded
244
246
 
245
- or multiprocess environment where all threads or processes will be using the
247
+ mime-types (previously called MIME::Types for Ruby) was originally based on
246
248
 
247
- same cache file.
249
+ MIME::Types for Perl by Mark Overmeer, copyright 2001 - 2009. It is built to
248
250
 
251
+ conform to the MIME types of RFCs 2045 and 2231. It tracks the {IANA
249
252
 
250
- As the caching interface is still experimental, the only values cached are the
251
-
252
- default MIME::Types database, not any custom MIME::Types added by users.
253
-
254
-
255
- MIME types are used in MIME-compliant communications, as in e-mail or HTTP
256
-
257
- traffic, to indicate the type of content which is transmitted. MIME::Types
258
-
259
- provides the ability for detailed information about MIME entities (provided as
260
-
261
- a set of MIME::Type objects) to be determined and used programmatically. There
262
-
263
- are many types defined by RFCs and vendors, so the list is long but not
264
-
265
- complete; don''t hesitate to ask to add additional information. This library
266
-
267
- follows the IANA collection of MIME types (see below for reference).
268
-
269
-
270
- MIME::Types for Ruby was originally based on MIME::Types for Perl by Mark
271
-
272
- Overmeer, copyright 2001 - 2009.
273
-
274
-
275
- MIME::Types is built to conform to the MIME types of RFCs 2045 and 2231. It
276
-
277
- tracks the {IANA registry}[http://www.iana.org/assignments/media-types/]
253
+ registry}[http://www.iana.org/assignments/media-types/]
278
254
 
279
255
  ({ftp}[ftp://ftp.iana.org/assignments/media-types]) with some unofficial types
280
256
 
281
257
  added from the {LTSW collection}[http://www.ltsw.se/knbase/internet/mime.htp]
282
258
 
283
- and added by the users of MIME::Types.'
259
+ and added by the users of mime-types.'
284
260
  email:
285
261
  - austin@rubyforge.org
286
262
  executables: []
@@ -294,8 +270,10 @@ extra_rdoc_files:
294
270
  - docs/COPYING.txt
295
271
  - docs/artistic.txt
296
272
  files:
273
+ - .autotest
297
274
  - .gemtest
298
275
  - .hoerc
276
+ - .minitest.rb
299
277
  - .travis.yml
300
278
  - Contributing.rdoc
301
279
  - Gemfile
@@ -304,38 +282,29 @@ files:
304
282
  - Manifest.txt
305
283
  - README.rdoc
306
284
  - Rakefile
285
+ - data/mime-types.json
307
286
  - docs/COPYING.txt
308
287
  - docs/artistic.txt
309
288
  - lib/mime-types.rb
289
+ - lib/mime.rb
290
+ - lib/mime/type.rb
310
291
  - lib/mime/types.rb
311
- - lib/mime/types/application
312
- - lib/mime/types/application.mac
313
- - lib/mime/types/application.nonstandard
314
- - lib/mime/types/application.obsolete
315
- - lib/mime/types/audio
316
- - lib/mime/types/audio.nonstandard
317
- - lib/mime/types/audio.obsolete
318
- - lib/mime/types/image
319
- - lib/mime/types/image.nonstandard
320
- - lib/mime/types/image.obsolete
321
- - lib/mime/types/message
322
- - lib/mime/types/message.obsolete
323
- - lib/mime/types/model
324
- - lib/mime/types/multipart
325
- - lib/mime/types/multipart.nonstandard
326
- - lib/mime/types/multipart.obsolete
327
- - lib/mime/types/other.nonstandard
328
- - lib/mime/types/text
329
- - lib/mime/types/text.nonstandard
330
- - lib/mime/types/text.obsolete
331
- - lib/mime/types/text.vms
332
- - lib/mime/types/video
333
- - lib/mime/types/video.nonstandard
334
- - lib/mime/types/video.obsolete
292
+ - lib/mime/types/cache.rb
293
+ - lib/mime/types/loader.rb
294
+ - lib/mime/types/loader_path.rb
295
+ - support/benchmarker.rb
296
+ - support/convert.rb
297
+ - support/iana_downloader.rb
298
+ - test/fixture/json.json
299
+ - test/fixture/old-data
300
+ - test/fixture/yaml.yaml
301
+ - test/minitest_helper.rb
335
302
  - test/test_mime_type.rb
336
303
  - test/test_mime_types.rb
337
304
  - test/test_mime_types_cache.rb
305
+ - test/test_mime_types_class.rb
338
306
  - test/test_mime_types_lazy.rb
307
+ - test/test_mime_types_loader.rb
339
308
  homepage: http://mime-types.rubyforge.org/
340
309
  licenses:
341
310
  - MIT
@@ -352,7 +321,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
352
321
  requirements:
353
322
  - - ! '>='
354
323
  - !ruby/object:Gem::Version
355
- version: '0'
324
+ version: 1.9.2
356
325
  required_rubygems_version: !ruby/object:Gem::Requirement
357
326
  requirements:
358
327
  - - ! '>='
@@ -363,10 +332,12 @@ rubyforge_project: mime-types
363
332
  rubygems_version: 2.0.7
364
333
  signing_key:
365
334
  specification_version: 4
366
- summary: This library allows for the identification of a file's likely MIME content
367
- type
335
+ summary: The mime-types library provides a library and registry for information about
336
+ MIME content type definitions
368
337
  test_files:
369
338
  - test/test_mime_type.rb
370
339
  - test/test_mime_types.rb
371
340
  - test/test_mime_types_cache.rb
341
+ - test/test_mime_types_class.rb
372
342
  - test/test_mime_types_lazy.rb
343
+ - test/test_mime_types_loader.rb
metadata.gz.sig CHANGED
Binary file
@@ -1,1010 +0,0 @@
1
- application/1d-interleaved-parityfec 'IANA,RFC6015
2
- application/3gpp-ims+xml 'IANA,[Meredith]
3
- application/activemessage 'IANA,[Shapiro]
4
- application/andrew-inset 'IANA,[Borenstein]
5
- application/applefile :base64 'IANA,[Faltstrom]
6
- application/atom+xml @atom :8bit 'IANA,RFC4287,RFC5023
7
- application/atomcat+xml :8bit 'IANA,RFC5023
8
- application/atomdeleted+xml :8bit 'IANA,RFC6721
9
- application/atomicmail 'IANA,[Borenstein]
10
- application/atomsvc+xml :8bit 'IANA,RFC5023
11
- application/auth-policy+xml :8bit 'IANA,RFC4745
12
- application/batch-SMTP 'IANA,RFC2442
13
- application/beep+xml 'IANA,RFC3080
14
- application/calendar+xml 'IANA,RFC6321
15
- application/call-completion 'IANA,RFC6910
16
- application/cals-1840 'IANA,RFC1895
17
- application/ccmp+xml 'IANA,RFC6503
18
- application/ccxml+xml 'IANA,RFC4267
19
- application/cdmi-capability 'IANA,RFC6208
20
- application/cdmi-container 'IANA,RFC6208
21
- application/cdmi-domain 'IANA,RFC6208
22
- application/cdmi-object 'IANA,RFC6208
23
- application/cdmi-queue 'IANA,RFC6208
24
- application/cea-2018+xml 'IANA,[Zimmermann]
25
- application/cellml+xml 'IANA,RFC4708
26
- application/cfw 'IANA,RFC6230
27
- application/cnrp+xml 'IANA,RFC3367
28
- application/commonground 'IANA,[Glazer]
29
- application/conference-info+xml 'IANA,RFC4575
30
- application/cpl+xml 'IANA,RFC3880
31
- application/csta+xml 'IANA,[Ecma International Helpdesk]
32
- application/CSTAdata+xml 'IANA,[Ecma International Helpdesk]
33
- application/cybercash 'IANA,[Eastlake]
34
- application/dash+xml 'IANA,[Stockhammer]
35
- application/davmount+xml 'IANA,RFC4709
36
- application/dca-rft 'IANA,[Campbell]
37
- application/dec-dx 'IANA,[Campbell]
38
- application/dialog-info+xml 'IANA,RFC4235
39
- application/dicom @dcm 'IANA,RFC3240
40
- application/dns 'IANA,RFC4027
41
- application/dskpp+xml 'IANA,RFC6063
42
- application/dssc+der 'IANA,RFC5698
43
- application/dssc+xml 'IANA,RFC5698
44
- application/dvcs 'IANA,RFC3029
45
- application/ecmascript 'IANA,RFC4329
46
- application/EDI-Consent 'IANA,RFC1767
47
- application/EDI-X12 'IANA,RFC1767
48
- application/EDIFACT 'IANA,RFC1767
49
- application/emma+xml 'IANA,[W3C]
50
- application/encaprtp 'IANA,RFC6849
51
- application/epp+xml 'IANA,RFC5730
52
- application/eshop 'IANA,[Katz]
53
- application/example 'IANA,RFC4735
54
- application/exi 'IANA,[W3C]
55
- application/fastinfoset 'IANA,[ITU-T ASN.1 Rapporteur]
56
- application/fastsoap 'IANA,[ITU-T ASN.1 Rapporteur]
57
- application/fdt+xml 'IANA,RFC6726
58
- application/fits 'IANA,RFC4047
59
- application/font-tdpfr @pfr 'IANA,RFC3073
60
- application/font-woff @woff :base64 'IANA,[W3C]
61
- application/framework-attributes+xml 'IANA,RFC6230
62
- application/gzip 'IANA,RFC6713
63
- application/H224 'IANA,RFC4573
64
- application/held+xml 'IANA,RFC5985
65
- application/http 'IANA,RFC2616
66
- application/hyperstudio @stk 'IANA,[Domino]
67
- application/ibe-key-request+xml 'IANA,RFC5408
68
- application/ibe-pkg-reply+xml 'IANA,RFC5408
69
- application/ibe-pp-data 'IANA,RFC5408
70
- application/iges 'IANA,[Parks]
71
- application/im-iscomposing+xml 'IANA,RFC3994
72
- application/index 'IANA,RFC2652
73
- application/index.cmd 'IANA,RFC2652
74
- application/index.obj 'IANA,RFC2652
75
- application/index.response 'IANA,RFC2652
76
- application/index.vnd 'IANA,RFC2652
77
- application/inkml+xml 'IANA,[Ashimura]
78
- application/iotp 'IANA,RFC2935
79
- application/ipfix 'IANA,RFC5655
80
- application/ipp 'IANA,RFC2910
81
- application/isup 'IANA,RFC3204
82
- application/javascript @js :8bit 'IANA,RFC4329
83
- application/json @json :8bit 'IANA,RFC4627
84
- application/json-patch+json 'IANA,RFC6902
85
- application/kpml-request+xml 'IANA,RFC4730
86
- application/kpml-response+xml 'IANA,RFC4730
87
- application/link-format 'IANA,RFC6690
88
- application/lost+xml 'IANA,RFC5222
89
- application/lostsync+xml 'IANA,RFC6739
90
- application/mac-binhex40 @hqx :8bit 'IANA,[Faltstrom]
91
- application/macwriteii 'IANA,[Lindner]
92
- application/mads+xml 'IANA,RFC6207
93
- application/marc 'IANA,RFC2220
94
- application/marcxml+xml 'IANA,RFC6207
95
- application/mathematica 'IANA,[Wolfram]
96
- application/mathml+xml 'IANA,[W3C]
97
- application/mathml-content+xml 'IANA,[W3C]
98
- application/mathml-presentation+xml 'IANA,[W3C]
99
- application/mbms-associated-procedure-description+xml 'IANA,[3GPP]
100
- application/mbms-deregister+xml 'IANA,[3GPP]
101
- application/mbms-envelope+xml 'IANA,[3GPP]
102
- application/mbms-msk+xml 'IANA,[3GPP]
103
- application/mbms-msk-response+xml 'IANA,[3GPP]
104
- application/mbms-protection-description+xml 'IANA,[3GPP]
105
- application/mbms-reception-report+xml 'IANA,[3GPP]
106
- application/mbms-register+xml 'IANA,[3GPP]
107
- application/mbms-register-response+xml 'IANA,[3GPP]
108
- application/mbms-schedule+xml 'IANA,[3GPP],[Turcotte]
109
- application/mbms-user-service-description+xml 'IANA,[3GPP]
110
- application/mbox 'IANA,RFC4155
111
- application/media-policy-dataset+xml 'IANA,RFC6796
112
- application/media_control+xml 'IANA,RFC5168
113
- application/mediaservercontrol+xml 'IANA,RFC5022
114
- application/metalink4+xml 'IANA,RFC5854
115
- application/mets+xml 'IANA,RFC6207
116
- application/mikey 'IANA,RFC3830
117
- application/mods+xml 'IANA,RFC6207
118
- application/moss-keys 'IANA,RFC1848
119
- application/moss-signature 'IANA,RFC1848
120
- application/mosskey-data 'IANA,RFC1848
121
- application/mosskey-request 'IANA,RFC1848
122
- application/mp21 'IANA,RFC6381,[Singer]
123
- application/mp4 @mp4,mpg4 'IANA,RFC4337,RFC6381
124
- application/mpeg4-generic 'IANA,RFC3640
125
- application/mpeg4-iod 'IANA,RFC4337
126
- application/mpeg4-iod-xmt 'IANA,RFC4337
127
- application/mrb-consumer+xml 'IANA,RFC6917
128
- application/mrb-publish+xml 'IANA,RFC6917
129
- application/msc-ivr+xml 'IANA,RFC6231
130
- application/msc-mixer+xml 'IANA,RFC6505
131
- application/msword @doc,dot,wrd :base64 'IANA,[Lindner]
132
- application/mxf @mxf 'IANA,RFC4539
133
- application/nasdata 'IANA,RFC4707
134
- application/news-checkgroups 'IANA,RFC5537
135
- application/news-groupinfo 'IANA,RFC5537
136
- application/news-transmission 'IANA,RFC5537
137
- application/nlsml+xml 'IANA,RFC6787
138
- application/nss 'IANA,[Hammer]
139
- application/ocsp-request 'IANA,RFC6960
140
- application/ocsp-response 'IANA,RFC6960
141
- application/octet-stream @bin,dms,lha,lzh,exe,class,ani,pgp,so,dll,dylib :base64 'IANA,RFC2045,RFC2046
142
- application/oda @oda 'IANA,RFC2045,RFC2046
143
- application/oebps-package+xml 'IANA,RFC4839
144
- application/ogg @ogx 'IANA,RFC5334
145
- application/oxps 'IANA,[Ecma International Helpdesk]
146
- application/p2p-overlay+xml 'IANA,{RFC-ietf-p2psip-base-26=http://tools.ietf.org/html/draft-ietf-p2psip-base}
147
- application/parityfec 'IANA,RFC5109
148
- application/patch-ops-error+xml 'IANA,RFC5261
149
- application/pdf @pdf :base64 'IANA,RFC3778
150
- application/pgp-encrypted :7bit 'IANA,RFC3156
151
- application/pgp-keys :7bit 'IANA,RFC3156
152
- application/pgp-signature @sig :base64 'IANA,RFC3156
153
- application/pidf+xml 'IANA,RFC3863
154
- application/pidf-diff+xml 'IANA,RFC5262
155
- application/pkcs10 @p10 'IANA,RFC5967
156
- application/pkcs7-mime @p7m,p7c 'IANA,RFC5751
157
- application/pkcs7-signature @p7s 'IANA,RFC5751
158
- application/pkcs8 'IANA,RFC5958
159
- application/pkix-attr-cert 'IANA,RFC5877
160
- application/pkix-cert @cer 'IANA,RFC2585
161
- application/pkix-crl @crl 'IANA,RFC2585
162
- application/pkix-pkipath @pkipath 'IANA,RFC6066
163
- application/pkixcmp @pki 'IANA,RFC2510
164
- application/pls+xml 'IANA,RFC4267
165
- application/poc-settings+xml 'IANA,RFC4354
166
- application/postscript @ai,eps,ps :8bit 'IANA,RFC2045,RFC2046
167
- application/provenance+xml 'IANA,[3GPP],[Firmin]
168
- application/prs.alvestrand.titrax-sheet 'IANA,[Alvestrand]
169
- application/prs.cww @cw,cww 'IANA,[Rungchavalnont]
170
- application/prs.nprend @rnd,rct 'IANA,[Doggett]
171
- application/prs.plucker 'IANA,[Janssen]
172
- application/prs.rdf-xml-crypt 'IANA,[Inkster]
173
- application/prs.xsf+xml 'IANA,[Stührenberg=Stuhrenberg]
174
- application/pskc+xml 'IANA,RFC6030
175
- application/qsig 'IANA,RFC3204
176
- application/raptorfec 'IANA,RFC6682
177
- application/rdf+xml @rdf :8bit 'IANA,RFC3870
178
- application/reginfo+xml 'IANA,RFC3680
179
- application/relax-ng-compact-syntax 'IANA,{ISO/IEC 19757-2:2003/FDAM-1=http://www.jtc1sc34.org/repository/0661.pdf}
180
- application/remote-printing 'IANA,RFC1486,[Rose]
181
- application/resource-lists+xml 'IANA,RFC4826
182
- application/resource-lists-diff+xml 'IANA,RFC5362
183
- application/riscos 'IANA,[Smith]
184
- application/rlmi+xml 'IANA,RFC4662
185
- application/rls-services+xml 'IANA,RFC4826
186
- application/rpki-ghostbusters 'IANA,RFC6493
187
- application/rpki-manifest 'IANA,RFC6481
188
- application/rpki-roa 'IANA,RFC6481
189
- application/rpki-updown 'IANA,RFC6492
190
- application/rtf @rtf 'IANA,[Lindner]
191
- application/rtploopback 'IANA,RFC6849
192
- application/rtx 'IANA,RFC4588
193
- application/samlassertion+xml 'IANA,[OASIS Security Services Technical Committee (SSTC)]
194
- application/samlmetadata+xml 'IANA,[OASIS Security Services Technical Committee (SSTC)]
195
- application/sbml+xml 'IANA,RFC3823
196
- application/scvp-cv-request 'IANA,RFC5055
197
- application/scvp-cv-response 'IANA,RFC5055
198
- application/scvp-vp-request 'IANA,RFC5055
199
- application/scvp-vp-response 'IANA,RFC5055
200
- application/sdp 'IANA,RFC4566
201
- application/sep+xml 'IANA,[Robby_Simpson=RoSimpson],[ZigBee_Alliance=ZigBee]
202
- application/sep-exi 'IANA,[Robby_Simpson=RoSimpson],[ZigBee_Alliance=ZigBee]
203
- application/set-payment 'IANA,[Korver]
204
- application/set-payment-initiation 'IANA,[Korver]
205
- application/set-registration 'IANA,[Korver]
206
- application/set-registration-initiation 'IANA,[Korver]
207
- application/sgml @sgml 'IANA,RFC1874
208
- application/sgml-open-catalog @soc 'IANA,[Grosso]
209
- application/shf+xml 'IANA,RFC4194
210
- application/sieve @siv 'IANA,RFC5228
211
- application/simple-filter+xml 'IANA,RFC4661
212
- application/simple-message-summary 'IANA,RFC3842
213
- application/simpleSymbolContainer 'IANA,[3GPP]
214
- application/slate 'IANA,[Crowley]
215
- application/smil+xml @smi,smil :8bit 'IANA,RFC4536
216
- application/smpte336m 'IANA,RFC6597
217
- application/soap+fastinfoset 'IANA,[ITU-T ASN.1 Rapporteur]
218
- application/soap+xml 'IANA,RFC3902
219
- application/sparql-query 'IANA,[W3C]
220
- application/sparql-results+xml 'IANA,[W3C]
221
- application/spirits-event+xml 'IANA,RFC3910
222
- application/sql 'IANA,RFC6922
223
- application/srgs 'IANA,RFC4267
224
- application/srgs+xml 'IANA,RFC4267
225
- application/sru+xml 'IANA,RFC6207
226
- application/ssml+xml 'IANA,RFC4267
227
- application/tamp-apex-update 'IANA,RFC5934
228
- application/tamp-apex-update-confirm 'IANA,RFC5934
229
- application/tamp-community-update 'IANA,RFC5934
230
- application/tamp-community-update-confirm 'IANA,RFC5934
231
- application/tamp-error 'IANA,RFC5934
232
- application/tamp-sequence-adjust 'IANA,RFC5934
233
- application/tamp-sequence-adjust-confirm 'IANA,RFC5934
234
- application/tamp-status-query 'IANA,RFC5934
235
- application/tamp-status-response 'IANA,RFC5934
236
- application/tamp-update 'IANA,RFC5934
237
- application/tamp-update-confirm 'IANA,RFC5934
238
- application/tei+xml 'IANA,RFC6129
239
- application/thraud+xml 'IANA,RFC5941
240
- application/timestamp-query 'IANA,RFC3161
241
- application/timestamp-reply 'IANA,RFC3161
242
- application/timestamped-data 'IANA,RFC5955
243
- application/tve-trigger 'IANA,[Welsh]
244
- application/ulpfec 'IANA,RFC5109
245
- application/urc-grpsheet+xml 'IANA,[Zimmermann]
246
- application/urc-ressheet+xml 'IANA,[Zimmermann]
247
- application/vcard+xml 'IANA,RFC6351
248
- application/vemmi 'IANA,RFC2122
249
- application/vnd.3gpp.bsf+xml 'IANA,[Meredith]
250
- application/vnd.3gpp.pic-bw-large @plb 'IANA,[Meredith]
251
- application/vnd.3gpp.pic-bw-small @psb 'IANA,[Meredith]
252
- application/vnd.3gpp.pic-bw-var @pvb 'IANA,[Meredith]
253
- application/vnd.3gpp.sms @sms 'IANA,[Meredith]
254
- application/vnd.3gpp2.bcmcsinfo+xml 'IANA,[Dryden]
255
- application/vnd.3gpp2.sms 'IANA,[Mahendran]
256
- application/vnd.3gpp2.tcap 'IANA,[Mahendran]
257
- application/vnd.3M.Post-it-Notes 'IANA,[O'Brien]
258
- application/vnd.accpac.simply.aso 'IANA,[Leow]
259
- application/vnd.accpac.simply.imp 'IANA,[Leow]
260
- application/vnd.acucobol 'IANA,[Lubin]
261
- application/vnd.acucorp @atc,acutc :7bit 'IANA,[Lubin]
262
- application/vnd.adobe.formscentral.fcdt 'IANA,[Solc]
263
- application/vnd.adobe.fxp 'IANA,[Brambley],[Heintz]
264
- application/vnd.adobe.partial-upload 'IANA,[Otala]
265
- application/vnd.adobe.xdp+xml 'IANA,[Brinkman]
266
- application/vnd.adobe.xfdf @xfdf 'IANA,[Perelman]
267
- application/vnd.aether.imp 'IANA,[Moskowitz]
268
- application/vnd.ah-barcode 'IANA,[Ichinose]
269
- application/vnd.ahead.space 'IANA,[Kristensen]
270
- application/vnd.airzip.filesecure.azf 'IANA,[Mould],[Clueit]
271
- application/vnd.airzip.filesecure.azs 'IANA,[Mould],[Clueit]
272
- application/vnd.americandynamics.acc 'IANA,[Sands]
273
- application/vnd.amiga.ami @ami 'IANA,[Blumberg]
274
- application/vnd.amundsen.maze+xml 'IANA,[Amundsen]
275
- application/vnd.anser-web-certificate-issue-initiation 'IANA,[Mori]
276
- application/vnd.antix.game-component 'IANA,[Shelton]
277
- application/vnd.api+json 'IANA,[Klabnik]
278
- application/vnd.apple.installer+xml 'IANA,[Bierman]
279
- application/vnd.apple.mpegurl 'IANA,[Singer],[Pantos]
280
- application/vnd.aristanetworks.swi 'IANA,[Fenner]
281
- application/vnd.astraea-software.iota 'IANA,[Snazell]
282
- application/vnd.audiograph 'IANA,[Slusanschi]
283
- application/vnd.autopackage 'IANA,[Hearn]
284
- application/vnd.avistar+xml 'IANA,[Vysotsky]
285
- application/vnd.balsamiq.bmml+xml 'IANA,[Giacomo_Guilizzoni]
286
- application/vnd.blueice.multipass @mpm 'IANA,[Holmstrom]
287
- application/vnd.bluetooth.ep.oob 'IANA,[Foley]
288
- application/vnd.bmi 'IANA,[Gotoh]
289
- application/vnd.businessobjects 'IANA,[Imoucha]
290
- application/vnd.cab-jscript 'IANA,[Falkenberg]
291
- application/vnd.canon-cpdl 'IANA,[Muto]
292
- application/vnd.canon-lips 'IANA,[Muto]
293
- application/vnd.cendio.thinlinc.clientconf 'IANA,[Åstrand=Astrand]
294
- application/vnd.century-systems.tcp_stream 'IANA,[Shuji Fujii=Shuji_Fujii]
295
- application/vnd.chemdraw+xml 'IANA,[Howes]
296
- application/vnd.chipnuts.karaoke-mmd 'IANA,[Xiong]
297
- application/vnd.cinderella @cdy 'IANA,[Kortenkamp]
298
- application/vnd.cirpack.isdn-ext 'IANA,[Mayeux]
299
- application/vnd.claymore 'IANA,[Simpson]
300
- application/vnd.cloanto.rp9 'IANA,[Labatt]
301
- application/vnd.clonk.c4group 'IANA,[Brammer]
302
- application/vnd.cluetrust.cartomobile-config 'IANA,[Paulsen]
303
- application/vnd.cluetrust.cartomobile-config-pkg 'IANA,[Paulsen]
304
- application/vnd.collection+json 'IANA,[Amundsen]
305
- application/vnd.collection.next+json 'IANA,[Ioseb Dzmanashvili=Ioseb_Dzmanashvili]
306
- application/vnd.commerce-battelle 'IANA,[Applebaum]
307
- application/vnd.commonspace 'IANA,[Chandhok]
308
- application/vnd.contact.cmsg 'IANA,[Patz]
309
- application/vnd.cosmocaller @cmc 'IANA,[Dellutri]
310
- application/vnd.crick.clicker 'IANA,[Burt]
311
- application/vnd.crick.clicker.keyboard 'IANA,[Burt]
312
- application/vnd.crick.clicker.palette 'IANA,[Burt]
313
- application/vnd.crick.clicker.template 'IANA,[Burt]
314
- application/vnd.crick.clicker.wordbank 'IANA,[Burt]
315
- application/vnd.criticaltools.wbs+xml @wbs 'IANA,[Spiller]
316
- application/vnd.ctc-posml 'IANA,[Kohlhepp]
317
- application/vnd.ctct.ws+xml 'IANA,[Ancona]
318
- application/vnd.cups-pdf 'IANA,[Sweet]
319
- application/vnd.cups-postscript 'IANA,[Sweet]
320
- application/vnd.cups-ppd 'IANA,[Sweet]
321
- application/vnd.cups-raster 'IANA,[Sweet]
322
- application/vnd.cups-raw 'IANA,[Sweet]
323
- application/vnd.curl @curl 'IANA,[Byrnes]
324
- application/vnd.cyan.dean.root+xml 'IANA,[Kern]
325
- application/vnd.cybank 'IANA,[Helmee]
326
- application/vnd.dart 'IANA,[Sandholm]
327
- application/vnd.data-vision.rdz @rdz 'IANA,[Fields]
328
- application/vnd.dece.data 'IANA,[Dolan]
329
- application/vnd.dece.ttml+xml 'IANA,[Dolan]
330
- application/vnd.dece.unspecified 'IANA,[Dolan]
331
- application/vnd.dece.zip 'IANA,[Dolan]
332
- application/vnd.denovo.fcselayout-link 'IANA,[Dixon]
333
- application/vnd.desmume.movie 'IANA,[Andersson]
334
- application/vnd.dir-bi.plate-dl-nosuffix 'IANA,[Yamanaka]
335
- application/vnd.dm.delegation+xml 'IANA,[Ferrazzini]
336
- application/vnd.dna 'IANA,[Searcy]
337
- application/vnd.dolby.mobile.1 'IANA,[Hattersley]
338
- application/vnd.dolby.mobile.2 'IANA,[Hattersley]
339
- application/vnd.dpgraph 'IANA,[Parker]
340
- application/vnd.dreamfactory @dfac 'IANA,[Appleton]
341
- application/vnd.dtg.local 'IANA,[Ali_Teffahi]
342
- application/vnd.dtg.local.flash 'IANA,[Ali_Teffahi]
343
- application/vnd.dtg.local.html 'IANA,[Ali_Teffahi]
344
- application/vnd.dvb.ait 'IANA,[Siebert],[Lagally]
345
- application/vnd.dvb.dvbj 'IANA,[Siebert],[Lagally]
346
- application/vnd.dvb.esgcontainer 'IANA,[Heuer]
347
- application/vnd.dvb.ipdcdftnotifaccess 'IANA,[Yue]
348
- application/vnd.dvb.ipdcesgaccess 'IANA,[Heuer]
349
- application/vnd.dvb.ipdcesgaccess2 'IANA,[Marcon]
350
- application/vnd.dvb.ipdcesgpdd 'IANA,[Marcon]
351
- application/vnd.dvb.ipdcroaming 'IANA,[Xu]
352
- application/vnd.dvb.iptv.alfec-base 'IANA,[Henry]
353
- application/vnd.dvb.iptv.alfec-enhancement 'IANA,[Henry]
354
- application/vnd.dvb.notif-aggregate-root+xml 'IANA,[Yue]
355
- application/vnd.dvb.notif-container+xml 'IANA,[Yue]
356
- application/vnd.dvb.notif-generic+xml 'IANA,[Yue]
357
- application/vnd.dvb.notif-ia-msglist+xml 'IANA,[Yue]
358
- application/vnd.dvb.notif-ia-registration-request+xml 'IANA,[Yue]
359
- application/vnd.dvb.notif-ia-registration-response+xml 'IANA,[Yue]
360
- application/vnd.dvb.notif-init+xml 'IANA,[Yue]
361
- application/vnd.dvb.pfr 'IANA,[Siebert],[Lagally]
362
- application/vnd.dvb.service 'IANA,[Siebert],[Lagally]
363
- application/vnd.dxr 'IANA,[Duffy]
364
- application/vnd.dynageo 'IANA,[Mechling]
365
- application/vnd.easykaraoke.cdgdownload 'IANA,[Downs]
366
- application/vnd.ecdis-update 'IANA,[Buettgenbach]
367
- application/vnd.ecowin.chart 'IANA,[Olsson]
368
- application/vnd.ecowin.filerequest 'IANA,[Olsson]
369
- application/vnd.ecowin.fileupdate 'IANA,[Olsson]
370
- application/vnd.ecowin.series 'IANA,[Olsson]
371
- application/vnd.ecowin.seriesrequest 'IANA,[Olsson]
372
- application/vnd.ecowin.seriesupdate 'IANA,[Olsson]
373
- application/vnd.emclient.accessrequest+xml 'IANA,[Navara]
374
- application/vnd.enliven 'IANA,[Santinelli]
375
- application/vnd.eprints.data+xml 'IANA,[Brody]
376
- application/vnd.epson.esf 'IANA,[Hoshina]
377
- application/vnd.epson.msf 'IANA,[Hoshina]
378
- application/vnd.epson.quickanime 'IANA,[Gu]
379
- application/vnd.epson.salt 'IANA,[Nagatomo]
380
- application/vnd.epson.ssf 'IANA,[Hoshina]
381
- application/vnd.ericsson.quickcall 'IANA,[Tidwell]
382
- application/vnd.eszigno3+xml 'IANA,[Tóth=Toth]
383
- application/vnd.etsi.aoc+xml 'IANA,[Hu]
384
- application/vnd.etsi.cug+xml 'IANA,[Hu]
385
- application/vnd.etsi.iptvcommand+xml 'IANA,[Hu]
386
- application/vnd.etsi.iptvdiscovery+xml 'IANA,[Hu]
387
- application/vnd.etsi.iptvprofile+xml 'IANA,[Hu]
388
- application/vnd.etsi.iptvsad-bc+xml 'IANA,[Hu]
389
- application/vnd.etsi.iptvsad-cod+xml 'IANA,[Hu]
390
- application/vnd.etsi.iptvsad-npvr+xml 'IANA,[Hu]
391
- application/vnd.etsi.iptvservice+xml 'IANA,[Ortega]
392
- application/vnd.etsi.iptvsync+xml 'IANA,[Ortega]
393
- application/vnd.etsi.iptvueprofile+xml 'IANA,[Hu]
394
- application/vnd.etsi.mcid+xml 'IANA,[Hu]
395
- application/vnd.etsi.mheg5 'IANA,[Ortega],[Medland]
396
- application/vnd.etsi.overload-control-policy-dataset+xml 'IANA,[Ortega]
397
- application/vnd.etsi.pstn+xml 'IANA,[Han],[Belling]
398
- application/vnd.etsi.sci+xml 'IANA,[Hu]
399
- application/vnd.etsi.simservs+xml 'IANA,[Hu]
400
- application/vnd.etsi.tsl+xml 'IANA,[Hu]
401
- application/vnd.etsi.tsl.der 'IANA,[Hu]
402
- application/vnd.eudora.data 'IANA,[Resnick]
403
- application/vnd.ezpix-album 'IANA,[Electronic Zombie, Corp.=ElectronicZombieCorp]
404
- application/vnd.ezpix-package 'IANA,[Electronic Zombie, Corp.=ElectronicZombieCorp]
405
- application/vnd.f-secure.mobile 'IANA,[Sarivaara]
406
- application/vnd.fdf 'IANA,[Zilles]
407
- application/vnd.fdsn.mseed 'IANA,[Trabant]
408
- application/vnd.fdsn.seed 'IANA,[Trabant]
409
- application/vnd.ffsns 'IANA,[Holstage]
410
- application/vnd.fints 'IANA,[Hammann]
411
- application/vnd.FloGraphIt 'IANA,[Floersch]
412
- application/vnd.fluxtime.clip 'IANA,[Winter]
413
- application/vnd.font-fontforge-sfd 'IANA,[Williams]
414
- application/vnd.framemaker @frm,maker,frame,fm,fb,book,fbdoc 'IANA,[Wexler]
415
- application/vnd.frogans.fnc 'IANA,[Tamas]
416
- application/vnd.frogans.ltf 'IANA,[Tamas]
417
- application/vnd.fsc.weblaunch @fsc :7bit 'IANA,[D.Smith]
418
- application/vnd.fujitsu.oasys 'IANA,[Togashi]
419
- application/vnd.fujitsu.oasys2 'IANA,[Togashi]
420
- application/vnd.fujitsu.oasys3 'IANA,[Okudaira]
421
- application/vnd.fujitsu.oasysgp 'IANA,[Sugimoto]
422
- application/vnd.fujitsu.oasysprs 'IANA,[Ogita]
423
- application/vnd.fujixerox.ART-EX 'IANA,[Tanabe]
424
- application/vnd.fujixerox.ART4 'IANA,[Tanabe]
425
- application/vnd.fujixerox.ddd 'IANA,[Onda]
426
- application/vnd.fujixerox.docuworks 'IANA,[Taguchi]
427
- application/vnd.fujixerox.docuworks.binder 'IANA,[Matsumoto]
428
- application/vnd.fujixerox.docuworks.container 'IANA,[Tashiro]
429
- application/vnd.fujixerox.HBPL 'IANA,[Tanabe]
430
- application/vnd.fut-misnet 'IANA,[Pruulmann]
431
- application/vnd.fuzzysheet 'IANA,[Birtwistle]
432
- application/vnd.genomatix.tuxedo @txd 'IANA,[Frey]
433
- application/vnd.geogebra.file 'IANA,[GeoGebra],[Kreis]
434
- application/vnd.geogebra.tool 'IANA,[GeoGebra],[Kreis]
435
- application/vnd.geometry-explorer 'IANA,[Hvidsten]
436
- application/vnd.geonext 'IANA,[Ehmann]
437
- application/vnd.geoplan 'IANA,[Mercat]
438
- application/vnd.geospace 'IANA,[Mercat]
439
- application/vnd.globalplatform.card-content-mgt 'IANA,[Bernabeu]
440
- application/vnd.globalplatform.card-content-mgt-response 'IANA,[Bernabeu]
441
- application/vnd.google-earth.kml+xml @kml :8bit 'IANA,[Ashbridge]
442
- application/vnd.google-earth.kmz @kmz :8bit 'IANA,[Ashbridge]
443
- application/vnd.grafeq 'IANA,[Tupper]
444
- application/vnd.gridmp 'IANA,[Lawson]
445
- application/vnd.groove-account 'IANA,[Joseph]
446
- application/vnd.groove-help 'IANA,[Joseph]
447
- application/vnd.groove-identity-message 'IANA,[Joseph]
448
- application/vnd.groove-injector 'IANA,[Joseph]
449
- application/vnd.groove-tool-message 'IANA,[Joseph]
450
- application/vnd.groove-tool-template 'IANA,[Joseph]
451
- application/vnd.groove-vcard 'IANA,[Joseph]
452
- application/vnd.hal+json 'IANA,[Kelly]
453
- application/vnd.hal+xml 'IANA,[Kelly]
454
- application/vnd.HandHeld-Entertainment+xml 'IANA,[Hamilton]
455
- application/vnd.hbci @hbci,hbc,kom,upa,pkd,bpd 'IANA,[Hammann]
456
- application/vnd.hcl-bireports 'IANA,[Serres]
457
- application/vnd.hhe.lesson-player @les 'IANA,[Jones]
458
- application/vnd.hp-HPGL @plt,hpgl 'IANA,[Pentecost]
459
- application/vnd.hp-hpid 'IANA,[Gupta]
460
- application/vnd.hp-hps 'IANA,[Aubrey]
461
- application/vnd.hp-jlyt 'IANA,[Gaash]
462
- application/vnd.hp-PCL 'IANA,[Pentecost]
463
- application/vnd.hp-PCLXL 'IANA,[Pentecost]
464
- application/vnd.httphone 'IANA,[Lefevre]
465
- application/vnd.hydrostatix.sof-data 'IANA,[Gillam]
466
- application/vnd.hzn-3d-crossword 'IANA,[Minnis]
467
- application/vnd.ibm.afplinedata 'IANA,[Buis]
468
- application/vnd.ibm.electronic-media @emm 'IANA,[Tantlinger]
469
- application/vnd.ibm.MiniPay 'IANA,[Herzberg]
470
- application/vnd.ibm.modcap 'IANA,[Hohensee]
471
- application/vnd.ibm.rights-management @irm 'IANA,[Tantlinger]
472
- application/vnd.ibm.secure-container @sc 'IANA,[Tantlinger]
473
- application/vnd.iccprofile 'IANA,[Green]
474
- application/vnd.ieee.1905 'IANA,[Rajkotia]
475
- application/vnd.igloader 'IANA,[Fisher]
476
- application/vnd.immervision-ivp 'IANA,[Villegas]
477
- application/vnd.immervision-ivu 'IANA,[Villegas]
478
- application/vnd.informedcontrol.rms+xml 'IANA,[Wahl]
479
- application/vnd.informix-visionary 'IANA,[Gales]
480
- application/vnd.infotech.project 'IANA,[Engelke]
481
- application/vnd.infotech.project+xml 'IANA,[Engelke]
482
- application/vnd.innopath.wamp.notification 'IANA,[Sudo]
483
- application/vnd.insors.igm 'IANA,[Swanson]
484
- application/vnd.intercon.formnet 'IANA,[Gurak]
485
- application/vnd.intergeo 'IANA,[Kreis=Kreis2]
486
- application/vnd.intertrust.digibox 'IANA,[Tomasello]
487
- application/vnd.intertrust.nncp 'IANA,[Tomasello]
488
- application/vnd.intu.qbo 'IANA,[Scratchley]
489
- application/vnd.intu.qfx 'IANA,[Scratchley]
490
- application/vnd.iptc.g2.conceptitem+xml 'IANA,[Steidl]
491
- application/vnd.iptc.g2.knowledgeitem+xml 'IANA,[Steidl]
492
- application/vnd.iptc.g2.newsitem+xml 'IANA,[Steidl]
493
- application/vnd.iptc.g2.newsmessage+xml 'IANA,[Steidl]
494
- application/vnd.iptc.g2.packageitem+xml 'IANA,[Steidl]
495
- application/vnd.iptc.g2.planningitem+xml 'IANA,[Steidl]
496
- application/vnd.ipunplugged.rcprofile @rcprofile 'IANA,[Ersson]
497
- application/vnd.irepository.package+xml @irp 'IANA,[Knowles]
498
- application/vnd.is-xpr 'IANA,[Natarajan]
499
- application/vnd.isac.fcs 'IANA,[RBrinkman]
500
- application/vnd.jam 'IANA,[B.Kumar]
501
- application/vnd.japannet-directory-service 'IANA,[Fujii]
502
- application/vnd.japannet-jpnstore-wakeup 'IANA,[Yoshitake]
503
- application/vnd.japannet-payment-wakeup 'IANA,[Fujii]
504
- application/vnd.japannet-registration 'IANA,[Yoshitake]
505
- application/vnd.japannet-registration-wakeup 'IANA,[Fujii]
506
- application/vnd.japannet-setstore-wakeup 'IANA,[Yoshitake]
507
- application/vnd.japannet-verification 'IANA,[Yoshitake]
508
- application/vnd.japannet-verification-wakeup 'IANA,[Fujii]
509
- application/vnd.jcp.javame.midlet-rms 'IANA,[Gorshenev]
510
- application/vnd.jisp @jisp 'IANA,[Deckers]
511
- application/vnd.joost.joda-archive 'IANA,[Joost]
512
- application/vnd.jsk.isdn-ngn 'IANA,[Kiyonobu]
513
- application/vnd.kahootz 'IANA,[Macdonald]
514
- application/vnd.kde.karbon @karbon 'IANA,[Faure]
515
- application/vnd.kde.kchart @chrt 'IANA,[Faure]
516
- application/vnd.kde.kformula @kfo 'IANA,[Faure]
517
- application/vnd.kde.kivio @flw 'IANA,[Faure]
518
- application/vnd.kde.kontour @kon 'IANA,[Faure]
519
- application/vnd.kde.kpresenter @kpr,kpt 'IANA,[Faure]
520
- application/vnd.kde.kspread @ksp 'IANA,[Faure]
521
- application/vnd.kde.kword @kwd,kwt 'IANA,[Faure]
522
- application/vnd.kenameaapp @htke 'IANA,[DiGiorgio-Haag]
523
- application/vnd.kidspiration @kia 'IANA,[Bennett]
524
- application/vnd.Kinar @kne,knp,sdf 'IANA,[Thakkar]
525
- application/vnd.koan 'IANA,[Cole]
526
- application/vnd.kodak-descriptor 'IANA,[Donahue]
527
- application/vnd.las.las+xml 'IANA,[Bailey=RBailey]
528
- application/vnd.liberty-request+xml 'IANA,[McDowell]
529
- application/vnd.llamagraphics.life-balance.desktop @lbd 'IANA,[White]
530
- application/vnd.llamagraphics.life-balance.exchange+xml @lbe 'IANA,[White]
531
- application/vnd.lotus-1-2-3 @wks,123 'IANA,[Wattenberger]
532
- application/vnd.lotus-approach 'IANA,[Wattenberger]
533
- application/vnd.lotus-freelance 'IANA,[Wattenberger]
534
- application/vnd.lotus-notes 'IANA,[Laramie]
535
- application/vnd.lotus-organizer 'IANA,[Wattenberger]
536
- application/vnd.lotus-screencam 'IANA,[Wattenberger]
537
- application/vnd.lotus-wordpro 'IANA,[Wattenberger]
538
- application/vnd.macports.portpkg 'IANA,[Berry]
539
- application/vnd.marlin.drm.actiontoken+xml 'IANA,[Ellison]
540
- application/vnd.marlin.drm.conftoken+xml 'IANA,[Ellison]
541
- application/vnd.marlin.drm.license+xml 'IANA,[Ellison]
542
- application/vnd.marlin.drm.mdcf 'IANA,[Ellison]
543
- application/vnd.mcd @mcd 'IANA,[Gotoh]
544
- application/vnd.medcalcdata 'IANA,[Schoonjans]
545
- application/vnd.mediastation.cdkey 'IANA,[Flurry]
546
- application/vnd.meridian-slingshot 'IANA,[Wedel]
547
- application/vnd.MFER 'IANA,[Hirai]
548
- application/vnd.mfmp @mfm 'IANA,[Ikeda]
549
- application/vnd.micrografx.flo @flo 'IANA,[Prevo]
550
- application/vnd.micrografx.igx @igx 'IANA,[Prevo]
551
- application/vnd.mif @mif 'IANA,[Wexler]
552
- application/vnd.minisoft-hp3000-save 'IANA,[Bartram]
553
- application/vnd.mitsubishi.misty-guard.trustweb 'IANA,[Tanaka]
554
- application/vnd.Mobius.DAF 'IANA,[Kabayama]
555
- application/vnd.Mobius.DIS 'IANA,[Kabayama]
556
- application/vnd.Mobius.MBK 'IANA,[Devasia]
557
- application/vnd.Mobius.MQY 'IANA,[Devasia]
558
- application/vnd.Mobius.MSL 'IANA,[Kabayama]
559
- application/vnd.Mobius.PLC 'IANA,[Kabayama]
560
- application/vnd.Mobius.TXF 'IANA,[Kabayama]
561
- application/vnd.mophun.application @mpn 'IANA,[Wennerstrom]
562
- application/vnd.mophun.certificate @mpc 'IANA,[Wennerstrom]
563
- application/vnd.motorola.flexsuite 'IANA,[Patton]
564
- application/vnd.motorola.flexsuite.adsi 'IANA,[Patton]
565
- application/vnd.motorola.flexsuite.fis 'IANA,[Patton]
566
- application/vnd.motorola.flexsuite.gotap 'IANA,[Patton]
567
- application/vnd.motorola.flexsuite.kmr 'IANA,[Patton]
568
- application/vnd.motorola.flexsuite.ttc 'IANA,[Patton]
569
- application/vnd.motorola.flexsuite.wem 'IANA,[Patton]
570
- application/vnd.motorola.iprm 'IANA,[Shamsaasef]
571
- application/vnd.mozilla.xul+xml @xul 'IANA,[McDaniel]
572
- application/vnd.ms-artgalry @cil 'IANA,[Slawson]
573
- application/vnd.ms-asf @asf 'IANA,[Fleischman]
574
- application/vnd.ms-cab-compressed @cab 'IANA,[Scarborough]
575
- application/vnd.ms-excel @xls,xlt :base64 'IANA,[Gill]
576
- application/vnd.ms-excel.addin.macroEnabled.12 'IANA,[Rae]
577
- application/vnd.ms-excel.sheet.binary.macroEnabled.12 @xlsb 'IANA,[Rae]
578
- application/vnd.ms-excel.sheet.macroEnabled.12 @xlsm 'IANA,[Rae]
579
- application/vnd.ms-excel.template.macroEnabled.12 'IANA,[Rae]
580
- application/vnd.ms-fontobject 'IANA,[Scarborough]
581
- application/vnd.ms-htmlhelp 'IANA,[Techtonik]
582
- application/vnd.ms-ims 'IANA,[Ledoux]
583
- application/vnd.ms-lrm @lrm 'IANA,[Ledoux]
584
- application/vnd.ms-office.activeX+xml 'IANA,[Rae]
585
- application/vnd.ms-officetheme 'IANA,[Rae]
586
- application/vnd.ms-playready.initiator+xml 'IANA,[Schneider]
587
- application/vnd.ms-powerpoint @ppt,pps,pot :base64 'IANA,[Gill]
588
- application/vnd.ms-powerpoint.addin.macroEnabled.12 'IANA,[Rae]
589
- application/vnd.ms-powerpoint.presentation.macroEnabled.12 'IANA,[Rae]
590
- application/vnd.ms-powerpoint.slide.macroEnabled.12 'IANA,[Rae]
591
- application/vnd.ms-powerpoint.slideshow.macroEnabled.12 'IANA,[Rae]
592
- application/vnd.ms-powerpoint.template.macroEnabled.12 @potm 'IANA,[Rae]
593
- application/vnd.ms-project @mpp :base64 'IANA,[Gill]
594
- application/vnd.ms-tnef :base64 'IANA,[Gill]
595
- application/vnd.ms-windows.printerpairing 'IANA,[Hutchings]
596
- application/vnd.ms-wmdrm.lic-chlg-req 'IANA,[Lau]
597
- application/vnd.ms-wmdrm.lic-resp 'IANA,[Lau]
598
- application/vnd.ms-wmdrm.meter-chlg-req 'IANA,[Lau]
599
- application/vnd.ms-wmdrm.meter-resp 'IANA,[Lau]
600
- application/vnd.ms-word.document.macroEnabled.12 'IANA,[Rae]
601
- application/vnd.ms-word.template.macroEnabled.12 'IANA,[Rae]
602
- application/vnd.ms-works :base64 'IANA,[Gill]
603
- application/vnd.ms-wpl @wpl :base64 'IANA,[Plastina]
604
- application/vnd.ms-xpsdocument @xps :8bit 'IANA,[McGatha]
605
- application/vnd.mseq @mseq 'IANA,[Le Bodic]
606
- application/vnd.msign 'IANA,[Borcherding]
607
- application/vnd.multiad.creator 'IANA,[Mills]
608
- application/vnd.multiad.creator.cif 'IANA,[Mills]
609
- application/vnd.music-niff 'IANA,[Butler]
610
- application/vnd.musician 'IANA,[Adams]
611
- application/vnd.muvee.style 'IANA,[Anantharamu]
612
- application/vnd.mynfc 'IANA,[Lefevre]
613
- application/vnd.ncd.control 'IANA,[Tarkkala]
614
- application/vnd.ncd.reference 'IANA,[Tarkkala]
615
- application/vnd.nervana @ent,entity,req,request,bkm,kcm 'IANA,[Judkins]
616
- application/vnd.netfpx 'IANA,[Mutz]
617
- application/vnd.neurolanguage.nlu 'IANA,[DuFeu]
618
- application/vnd.nintendo.nitro.rom 'IANA,[Andersson]
619
- application/vnd.nitf 'IANA,[Rogan]
620
- application/vnd.noblenet-directory 'IANA,[Solomon]
621
- application/vnd.noblenet-sealer 'IANA,[Solomon]
622
- application/vnd.noblenet-web 'IANA,[Solomon]
623
- application/vnd.nokia.catalogs 'IANA,[Nokia]
624
- application/vnd.nokia.conml+wbxml 'IANA,[Nokia]
625
- application/vnd.nokia.conml+xml 'IANA,[Nokia]
626
- application/vnd.nokia.iptv.config+xml 'IANA,[Nokia]
627
- application/vnd.nokia.iSDS-radio-presets 'IANA,[Nokia]
628
- application/vnd.nokia.landmark+wbxml 'IANA,[Nokia]
629
- application/vnd.nokia.landmark+xml 'IANA,[Nokia]
630
- application/vnd.nokia.landmarkcollection+xml 'IANA,[Nokia]
631
- application/vnd.nokia.n-gage.ac+xml 'IANA,[Nokia]
632
- application/vnd.nokia.n-gage.data 'IANA,[Nokia]
633
- application/vnd.nokia.n-gage.symbian.install 'IANA,[Nokia]
634
- application/vnd.nokia.ncd 'IANA,[Nokia]
635
- application/vnd.nokia.pcd+wbxml 'IANA,[Nokia]
636
- application/vnd.nokia.pcd+xml 'IANA,[Nokia]
637
- application/vnd.nokia.radio-preset @rpst 'IANA,[Nokia]
638
- application/vnd.nokia.radio-presets @rpss 'IANA,[Nokia]
639
- application/vnd.novadigm.EDM 'IANA,[Swenson]
640
- application/vnd.novadigm.EDX 'IANA,[Swenson]
641
- application/vnd.novadigm.EXT 'IANA,[Swenson]
642
- application/vnd.ntt-local.content-share 'IANA,[Taya]
643
- application/vnd.ntt-local.file-transfer 'IANA,[NTT-local]
644
- application/vnd.ntt-local.sip-ta_remote 'IANA,[NTT-local]
645
- application/vnd.ntt-local.sip-ta_tcp_stream 'IANA,[NTT-local]
646
- application/vnd.oasis.opendocument.chart @odc 'IANA,[Oppermann]
647
- application/vnd.oasis.opendocument.chart-template @odc 'IANA,[Oppermann]
648
- application/vnd.oasis.opendocument.database @odb 'IANA,[Schubert],[Oasis OpenDocument TC=OASIS OpenDocumentTC]
649
- application/vnd.oasis.opendocument.formula @odf 'IANA,[Oppermann]
650
- application/vnd.oasis.opendocument.formula-template @odf 'IANA,[Oppermann]
651
- application/vnd.oasis.opendocument.graphics @odg 'IANA,[Oppermann]
652
- application/vnd.oasis.opendocument.graphics-template @otg 'IANA,[Oppermann]
653
- application/vnd.oasis.opendocument.image @odi 'IANA,[Oppermann]
654
- application/vnd.oasis.opendocument.image-template @odi 'IANA,[Oppermann]
655
- application/vnd.oasis.opendocument.presentation @odp 'IANA,[Oppermann]
656
- application/vnd.oasis.opendocument.presentation-template @otp 'IANA,[Oppermann]
657
- application/vnd.oasis.opendocument.spreadsheet @ods 'IANA,[Oppermann]
658
- application/vnd.oasis.opendocument.spreadsheet-template @ots 'IANA,[Oppermann]
659
- application/vnd.oasis.opendocument.text @odt 'IANA,[Oppermann]
660
- application/vnd.oasis.opendocument.text-master @odm 'IANA,[Schubert],[OASIS]
661
- application/vnd.oasis.opendocument.text-template @ott 'IANA,[Schubert],[OASIS]
662
- application/vnd.oasis.opendocument.text-web @oth 'IANA,[Schubert],[OASIS]
663
- application/vnd.obn 'IANA,[Hessling]
664
- application/vnd.oftn.l10n+json 'IANA,[Grey]
665
- application/vnd.oipf.contentaccessdownload+xml 'IANA,[D'Esclercs=DEsclercs]
666
- application/vnd.oipf.contentaccessstreaming+xml 'IANA,[D'Esclercs=DEsclercs]
667
- application/vnd.oipf.cspg-hexbinary 'IANA,[D'Esclercs=DEsclercs]
668
- application/vnd.oipf.dae.svg+xml 'IANA,[D'Esclercs=DEsclercs]
669
- application/vnd.oipf.dae.xhtml+xml 'IANA,[D'Esclercs=DEsclercs]
670
- application/vnd.oipf.mippvcontrolmessage+xml 'IANA,[D'Esclercs=DEsclercs]
671
- application/vnd.oipf.pae.gem 'IANA,[D'Esclercs=DEsclercs]
672
- application/vnd.oipf.spdiscovery+xml 'IANA,[D'Esclercs=DEsclercs]
673
- application/vnd.oipf.spdlist+xml 'IANA,[D'Esclercs=DEsclercs]
674
- application/vnd.oipf.ueprofile+xml 'IANA,[D'Esclercs=DEsclercs]
675
- application/vnd.oipf.userprofile+xml 'IANA,[D'Esclercs=DEsclercs]
676
- application/vnd.olpc-sugar 'IANA,[Palmieri]
677
- application/vnd.oma-scws-config 'IANA,[Mahalal]
678
- application/vnd.oma-scws-http-request 'IANA,[Mahalal]
679
- application/vnd.oma-scws-http-response 'IANA,[Mahalal]
680
- application/vnd.oma.bcast.associated-procedure-parameter+xml 'IANA,[Rauschenbach],[OMNA - Open Mobile Naming Authority=OMNA-OpenMobileNamingAuthority]
681
- application/vnd.oma.bcast.drm-trigger+xml 'IANA,[Rauschenbach],[OMNA - Open Mobile Naming Authority=OMNA-OpenMobileNamingAuthority]
682
- application/vnd.oma.bcast.imd+xml 'IANA,[Rauschenbach],[OMNA - Open Mobile Naming Authority=OMNA-OpenMobileNamingAuthority]
683
- application/vnd.oma.bcast.ltkm 'IANA,[Rauschenbach],[OMNA - Open Mobile Naming Authority=OMNA-OpenMobileNamingAuthority]
684
- application/vnd.oma.bcast.notification+xml 'IANA,[Rauschenbach],[OMNA - Open Mobile Naming Authority=OMNA-OpenMobileNamingAuthority]
685
- application/vnd.oma.bcast.provisioningtrigger 'IANA,[Rauschenbach],[OMNA - Open Mobile Naming Authority=OMNA-OpenMobileNamingAuthority]
686
- application/vnd.oma.bcast.sgboot 'IANA,[Rauschenbach],[OMNA - Open Mobile Naming Authority=OMNA-OpenMobileNamingAuthority]
687
- application/vnd.oma.bcast.sgdd+xml 'IANA,[Rauschenbach],[OMNA - Open Mobile Naming Authority=OMNA-OpenMobileNamingAuthority]
688
- application/vnd.oma.bcast.sgdu 'IANA,[Rauschenbach],[OMNA - Open Mobile Naming Authority=OMNA-OpenMobileNamingAuthority]
689
- application/vnd.oma.bcast.simple-symbol-container 'IANA,[Rauschenbach],[OMNA - Open Mobile Naming Authority=OMNA-OpenMobileNamingAuthority]
690
- application/vnd.oma.bcast.smartcard-trigger+xml 'IANA,[Rauschenbach],[OMNA - Open Mobile Naming Authority=OMNA-OpenMobileNamingAuthority]
691
- application/vnd.oma.bcast.sprov+xml 'IANA,[Rauschenbach],[OMNA - Open Mobile Naming Authority=OMNA-OpenMobileNamingAuthority]
692
- application/vnd.oma.bcast.stkm 'IANA,[Rauschenbach],[OMNA - Open Mobile Naming Authority=OMNA-OpenMobileNamingAuthority]
693
- application/vnd.oma.cab-address-book+xml 'IANA,[Wang],[OMA]
694
- application/vnd.oma.cab-pcc+xml 'IANA,[Wang],[OMA]
695
- application/vnd.oma.cab-subs-invite+xml 'IANA,[Wang],[OMA]
696
- application/vnd.oma.cab-user-prefs+xml 'IANA,[Wang],[OMA]
697
- application/vnd.oma.dcd 'IANA,[Primo],[OMNA - Open Mobile Naming Authority=OMNA-OpenMobileNamingAuthority]
698
- application/vnd.oma.dcdc 'IANA,[Primo],[OMNA - Open Mobile Naming Authority=OMNA-OpenMobileNamingAuthority]
699
- application/vnd.oma.dd2+xml 'IANA,[Sato],[Open Mobile Alliance's BAC DLDRM Working Group]
700
- application/vnd.oma.drm.risd+xml 'IANA,[Rauschenbach],[OMNA - Open Mobile Naming Authority=OMNA-OpenMobileNamingAuthority]
701
- application/vnd.oma.group-usage-list+xml 'IANA,[Kelley],[OMA Presence and Availability (PAG) Working Group]
702
- application/vnd.oma.pal+xml 'IANA,[McColgan],[OMNA - Open Mobile Naming Authority=OMNA-OpenMobileNamingAuthority]
703
- application/vnd.oma.poc.detailed-progress-report+xml 'IANA,[OMA Push to Talk over Cellular (POC) Working Group]
704
- application/vnd.oma.poc.final-report+xml 'IANA,[OMA Push to Talk over Cellular (POC) Working Group]
705
- application/vnd.oma.poc.groups+xml 'IANA,[Kelley],[OMA Push to Talk over Cellular (POC) Working Group]
706
- application/vnd.oma.poc.invocation-descriptor+xml 'IANA,[OMA Push to Talk over Cellular (POC) Working Group]
707
- application/vnd.oma.poc.optimized-progress-report+xml 'IANA,[OMA Push to Talk over Cellular (POC) Working Group]
708
- application/vnd.oma.push 'IANA,[Sullivan],[OMA]
709
- application/vnd.oma.scidm.messages+xml 'IANA,[Zeng],[OMNA - Open Mobile Naming Authority=OMNA-OpenMobileNamingAuthority]
710
- application/vnd.oma.xcap-directory+xml 'IANA,[Kelley],[OMA Presence and Availability (PAG) Working Group]
711
- application/vnd.omads-email+xml 'IANA,[OMA Data Synchronization Working Group]
712
- application/vnd.omads-file+xml 'IANA,[OMA Data Synchronization Working Group]
713
- application/vnd.omads-folder+xml 'IANA,[OMA Data Synchronization Working Group]
714
- application/vnd.omaloc-supl-init 'IANA,[Grange]
715
- application/vnd.openofficeorg.extension 'IANA,[Lingner]
716
- application/vnd.openxmlformats-officedocument.custom-properties+xml 'IANA,[Murata]
717
- application/vnd.openxmlformats-officedocument.customXmlProperties+xml 'IANA,[Murata]
718
- application/vnd.openxmlformats-officedocument.drawing+xml 'IANA,[Murata]
719
- application/vnd.openxmlformats-officedocument.drawingml.chart+xml 'IANA,[Murata]
720
- application/vnd.openxmlformats-officedocument.drawingml.chartshapes+xml 'IANA,[Murata]
721
- application/vnd.openxmlformats-officedocument.drawingml.diagramColors+xml 'IANA,[Murata]
722
- application/vnd.openxmlformats-officedocument.drawingml.diagramData+xml 'IANA,[Murata]
723
- application/vnd.openxmlformats-officedocument.drawingml.diagramLayout+xml 'IANA,[Murata]
724
- application/vnd.openxmlformats-officedocument.drawingml.diagramStyle+xml 'IANA,[Murata]
725
- application/vnd.openxmlformats-officedocument.extended-properties+xml 'IANA,[Murata]
726
- application/vnd.openxmlformats-officedocument.presentationml.commentAuthors+xml 'IANA,[Murata]
727
- application/vnd.openxmlformats-officedocument.presentationml.comments+xml 'IANA,[Murata]
728
- application/vnd.openxmlformats-officedocument.presentationml.handoutMaster+xml 'IANA,[Murata]
729
- application/vnd.openxmlformats-officedocument.presentationml.notesMaster+xml 'IANA,[Murata]
730
- application/vnd.openxmlformats-officedocument.presentationml.notesSlide+xml 'IANA,[Murata]
731
- application/vnd.openxmlformats-officedocument.presentationml.presentation @pptx 'IANA,[Murata]
732
- application/vnd.openxmlformats-officedocument.presentationml.presentation.main+xml 'IANA,[Murata]
733
- application/vnd.openxmlformats-officedocument.presentationml.presProps+xml 'IANA,[Murata]
734
- application/vnd.openxmlformats-officedocument.presentationml.slide 'IANA,[Murata]
735
- application/vnd.openxmlformats-officedocument.presentationml.slide+xml 'IANA,[Murata]
736
- application/vnd.openxmlformats-officedocument.presentationml.slideLayout+xml 'IANA,[Murata]
737
- application/vnd.openxmlformats-officedocument.presentationml.slideMaster+xml 'IANA,[Murata]
738
- application/vnd.openxmlformats-officedocument.presentationml.slideshow @ppsx 'IANA,[Murata]
739
- application/vnd.openxmlformats-officedocument.presentationml.slideshow.main+xml 'IANA,[Murata]
740
- application/vnd.openxmlformats-officedocument.presentationml.slideUpdateInfo+xml 'IANA,[Murata]
741
- application/vnd.openxmlformats-officedocument.presentationml.tableStyles+xml 'IANA,[Murata]
742
- application/vnd.openxmlformats-officedocument.presentationml.tags+xml 'IANA,[Murata]
743
- application/vnd.openxmlformats-officedocument.presentationml.template @potx 'IANA,[Murata]
744
- application/vnd.openxmlformats-officedocument.presentationml.template.main+xml 'IANA,[Murata]
745
- application/vnd.openxmlformats-officedocument.presentationml.viewProps+xml 'IANA,[Murata]
746
- application/vnd.openxmlformats-officedocument.spreadsheetml.calcChain+xml 'IANA,[Murata]
747
- application/vnd.openxmlformats-officedocument.spreadsheetml.chartsheet+xml 'IANA,[Murata]
748
- application/vnd.openxmlformats-officedocument.spreadsheetml.comments+xml 'IANA,[Murata]
749
- application/vnd.openxmlformats-officedocument.spreadsheetml.connections+xml 'IANA,[Murata]
750
- application/vnd.openxmlformats-officedocument.spreadsheetml.dialogsheet+xml 'IANA,[Murata]
751
- application/vnd.openxmlformats-officedocument.spreadsheetml.externalLink+xml 'IANA,[Murata]
752
- application/vnd.openxmlformats-officedocument.spreadsheetml.pivotCacheDefinition+xml 'IANA,[Murata]
753
- application/vnd.openxmlformats-officedocument.spreadsheetml.pivotCacheRecords+xml 'IANA,[Murata]
754
- application/vnd.openxmlformats-officedocument.spreadsheetml.pivotTable+xml 'IANA,[Murata]
755
- application/vnd.openxmlformats-officedocument.spreadsheetml.queryTable+xml 'IANA,[Murata]
756
- application/vnd.openxmlformats-officedocument.spreadsheetml.revisionHeaders+xml 'IANA,[Murata]
757
- application/vnd.openxmlformats-officedocument.spreadsheetml.revisionLog+xml 'IANA,[Murata]
758
- application/vnd.openxmlformats-officedocument.spreadsheetml.sharedStrings+xml 'IANA,[Murata]
759
- application/vnd.openxmlformats-officedocument.spreadsheetml.sheet @xlsx 'IANA,[Murata]
760
- application/vnd.openxmlformats-officedocument.spreadsheetml.sheet.main+xml 'IANA,[Murata]
761
- application/vnd.openxmlformats-officedocument.spreadsheetml.sheetMetadata+xml 'IANA,[Murata]
762
- application/vnd.openxmlformats-officedocument.spreadsheetml.styles+xml 'IANA,[Murata]
763
- application/vnd.openxmlformats-officedocument.spreadsheetml.table+xml 'IANA,[Murata]
764
- application/vnd.openxmlformats-officedocument.spreadsheetml.tableSingleCells+xml 'IANA,[Murata]
765
- application/vnd.openxmlformats-officedocument.spreadsheetml.template 'IANA,[Murata]
766
- application/vnd.openxmlformats-officedocument.spreadsheetml.template.main+xml 'IANA,[Murata]
767
- application/vnd.openxmlformats-officedocument.spreadsheetml.userNames+xml 'IANA,[Murata]
768
- application/vnd.openxmlformats-officedocument.spreadsheetml.volatileDependencies+xml 'IANA,[Murata]
769
- application/vnd.openxmlformats-officedocument.spreadsheetml.worksheet+xml 'IANA,[Murata]
770
- application/vnd.openxmlformats-officedocument.theme+xml 'IANA,[Murata]
771
- application/vnd.openxmlformats-officedocument.themeOverride+xml 'IANA,[Murata]
772
- application/vnd.openxmlformats-officedocument.vmlDrawing 'IANA,[Murata]
773
- application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml 'IANA,[Murata]
774
- application/vnd.openxmlformats-officedocument.wordprocessingml.document @docx 'IANA,[Murata]
775
- application/vnd.openxmlformats-officedocument.wordprocessingml.document.glossary+xml 'IANA,[Murata]
776
- application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml 'IANA,[Murata]
777
- application/vnd.openxmlformats-officedocument.wordprocessingml.endnotes+xml 'IANA,[Murata]
778
- application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml 'IANA,[Murata]
779
- application/vnd.openxmlformats-officedocument.wordprocessingml.footer+xml 'IANA,[Murata]
780
- application/vnd.openxmlformats-officedocument.wordprocessingml.footnotes+xml 'IANA,[Murata]
781
- application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml 'IANA,[Murata]
782
- application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml 'IANA,[Murata]
783
- application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml 'IANA,[Murata]
784
- application/vnd.openxmlformats-officedocument.wordprocessingml.template @dotx 'IANA,[Murata]
785
- application/vnd.openxmlformats-officedocument.wordprocessingml.template.main+xml 'IANA,[Murata]
786
- application/vnd.openxmlformats-officedocument.wordprocessingml.webSettings+xml 'IANA,[Murata]
787
- application/vnd.openxmlformats-package.core-properties+xml 'IANA,[Murata]
788
- application/vnd.openxmlformats-package.digital-signature-xmlsignature+xml 'IANA,[Murata]
789
- application/vnd.openxmlformats-package.relationships+xml 'IANA,[Murata]
790
- application/vnd.orange.indata 'IANA,[CHATRAS_Bruno]
791
- application/vnd.osa.netdeploy 'IANA,[Klos]
792
- application/vnd.osgeo.mapguide.package 'IANA,[Birch]
793
- application/vnd.osgi.bundle 'IANA,[Kriens]
794
- application/vnd.osgi.dp 'IANA,[Kriens]
795
- application/vnd.osgi.subsystem 'IANA,[Kriens]
796
- application/vnd.otps.ct-kip+xml 'IANA,[Nyström=Nystrom]
797
- application/vnd.palm @prc,pdb,pqa,oprc :base64 'IANA,[Peacock]
798
- application/vnd.paos.xml 'IANA,[Kemp]
799
- application/vnd.pawaafile 'IANA,[Baskaran]
800
- application/vnd.pg.format 'IANA,[Gandert]
801
- application/vnd.pg.osasli 'IANA,[Gandert]
802
- application/vnd.piaccess.application-licence 'IANA,[Maneos]
803
- application/vnd.picsel @efif 'IANA,[Naccarato]
804
- application/vnd.pmi.widget 'IANA,[Lewis]
805
- application/vnd.poc.group-advertisement+xml 'IANA,[Kelley],[OMA Push to Talk over Cellular (POC) Working Group]
806
- application/vnd.pocketlearn 'IANA,[Pando]
807
- application/vnd.powerbuilder6 'IANA,[Guy]
808
- application/vnd.powerbuilder6-s 'IANA,[Guy]
809
- application/vnd.powerbuilder7 'IANA,[Shilts]
810
- application/vnd.powerbuilder7-s 'IANA,[Shilts]
811
- application/vnd.powerbuilder75 'IANA,[Shilts]
812
- application/vnd.powerbuilder75-s 'IANA,[Shilts]
813
- application/vnd.preminet 'IANA,[Tenhunen]
814
- application/vnd.previewsystems.box 'IANA,[Smolgovsky]
815
- application/vnd.proteus.magazine 'IANA,[Hoch]
816
- application/vnd.publishare-delta-tree 'IANA,[Ben-Kiki]
817
- application/vnd.pvi.ptid1 @pti,ptid 'IANA,[Lamb]
818
- application/vnd.pwg-multiplexed 'IANA,RFC3391
819
- application/vnd.pwg-xhtml-print+xml 'IANA,[Wright]
820
- application/vnd.qualcomm.brew-app-res 'IANA,[Forrester]
821
- application/vnd.Quark.QuarkXPress @qxd,qxt,qwd,qwt,qxl,qxb :8bit 'IANA,[Scheidler]
822
- application/vnd.quobject-quoxdocument 'IANA,[Ludwig]
823
- application/vnd.radisys.moml+xml 'IANA,RFC5707
824
- application/vnd.radisys.msml+xml 'IANA,RFC5707
825
- application/vnd.radisys.msml-audit+xml 'IANA,RFC5707
826
- application/vnd.radisys.msml-audit-conf+xml 'IANA,RFC5707
827
- application/vnd.radisys.msml-audit-conn+xml 'IANA,RFC5707
828
- application/vnd.radisys.msml-audit-dialog+xml 'IANA,RFC5707
829
- application/vnd.radisys.msml-audit-stream+xml 'IANA,RFC5707
830
- application/vnd.radisys.msml-conf+xml 'IANA,RFC5707
831
- application/vnd.radisys.msml-dialog+xml 'IANA,RFC5707
832
- application/vnd.radisys.msml-dialog-base+xml 'IANA,RFC5707
833
- application/vnd.radisys.msml-dialog-fax-detect+xml 'IANA,RFC5707
834
- application/vnd.radisys.msml-dialog-fax-sendrecv+xml 'IANA,RFC5707
835
- application/vnd.radisys.msml-dialog-group+xml 'IANA,RFC5707
836
- application/vnd.radisys.msml-dialog-speech+xml 'IANA,RFC5707
837
- application/vnd.radisys.msml-dialog-transform+xml 'IANA,RFC5707
838
- application/vnd.rainstor.data 'IANA,[Crook]
839
- application/vnd.rapid 'IANA,[Szekely]
840
- application/vnd.realvnc.bed 'IANA,[Reeves]
841
- application/vnd.recordare.musicxml 'IANA,[Good]
842
- application/vnd.recordare.musicxml+xml 'IANA,[Good]
843
- application/vnd.RenLearn.rlprint 'IANA,[Wick]
844
- application/vnd.rig.cryptonote 'IANA,[Jibiki]
845
- application/vnd.route66.link66+xml 'IANA,[Kikstra]
846
- application/vnd.rs-274x 'IANA,[Harding]
847
- application/vnd.ruckus.download 'IANA,[Harris]
848
- application/vnd.s3sms 'IANA,[Tarkkala]
849
- application/vnd.sailingtracker.track 'IANA,[Vesalainen]
850
- application/vnd.sbm.cid 'IANA,[Kusakari]
851
- application/vnd.sbm.mid2 'IANA,[Murai]
852
- application/vnd.scribus 'IANA,[Bradney]
853
- application/vnd.sealed.3df 'IANA,[Kwan]
854
- application/vnd.sealed.csf 'IANA,[Kwan]
855
- application/vnd.sealed.doc @sdoc,sdo,s1w 'IANA,[Petersen]
856
- application/vnd.sealed.eml @seml,sem 'IANA,[Petersen]
857
- application/vnd.sealed.mht @smht,smh 'IANA,[Petersen]
858
- application/vnd.sealed.net 'IANA,[Lambert]
859
- application/vnd.sealed.ppt @sppt,spp,s1p 'IANA,[Petersen]
860
- application/vnd.sealed.tiff 'IANA,[Kwan],[Lambert]
861
- application/vnd.sealed.xls @sxls,sxl,s1e 'IANA,[Petersen]
862
- application/vnd.sealedmedia.softseal.html @stml,stm,s1h 'IANA,[Petersen]
863
- application/vnd.sealedmedia.softseal.pdf @spdf,spd,s1a 'IANA,[Petersen]
864
- application/vnd.seemail @see 'IANA,[Webb]
865
- application/vnd.sema 'IANA,[Hansson]
866
- application/vnd.semd 'IANA,[Hansson]
867
- application/vnd.semf 'IANA,[Hansson]
868
- application/vnd.shana.informed.formdata 'IANA,[Selzler]
869
- application/vnd.shana.informed.formtemplate 'IANA,[Selzler]
870
- application/vnd.shana.informed.interchange 'IANA,[Selzler]
871
- application/vnd.shana.informed.package 'IANA,[Selzler]
872
- application/vnd.SimTech-MindMapper 'IANA,[Koh]
873
- application/vnd.siren+json 'IANA,[Swiber]
874
- application/vnd.smaf @mmf 'IANA,[Takahashi]
875
- application/vnd.smart.notebook 'IANA,[Neitz]
876
- application/vnd.smart.teacher 'IANA,[Boyle]
877
- application/vnd.software602.filler.form+xml 'IANA,[Hytka],[Vondrous]
878
- application/vnd.software602.filler.form-xml-zip 'IANA,[Hytka],[Vondrous]
879
- application/vnd.solent.sdkm+xml 'IANA,[Gauntlett]
880
- application/vnd.spotfire.dxp 'IANA,[Jernberg]
881
- application/vnd.spotfire.sfs 'IANA,[Jernberg]
882
- application/vnd.sss-cod 'IANA,[Dani]
883
- application/vnd.sss-dtf 'IANA,[Bruno]
884
- application/vnd.sss-ntf 'IANA,[Bruno]
885
- application/vnd.stepmania.package 'IANA,[Andersson]
886
- application/vnd.stepmania.stepchart 'IANA,[Andersson]
887
- application/vnd.street-stream 'IANA,[Levitt]
888
- application/vnd.sun.wadl+xml 'IANA,[Hadley]
889
- application/vnd.sus-calendar @sus,susp 'IANA,[Niedfeldt]
890
- application/vnd.svd 'IANA,[Becker]
891
- application/vnd.swiftview-ics 'IANA,[Widener]
892
- application/vnd.syncml+xml 'IANA,[OMA Data Synchronization Working Group]
893
- application/vnd.syncml.dm+wbxml 'IANA,[OMA-DM Work Group]
894
- application/vnd.syncml.dm+xml 'IANA,[Rao],[OMA-DM Work Group]
895
- application/vnd.syncml.dm.notification 'IANA,[Thompson],[OMA-DM Work Group]
896
- application/vnd.syncml.dmddf+wbxml 'IANA,[OMA-DM Work Group]
897
- application/vnd.syncml.dmddf+xml 'IANA,[OMA-DM Work Group]
898
- application/vnd.syncml.dmtnds+wbxml 'IANA,[OMA-DM Work Group]
899
- application/vnd.syncml.dmtnds+xml 'IANA,[OMA-DM Work Group]
900
- application/vnd.syncml.ds.notification 'IANA,[OMA Data Synchronization Working Group]
901
- application/vnd.tao.intent-module-archive 'IANA,[Shelton]
902
- application/vnd.tmobile-livetv 'IANA,[Helin]
903
- application/vnd.trid.tpt 'IANA,[Cusack]
904
- application/vnd.triscape.mxs 'IANA,[Simonoff]
905
- application/vnd.trueapp 'IANA,[Hepler]
906
- application/vnd.truedoc 'IANA,[Chase]
907
- application/vnd.ubisoft.webplayer 'IANA,[Talbot]
908
- application/vnd.ufdl 'IANA,[Manning]
909
- application/vnd.uiq.theme 'IANA,[Ocock]
910
- application/vnd.umajin 'IANA,[Riden]
911
- application/vnd.unity 'IANA,[Unity3d]
912
- application/vnd.uoml+xml 'IANA,[Gerdes]
913
- application/vnd.uplanet.alert 'IANA,[Martin]
914
- application/vnd.uplanet.alert-wbxml 'IANA,[Martin]
915
- application/vnd.uplanet.bearer-choice 'IANA,[Martin]
916
- application/vnd.uplanet.bearer-choice-wbxml 'IANA,[Martin]
917
- application/vnd.uplanet.cacheop 'IANA,[Martin]
918
- application/vnd.uplanet.cacheop-wbxml 'IANA,[Martin]
919
- application/vnd.uplanet.channel 'IANA,[Martin]
920
- application/vnd.uplanet.channel-wbxml 'IANA,[Martin]
921
- application/vnd.uplanet.list 'IANA,[Martin]
922
- application/vnd.uplanet.list-wbxml 'IANA,[Martin]
923
- application/vnd.uplanet.listcmd 'IANA,[Martin]
924
- application/vnd.uplanet.listcmd-wbxml 'IANA,[Martin]
925
- application/vnd.uplanet.signal 'IANA,[Martin]
926
- application/vnd.vcx 'IANA,[T.Sugimoto]
927
- application/vnd.vd-study 'IANA,[Rogge]
928
- application/vnd.vectorworks 'IANA,[Ferguson],[Sarkar]
929
- application/vnd.verimatrix.vcas 'IANA,[Peterka]
930
- application/vnd.vidsoft.vidconference @vsc :8bit 'IANA,[Hess]
931
- application/vnd.visio @vsd,vst,vsw,vss 'IANA,[Sandal]
932
- application/vnd.visionary @vis 'IANA,[Aravindakumar]
933
- application/vnd.vividence.scriptfile 'IANA,[Risher]
934
- application/vnd.vsf 'IANA,[Rowe]
935
- application/vnd.wap.sic @sic 'IANA,[WAP-Forum]
936
- application/vnd.wap.slc @slc 'IANA,[WAP-Forum]
937
- application/vnd.wap.wbxml @wbxml 'IANA,[Stark]
938
- application/vnd.wap.wmlc @wmlc 'IANA,[Stark]
939
- application/vnd.wap.wmlscriptc @wmlsc 'IANA,[Stark]
940
- application/vnd.webturbo @wtb 'IANA,[Rehem]
941
- application/vnd.wfa.wsc 'IANA,[Wi-Fi Alliance]
942
- application/vnd.windows.devicepairing 'IANA,[Dandawate]
943
- application/vnd.wmc 'IANA,[Kjørnes=Kjornes]
944
- application/vnd.wmf.bootstrap 'IANA,[Nguyenphu],[Iyer]
945
- application/vnd.wolfram.mathematica 'IANA,[Wolfram]
946
- application/vnd.wolfram.mathematica.package 'IANA,[Wolfram]
947
- application/vnd.wolfram.player 'IANA,[Wolfram]
948
- application/vnd.wordperfect @wpd 'IANA,[Scarborough]
949
- application/vnd.wqd @wqd 'IANA,[Bostrom]
950
- application/vnd.wrq-hp3000-labelled 'IANA,[Bartram]
951
- application/vnd.wt.stf 'IANA,[Wohler]
952
- application/vnd.wv.csp+wbxml @wv 'IANA,[Salmi]
953
- application/vnd.wv.csp+xml :8bit 'IANA,[Ingimundarson]
954
- application/vnd.wv.ssp+xml :8bit 'IANA,[Ingimundarson]
955
- application/vnd.xacml+json 'IANA,[Brossard]
956
- application/vnd.xara 'IANA,[Matthewman]
957
- application/vnd.xfdl 'IANA,[Manning]
958
- application/vnd.xfdl.webform 'IANA,[Mansell]
959
- application/vnd.xmi+xml 'IANA,[Waskiewicz]
960
- application/vnd.xmpie.cpkg 'IANA,[Sherwin]
961
- application/vnd.xmpie.dpkg 'IANA,[Sherwin]
962
- application/vnd.xmpie.plan 'IANA,[Sherwin]
963
- application/vnd.xmpie.ppkg 'IANA,[Sherwin]
964
- application/vnd.xmpie.xlim 'IANA,[Sherwin]
965
- application/vnd.yamaha.hv-dic @hvd 'IANA,[Yamamoto]
966
- application/vnd.yamaha.hv-script @hvs 'IANA,[Yamamoto]
967
- application/vnd.yamaha.hv-voice @hvp 'IANA,[Yamamoto]
968
- application/vnd.yamaha.openscoreformat 'IANA,[Olleson]
969
- application/vnd.yamaha.openscoreformat.osfpvg+xml 'IANA,[Olleson]
970
- application/vnd.yamaha.remote-setup 'IANA,[Sukizaki]
971
- application/vnd.yamaha.smaf-audio @saf 'IANA,[Shinoda]
972
- application/vnd.yamaha.smaf-phrase @spf 'IANA,[Shinoda]
973
- application/vnd.yamaha.through-ngn 'IANA,[Sukizaki]
974
- application/vnd.yamaha.tunnel-udpencap 'IANA,[Sukizaki]
975
- application/vnd.yellowriver-custom-menu 'IANA,[Yellow]
976
- application/vnd.zul 'IANA,[Grothmann]
977
- application/vnd.zzazz.deck+xml 'IANA,[Hewett]
978
- application/voicexml+xml 'IANA,RFC4267
979
- application/vq-rtcpxr 'IANA,RFC6035
980
- application/watcherinfo+xml @wif 'IANA,RFC3858
981
- application/whoispp-query 'IANA,RFC2957
982
- application/whoispp-response 'IANA,RFC2958
983
- application/widget 'IANA,[W3C],[Pemberton]
984
- application/wita 'IANA,[Campbell]
985
- application/wordperfect5.1 @wp5,wp 'IANA,[Lindner]
986
- application/wsdl+xml 'IANA,[W3C]
987
- application/wspolicy+xml 'IANA,[W3C]
988
- application/x-www-form-urlencoded :7bit '[W3C],{HTML5=http://www.w3.org/TR/html5/iana.html#application/x-www-form-urlencoded}
989
- application/x400-bp 'IANA,RFC1494
990
- application/xcap-att+xml 'IANA,RFC4825
991
- application/xcap-caps+xml 'IANA,RFC4825
992
- application/xcap-diff+xml 'IANA,RFC5874
993
- application/xcap-el+xml 'IANA,RFC4825
994
- application/xcap-error+xml 'IANA,RFC4825
995
- application/xcap-ns+xml 'IANA,RFC4825
996
- application/xcon-conference-info+xml 'IANA,{RFC-ietf-xcon-event-package-01.txt=http://tools.ietf.org/html/draft-ietf-xcon-event-package}
997
- application/xcon-conference-info-diff+xml 'IANA,{RFC-ietf-xcon-event-package-01.txt=http://tools.ietf.org/html/draft-ietf-xcon-event-package}
998
- application/xenc+xml 'IANA,[Reagle],[XENC Working Group]
999
- application/xhtml+xml @xhtml :8bit 'IANA,RFC3236
1000
- application/xml @xml,xsl :8bit 'IANA,RFC3023
1001
- application/xml-dtd @dtd :8bit 'IANA,RFC3023
1002
- application/xml-external-parsed-entity 'IANA,RFC3023
1003
- application/xmpp+xml 'IANA,RFC3923
1004
- application/xop+xml 'IANA,[Nottingham]
1005
- application/xslt+xml @xslt 'IANA,[W3C]
1006
- application/xv+xml 'IANA,RFC4374
1007
- application/yang 'IANA,RFC6020
1008
- application/yin+xml 'IANA,RFC6020
1009
- application/zip @zip :base64 'IANA,[Lindner]
1010
- application/zlib 'IANA,RFC6713