mime-types 1.16 → 3.5.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
 - data/.standard.yml +4 -0
 - data/Code-of-Conduct.md +73 -0
 - data/Contributing.md +133 -0
 - data/History.md +335 -0
 - data/Licence.md +25 -0
 - data/Manifest.txt +27 -7
 - data/README.rdoc +194 -0
 - data/Rakefile +191 -278
 - data/lib/mime/type/columnar.rb +57 -0
 - data/lib/mime/type.rb +660 -0
 - data/lib/mime/types/_columnar.rb +137 -0
 - data/lib/mime/types/cache.rb +54 -0
 - data/lib/mime/types/columnar.rb +3 -0
 - data/lib/mime/types/container.rb +96 -0
 - data/lib/mime/types/deprecations.rb +36 -0
 - data/lib/mime/types/full.rb +19 -0
 - data/lib/mime/types/loader.rb +159 -0
 - data/lib/mime/types/logger.rb +37 -0
 - data/lib/mime/types/registry.rb +90 -0
 - data/lib/mime/types.rb +197 -715
 - data/lib/mime-types.rb +3 -0
 - data/test/bad-fixtures/malformed +9 -0
 - data/test/fixture/json.json +1 -0
 - data/test/fixture/old-data +9 -0
 - data/test/fixture/yaml.yaml +55 -0
 - data/test/minitest_helper.rb +10 -0
 - data/test/test_mime_type.rb +585 -284
 - data/test/test_mime_types.rb +134 -83
 - data/test/test_mime_types_cache.rb +118 -0
 - data/test/test_mime_types_class.rb +164 -0
 - data/test/test_mime_types_lazy.rb +49 -0
 - data/test/test_mime_types_loader.rb +32 -0
 - metadata +295 -110
 - data/History.txt +0 -107
 - data/Install.txt +0 -17
 - data/Licence.txt +0 -15
 - data/README.txt +0 -28
 - data/lib/mime/types.rb.data +0 -1324
 - data/mime-types.gemspec +0 -43
 - data/setup.rb +0 -1585
 - data.tar.gz.sig +0 -2
 - metadata.gz.sig +0 -0
 
    
        data/lib/mime/types.rb.data
    DELETED
    
    | 
         @@ -1,1324 +0,0 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            # vim: ft=ruby encoding=utf-8
         
     | 
| 
       2 
     | 
    
         
            -
            #--
         
     | 
| 
       3 
     | 
    
         
            -
            # MIME::Types
         
     | 
| 
       4 
     | 
    
         
            -
            # A Ruby implementation of a MIME Types information library. Based in spirit
         
     | 
| 
       5 
     | 
    
         
            -
            # on the Perl MIME::Types information library by Mark Overmeer.
         
     | 
| 
       6 
     | 
    
         
            -
            # http://rubyforge.org/projects/mime-types/
         
     | 
| 
       7 
     | 
    
         
            -
            #
         
     | 
| 
       8 
     | 
    
         
            -
            # Licensed under the Ruby disjunctive licence with the GNU GPL or the Perl
         
     | 
| 
       9 
     | 
    
         
            -
            # Artistic licence. See Licence.txt for more information.
         
     | 
| 
       10 
     | 
    
         
            -
            #
         
     | 
| 
       11 
     | 
    
         
            -
            # Copyright 2003 - 2009 Austin Ziegler
         
     | 
| 
       12 
     | 
    
         
            -
            #++
         
     | 
| 
       13 
     | 
    
         
            -
             
     | 
| 
       14 
     | 
    
         
            -
            # Build the type list from the string below.
         
     | 
| 
       15 
     | 
    
         
            -
            #
         
     | 
| 
       16 
     | 
    
         
            -
            #   [*][!][os:]mt/st[<ws>@ext][<ws>:enc][<ws>'url-list][<ws>=docs]
         
     | 
| 
       17 
     | 
    
         
            -
            #
         
     | 
| 
       18 
     | 
    
         
            -
            # == *
         
     | 
| 
       19 
     | 
    
         
            -
            # An unofficial MIME type. This should be used if and only if the MIME type
         
     | 
| 
       20 
     | 
    
         
            -
            # is not properly specified (that is, not under either x-type or
         
     | 
| 
       21 
     | 
    
         
            -
            # vnd.name.type).
         
     | 
| 
       22 
     | 
    
         
            -
            #
         
     | 
| 
       23 
     | 
    
         
            -
            # == !
         
     | 
| 
       24 
     | 
    
         
            -
            # An obsolete MIME type. May be used with an unofficial MIME type.
         
     | 
| 
       25 
     | 
    
         
            -
            #
         
     | 
| 
       26 
     | 
    
         
            -
            # == os:
         
     | 
| 
       27 
     | 
    
         
            -
            # Platform-specific MIME type definition.
         
     | 
| 
       28 
     | 
    
         
            -
            #
         
     | 
| 
       29 
     | 
    
         
            -
            # == mt
         
     | 
| 
       30 
     | 
    
         
            -
            # The media type.
         
     | 
| 
       31 
     | 
    
         
            -
            #
         
     | 
| 
       32 
     | 
    
         
            -
            # == st
         
     | 
| 
       33 
     | 
    
         
            -
            # The media subtype.
         
     | 
| 
       34 
     | 
    
         
            -
            #
         
     | 
| 
       35 
     | 
    
         
            -
            # == <ws>@ext
         
     | 
| 
       36 
     | 
    
         
            -
            # The list of comma-separated extensions.
         
     | 
| 
       37 
     | 
    
         
            -
            #
         
     | 
| 
       38 
     | 
    
         
            -
            # == <ws>:enc
         
     | 
| 
       39 
     | 
    
         
            -
            # The encoding.
         
     | 
| 
       40 
     | 
    
         
            -
            #
         
     | 
| 
       41 
     | 
    
         
            -
            # == <ws>'url-list
         
     | 
| 
       42 
     | 
    
         
            -
            # The list of comma-separated URLs.
         
     | 
| 
       43 
     | 
    
         
            -
            #
         
     | 
| 
       44 
     | 
    
         
            -
            # == <ws>=docs
         
     | 
| 
       45 
     | 
    
         
            -
            # The documentation string.
         
     | 
| 
       46 
     | 
    
         
            -
            #
         
     | 
| 
       47 
     | 
    
         
            -
            # That is, everything except the media type and the subtype is optional. The
         
     | 
| 
       48 
     | 
    
         
            -
            # more information that's available, though, the richer the values that can
         
     | 
| 
       49 
     | 
    
         
            -
            # be provided.
         
     | 
| 
       50 
     | 
    
         
            -
             
     | 
| 
       51 
     | 
    
         
            -
            data_mime_type_first_line = __LINE__ + 2
         
     | 
| 
       52 
     | 
    
         
            -
            data_mime_type = <<MIME_TYPES
         
     | 
| 
       53 
     | 
    
         
            -
              # application/*
         
     | 
| 
       54 
     | 
    
         
            -
            application/activemessage 'IANA,[Shapiro]
         
     | 
| 
       55 
     | 
    
         
            -
            application/andrew-inset 'IANA,[Borenstein]
         
     | 
| 
       56 
     | 
    
         
            -
            application/applefile :base64 'IANA,[Faltstrom]
         
     | 
| 
       57 
     | 
    
         
            -
            application/atom+xml @atom :8bit 'IANA,RFC4287,RFC5023
         
     | 
| 
       58 
     | 
    
         
            -
            application/atomcat+xml :8bit 'IANA,RFC5023
         
     | 
| 
       59 
     | 
    
         
            -
            application/atomicmail 'IANA,[Borenstein]
         
     | 
| 
       60 
     | 
    
         
            -
            application/atomsvc+xml :8bit 'IANA,RFC5023
         
     | 
| 
       61 
     | 
    
         
            -
            application/auth-policy+xml :8bit 'IANA,RFC4745
         
     | 
| 
       62 
     | 
    
         
            -
            application/batch-SMTP 'IANA,RFC2442
         
     | 
| 
       63 
     | 
    
         
            -
            application/beep+xml 'IANA,RFC3080
         
     | 
| 
       64 
     | 
    
         
            -
            application/cals-1840 'IANA,RFC1895
         
     | 
| 
       65 
     | 
    
         
            -
            application/ccxml+xml 'IANA,RFC4267
         
     | 
| 
       66 
     | 
    
         
            -
            application/cea-2018+xml 'IANA,[Zimmermann]
         
     | 
| 
       67 
     | 
    
         
            -
            application/cellml+xml 'IANA,RFC4708
         
     | 
| 
       68 
     | 
    
         
            -
            application/cnrp+xml 'IANA,RFC3367
         
     | 
| 
       69 
     | 
    
         
            -
            application/commonground 'IANA,[Glazer]
         
     | 
| 
       70 
     | 
    
         
            -
            application/conference-info+xml 'IANA,RFC4575
         
     | 
| 
       71 
     | 
    
         
            -
            application/cpl+xml 'IANA,RFC3880
         
     | 
| 
       72 
     | 
    
         
            -
            application/csta+xml 'IANA,[Ecma International Helpdesk]
         
     | 
| 
       73 
     | 
    
         
            -
            application/CSTAdata+xml 'IANA,[Ecma International Helpdesk]
         
     | 
| 
       74 
     | 
    
         
            -
            application/cybercash 'IANA,[Eastlake]
         
     | 
| 
       75 
     | 
    
         
            -
            application/davmount+xml 'IANA,RFC4709
         
     | 
| 
       76 
     | 
    
         
            -
            application/dca-rft 'IANA,[Campbell]
         
     | 
| 
       77 
     | 
    
         
            -
            application/dec-dx 'IANA,[Campbell]
         
     | 
| 
       78 
     | 
    
         
            -
            application/dialog-info+xml 'IANA,RFC4235
         
     | 
| 
       79 
     | 
    
         
            -
            application/dicom 'IANA,RFC3240
         
     | 
| 
       80 
     | 
    
         
            -
            application/dns 'IANA,RFC4027
         
     | 
| 
       81 
     | 
    
         
            -
            application/dvcs 'IANA,RFC3029
         
     | 
| 
       82 
     | 
    
         
            -
            application/ecmascript 'IANA,RFC4329
         
     | 
| 
       83 
     | 
    
         
            -
            application/EDI-Consent 'IANA,RFC1767
         
     | 
| 
       84 
     | 
    
         
            -
            application/EDI-X12 'IANA,RFC1767
         
     | 
| 
       85 
     | 
    
         
            -
            application/EDIFACT 'IANA,RFC1767
         
     | 
| 
       86 
     | 
    
         
            -
            application/emma+xml 'IANA,[W3C]
         
     | 
| 
       87 
     | 
    
         
            -
            application/epp+xml 'IANA,RFC3730
         
     | 
| 
       88 
     | 
    
         
            -
            application/eshop 'IANA,[Katz]
         
     | 
| 
       89 
     | 
    
         
            -
            application/fastinfoset 'IANA,[ITU-T ASN.1 Rapporteur]
         
     | 
| 
       90 
     | 
    
         
            -
            application/fastsoap 'IANA,[ITU-T ASN.1 Rapporteur]
         
     | 
| 
       91 
     | 
    
         
            -
            application/fits 'IANA,RFC4047
         
     | 
| 
       92 
     | 
    
         
            -
            application/font-tdpfr @pfr 'IANA,RFC3073
         
     | 
| 
       93 
     | 
    
         
            -
            application/H224 'IANA,RFC4573
         
     | 
| 
       94 
     | 
    
         
            -
            application/http 'IANA,RFC2616
         
     | 
| 
       95 
     | 
    
         
            -
            application/hyperstudio @stk 'IANA,[Domino]
         
     | 
| 
       96 
     | 
    
         
            -
            application/ibe-key-request+xml 'IANA,RFC5408
         
     | 
| 
       97 
     | 
    
         
            -
            application/ibe-pkg-reply+xml 'IANA,RFC5408
         
     | 
| 
       98 
     | 
    
         
            -
            application/ibe-pp-data 'IANA,RFC5408
         
     | 
| 
       99 
     | 
    
         
            -
            application/iges 'IANA,[Parks]
         
     | 
| 
       100 
     | 
    
         
            -
            application/im-iscomposing+xml 'IANA,RFC3994
         
     | 
| 
       101 
     | 
    
         
            -
            application/index 'IANA,RFC2652
         
     | 
| 
       102 
     | 
    
         
            -
            application/index.cmd 'IANA,RFC2652
         
     | 
| 
       103 
     | 
    
         
            -
            application/index.obj 'IANA,RFC2652
         
     | 
| 
       104 
     | 
    
         
            -
            application/index.response 'IANA,RFC2652
         
     | 
| 
       105 
     | 
    
         
            -
            application/index.vnd 'IANA,RFC2652
         
     | 
| 
       106 
     | 
    
         
            -
            application/iotp 'IANA,RFC2935
         
     | 
| 
       107 
     | 
    
         
            -
            application/ipp 'IANA,RFC2910
         
     | 
| 
       108 
     | 
    
         
            -
            application/isup 'IANA,RFC3204
         
     | 
| 
       109 
     | 
    
         
            -
            application/javascript @js :8bit 'IANA,RFC4329
         
     | 
| 
       110 
     | 
    
         
            -
            application/json @json :8bit 'IANA,RFC4627
         
     | 
| 
       111 
     | 
    
         
            -
            application/kpml-request+xml 'IANA,RFC4730
         
     | 
| 
       112 
     | 
    
         
            -
            application/kpml-response+xml 'IANA,RFC4730
         
     | 
| 
       113 
     | 
    
         
            -
            application/lost+xml 'IANA,RFC5222
         
     | 
| 
       114 
     | 
    
         
            -
            application/mac-binhex40 @hqx :8bit 'IANA,[Faltstrom]
         
     | 
| 
       115 
     | 
    
         
            -
            application/macwriteii 'IANA,[Lindner]
         
     | 
| 
       116 
     | 
    
         
            -
            application/marc 'IANA,RFC2220
         
     | 
| 
       117 
     | 
    
         
            -
            application/mathematica 'IANA,[Wolfram]
         
     | 
| 
       118 
     | 
    
         
            -
            application/mbms-associated-procedure-description+xml 'IANA,[3GPP]
         
     | 
| 
       119 
     | 
    
         
            -
            application/mbms-deregister+xml 'IANA,[3GPP]
         
     | 
| 
       120 
     | 
    
         
            -
            application/mbms-envelope+xml 'IANA,[3GPP]
         
     | 
| 
       121 
     | 
    
         
            -
            application/mbms-msk+xml 'IANA,[3GPP]
         
     | 
| 
       122 
     | 
    
         
            -
            application/mbms-msk-response+xml 'IANA,[3GPP]
         
     | 
| 
       123 
     | 
    
         
            -
            application/mbms-protection-description+xml 'IANA,[3GPP]
         
     | 
| 
       124 
     | 
    
         
            -
            application/mbms-reception-report+xml 'IANA,[3GPP]
         
     | 
| 
       125 
     | 
    
         
            -
            application/mbms-register+xml 'IANA,[3GPP]
         
     | 
| 
       126 
     | 
    
         
            -
            application/mbms-register-response+xml 'IANA,[3GPP]
         
     | 
| 
       127 
     | 
    
         
            -
            application/mbms-user-service-description+xml 'IANA,[3GPP]
         
     | 
| 
       128 
     | 
    
         
            -
            application/mbox 'IANA,RFC4155
         
     | 
| 
       129 
     | 
    
         
            -
            application/media_control+xml 'IANA,RFC5168
         
     | 
| 
       130 
     | 
    
         
            -
            application/mediaservercontrol+xml 'IANA,RFC5022
         
     | 
| 
       131 
     | 
    
         
            -
            application/mikey 'IANA,RFC3830
         
     | 
| 
       132 
     | 
    
         
            -
            application/moss-keys 'IANA,RFC1848
         
     | 
| 
       133 
     | 
    
         
            -
            application/moss-signature 'IANA,RFC1848
         
     | 
| 
       134 
     | 
    
         
            -
            application/mosskey-data 'IANA,RFC1848
         
     | 
| 
       135 
     | 
    
         
            -
            application/mosskey-request 'IANA,RFC1848
         
     | 
| 
       136 
     | 
    
         
            -
            application/mp4 'IANA,RFC4337
         
     | 
| 
       137 
     | 
    
         
            -
            application/mpeg4-generic 'IANA,RFC3640
         
     | 
| 
       138 
     | 
    
         
            -
            application/mpeg4-iod 'IANA,RFC4337
         
     | 
| 
       139 
     | 
    
         
            -
            application/mpeg4-iod-xmt 'IANA,RFC4337
         
     | 
| 
       140 
     | 
    
         
            -
            application/msword @doc,dot,wrd :base64 'IANA,[Lindner]
         
     | 
| 
       141 
     | 
    
         
            -
            application/mxf 'IANA,RFC4539
         
     | 
| 
       142 
     | 
    
         
            -
            application/nasdata 'IANA,RFC4707
         
     | 
| 
       143 
     | 
    
         
            -
            application/news-transmission 'IANA,RFC1036,[Spencer]
         
     | 
| 
       144 
     | 
    
         
            -
            application/nss 'IANA,[Hammer]
         
     | 
| 
       145 
     | 
    
         
            -
            application/ocsp-request 'IANA,RFC2560
         
     | 
| 
       146 
     | 
    
         
            -
            application/ocsp-response 'IANA,RFC2560
         
     | 
| 
       147 
     | 
    
         
            -
            application/octet-stream @bin,dms,lha,lzh,exe,class,ani,pgp,so,dll,dmg,dylib :base64 'IANA,RFC2045,RFC2046
         
     | 
| 
       148 
     | 
    
         
            -
            application/oda @oda 'IANA,RFC2045,RFC2046
         
     | 
| 
       149 
     | 
    
         
            -
            application/oebps-package+xml 'IANA,RFC4839
         
     | 
| 
       150 
     | 
    
         
            -
            application/ogg @ogx 'IANA,RFC5334
         
     | 
| 
       151 
     | 
    
         
            -
            application/parityfec 'IANA,RFC5109
         
     | 
| 
       152 
     | 
    
         
            -
            application/patch-ops-error+xml 'IANA,RFC5261
         
     | 
| 
       153 
     | 
    
         
            -
            application/pdf @pdf :base64 'IANA,RFC3778
         
     | 
| 
       154 
     | 
    
         
            -
            application/pgp-encrypted :7bit 'IANA,RFC3156
         
     | 
| 
       155 
     | 
    
         
            -
            application/pgp-keys :7bit 'IANA,RFC3156
         
     | 
| 
       156 
     | 
    
         
            -
            application/pgp-signature @sig :base64 'IANA,RFC3156
         
     | 
| 
       157 
     | 
    
         
            -
            application/pidf+xml 'IANA,RFC3863
         
     | 
| 
       158 
     | 
    
         
            -
            application/pidf-diff+xml 'IANA,RFC5262
         
     | 
| 
       159 
     | 
    
         
            -
            application/pkcs10 @p10 'IANA,RFC2311
         
     | 
| 
       160 
     | 
    
         
            -
            application/pkcs7-mime @p7m,p7c 'IANA,RFC2311
         
     | 
| 
       161 
     | 
    
         
            -
            application/pkcs7-signature @p7s 'IANA,RFC2311
         
     | 
| 
       162 
     | 
    
         
            -
            application/pkix-cert @cer 'IANA,RFC2585
         
     | 
| 
       163 
     | 
    
         
            -
            application/pkix-crl @crl 'IANA,RFC2585
         
     | 
| 
       164 
     | 
    
         
            -
            application/pkix-pkipath @pkipath 'IANA,RFC4366
         
     | 
| 
       165 
     | 
    
         
            -
            application/pkixcmp @pki 'IANA,RFC2510
         
     | 
| 
       166 
     | 
    
         
            -
            application/pls+xml 'IANA,RFC4267
         
     | 
| 
       167 
     | 
    
         
            -
            application/poc-settings+xml 'IANA,RFC4354
         
     | 
| 
       168 
     | 
    
         
            -
            application/postscript @ai,eps,ps :8bit 'IANA,RFC2045,RFC2046
         
     | 
| 
       169 
     | 
    
         
            -
            application/prs.alvestrand.titrax-sheet 'IANA,[Alvestrand]
         
     | 
| 
       170 
     | 
    
         
            -
            application/prs.cww @cw,cww 'IANA,[Rungchavalnont]
         
     | 
| 
       171 
     | 
    
         
            -
            application/prs.nprend @rnd,rct 'IANA,[Doggett]
         
     | 
| 
       172 
     | 
    
         
            -
            application/prs.plucker 'IANA,[Janssen]
         
     | 
| 
       173 
     | 
    
         
            -
            application/qsig 'IANA,RFC3204
         
     | 
| 
       174 
     | 
    
         
            -
            application/rdf+xml @rdf :8bit 'IANA,RFC3870
         
     | 
| 
       175 
     | 
    
         
            -
            application/reginfo+xml 'IANA,RFC3680
         
     | 
| 
       176 
     | 
    
         
            -
            application/relax-ng-compact-syntax 'IANA,{ISO/IEC 1957-2:2003/FDAM-1=http://www.jtc1sc34.org/repository/0661.pdf}
         
     | 
| 
       177 
     | 
    
         
            -
            application/remote-printing 'IANA,RFC1486,[Rose]
         
     | 
| 
       178 
     | 
    
         
            -
            application/resource-lists+xml 'IANA,RFC4826
         
     | 
| 
       179 
     | 
    
         
            -
            application/resource-lists-diff+xml 'IANA,RFC5362
         
     | 
| 
       180 
     | 
    
         
            -
            application/riscos 'IANA,[Smith]
         
     | 
| 
       181 
     | 
    
         
            -
            application/rlmi+xml 'IANA,RFC4662
         
     | 
| 
       182 
     | 
    
         
            -
            application/rls-services+xml 'IANA,RFC4826
         
     | 
| 
       183 
     | 
    
         
            -
            application/rtf @rtf 'IANA,[Lindner]
         
     | 
| 
       184 
     | 
    
         
            -
            application/rtx 'IANA,RFC4588
         
     | 
| 
       185 
     | 
    
         
            -
            application/samlassertion+xml 'IANA,[OASIS Security Services Technical Committee (SSTC)]
         
     | 
| 
       186 
     | 
    
         
            -
            application/samlmetadata+xml 'IANA,[OASIS Security Services Technical Committee (SSTC)]
         
     | 
| 
       187 
     | 
    
         
            -
            application/sbml+xml 'IANA,RFC3823
         
     | 
| 
       188 
     | 
    
         
            -
            application/scvp-cv-request 'IANA,RFC5055
         
     | 
| 
       189 
     | 
    
         
            -
            application/scvp-cv-response 'IANA,RFC5055
         
     | 
| 
       190 
     | 
    
         
            -
            application/scvp-vp-request 'IANA,RFC5055
         
     | 
| 
       191 
     | 
    
         
            -
            application/scvp-vp-response 'IANA,RFC5055
         
     | 
| 
       192 
     | 
    
         
            -
            application/sdp 'IANA,RFC4566
         
     | 
| 
       193 
     | 
    
         
            -
            application/set-payment 'IANA,[Korver]
         
     | 
| 
       194 
     | 
    
         
            -
            application/set-payment-initiation 'IANA,[Korver]
         
     | 
| 
       195 
     | 
    
         
            -
            application/set-registration 'IANA,[Korver]
         
     | 
| 
       196 
     | 
    
         
            -
            application/set-registration-initiation 'IANA,[Korver]
         
     | 
| 
       197 
     | 
    
         
            -
            application/sgml @sgml 'IANA,RFC1874
         
     | 
| 
       198 
     | 
    
         
            -
            application/sgml-open-catalog @soc 'IANA,[Grosso]
         
     | 
| 
       199 
     | 
    
         
            -
            application/shf+xml 'IANA,RFC4194
         
     | 
| 
       200 
     | 
    
         
            -
            application/sieve @siv 'IANA,RFC5228
         
     | 
| 
       201 
     | 
    
         
            -
            application/simple-filter+xml 'IANA,RFC4661
         
     | 
| 
       202 
     | 
    
         
            -
            application/simple-message-summary 'IANA,RFC3842
         
     | 
| 
       203 
     | 
    
         
            -
            application/simpleSymbolContainer 'IANA,[3GPP]
         
     | 
| 
       204 
     | 
    
         
            -
            application/slate 'IANA,[Crowley]
         
     | 
| 
       205 
     | 
    
         
            -
            application/smil+xml @smi,smil :8bit 'IANA,RFC4536
         
     | 
| 
       206 
     | 
    
         
            -
            application/soap+fastinfoset 'IANA,[ITU-T ASN.1 Rapporteur]
         
     | 
| 
       207 
     | 
    
         
            -
            application/soap+xml 'IANA,RFC3902
         
     | 
| 
       208 
     | 
    
         
            -
            application/sparql-query 'IANA,[W3C]
         
     | 
| 
       209 
     | 
    
         
            -
            application/sparql-results+xml 'IANA,[W3C]
         
     | 
| 
       210 
     | 
    
         
            -
            application/spirits-event+xml 'IANA,RFC3910
         
     | 
| 
       211 
     | 
    
         
            -
            application/srgs 'IANA,RFC4267
         
     | 
| 
       212 
     | 
    
         
            -
            application/srgs+xml 'IANA,RFC4267
         
     | 
| 
       213 
     | 
    
         
            -
            application/ssml+xml 'IANA,RFC4267
         
     | 
| 
       214 
     | 
    
         
            -
            application/timestamp-query 'IANA,RFC3161
         
     | 
| 
       215 
     | 
    
         
            -
            application/timestamp-reply 'IANA,RFC3161
         
     | 
| 
       216 
     | 
    
         
            -
            application/tve-trigger 'IANA,[Welsh]
         
     | 
| 
       217 
     | 
    
         
            -
            application/ulpfec 'IANA,RFC5109
         
     | 
| 
       218 
     | 
    
         
            -
            application/vemmi 'IANA,RFC2122
         
     | 
| 
       219 
     | 
    
         
            -
            application/vnd.3gpp.bsf+xml 'IANA,[Meredith]
         
     | 
| 
       220 
     | 
    
         
            -
            application/vnd.3gpp.pic-bw-large @plb 'IANA,[Meredith]
         
     | 
| 
       221 
     | 
    
         
            -
            application/vnd.3gpp.pic-bw-small @psb 'IANA,[Meredith]
         
     | 
| 
       222 
     | 
    
         
            -
            application/vnd.3gpp.pic-bw-var @pvb 'IANA,[Meredith]
         
     | 
| 
       223 
     | 
    
         
            -
            application/vnd.3gpp.sms @sms 'IANA,[Meredith]
         
     | 
| 
       224 
     | 
    
         
            -
            application/vnd.3gpp2.bcmcsinfo+xml 'IANA,[Dryden]
         
     | 
| 
       225 
     | 
    
         
            -
            application/vnd.3gpp2.sms 'IANA,[Mahendran]
         
     | 
| 
       226 
     | 
    
         
            -
            application/vnd.3gpp2.tcap 'IANA,[Mahendran]
         
     | 
| 
       227 
     | 
    
         
            -
            application/vnd.3M.Post-it-Notes 'IANA,[O'Brien]
         
     | 
| 
       228 
     | 
    
         
            -
            application/vnd.accpac.simply.aso 'IANA,[Leow]
         
     | 
| 
       229 
     | 
    
         
            -
            application/vnd.accpac.simply.imp 'IANA,[Leow]
         
     | 
| 
       230 
     | 
    
         
            -
            application/vnd.acucobol 'IANA,[Lubin]
         
     | 
| 
       231 
     | 
    
         
            -
            application/vnd.acucorp @atc,acutc :7bit 'IANA,[Lubin]
         
     | 
| 
       232 
     | 
    
         
            -
            application/vnd.adobe.xdp+xml 'IANA,[Brinkman]
         
     | 
| 
       233 
     | 
    
         
            -
            application/vnd.adobe.xfdf @xfdf 'IANA,[Perelman]
         
     | 
| 
       234 
     | 
    
         
            -
            application/vnd.aether.imp 'IANA,[Moskowitz]
         
     | 
| 
       235 
     | 
    
         
            -
            application/vnd.airzip.filesecure.azf 'IANA,[Mould],[Clueit]
         
     | 
| 
       236 
     | 
    
         
            -
            application/vnd.airzip.filesecure.azs 'IANA,[Mould],[Clueit]
         
     | 
| 
       237 
     | 
    
         
            -
            application/vnd.americandynamics.acc 'IANA,[Sands]
         
     | 
| 
       238 
     | 
    
         
            -
            application/vnd.amiga.ami @ami 'IANA,[Blumberg]
         
     | 
| 
       239 
     | 
    
         
            -
            application/vnd.anser-web-certificate-issue-initiation 'IANA,[Mori]
         
     | 
| 
       240 
     | 
    
         
            -
            application/vnd.antix.game-component 'IANA,[Shelton]
         
     | 
| 
       241 
     | 
    
         
            -
            application/vnd.apple.installer+xml 'IANA,[Bierman]
         
     | 
| 
       242 
     | 
    
         
            -
            application/vnd.arastra.swi 'IANA,[Fenner]
         
     | 
| 
       243 
     | 
    
         
            -
            application/vnd.audiograph 'IANA,[Slusanschi]
         
     | 
| 
       244 
     | 
    
         
            -
            application/vnd.autopackage 'IANA,[Hearn]
         
     | 
| 
       245 
     | 
    
         
            -
            application/vnd.avistar+xml 'IANA,[Vysotsky]
         
     | 
| 
       246 
     | 
    
         
            -
            application/vnd.blueice.multipass @mpm 'IANA,[Holmstrom]
         
     | 
| 
       247 
     | 
    
         
            -
            application/vnd.bluetooth.ep.oob 'IANA,[Foley]
         
     | 
| 
       248 
     | 
    
         
            -
            application/vnd.bmi 'IANA,[Gotoh]
         
     | 
| 
       249 
     | 
    
         
            -
            application/vnd.businessobjects 'IANA,[Imoucha]
         
     | 
| 
       250 
     | 
    
         
            -
            application/vnd.cab-jscript 'IANA,[Falkenberg]
         
     | 
| 
       251 
     | 
    
         
            -
            application/vnd.canon-cpdl 'IANA,[Muto]
         
     | 
| 
       252 
     | 
    
         
            -
            application/vnd.canon-lips 'IANA,[Muto]
         
     | 
| 
       253 
     | 
    
         
            -
            application/vnd.cendio.thinlinc.clientconf 'IANA,[Åstrand=Astrand]
         
     | 
| 
       254 
     | 
    
         
            -
            application/vnd.chemdraw+xml 'IANA,[Howes]
         
     | 
| 
       255 
     | 
    
         
            -
            application/vnd.chipnuts.karaoke-mmd 'IANA,[Xiong]
         
     | 
| 
       256 
     | 
    
         
            -
            application/vnd.cinderella @cdy 'IANA,[Kortenkamp]
         
     | 
| 
       257 
     | 
    
         
            -
            application/vnd.cirpack.isdn-ext 'IANA,[Mayeux]
         
     | 
| 
       258 
     | 
    
         
            -
            application/vnd.claymore 'IANA,[Simpson]
         
     | 
| 
       259 
     | 
    
         
            -
            application/vnd.clonk.c4group 'IANA,[Brammer]
         
     | 
| 
       260 
     | 
    
         
            -
            application/vnd.commerce-battelle 'IANA,[Applebaum]
         
     | 
| 
       261 
     | 
    
         
            -
            application/vnd.commonspace 'IANA,[Chandhok]
         
     | 
| 
       262 
     | 
    
         
            -
            application/vnd.contact.cmsg 'IANA,[Patz]
         
     | 
| 
       263 
     | 
    
         
            -
            application/vnd.cosmocaller @cmc 'IANA,[Dellutri]
         
     | 
| 
       264 
     | 
    
         
            -
            application/vnd.crick.clicker 'IANA,[Burt]
         
     | 
| 
       265 
     | 
    
         
            -
            application/vnd.crick.clicker.keyboard 'IANA,[Burt]
         
     | 
| 
       266 
     | 
    
         
            -
            application/vnd.crick.clicker.palette 'IANA,[Burt]
         
     | 
| 
       267 
     | 
    
         
            -
            application/vnd.crick.clicker.template 'IANA,[Burt]
         
     | 
| 
       268 
     | 
    
         
            -
            application/vnd.crick.clicker.wordbank 'IANA,[Burt]
         
     | 
| 
       269 
     | 
    
         
            -
            application/vnd.criticaltools.wbs+xml @wbs 'IANA,[Spiller]
         
     | 
| 
       270 
     | 
    
         
            -
            application/vnd.ctc-posml 'IANA,[Kohlhepp]
         
     | 
| 
       271 
     | 
    
         
            -
            application/vnd.ctct.ws+xml 'IANA,[Ancona]
         
     | 
| 
       272 
     | 
    
         
            -
            application/vnd.cups-pdf 'IANA,[Sweet]
         
     | 
| 
       273 
     | 
    
         
            -
            application/vnd.cups-postscript 'IANA,[Sweet]
         
     | 
| 
       274 
     | 
    
         
            -
            application/vnd.cups-ppd 'IANA,[Sweet]
         
     | 
| 
       275 
     | 
    
         
            -
            application/vnd.cups-raster 'IANA,[Sweet]
         
     | 
| 
       276 
     | 
    
         
            -
            application/vnd.cups-raw 'IANA,[Sweet]
         
     | 
| 
       277 
     | 
    
         
            -
            application/vnd.curl @curl 'IANA,[Byrnes]
         
     | 
| 
       278 
     | 
    
         
            -
            application/vnd.cybank 'IANA,[Helmee]
         
     | 
| 
       279 
     | 
    
         
            -
            application/vnd.data-vision.rdz @rdz 'IANA,[Fields]
         
     | 
| 
       280 
     | 
    
         
            -
            application/vnd.denovo.fcselayout-link 'IANA,[Dixon]
         
     | 
| 
       281 
     | 
    
         
            -
            application/vnd.dir-bi.plate-dl-nosuffix 'IANA,[Yamanaka]
         
     | 
| 
       282 
     | 
    
         
            -
            application/vnd.dna 'IANA,[Searcy]
         
     | 
| 
       283 
     | 
    
         
            -
            application/vnd.dpgraph 'IANA,[Parker]
         
     | 
| 
       284 
     | 
    
         
            -
            application/vnd.dreamfactory @dfac 'IANA,[Appleton]
         
     | 
| 
       285 
     | 
    
         
            -
            application/vnd.dvb.esgcontainer 'IANA,[Heuer]
         
     | 
| 
       286 
     | 
    
         
            -
            application/vnd.dvb.ipdcesgaccess 'IANA,[Heuer]
         
     | 
| 
       287 
     | 
    
         
            -
            application/vnd.dvb.iptv.alfec-base 'IANA,[Henry]
         
     | 
| 
       288 
     | 
    
         
            -
            application/vnd.dvb.iptv.alfec-enhancement 'IANA,[Henry]
         
     | 
| 
       289 
     | 
    
         
            -
            application/vnd.dvb.notif-container+xml 'IANA,[Yue]
         
     | 
| 
       290 
     | 
    
         
            -
            application/vnd.dvb.notif-generic+xml 'IANA,[Yue]
         
     | 
| 
       291 
     | 
    
         
            -
            application/vnd.dvb.notif-ia-msglist+xml 'IANA,[Yue]
         
     | 
| 
       292 
     | 
    
         
            -
            application/vnd.dvb.notif-ia-registration-request+xml 'IANA,[Yue]
         
     | 
| 
       293 
     | 
    
         
            -
            application/vnd.dvb.notif-ia-registration-response+xml 'IANA,[Yue]
         
     | 
| 
       294 
     | 
    
         
            -
            application/vnd.dxr 'IANA,[Duffy]
         
     | 
| 
       295 
     | 
    
         
            -
            application/vnd.ecdis-update 'IANA,[Buettgenbach]
         
     | 
| 
       296 
     | 
    
         
            -
            application/vnd.ecowin.chart 'IANA,[Olsson]
         
     | 
| 
       297 
     | 
    
         
            -
            application/vnd.ecowin.filerequest 'IANA,[Olsson]
         
     | 
| 
       298 
     | 
    
         
            -
            application/vnd.ecowin.fileupdate 'IANA,[Olsson]
         
     | 
| 
       299 
     | 
    
         
            -
            application/vnd.ecowin.series 'IANA,[Olsson]
         
     | 
| 
       300 
     | 
    
         
            -
            application/vnd.ecowin.seriesrequest 'IANA,[Olsson]
         
     | 
| 
       301 
     | 
    
         
            -
            application/vnd.ecowin.seriesupdate 'IANA,[Olsson]
         
     | 
| 
       302 
     | 
    
         
            -
            application/vnd.emclient.accessrequest+xml 'IANA,[Navara]
         
     | 
| 
       303 
     | 
    
         
            -
            application/vnd.enliven 'IANA,[Santinelli]
         
     | 
| 
       304 
     | 
    
         
            -
            application/vnd.epson.esf 'IANA,[Hoshina]
         
     | 
| 
       305 
     | 
    
         
            -
            application/vnd.epson.msf 'IANA,[Hoshina]
         
     | 
| 
       306 
     | 
    
         
            -
            application/vnd.epson.quickanime 'IANA,[Gu]
         
     | 
| 
       307 
     | 
    
         
            -
            application/vnd.epson.salt 'IANA,[Nagatomo]
         
     | 
| 
       308 
     | 
    
         
            -
            application/vnd.epson.ssf 'IANA,[Hoshina]
         
     | 
| 
       309 
     | 
    
         
            -
            application/vnd.ericsson.quickcall 'IANA,[Tidwell]
         
     | 
| 
       310 
     | 
    
         
            -
            application/vnd.eszigno3+xml 'IANA,[Tóth=Toth]
         
     | 
| 
       311 
     | 
    
         
            -
            application/vnd.eudora.data 'IANA,[Resnick]
         
     | 
| 
       312 
     | 
    
         
            -
            application/vnd.ezpix-album 'IANA,[Electronic Zombie, Corp.=ElectronicZombieCorp]
         
     | 
| 
       313 
     | 
    
         
            -
            application/vnd.ezpix-package 'IANA,[Electronic Zombie, Corp.=ElectronicZombieCorp]
         
     | 
| 
       314 
     | 
    
         
            -
            application/vnd.f-secure.mobile 'IANA,[Sarivaara]
         
     | 
| 
       315 
     | 
    
         
            -
            application/vnd.fdf 'IANA,[Zilles]
         
     | 
| 
       316 
     | 
    
         
            -
            application/vnd.fdsn.mseed 'IANA,[Ratzesberger]
         
     | 
| 
       317 
     | 
    
         
            -
            application/vnd.ffsns 'IANA,[Holstage]
         
     | 
| 
       318 
     | 
    
         
            -
            application/vnd.fints 'IANA,[Hammann]
         
     | 
| 
       319 
     | 
    
         
            -
            application/vnd.FloGraphIt 'IANA,[Floersch]
         
     | 
| 
       320 
     | 
    
         
            -
            application/vnd.fluxtime.clip 'IANA,[Winter]
         
     | 
| 
       321 
     | 
    
         
            -
            application/vnd.font-fontforge-sfd 'IANA,[Williams]
         
     | 
| 
       322 
     | 
    
         
            -
            application/vnd.framemaker @frm,maker,frame,fm,fb,book,fbdoc 'IANA,[Wexler]
         
     | 
| 
       323 
     | 
    
         
            -
            application/vnd.frogans.fnc 'IANA,[Tamas]
         
     | 
| 
       324 
     | 
    
         
            -
            application/vnd.frogans.ltf 'IANA,[Tamas]
         
     | 
| 
       325 
     | 
    
         
            -
            application/vnd.fsc.weblaunch @fsc :7bit 'IANA,[D.Smith]
         
     | 
| 
       326 
     | 
    
         
            -
            application/vnd.fujitsu.oasys 'IANA,[Togashi]
         
     | 
| 
       327 
     | 
    
         
            -
            application/vnd.fujitsu.oasys2 'IANA,[Togashi]
         
     | 
| 
       328 
     | 
    
         
            -
            application/vnd.fujitsu.oasys3 'IANA,[Okudaira]
         
     | 
| 
       329 
     | 
    
         
            -
            application/vnd.fujitsu.oasysgp 'IANA,[Sugimoto]
         
     | 
| 
       330 
     | 
    
         
            -
            application/vnd.fujitsu.oasysprs 'IANA,[Ogita]
         
     | 
| 
       331 
     | 
    
         
            -
            application/vnd.fujixerox.ART-EX 'IANA,[Tanabe]
         
     | 
| 
       332 
     | 
    
         
            -
            application/vnd.fujixerox.ART4 'IANA,[Tanabe]
         
     | 
| 
       333 
     | 
    
         
            -
            application/vnd.fujixerox.ddd 'IANA,[Onda]
         
     | 
| 
       334 
     | 
    
         
            -
            application/vnd.fujixerox.docuworks 'IANA,[Taguchi]
         
     | 
| 
       335 
     | 
    
         
            -
            application/vnd.fujixerox.docuworks.binder 'IANA,[Matsumoto]
         
     | 
| 
       336 
     | 
    
         
            -
            application/vnd.fujixerox.HBPL 'IANA,[Tanabe]
         
     | 
| 
       337 
     | 
    
         
            -
            application/vnd.fut-misnet 'IANA,[Pruulmann]
         
     | 
| 
       338 
     | 
    
         
            -
            application/vnd.fuzzysheet 'IANA,[Birtwistle]
         
     | 
| 
       339 
     | 
    
         
            -
            application/vnd.genomatix.tuxedo @txd 'IANA,[Frey]
         
     | 
| 
       340 
     | 
    
         
            -
            application/vnd.geogebra.file 'IANA,[GeoGebra],[Kreis]
         
     | 
| 
       341 
     | 
    
         
            -
            application/vnd.gmx 'IANA,[Sciberras]
         
     | 
| 
       342 
     | 
    
         
            -
            application/vnd.google-earth.kml+xml @kml :8bit 'IANA,[Ashbridge]
         
     | 
| 
       343 
     | 
    
         
            -
            application/vnd.google-earth.kmz @kmz :8bit 'IANA,[Ashbridge]
         
     | 
| 
       344 
     | 
    
         
            -
            application/vnd.grafeq 'IANA,[Tupper]
         
     | 
| 
       345 
     | 
    
         
            -
            application/vnd.gridmp 'IANA,[Lawson]
         
     | 
| 
       346 
     | 
    
         
            -
            application/vnd.groove-account 'IANA,[Joseph]
         
     | 
| 
       347 
     | 
    
         
            -
            application/vnd.groove-help 'IANA,[Joseph]
         
     | 
| 
       348 
     | 
    
         
            -
            application/vnd.groove-identity-message 'IANA,[Joseph]
         
     | 
| 
       349 
     | 
    
         
            -
            application/vnd.groove-injector 'IANA,[Joseph]
         
     | 
| 
       350 
     | 
    
         
            -
            application/vnd.groove-tool-message 'IANA,[Joseph]
         
     | 
| 
       351 
     | 
    
         
            -
            application/vnd.groove-tool-template 'IANA,[Joseph]
         
     | 
| 
       352 
     | 
    
         
            -
            application/vnd.groove-vcard 'IANA,[Joseph]
         
     | 
| 
       353 
     | 
    
         
            -
            application/vnd.HandHeld-Entertainment+xml 'IANA,[Hamilton]
         
     | 
| 
       354 
     | 
    
         
            -
            application/vnd.hbci @hbci,hbc,kom,upa,pkd,bpd 'IANA,[Hammann]
         
     | 
| 
       355 
     | 
    
         
            -
            application/vnd.hcl-bireports 'IANA,[Serres]
         
     | 
| 
       356 
     | 
    
         
            -
            application/vnd.hhe.lesson-player @les 'IANA,[Jones]
         
     | 
| 
       357 
     | 
    
         
            -
            application/vnd.hp-HPGL @plt,hpgl 'IANA,[Pentecost]
         
     | 
| 
       358 
     | 
    
         
            -
            application/vnd.hp-hpid 'IANA,[Gupta]
         
     | 
| 
       359 
     | 
    
         
            -
            application/vnd.hp-hps 'IANA,[Aubrey]
         
     | 
| 
       360 
     | 
    
         
            -
            application/vnd.hp-jlyt 'IANA,[Gaash]
         
     | 
| 
       361 
     | 
    
         
            -
            application/vnd.hp-PCL 'IANA,[Pentecost]
         
     | 
| 
       362 
     | 
    
         
            -
            application/vnd.hp-PCLXL 'IANA,[Pentecost]
         
     | 
| 
       363 
     | 
    
         
            -
            application/vnd.httphone 'IANA,[Lefevre]
         
     | 
| 
       364 
     | 
    
         
            -
            application/vnd.hydrostatix.sof-data 'IANA,[Gillam]
         
     | 
| 
       365 
     | 
    
         
            -
            application/vnd.hzn-3d-crossword 'IANA,[Minnis]
         
     | 
| 
       366 
     | 
    
         
            -
            application/vnd.ibm.afplinedata 'IANA,[Buis]
         
     | 
| 
       367 
     | 
    
         
            -
            application/vnd.ibm.electronic-media @emm 'IANA,[Tantlinger]
         
     | 
| 
       368 
     | 
    
         
            -
            application/vnd.ibm.MiniPay 'IANA,[Herzberg]
         
     | 
| 
       369 
     | 
    
         
            -
            application/vnd.ibm.modcap 'IANA,[Hohensee]
         
     | 
| 
       370 
     | 
    
         
            -
            application/vnd.ibm.rights-management @irm 'IANA,[Tantlinger]
         
     | 
| 
       371 
     | 
    
         
            -
            application/vnd.ibm.secure-container @sc 'IANA,[Tantlinger]
         
     | 
| 
       372 
     | 
    
         
            -
            application/vnd.iccprofile 'IANA,[Green]
         
     | 
| 
       373 
     | 
    
         
            -
            application/vnd.igloader 'IANA,[Fisher]
         
     | 
| 
       374 
     | 
    
         
            -
            application/vnd.immervision-ivp 'IANA,[Villegas]
         
     | 
| 
       375 
     | 
    
         
            -
            application/vnd.immervision-ivu 'IANA,[Villegas]
         
     | 
| 
       376 
     | 
    
         
            -
            application/vnd.informedcontrol.rms+xml 'IANA,[Wahl]
         
     | 
| 
       377 
     | 
    
         
            -
            application/vnd.informix-visionary 'IANA,[Gales]
         
     | 
| 
       378 
     | 
    
         
            -
            application/vnd.intercon.formnet 'IANA,[Gurak]
         
     | 
| 
       379 
     | 
    
         
            -
            application/vnd.intertrust.digibox 'IANA,[Tomasello]
         
     | 
| 
       380 
     | 
    
         
            -
            application/vnd.intertrust.nncp 'IANA,[Tomasello]
         
     | 
| 
       381 
     | 
    
         
            -
            application/vnd.intu.qbo 'IANA,[Scratchley]
         
     | 
| 
       382 
     | 
    
         
            -
            application/vnd.intu.qfx 'IANA,[Scratchley]
         
     | 
| 
       383 
     | 
    
         
            -
            application/vnd.iptc.g2.conceptitem+xml 'IANA,[Steidl]
         
     | 
| 
       384 
     | 
    
         
            -
            application/vnd.iptc.g2.knowledgeitem+xml 'IANA,[Steidl]
         
     | 
| 
       385 
     | 
    
         
            -
            application/vnd.iptc.g2.newsitem+xml 'IANA,[Steidl]
         
     | 
| 
       386 
     | 
    
         
            -
            application/vnd.iptc.g2.packageitem+xml 'IANA,[Steidl]
         
     | 
| 
       387 
     | 
    
         
            -
            application/vnd.ipunplugged.rcprofile @rcprofile 'IANA,[Ersson]
         
     | 
| 
       388 
     | 
    
         
            -
            application/vnd.irepository.package+xml @irp 'IANA,[Knowles]
         
     | 
| 
       389 
     | 
    
         
            -
            application/vnd.is-xpr 'IANA,[Natarajan]
         
     | 
| 
       390 
     | 
    
         
            -
            application/vnd.jam 'IANA,[B.Kumar]
         
     | 
| 
       391 
     | 
    
         
            -
            application/vnd.japannet-directory-service 'IANA,[Fujii]
         
     | 
| 
       392 
     | 
    
         
            -
            application/vnd.japannet-jpnstore-wakeup 'IANA,[Yoshitake]
         
     | 
| 
       393 
     | 
    
         
            -
            application/vnd.japannet-payment-wakeup 'IANA,[Fujii]
         
     | 
| 
       394 
     | 
    
         
            -
            application/vnd.japannet-registration 'IANA,[Yoshitake]
         
     | 
| 
       395 
     | 
    
         
            -
            application/vnd.japannet-registration-wakeup 'IANA,[Fujii]
         
     | 
| 
       396 
     | 
    
         
            -
            application/vnd.japannet-setstore-wakeup 'IANA,[Yoshitake]
         
     | 
| 
       397 
     | 
    
         
            -
            application/vnd.japannet-verification 'IANA,[Yoshitake]
         
     | 
| 
       398 
     | 
    
         
            -
            application/vnd.japannet-verification-wakeup 'IANA,[Fujii]
         
     | 
| 
       399 
     | 
    
         
            -
            application/vnd.jcp.javame.midlet-rms 'IANA,[Gorshenev]
         
     | 
| 
       400 
     | 
    
         
            -
            application/vnd.jisp @jisp 'IANA,[Deckers]
         
     | 
| 
       401 
     | 
    
         
            -
            application/vnd.joost.joda-archive 'IANA,[Joost]
         
     | 
| 
       402 
     | 
    
         
            -
            application/vnd.kahootz 'IANA,[Macdonald]
         
     | 
| 
       403 
     | 
    
         
            -
            application/vnd.kde.karbon @karbon 'IANA,[Faure]
         
     | 
| 
       404 
     | 
    
         
            -
            application/vnd.kde.kchart @chrt 'IANA,[Faure]
         
     | 
| 
       405 
     | 
    
         
            -
            application/vnd.kde.kformula @kfo 'IANA,[Faure]
         
     | 
| 
       406 
     | 
    
         
            -
            application/vnd.kde.kivio @flw 'IANA,[Faure]
         
     | 
| 
       407 
     | 
    
         
            -
            application/vnd.kde.kontour @kon 'IANA,[Faure]
         
     | 
| 
       408 
     | 
    
         
            -
            application/vnd.kde.kpresenter @kpr,kpt 'IANA,[Faure]
         
     | 
| 
       409 
     | 
    
         
            -
            application/vnd.kde.kspread @ksp 'IANA,[Faure]
         
     | 
| 
       410 
     | 
    
         
            -
            application/vnd.kde.kword @kwd,kwt 'IANA,[Faure]
         
     | 
| 
       411 
     | 
    
         
            -
            application/vnd.kenameaapp @htke 'IANA,[DiGiorgio-Haag]
         
     | 
| 
       412 
     | 
    
         
            -
            application/vnd.kidspiration @kia 'IANA,[Bennett]
         
     | 
| 
       413 
     | 
    
         
            -
            application/vnd.Kinar @kne,knp,sdf 'IANA,[Thakkar]
         
     | 
| 
       414 
     | 
    
         
            -
            application/vnd.koan 'IANA,[Cole]
         
     | 
| 
       415 
     | 
    
         
            -
            application/vnd.kodak-descriptor 'IANA,[Donahue]
         
     | 
| 
       416 
     | 
    
         
            -
            application/vnd.liberty-request+xml 'IANA,[McDowell]
         
     | 
| 
       417 
     | 
    
         
            -
            application/vnd.llamagraphics.life-balance.desktop @lbd 'IANA,[White]
         
     | 
| 
       418 
     | 
    
         
            -
            application/vnd.llamagraphics.life-balance.exchange+xml @lbe 'IANA,[White]
         
     | 
| 
       419 
     | 
    
         
            -
            application/vnd.lotus-1-2-3 @wks,123 'IANA,[Wattenberger]
         
     | 
| 
       420 
     | 
    
         
            -
            application/vnd.lotus-approach 'IANA,[Wattenberger]
         
     | 
| 
       421 
     | 
    
         
            -
            application/vnd.lotus-freelance 'IANA,[Wattenberger]
         
     | 
| 
       422 
     | 
    
         
            -
            application/vnd.lotus-notes 'IANA,[Laramie]
         
     | 
| 
       423 
     | 
    
         
            -
            application/vnd.lotus-organizer 'IANA,[Wattenberger]
         
     | 
| 
       424 
     | 
    
         
            -
            application/vnd.lotus-screencam 'IANA,[Wattenberger]
         
     | 
| 
       425 
     | 
    
         
            -
            application/vnd.lotus-wordpro 'IANA,[Wattenberger]
         
     | 
| 
       426 
     | 
    
         
            -
            application/vnd.macports.portpkg 'IANA,[Berry]
         
     | 
| 
       427 
     | 
    
         
            -
            application/vnd.marlin.drm.actiontoken+xml 'IANA,[Ellison]
         
     | 
| 
       428 
     | 
    
         
            -
            application/vnd.marlin.drm.conftoken+xml 'IANA,[Ellison]
         
     | 
| 
       429 
     | 
    
         
            -
            application/vnd.marlin.drm.license+xml 'IANA,[Ellison]
         
     | 
| 
       430 
     | 
    
         
            -
            application/vnd.marlin.drm.mdcf 'IANA,[Ellison]
         
     | 
| 
       431 
     | 
    
         
            -
            application/vnd.mcd @mcd 'IANA,[Gotoh]
         
     | 
| 
       432 
     | 
    
         
            -
            application/vnd.medcalcdata 'IANA,[Schoonjans]
         
     | 
| 
       433 
     | 
    
         
            -
            application/vnd.mediastation.cdkey 'IANA,[Flurry]
         
     | 
| 
       434 
     | 
    
         
            -
            application/vnd.meridian-slingshot 'IANA,[Wedel]
         
     | 
| 
       435 
     | 
    
         
            -
            application/vnd.MFER 'IANA,[Hirai]
         
     | 
| 
       436 
     | 
    
         
            -
            application/vnd.mfmp @mfm 'IANA,[Ikeda]
         
     | 
| 
       437 
     | 
    
         
            -
            application/vnd.micrografx.flo @flo 'IANA,[Prevo]
         
     | 
| 
       438 
     | 
    
         
            -
            application/vnd.micrografx.igx @igx 'IANA,[Prevo]
         
     | 
| 
       439 
     | 
    
         
            -
            application/vnd.mif @mif 'IANA,[Wexler]
         
     | 
| 
       440 
     | 
    
         
            -
            application/vnd.minisoft-hp3000-save 'IANA,[Bartram]
         
     | 
| 
       441 
     | 
    
         
            -
            application/vnd.mitsubishi.misty-guard.trustweb 'IANA,[Tanaka]
         
     | 
| 
       442 
     | 
    
         
            -
            application/vnd.Mobius.DAF 'IANA,[Kabayama]
         
     | 
| 
       443 
     | 
    
         
            -
            application/vnd.Mobius.DIS 'IANA,[Kabayama]
         
     | 
| 
       444 
     | 
    
         
            -
            application/vnd.Mobius.MBK 'IANA,[Devasia]
         
     | 
| 
       445 
     | 
    
         
            -
            application/vnd.Mobius.MQY 'IANA,[Devasia]
         
     | 
| 
       446 
     | 
    
         
            -
            application/vnd.Mobius.MSL 'IANA,[Kabayama]
         
     | 
| 
       447 
     | 
    
         
            -
            application/vnd.Mobius.PLC 'IANA,[Kabayama]
         
     | 
| 
       448 
     | 
    
         
            -
            application/vnd.Mobius.TXF 'IANA,[Kabayama]
         
     | 
| 
       449 
     | 
    
         
            -
            application/vnd.mophun.application @mpn 'IANA,[Wennerstrom]
         
     | 
| 
       450 
     | 
    
         
            -
            application/vnd.mophun.certificate @mpc 'IANA,[Wennerstrom]
         
     | 
| 
       451 
     | 
    
         
            -
            application/vnd.motorola.flexsuite 'IANA,[Patton]
         
     | 
| 
       452 
     | 
    
         
            -
            application/vnd.motorola.flexsuite.adsi 'IANA,[Patton]
         
     | 
| 
       453 
     | 
    
         
            -
            application/vnd.motorola.flexsuite.fis 'IANA,[Patton]
         
     | 
| 
       454 
     | 
    
         
            -
            application/vnd.motorola.flexsuite.gotap 'IANA,[Patton]
         
     | 
| 
       455 
     | 
    
         
            -
            application/vnd.motorola.flexsuite.kmr 'IANA,[Patton]
         
     | 
| 
       456 
     | 
    
         
            -
            application/vnd.motorola.flexsuite.ttc 'IANA,[Patton]
         
     | 
| 
       457 
     | 
    
         
            -
            application/vnd.motorola.flexsuite.wem 'IANA,[Patton]
         
     | 
| 
       458 
     | 
    
         
            -
            application/vnd.motorola.iprm 'IANA,[Shamsaasef]
         
     | 
| 
       459 
     | 
    
         
            -
            application/vnd.mozilla.xul+xml @xul 'IANA,[McDaniel]
         
     | 
| 
       460 
     | 
    
         
            -
            application/vnd.ms-artgalry @cil 'IANA,[Slawson]
         
     | 
| 
       461 
     | 
    
         
            -
            application/vnd.ms-asf @asf 'IANA,[Fleischman]
         
     | 
| 
       462 
     | 
    
         
            -
            application/vnd.ms-cab-compressed @cab 'IANA,[Scarborough]
         
     | 
| 
       463 
     | 
    
         
            -
            application/vnd.ms-excel @xls,xlt :base64 'IANA,[Gill]
         
     | 
| 
       464 
     | 
    
         
            -
            application/vnd.ms-fontobject 'IANA,[Scarborough]
         
     | 
| 
       465 
     | 
    
         
            -
            application/vnd.ms-ims 'IANA,[Ledoux]
         
     | 
| 
       466 
     | 
    
         
            -
            application/vnd.ms-lrm @lrm 'IANA,[Ledoux]
         
     | 
| 
       467 
     | 
    
         
            -
            application/vnd.ms-playready.initiator+xml 'IANA,[Schneider]
         
     | 
| 
       468 
     | 
    
         
            -
            application/vnd.ms-powerpoint @ppt,pps,pot :base64 'IANA,[Gill]
         
     | 
| 
       469 
     | 
    
         
            -
            application/vnd.ms-project @mpp :base64 'IANA,[Gill]
         
     | 
| 
       470 
     | 
    
         
            -
            application/vnd.ms-tnef :base64 'IANA,[Gill]
         
     | 
| 
       471 
     | 
    
         
            -
            application/vnd.ms-wmdrm.lic-chlg-req 'IANA,[Lau]
         
     | 
| 
       472 
     | 
    
         
            -
            application/vnd.ms-wmdrm.lic-resp 'IANA,[Lau]
         
     | 
| 
       473 
     | 
    
         
            -
            application/vnd.ms-wmdrm.meter-chlg-req 'IANA,[Lau]
         
     | 
| 
       474 
     | 
    
         
            -
            application/vnd.ms-wmdrm.meter-resp 'IANA,[Lau]
         
     | 
| 
       475 
     | 
    
         
            -
            application/vnd.ms-works :base64 'IANA,[Gill]
         
     | 
| 
       476 
     | 
    
         
            -
            application/vnd.ms-wpl @wpl :base64 'IANA,[Plastina]
         
     | 
| 
       477 
     | 
    
         
            -
            application/vnd.ms-xpsdocument @xps :8bit 'IANA,[McGatha]
         
     | 
| 
       478 
     | 
    
         
            -
            application/vnd.mseq @mseq 'IANA,[Le Bodic]
         
     | 
| 
       479 
     | 
    
         
            -
            application/vnd.msign 'IANA,[Borcherding]
         
     | 
| 
       480 
     | 
    
         
            -
            application/vnd.multiad.creator 'IANA,[Mills]
         
     | 
| 
       481 
     | 
    
         
            -
            application/vnd.multiad.creator.cif 'IANA,[Mills]
         
     | 
| 
       482 
     | 
    
         
            -
            application/vnd.music-niff 'IANA,[Butler]
         
     | 
| 
       483 
     | 
    
         
            -
            application/vnd.musician 'IANA,[Adams]
         
     | 
| 
       484 
     | 
    
         
            -
            application/vnd.muvee.style 'IANA,[Anantharamu]
         
     | 
| 
       485 
     | 
    
         
            -
            application/vnd.ncd.control 'IANA,[Tarkkala]
         
     | 
| 
       486 
     | 
    
         
            -
            application/vnd.ncd.reference 'IANA,[Tarkkala]
         
     | 
| 
       487 
     | 
    
         
            -
            application/vnd.nervana @ent,entity,req,request,bkm,kcm 'IANA,[Judkins]
         
     | 
| 
       488 
     | 
    
         
            -
            application/vnd.netfpx 'IANA,[Mutz]
         
     | 
| 
       489 
     | 
    
         
            -
            application/vnd.neurolanguage.nlu 'IANA,[DuFeu]
         
     | 
| 
       490 
     | 
    
         
            -
            application/vnd.noblenet-directory 'IANA,[Solomon]
         
     | 
| 
       491 
     | 
    
         
            -
            application/vnd.noblenet-sealer 'IANA,[Solomon]
         
     | 
| 
       492 
     | 
    
         
            -
            application/vnd.noblenet-web 'IANA,[Solomon]
         
     | 
| 
       493 
     | 
    
         
            -
            application/vnd.nokia.catalogs 'IANA,[Nokia]
         
     | 
| 
       494 
     | 
    
         
            -
            application/vnd.nokia.conml+wbxml 'IANA,[Nokia]
         
     | 
| 
       495 
     | 
    
         
            -
            application/vnd.nokia.conml+xml 'IANA,[Nokia]
         
     | 
| 
       496 
     | 
    
         
            -
            application/vnd.nokia.iptv.config+xml 'IANA,[Nokia]
         
     | 
| 
       497 
     | 
    
         
            -
            application/vnd.nokia.iSDS-radio-presets 'IANA,[Nokia]
         
     | 
| 
       498 
     | 
    
         
            -
            application/vnd.nokia.landmark+wbxml 'IANA,[Nokia]
         
     | 
| 
       499 
     | 
    
         
            -
            application/vnd.nokia.landmark+xml 'IANA,[Nokia]
         
     | 
| 
       500 
     | 
    
         
            -
            application/vnd.nokia.landmarkcollection+xml 'IANA,[Nokia]
         
     | 
| 
       501 
     | 
    
         
            -
            application/vnd.nokia.n-gage.ac+xml 'IANA,[Nokia]
         
     | 
| 
       502 
     | 
    
         
            -
            application/vnd.nokia.n-gage.data 'IANA,[Nokia]
         
     | 
| 
       503 
     | 
    
         
            -
            application/vnd.nokia.n-gage.symbian.install 'IANA,[Nokia]
         
     | 
| 
       504 
     | 
    
         
            -
            application/vnd.nokia.ncd+xml 'IANA,[Nokia]
         
     | 
| 
       505 
     | 
    
         
            -
            application/vnd.nokia.pcd+wbxml 'IANA,[Nokia]
         
     | 
| 
       506 
     | 
    
         
            -
            application/vnd.nokia.pcd+xml 'IANA,[Nokia]
         
     | 
| 
       507 
     | 
    
         
            -
            application/vnd.nokia.radio-preset @rpst 'IANA,[Nokia]
         
     | 
| 
       508 
     | 
    
         
            -
            application/vnd.nokia.radio-presets @rpss 'IANA,[Nokia]
         
     | 
| 
       509 
     | 
    
         
            -
            application/vnd.novadigm.EDM 'IANA,[Swenson]
         
     | 
| 
       510 
     | 
    
         
            -
            application/vnd.novadigm.EDX 'IANA,[Swenson]
         
     | 
| 
       511 
     | 
    
         
            -
            application/vnd.novadigm.EXT 'IANA,[Swenson]
         
     | 
| 
       512 
     | 
    
         
            -
            application/vnd.oasis.opendocument.chart @odc 'IANA,[Oppermann]
         
     | 
| 
       513 
     | 
    
         
            -
            application/vnd.oasis.opendocument.chart-template @odc 'IANA,[Oppermann]
         
     | 
| 
       514 
     | 
    
         
            -
            application/vnd.oasis.opendocument.database @odb 'IANA,[Schubert],[Oasis OpenDocument TC=OASIS OpenDocumentTC]
         
     | 
| 
       515 
     | 
    
         
            -
            application/vnd.oasis.opendocument.formula @odf 'IANA,[Oppermann]
         
     | 
| 
       516 
     | 
    
         
            -
            application/vnd.oasis.opendocument.formula-template @odf 'IANA,[Oppermann]
         
     | 
| 
       517 
     | 
    
         
            -
            application/vnd.oasis.opendocument.graphics @odg 'IANA,[Oppermann]
         
     | 
| 
       518 
     | 
    
         
            -
            application/vnd.oasis.opendocument.graphics-template @otg 'IANA,[Oppermann]
         
     | 
| 
       519 
     | 
    
         
            -
            application/vnd.oasis.opendocument.image @odi 'IANA,[Oppermann]
         
     | 
| 
       520 
     | 
    
         
            -
            application/vnd.oasis.opendocument.image-template @odi 'IANA,[Oppermann]
         
     | 
| 
       521 
     | 
    
         
            -
            application/vnd.oasis.opendocument.presentation @odp 'IANA,[Oppermann]
         
     | 
| 
       522 
     | 
    
         
            -
            application/vnd.oasis.opendocument.presentation-template @otp 'IANA,[Oppermann]
         
     | 
| 
       523 
     | 
    
         
            -
            application/vnd.oasis.opendocument.spreadsheet @ods 'IANA,[Oppermann]
         
     | 
| 
       524 
     | 
    
         
            -
            application/vnd.oasis.opendocument.spreadsheet-template @ots 'IANA,[Oppermann]
         
     | 
| 
       525 
     | 
    
         
            -
            application/vnd.oasis.opendocument.text @odt 'IANA,[Oppermann]
         
     | 
| 
       526 
     | 
    
         
            -
            application/vnd.oasis.opendocument.text-master @odm 'IANA,[Oppermann]
         
     | 
| 
       527 
     | 
    
         
            -
            application/vnd.oasis.opendocument.text-template @ott 'IANA,[Oppermann]
         
     | 
| 
       528 
     | 
    
         
            -
            application/vnd.oasis.opendocument.text-web @oth 'IANA,[Oppermann]
         
     | 
| 
       529 
     | 
    
         
            -
            application/vnd.obn 'IANA,[Hessling]
         
     | 
| 
       530 
     | 
    
         
            -
            application/vnd.olpc-sugar 'IANA,[Palmieri]
         
     | 
| 
       531 
     | 
    
         
            -
            application/vnd.oma-scws-config 'IANA,[Mahalal]
         
     | 
| 
       532 
     | 
    
         
            -
            application/vnd.oma-scws-http-request 'IANA,[Mahalal]
         
     | 
| 
       533 
     | 
    
         
            -
            application/vnd.oma-scws-http-response 'IANA,[Mahalal]
         
     | 
| 
       534 
     | 
    
         
            -
            application/vnd.oma.bcast.associated-procedure-parameter+xml 'IANA,[Rauschenbach],[OMNA - Open Mobile Naming Authority=OMNA-OpenMobileNamingAuthority]
         
     | 
| 
       535 
     | 
    
         
            -
            application/vnd.oma.bcast.drm-trigger+xml 'IANA,[Rauschenbach],[OMNA - Open Mobile Naming Authority=OMNA-OpenMobileNamingAuthority]
         
     | 
| 
       536 
     | 
    
         
            -
            application/vnd.oma.bcast.imd+xml 'IANA,[Rauschenbach],[OMNA - Open Mobile Naming Authority=OMNA-OpenMobileNamingAuthority]
         
     | 
| 
       537 
     | 
    
         
            -
            application/vnd.oma.bcast.ltkm 'IANA,[Rauschenbach],[OMNA - Open Mobile Naming Authority=OMNA-OpenMobileNamingAuthority]
         
     | 
| 
       538 
     | 
    
         
            -
            application/vnd.oma.bcast.notification+xml 'IANA,[Rauschenbach],[OMNA - Open Mobile Naming Authority=OMNA-OpenMobileNamingAuthority]
         
     | 
| 
       539 
     | 
    
         
            -
            application/vnd.oma.bcast.provisioningtrigger 'IANA,[Rauschenbach],[OMNA - Open Mobile Naming Authority=OMNA-OpenMobileNamingAuthority]
         
     | 
| 
       540 
     | 
    
         
            -
            application/vnd.oma.bcast.sgboot 'IANA,[Rauschenbach],[OMNA - Open Mobile Naming Authority=OMNA-OpenMobileNamingAuthority]
         
     | 
| 
       541 
     | 
    
         
            -
            application/vnd.oma.bcast.sgdd+xml 'IANA,[Rauschenbach],[OMNA - Open Mobile Naming Authority=OMNA-OpenMobileNamingAuthority]
         
     | 
| 
       542 
     | 
    
         
            -
            application/vnd.oma.bcast.sgdu 'IANA,[Rauschenbach],[OMNA - Open Mobile Naming Authority=OMNA-OpenMobileNamingAuthority]
         
     | 
| 
       543 
     | 
    
         
            -
            application/vnd.oma.bcast.simple-symbol-container 'IANA,[Rauschenbach],[OMNA - Open Mobile Naming Authority=OMNA-OpenMobileNamingAuthority]
         
     | 
| 
       544 
     | 
    
         
            -
            application/vnd.oma.bcast.smartcard-trigger+xml 'IANA,[Rauschenbach],[OMNA - Open Mobile Naming Authority=OMNA-OpenMobileNamingAuthority]
         
     | 
| 
       545 
     | 
    
         
            -
            application/vnd.oma.bcast.sprov+xml 'IANA,[Rauschenbach],[OMNA - Open Mobile Naming Authority=OMNA-OpenMobileNamingAuthority]
         
     | 
| 
       546 
     | 
    
         
            -
            application/vnd.oma.bcast.stkm 'IANA,[Rauschenbach],[OMNA - Open Mobile Naming Authority=OMNA-OpenMobileNamingAuthority]
         
     | 
| 
       547 
     | 
    
         
            -
            application/vnd.oma.dcd 'IANA,[Primo],[OMNA - Open Mobile Naming Authority=OMNA-OpenMobileNamingAuthority]
         
     | 
| 
       548 
     | 
    
         
            -
            application/vnd.oma.dcdc 'IANA,[Primo],[OMNA - Open Mobile Naming Authority=OMNA-OpenMobileNamingAuthority]
         
     | 
| 
       549 
     | 
    
         
            -
            application/vnd.oma.dd2+xml 'IANA,[Sato],[Open Mobile Alliance's BAC DLDRM Working Group]
         
     | 
| 
       550 
     | 
    
         
            -
            application/vnd.oma.drm.risd+xml 'IANA,[Rauschenbach],[OMNA - Open Mobile Naming Authority=OMNA-OpenMobileNamingAuthority]
         
     | 
| 
       551 
     | 
    
         
            -
            application/vnd.oma.group-usage-list+xml 'IANA,[Kelley],[OMA Presence and Availability (PAG) Working Group]
         
     | 
| 
       552 
     | 
    
         
            -
            application/vnd.oma.poc.detailed-progress-report+xml 'IANA,[OMA Push to Talk over Cellular (POC) Working Group]
         
     | 
| 
       553 
     | 
    
         
            -
            application/vnd.oma.poc.final-report+xml 'IANA,[OMA Push to Talk over Cellular (POC) Working Group]
         
     | 
| 
       554 
     | 
    
         
            -
            application/vnd.oma.poc.groups+xml 'IANA,[Kelley],[OMA Push to Talk over Cellular (POC) Working Group]
         
     | 
| 
       555 
     | 
    
         
            -
            application/vnd.oma.poc.invocation-descriptor+xml 'IANA,[OMA Push to Talk over Cellular (POC) Working Group]
         
     | 
| 
       556 
     | 
    
         
            -
            application/vnd.oma.poc.optimized-progress-report+xml 'IANA,[OMA Push to Talk over Cellular (POC) Working Group]
         
     | 
| 
       557 
     | 
    
         
            -
            application/vnd.oma.xcap-directory+xml 'IANA,[Kelley],[OMA Presence and Availability (PAG) Working Group]
         
     | 
| 
       558 
     | 
    
         
            -
            application/vnd.omads-email+xml 'IANA,[OMA Data Synchronization Working Group]
         
     | 
| 
       559 
     | 
    
         
            -
            application/vnd.omads-file+xml 'IANA,[OMA Data Synchronization Working Group]
         
     | 
| 
       560 
     | 
    
         
            -
            application/vnd.omads-folder+xml 'IANA,[OMA Data Synchronization Working Group]
         
     | 
| 
       561 
     | 
    
         
            -
            application/vnd.omaloc-supl-init 'IANA,[Grange]
         
     | 
| 
       562 
     | 
    
         
            -
            application/vnd.openofficeorg.extension 'IANA,[Lingner]
         
     | 
| 
       563 
     | 
    
         
            -
            application/vnd.osa.netdeploy 'IANA,[Klos]
         
     | 
| 
       564 
     | 
    
         
            -
            application/vnd.osgi.bundle 'IANA,[Kriens]
         
     | 
| 
       565 
     | 
    
         
            -
            application/vnd.osgi.dp 'IANA,[Kriens]
         
     | 
| 
       566 
     | 
    
         
            -
            application/vnd.otps.ct-kip+xml 'IANA,[Nyström=Nystrom]
         
     | 
| 
       567 
     | 
    
         
            -
            application/vnd.palm @prc,pdb,pqa,oprc :base64 'IANA,[Peacock]
         
     | 
| 
       568 
     | 
    
         
            -
            application/vnd.paos.xml 'IANA,[Kemp]
         
     | 
| 
       569 
     | 
    
         
            -
            application/vnd.pg.format 'IANA,[Gandert]
         
     | 
| 
       570 
     | 
    
         
            -
            application/vnd.pg.osasli 'IANA,[Gandert]
         
     | 
| 
       571 
     | 
    
         
            -
            application/vnd.piaccess.application-licence 'IANA,[Maneos]
         
     | 
| 
       572 
     | 
    
         
            -
            application/vnd.picsel @efif 'IANA,[Naccarato]
         
     | 
| 
       573 
     | 
    
         
            -
            application/vnd.poc.group-advertisement+xml 'IANA,[Kelley],[OMA Push to Talk over Cellular (POC) Working Group]
         
     | 
| 
       574 
     | 
    
         
            -
            application/vnd.pocketlearn 'IANA,[Pando]
         
     | 
| 
       575 
     | 
    
         
            -
            application/vnd.powerbuilder6 'IANA,[Guy]
         
     | 
| 
       576 
     | 
    
         
            -
            application/vnd.powerbuilder6-s 'IANA,[Guy]
         
     | 
| 
       577 
     | 
    
         
            -
            application/vnd.powerbuilder7 'IANA,[Shilts]
         
     | 
| 
       578 
     | 
    
         
            -
            application/vnd.powerbuilder7-s 'IANA,[Shilts]
         
     | 
| 
       579 
     | 
    
         
            -
            application/vnd.powerbuilder75 'IANA,[Shilts]
         
     | 
| 
       580 
     | 
    
         
            -
            application/vnd.powerbuilder75-s 'IANA,[Shilts]
         
     | 
| 
       581 
     | 
    
         
            -
            application/vnd.preminet 'IANA,[Tenhunen]
         
     | 
| 
       582 
     | 
    
         
            -
            application/vnd.previewsystems.box 'IANA,[Smolgovsky]
         
     | 
| 
       583 
     | 
    
         
            -
            application/vnd.proteus.magazine 'IANA,[Hoch]
         
     | 
| 
       584 
     | 
    
         
            -
            application/vnd.publishare-delta-tree 'IANA,[Ben-Kiki]
         
     | 
| 
       585 
     | 
    
         
            -
            application/vnd.pvi.ptid1 @pti,ptid 'IANA,[Lamb]
         
     | 
| 
       586 
     | 
    
         
            -
            application/vnd.pwg-multiplexed 'IANA,RFC3391
         
     | 
| 
       587 
     | 
    
         
            -
            application/vnd.pwg-xhtml-print+xml 'IANA,[Wright]
         
     | 
| 
       588 
     | 
    
         
            -
            application/vnd.qualcomm.brew-app-res 'IANA,[Forrester]
         
     | 
| 
       589 
     | 
    
         
            -
            application/vnd.Quark.QuarkXPress @qxd,qxt,qwd,qwt,qxl,qxb :8bit 'IANA,[Scheidler]
         
     | 
| 
       590 
     | 
    
         
            -
            application/vnd.rapid 'IANA,[Szekely]
         
     | 
| 
       591 
     | 
    
         
            -
            application/vnd.recordare.musicxml 'IANA,[Good]
         
     | 
| 
       592 
     | 
    
         
            -
            application/vnd.recordare.musicxml+xml 'IANA,[Good]
         
     | 
| 
       593 
     | 
    
         
            -
            application/vnd.RenLearn.rlprint 'IANA,[Wick]
         
     | 
| 
       594 
     | 
    
         
            -
            application/vnd.route66.link66+xml 'IANA,[Kikstra]
         
     | 
| 
       595 
     | 
    
         
            -
            application/vnd.ruckus.download 'IANA,[Harris]
         
     | 
| 
       596 
     | 
    
         
            -
            application/vnd.s3sms 'IANA,[Tarkkala]
         
     | 
| 
       597 
     | 
    
         
            -
            application/vnd.sbm.cid 'IANA,[Kusakari]
         
     | 
| 
       598 
     | 
    
         
            -
            application/vnd.sbm.mid2 'IANA,[Murai]
         
     | 
| 
       599 
     | 
    
         
            -
            application/vnd.scribus 'IANA,[Bradney]
         
     | 
| 
       600 
     | 
    
         
            -
            application/vnd.sealed.3df 'IANA,[Kwan]
         
     | 
| 
       601 
     | 
    
         
            -
            application/vnd.sealed.csf 'IANA,[Kwan]
         
     | 
| 
       602 
     | 
    
         
            -
            application/vnd.sealed.doc @sdoc,sdo,s1w 'IANA,[Petersen]
         
     | 
| 
       603 
     | 
    
         
            -
            application/vnd.sealed.eml @seml,sem 'IANA,[Petersen]
         
     | 
| 
       604 
     | 
    
         
            -
            application/vnd.sealed.mht @smht,smh 'IANA,[Petersen]
         
     | 
| 
       605 
     | 
    
         
            -
            application/vnd.sealed.net 'IANA,[Lambert]
         
     | 
| 
       606 
     | 
    
         
            -
            application/vnd.sealed.ppt @sppt,spp,s1p 'IANA,[Petersen]
         
     | 
| 
       607 
     | 
    
         
            -
            application/vnd.sealed.tiff 'IANA,[Kwan],[Lambert]
         
     | 
| 
       608 
     | 
    
         
            -
            application/vnd.sealed.xls @sxls,sxl,s1e 'IANA,[Petersen]
         
     | 
| 
       609 
     | 
    
         
            -
            application/vnd.sealedmedia.softseal.html @stml,stm,s1h 'IANA,[Petersen]
         
     | 
| 
       610 
     | 
    
         
            -
            application/vnd.sealedmedia.softseal.pdf @spdf,spd,s1a 'IANA,[Petersen]
         
     | 
| 
       611 
     | 
    
         
            -
            application/vnd.seemail @see 'IANA,[Webb]
         
     | 
| 
       612 
     | 
    
         
            -
            application/vnd.sema 'IANA,[Hansson]
         
     | 
| 
       613 
     | 
    
         
            -
            application/vnd.semd 'IANA,[Hansson]
         
     | 
| 
       614 
     | 
    
         
            -
            application/vnd.semf 'IANA,[Hansson]
         
     | 
| 
       615 
     | 
    
         
            -
            application/vnd.shana.informed.formdata 'IANA,[Selzler]
         
     | 
| 
       616 
     | 
    
         
            -
            application/vnd.shana.informed.formtemplate 'IANA,[Selzler]
         
     | 
| 
       617 
     | 
    
         
            -
            application/vnd.shana.informed.interchange 'IANA,[Selzler]
         
     | 
| 
       618 
     | 
    
         
            -
            application/vnd.shana.informed.package 'IANA,[Selzler]
         
     | 
| 
       619 
     | 
    
         
            -
            application/vnd.SimTech-MindMapper 'IANA,[Koh]
         
     | 
| 
       620 
     | 
    
         
            -
            application/vnd.smaf @mmf 'IANA,[Takahashi]
         
     | 
| 
       621 
     | 
    
         
            -
            application/vnd.smart.teacher 'IANA,[Boyle]
         
     | 
| 
       622 
     | 
    
         
            -
            application/vnd.software602.filler.form+xml 'IANA,[Hytka],[Vondrous]
         
     | 
| 
       623 
     | 
    
         
            -
            application/vnd.software602.filler.form-xml-zip 'IANA,[Hytka],[Vondrous]
         
     | 
| 
       624 
     | 
    
         
            -
            application/vnd.solent.sdkm+xml 'IANA,[Gauntlett]
         
     | 
| 
       625 
     | 
    
         
            -
            application/vnd.spotfire.dxp 'IANA,[Jernberg]
         
     | 
| 
       626 
     | 
    
         
            -
            application/vnd.spotfire.sfs 'IANA,[Jernberg]
         
     | 
| 
       627 
     | 
    
         
            -
            application/vnd.sss-cod 'IANA,[Dani]
         
     | 
| 
       628 
     | 
    
         
            -
            application/vnd.sss-dtf 'IANA,[Bruno]
         
     | 
| 
       629 
     | 
    
         
            -
            application/vnd.sss-ntf 'IANA,[Bruno]
         
     | 
| 
       630 
     | 
    
         
            -
            application/vnd.street-stream 'IANA,[Levitt]
         
     | 
| 
       631 
     | 
    
         
            -
            application/vnd.sun.wadl+xml 'IANA,[Hadley]
         
     | 
| 
       632 
     | 
    
         
            -
            application/vnd.sus-calendar @sus,susp 'IANA,[Niedfeldt]
         
     | 
| 
       633 
     | 
    
         
            -
            application/vnd.svd 'IANA,[Becker]
         
     | 
| 
       634 
     | 
    
         
            -
            application/vnd.swiftview-ics 'IANA,[Widener]
         
     | 
| 
       635 
     | 
    
         
            -
            application/vnd.syncml+xml 'IANA,[OMA Data Synchronization Working Group]
         
     | 
| 
       636 
     | 
    
         
            -
            application/vnd.syncml.dm+wbxml 'IANA,[OMA-DM Work Group]
         
     | 
| 
       637 
     | 
    
         
            -
            application/vnd.syncml.dm+xml 'IANA,[Rao],[OMA-DM Work Group]
         
     | 
| 
       638 
     | 
    
         
            -
            application/vnd.syncml.ds.notification 'IANA,[OMA Data Synchronization Working Group]
         
     | 
| 
       639 
     | 
    
         
            -
            application/vnd.tao.intent-module-archive 'IANA,[Shelton]
         
     | 
| 
       640 
     | 
    
         
            -
            application/vnd.tmobile-livetv 'IANA,[Helin]
         
     | 
| 
       641 
     | 
    
         
            -
            application/vnd.trid.tpt 'IANA,[Cusack]
         
     | 
| 
       642 
     | 
    
         
            -
            application/vnd.triscape.mxs 'IANA,[Simonoff]
         
     | 
| 
       643 
     | 
    
         
            -
            application/vnd.trueapp 'IANA,[Hepler]
         
     | 
| 
       644 
     | 
    
         
            -
            application/vnd.truedoc 'IANA,[Chase]
         
     | 
| 
       645 
     | 
    
         
            -
            application/vnd.ufdl 'IANA,[Manning]
         
     | 
| 
       646 
     | 
    
         
            -
            application/vnd.uiq.theme 'IANA,[Ocock]
         
     | 
| 
       647 
     | 
    
         
            -
            application/vnd.umajin 'IANA,[Riden]
         
     | 
| 
       648 
     | 
    
         
            -
            application/vnd.unity 'IANA,[Unity3d]
         
     | 
| 
       649 
     | 
    
         
            -
            application/vnd.uoml+xml 'IANA,[Gerdes]
         
     | 
| 
       650 
     | 
    
         
            -
            application/vnd.uplanet.alert 'IANA,[Martin]
         
     | 
| 
       651 
     | 
    
         
            -
            application/vnd.uplanet.alert-wbxml 'IANA,[Martin]
         
     | 
| 
       652 
     | 
    
         
            -
            application/vnd.uplanet.bearer-choice 'IANA,[Martin]
         
     | 
| 
       653 
     | 
    
         
            -
            application/vnd.uplanet.bearer-choice-wbxml 'IANA,[Martin]
         
     | 
| 
       654 
     | 
    
         
            -
            application/vnd.uplanet.cacheop 'IANA,[Martin]
         
     | 
| 
       655 
     | 
    
         
            -
            application/vnd.uplanet.cacheop-wbxml 'IANA,[Martin]
         
     | 
| 
       656 
     | 
    
         
            -
            application/vnd.uplanet.channel 'IANA,[Martin]
         
     | 
| 
       657 
     | 
    
         
            -
            application/vnd.uplanet.channel-wbxml 'IANA,[Martin]
         
     | 
| 
       658 
     | 
    
         
            -
            application/vnd.uplanet.list 'IANA,[Martin]
         
     | 
| 
       659 
     | 
    
         
            -
            application/vnd.uplanet.list-wbxml 'IANA,[Martin]
         
     | 
| 
       660 
     | 
    
         
            -
            application/vnd.uplanet.listcmd 'IANA,[Martin]
         
     | 
| 
       661 
     | 
    
         
            -
            application/vnd.uplanet.listcmd-wbxml 'IANA,[Martin]
         
     | 
| 
       662 
     | 
    
         
            -
            application/vnd.uplanet.signal 'IANA,[Martin]
         
     | 
| 
       663 
     | 
    
         
            -
            application/vnd.vcx 'IANA,[T.Sugimoto]
         
     | 
| 
       664 
     | 
    
         
            -
            application/vnd.vd-study 'IANA,[Rogge]
         
     | 
| 
       665 
     | 
    
         
            -
            application/vnd.vectorworks 'IANA,[Ferguson],[Sarkar]
         
     | 
| 
       666 
     | 
    
         
            -
            application/vnd.vidsoft.vidconference @vsc :8bit 'IANA,[Hess]
         
     | 
| 
       667 
     | 
    
         
            -
            application/vnd.visio @vsd,vst,vsw,vss 'IANA,[Sandal]
         
     | 
| 
       668 
     | 
    
         
            -
            application/vnd.visionary @vis 'IANA,[Aravindakumar]
         
     | 
| 
       669 
     | 
    
         
            -
            application/vnd.vividence.scriptfile 'IANA,[Risher]
         
     | 
| 
       670 
     | 
    
         
            -
            application/vnd.vsf 'IANA,[Rowe]
         
     | 
| 
       671 
     | 
    
         
            -
            application/vnd.wap.sic @sic 'IANA,[WAP-Forum]
         
     | 
| 
       672 
     | 
    
         
            -
            application/vnd.wap.slc @slc 'IANA,[WAP-Forum]
         
     | 
| 
       673 
     | 
    
         
            -
            application/vnd.wap.wbxml @wbxml 'IANA,[Stark]
         
     | 
| 
       674 
     | 
    
         
            -
            application/vnd.wap.wmlc @wmlc 'IANA,[Stark]
         
     | 
| 
       675 
     | 
    
         
            -
            application/vnd.wap.wmlscriptc @wmlsc 'IANA,[Stark]
         
     | 
| 
       676 
     | 
    
         
            -
            application/vnd.webturbo @wtb 'IANA,[Rehem]
         
     | 
| 
       677 
     | 
    
         
            -
            application/vnd.wfa.wsc 'IANA,[Wi-Fi Alliance]
         
     | 
| 
       678 
     | 
    
         
            -
            application/vnd.wmc 'IANA,[Kjørnes=Kjornes]
         
     | 
| 
       679 
     | 
    
         
            -
            application/vnd.wmf.bootstrap 'IANA,[Nguyenphu],[Iyer]
         
     | 
| 
       680 
     | 
    
         
            -
            application/vnd.wordperfect @wpd 'IANA,[Scarborough]
         
     | 
| 
       681 
     | 
    
         
            -
            application/vnd.wqd @wqd 'IANA,[Bostrom]
         
     | 
| 
       682 
     | 
    
         
            -
            application/vnd.wrq-hp3000-labelled 'IANA,[Bartram]
         
     | 
| 
       683 
     | 
    
         
            -
            application/vnd.wt.stf 'IANA,[Wohler]
         
     | 
| 
       684 
     | 
    
         
            -
            application/vnd.wv.csp+wbxml @wv 'IANA,[Salmi]
         
     | 
| 
       685 
     | 
    
         
            -
            application/vnd.wv.csp+xml :8bit 'IANA,[Ingimundarson]
         
     | 
| 
       686 
     | 
    
         
            -
            application/vnd.wv.ssp+xml :8bit 'IANA,[Ingimundarson]
         
     | 
| 
       687 
     | 
    
         
            -
            application/vnd.xara 'IANA,[Matthewman]
         
     | 
| 
       688 
     | 
    
         
            -
            application/vnd.xfdl 'IANA,[Manning]
         
     | 
| 
       689 
     | 
    
         
            -
            application/vnd.xfdl.webform 'IANA,[Mansell]
         
     | 
| 
       690 
     | 
    
         
            -
            application/vnd.xmi+xml 'IANA,[Waskiewicz]
         
     | 
| 
       691 
     | 
    
         
            -
            application/vnd.xmpie.cpkg 'IANA,[Sherwin]
         
     | 
| 
       692 
     | 
    
         
            -
            application/vnd.xmpie.dpkg 'IANA,[Sherwin]
         
     | 
| 
       693 
     | 
    
         
            -
            application/vnd.xmpie.plan 'IANA,[Sherwin]
         
     | 
| 
       694 
     | 
    
         
            -
            application/vnd.xmpie.ppkg 'IANA,[Sherwin]
         
     | 
| 
       695 
     | 
    
         
            -
            application/vnd.xmpie.xlim 'IANA,[Sherwin]
         
     | 
| 
       696 
     | 
    
         
            -
            application/vnd.yamaha.hv-dic @hvd 'IANA,[Yamamoto]
         
     | 
| 
       697 
     | 
    
         
            -
            application/vnd.yamaha.hv-script @hvs 'IANA,[Yamamoto]
         
     | 
| 
       698 
     | 
    
         
            -
            application/vnd.yamaha.hv-voice @hvp 'IANA,[Yamamoto]
         
     | 
| 
       699 
     | 
    
         
            -
            application/vnd.yamaha.smaf-audio @saf 'IANA,[Shinoda]
         
     | 
| 
       700 
     | 
    
         
            -
            application/vnd.yamaha.smaf-phrase @spf 'IANA,[Shinoda]
         
     | 
| 
       701 
     | 
    
         
            -
            application/vnd.yellowriver-custom-menu 'IANA,[Yellow]
         
     | 
| 
       702 
     | 
    
         
            -
            application/vnd.zul 'IANA,[Grothmann]
         
     | 
| 
       703 
     | 
    
         
            -
            application/vnd.zzazz.deck+xml 'IANA,[Hewett]
         
     | 
| 
       704 
     | 
    
         
            -
            application/voicexml+xml 'IANA,RFC4267
         
     | 
| 
       705 
     | 
    
         
            -
            application/watcherinfo+xml @wif 'IANA,RFC3858
         
     | 
| 
       706 
     | 
    
         
            -
            application/whoispp-query 'IANA,RFC2957
         
     | 
| 
       707 
     | 
    
         
            -
            application/whoispp-response 'IANA,RFC2958
         
     | 
| 
       708 
     | 
    
         
            -
            application/wita 'IANA,[Campbell]
         
     | 
| 
       709 
     | 
    
         
            -
            application/wordperfect5.1 @wp5,wp 'IANA,[Lindner]
         
     | 
| 
       710 
     | 
    
         
            -
            application/wsdl+xml 'IANA,[W3C]
         
     | 
| 
       711 
     | 
    
         
            -
            application/wspolicy+xml 'IANA,[W3C]
         
     | 
| 
       712 
     | 
    
         
            -
            application/x400-bp 'IANA,RFC1494
         
     | 
| 
       713 
     | 
    
         
            -
            application/xcap-att+xml 'IANA,RFC4825
         
     | 
| 
       714 
     | 
    
         
            -
            application/xcap-caps+xml 'IANA,RFC4825
         
     | 
| 
       715 
     | 
    
         
            -
            application/xcap-el+xml 'IANA,RFC4825
         
     | 
| 
       716 
     | 
    
         
            -
            application/xcap-error+xml 'IANA,RFC4825
         
     | 
| 
       717 
     | 
    
         
            -
            application/xcap-ns+xml 'IANA,RFC4825
         
     | 
| 
       718 
     | 
    
         
            -
            application/xenc+xml 'IANA,[Reagle],[XENC Working Group]
         
     | 
| 
       719 
     | 
    
         
            -
            application/xhtml+xml @xhtml :8bit 'IANA,RFC3236
         
     | 
| 
       720 
     | 
    
         
            -
            application/xml @xml,xsl :8bit 'IANA,RFC3023
         
     | 
| 
       721 
     | 
    
         
            -
            application/xml-dtd @dtd :8bit 'IANA,RFC3023
         
     | 
| 
       722 
     | 
    
         
            -
            application/xml-external-parsed-entity 'IANA,RFC3023
         
     | 
| 
       723 
     | 
    
         
            -
            application/xmpp+xml 'IANA,RFC3923
         
     | 
| 
       724 
     | 
    
         
            -
            application/xop+xml 'IANA,[Nottingham]
         
     | 
| 
       725 
     | 
    
         
            -
            application/xv+xml 'IANA,RFC4374
         
     | 
| 
       726 
     | 
    
         
            -
            application/zip @zip :base64 'IANA,[Lindner]
         
     | 
| 
       727 
     | 
    
         
            -
             
     | 
| 
       728 
     | 
    
         
            -
            *mac:application/x-mac @bin :base64
         
     | 
| 
       729 
     | 
    
         
            -
            *mac:application/x-macbase64 @bin :base64
         
     | 
| 
       730 
     | 
    
         
            -
             
     | 
| 
       731 
     | 
    
         
            -
            !application/smil @smi,smil :8bit 'IANA,RFC4536 =use-instead:application/smil+xml
         
     | 
| 
       732 
     | 
    
         
            -
            !application/xhtml-voice+xml 'IANA,{RFC-mccobb-xplusv-media-type-04.txt=https://datatracker.ietf.org/public/idindex.cgi?command=id_detail&filename=draft-mccobb-xplusv-media-type}
         
     | 
| 
       733 
     | 
    
         
            -
            *!application/VMSBACKUP @bck :base64 =use-instead:application/x-VMSBACKUP
         
     | 
| 
       734 
     | 
    
         
            -
            *!application/access @mdf,mda,mdb,mde =use-instead:application/x-msaccess
         
     | 
| 
       735 
     | 
    
         
            -
            *!application/bleeper @bleep :base64 =use-instead:application/x-bleeper
         
     | 
| 
       736 
     | 
    
         
            -
            *!application/cals1840 'LTSW =use-instead:application/cals-1840
         
     | 
| 
       737 
     | 
    
         
            -
            *!application/futuresplash @spl =use-instead:application/x-futuresplash
         
     | 
| 
       738 
     | 
    
         
            -
            *!application/ghostview =use-instead:application/x-ghostview
         
     | 
| 
       739 
     | 
    
         
            -
            *!application/hep @hep =use-instead:application/x-hep
         
     | 
| 
       740 
     | 
    
         
            -
            *!application/imagemap @imagemap,imap :8bit =use-instead:application/x-imagemap
         
     | 
| 
       741 
     | 
    
         
            -
            *!application/lotus-123 @wks =use-instead:application/vnd.lotus-1-2-3
         
     | 
| 
       742 
     | 
    
         
            -
            *!application/mac-compactpro @cpt =use-instead:application/x-mac-compactpro
         
     | 
| 
       743 
     | 
    
         
            -
            *!application/mathcad @mcd :base64 =use-instead:application/vnd.mcd
         
     | 
| 
       744 
     | 
    
         
            -
            *!application/mathematica-old =use-instead:application/x-mathematica-old
         
     | 
| 
       745 
     | 
    
         
            -
            *!application/news-message-id 'IANA,RFC1036,[Spencer]
         
     | 
| 
       746 
     | 
    
         
            -
            *!application/quicktimeplayer @qtl =use-instead:application/x-quicktimeplayer
         
     | 
| 
       747 
     | 
    
         
            -
            *!application/remote_printing 'LTSW =use-instead:application/remote-printing
         
     | 
| 
       748 
     | 
    
         
            -
            *!application/toolbook @tbk =use-instead:application/x-toolbook
         
     | 
| 
       749 
     | 
    
         
            -
            *!application/vnd.ms-excel.sheet.binary.macroEnabled.12 @xlsb
         
     | 
| 
       750 
     | 
    
         
            -
            *!application/vnd.ms-excel.sheet.macroEnabled.12 @xlsm
         
     | 
| 
       751 
     | 
    
         
            -
            *!application/vnd.ms-word.document.macroEnabled.12 @docm
         
     | 
| 
       752 
     | 
    
         
            -
            *!application/vnd.ms-word.template.macroEnabled.12 @dotm
         
     | 
| 
       753 
     | 
    
         
            -
            *!application/wordperfect @wp =use-instead:application/vnd.wordperfect
         
     | 
| 
       754 
     | 
    
         
            -
            *!application/wordperfect6.1 @wp6 =use-instead:application/x-wordperfect6.1
         
     | 
| 
       755 
     | 
    
         
            -
            *!application/wordperfectd @wpd =use-instead:application/vnd.wordperfect
         
     | 
| 
       756 
     | 
    
         
            -
            *!application/x-123 @wk =use-instead:application/vnd.lotus-1-2-3
         
     | 
| 
       757 
     | 
    
         
            -
            *!application/x-access @mdf,mda,mdb,mde =use-instead:application/x-msaccess
         
     | 
| 
       758 
     | 
    
         
            -
            *!application/x-compress @z,Z :base64 =use-instead:application/x-compressed
         
     | 
| 
       759 
     | 
    
         
            -
            *!application/x-javascript @js :8bit =use-instead:application/javascript
         
     | 
| 
       760 
     | 
    
         
            -
            *!application/x-lotus-123 @wks =use-instead:application/vnd.lotus-1-2-3
         
     | 
| 
       761 
     | 
    
         
            -
            *!application/x-mathcad @mcd :base64 =use-instead:application/vnd.mcd
         
     | 
| 
       762 
     | 
    
         
            -
            *!application/x-msword @doc,dot,wrd :base64 =use-instead:application/msword
         
     | 
| 
       763 
     | 
    
         
            -
            *!application/x-rtf @rtf :base64 'LTSW =use-instead:application/rtf
         
     | 
| 
       764 
     | 
    
         
            -
            *!application/x-troff 'LTSW =use-instead:text/troff
         
     | 
| 
       765 
     | 
    
         
            -
            *!application/x-u-star 'LTSW =use-instead:application/x-ustar
         
     | 
| 
       766 
     | 
    
         
            -
            *!application/x-word @doc,dot :base64 =use-instead:application/msword
         
     | 
| 
       767 
     | 
    
         
            -
            *!application/x-wordperfect @wp =use-instead:application/vnd.wordperfect
         
     | 
| 
       768 
     | 
    
         
            -
            *!application/x-wordperfectd @wpd =use-instead:application/vnd.wordperfect
         
     | 
| 
       769 
     | 
    
         
            -
            *!application/x400.bp 'LTSW =use-instead:application/x400-bp
         
     | 
| 
       770 
     | 
    
         
            -
            *application/SLA 'LTSW
         
     | 
| 
       771 
     | 
    
         
            -
            *application/STEP 'LTSW
         
     | 
| 
       772 
     | 
    
         
            -
            *application/acad 'LTSW
         
     | 
| 
       773 
     | 
    
         
            -
            *application/appledouble :base64
         
     | 
| 
       774 
     | 
    
         
            -
            *application/clariscad 'LTSW
         
     | 
| 
       775 
     | 
    
         
            -
            *application/drafting 'LTSW
         
     | 
| 
       776 
     | 
    
         
            -
            *application/dxf 'LTSW
         
     | 
| 
       777 
     | 
    
         
            -
            *application/excel @xls,xlt 'LTSW
         
     | 
| 
       778 
     | 
    
         
            -
            *application/fractals 'LTSW
         
     | 
| 
       779 
     | 
    
         
            -
            *application/i-deas 'LTSW
         
     | 
| 
       780 
     | 
    
         
            -
            *application/macbinary 'LTSW
         
     | 
| 
       781 
     | 
    
         
            -
            *application/netcdf @nc,cdf 'LTSW
         
     | 
| 
       782 
     | 
    
         
            -
            *application/powerpoint @ppt,pps,pot :base64 'LTSW
         
     | 
| 
       783 
     | 
    
         
            -
            *application/pro_eng 'LTSW
         
     | 
| 
       784 
     | 
    
         
            -
            *application/set 'LTSW
         
     | 
| 
       785 
     | 
    
         
            -
            *application/solids 'LTSW
         
     | 
| 
       786 
     | 
    
         
            -
            *application/vda 'LTSW
         
     | 
| 
       787 
     | 
    
         
            -
            *application/vnd.openxmlformats-officedocument.presentationml.presentation @pptx
         
     | 
| 
       788 
     | 
    
         
            -
            *application/vnd.openxmlformats-officedocument.presentationml.slideshow @ppsx
         
     | 
| 
       789 
     | 
    
         
            -
            *application/vnd.openxmlformats-officedocument.spreadsheetml.sheet @xlsx :quoted-printable
         
     | 
| 
       790 
     | 
    
         
            -
            *application/vnd.openxmlformats-officedocument.wordprocessingml.document @docx
         
     | 
| 
       791 
     | 
    
         
            -
            *application/vnd.openxmlformats-officedocument.wordprocessingml.template @dotx
         
     | 
| 
       792 
     | 
    
         
            -
            *application/vnd.stardivision.calc @sdc
         
     | 
| 
       793 
     | 
    
         
            -
            *application/vnd.stardivision.chart @sds
         
     | 
| 
       794 
     | 
    
         
            -
            *application/vnd.stardivision.draw @sda
         
     | 
| 
       795 
     | 
    
         
            -
            *application/vnd.stardivision.impress @sdd
         
     | 
| 
       796 
     | 
    
         
            -
            *application/vnd.stardivision.math @sdf
         
     | 
| 
       797 
     | 
    
         
            -
            *application/vnd.stardivision.writer @sdw
         
     | 
| 
       798 
     | 
    
         
            -
            *application/vnd.stardivision.writer-global @sgl
         
     | 
| 
       799 
     | 
    
         
            -
            *application/vnd.street-stream 'IANA,[Levitt]
         
     | 
| 
       800 
     | 
    
         
            -
            *application/vnd.sun.wadl+xml 'IANA,[Hadley]
         
     | 
| 
       801 
     | 
    
         
            -
            *application/vnd.sun.xml.calc @sxc
         
     | 
| 
       802 
     | 
    
         
            -
            *application/vnd.sun.xml.calc.template @stc
         
     | 
| 
       803 
     | 
    
         
            -
            *application/vnd.sun.xml.draw @sxd
         
     | 
| 
       804 
     | 
    
         
            -
            *application/vnd.sun.xml.draw.template @std
         
     | 
| 
       805 
     | 
    
         
            -
            *application/vnd.sun.xml.impress @sxi
         
     | 
| 
       806 
     | 
    
         
            -
            *application/vnd.sun.xml.impress.template @sti
         
     | 
| 
       807 
     | 
    
         
            -
            *application/vnd.sun.xml.math @sxm
         
     | 
| 
       808 
     | 
    
         
            -
            *application/vnd.sun.xml.writer @sxw
         
     | 
| 
       809 
     | 
    
         
            -
            *application/vnd.sun.xml.writer.global @sxg
         
     | 
| 
       810 
     | 
    
         
            -
            *application/vnd.sun.xml.writer.template @stw
         
     | 
| 
       811 
     | 
    
         
            -
            *application/word @doc,dot 'LTSW
         
     | 
| 
       812 
     | 
    
         
            -
            *application/x-SLA
         
     | 
| 
       813 
     | 
    
         
            -
            *application/x-STEP
         
     | 
| 
       814 
     | 
    
         
            -
            *application/x-VMSBACKUP @bck :base64
         
     | 
| 
       815 
     | 
    
         
            -
            *application/x-Wingz @wz
         
     | 
| 
       816 
     | 
    
         
            -
            *application/x-bcpio @bcpio 'LTSW
         
     | 
| 
       817 
     | 
    
         
            -
            *application/x-bleeper @bleep :base64
         
     | 
| 
       818 
     | 
    
         
            -
            *application/x-bzip2 @bz2
         
     | 
| 
       819 
     | 
    
         
            -
            *application/x-cdlink @vcd
         
     | 
| 
       820 
     | 
    
         
            -
            *application/x-chess-pgn @pgn
         
     | 
| 
       821 
     | 
    
         
            -
            *application/x-clariscad
         
     | 
| 
       822 
     | 
    
         
            -
            *application/x-compressed @z,Z :base64 'LTSW
         
     | 
| 
       823 
     | 
    
         
            -
            *application/x-cpio @cpio :base64 'LTSW
         
     | 
| 
       824 
     | 
    
         
            -
            *application/x-csh @csh :8bit 'LTSW
         
     | 
| 
       825 
     | 
    
         
            -
            *application/x-cu-seeme @csm,cu
         
     | 
| 
       826 
     | 
    
         
            -
            *application/x-debian-package @deb
         
     | 
| 
       827 
     | 
    
         
            -
            *application/x-director @dcr,@dir,@dxr
         
     | 
| 
       828 
     | 
    
         
            -
            *application/x-drafting
         
     | 
| 
       829 
     | 
    
         
            -
            *application/x-dvi @dvi :base64 'LTSW
         
     | 
| 
       830 
     | 
    
         
            -
            *application/x-dxf
         
     | 
| 
       831 
     | 
    
         
            -
            *application/x-excel
         
     | 
| 
       832 
     | 
    
         
            -
            *application/x-fractals
         
     | 
| 
       833 
     | 
    
         
            -
            *application/x-futuresplash @spl
         
     | 
| 
       834 
     | 
    
         
            -
            *application/x-ghostview
         
     | 
| 
       835 
     | 
    
         
            -
            *application/x-gtar @gtar,tgz,tbz2,tbz :base64 'LTSW
         
     | 
| 
       836 
     | 
    
         
            -
            *application/x-gzip @gz :base64 'LTSW
         
     | 
| 
       837 
     | 
    
         
            -
            *application/x-hdf @hdf 'LTSW
         
     | 
| 
       838 
     | 
    
         
            -
            *application/x-hep @hep
         
     | 
| 
       839 
     | 
    
         
            -
            *application/x-html+ruby @rhtml :8bit
         
     | 
| 
       840 
     | 
    
         
            -
            *application/x-httpd-php @phtml,pht,php :8bit
         
     | 
| 
       841 
     | 
    
         
            -
            *application/x-ica @ica
         
     | 
| 
       842 
     | 
    
         
            -
            *application/x-ideas
         
     | 
| 
       843 
     | 
    
         
            -
            *application/x-imagemap @imagemap,imap :8bit
         
     | 
| 
       844 
     | 
    
         
            -
            *application/x-java-archive @jar 'LTSW
         
     | 
| 
       845 
     | 
    
         
            -
            *application/x-java-jnlp-file @jnlp 'LTSW
         
     | 
| 
       846 
     | 
    
         
            -
            *application/x-java-serialized-object @ser 'LTSW
         
     | 
| 
       847 
     | 
    
         
            -
            *application/x-java-vm @class 'LTSW
         
     | 
| 
       848 
     | 
    
         
            -
            *application/x-koan @skp,skd,skt,skm
         
     | 
| 
       849 
     | 
    
         
            -
            *application/x-latex @ltx,latex :8bit 'LTSW
         
     | 
| 
       850 
     | 
    
         
            -
            *application/x-mac-compactpro @cpt
         
     | 
| 
       851 
     | 
    
         
            -
            *application/x-macbinary
         
     | 
| 
       852 
     | 
    
         
            -
            *application/x-maker @frm,maker,frame,fm,fb,book,fbdoc =use-instead:application/vnd.framemaker
         
     | 
| 
       853 
     | 
    
         
            -
            *application/x-mathematica-old
         
     | 
| 
       854 
     | 
    
         
            -
            *application/x-mif @mif 'LTSW
         
     | 
| 
       855 
     | 
    
         
            -
            *application/x-msaccess @mda,mdb,mde,mdf
         
     | 
| 
       856 
     | 
    
         
            -
            *application/x-msdos-program @cmd,bat :8bit
         
     | 
| 
       857 
     | 
    
         
            -
            *application/x-msdos-program @com,exe :base64
         
     | 
| 
       858 
     | 
    
         
            -
            *application/x-msdownload @exe,com :base64
         
     | 
| 
       859 
     | 
    
         
            -
            *application/x-netcdf @nc,cdf
         
     | 
| 
       860 
     | 
    
         
            -
            *application/x-ns-proxy-autoconfig @pac
         
     | 
| 
       861 
     | 
    
         
            -
            *application/x-pagemaker @pm,pm5,pt5
         
     | 
| 
       862 
     | 
    
         
            -
            *application/x-perl @pl,pm :8bit
         
     | 
| 
       863 
     | 
    
         
            -
            *application/x-pgp
         
     | 
| 
       864 
     | 
    
         
            -
            *application/x-python @py :8bit
         
     | 
| 
       865 
     | 
    
         
            -
            *application/x-quicktimeplayer @qtl
         
     | 
| 
       866 
     | 
    
         
            -
            *application/x-rar-compressed @rar :base64
         
     | 
| 
       867 
     | 
    
         
            -
            *application/x-remote_printing
         
     | 
| 
       868 
     | 
    
         
            -
            *application/x-ruby @rb,rbw :8bit
         
     | 
| 
       869 
     | 
    
         
            -
            *application/x-set
         
     | 
| 
       870 
     | 
    
         
            -
            *application/x-sh @sh :8bit 'LTSW
         
     | 
| 
       871 
     | 
    
         
            -
            *application/x-shar @shar :8bit 'LTSW
         
     | 
| 
       872 
     | 
    
         
            -
            *application/x-shockwave-flash @swf
         
     | 
| 
       873 
     | 
    
         
            -
            *application/x-solids
         
     | 
| 
       874 
     | 
    
         
            -
            *application/x-spss @sav,sbs,sps,spo,spp
         
     | 
| 
       875 
     | 
    
         
            -
            *application/x-stuffit @sit :base64 'LTSW
         
     | 
| 
       876 
     | 
    
         
            -
            *application/x-sv4cpio @sv4cpio :base64 'LTSW
         
     | 
| 
       877 
     | 
    
         
            -
            *application/x-sv4crc @sv4crc :base64 'LTSW
         
     | 
| 
       878 
     | 
    
         
            -
            *application/x-tar @tar :base64 'LTSW
         
     | 
| 
       879 
     | 
    
         
            -
            *application/x-tcl @tcl :8bit 'LTSW
         
     | 
| 
       880 
     | 
    
         
            -
            *application/x-tex @tex :8bit
         
     | 
| 
       881 
     | 
    
         
            -
            *application/x-texinfo @texinfo,texi :8bit
         
     | 
| 
       882 
     | 
    
         
            -
            *application/x-toolbook @tbk
         
     | 
| 
       883 
     | 
    
         
            -
            *application/x-troff @t,tr,roff :8bit
         
     | 
| 
       884 
     | 
    
         
            -
            *application/x-troff-man @man :8bit 'LTSW
         
     | 
| 
       885 
     | 
    
         
            -
            *application/x-troff-me @me 'LTSW
         
     | 
| 
       886 
     | 
    
         
            -
            *application/x-troff-ms @ms 'LTSW
         
     | 
| 
       887 
     | 
    
         
            -
            *application/x-ustar @ustar :base64 'LTSW
         
     | 
| 
       888 
     | 
    
         
            -
            *application/x-wais-source @src 'LTSW
         
     | 
| 
       889 
     | 
    
         
            -
            *application/x-wordperfect6.1 @wp6
         
     | 
| 
       890 
     | 
    
         
            -
            *application/x-x509-ca-cert @crt :base64
         
     | 
| 
       891 
     | 
    
         
            -
            *application/xslt+xml @xslt :8bit
         
     | 
| 
       892 
     | 
    
         
            -
             
     | 
| 
       893 
     | 
    
         
            -
              # audio/*
         
     | 
| 
       894 
     | 
    
         
            -
            audio/32kadpcm 'IANA,RFC2421,RFC2422
         
     | 
| 
       895 
     | 
    
         
            -
            audio/3gpp @3gpp 'IANA,RFC4281,RFC3839
         
     | 
| 
       896 
     | 
    
         
            -
            audio/3gpp2 'IANA,RFC4393,RFC4281
         
     | 
| 
       897 
     | 
    
         
            -
            audio/ac3 'IANA,RFC4184
         
     | 
| 
       898 
     | 
    
         
            -
            audio/AMR @amr :base64 'RFC4867
         
     | 
| 
       899 
     | 
    
         
            -
            audio/AMR-WB @awb :base64 'RFC4867
         
     | 
| 
       900 
     | 
    
         
            -
            audio/amr-wb+ 'IANA,RFC4352
         
     | 
| 
       901 
     | 
    
         
            -
            audio/asc 'IANA,RFC4695
         
     | 
| 
       902 
     | 
    
         
            -
            audio/basic @au,snd :base64 'IANA,RFC2045,RFC2046
         
     | 
| 
       903 
     | 
    
         
            -
            audio/BV16 'IANA,RFC4298
         
     | 
| 
       904 
     | 
    
         
            -
            audio/BV32 'IANA,RFC4298
         
     | 
| 
       905 
     | 
    
         
            -
            audio/clearmode 'IANA,RFC4040
         
     | 
| 
       906 
     | 
    
         
            -
            audio/CN 'IANA,RFC3389
         
     | 
| 
       907 
     | 
    
         
            -
            audio/DAT12 'IANA,RFC3190
         
     | 
| 
       908 
     | 
    
         
            -
            audio/dls 'IANA,RFC4613
         
     | 
| 
       909 
     | 
    
         
            -
            audio/dsr-es201108 'IANA,RFC3557
         
     | 
| 
       910 
     | 
    
         
            -
            audio/dsr-es202050 'IANA,RFC4060
         
     | 
| 
       911 
     | 
    
         
            -
            audio/dsr-es202211 'IANA,RFC4060
         
     | 
| 
       912 
     | 
    
         
            -
            audio/dsr-es202212 'IANA,RFC4060
         
     | 
| 
       913 
     | 
    
         
            -
            audio/DVI4 'IANA,RFC4856
         
     | 
| 
       914 
     | 
    
         
            -
            audio/eac3 'IANA,RFC4598
         
     | 
| 
       915 
     | 
    
         
            -
            audio/EVRC @evc 'IANA,RFC4788
         
     | 
| 
       916 
     | 
    
         
            -
            audio/EVRC-QCP 'IANA,RFC3625
         
     | 
| 
       917 
     | 
    
         
            -
            audio/EVRC0 'IANA,RFC4788
         
     | 
| 
       918 
     | 
    
         
            -
            audio/EVRC1 'IANA,RFC4788
         
     | 
| 
       919 
     | 
    
         
            -
            audio/EVRCB 'IANA,RFC5188
         
     | 
| 
       920 
     | 
    
         
            -
            audio/EVRCB0 'IANA,RFC5188
         
     | 
| 
       921 
     | 
    
         
            -
            audio/EVRCB1 'IANA,RFC4788
         
     | 
| 
       922 
     | 
    
         
            -
            audio/EVRCWB 'IANA,RFC5188
         
     | 
| 
       923 
     | 
    
         
            -
            audio/EVRCWB0 'IANA,RFC5188
         
     | 
| 
       924 
     | 
    
         
            -
            audio/EVRCWB1 'IANA,RFC5188
         
     | 
| 
       925 
     | 
    
         
            -
            audio/G719 'IANA,RFC5404
         
     | 
| 
       926 
     | 
    
         
            -
            audio/G722 'IANA,RFC4856
         
     | 
| 
       927 
     | 
    
         
            -
            audio/G7221 'IANA,RFC3047
         
     | 
| 
       928 
     | 
    
         
            -
            audio/G723 'IANA,RFC4856
         
     | 
| 
       929 
     | 
    
         
            -
            audio/G726-16 'IANA,RFC4856
         
     | 
| 
       930 
     | 
    
         
            -
            audio/G726-24 'IANA,RFC4856
         
     | 
| 
       931 
     | 
    
         
            -
            audio/G726-32 'IANA,RFC4856
         
     | 
| 
       932 
     | 
    
         
            -
            audio/G726-40 'IANA,RFC4856
         
     | 
| 
       933 
     | 
    
         
            -
            audio/G728 'IANA,RFC4856
         
     | 
| 
       934 
     | 
    
         
            -
            audio/G729 'IANA,RFC4856
         
     | 
| 
       935 
     | 
    
         
            -
            audio/G7291 'IANA,RFC4749,RFC5459
         
     | 
| 
       936 
     | 
    
         
            -
            audio/G729D 'IANA,RFC4856
         
     | 
| 
       937 
     | 
    
         
            -
            audio/G729E 'IANA,RFC4856
         
     | 
| 
       938 
     | 
    
         
            -
            audio/GSM 'IANA,RFC4856
         
     | 
| 
       939 
     | 
    
         
            -
            audio/GSM-EFR 'IANA,RFC4856
         
     | 
| 
       940 
     | 
    
         
            -
            audio/iLBC 'IANA,RFC3952
         
     | 
| 
       941 
     | 
    
         
            -
            audio/L16 @l16 'IANA,RFC4856
         
     | 
| 
       942 
     | 
    
         
            -
            audio/L20 'IANA,RFC3190
         
     | 
| 
       943 
     | 
    
         
            -
            audio/L24 'IANA,RFC3190
         
     | 
| 
       944 
     | 
    
         
            -
            audio/L8 'IANA,RFC4856
         
     | 
| 
       945 
     | 
    
         
            -
            audio/LPC 'IANA,RFC4856
         
     | 
| 
       946 
     | 
    
         
            -
            audio/mobile-xmf 'IANA,RFC4723
         
     | 
| 
       947 
     | 
    
         
            -
            audio/mp4 'IANA,RFC4337
         
     | 
| 
       948 
     | 
    
         
            -
            audio/MP4A-LATM 'IANA,RFC3016
         
     | 
| 
       949 
     | 
    
         
            -
            audio/MPA 'IANA,RFC3555
         
     | 
| 
       950 
     | 
    
         
            -
            audio/mpa-robust 'IANA,RFC5219
         
     | 
| 
       951 
     | 
    
         
            -
            audio/mpeg @mpga,mp2,mp3 :base64 'IANA,RFC3003
         
     | 
| 
       952 
     | 
    
         
            -
            audio/mpeg4-generic 'IANA,RFC3640
         
     | 
| 
       953 
     | 
    
         
            -
            audio/ogg 'IANA,RFC5334
         
     | 
| 
       954 
     | 
    
         
            -
            audio/parityfec 'IANA,RFC5109
         
     | 
| 
       955 
     | 
    
         
            -
            audio/PCMA 'IANA,RFC4856
         
     | 
| 
       956 
     | 
    
         
            -
            audio/PCMA-WB 'IANA,RFC5391
         
     | 
| 
       957 
     | 
    
         
            -
            audio/PCMU 'IANA,RFC4856
         
     | 
| 
       958 
     | 
    
         
            -
            audio/PCMU-WB 'IANA,RFC5391
         
     | 
| 
       959 
     | 
    
         
            -
            audio/prs.sid 'IANA,[Walleij]
         
     | 
| 
       960 
     | 
    
         
            -
            audio/QCELP 'IANA,RFC3555,RFC3625
         
     | 
| 
       961 
     | 
    
         
            -
            audio/RED 'IANA,RFC3555
         
     | 
| 
       962 
     | 
    
         
            -
            audio/rtp-enc-aescm128 'IANA,[3GPP]
         
     | 
| 
       963 
     | 
    
         
            -
            audio/rtp-midi 'IANA,RFC4695
         
     | 
| 
       964 
     | 
    
         
            -
            audio/rtx 'IANA,RFC4588
         
     | 
| 
       965 
     | 
    
         
            -
            audio/SMV @smv 'IANA,RFC3558
         
     | 
| 
       966 
     | 
    
         
            -
            audio/SMV-QCP 'IANA,RFC3625
         
     | 
| 
       967 
     | 
    
         
            -
            audio/SMV0 'IANA,RFC3558
         
     | 
| 
       968 
     | 
    
         
            -
            audio/sp-midi 'IANA,[Kosonen],[T. White=T.White]
         
     | 
| 
       969 
     | 
    
         
            -
            audio/t140c 'IANA,RFC4351
         
     | 
| 
       970 
     | 
    
         
            -
            audio/t38 'IANA,RFC4612
         
     | 
| 
       971 
     | 
    
         
            -
            audio/telephone-event 'IANA,RFC4733
         
     | 
| 
       972 
     | 
    
         
            -
            audio/tone 'IANA,RFC4733
         
     | 
| 
       973 
     | 
    
         
            -
            audio/ulpfec 'IANA,RFC5109
         
     | 
| 
       974 
     | 
    
         
            -
            audio/VDVI 'IANA,RFC4856
         
     | 
| 
       975 
     | 
    
         
            -
            audio/VMR-WB 'IANA,RFC4348,RFC4424
         
     | 
| 
       976 
     | 
    
         
            -
            audio/vnd.3gpp.iufp 'IANA,[Belling]
         
     | 
| 
       977 
     | 
    
         
            -
            audio/vnd.4SB 'IANA,[De Jaham]
         
     | 
| 
       978 
     | 
    
         
            -
            audio/vnd.audiokoz 'IANA,[DeBarros]
         
     | 
| 
       979 
     | 
    
         
            -
            audio/vnd.CELP 'IANA,[De Jaham]
         
     | 
| 
       980 
     | 
    
         
            -
            audio/vnd.cisco.nse 'IANA,[Kumar]
         
     | 
| 
       981 
     | 
    
         
            -
            audio/vnd.cmles.radio-events 'IANA,[Goulet]
         
     | 
| 
       982 
     | 
    
         
            -
            audio/vnd.cns.anp1 'IANA,[McLaughlin]
         
     | 
| 
       983 
     | 
    
         
            -
            audio/vnd.cns.inf1 'IANA,[McLaughlin]
         
     | 
| 
       984 
     | 
    
         
            -
            audio/vnd.digital-winds @eol :7bit 'IANA,[Strazds]
         
     | 
| 
       985 
     | 
    
         
            -
            audio/vnd.dlna.adts 'IANA,[Heredia]
         
     | 
| 
       986 
     | 
    
         
            -
            audio/vnd.dolby.mlp 'IANA,[Ward]
         
     | 
| 
       987 
     | 
    
         
            -
            audio/vnd.dolby.mps 'IANA,[Hattersley]
         
     | 
| 
       988 
     | 
    
         
            -
            audio/vnd.dts 'IANA,[Zou]
         
     | 
| 
       989 
     | 
    
         
            -
            audio/vnd.dts.hd 'IANA,[Zou]
         
     | 
| 
       990 
     | 
    
         
            -
            audio/vnd.everad.plj @plj 'IANA,[Cicelsky]
         
     | 
| 
       991 
     | 
    
         
            -
            audio/vnd.hns.audio 'IANA,[Swaminathan]
         
     | 
| 
       992 
     | 
    
         
            -
            audio/vnd.lucent.voice @lvp 'IANA,[Vaudreuil]
         
     | 
| 
       993 
     | 
    
         
            -
            audio/vnd.ms-playready.media.pya 'IANA,[DiAcetis]
         
     | 
| 
       994 
     | 
    
         
            -
            audio/vnd.nokia.mobile-xmf @mxmf 'IANA,[Nokia Corporation=Nokia]
         
     | 
| 
       995 
     | 
    
         
            -
            audio/vnd.nortel.vbk @vbk 'IANA,[Parsons]
         
     | 
| 
       996 
     | 
    
         
            -
            audio/vnd.nuera.ecelp4800 @ecelp4800 'IANA,[Fox]
         
     | 
| 
       997 
     | 
    
         
            -
            audio/vnd.nuera.ecelp7470 @ecelp7470 'IANA,[Fox]
         
     | 
| 
       998 
     | 
    
         
            -
            audio/vnd.nuera.ecelp9600 @ecelp9600 'IANA,[Fox]
         
     | 
| 
       999 
     | 
    
         
            -
            audio/vnd.octel.sbc 'IANA,[Vaudreuil]
         
     | 
| 
       1000 
     | 
    
         
            -
            audio/vnd.rhetorex.32kadpcm 'IANA,[Vaudreuil]
         
     | 
| 
       1001 
     | 
    
         
            -
            audio/vnd.sealedmedia.softseal.mpeg @smp3,smp,s1m 'IANA,[Petersen]
         
     | 
| 
       1002 
     | 
    
         
            -
            audio/vnd.vmx.cvsd 'IANA,[Vaudreuil]
         
     | 
| 
       1003 
     | 
    
         
            -
            audio/vorbis 'IANA,RFC5215
         
     | 
| 
       1004 
     | 
    
         
            -
            audio/vorbis-config 'IANA,RFC5215
         
     | 
| 
       1005 
     | 
    
         
            -
             
     | 
| 
       1006 
     | 
    
         
            -
            audio/x-aiff @aif,aifc,aiff :base64
         
     | 
| 
       1007 
     | 
    
         
            -
            audio/x-midi @mid,midi,kar :base64
         
     | 
| 
       1008 
     | 
    
         
            -
            audio/x-pn-realaudio @rm,ram :base64
         
     | 
| 
       1009 
     | 
    
         
            -
            audio/x-pn-realaudio-plugin @rpm
         
     | 
| 
       1010 
     | 
    
         
            -
            audio/x-realaudio @ra :base64
         
     | 
| 
       1011 
     | 
    
         
            -
            audio/x-wav @wav :base64
         
     | 
| 
       1012 
     | 
    
         
            -
             
     | 
| 
       1013 
     | 
    
         
            -
            !audio/vnd.qcelp @qcp 'IANA,RFC3625 =use-instead:audio/QCELP
         
     | 
| 
       1014 
     | 
    
         
            -
             
     | 
| 
       1015 
     | 
    
         
            -
              # image/*
         
     | 
| 
       1016 
     | 
    
         
            -
            image/cgm 'IANA,[Francis]
         
     | 
| 
       1017 
     | 
    
         
            -
            image/fits 'IANA,RFC4047
         
     | 
| 
       1018 
     | 
    
         
            -
            image/g3fax 'IANA,RFC1494
         
     | 
| 
       1019 
     | 
    
         
            -
            image/gif @gif :base64 'IANA,RFC2045,RFC2046
         
     | 
| 
       1020 
     | 
    
         
            -
            image/ief @ief :base64 'IANA,RFC1314
         
     | 
| 
       1021 
     | 
    
         
            -
            image/jp2 @jp2,jpg2 :base64 'IANA,RFC3745
         
     | 
| 
       1022 
     | 
    
         
            -
            image/jpeg @jpeg,jpg,jpe :base64 'IANA,RFC2045,RFC2046
         
     | 
| 
       1023 
     | 
    
         
            -
            image/jpm @jpm,jpgm :base64 'IANA,RFC3745
         
     | 
| 
       1024 
     | 
    
         
            -
            image/jpx @jpx,jpf :base64 'IANA,RFC3745
         
     | 
| 
       1025 
     | 
    
         
            -
            image/naplps 'IANA,[Ferber]
         
     | 
| 
       1026 
     | 
    
         
            -
            image/png @png :base64 'IANA,[Randers-Pehrson]
         
     | 
| 
       1027 
     | 
    
         
            -
            image/prs.btif 'IANA,[Simon]
         
     | 
| 
       1028 
     | 
    
         
            -
            image/prs.pti 'IANA,[Laun]
         
     | 
| 
       1029 
     | 
    
         
            -
            image/t38 'IANA,RFC3362
         
     | 
| 
       1030 
     | 
    
         
            -
            image/tiff @tiff,tif :base64 'IANA,RFC2302
         
     | 
| 
       1031 
     | 
    
         
            -
            image/tiff-fx 'IANA,RFC3950
         
     | 
| 
       1032 
     | 
    
         
            -
            image/vnd.adobe.photoshop 'IANA,[Scarborough]
         
     | 
| 
       1033 
     | 
    
         
            -
            image/vnd.cns.inf2 'IANA,[McLaughlin]
         
     | 
| 
       1034 
     | 
    
         
            -
            image/vnd.djvu @djvu,djv 'IANA,[Bottou]
         
     | 
| 
       1035 
     | 
    
         
            -
            image/vnd.dwg @dwg 'IANA,[Moline]
         
     | 
| 
       1036 
     | 
    
         
            -
            image/vnd.dxf 'IANA,[Moline]
         
     | 
| 
       1037 
     | 
    
         
            -
            image/vnd.fastbidsheet 'IANA,[Becker]
         
     | 
| 
       1038 
     | 
    
         
            -
            image/vnd.fpx 'IANA,[Spencer]
         
     | 
| 
       1039 
     | 
    
         
            -
            image/vnd.fst 'IANA,[Fuldseth]
         
     | 
| 
       1040 
     | 
    
         
            -
            image/vnd.fujixerox.edmics-mmr 'IANA,[Onda]
         
     | 
| 
       1041 
     | 
    
         
            -
            image/vnd.fujixerox.edmics-rlc 'IANA,[Onda]
         
     | 
| 
       1042 
     | 
    
         
            -
            image/vnd.globalgraphics.pgb @pgb 'IANA,[Bailey]
         
     | 
| 
       1043 
     | 
    
         
            -
            image/vnd.microsoft.icon @ico 'IANA,[Butcher]
         
     | 
| 
       1044 
     | 
    
         
            -
            image/vnd.mix 'IANA,[Reddy]
         
     | 
| 
       1045 
     | 
    
         
            -
            image/vnd.ms-modi @mdi 'IANA,[Vaughan]
         
     | 
| 
       1046 
     | 
    
         
            -
            image/vnd.net-fpx 'IANA,[Spencer]
         
     | 
| 
       1047 
     | 
    
         
            -
            image/vnd.sealed.png @spng,spn,s1n 'IANA,[Petersen]
         
     | 
| 
       1048 
     | 
    
         
            -
            image/vnd.sealedmedia.softseal.gif @sgif,sgi,s1g 'IANA,[Petersen]
         
     | 
| 
       1049 
     | 
    
         
            -
            image/vnd.sealedmedia.softseal.jpg @sjpg,sjp,s1j 'IANA,[Petersen]
         
     | 
| 
       1050 
     | 
    
         
            -
            image/vnd.svf 'IANA,[Moline]
         
     | 
| 
       1051 
     | 
    
         
            -
            image/vnd.wap.wbmp @wbmp 'IANA,[Stark]
         
     | 
| 
       1052 
     | 
    
         
            -
            image/vnd.xiff 'IANA,[S.Martin]
         
     | 
| 
       1053 
     | 
    
         
            -
             
     | 
| 
       1054 
     | 
    
         
            -
            *!image/bmp @bmp =use-instead:image/x-bmp
         
     | 
| 
       1055 
     | 
    
         
            -
            *!image/cmu-raster =use-instead:image/x-cmu-raster
         
     | 
| 
       1056 
     | 
    
         
            -
            *!image/targa @tga =use-instead:image/x-targa
         
     | 
| 
       1057 
     | 
    
         
            -
            *!image/vnd.dgn @dgn =use-instead:image/x-vnd.dgn
         
     | 
| 
       1058 
     | 
    
         
            -
            *!image/vnd.net.fpx =use-instead:image/vnd.net-fpx
         
     | 
| 
       1059 
     | 
    
         
            -
            *image/pjpeg :base64 =Fixes a bug with IE6 and progressive JPEGs
         
     | 
| 
       1060 
     | 
    
         
            -
            *image/svg+xml @svg :8bit
         
     | 
| 
       1061 
     | 
    
         
            -
            *image/x-bmp @bmp
         
     | 
| 
       1062 
     | 
    
         
            -
            *image/x-cmu-raster @ras
         
     | 
| 
       1063 
     | 
    
         
            -
            *image/x-paintshoppro @psp,pspimage :base64
         
     | 
| 
       1064 
     | 
    
         
            -
            *image/x-pict
         
     | 
| 
       1065 
     | 
    
         
            -
            *image/x-portable-anymap @pnm :base64
         
     | 
| 
       1066 
     | 
    
         
            -
            *image/x-portable-bitmap @pbm :base64
         
     | 
| 
       1067 
     | 
    
         
            -
            *image/x-portable-graymap @pgm :base64
         
     | 
| 
       1068 
     | 
    
         
            -
            *image/x-portable-pixmap @ppm :base64
         
     | 
| 
       1069 
     | 
    
         
            -
            *image/x-rgb @rgb :base64
         
     | 
| 
       1070 
     | 
    
         
            -
            *image/x-targa @tga
         
     | 
| 
       1071 
     | 
    
         
            -
            *image/x-vnd.dgn @dgn
         
     | 
| 
       1072 
     | 
    
         
            -
            *image/x-win-bmp
         
     | 
| 
       1073 
     | 
    
         
            -
            *image/x-xbitmap @xbm :7bit
         
     | 
| 
       1074 
     | 
    
         
            -
            *image/x-xbm @xbm :7bit
         
     | 
| 
       1075 
     | 
    
         
            -
            *image/x-xpixmap @xpm :8bit
         
     | 
| 
       1076 
     | 
    
         
            -
            *image/x-xwindowdump @xwd :base64
         
     | 
| 
       1077 
     | 
    
         
            -
             
     | 
| 
       1078 
     | 
    
         
            -
              # message/*
         
     | 
| 
       1079 
     | 
    
         
            -
            message/CPIM 'IANA,RFC3862
         
     | 
| 
       1080 
     | 
    
         
            -
            message/delivery-status 'IANA,RFC1894
         
     | 
| 
       1081 
     | 
    
         
            -
            message/disposition-notification 'IANA,RFC2298
         
     | 
| 
       1082 
     | 
    
         
            -
            message/external-body :8bit 'IANA,RFC2045,RFC2046
         
     | 
| 
       1083 
     | 
    
         
            -
            message/global 'IANA,RFC5335
         
     | 
| 
       1084 
     | 
    
         
            -
            message/global-delivery-status 'IANA,RFC5337
         
     | 
| 
       1085 
     | 
    
         
            -
            message/global-disposition-notification 'IANA,RFC5337
         
     | 
| 
       1086 
     | 
    
         
            -
            message/global-headers 'IANA,RFC5337
         
     | 
| 
       1087 
     | 
    
         
            -
            message/http 'IANA,RFC2616
         
     | 
| 
       1088 
     | 
    
         
            -
            message/imdn+xml 'IANA,RFC5438
         
     | 
| 
       1089 
     | 
    
         
            -
            message/news :8bit 'IANA,RFC1036,[H.Spencer]
         
     | 
| 
       1090 
     | 
    
         
            -
            message/partial :8bit 'IANA,RFC2045,RFC2046
         
     | 
| 
       1091 
     | 
    
         
            -
            message/rfc822 @eml :8bit 'IANA,RFC2045,RFC2046
         
     | 
| 
       1092 
     | 
    
         
            -
            message/s-http 'IANA,RFC2660
         
     | 
| 
       1093 
     | 
    
         
            -
            message/sip 'IANA,RFC3261
         
     | 
| 
       1094 
     | 
    
         
            -
            message/sipfrag 'IANA,RFC3420
         
     | 
| 
       1095 
     | 
    
         
            -
            message/tracking-status 'IANA,RFC3886
         
     | 
| 
       1096 
     | 
    
         
            -
            message/vnd.si.simp 'IANA,[Parks Young=ParksYoung]
         
     | 
| 
       1097 
     | 
    
         
            -
             
     | 
| 
       1098 
     | 
    
         
            -
              # model/*
         
     | 
| 
       1099 
     | 
    
         
            -
            model/iges @igs,iges 'IANA,[Parks]
         
     | 
| 
       1100 
     | 
    
         
            -
            model/mesh @msh,mesh,silo 'IANA,RFC2077
         
     | 
| 
       1101 
     | 
    
         
            -
            model/vnd.dwf 'IANA,[Pratt]
         
     | 
| 
       1102 
     | 
    
         
            -
            model/vnd.flatland.3dml 'IANA,[Powers]
         
     | 
| 
       1103 
     | 
    
         
            -
            model/vnd.gdl 'IANA,[Babits]
         
     | 
| 
       1104 
     | 
    
         
            -
            model/vnd.gs-gdl 'IANA,[Babits]
         
     | 
| 
       1105 
     | 
    
         
            -
            model/vnd.gtw 'IANA,[Ozaki]
         
     | 
| 
       1106 
     | 
    
         
            -
            model/vnd.moml+xml 'IANA,[Brooks]
         
     | 
| 
       1107 
     | 
    
         
            -
            model/vnd.mts 'IANA,[Rabinovitch]
         
     | 
| 
       1108 
     | 
    
         
            -
            model/vnd.parasolid.transmit.binary @x_b,xmt_bin 'IANA,[Parasolid]
         
     | 
| 
       1109 
     | 
    
         
            -
            model/vnd.parasolid.transmit.text @x_t,xmt_txt :quoted-printable 'IANA,[Parasolid]
         
     | 
| 
       1110 
     | 
    
         
            -
            model/vnd.vtu 'IANA,[Rabinovitch]
         
     | 
| 
       1111 
     | 
    
         
            -
            model/vrml @wrl,vrml 'IANA,RFC2077
         
     | 
| 
       1112 
     | 
    
         
            -
             
     | 
| 
       1113 
     | 
    
         
            -
              # multipart/*
         
     | 
| 
       1114 
     | 
    
         
            -
            multipart/alternative :8bit 'IANA,RFC2045,RFC2046
         
     | 
| 
       1115 
     | 
    
         
            -
            multipart/appledouble :8bit 'IANA,[Faltstrom]
         
     | 
| 
       1116 
     | 
    
         
            -
            multipart/byteranges 'IANA,RFC2068
         
     | 
| 
       1117 
     | 
    
         
            -
            multipart/digest :8bit 'IANA,RFC2045,RFC2046
         
     | 
| 
       1118 
     | 
    
         
            -
            multipart/encrypted 'IANA,RFC1847
         
     | 
| 
       1119 
     | 
    
         
            -
            multipart/form-data 'IANA,RFC2388
         
     | 
| 
       1120 
     | 
    
         
            -
            multipart/header-set 'IANA,[Crocker]
         
     | 
| 
       1121 
     | 
    
         
            -
            multipart/mixed :8bit 'IANA,RFC2045,RFC2046
         
     | 
| 
       1122 
     | 
    
         
            -
            multipart/parallel :8bit 'IANA,RFC2045,RFC2046
         
     | 
| 
       1123 
     | 
    
         
            -
            multipart/related 'IANA,RFC2387
         
     | 
| 
       1124 
     | 
    
         
            -
            multipart/report 'IANA,RFC3462
         
     | 
| 
       1125 
     | 
    
         
            -
            multipart/signed 'IANA,RFC1847
         
     | 
| 
       1126 
     | 
    
         
            -
            multipart/voice-message 'IANA,RFC2421,RFC2423
         
     | 
| 
       1127 
     | 
    
         
            -
            *multipart/x-gzip
         
     | 
| 
       1128 
     | 
    
         
            -
            *multipart/x-mixed-replace
         
     | 
| 
       1129 
     | 
    
         
            -
            *multipart/x-tar
         
     | 
| 
       1130 
     | 
    
         
            -
            *multipart/x-ustar
         
     | 
| 
       1131 
     | 
    
         
            -
            *multipart/x-www-form-urlencoded
         
     | 
| 
       1132 
     | 
    
         
            -
            *multipart/x-zip
         
     | 
| 
       1133 
     | 
    
         
            -
            *!multipart/x-parallel =use-instead:multipart/parallel
         
     | 
| 
       1134 
     | 
    
         
            -
             
     | 
| 
       1135 
     | 
    
         
            -
              # text/*
         
     | 
| 
       1136 
     | 
    
         
            -
            text/calendar 'IANA,RFC2445
         
     | 
| 
       1137 
     | 
    
         
            -
            text/css @css :8bit 'IANA,RFC2318
         
     | 
| 
       1138 
     | 
    
         
            -
            text/csv @csv :8bit 'IANA,RFC4180
         
     | 
| 
       1139 
     | 
    
         
            -
            text/directory 'IANA,RFC2425
         
     | 
| 
       1140 
     | 
    
         
            -
            text/dns 'IANA,RFC4027
         
     | 
| 
       1141 
     | 
    
         
            -
            text/enriched 'IANA,RFC1896
         
     | 
| 
       1142 
     | 
    
         
            -
            text/html @html,htm,htmlx,shtml,htx :8bit 'IANA,RFC2854
         
     | 
| 
       1143 
     | 
    
         
            -
            text/parityfec 'IANA,RFC5109
         
     | 
| 
       1144 
     | 
    
         
            -
            text/plain @txt,asc,c,cc,h,hh,cpp,hpp,dat,hlp 'IANA,RFC2046,RFC3676,RFC5147
         
     | 
| 
       1145 
     | 
    
         
            -
            text/prs.fallenstein.rst @rst 'IANA,[Fallenstein]
         
     | 
| 
       1146 
     | 
    
         
            -
            text/prs.lines.tag 'IANA,[Lines]
         
     | 
| 
       1147 
     | 
    
         
            -
            text/RED 'IANA,RFC4102
         
     | 
| 
       1148 
     | 
    
         
            -
            text/rfc822-headers 'IANA,RFC3462
         
     | 
| 
       1149 
     | 
    
         
            -
            text/richtext @rtx :8bit 'IANA,RFC2045,RFC2046
         
     | 
| 
       1150 
     | 
    
         
            -
            text/rtf @rtf :8bit 'IANA,[Lindner]
         
     | 
| 
       1151 
     | 
    
         
            -
            text/rtp-enc-aescm128 'IANA,[3GPP]
         
     | 
| 
       1152 
     | 
    
         
            -
            text/rtx 'IANA,RFC4588
         
     | 
| 
       1153 
     | 
    
         
            -
            text/sgml @sgml,sgm 'IANA,RFC1874
         
     | 
| 
       1154 
     | 
    
         
            -
            text/t140 'IANA,RFC4103
         
     | 
| 
       1155 
     | 
    
         
            -
            text/tab-separated-values @tsv 'IANA,[Lindner]
         
     | 
| 
       1156 
     | 
    
         
            -
            text/troff @t,tr,roff,troff :8bit 'IANA,RFC4263
         
     | 
| 
       1157 
     | 
    
         
            -
            text/ulpfec 'IANA,RFC5109
         
     | 
| 
       1158 
     | 
    
         
            -
            text/uri-list 'IANA,RFC2483
         
     | 
| 
       1159 
     | 
    
         
            -
            text/vnd.abc 'IANA,[Allen]
         
     | 
| 
       1160 
     | 
    
         
            -
            text/vnd.curl 'IANA,[Byrnes]
         
     | 
| 
       1161 
     | 
    
         
            -
            text/vnd.DMClientScript 'IANA,[Bradley]
         
     | 
| 
       1162 
     | 
    
         
            -
            text/vnd.esmertec.theme-descriptor 'IANA,[Eilemann]
         
     | 
| 
       1163 
     | 
    
         
            -
            text/vnd.fly 'IANA,[Gurney]
         
     | 
| 
       1164 
     | 
    
         
            -
            text/vnd.fmi.flexstor 'IANA,[Hurtta]
         
     | 
| 
       1165 
     | 
    
         
            -
            text/vnd.graphviz 'IANA,[Ellson]
         
     | 
| 
       1166 
     | 
    
         
            -
            text/vnd.in3d.3dml 'IANA,[Powers]
         
     | 
| 
       1167 
     | 
    
         
            -
            text/vnd.in3d.spot 'IANA,[Powers]
         
     | 
| 
       1168 
     | 
    
         
            -
            text/vnd.IPTC.NewsML 'IANA,[IPTC]
         
     | 
| 
       1169 
     | 
    
         
            -
            text/vnd.IPTC.NITF 'IANA,[IPTC]
         
     | 
| 
       1170 
     | 
    
         
            -
            text/vnd.latex-z 'IANA,[Lubos]
         
     | 
| 
       1171 
     | 
    
         
            -
            text/vnd.motorola.reflex 'IANA,[Patton]
         
     | 
| 
       1172 
     | 
    
         
            -
            text/vnd.ms-mediapackage 'IANA,[Nelson]
         
     | 
| 
       1173 
     | 
    
         
            -
            text/vnd.net2phone.commcenter.command @ccc 'IANA,[Xie]
         
     | 
| 
       1174 
     | 
    
         
            -
            text/vnd.si.uricatalogue 'IANA,[Parks Young=ParksYoung]
         
     | 
| 
       1175 
     | 
    
         
            -
            text/vnd.sun.j2me.app-descriptor @jad :8bit 'IANA,[G.Adams]
         
     | 
| 
       1176 
     | 
    
         
            -
            text/vnd.trolltech.linguist 'IANA,[D.Lambert]
         
     | 
| 
       1177 
     | 
    
         
            -
            text/vnd.wap.si @si 'IANA,[WAP-Forum]
         
     | 
| 
       1178 
     | 
    
         
            -
            text/vnd.wap.sl @sl 'IANA,[WAP-Forum]
         
     | 
| 
       1179 
     | 
    
         
            -
            text/vnd.wap.wml @wml 'IANA,[Stark]
         
     | 
| 
       1180 
     | 
    
         
            -
            text/vnd.wap.wmlscript @wmls 'IANA,[Stark]
         
     | 
| 
       1181 
     | 
    
         
            -
            text/xml @xml,dtd :8bit 'IANA,RFC3023
         
     | 
| 
       1182 
     | 
    
         
            -
            text/xml-external-parsed-entity 'IANA,RFC3023
         
     | 
| 
       1183 
     | 
    
         
            -
             
     | 
| 
       1184 
     | 
    
         
            -
            vms:text/plain @doc :8bit
         
     | 
| 
       1185 
     | 
    
         
            -
             
     | 
| 
       1186 
     | 
    
         
            -
            !text/ecmascript 'IANA,RFC4329
         
     | 
| 
       1187 
     | 
    
         
            -
            !text/javascript 'IANA,RFC4329
         
     | 
| 
       1188 
     | 
    
         
            -
            *!text/comma-separated-values @csv :8bit =use-instead:text/csv
         
     | 
| 
       1189 
     | 
    
         
            -
            *!text/vnd.flatland.3dml =use-instead:model/vnd.flatland.3dml
         
     | 
| 
       1190 
     | 
    
         
            -
            *!text/x-rtf @rtf :8bit =use-instead:text/rtf
         
     | 
| 
       1191 
     | 
    
         
            -
            *!text/x-vnd.flatland.3dml =use-instead:model/vnd.flatland.3dml
         
     | 
| 
       1192 
     | 
    
         
            -
            *text/x-component @htc :8bit
         
     | 
| 
       1193 
     | 
    
         
            -
            *text/x-setext @etx
         
     | 
| 
       1194 
     | 
    
         
            -
            *text/x-vcalendar @vcs :8bit
         
     | 
| 
       1195 
     | 
    
         
            -
            *text/x-vcard @vcf :8bit
         
     | 
| 
       1196 
     | 
    
         
            -
            *text/x-yaml @yaml,yml :8bit
         
     | 
| 
       1197 
     | 
    
         
            -
             
     | 
| 
       1198 
     | 
    
         
            -
              # Registered: video/*
         
     | 
| 
       1199 
     | 
    
         
            -
            video/3gpp @3gp,3gpp 'IANA,RFC3839,RFC4281
         
     | 
| 
       1200 
     | 
    
         
            -
            video/3gpp-tt 'IANA,RFC4396
         
     | 
| 
       1201 
     | 
    
         
            -
            video/3gpp2 'IANA,RFC4393,RFC4281
         
     | 
| 
       1202 
     | 
    
         
            -
            video/BMPEG 'IANA,RFC3555
         
     | 
| 
       1203 
     | 
    
         
            -
            video/BT656 'IANA,RFC3555
         
     | 
| 
       1204 
     | 
    
         
            -
            video/CelB 'IANA,RFC3555
         
     | 
| 
       1205 
     | 
    
         
            -
            video/DV 'IANA,RFC3189
         
     | 
| 
       1206 
     | 
    
         
            -
            video/H261 'IANA,RFC4587
         
     | 
| 
       1207 
     | 
    
         
            -
            video/H263 'IANA,RFC3555
         
     | 
| 
       1208 
     | 
    
         
            -
            video/H263-1998 'IANA,RFC4629
         
     | 
| 
       1209 
     | 
    
         
            -
            video/H263-2000 'IANA,RFC4629
         
     | 
| 
       1210 
     | 
    
         
            -
            video/H264 'IANA,RFC3984
         
     | 
| 
       1211 
     | 
    
         
            -
            video/JPEG 'IANA,RFC3555
         
     | 
| 
       1212 
     | 
    
         
            -
            video/jpeg2000 'IANA,RFC5371,RFC5372
         
     | 
| 
       1213 
     | 
    
         
            -
            video/MJ2 @mj2,mjp2 'IANA,RFC3745
         
     | 
| 
       1214 
     | 
    
         
            -
            video/MP1S 'IANA,RFC3555
         
     | 
| 
       1215 
     | 
    
         
            -
            video/MP2P 'IANA,RFC3555
         
     | 
| 
       1216 
     | 
    
         
            -
            video/MP2T 'IANA,RFC3555
         
     | 
| 
       1217 
     | 
    
         
            -
            video/mp4 'IANA,RFC4337
         
     | 
| 
       1218 
     | 
    
         
            -
            video/MP4V-ES 'IANA,RFC3016
         
     | 
| 
       1219 
     | 
    
         
            -
            video/mpeg @mp2,mpe,mp3g,mpg :base64 'IANA,RFC2045,RFC2046
         
     | 
| 
       1220 
     | 
    
         
            -
            video/mpeg4-generic 'IANA,RFC3640
         
     | 
| 
       1221 
     | 
    
         
            -
            video/MPV 'IANA,RFC3555
         
     | 
| 
       1222 
     | 
    
         
            -
            video/nv 'IANA,RFC4856
         
     | 
| 
       1223 
     | 
    
         
            -
            video/ogg @ogv 'IANA,RFC5334
         
     | 
| 
       1224 
     | 
    
         
            -
            video/parityfec 'IANA,RFC5109
         
     | 
| 
       1225 
     | 
    
         
            -
            video/pointer 'IANA,RFC2862
         
     | 
| 
       1226 
     | 
    
         
            -
            video/quicktime @qt,mov :base64 'IANA,[Lindner]
         
     | 
| 
       1227 
     | 
    
         
            -
            video/raw 'IANA,RFC4175
         
     | 
| 
       1228 
     | 
    
         
            -
            video/rtp-enc-aescm128 'IANA,[3GPP]
         
     | 
| 
       1229 
     | 
    
         
            -
            video/rtx 'IANA,RFC4588
         
     | 
| 
       1230 
     | 
    
         
            -
            video/SMPTE292M 'IANA,RFC3497
         
     | 
| 
       1231 
     | 
    
         
            -
            video/ulpfec 'IANA,RFC5109
         
     | 
| 
       1232 
     | 
    
         
            -
            video/vc1 'IANA,RFC4425
         
     | 
| 
       1233 
     | 
    
         
            -
            video/vnd.CCTV 'IANA,[Rottmann]
         
     | 
| 
       1234 
     | 
    
         
            -
            video/vnd.fvt 'IANA,[Fuldseth]
         
     | 
| 
       1235 
     | 
    
         
            -
            video/vnd.hns.video 'IANA,[Swaminathan]
         
     | 
| 
       1236 
     | 
    
         
            -
            video/vnd.iptvforum.1dparityfec-1010 'IANA,[Nakamura]
         
     | 
| 
       1237 
     | 
    
         
            -
            video/vnd.iptvforum.1dparityfec-2005 'IANA,[Nakamura]
         
     | 
| 
       1238 
     | 
    
         
            -
            video/vnd.iptvforum.2dparityfec-1010 'IANA,[Nakamura]
         
     | 
| 
       1239 
     | 
    
         
            -
            video/vnd.iptvforum.2dparityfec-2005 'IANA,[Nakamura]
         
     | 
| 
       1240 
     | 
    
         
            -
            video/vnd.iptvforum.ttsavc 'IANA,[Nakamura]
         
     | 
| 
       1241 
     | 
    
         
            -
            video/vnd.iptvforum.ttsmpeg2 'IANA,[Nakamura]
         
     | 
| 
       1242 
     | 
    
         
            -
            video/vnd.motorola.video 'IANA,[McGinty]
         
     | 
| 
       1243 
     | 
    
         
            -
            video/vnd.motorola.videop 'IANA,[McGinty]
         
     | 
| 
       1244 
     | 
    
         
            -
            video/vnd.mpegurl @mxu,m4u :8bit 'IANA,[Recktenwald]
         
     | 
| 
       1245 
     | 
    
         
            -
            video/vnd.ms-playready.media.pyv 'IANA,[DiAcetis]
         
     | 
| 
       1246 
     | 
    
         
            -
            video/vnd.nokia.interleaved-multimedia @nim 'IANA,[Kangaslampi]
         
     | 
| 
       1247 
     | 
    
         
            -
            video/vnd.objectvideo @mp4 'IANA,[Clark]
         
     | 
| 
       1248 
     | 
    
         
            -
            video/vnd.sealed.mpeg1 @s11 'IANA,[Petersen]
         
     | 
| 
       1249 
     | 
    
         
            -
            video/vnd.sealed.mpeg4 @smpg,s14 'IANA,[Petersen]
         
     | 
| 
       1250 
     | 
    
         
            -
            video/vnd.sealed.swf @sswf,ssw 'IANA,[Petersen]
         
     | 
| 
       1251 
     | 
    
         
            -
            video/vnd.sealedmedia.softseal.mov @smov,smo,s1q 'IANA,[Petersen]
         
     | 
| 
       1252 
     | 
    
         
            -
            video/vnd.vivo @viv,vivo 'IANA,[Wolfe]
         
     | 
| 
       1253 
     | 
    
         
            -
             
     | 
| 
       1254 
     | 
    
         
            -
            *!video/dl @dl :base64 =use-instead:video/x-dl
         
     | 
| 
       1255 
     | 
    
         
            -
            *!video/gl @gl :base64 =use-instead:video/x-gl
         
     | 
| 
       1256 
     | 
    
         
            -
            *!video/vnd.dlna.mpeg-tts 'IANA,[Heredia]
         
     | 
| 
       1257 
     | 
    
         
            -
            *video/x-dl @dl :base64
         
     | 
| 
       1258 
     | 
    
         
            -
            *video/x-fli @fli :base64
         
     | 
| 
       1259 
     | 
    
         
            -
            *video/x-flv @flv :base64
         
     | 
| 
       1260 
     | 
    
         
            -
            *video/x-gl @gl :base64
         
     | 
| 
       1261 
     | 
    
         
            -
            *video/x-ms-asf @asf,asx
         
     | 
| 
       1262 
     | 
    
         
            -
            *video/x-ms-wmv @wmv
         
     | 
| 
       1263 
     | 
    
         
            -
            *video/x-msvideo @avi :base64
         
     | 
| 
       1264 
     | 
    
         
            -
            *video/x-sgi-movie @movie :base64
         
     | 
| 
       1265 
     | 
    
         
            -
             
     | 
| 
       1266 
     | 
    
         
            -
              # Unregistered: other/*
         
     | 
| 
       1267 
     | 
    
         
            -
            *!chemical/x-pdb @pdb =use-instead:x-chemical/x-pdb
         
     | 
| 
       1268 
     | 
    
         
            -
            *!chemical/x-xyz @xyz =use-instead:x-chemical/x-xyz
         
     | 
| 
       1269 
     | 
    
         
            -
            *!drawing/dwf @dwf =use-instead:x-drawing/dwf
         
     | 
| 
       1270 
     | 
    
         
            -
            x-chemical/x-pdb @pdb
         
     | 
| 
       1271 
     | 
    
         
            -
            x-chemical/x-xyz @xyz
         
     | 
| 
       1272 
     | 
    
         
            -
            x-conference/x-cooltalk @ice
         
     | 
| 
       1273 
     | 
    
         
            -
            x-drawing/dwf @dwf
         
     | 
| 
       1274 
     | 
    
         
            -
            x-world/x-vrml @wrl,vrml
         
     | 
| 
       1275 
     | 
    
         
            -
            MIME_TYPES
         
     | 
| 
       1276 
     | 
    
         
            -
             
     | 
| 
       1277 
     | 
    
         
            -
            _re = %r{
         
     | 
| 
       1278 
     | 
    
         
            -
              ^
         
     | 
| 
       1279 
     | 
    
         
            -
              ([*])?                                # 0: Unregistered?
         
     | 
| 
       1280 
     | 
    
         
            -
              (!)?                                  # 1: Obsolete?
         
     | 
| 
       1281 
     | 
    
         
            -
              (?:(\w+):)?                           # 2: Platform marker
         
     | 
| 
       1282 
     | 
    
         
            -
              #{MIME::Type::MEDIA_TYPE_RE}          # 3,4: Media type
         
     | 
| 
       1283 
     | 
    
         
            -
              (?:\s@([^\s]+))?                      # 5: Extensions
         
     | 
| 
       1284 
     | 
    
         
            -
              (?:\s:(#{MIME::Type::ENCODING_RE}))?  # 6: Encoding
         
     | 
| 
       1285 
     | 
    
         
            -
              (?:\s'(.+))?                          # 7: URL list
         
     | 
| 
       1286 
     | 
    
         
            -
              (?:\s=(.+))?                          # 8: Documentation
         
     | 
| 
       1287 
     | 
    
         
            -
              $
         
     | 
| 
       1288 
     | 
    
         
            -
            }x
         
     | 
| 
       1289 
     | 
    
         
            -
             
     | 
| 
       1290 
     | 
    
         
            -
            data_mime_type.split($/).each_with_index do |i, x|
         
     | 
| 
       1291 
     | 
    
         
            -
              item = i.chomp.strip.gsub(%r{#.*}o, '')
         
     | 
| 
       1292 
     | 
    
         
            -
              next if item.empty?
         
     | 
| 
       1293 
     | 
    
         
            -
             
     | 
| 
       1294 
     | 
    
         
            -
              begin
         
     | 
| 
       1295 
     | 
    
         
            -
                m = _re.match(item).captures
         
     | 
| 
       1296 
     | 
    
         
            -
              rescue Exception => ex
         
     | 
| 
       1297 
     | 
    
         
            -
                puts <<-"ERROR"
         
     | 
| 
       1298 
     | 
    
         
            -
            #{__FILE__}:#{x + data_mime_type_first_line}: Parsing error in MIME type definitions.
         
     | 
| 
       1299 
     | 
    
         
            -
            => "#{item}"
         
     | 
| 
       1300 
     | 
    
         
            -
                ERROR
         
     | 
| 
       1301 
     | 
    
         
            -
                raise
         
     | 
| 
       1302 
     | 
    
         
            -
              end
         
     | 
| 
       1303 
     | 
    
         
            -
             
     | 
| 
       1304 
     | 
    
         
            -
              unregistered, obsolete, platform, mediatype, subtype, extensions,
         
     | 
| 
       1305 
     | 
    
         
            -
                encoding, urls, docs = *m
         
     | 
| 
       1306 
     | 
    
         
            -
             
     | 
| 
       1307 
     | 
    
         
            -
              extensions &&= extensions.split(/,/)
         
     | 
| 
       1308 
     | 
    
         
            -
              urls &&= urls.split(/,/)
         
     | 
| 
       1309 
     | 
    
         
            -
             
     | 
| 
       1310 
     | 
    
         
            -
              mime_type = MIME::Type.new("#{mediatype}/#{subtype}") do |t|
         
     | 
| 
       1311 
     | 
    
         
            -
                t.extensions  = extensions
         
     | 
| 
       1312 
     | 
    
         
            -
                t.encoding    = encoding
         
     | 
| 
       1313 
     | 
    
         
            -
                t.system      = platform
         
     | 
| 
       1314 
     | 
    
         
            -
                t.obsolete    = obsolete
         
     | 
| 
       1315 
     | 
    
         
            -
                t.registered  = false if unregistered
         
     | 
| 
       1316 
     | 
    
         
            -
                t.docs        = docs
         
     | 
| 
       1317 
     | 
    
         
            -
                t.url         = urls
         
     | 
| 
       1318 
     | 
    
         
            -
              end
         
     | 
| 
       1319 
     | 
    
         
            -
             
     | 
| 
       1320 
     | 
    
         
            -
              MIME::Types.add_type_variant(mime_type)
         
     | 
| 
       1321 
     | 
    
         
            -
              MIME::Types.index_extensions(mime_type)
         
     | 
| 
       1322 
     | 
    
         
            -
            end
         
     | 
| 
       1323 
     | 
    
         
            -
             
     | 
| 
       1324 
     | 
    
         
            -
            _re = data_mime_type = data_mime_type_first_line = nil
         
     |