vendor/symfony/mime/MimeTypes.php line 140

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of the Symfony package.
  4.  *
  5.  * (c) Fabien Potencier <fabien@symfony.com>
  6.  *
  7.  * For the full copyright and license information, please view the LICENSE
  8.  * file that was distributed with this source code.
  9.  */
  10. namespace Symfony\Component\Mime;
  11. use Symfony\Component\Mime\Exception\LogicException;
  12. /**
  13.  * Manages MIME types and file extensions.
  14.  *
  15.  * For MIME type guessing, you can register custom guessers
  16.  * by calling the registerGuesser() method.
  17.  * Custom guessers are always called before any default ones:
  18.  *
  19.  *     $guesser = new MimeTypes();
  20.  *     $guesser->registerGuesser(new MyCustomMimeTypeGuesser());
  21.  *
  22.  * If you want to change the order of the default guessers, just re-register your
  23.  * preferred one as a custom one. The last registered guesser is preferred over
  24.  * previously registered ones.
  25.  *
  26.  * Re-registering a built-in guesser also allows you to configure it:
  27.  *
  28.  *     $guesser = new MimeTypes();
  29.  *     $guesser->registerGuesser(new FileinfoMimeTypeGuesser('/path/to/magic/file'));
  30.  *
  31.  * @author Fabien Potencier <fabien@symfony.com>
  32.  */
  33. final class MimeTypes implements MimeTypesInterface
  34. {
  35.     private $extensions = [];
  36.     private $mimeTypes = [];
  37.     /**
  38.      * @var MimeTypeGuesserInterface[]
  39.      */
  40.     private $guessers = [];
  41.     private static $default;
  42.     public function __construct(array $map = [])
  43.     {
  44.         foreach ($map as $mimeType => $extensions) {
  45.             $this->extensions[$mimeType] = $extensions;
  46.             foreach ($extensions as $extension) {
  47.                 $this->mimeTypes[$extension][] = $mimeType;
  48.             }
  49.         }
  50.         $this->registerGuesser(new FileBinaryMimeTypeGuesser());
  51.         $this->registerGuesser(new FileinfoMimeTypeGuesser());
  52.     }
  53.     public static function setDefault(self $default)
  54.     {
  55.         self::$default $default;
  56.     }
  57.     public static function getDefault(): self
  58.     {
  59.         return self::$default ?? self::$default = new self();
  60.     }
  61.     /**
  62.      * Registers a MIME type guesser.
  63.      *
  64.      * The last registered guesser has precedence over the other ones.
  65.      */
  66.     public function registerGuesser(MimeTypeGuesserInterface $guesser)
  67.     {
  68.         array_unshift($this->guessers$guesser);
  69.     }
  70.     /**
  71.      * {@inheritdoc}
  72.      */
  73.     public function getExtensions(string $mimeType): array
  74.     {
  75.         if ($this->extensions) {
  76.             $extensions $this->extensions[$mimeType] ?? $this->extensions[$lcMimeType strtolower($mimeType)] ?? null;
  77.         }
  78.         return $extensions ?? self::MAP[$mimeType] ?? self::MAP[$lcMimeType ?? strtolower($mimeType)] ?? [];
  79.     }
  80.     /**
  81.      * {@inheritdoc}
  82.      */
  83.     public function getMimeTypes(string $ext): array
  84.     {
  85.         if ($this->mimeTypes) {
  86.             $mimeTypes $this->mimeTypes[$ext] ?? $this->mimeTypes[$lcExt strtolower($ext)] ?? null;
  87.         }
  88.         return $mimeTypes ?? self::REVERSE_MAP[$ext] ?? self::REVERSE_MAP[$lcExt ?? strtolower($ext)] ?? [];
  89.     }
  90.     /**
  91.      * {@inheritdoc}
  92.      */
  93.     public function isGuesserSupported(): bool
  94.     {
  95.         foreach ($this->guessers as $guesser) {
  96.             if ($guesser->isGuesserSupported()) {
  97.                 return true;
  98.             }
  99.         }
  100.         return false;
  101.     }
  102.     /**
  103.      * {@inheritdoc}
  104.      *
  105.      * The file is passed to each registered MIME type guesser in reverse order
  106.      * of their registration (last registered is queried first). Once a guesser
  107.      * returns a value that is not null, this method terminates and returns the
  108.      * value.
  109.      */
  110.     public function guessMimeType(string $path): ?string
  111.     {
  112.         foreach ($this->guessers as $guesser) {
  113.             if (!$guesser->isGuesserSupported()) {
  114.                 continue;
  115.             }
  116.             if (null !== $mimeType $guesser->guessMimeType($path)) {
  117.                 return $mimeType;
  118.             }
  119.         }
  120.         if (!$this->isGuesserSupported()) {
  121.             throw new LogicException('Unable to guess the MIME type as no guessers are available (have you enabled the php_fileinfo extension?).');
  122.         }
  123.         return null;
  124.     }
  125.     /**
  126.      * A map of MIME types and their default extensions.
  127.      *
  128.      * Updated from upstream on 2021-09-03
  129.      *
  130.      * @see Resources/bin/update_mime_types.php
  131.      */
  132.     private const MAP = [
  133.         'application/acrobat' => ['pdf'],
  134.         'application/andrew-inset' => ['ez'],
  135.         'application/annodex' => ['anx'],
  136.         'application/applixware' => ['aw'],
  137.         'application/atom+xml' => ['atom'],
  138.         'application/atomcat+xml' => ['atomcat'],
  139.         'application/atomdeleted+xml' => ['atomdeleted'],
  140.         'application/atomsvc+xml' => ['atomsvc'],
  141.         'application/atsc-dwd+xml' => ['dwd'],
  142.         'application/atsc-held+xml' => ['held'],
  143.         'application/atsc-rsat+xml' => ['rsat'],
  144.         'application/bdoc' => ['bdoc'],
  145.         'application/bzip2' => ['bz2''bz'],
  146.         'application/calendar+xml' => ['xcs'],
  147.         'application/ccxml+xml' => ['ccxml'],
  148.         'application/cdfx+xml' => ['cdfx'],
  149.         'application/cdmi-capability' => ['cdmia'],
  150.         'application/cdmi-container' => ['cdmic'],
  151.         'application/cdmi-domain' => ['cdmid'],
  152.         'application/cdmi-object' => ['cdmio'],
  153.         'application/cdmi-queue' => ['cdmiq'],
  154.         'application/cdr' => ['cdr'],
  155.         'application/coreldraw' => ['cdr'],
  156.         'application/csv' => ['csv'],
  157.         'application/cu-seeme' => ['cu'],
  158.         'application/dash+xml' => ['mpd'],
  159.         'application/davmount+xml' => ['davmount'],
  160.         'application/dbase' => ['dbf'],
  161.         'application/dbf' => ['dbf'],
  162.         'application/dicom' => ['dcm'],
  163.         'application/docbook+xml' => ['dbk''docbook'],
  164.         'application/dssc+der' => ['dssc'],
  165.         'application/dssc+xml' => ['xdssc'],
  166.         'application/ecmascript' => ['ecma''es'],
  167.         'application/emf' => ['emf'],
  168.         'application/emma+xml' => ['emma'],
  169.         'application/emotionml+xml' => ['emotionml'],
  170.         'application/epub+zip' => ['epub'],
  171.         'application/exi' => ['exi'],
  172.         'application/fdt+xml' => ['fdt'],
  173.         'application/font-tdpfr' => ['pfr'],
  174.         'application/font-woff' => ['woff'],
  175.         'application/futuresplash' => ['swf''spl'],
  176.         'application/geo+json' => ['geojson''geo.json'],
  177.         'application/gml+xml' => ['gml'],
  178.         'application/gnunet-directory' => ['gnd'],
  179.         'application/gpx' => ['gpx'],
  180.         'application/gpx+xml' => ['gpx'],
  181.         'application/gxf' => ['gxf'],
  182.         'application/gzip' => ['gz'],
  183.         'application/hjson' => ['hjson'],
  184.         'application/hyperstudio' => ['stk'],
  185.         'application/ico' => ['ico'],
  186.         'application/ics' => ['vcs''ics'],
  187.         'application/illustrator' => ['ai'],
  188.         'application/inkml+xml' => ['ink''inkml'],
  189.         'application/ipfix' => ['ipfix'],
  190.         'application/its+xml' => ['its'],
  191.         'application/java' => ['class'],
  192.         'application/java-archive' => ['jar''war''ear'],
  193.         'application/java-byte-code' => ['class'],
  194.         'application/java-serialized-object' => ['ser'],
  195.         'application/java-vm' => ['class'],
  196.         'application/javascript' => ['js''mjs''jsm'],
  197.         'application/jrd+json' => ['jrd'],
  198.         'application/json' => ['json''map'],
  199.         'application/json-patch+json' => ['json-patch'],
  200.         'application/json5' => ['json5'],
  201.         'application/jsonml+json' => ['jsonml'],
  202.         'application/ld+json' => ['jsonld'],
  203.         'application/lgr+xml' => ['lgr'],
  204.         'application/lost+xml' => ['lostxml'],
  205.         'application/lotus123' => ['123''wk1''wk3''wk4''wks'],
  206.         'application/m3u' => ['m3u''m3u8''vlc'],
  207.         'application/mac-binhex40' => ['hqx'],
  208.         'application/mac-compactpro' => ['cpt'],
  209.         'application/mads+xml' => ['mads'],
  210.         'application/manifest+json' => ['webmanifest'],
  211.         'application/marc' => ['mrc'],
  212.         'application/marcxml+xml' => ['mrcx'],
  213.         'application/mathematica' => ['ma''nb''mb'],
  214.         'application/mathml+xml' => ['mathml''mml'],
  215.         'application/mbox' => ['mbox'],
  216.         'application/mdb' => ['mdb'],
  217.         'application/mediaservercontrol+xml' => ['mscml'],
  218.         'application/metalink+xml' => ['metalink'],
  219.         'application/metalink4+xml' => ['meta4'],
  220.         'application/mets+xml' => ['mets'],
  221.         'application/mmt-aei+xml' => ['maei'],
  222.         'application/mmt-usd+xml' => ['musd'],
  223.         'application/mods+xml' => ['mods'],
  224.         'application/mp21' => ['m21''mp21'],
  225.         'application/mp4' => ['mp4s''m4p'],
  226.         'application/mrb-consumer+xml' => ['xdf'],
  227.         'application/mrb-publish+xml' => ['xdf'],
  228.         'application/ms-tnef' => ['tnef''tnf'],
  229.         'application/msaccess' => ['mdb'],
  230.         'application/msexcel' => ['xls''xlc''xll''xlm''xlw''xla''xlt''xld'],
  231.         'application/mspowerpoint' => ['ppz''ppt''pps''pot'],
  232.         'application/msword' => ['doc''dot'],
  233.         'application/msword-template' => ['dot'],
  234.         'application/mxf' => ['mxf'],
  235.         'application/n-quads' => ['nq'],
  236.         'application/n-triples' => ['nt'],
  237.         'application/nappdf' => ['pdf'],
  238.         'application/node' => ['cjs'],
  239.         'application/octet-stream' => ['bin''dms''lrf''mar''so''dist''distz''pkg''bpk''dump''elc''deploy''exe''dll''deb''dmg''iso''img''msi''msp''msm''buffer'],
  240.         'application/oda' => ['oda'],
  241.         'application/oebps-package+xml' => ['opf'],
  242.         'application/ogg' => ['ogx'],
  243.         'application/omdoc+xml' => ['omdoc'],
  244.         'application/onenote' => ['onetoc''onetoc2''onetmp''onepkg'],
  245.         'application/ovf' => ['ova'],
  246.         'application/owl+xml' => ['owx'],
  247.         'application/oxps' => ['oxps'],
  248.         'application/p2p-overlay+xml' => ['relo'],
  249.         'application/patch-ops-error+xml' => ['xer'],
  250.         'application/pcap' => ['pcap''cap''dmp'],
  251.         'application/pdf' => ['pdf'],
  252.         'application/pgp' => ['pgp''gpg''asc'],
  253.         'application/pgp-encrypted' => ['pgp''gpg''asc'],
  254.         'application/pgp-keys' => ['skr''pkr''asc''pgp''gpg''key'],
  255.         'application/pgp-signature' => ['asc''sig''pgp''gpg'],
  256.         'application/photoshop' => ['psd'],
  257.         'application/pics-rules' => ['prf'],
  258.         'application/pkcs10' => ['p10'],
  259.         'application/pkcs12' => ['p12''pfx'],
  260.         'application/pkcs7-mime' => ['p7m''p7c'],
  261.         'application/pkcs7-signature' => ['p7s'],
  262.         'application/pkcs8' => ['p8'],
  263.         'application/pkcs8-encrypted' => ['p8e'],
  264.         'application/pkix-attr-cert' => ['ac'],
  265.         'application/pkix-cert' => ['cer'],
  266.         'application/pkix-crl' => ['crl'],
  267.         'application/pkix-pkipath' => ['pkipath'],
  268.         'application/pkixcmp' => ['pki'],
  269.         'application/pls' => ['pls'],
  270.         'application/pls+xml' => ['pls'],
  271.         'application/postscript' => ['ai''eps''ps'],
  272.         'application/powerpoint' => ['ppz''ppt''pps''pot'],
  273.         'application/provenance+xml' => ['provx'],
  274.         'application/prs.cww' => ['cww'],
  275.         'application/pskc+xml' => ['pskcxml'],
  276.         'application/ram' => ['ram'],
  277.         'application/raml+yaml' => ['raml'],
  278.         'application/rdf+xml' => ['rdf''owl''rdfs'],
  279.         'application/reginfo+xml' => ['rif'],
  280.         'application/relax-ng-compact-syntax' => ['rnc'],
  281.         'application/resource-lists+xml' => ['rl'],
  282.         'application/resource-lists-diff+xml' => ['rld'],
  283.         'application/rls-services+xml' => ['rs'],
  284.         'application/route-apd+xml' => ['rapd'],
  285.         'application/route-s-tsid+xml' => ['sls'],
  286.         'application/route-usd+xml' => ['rusd'],
  287.         'application/rpki-ghostbusters' => ['gbr'],
  288.         'application/rpki-manifest' => ['mft'],
  289.         'application/rpki-roa' => ['roa'],
  290.         'application/rsd+xml' => ['rsd'],
  291.         'application/rss+xml' => ['rss'],
  292.         'application/rtf' => ['rtf'],
  293.         'application/sbml+xml' => ['sbml'],
  294.         'application/schema+json' => ['json'],
  295.         'application/scvp-cv-request' => ['scq'],
  296.         'application/scvp-cv-response' => ['scs'],
  297.         'application/scvp-vp-request' => ['spq'],
  298.         'application/scvp-vp-response' => ['spp'],
  299.         'application/sdp' => ['sdp'],
  300.         'application/senml+xml' => ['senmlx'],
  301.         'application/sensml+xml' => ['sensmlx'],
  302.         'application/set-payment-initiation' => ['setpay'],
  303.         'application/set-registration-initiation' => ['setreg'],
  304.         'application/shf+xml' => ['shf'],
  305.         'application/sieve' => ['siv''sieve'],
  306.         'application/smil' => ['smil''smi''sml''kino'],
  307.         'application/smil+xml' => ['smi''smil''sml''kino'],
  308.         'application/sparql-query' => ['rq'],
  309.         'application/sparql-results+xml' => ['srx'],
  310.         'application/sql' => ['sql'],
  311.         'application/srgs' => ['gram'],
  312.         'application/srgs+xml' => ['grxml'],
  313.         'application/sru+xml' => ['sru'],
  314.         'application/ssdl+xml' => ['ssdl'],
  315.         'application/ssml+xml' => ['ssml'],
  316.         'application/stuffit' => ['sit''hqx'],
  317.         'application/swid+xml' => ['swidtag'],
  318.         'application/tei+xml' => ['tei''teicorpus'],
  319.         'application/tga' => ['tga''icb''tpic''vda''vst'],
  320.         'application/thraud+xml' => ['tfi'],
  321.         'application/timestamped-data' => ['tsd'],
  322.         'application/toml' => ['toml'],
  323.         'application/trig' => ['trig'],
  324.         'application/ttml+xml' => ['ttml'],
  325.         'application/ubjson' => ['ubj'],
  326.         'application/urc-ressheet+xml' => ['rsheet'],
  327.         'application/urc-targetdesc+xml' => ['td'],
  328.         'application/vnd.1000minds.decision-model+xml' => ['1km'],
  329.         'application/vnd.3gpp.pic-bw-large' => ['plb'],
  330.         'application/vnd.3gpp.pic-bw-small' => ['psb'],
  331.         'application/vnd.3gpp.pic-bw-var' => ['pvb'],
  332.         'application/vnd.3gpp2.tcap' => ['tcap'],
  333.         'application/vnd.3m.post-it-notes' => ['pwn'],
  334.         'application/vnd.accpac.simply.aso' => ['aso'],
  335.         'application/vnd.accpac.simply.imp' => ['imp'],
  336.         'application/vnd.acucobol' => ['acu'],
  337.         'application/vnd.acucorp' => ['atc''acutc'],
  338.         'application/vnd.adobe.air-application-installer-package+zip' => ['air'],
  339.         'application/vnd.adobe.flash.movie' => ['swf''spl'],
  340.         'application/vnd.adobe.formscentral.fcdt' => ['fcdt'],
  341.         'application/vnd.adobe.fxp' => ['fxp''fxpl'],
  342.         'application/vnd.adobe.illustrator' => ['ai'],
  343.         'application/vnd.adobe.xdp+xml' => ['xdp'],
  344.         'application/vnd.adobe.xfdf' => ['xfdf'],
  345.         'application/vnd.ahead.space' => ['ahead'],
  346.         'application/vnd.airzip.filesecure.azf' => ['azf'],
  347.         'application/vnd.airzip.filesecure.azs' => ['azs'],
  348.         'application/vnd.amazon.ebook' => ['azw'],
  349.         'application/vnd.amazon.mobi8-ebook' => ['azw3''kfx'],
  350.         'application/vnd.americandynamics.acc' => ['acc'],
  351.         'application/vnd.amiga.ami' => ['ami'],
  352.         'application/vnd.android.package-archive' => ['apk'],
  353.         'application/vnd.anser-web-certificate-issue-initiation' => ['cii'],
  354.         'application/vnd.anser-web-funds-transfer-initiation' => ['fti'],
  355.         'application/vnd.antix.game-component' => ['atx'],
  356.         'application/vnd.appimage' => ['appimage'],
  357.         'application/vnd.apple.installer+xml' => ['mpkg'],
  358.         'application/vnd.apple.keynote' => ['key''keynote'],
  359.         'application/vnd.apple.mpegurl' => ['m3u8''m3u'],
  360.         'application/vnd.apple.numbers' => ['numbers'],
  361.         'application/vnd.apple.pages' => ['pages'],
  362.         'application/vnd.apple.pkpass' => ['pkpass'],
  363.         'application/vnd.aristanetworks.swi' => ['swi'],
  364.         'application/vnd.astraea-software.iota' => ['iota'],
  365.         'application/vnd.audiograph' => ['aep'],
  366.         'application/vnd.balsamiq.bmml+xml' => ['bmml'],
  367.         'application/vnd.blueice.multipass' => ['mpm'],
  368.         'application/vnd.bmi' => ['bmi'],
  369.         'application/vnd.businessobjects' => ['rep'],
  370.         'application/vnd.chemdraw+xml' => ['cdxml'],
  371.         'application/vnd.chess-pgn' => ['pgn'],
  372.         'application/vnd.chipnuts.karaoke-mmd' => ['mmd'],
  373.         'application/vnd.cinderella' => ['cdy'],
  374.         'application/vnd.citationstyles.style+xml' => ['csl'],
  375.         'application/vnd.claymore' => ['cla'],
  376.         'application/vnd.cloanto.rp9' => ['rp9'],
  377.         'application/vnd.clonk.c4group' => ['c4g''c4d''c4f''c4p''c4u'],
  378.         'application/vnd.cluetrust.cartomobile-config' => ['c11amc'],
  379.         'application/vnd.cluetrust.cartomobile-config-pkg' => ['c11amz'],
  380.         'application/vnd.coffeescript' => ['coffee'],
  381.         'application/vnd.comicbook+zip' => ['cbz'],
  382.         'application/vnd.comicbook-rar' => ['cbr'],
  383.         'application/vnd.commonspace' => ['csp'],
  384.         'application/vnd.contact.cmsg' => ['cdbcmsg'],
  385.         'application/vnd.corel-draw' => ['cdr'],
  386.         'application/vnd.cosmocaller' => ['cmc'],
  387.         'application/vnd.crick.clicker' => ['clkx'],
  388.         'application/vnd.crick.clicker.keyboard' => ['clkk'],
  389.         'application/vnd.crick.clicker.palette' => ['clkp'],
  390.         'application/vnd.crick.clicker.template' => ['clkt'],
  391.         'application/vnd.crick.clicker.wordbank' => ['clkw'],
  392.         'application/vnd.criticaltools.wbs+xml' => ['wbs'],
  393.         'application/vnd.ctc-posml' => ['pml'],
  394.         'application/vnd.cups-ppd' => ['ppd'],
  395.         'application/vnd.curl.car' => ['car'],
  396.         'application/vnd.curl.pcurl' => ['pcurl'],
  397.         'application/vnd.dart' => ['dart'],
  398.         'application/vnd.data-vision.rdz' => ['rdz'],
  399.         'application/vnd.dbf' => ['dbf'],
  400.         'application/vnd.debian.binary-package' => ['deb''udeb'],
  401.         'application/vnd.dece.data' => ['uvf''uvvf''uvd''uvvd'],
  402.         'application/vnd.dece.ttml+xml' => ['uvt''uvvt'],
  403.         'application/vnd.dece.unspecified' => ['uvx''uvvx'],
  404.         'application/vnd.dece.zip' => ['uvz''uvvz'],
  405.         'application/vnd.denovo.fcselayout-link' => ['fe_launch'],
  406.         'application/vnd.dna' => ['dna'],
  407.         'application/vnd.dolby.mlp' => ['mlp'],
  408.         'application/vnd.dpgraph' => ['dpg'],
  409.         'application/vnd.dreamfactory' => ['dfac'],
  410.         'application/vnd.ds-keypoint' => ['kpxx'],
  411.         'application/vnd.dvb.ait' => ['ait'],
  412.         'application/vnd.dvb.service' => ['svc'],
  413.         'application/vnd.dynageo' => ['geo'],
  414.         'application/vnd.ecowin.chart' => ['mag'],
  415.         'application/vnd.emusic-emusic_package' => ['emp'],
  416.         'application/vnd.enliven' => ['nml'],
  417.         'application/vnd.epson.esf' => ['esf'],
  418.         'application/vnd.epson.msf' => ['msf'],
  419.         'application/vnd.epson.quickanime' => ['qam'],
  420.         'application/vnd.epson.salt' => ['slt'],
  421.         'application/vnd.epson.ssf' => ['ssf'],
  422.         'application/vnd.eszigno3+xml' => ['es3''et3'],
  423.         'application/vnd.etsi.asic-e+zip' => ['asice'],
  424.         'application/vnd.ezpix-album' => ['ez2'],
  425.         'application/vnd.ezpix-package' => ['ez3'],
  426.         'application/vnd.fdf' => ['fdf'],
  427.         'application/vnd.fdsn.mseed' => ['mseed'],
  428.         'application/vnd.fdsn.seed' => ['seed''dataless'],
  429.         'application/vnd.flatpak' => ['flatpak''xdgapp'],
  430.         'application/vnd.flatpak.ref' => ['flatpakref'],
  431.         'application/vnd.flatpak.repo' => ['flatpakrepo'],
  432.         'application/vnd.flographit' => ['gph'],
  433.         'application/vnd.fluxtime.clip' => ['ftc'],
  434.         'application/vnd.framemaker' => ['fm''frame''maker''book'],
  435.         'application/vnd.frogans.fnc' => ['fnc'],
  436.         'application/vnd.frogans.ltf' => ['ltf'],
  437.         'application/vnd.fsc.weblaunch' => ['fsc'],
  438.         'application/vnd.fujitsu.oasys' => ['oas'],
  439.         'application/vnd.fujitsu.oasys2' => ['oa2'],
  440.         'application/vnd.fujitsu.oasys3' => ['oa3'],
  441.         'application/vnd.fujitsu.oasysgp' => ['fg5'],
  442.         'application/vnd.fujitsu.oasysprs' => ['bh2'],
  443.         'application/vnd.fujixerox.ddd' => ['ddd'],
  444.         'application/vnd.fujixerox.docuworks' => ['xdw'],
  445.         'application/vnd.fujixerox.docuworks.binder' => ['xbd'],
  446.         'application/vnd.fuzzysheet' => ['fzs'],
  447.         'application/vnd.genomatix.tuxedo' => ['txd'],
  448.         'application/vnd.geo+json' => ['geojson''geo.json'],
  449.         'application/vnd.geogebra.file' => ['ggb'],
  450.         'application/vnd.geogebra.tool' => ['ggt'],
  451.         'application/vnd.geometry-explorer' => ['gex''gre'],
  452.         'application/vnd.geonext' => ['gxt'],
  453.         'application/vnd.geoplan' => ['g2w'],
  454.         'application/vnd.geospace' => ['g3w'],
  455.         'application/vnd.gmx' => ['gmx'],
  456.         'application/vnd.google-apps.document' => ['gdoc'],
  457.         'application/vnd.google-apps.presentation' => ['gslides'],
  458.         'application/vnd.google-apps.spreadsheet' => ['gsheet'],
  459.         'application/vnd.google-earth.kml+xml' => ['kml'],
  460.         'application/vnd.google-earth.kmz' => ['kmz'],
  461.         'application/vnd.grafeq' => ['gqf''gqs'],
  462.         'application/vnd.groove-account' => ['gac'],
  463.         'application/vnd.groove-help' => ['ghf'],
  464.         'application/vnd.groove-identity-message' => ['gim'],
  465.         'application/vnd.groove-injector' => ['grv'],
  466.         'application/vnd.groove-tool-message' => ['gtm'],
  467.         'application/vnd.groove-tool-template' => ['tpl'],
  468.         'application/vnd.groove-vcard' => ['vcg'],
  469.         'application/vnd.haansoft-hwp' => ['hwp'],
  470.         'application/vnd.haansoft-hwt' => ['hwt'],
  471.         'application/vnd.hal+xml' => ['hal'],
  472.         'application/vnd.handheld-entertainment+xml' => ['zmm'],
  473.         'application/vnd.hbci' => ['hbci'],
  474.         'application/vnd.hhe.lesson-player' => ['les'],
  475.         'application/vnd.hp-hpgl' => ['hpgl'],
  476.         'application/vnd.hp-hpid' => ['hpid'],
  477.         'application/vnd.hp-hps' => ['hps'],
  478.         'application/vnd.hp-jlyt' => ['jlt'],
  479.         'application/vnd.hp-pcl' => ['pcl'],
  480.         'application/vnd.hp-pclxl' => ['pclxl'],
  481.         'application/vnd.hydrostatix.sof-data' => ['sfd-hdstx'],
  482.         'application/vnd.ibm.minipay' => ['mpy'],
  483.         'application/vnd.ibm.modcap' => ['afp''listafp''list3820'],
  484.         'application/vnd.ibm.rights-management' => ['irm'],
  485.         'application/vnd.ibm.secure-container' => ['sc'],
  486.         'application/vnd.iccprofile' => ['icc''icm'],
  487.         'application/vnd.igloader' => ['igl'],
  488.         'application/vnd.immervision-ivp' => ['ivp'],
  489.         'application/vnd.immervision-ivu' => ['ivu'],
  490.         'application/vnd.insors.igm' => ['igm'],
  491.         'application/vnd.intercon.formnet' => ['xpw''xpx'],
  492.         'application/vnd.intergeo' => ['i2g'],
  493.         'application/vnd.intu.qbo' => ['qbo'],
  494.         'application/vnd.intu.qfx' => ['qfx'],
  495.         'application/vnd.ipunplugged.rcprofile' => ['rcprofile'],
  496.         'application/vnd.irepository.package+xml' => ['irp'],
  497.         'application/vnd.is-xpr' => ['xpr'],
  498.         'application/vnd.isac.fcs' => ['fcs'],
  499.         'application/vnd.jam' => ['jam'],
  500.         'application/vnd.jcp.javame.midlet-rms' => ['rms'],
  501.         'application/vnd.jisp' => ['jisp'],
  502.         'application/vnd.joost.joda-archive' => ['joda'],
  503.         'application/vnd.kahootz' => ['ktz''ktr'],
  504.         'application/vnd.kde.karbon' => ['karbon'],
  505.         'application/vnd.kde.kchart' => ['chrt'],
  506.         'application/vnd.kde.kformula' => ['kfo'],
  507.         'application/vnd.kde.kivio' => ['flw'],
  508.         'application/vnd.kde.kontour' => ['kon'],
  509.         'application/vnd.kde.kpresenter' => ['kpr''kpt'],
  510.         'application/vnd.kde.kspread' => ['ksp'],
  511.         'application/vnd.kde.kword' => ['kwd''kwt'],
  512.         'application/vnd.kenameaapp' => ['htke'],
  513.         'application/vnd.kidspiration' => ['kia'],
  514.         'application/vnd.kinar' => ['kne''knp'],
  515.         'application/vnd.koan' => ['skp''skd''skt''skm'],
  516.         'application/vnd.kodak-descriptor' => ['sse'],
  517.         'application/vnd.las.las+xml' => ['lasxml'],
  518.         'application/vnd.llamagraphics.life-balance.desktop' => ['lbd'],
  519.         'application/vnd.llamagraphics.life-balance.exchange+xml' => ['lbe'],
  520.         'application/vnd.lotus-1-2-3' => ['123''wk1''wk3''wk4''wks'],
  521.         'application/vnd.lotus-approach' => ['apr'],
  522.         'application/vnd.lotus-freelance' => ['pre'],
  523.         'application/vnd.lotus-notes' => ['nsf'],
  524.         'application/vnd.lotus-organizer' => ['org'],
  525.         'application/vnd.lotus-screencam' => ['scm'],
  526.         'application/vnd.lotus-wordpro' => ['lwp'],
  527.         'application/vnd.macports.portpkg' => ['portpkg'],
  528.         'application/vnd.mapbox-vector-tile' => ['mvt'],
  529.         'application/vnd.mcd' => ['mcd'],
  530.         'application/vnd.medcalcdata' => ['mc1'],
  531.         'application/vnd.mediastation.cdkey' => ['cdkey'],
  532.         'application/vnd.mfer' => ['mwf'],
  533.         'application/vnd.mfmp' => ['mfm'],
  534.         'application/vnd.micrografx.flo' => ['flo'],
  535.         'application/vnd.micrografx.igx' => ['igx'],
  536.         'application/vnd.mif' => ['mif'],
  537.         'application/vnd.mobius.daf' => ['daf'],
  538.         'application/vnd.mobius.dis' => ['dis'],
  539.         'application/vnd.mobius.mbk' => ['mbk'],
  540.         'application/vnd.mobius.mqy' => ['mqy'],
  541.         'application/vnd.mobius.msl' => ['msl'],
  542.         'application/vnd.mobius.plc' => ['plc'],
  543.         'application/vnd.mobius.txf' => ['txf'],
  544.         'application/vnd.mophun.application' => ['mpn'],
  545.         'application/vnd.mophun.certificate' => ['mpc'],
  546.         'application/vnd.mozilla.xul+xml' => ['xul'],
  547.         'application/vnd.ms-access' => ['mdb'],
  548.         'application/vnd.ms-artgalry' => ['cil'],
  549.         'application/vnd.ms-asf' => ['asf'],
  550.         'application/vnd.ms-cab-compressed' => ['cab'],
  551.         'application/vnd.ms-excel' => ['xls''xlm''xla''xlc''xlt''xlw''xll''xld'],
  552.         'application/vnd.ms-excel.addin.macroenabled.12' => ['xlam'],
  553.         'application/vnd.ms-excel.sheet.binary.macroenabled.12' => ['xlsb'],
  554.         'application/vnd.ms-excel.sheet.macroenabled.12' => ['xlsm'],
  555.         'application/vnd.ms-excel.template.macroenabled.12' => ['xltm'],
  556.         'application/vnd.ms-fontobject' => ['eot'],
  557.         'application/vnd.ms-htmlhelp' => ['chm'],
  558.         'application/vnd.ms-ims' => ['ims'],
  559.         'application/vnd.ms-lrm' => ['lrm'],
  560.         'application/vnd.ms-officetheme' => ['thmx'],
  561.         'application/vnd.ms-outlook' => ['msg'],
  562.         'application/vnd.ms-pki.seccat' => ['cat'],
  563.         'application/vnd.ms-pki.stl' => ['stl'],
  564.         'application/vnd.ms-powerpoint' => ['ppt''pps''pot''ppz'],
  565.         'application/vnd.ms-powerpoint.addin.macroenabled.12' => ['ppam'],
  566.         'application/vnd.ms-powerpoint.presentation.macroenabled.12' => ['pptm'],
  567.         'application/vnd.ms-powerpoint.slide.macroenabled.12' => ['sldm'],
  568.         'application/vnd.ms-powerpoint.slideshow.macroenabled.12' => ['ppsm'],
  569.         'application/vnd.ms-powerpoint.template.macroenabled.12' => ['potm'],
  570.         'application/vnd.ms-project' => ['mpp''mpt'],
  571.         'application/vnd.ms-publisher' => ['pub'],
  572.         'application/vnd.ms-tnef' => ['tnef''tnf'],
  573.         'application/vnd.ms-visio.drawing.macroenabled.main+xml' => ['vsdm'],
  574.         'application/vnd.ms-visio.drawing.main+xml' => ['vsdx'],
  575.         'application/vnd.ms-visio.stencil.macroenabled.main+xml' => ['vssm'],
  576.         'application/vnd.ms-visio.stencil.main+xml' => ['vssx'],
  577.         'application/vnd.ms-visio.template.macroenabled.main+xml' => ['vstm'],
  578.         'application/vnd.ms-visio.template.main+xml' => ['vstx'],
  579.         'application/vnd.ms-word' => ['doc'],
  580.         'application/vnd.ms-word.document.macroenabled.12' => ['docm'],
  581.         'application/vnd.ms-word.template.macroenabled.12' => ['dotm'],
  582.         'application/vnd.ms-works' => ['wps''wks''wcm''wdb''xlr'],
  583.         'application/vnd.ms-wpl' => ['wpl'],
  584.         'application/vnd.ms-xpsdocument' => ['xps'],
  585.         'application/vnd.msaccess' => ['mdb'],
  586.         'application/vnd.mseq' => ['mseq'],
  587.         'application/vnd.musician' => ['mus'],
  588.         'application/vnd.muvee.style' => ['msty'],
  589.         'application/vnd.mynfc' => ['taglet'],
  590.         'application/vnd.neurolanguage.nlu' => ['nlu'],
  591.         'application/vnd.nintendo.snes.rom' => ['sfc''smc'],
  592.         'application/vnd.nitf' => ['ntf''nitf'],
  593.         'application/vnd.noblenet-directory' => ['nnd'],
  594.         'application/vnd.noblenet-sealer' => ['nns'],
  595.         'application/vnd.noblenet-web' => ['nnw'],
  596.         'application/vnd.nokia.n-gage.ac+xml' => ['ac'],
  597.         'application/vnd.nokia.n-gage.data' => ['ngdat'],
  598.         'application/vnd.nokia.n-gage.symbian.install' => ['n-gage'],
  599.         'application/vnd.nokia.radio-preset' => ['rpst'],
  600.         'application/vnd.nokia.radio-presets' => ['rpss'],
  601.         'application/vnd.novadigm.edm' => ['edm'],
  602.         'application/vnd.novadigm.edx' => ['edx'],
  603.         'application/vnd.novadigm.ext' => ['ext'],
  604.         'application/vnd.oasis.docbook+xml' => ['dbk''docbook'],
  605.         'application/vnd.oasis.opendocument.chart' => ['odc'],
  606.         'application/vnd.oasis.opendocument.chart-template' => ['otc'],
  607.         'application/vnd.oasis.opendocument.database' => ['odb'],
  608.         'application/vnd.oasis.opendocument.formula' => ['odf'],
  609.         'application/vnd.oasis.opendocument.formula-template' => ['odft''otf'],
  610.         'application/vnd.oasis.opendocument.graphics' => ['odg'],
  611.         'application/vnd.oasis.opendocument.graphics-flat-xml' => ['fodg'],
  612.         'application/vnd.oasis.opendocument.graphics-template' => ['otg'],
  613.         'application/vnd.oasis.opendocument.image' => ['odi'],
  614.         'application/vnd.oasis.opendocument.image-template' => ['oti'],
  615.         'application/vnd.oasis.opendocument.presentation' => ['odp'],
  616.         'application/vnd.oasis.opendocument.presentation-flat-xml' => ['fodp'],
  617.         'application/vnd.oasis.opendocument.presentation-template' => ['otp'],
  618.         'application/vnd.oasis.opendocument.spreadsheet' => ['ods'],
  619.         'application/vnd.oasis.opendocument.spreadsheet-flat-xml' => ['fods'],
  620.         'application/vnd.oasis.opendocument.spreadsheet-template' => ['ots'],
  621.         'application/vnd.oasis.opendocument.text' => ['odt'],
  622.         'application/vnd.oasis.opendocument.text-flat-xml' => ['fodt'],
  623.         'application/vnd.oasis.opendocument.text-master' => ['odm'],
  624.         'application/vnd.oasis.opendocument.text-template' => ['ott'],
  625.         'application/vnd.oasis.opendocument.text-web' => ['oth'],
  626.         'application/vnd.olpc-sugar' => ['xo'],
  627.         'application/vnd.oma.dd2+xml' => ['dd2'],
  628.         'application/vnd.openblox.game+xml' => ['obgx'],
  629.         'application/vnd.openofficeorg.extension' => ['oxt'],
  630.         'application/vnd.openstreetmap.data+xml' => ['osm'],
  631.         'application/vnd.openxmlformats-officedocument.presentationml.presentation' => ['pptx'],
  632.         'application/vnd.openxmlformats-officedocument.presentationml.slide' => ['sldx'],
  633.         'application/vnd.openxmlformats-officedocument.presentationml.slideshow' => ['ppsx'],
  634.         'application/vnd.openxmlformats-officedocument.presentationml.template' => ['potx'],
  635.         'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet' => ['xlsx'],
  636.         'application/vnd.openxmlformats-officedocument.spreadsheetml.template' => ['xltx'],
  637.         'application/vnd.openxmlformats-officedocument.wordprocessingml.document' => ['docx'],
  638.         'application/vnd.openxmlformats-officedocument.wordprocessingml.template' => ['dotx'],
  639.         'application/vnd.osgeo.mapguide.package' => ['mgp'],
  640.         'application/vnd.osgi.dp' => ['dp'],
  641.         'application/vnd.osgi.subsystem' => ['esa'],
  642.         'application/vnd.palm' => ['pdb''pqa''oprc''prc'],
  643.         'application/vnd.pawaafile' => ['paw'],
  644.         'application/vnd.pg.format' => ['str'],
  645.         'application/vnd.pg.osasli' => ['ei6'],
  646.         'application/vnd.picsel' => ['efif'],
  647.         'application/vnd.pmi.widget' => ['wg'],
  648.         'application/vnd.pocketlearn' => ['plf'],
  649.         'application/vnd.powerbuilder6' => ['pbd'],
  650.         'application/vnd.previewsystems.box' => ['box'],
  651.         'application/vnd.proteus.magazine' => ['mgz'],
  652.         'application/vnd.publishare-delta-tree' => ['qps'],
  653.         'application/vnd.pvi.ptid1' => ['ptid'],
  654.         'application/vnd.quark.quarkxpress' => ['qxd''qxt''qwd''qwt''qxl''qxb'],
  655.         'application/vnd.rar' => ['rar'],
  656.         'application/vnd.realvnc.bed' => ['bed'],
  657.         'application/vnd.recordare.musicxml' => ['mxl'],
  658.         'application/vnd.recordare.musicxml+xml' => ['musicxml'],
  659.         'application/vnd.rig.cryptonote' => ['cryptonote'],
  660.         'application/vnd.rim.cod' => ['cod'],
  661.         'application/vnd.rn-realmedia' => ['rm''rmj''rmm''rms''rmx''rmvb'],
  662.         'application/vnd.rn-realmedia-vbr' => ['rmvb''rm''rmj''rmm''rms''rmx'],
  663.         'application/vnd.route66.link66+xml' => ['link66'],
  664.         'application/vnd.sailingtracker.track' => ['st'],
  665.         'application/vnd.sdp' => ['sdp'],
  666.         'application/vnd.seemail' => ['see'],
  667.         'application/vnd.sema' => ['sema'],
  668.         'application/vnd.semd' => ['semd'],
  669.         'application/vnd.semf' => ['semf'],
  670.         'application/vnd.shana.informed.formdata' => ['ifm'],
  671.         'application/vnd.shana.informed.formtemplate' => ['itp'],
  672.         'application/vnd.shana.informed.interchange' => ['iif'],
  673.         'application/vnd.shana.informed.package' => ['ipk'],
  674.         'application/vnd.simtech-mindmapper' => ['twd''twds'],
  675.         'application/vnd.smaf' => ['mmf''smaf'],
  676.         'application/vnd.smart.teacher' => ['teacher'],
  677.         'application/vnd.snap' => ['snap'],
  678.         'application/vnd.software602.filler.form+xml' => ['fo'],
  679.         'application/vnd.solent.sdkm+xml' => ['sdkm''sdkd'],
  680.         'application/vnd.spotfire.dxp' => ['dxp'],
  681.         'application/vnd.spotfire.sfs' => ['sfs'],
  682.         'application/vnd.sqlite3' => ['sqlite3'],
  683.         'application/vnd.squashfs' => ['sqsh'],
  684.         'application/vnd.stardivision.calc' => ['sdc'],
  685.         'application/vnd.stardivision.chart' => ['sds'],
  686.         'application/vnd.stardivision.draw' => ['sda'],
  687.         'application/vnd.stardivision.impress' => ['sdd''sdp'],
  688.         'application/vnd.stardivision.mail' => ['smd'],
  689.         'application/vnd.stardivision.math' => ['smf'],
  690.         'application/vnd.stardivision.writer' => ['sdw''vor''sgl'],
  691.         'application/vnd.stardivision.writer-global' => ['sgl''sdw''vor'],
  692.         'application/vnd.stepmania.package' => ['smzip'],
  693.         'application/vnd.stepmania.stepchart' => ['sm'],
  694.         'application/vnd.sun.wadl+xml' => ['wadl'],
  695.         'application/vnd.sun.xml.base' => ['odb'],
  696.         'application/vnd.sun.xml.calc' => ['sxc'],
  697.         'application/vnd.sun.xml.calc.template' => ['stc'],
  698.         'application/vnd.sun.xml.draw' => ['sxd'],
  699.         'application/vnd.sun.xml.draw.template' => ['std'],
  700.         'application/vnd.sun.xml.impress' => ['sxi'],
  701.         'application/vnd.sun.xml.impress.template' => ['sti'],
  702.         'application/vnd.sun.xml.math' => ['sxm'],
  703.         'application/vnd.sun.xml.writer' => ['sxw'],
  704.         'application/vnd.sun.xml.writer.global' => ['sxg'],
  705.         'application/vnd.sun.xml.writer.template' => ['stw'],
  706.         'application/vnd.sus-calendar' => ['sus''susp'],
  707.         'application/vnd.svd' => ['svd'],
  708.         'application/vnd.symbian.install' => ['sis''sisx'],
  709.         'application/vnd.syncml+xml' => ['xsm'],
  710.         'application/vnd.syncml.dm+wbxml' => ['bdm'],
  711.         'application/vnd.syncml.dm+xml' => ['xdm'],
  712.         'application/vnd.syncml.dmddf+xml' => ['ddf'],
  713.         'application/vnd.tao.intent-module-archive' => ['tao'],
  714.         'application/vnd.tcpdump.pcap' => ['pcap''cap''dmp'],
  715.         'application/vnd.tmobile-livetv' => ['tmo'],
  716.         'application/vnd.trid.tpt' => ['tpt'],
  717.         'application/vnd.triscape.mxs' => ['mxs'],
  718.         'application/vnd.trueapp' => ['tra'],
  719.         'application/vnd.ufdl' => ['ufd''ufdl'],
  720.         'application/vnd.uiq.theme' => ['utz'],
  721.         'application/vnd.umajin' => ['umj'],
  722.         'application/vnd.unity' => ['unityweb'],
  723.         'application/vnd.uoml+xml' => ['uoml'],
  724.         'application/vnd.vcx' => ['vcx'],
  725.         'application/vnd.visio' => ['vsd''vst''vss''vsw'],
  726.         'application/vnd.visionary' => ['vis'],
  727.         'application/vnd.vsf' => ['vsf'],
  728.         'application/vnd.wap.wbxml' => ['wbxml'],
  729.         'application/vnd.wap.wmlc' => ['wmlc'],
  730.         'application/vnd.wap.wmlscriptc' => ['wmlsc'],
  731.         'application/vnd.webturbo' => ['wtb'],
  732.         'application/vnd.wolfram.player' => ['nbp'],
  733.         'application/vnd.wordperfect' => ['wpd''wp''wp4''wp5''wp6''wpp'],
  734.         'application/vnd.wqd' => ['wqd'],
  735.         'application/vnd.wt.stf' => ['stf'],
  736.         'application/vnd.xara' => ['xar'],
  737.         'application/vnd.xdgapp' => ['flatpak''xdgapp'],
  738.         'application/vnd.xfdl' => ['xfdl'],
  739.         'application/vnd.yamaha.hv-dic' => ['hvd'],
  740.         'application/vnd.yamaha.hv-script' => ['hvs'],
  741.         'application/vnd.yamaha.hv-voice' => ['hvp'],
  742.         'application/vnd.yamaha.openscoreformat' => ['osf'],
  743.         'application/vnd.yamaha.openscoreformat.osfpvg+xml' => ['osfpvg'],
  744.         'application/vnd.yamaha.smaf-audio' => ['saf'],
  745.         'application/vnd.yamaha.smaf-phrase' => ['spf'],
  746.         'application/vnd.yellowriver-custom-menu' => ['cmp'],
  747.         'application/vnd.youtube.yt' => ['yt'],
  748.         'application/vnd.zul' => ['zir''zirz'],
  749.         'application/vnd.zzazz.deck+xml' => ['zaz'],
  750.         'application/voicexml+xml' => ['vxml'],
  751.         'application/wasm' => ['wasm'],
  752.         'application/widget' => ['wgt'],
  753.         'application/winhlp' => ['hlp'],
  754.         'application/wk1' => ['123''wk1''wk3''wk4''wks'],
  755.         'application/wmf' => ['wmf'],
  756.         'application/wordperfect' => ['wp''wp4''wp5''wp6''wpd''wpp'],
  757.         'application/wsdl+xml' => ['wsdl'],
  758.         'application/wspolicy+xml' => ['wspolicy'],
  759.         'application/wwf' => ['wwf'],
  760.         'application/x-123' => ['123''wk1''wk3''wk4''wks'],
  761.         'application/x-7z-compressed' => ['7z''7z.001'],
  762.         'application/x-abiword' => ['abw''abw.CRASHED''abw.gz''zabw'],
  763.         'application/x-ace' => ['ace'],
  764.         'application/x-ace-compressed' => ['ace'],
  765.         'application/x-alz' => ['alz'],
  766.         'application/x-amiga-disk-format' => ['adf'],
  767.         'application/x-amipro' => ['sam'],
  768.         'application/x-annodex' => ['anx'],
  769.         'application/x-aportisdoc' => ['pdb''pdc'],
  770.         'application/x-apple-diskimage' => ['dmg'],
  771.         'application/x-apple-systemprofiler+xml' => ['spx'],
  772.         'application/x-appleworks-document' => ['cwk'],
  773.         'application/x-applix-spreadsheet' => ['as'],
  774.         'application/x-applix-word' => ['aw'],
  775.         'application/x-archive' => ['a''ar'],
  776.         'application/x-arj' => ['arj'],
  777.         'application/x-asp' => ['asp'],
  778.         'application/x-atari-2600-rom' => ['a26'],
  779.         'application/x-atari-7800-rom' => ['a78'],
  780.         'application/x-atari-lynx-rom' => ['lnx'],
  781.         'application/x-authorware-bin' => ['aab''x32''u32''vox'],
  782.         'application/x-authorware-map' => ['aam'],
  783.         'application/x-authorware-seg' => ['aas'],
  784.         'application/x-awk' => ['awk'],
  785.         'application/x-bcpio' => ['bcpio'],
  786.         'application/x-bdoc' => ['bdoc'],
  787.         'application/x-bittorrent' => ['torrent'],
  788.         'application/x-blender' => ['blender''blend''BLEND'],
  789.         'application/x-blorb' => ['blb''blorb'],
  790.         'application/x-bps-patch' => ['bps'],
  791.         'application/x-bsdiff' => ['bsdiff'],
  792.         'application/x-bz2' => ['bz2'],
  793.         'application/x-bzdvi' => ['dvi.bz2'],
  794.         'application/x-bzip' => ['bz''bz2'],
  795.         'application/x-bzip-compressed-tar' => ['tar.bz2''tar.bz''tbz2''tbz''tb2'],
  796.         'application/x-bzip2' => ['bz2''boz''bz'],
  797.         'application/x-bzpdf' => ['pdf.bz2'],
  798.         'application/x-bzpostscript' => ['ps.bz2'],
  799.         'application/x-cb7' => ['cb7'],
  800.         'application/x-cbr' => ['cbr''cba''cbt''cbz''cb7'],
  801.         'application/x-cbt' => ['cbt'],
  802.         'application/x-cbz' => ['cbz'],
  803.         'application/x-ccmx' => ['ccmx'],
  804.         'application/x-cd-image' => ['iso''iso9660'],
  805.         'application/x-cdlink' => ['vcd'],
  806.         'application/x-cdr' => ['cdr'],
  807.         'application/x-cdrdao-toc' => ['toc'],
  808.         'application/x-cfs-compressed' => ['cfs'],
  809.         'application/x-chat' => ['chat'],
  810.         'application/x-chess-pgn' => ['pgn'],
  811.         'application/x-chm' => ['chm'],
  812.         'application/x-chrome-extension' => ['crx'],
  813.         'application/x-cisco-vpn-settings' => ['pcf'],
  814.         'application/x-cocoa' => ['cco'],
  815.         'application/x-compress' => ['Z'],
  816.         'application/x-compressed-iso' => ['cso'],
  817.         'application/x-compressed-tar' => ['tar.gz''tgz'],
  818.         'application/x-conference' => ['nsc'],
  819.         'application/x-coreldraw' => ['cdr'],
  820.         'application/x-cpio' => ['cpio'],
  821.         'application/x-cpio-compressed' => ['cpio.gz'],
  822.         'application/x-csh' => ['csh'],
  823.         'application/x-cue' => ['cue'],
  824.         'application/x-dar' => ['dar'],
  825.         'application/x-dbase' => ['dbf'],
  826.         'application/x-dbf' => ['dbf'],
  827.         'application/x-dc-rom' => ['dc'],
  828.         'application/x-deb' => ['deb''udeb'],
  829.         'application/x-debian-package' => ['deb''udeb'],
  830.         'application/x-designer' => ['ui'],
  831.         'application/x-desktop' => ['desktop''kdelnk'],
  832.         'application/x-dgc-compressed' => ['dgc'],
  833.         'application/x-dia-diagram' => ['dia'],
  834.         'application/x-dia-shape' => ['shape'],
  835.         'application/x-director' => ['dir''dcr''dxr''cst''cct''cxt''w3d''fgd''swa'],
  836.         'application/x-discjuggler-cd-image' => ['cdi'],
  837.         'application/x-docbook+xml' => ['dbk''docbook'],
  838.         'application/x-doom' => ['wad'],
  839.         'application/x-doom-wad' => ['wad'],
  840.         'application/x-dreamcast-rom' => ['iso'],
  841.         'application/x-dtbncx+xml' => ['ncx'],
  842.         'application/x-dtbook+xml' => ['dtb'],
  843.         'application/x-dtbresource+xml' => ['res'],
  844.         'application/x-dvi' => ['dvi'],
  845.         'application/x-e-theme' => ['etheme'],
  846.         'application/x-egon' => ['egon'],
  847.         'application/x-emf' => ['emf'],
  848.         'application/x-envoy' => ['evy'],
  849.         'application/x-eva' => ['eva'],
  850.         'application/x-fd-file' => ['fd''qd'],
  851.         'application/x-fds-disk' => ['fds'],
  852.         'application/x-fictionbook' => ['fb2'],
  853.         'application/x-fictionbook+xml' => ['fb2'],
  854.         'application/x-flash-video' => ['flv'],
  855.         'application/x-fluid' => ['fl'],
  856.         'application/x-font-afm' => ['afm'],
  857.         'application/x-font-bdf' => ['bdf'],
  858.         'application/x-font-ghostscript' => ['gsf'],
  859.         'application/x-font-linux-psf' => ['psf'],
  860.         'application/x-font-otf' => ['otf'],
  861.         'application/x-font-pcf' => ['pcf''pcf.Z''pcf.gz'],
  862.         'application/x-font-snf' => ['snf'],
  863.         'application/x-font-speedo' => ['spd'],
  864.         'application/x-font-truetype' => ['ttf'],
  865.         'application/x-font-ttf' => ['ttf'],
  866.         'application/x-font-ttx' => ['ttx'],
  867.         'application/x-font-type1' => ['pfa''pfb''pfm''afm''gsf'],
  868.         'application/x-font-woff' => ['woff'],
  869.         'application/x-frame' => ['fm'],
  870.         'application/x-freearc' => ['arc'],
  871.         'application/x-futuresplash' => ['spl'],
  872.         'application/x-gameboy-color-rom' => ['gbc''cgb'],
  873.         'application/x-gameboy-rom' => ['gb''sgb'],
  874.         'application/x-gamecube-iso-image' => ['iso'],
  875.         'application/x-gamecube-rom' => ['iso'],
  876.         'application/x-gamegear-rom' => ['gg'],
  877.         'application/x-gba-rom' => ['gba''agb'],
  878.         'application/x-gca-compressed' => ['gca'],
  879.         'application/x-gd-rom-cue' => ['gdi'],
  880.         'application/x-gedcom' => ['ged''gedcom'],
  881.         'application/x-genesis-32x-rom' => ['32x''mdx'],
  882.         'application/x-genesis-rom' => ['gen''smd''sgd'],
  883.         'application/x-gettext' => ['po'],
  884.         'application/x-gettext-translation' => ['gmo''mo'],
  885.         'application/x-glade' => ['glade'],
  886.         'application/x-glulx' => ['ulx'],
  887.         'application/x-gnome-app-info' => ['desktop''kdelnk'],
  888.         'application/x-gnucash' => ['gnucash''gnc''xac'],
  889.         'application/x-gnumeric' => ['gnumeric'],
  890.         'application/x-gnuplot' => ['gp''gplt''gnuplot'],
  891.         'application/x-go-sgf' => ['sgf'],
  892.         'application/x-gpx' => ['gpx'],
  893.         'application/x-gpx+xml' => ['gpx'],
  894.         'application/x-gramps-xml' => ['gramps'],
  895.         'application/x-graphite' => ['gra'],
  896.         'application/x-gtar' => ['gtar''tar''gem'],
  897.         'application/x-gtk-builder' => ['ui'],
  898.         'application/x-gz-font-linux-psf' => ['psf.gz'],
  899.         'application/x-gzdvi' => ['dvi.gz'],
  900.         'application/x-gzip' => ['gz'],
  901.         'application/x-gzpdf' => ['pdf.gz'],
  902.         'application/x-gzpostscript' => ['ps.gz'],
  903.         'application/x-hdf' => ['hdf''hdf4''h4''hdf5''h5'],
  904.         'application/x-hfe-file' => ['hfe'],
  905.         'application/x-hfe-floppy-image' => ['hfe'],
  906.         'application/x-httpd-php' => ['php'],
  907.         'application/x-hwp' => ['hwp'],
  908.         'application/x-hwt' => ['hwt'],
  909.         'application/x-ica' => ['ica'],
  910.         'application/x-install-instructions' => ['install'],
  911.         'application/x-ips-patch' => ['ips'],
  912.         'application/x-ipynb+json' => ['ipynb'],
  913.         'application/x-iso9660-appimage' => ['appimage'],
  914.         'application/x-iso9660-image' => ['iso''iso9660'],
  915.         'application/x-it87' => ['it87'],
  916.         'application/x-iwork-keynote-sffkey' => ['key'],
  917.         'application/x-iwork-numbers-sffnumbers' => ['numbers'],
  918.         'application/x-iwork-pages-sffpages' => ['pages'],
  919.         'application/x-jar' => ['jar'],
  920.         'application/x-java' => ['class'],
  921.         'application/x-java-archive' => ['jar'],
  922.         'application/x-java-archive-diff' => ['jardiff'],
  923.         'application/x-java-class' => ['class'],
  924.         'application/x-java-jce-keystore' => ['jceks'],
  925.         'application/x-java-jnlp-file' => ['jnlp'],
  926.         'application/x-java-keystore' => ['jks''ks'],
  927.         'application/x-java-pack200' => ['pack'],
  928.         'application/x-java-vm' => ['class'],
  929.         'application/x-javascript' => ['js''jsm''mjs'],
  930.         'application/x-jbuilder-project' => ['jpr''jpx'],
  931.         'application/x-karbon' => ['karbon'],
  932.         'application/x-kchart' => ['chrt'],
  933.         'application/x-keepass2' => ['kdbx'],
  934.         'application/x-kexi-connectiondata' => ['kexic'],
  935.         'application/x-kexiproject-shortcut' => ['kexis'],
  936.         'application/x-kexiproject-sqlite' => ['kexi'],
  937.         'application/x-kexiproject-sqlite2' => ['kexi'],
  938.         'application/x-kexiproject-sqlite3' => ['kexi'],
  939.         'application/x-kformula' => ['kfo'],
  940.         'application/x-killustrator' => ['kil'],
  941.         'application/x-kivio' => ['flw'],
  942.         'application/x-kontour' => ['kon'],
  943.         'application/x-kpovmodeler' => ['kpm'],
  944.         'application/x-kpresenter' => ['kpr''kpt'],
  945.         'application/x-krita' => ['kra''krz'],
  946.         'application/x-kspread' => ['ksp'],
  947.         'application/x-kugar' => ['kud'],
  948.         'application/x-kword' => ['kwd''kwt'],
  949.         'application/x-latex' => ['latex'],
  950.         'application/x-lha' => ['lha''lzh'],
  951.         'application/x-lhz' => ['lhz'],
  952.         'application/x-linguist' => ['ts'],
  953.         'application/x-lotus123' => ['123''wk1''wk3''wk4''wks'],
  954.         'application/x-lrzip' => ['lrz'],
  955.         'application/x-lrzip-compressed-tar' => ['tar.lrz''tlrz'],
  956.         'application/x-lua-bytecode' => ['luac'],
  957.         'application/x-lyx' => ['lyx'],
  958.         'application/x-lz4' => ['lz4'],
  959.         'application/x-lz4-compressed-tar' => ['tar.lz4'],
  960.         'application/x-lzh-compressed' => ['lzh''lha'],
  961.         'application/x-lzip' => ['lz'],
  962.         'application/x-lzip-compressed-tar' => ['tar.lz'],
  963.         'application/x-lzma' => ['lzma'],
  964.         'application/x-lzma-compressed-tar' => ['tar.lzma''tlz'],
  965.         'application/x-lzop' => ['lzo'],
  966.         'application/x-lzpdf' => ['pdf.lz'],
  967.         'application/x-m4' => ['m4'],
  968.         'application/x-magicpoint' => ['mgp'],
  969.         'application/x-makeself' => ['run'],
  970.         'application/x-mame-chd' => ['chd'],
  971.         'application/x-markaby' => ['mab'],
  972.         'application/x-mathematica' => ['nb'],
  973.         'application/x-mdb' => ['mdb'],
  974.         'application/x-mie' => ['mie'],
  975.         'application/x-mif' => ['mif'],
  976.         'application/x-mimearchive' => ['mhtml''mht'],
  977.         'application/x-mobi8-ebook' => ['azw3''kfx'],
  978.         'application/x-mobipocket-ebook' => ['prc''mobi'],
  979.         'application/x-ms-application' => ['application'],
  980.         'application/x-ms-asx' => ['asx''wax''wvx''wmx'],
  981.         'application/x-ms-dos-executable' => ['exe'],
  982.         'application/x-ms-shortcut' => ['lnk'],
  983.         'application/x-ms-wim' => ['wim''swm'],
  984.         'application/x-ms-wmd' => ['wmd'],
  985.         'application/x-ms-wmz' => ['wmz'],
  986.         'application/x-ms-xbap' => ['xbap'],
  987.         'application/x-msaccess' => ['mdb'],
  988.         'application/x-msbinder' => ['obd'],
  989.         'application/x-mscardfile' => ['crd'],
  990.         'application/x-msclip' => ['clp'],
  991.         'application/x-msdos-program' => ['exe'],
  992.         'application/x-msdownload' => ['exe''dll''com''bat''msi'],
  993.         'application/x-msexcel' => ['xls''xlc''xll''xlm''xlw''xla''xlt''xld'],
  994.         'application/x-msi' => ['msi'],
  995.         'application/x-msmediaview' => ['mvb''m13''m14'],
  996.         'application/x-msmetafile' => ['wmf''wmz''emf''emz'],
  997.         'application/x-msmoney' => ['mny'],
  998.         'application/x-mspowerpoint' => ['ppz''ppt''pps''pot'],
  999.         'application/x-mspublisher' => ['pub'],
  1000.         'application/x-msschedule' => ['scd'],
  1001.         'application/x-msterminal' => ['trm'],
  1002.         'application/x-mswinurl' => ['url'],
  1003.         'application/x-msword' => ['doc'],
  1004.         'application/x-mswrite' => ['wri'],
  1005.         'application/x-msx-rom' => ['msx'],
  1006.         'application/x-n64-rom' => ['n64''z64''v64'],
  1007.         'application/x-navi-animation' => ['ani'],
  1008.         'application/x-neo-geo-pocket-color-rom' => ['ngc'],
  1009.         'application/x-neo-geo-pocket-rom' => ['ngp'],
  1010.         'application/x-nes-rom' => ['nes''nez''unf''unif'],
  1011.         'application/x-netcdf' => ['nc''cdf'],
  1012.         'application/x-netshow-channel' => ['nsc'],
  1013.         'application/x-nintendo-3ds-executable' => ['3dsx'],
  1014.         'application/x-nintendo-3ds-rom' => ['3ds''cci'],
  1015.         'application/x-nintendo-ds-rom' => ['nds'],
  1016.         'application/x-ns-proxy-autoconfig' => ['pac'],
  1017.         'application/x-nzb' => ['nzb'],
  1018.         'application/x-object' => ['o''mod'],
  1019.         'application/x-ogg' => ['ogx'],
  1020.         'application/x-oleo' => ['oleo'],
  1021.         'application/x-pagemaker' => ['p65''pm''pm6''pmd'],
  1022.         'application/x-pak' => ['pak'],
  1023.         'application/x-palm-database' => ['prc''pdb''pqa''oprc'],
  1024.         'application/x-par2' => ['PAR2''par2'],
  1025.         'application/x-partial-download' => ['wkdownload''crdownload''part'],
  1026.         'application/x-pc-engine-rom' => ['pce'],
  1027.         'application/x-pcap' => ['pcap''cap''dmp'],
  1028.         'application/x-pdf' => ['pdf'],
  1029.         'application/x-perl' => ['pl''pm''PL''al''perl''pod''t'],
  1030.         'application/x-photoshop' => ['psd'],
  1031.         'application/x-php' => ['php''php3''php4''php5''phps'],
  1032.         'application/x-pilot' => ['prc''pdb'],
  1033.         'application/x-pkcs12' => ['p12''pfx'],
  1034.         'application/x-pkcs7-certificates' => ['p7b''spc'],
  1035.         'application/x-pkcs7-certreqresp' => ['p7r'],
  1036.         'application/x-planperfect' => ['pln'],
  1037.         'application/x-pocket-word' => ['psw'],
  1038.         'application/x-pw' => ['pw'],
  1039.         'application/x-pyspread-bz-spreadsheet' => ['pys'],
  1040.         'application/x-pyspread-spreadsheet' => ['pysu'],
  1041.         'application/x-python-bytecode' => ['pyc''pyo'],
  1042.         'application/x-qed-disk' => ['qed'],
  1043.         'application/x-qemu-disk' => ['qcow2''qcow'],
  1044.         'application/x-qpress' => ['qp'],
  1045.         'application/x-qtiplot' => ['qti''qti.gz'],
  1046.         'application/x-quattropro' => ['wb1''wb2''wb3'],
  1047.         'application/x-quicktime-media-link' => ['qtl'],
  1048.         'application/x-quicktimeplayer' => ['qtl'],
  1049.         'application/x-qw' => ['qif'],
  1050.         'application/x-rar' => ['rar'],
  1051.         'application/x-rar-compressed' => ['rar'],
  1052.         'application/x-raw-disk-image' => ['raw-disk-image''img'],
  1053.         'application/x-raw-disk-image-xz-compressed' => ['raw-disk-image.xz''img.xz'],
  1054.         'application/x-raw-floppy-disk-image' => ['fd''qd'],
  1055.         'application/x-redhat-package-manager' => ['rpm'],
  1056.         'application/x-reject' => ['rej'],
  1057.         'application/x-research-info-systems' => ['ris'],
  1058.         'application/x-rnc' => ['rnc'],
  1059.         'application/x-rpm' => ['rpm'],
  1060.         'application/x-ruby' => ['rb'],
  1061.         'application/x-sami' => ['smi''sami'],
  1062.         'application/x-sap-file' => ['sap'],
  1063.         'application/x-saturn-rom' => ['iso'],
  1064.         'application/x-sdp' => ['sdp'],
  1065.         'application/x-sea' => ['sea'],
  1066.         'application/x-sega-cd-rom' => ['iso'],
  1067.         'application/x-sega-pico-rom' => ['iso'],
  1068.         'application/x-sg1000-rom' => ['sg'],
  1069.         'application/x-sh' => ['sh'],
  1070.         'application/x-shar' => ['shar'],
  1071.         'application/x-shared-library-la' => ['la'],
  1072.         'application/x-sharedlib' => ['so'],
  1073.         'application/x-shellscript' => ['sh'],
  1074.         'application/x-shockwave-flash' => ['swf''spl'],
  1075.         'application/x-shorten' => ['shn'],
  1076.         'application/x-siag' => ['siag'],
  1077.         'application/x-silverlight-app' => ['xap'],
  1078.         'application/x-sit' => ['sit'],
  1079.         'application/x-smaf' => ['mmf''smaf'],
  1080.         'application/x-sms-rom' => ['sms'],
  1081.         'application/x-snes-rom' => ['sfc''smc'],
  1082.         'application/x-source-rpm' => ['src.rpm''spm'],
  1083.         'application/x-spss-por' => ['por'],
  1084.         'application/x-spss-sav' => ['sav''zsav'],
  1085.         'application/x-spss-savefile' => ['sav''zsav'],
  1086.         'application/x-sql' => ['sql'],
  1087.         'application/x-sqlite2' => ['sqlite2'],
  1088.         'application/x-sqlite3' => ['sqlite3'],
  1089.         'application/x-srt' => ['srt'],
  1090.         'application/x-stuffit' => ['sit'],
  1091.         'application/x-stuffitx' => ['sitx'],
  1092.         'application/x-subrip' => ['srt'],
  1093.         'application/x-sv4cpio' => ['sv4cpio'],
  1094.         'application/x-sv4crc' => ['sv4crc'],
  1095.         'application/x-t3vm-image' => ['t3'],
  1096.         'application/x-t602' => ['602'],
  1097.         'application/x-tads' => ['gam'],
  1098.         'application/x-tar' => ['tar''gtar''gem'],
  1099.         'application/x-targa' => ['tga''icb''tpic''vda''vst'],
  1100.         'application/x-tarz' => ['tar.Z''taz'],
  1101.         'application/x-tcl' => ['tcl''tk'],
  1102.         'application/x-tex' => ['tex''ltx''sty''cls''dtx''ins''latex'],
  1103.         'application/x-tex-gf' => ['gf'],
  1104.         'application/x-tex-pk' => ['pk'],
  1105.         'application/x-tex-tfm' => ['tfm'],
  1106.         'application/x-texinfo' => ['texinfo''texi'],
  1107.         'application/x-tga' => ['tga''icb''tpic''vda''vst'],
  1108.         'application/x-tgif' => ['obj'],
  1109.         'application/x-theme' => ['theme'],
  1110.         'application/x-thomson-cartridge-memo7' => ['m7'],
  1111.         'application/x-thomson-cassette' => ['k7'],
  1112.         'application/x-thomson-sap-image' => ['sap'],
  1113.         'application/x-trash' => ['bak''old''sik'],
  1114.         'application/x-trig' => ['trig'],
  1115.         'application/x-troff' => ['tr''roff''t'],
  1116.         'application/x-troff-man' => ['man'],
  1117.         'application/x-tzo' => ['tar.lzo''tzo'],
  1118.         'application/x-ufraw' => ['ufraw'],
  1119.         'application/x-ustar' => ['ustar'],
  1120.         'application/x-vdi-disk' => ['vdi'],
  1121.         'application/x-vhd-disk' => ['vhd''vpc'],
  1122.         'application/x-vhdx-disk' => ['vhdx'],
  1123.         'application/x-virtual-boy-rom' => ['vb'],
  1124.         'application/x-virtualbox-hdd' => ['hdd'],
  1125.         'application/x-virtualbox-ova' => ['ova'],
  1126.         'application/x-virtualbox-ovf' => ['ovf'],
  1127.         'application/x-virtualbox-vbox' => ['vbox'],
  1128.         'application/x-virtualbox-vbox-extpack' => ['vbox-extpack'],
  1129.         'application/x-virtualbox-vdi' => ['vdi'],
  1130.         'application/x-virtualbox-vhd' => ['vhd''vpc'],
  1131.         'application/x-virtualbox-vhdx' => ['vhdx'],
  1132.         'application/x-virtualbox-vmdk' => ['vmdk'],
  1133.         'application/x-vmdk-disk' => ['vmdk'],
  1134.         'application/x-vnd.kde.kexi' => ['kexi'],
  1135.         'application/x-wais-source' => ['src'],
  1136.         'application/x-wbfs' => ['iso'],
  1137.         'application/x-web-app-manifest+json' => ['webapp'],
  1138.         'application/x-wia' => ['iso'],
  1139.         'application/x-wii-iso-image' => ['iso'],
  1140.         'application/x-wii-rom' => ['iso'],
  1141.         'application/x-wii-wad' => ['wad'],
  1142.         'application/x-windows-themepack' => ['themepack'],
  1143.         'application/x-wmf' => ['wmf'],
  1144.         'application/x-wonderswan-color-rom' => ['wsc'],
  1145.         'application/x-wonderswan-rom' => ['ws'],
  1146.         'application/x-wordperfect' => ['wp''wp4''wp5''wp6''wpd''wpp'],
  1147.         'application/x-wpg' => ['wpg'],
  1148.         'application/x-wwf' => ['wwf'],
  1149.         'application/x-x509-ca-cert' => ['der''crt''pem''cert'],
  1150.         'application/x-xar' => ['xar''pkg'],
  1151.         'application/x-xbel' => ['xbel'],
  1152.         'application/x-xfig' => ['fig'],
  1153.         'application/x-xliff' => ['xlf''xliff'],
  1154.         'application/x-xliff+xml' => ['xlf'],
  1155.         'application/x-xpinstall' => ['xpi'],
  1156.         'application/x-xspf+xml' => ['xspf'],
  1157.         'application/x-xz' => ['xz'],
  1158.         'application/x-xz-compressed-tar' => ['tar.xz''txz'],
  1159.         'application/x-xzpdf' => ['pdf.xz'],
  1160.         'application/x-yaml' => ['yaml''yml'],
  1161.         'application/x-zip' => ['zip'],
  1162.         'application/x-zip-compressed' => ['zip'],
  1163.         'application/x-zip-compressed-fb2' => ['fb2.zip'],
  1164.         'application/x-zmachine' => ['z1''z2''z3''z4''z5''z6''z7''z8'],
  1165.         'application/x-zoo' => ['zoo'],
  1166.         'application/x-zstd-compressed-tar' => ['tar.zst''tzst'],
  1167.         'application/xaml+xml' => ['xaml'],
  1168.         'application/xcap-att+xml' => ['xav'],
  1169.         'application/xcap-caps+xml' => ['xca'],
  1170.         'application/xcap-diff+xml' => ['xdf'],
  1171.         'application/xcap-el+xml' => ['xel'],
  1172.         'application/xcap-error+xml' => ['xer'],
  1173.         'application/xcap-ns+xml' => ['xns'],
  1174.         'application/xenc+xml' => ['xenc'],
  1175.         'application/xhtml+xml' => ['xhtml''xht''html''htm'],
  1176.         'application/xliff+xml' => ['xlf''xliff'],
  1177.         'application/xml' => ['xml''xsl''xsd''rng''xbl'],
  1178.         'application/xml-dtd' => ['dtd'],
  1179.         'application/xml-external-parsed-entity' => ['ent'],
  1180.         'application/xop+xml' => ['xop'],
  1181.         'application/xproc+xml' => ['xpl'],
  1182.         'application/xps' => ['xps'],
  1183.         'application/xslt+xml' => ['xsl''xslt'],
  1184.         'application/xspf+xml' => ['xspf'],
  1185.         'application/xv+xml' => ['mxml''xhvml''xvml''xvm'],
  1186.         'application/yang' => ['yang'],
  1187.         'application/yin+xml' => ['yin'],
  1188.         'application/zip' => ['zip'],
  1189.         'application/zlib' => ['zz'],
  1190.         'application/zstd' => ['zst'],
  1191.         'audio/3gpp' => ['3gpp''3gp''3ga'],
  1192.         'audio/3gpp-encrypted' => ['3gp''3gpp''3ga'],
  1193.         'audio/3gpp2' => ['3g2''3gp2''3gpp2'],
  1194.         'audio/aac' => ['aac''adts''ass'],
  1195.         'audio/ac3' => ['ac3'],
  1196.         'audio/adpcm' => ['adp'],
  1197.         'audio/amr' => ['amr'],
  1198.         'audio/amr-encrypted' => ['amr'],
  1199.         'audio/amr-wb' => ['awb'],
  1200.         'audio/amr-wb-encrypted' => ['awb'],
  1201.         'audio/annodex' => ['axa'],
  1202.         'audio/basic' => ['au''snd'],
  1203.         'audio/flac' => ['flac'],
  1204.         'audio/imelody' => ['imy''ime'],
  1205.         'audio/m3u' => ['m3u''m3u8''vlc'],
  1206.         'audio/m4a' => ['m4a''f4a'],
  1207.         'audio/midi' => ['mid''midi''kar''rmi'],
  1208.         'audio/mobile-xmf' => ['mxmf''xmf'],
  1209.         'audio/mp2' => ['mp2'],
  1210.         'audio/mp3' => ['mp3''mpga'],
  1211.         'audio/mp4' => ['m4a''mp4a''f4a'],
  1212.         'audio/mpeg' => ['mp3''mpga''mp2''mp2a''m2a''m3a'],
  1213.         'audio/mpegurl' => ['m3u''m3u8''vlc'],
  1214.         'audio/ogg' => ['ogg''oga''spx''opus'],
  1215.         'audio/prs.sid' => ['sid''psid'],
  1216.         'audio/s3m' => ['s3m'],
  1217.         'audio/scpls' => ['pls'],
  1218.         'audio/silk' => ['sil'],
  1219.         'audio/tta' => ['tta'],
  1220.         'audio/usac' => ['loas''xhe'],
  1221.         'audio/vnd.audible' => ['aa''aax'],
  1222.         'audio/vnd.audible.aax' => ['aax'],
  1223.         'audio/vnd.dece.audio' => ['uva''uvva'],
  1224.         'audio/vnd.digital-winds' => ['eol'],
  1225.         'audio/vnd.dra' => ['dra'],
  1226.         'audio/vnd.dts' => ['dts'],
  1227.         'audio/vnd.dts.hd' => ['dtshd'],
  1228.         'audio/vnd.lucent.voice' => ['lvp'],
  1229.         'audio/vnd.m-realaudio' => ['ra''rax'],
  1230.         'audio/vnd.ms-playready.media.pya' => ['pya'],
  1231.         'audio/vnd.nuera.ecelp4800' => ['ecelp4800'],
  1232.         'audio/vnd.nuera.ecelp7470' => ['ecelp7470'],
  1233.         'audio/vnd.nuera.ecelp9600' => ['ecelp9600'],
  1234.         'audio/vnd.rip' => ['rip'],
  1235.         'audio/vnd.rn-realaudio' => ['ra''rax'],
  1236.         'audio/vnd.wave' => ['wav'],
  1237.         'audio/vorbis' => ['oga''ogg'],
  1238.         'audio/wav' => ['wav'],
  1239.         'audio/wave' => ['wav'],
  1240.         'audio/webm' => ['weba'],
  1241.         'audio/wma' => ['wma'],
  1242.         'audio/x-aac' => ['aac''adts''ass'],
  1243.         'audio/x-aifc' => ['aifc''aiffc'],
  1244.         'audio/x-aiff' => ['aif''aiff''aifc'],
  1245.         'audio/x-aiffc' => ['aifc''aiffc'],
  1246.         'audio/x-amzxml' => ['amz'],
  1247.         'audio/x-annodex' => ['axa'],
  1248.         'audio/x-ape' => ['ape'],
  1249.         'audio/x-caf' => ['caf'],
  1250.         'audio/x-dts' => ['dts'],
  1251.         'audio/x-dtshd' => ['dtshd'],
  1252.         'audio/x-flac' => ['flac'],
  1253.         'audio/x-flac+ogg' => ['oga''ogg'],
  1254.         'audio/x-gsm' => ['gsm'],
  1255.         'audio/x-hx-aac-adts' => ['aac''adts''ass'],
  1256.         'audio/x-imelody' => ['imy''ime'],
  1257.         'audio/x-iriver-pla' => ['pla'],
  1258.         'audio/x-it' => ['it'],
  1259.         'audio/x-m3u' => ['m3u''m3u8''vlc'],
  1260.         'audio/x-m4a' => ['m4a''f4a'],
  1261.         'audio/x-m4b' => ['m4b''f4b'],
  1262.         'audio/x-m4r' => ['m4r'],
  1263.         'audio/x-matroska' => ['mka'],
  1264.         'audio/x-midi' => ['mid''midi''kar'],
  1265.         'audio/x-minipsf' => ['minipsf'],
  1266.         'audio/x-mo3' => ['mo3'],
  1267.         'audio/x-mod' => ['mod''ult''uni''m15''mtm''669''med'],
  1268.         'audio/x-mp2' => ['mp2'],
  1269.         'audio/x-mp3' => ['mp3''mpga'],
  1270.         'audio/x-mp3-playlist' => ['m3u''m3u8''vlc'],
  1271.         'audio/x-mpeg' => ['mp3''mpga'],
  1272.         'audio/x-mpegurl' => ['m3u''m3u8''vlc'],
  1273.         'audio/x-mpg' => ['mp3''mpga'],
  1274.         'audio/x-ms-asx' => ['asx''wax''wvx''wmx'],
  1275.         'audio/x-ms-wax' => ['wax'],
  1276.         'audio/x-ms-wma' => ['wma'],
  1277.         'audio/x-ms-wmv' => ['wmv'],
  1278.         'audio/x-musepack' => ['mpc''mpp''mp+'],
  1279.         'audio/x-ogg' => ['oga''ogg''opus'],
  1280.         'audio/x-oggflac' => ['oga''ogg'],
  1281.         'audio/x-opus+ogg' => ['opus'],
  1282.         'audio/x-pn-audibleaudio' => ['aa''aax'],
  1283.         'audio/x-pn-realaudio' => ['ram''ra''rax'],
  1284.         'audio/x-pn-realaudio-plugin' => ['rmp'],
  1285.         'audio/x-psf' => ['psf'],
  1286.         'audio/x-psflib' => ['psflib'],
  1287.         'audio/x-realaudio' => ['ra'],
  1288.         'audio/x-rn-3gpp-amr' => ['3gp''3gpp''3ga'],
  1289.         'audio/x-rn-3gpp-amr-encrypted' => ['3gp''3gpp''3ga'],
  1290.         'audio/x-rn-3gpp-amr-wb' => ['3gp''3gpp''3ga'],
  1291.         'audio/x-rn-3gpp-amr-wb-encrypted' => ['3gp''3gpp''3ga'],
  1292.         'audio/x-s3m' => ['s3m'],
  1293.         'audio/x-scpls' => ['pls'],
  1294.         'audio/x-shorten' => ['shn'],
  1295.         'audio/x-speex' => ['spx'],
  1296.         'audio/x-speex+ogg' => ['oga''ogg''spx'],
  1297.         'audio/x-stm' => ['stm'],
  1298.         'audio/x-tta' => ['tta'],
  1299.         'audio/x-voc' => ['voc'],
  1300.         'audio/x-vorbis' => ['oga''ogg'],
  1301.         'audio/x-vorbis+ogg' => ['oga''ogg'],
  1302.         'audio/x-wav' => ['wav'],
  1303.         'audio/x-wavpack' => ['wv''wvp'],
  1304.         'audio/x-wavpack-correction' => ['wvc'],
  1305.         'audio/x-xi' => ['xi'],
  1306.         'audio/x-xm' => ['xm'],
  1307.         'audio/x-xmf' => ['xmf'],
  1308.         'audio/xm' => ['xm'],
  1309.         'audio/xmf' => ['xmf'],
  1310.         'chemical/x-cdx' => ['cdx'],
  1311.         'chemical/x-cif' => ['cif'],
  1312.         'chemical/x-cmdf' => ['cmdf'],
  1313.         'chemical/x-cml' => ['cml'],
  1314.         'chemical/x-csml' => ['csml'],
  1315.         'chemical/x-xyz' => ['xyz'],
  1316.         'flv-application/octet-stream' => ['flv'],
  1317.         'font/collection' => ['ttc'],
  1318.         'font/otf' => ['otf'],
  1319.         'font/ttf' => ['ttf'],
  1320.         'font/woff' => ['woff'],
  1321.         'font/woff2' => ['woff2'],
  1322.         'image/aces' => ['exr'],
  1323.         'image/apng' => ['apng'],
  1324.         'image/astc' => ['astc'],
  1325.         'image/avif' => ['avif''avifs'],
  1326.         'image/avif-sequence' => ['avif''avifs'],
  1327.         'image/bmp' => ['bmp''dib'],
  1328.         'image/cdr' => ['cdr'],
  1329.         'image/cgm' => ['cgm'],
  1330.         'image/dicom-rle' => ['drle'],
  1331.         'image/emf' => ['emf'],
  1332.         'image/fax-g3' => ['g3'],
  1333.         'image/fits' => ['fits'],
  1334.         'image/g3fax' => ['g3'],
  1335.         'image/gif' => ['gif'],
  1336.         'image/heic' => ['heic''heif'],
  1337.         'image/heic-sequence' => ['heics''heic''heif'],
  1338.         'image/heif' => ['heif''heic'],
  1339.         'image/heif-sequence' => ['heifs''heic''heif'],
  1340.         'image/hej2k' => ['hej2'],
  1341.         'image/hsj2' => ['hsj2'],
  1342.         'image/ico' => ['ico'],
  1343.         'image/icon' => ['ico'],
  1344.         'image/ief' => ['ief'],
  1345.         'image/jls' => ['jls'],
  1346.         'image/jp2' => ['jp2''jpg2'],
  1347.         'image/jpeg' => ['jpg''jpeg''jpe'],
  1348.         'image/jpeg2000' => ['jp2''jpg2'],
  1349.         'image/jpeg2000-image' => ['jp2''jpg2'],
  1350.         'image/jph' => ['jph'],
  1351.         'image/jphc' => ['jhc'],
  1352.         'image/jpm' => ['jpm''jpgm'],
  1353.         'image/jpx' => ['jpx''jpf'],
  1354.         'image/jxl' => ['jxl'],
  1355.         'image/jxr' => ['jxr'],
  1356.         'image/jxra' => ['jxra'],
  1357.         'image/jxrs' => ['jxrs'],
  1358.         'image/jxs' => ['jxs'],
  1359.         'image/jxsc' => ['jxsc'],
  1360.         'image/jxsi' => ['jxsi'],
  1361.         'image/jxss' => ['jxss'],
  1362.         'image/ktx' => ['ktx'],
  1363.         'image/ktx2' => ['ktx2'],
  1364.         'image/openraster' => ['ora'],
  1365.         'image/pdf' => ['pdf'],
  1366.         'image/photoshop' => ['psd'],
  1367.         'image/pjpeg' => ['jpg''jpeg''jpe'],
  1368.         'image/png' => ['png'],
  1369.         'image/prs.btif' => ['btif'],
  1370.         'image/prs.pti' => ['pti'],
  1371.         'image/psd' => ['psd'],
  1372.         'image/rle' => ['rle'],
  1373.         'image/sgi' => ['sgi'],
  1374.         'image/svg' => ['svg'],
  1375.         'image/svg+xml' => ['svg''svgz'],
  1376.         'image/svg+xml-compressed' => ['svgz'],
  1377.         'image/t38' => ['t38'],
  1378.         'image/targa' => ['tga''icb''tpic''vda''vst'],
  1379.         'image/tga' => ['tga''icb''tpic''vda''vst'],
  1380.         'image/tiff' => ['tif''tiff'],
  1381.         'image/tiff-fx' => ['tfx'],
  1382.         'image/vnd.adobe.photoshop' => ['psd'],
  1383.         'image/vnd.airzip.accelerator.azv' => ['azv'],
  1384.         'image/vnd.dece.graphic' => ['uvi''uvvi''uvg''uvvg'],
  1385.         'image/vnd.djvu' => ['djvu''djv'],
  1386.         'image/vnd.djvu+multipage' => ['djvu''djv'],
  1387.         'image/vnd.dvb.subtitle' => ['sub'],
  1388.         'image/vnd.dwg' => ['dwg'],
  1389.         'image/vnd.dxf' => ['dxf'],
  1390.         'image/vnd.fastbidsheet' => ['fbs'],
  1391.         'image/vnd.fpx' => ['fpx'],
  1392.         'image/vnd.fst' => ['fst'],
  1393.         'image/vnd.fujixerox.edmics-mmr' => ['mmr'],
  1394.         'image/vnd.fujixerox.edmics-rlc' => ['rlc'],
  1395.         'image/vnd.microsoft.icon' => ['ico'],
  1396.         'image/vnd.ms-dds' => ['dds'],
  1397.         'image/vnd.ms-modi' => ['mdi'],
  1398.         'image/vnd.ms-photo' => ['wdp'],
  1399.         'image/vnd.net-fpx' => ['npx'],
  1400.         'image/vnd.pco.b16' => ['b16'],
  1401.         'image/vnd.rn-realpix' => ['rp'],
  1402.         'image/vnd.tencent.tap' => ['tap'],
  1403.         'image/vnd.valve.source.texture' => ['vtf'],
  1404.         'image/vnd.wap.wbmp' => ['wbmp'],
  1405.         'image/vnd.xiff' => ['xif'],
  1406.         'image/vnd.zbrush.pcx' => ['pcx'],
  1407.         'image/webp' => ['webp'],
  1408.         'image/wmf' => ['wmf'],
  1409.         'image/x-3ds' => ['3ds'],
  1410.         'image/x-adobe-dng' => ['dng'],
  1411.         'image/x-applix-graphics' => ['ag'],
  1412.         'image/x-bmp' => ['bmp''dib'],
  1413.         'image/x-bzeps' => ['eps.bz2''epsi.bz2''epsf.bz2'],
  1414.         'image/x-canon-cr2' => ['cr2'],
  1415.         'image/x-canon-cr3' => ['cr3'],
  1416.         'image/x-canon-crw' => ['crw'],
  1417.         'image/x-cdr' => ['cdr'],
  1418.         'image/x-cmu-raster' => ['ras'],
  1419.         'image/x-cmx' => ['cmx'],
  1420.         'image/x-compressed-xcf' => ['xcf.gz''xcf.bz2'],
  1421.         'image/x-dds' => ['dds'],
  1422.         'image/x-djvu' => ['djvu''djv'],
  1423.         'image/x-emf' => ['emf'],
  1424.         'image/x-eps' => ['eps''epsi''epsf'],
  1425.         'image/x-exr' => ['exr'],
  1426.         'image/x-fits' => ['fits'],
  1427.         'image/x-freehand' => ['fh''fhc''fh4''fh5''fh7'],
  1428.         'image/x-fuji-raf' => ['raf'],
  1429.         'image/x-gimp-gbr' => ['gbr'],
  1430.         'image/x-gimp-gih' => ['gih'],
  1431.         'image/x-gimp-pat' => ['pat'],
  1432.         'image/x-gzeps' => ['eps.gz''epsi.gz''epsf.gz'],
  1433.         'image/x-icb' => ['tga''icb''tpic''vda''vst'],
  1434.         'image/x-icns' => ['icns'],
  1435.         'image/x-ico' => ['ico'],
  1436.         'image/x-icon' => ['ico'],
  1437.         'image/x-iff' => ['iff''ilbm''lbm'],
  1438.         'image/x-ilbm' => ['iff''ilbm''lbm'],
  1439.         'image/x-jng' => ['jng'],
  1440.         'image/x-jp2-codestream' => ['j2c''j2k''jpc'],
  1441.         'image/x-jpeg2000-image' => ['jp2''jpg2'],
  1442.         'image/x-kodak-dcr' => ['dcr'],
  1443.         'image/x-kodak-k25' => ['k25'],
  1444.         'image/x-kodak-kdc' => ['kdc'],
  1445.         'image/x-lwo' => ['lwo''lwob'],
  1446.         'image/x-lws' => ['lws'],
  1447.         'image/x-macpaint' => ['pntg'],
  1448.         'image/x-minolta-mrw' => ['mrw'],
  1449.         'image/x-mrsid-image' => ['sid'],
  1450.         'image/x-ms-bmp' => ['bmp''dib'],
  1451.         'image/x-msod' => ['msod'],
  1452.         'image/x-nikon-nef' => ['nef'],
  1453.         'image/x-nikon-nrw' => ['nrw'],
  1454.         'image/x-olympus-orf' => ['orf'],
  1455.         'image/x-panasonic-raw' => ['raw'],
  1456.         'image/x-panasonic-raw2' => ['rw2'],
  1457.         'image/x-panasonic-rw' => ['raw'],
  1458.         'image/x-panasonic-rw2' => ['rw2'],
  1459.         'image/x-pcx' => ['pcx'],
  1460.         'image/x-pentax-pef' => ['pef'],
  1461.         'image/x-photo-cd' => ['pcd'],
  1462.         'image/x-photoshop' => ['psd'],
  1463.         'image/x-pict' => ['pic''pct''pict''pict1''pict2'],
  1464.         'image/x-portable-anymap' => ['pnm'],
  1465.         'image/x-portable-bitmap' => ['pbm'],
  1466.         'image/x-portable-graymap' => ['pgm'],
  1467.         'image/x-portable-pixmap' => ['ppm'],
  1468.         'image/x-psd' => ['psd'],
  1469.         'image/x-quicktime' => ['qtif''qif'],
  1470.         'image/x-rgb' => ['rgb'],
  1471.         'image/x-sgi' => ['sgi'],
  1472.         'image/x-sigma-x3f' => ['x3f'],
  1473.         'image/x-skencil' => ['sk''sk1'],
  1474.         'image/x-sony-arw' => ['arw'],
  1475.         'image/x-sony-sr2' => ['sr2'],
  1476.         'image/x-sony-srf' => ['srf'],
  1477.         'image/x-sun-raster' => ['sun'],
  1478.         'image/x-targa' => ['tga''icb''tpic''vda''vst'],
  1479.         'image/x-tga' => ['tga''icb''tpic''vda''vst'],
  1480.         'image/x-win-bitmap' => ['cur'],
  1481.         'image/x-win-metafile' => ['wmf'],
  1482.         'image/x-wmf' => ['wmf'],
  1483.         'image/x-xbitmap' => ['xbm'],
  1484.         'image/x-xcf' => ['xcf'],
  1485.         'image/x-xfig' => ['fig'],
  1486.         'image/x-xpixmap' => ['xpm'],
  1487.         'image/x-xpm' => ['xpm'],
  1488.         'image/x-xwindowdump' => ['xwd'],
  1489.         'image/x.djvu' => ['djvu''djv'],
  1490.         'message/disposition-notification' => ['disposition-notification'],
  1491.         'message/global' => ['u8msg'],
  1492.         'message/global-delivery-status' => ['u8dsn'],
  1493.         'message/global-disposition-notification' => ['u8mdn'],
  1494.         'message/global-headers' => ['u8hdr'],
  1495.         'message/rfc822' => ['eml''mime'],
  1496.         'message/vnd.wfa.wsc' => ['wsc'],
  1497.         'model/3mf' => ['3mf'],
  1498.         'model/gltf+json' => ['gltf'],
  1499.         'model/gltf-binary' => ['glb'],
  1500.         'model/iges' => ['igs''iges'],
  1501.         'model/mesh' => ['msh''mesh''silo'],
  1502.         'model/mtl' => ['mtl'],
  1503.         'model/obj' => ['obj'],
  1504.         'model/step+zip' => ['stpz'],
  1505.         'model/step-xml+zip' => ['stpxz'],
  1506.         'model/stl' => ['stl'],
  1507.         'model/vnd.collada+xml' => ['dae'],
  1508.         'model/vnd.dwf' => ['dwf'],
  1509.         'model/vnd.gdl' => ['gdl'],
  1510.         'model/vnd.gtw' => ['gtw'],
  1511.         'model/vnd.mts' => ['mts'],
  1512.         'model/vnd.opengex' => ['ogex'],
  1513.         'model/vnd.parasolid.transmit.binary' => ['x_b'],
  1514.         'model/vnd.parasolid.transmit.text' => ['x_t'],
  1515.         'model/vnd.sap.vds' => ['vds'],
  1516.         'model/vnd.usdz+zip' => ['usdz'],
  1517.         'model/vnd.valve.source.compiled-map' => ['bsp'],
  1518.         'model/vnd.vtu' => ['vtu'],
  1519.         'model/vrml' => ['wrl''vrml''vrm'],
  1520.         'model/x.stl-ascii' => ['stl'],
  1521.         'model/x.stl-binary' => ['stl'],
  1522.         'model/x3d+binary' => ['x3db''x3dbz'],
  1523.         'model/x3d+fastinfoset' => ['x3db'],
  1524.         'model/x3d+vrml' => ['x3dv''x3dvz'],
  1525.         'model/x3d+xml' => ['x3d''x3dz'],
  1526.         'model/x3d-vrml' => ['x3dv'],
  1527.         'text/cache-manifest' => ['appcache''manifest'],
  1528.         'text/calendar' => ['ics''ifb''vcs'],
  1529.         'text/coffeescript' => ['coffee''litcoffee'],
  1530.         'text/crystal' => ['cr'],
  1531.         'text/css' => ['css'],
  1532.         'text/csv' => ['csv'],
  1533.         'text/csv-schema' => ['csvs'],
  1534.         'text/directory' => ['vcard''vcf''vct''gcrd'],
  1535.         'text/ecmascript' => ['es'],
  1536.         'text/gedcom' => ['ged''gedcom'],
  1537.         'text/google-video-pointer' => ['gvp'],
  1538.         'text/html' => ['html''htm''shtml'],
  1539.         'text/ico' => ['ico'],
  1540.         'text/jade' => ['jade'],
  1541.         'text/javascript' => ['js''jsm''mjs'],
  1542.         'text/jsx' => ['jsx'],
  1543.         'text/less' => ['less'],
  1544.         'text/markdown' => ['md''markdown''mkd'],
  1545.         'text/mathml' => ['mml'],
  1546.         'text/mdx' => ['mdx'],
  1547.         'text/n3' => ['n3'],
  1548.         'text/org' => ['org'],
  1549.         'text/plain' => ['txt''text''conf''def''list''log''in''ini''asc'],
  1550.         'text/prs.lines.tag' => ['dsc'],
  1551.         'text/rdf' => ['rdf''rdfs''owl'],
  1552.         'text/richtext' => ['rtx'],
  1553.         'text/rss' => ['rss'],
  1554.         'text/rtf' => ['rtf'],
  1555.         'text/rust' => ['rs'],
  1556.         'text/sgml' => ['sgml''sgm'],
  1557.         'text/shex' => ['shex'],
  1558.         'text/slim' => ['slim''slm'],
  1559.         'text/spdx' => ['spdx'],
  1560.         'text/spreadsheet' => ['sylk''slk'],
  1561.         'text/stylus' => ['stylus''styl'],
  1562.         'text/tab-separated-values' => ['tsv'],
  1563.         'text/tcl' => ['tcl''tk'],
  1564.         'text/troff' => ['t''tr''roff''man''me''ms'],
  1565.         'text/turtle' => ['ttl'],
  1566.         'text/uri-list' => ['uri''uris''urls'],
  1567.         'text/vbs' => ['vbs'],
  1568.         'text/vbscript' => ['vbs'],
  1569.         'text/vcard' => ['vcard''vcf''vct''gcrd'],
  1570.         'text/vnd.curl' => ['curl'],
  1571.         'text/vnd.curl.dcurl' => ['dcurl'],
  1572.         'text/vnd.curl.mcurl' => ['mcurl'],
  1573.         'text/vnd.curl.scurl' => ['scurl'],
  1574.         'text/vnd.dvb.subtitle' => ['sub'],
  1575.         'text/vnd.fly' => ['fly'],
  1576.         'text/vnd.fmi.flexstor' => ['flx'],
  1577.         'text/vnd.graphviz' => ['gv''dot'],
  1578.         'text/vnd.in3d.3dml' => ['3dml'],
  1579.         'text/vnd.in3d.spot' => ['spot'],
  1580.         'text/vnd.qt.linguist' => ['ts'],
  1581.         'text/vnd.rn-realtext' => ['rt'],
  1582.         'text/vnd.senx.warpscript' => ['mc2'],
  1583.         'text/vnd.sun.j2me.app-descriptor' => ['jad'],
  1584.         'text/vnd.trolltech.linguist' => ['ts'],
  1585.         'text/vnd.wap.wml' => ['wml'],
  1586.         'text/vnd.wap.wmlscript' => ['wmls'],
  1587.         'text/vtt' => ['vtt'],
  1588.         'text/x-adasrc' => ['adb''ads'],
  1589.         'text/x-asm' => ['s''asm'],
  1590.         'text/x-bibtex' => ['bib'],
  1591.         'text/x-c' => ['c''cc''cxx''cpp''h''hh''dic'],
  1592.         'text/x-c++hdr' => ['hh''hp''hpp''h++''hxx'],
  1593.         'text/x-c++src' => ['cpp''cxx''cc''C''c++'],
  1594.         'text/x-chdr' => ['h'],
  1595.         'text/x-cmake' => ['cmake'],
  1596.         'text/x-cobol' => ['cbl''cob'],
  1597.         'text/x-comma-separated-values' => ['csv'],
  1598.         'text/x-common-lisp' => ['asd''fasl''lisp''ros'],
  1599.         'text/x-component' => ['htc'],
  1600.         'text/x-crystal' => ['cr'],
  1601.         'text/x-csharp' => ['cs'],
  1602.         'text/x-csrc' => ['c'],
  1603.         'text/x-csv' => ['csv'],
  1604.         'text/x-dart' => ['dart'],
  1605.         'text/x-dbus-service' => ['service'],
  1606.         'text/x-dcl' => ['dcl'],
  1607.         'text/x-diff' => ['diff''patch'],
  1608.         'text/x-dsl' => ['dsl'],
  1609.         'text/x-dsrc' => ['d''di'],
  1610.         'text/x-dtd' => ['dtd'],
  1611.         'text/x-eiffel' => ['e''eif'],
  1612.         'text/x-elixir' => ['ex''exs'],
  1613.         'text/x-emacs-lisp' => ['el'],
  1614.         'text/x-erlang' => ['erl'],
  1615.         'text/x-fortran' => ['f''for''f77''f90''f95'],
  1616.         'text/x-genie' => ['gs'],
  1617.         'text/x-gettext-translation' => ['po'],
  1618.         'text/x-gettext-translation-template' => ['pot'],
  1619.         'text/x-gherkin' => ['feature'],
  1620.         'text/x-go' => ['go'],
  1621.         'text/x-google-video-pointer' => ['gvp'],
  1622.         'text/x-gradle' => ['gradle'],
  1623.         'text/x-groovy' => ['groovy''gvy''gy''gsh'],
  1624.         'text/x-handlebars-template' => ['hbs'],
  1625.         'text/x-haskell' => ['hs'],
  1626.         'text/x-idl' => ['idl'],
  1627.         'text/x-imelody' => ['imy''ime'],
  1628.         'text/x-iptables' => ['iptables'],
  1629.         'text/x-java' => ['java'],
  1630.         'text/x-java-source' => ['java'],
  1631.         'text/x-kaitai-struct' => ['ksy'],
  1632.         'text/x-kotlin' => ['kt'],
  1633.         'text/x-ldif' => ['ldif'],
  1634.         'text/x-lilypond' => ['ly'],
  1635.         'text/x-literate-haskell' => ['lhs'],
  1636.         'text/x-log' => ['log'],
  1637.         'text/x-lua' => ['lua'],
  1638.         'text/x-lyx' => ['lyx'],
  1639.         'text/x-makefile' => ['mk''mak'],
  1640.         'text/x-markdown' => ['md''mkd''markdown'],
  1641.         'text/x-matlab' => ['m'],
  1642.         'text/x-microdvd' => ['sub'],
  1643.         'text/x-moc' => ['moc'],
  1644.         'text/x-modelica' => ['mo'],
  1645.         'text/x-mof' => ['mof'],
  1646.         'text/x-mpsub' => ['sub'],
  1647.         'text/x-mrml' => ['mrml''mrl'],
  1648.         'text/x-ms-regedit' => ['reg'],
  1649.         'text/x-mup' => ['mup''not'],
  1650.         'text/x-nfo' => ['nfo'],
  1651.         'text/x-objcsrc' => ['m'],
  1652.         'text/x-ocaml' => ['ml''mli'],
  1653.         'text/x-ocl' => ['ocl'],
  1654.         'text/x-octave' => ['m'],
  1655.         'text/x-ooc' => ['ooc'],
  1656.         'text/x-opencl-src' => ['cl'],
  1657.         'text/x-opml' => ['opml'],
  1658.         'text/x-opml+xml' => ['opml'],
  1659.         'text/x-org' => ['org'],
  1660.         'text/x-pascal' => ['p''pas'],
  1661.         'text/x-patch' => ['diff''patch'],
  1662.         'text/x-perl' => ['pl''PL''pm''al''perl''pod''t'],
  1663.         'text/x-po' => ['po'],
  1664.         'text/x-pot' => ['pot'],
  1665.         'text/x-processing' => ['pde'],
  1666.         'text/x-python' => ['py''pyx''wsgi'],
  1667.         'text/x-python3' => ['py''py3''py3x''pyi'],
  1668.         'text/x-qml' => ['qml''qmltypes''qmlproject'],
  1669.         'text/x-reject' => ['rej'],
  1670.         'text/x-rpm-spec' => ['spec'],
  1671.         'text/x-rst' => ['rst'],
  1672.         'text/x-sagemath' => ['sage'],
  1673.         'text/x-sass' => ['sass'],
  1674.         'text/x-scala' => ['scala''sc'],
  1675.         'text/x-scheme' => ['scm''ss'],
  1676.         'text/x-scss' => ['scss'],
  1677.         'text/x-setext' => ['etx'],
  1678.         'text/x-sfv' => ['sfv'],
  1679.         'text/x-sh' => ['sh'],
  1680.         'text/x-sql' => ['sql'],
  1681.         'text/x-ssa' => ['ssa''ass'],
  1682.         'text/x-subviewer' => ['sub'],
  1683.         'text/x-suse-ymp' => ['ymp'],
  1684.         'text/x-svhdr' => ['svh'],
  1685.         'text/x-svsrc' => ['sv'],
  1686.         'text/x-systemd-unit' => ['automount''device''mount''path''scope''service''slice''socket''swap''target''timer'],
  1687.         'text/x-tcl' => ['tcl''tk'],
  1688.         'text/x-tex' => ['tex''ltx''sty''cls''dtx''ins''latex'],
  1689.         'text/x-texinfo' => ['texi''texinfo'],
  1690.         'text/x-troff' => ['tr''roff''t'],
  1691.         'text/x-troff-me' => ['me'],
  1692.         'text/x-troff-mm' => ['mm'],
  1693.         'text/x-troff-ms' => ['ms'],
  1694.         'text/x-twig' => ['twig'],
  1695.         'text/x-txt2tags' => ['t2t'],
  1696.         'text/x-uil' => ['uil'],
  1697.         'text/x-uuencode' => ['uu''uue'],
  1698.         'text/x-vala' => ['vala''vapi'],
  1699.         'text/x-vcalendar' => ['vcs''ics'],
  1700.         'text/x-vcard' => ['vcf''vcard''vct''gcrd'],
  1701.         'text/x-verilog' => ['v'],
  1702.         'text/x-vhdl' => ['vhd''vhdl'],
  1703.         'text/x-xmi' => ['xmi'],
  1704.         'text/x-xslfo' => ['fo''xslfo'],
  1705.         'text/x-yaml' => ['yaml''yml'],
  1706.         'text/x.gcode' => ['gcode'],
  1707.         'text/xml' => ['xml''xbl''xsd''rng'],
  1708.         'text/xml-external-parsed-entity' => ['ent'],
  1709.         'text/yaml' => ['yaml''yml'],
  1710.         'video/3gp' => ['3gp''3gpp''3ga'],
  1711.         'video/3gpp' => ['3gp''3gpp''3ga'],
  1712.         'video/3gpp-encrypted' => ['3gp''3gpp''3ga'],
  1713.         'video/3gpp2' => ['3g2''3gp2''3gpp2'],
  1714.         'video/annodex' => ['axv'],
  1715.         'video/avi' => ['avi''avf''divx'],
  1716.         'video/divx' => ['avi''avf''divx'],
  1717.         'video/dv' => ['dv'],
  1718.         'video/fli' => ['fli''flc'],
  1719.         'video/flv' => ['flv'],
  1720.         'video/h261' => ['h261'],
  1721.         'video/h263' => ['h263'],
  1722.         'video/h264' => ['h264'],
  1723.         'video/iso.segment' => ['m4s'],
  1724.         'video/jpeg' => ['jpgv'],
  1725.         'video/jpm' => ['jpm''jpgm'],
  1726.         'video/mj2' => ['mj2''mjp2'],
  1727.         'video/mp2t' => ['ts''m2t''m2ts''mts''cpi''clpi''mpl''mpls''bdm''bdmv'],
  1728.         'video/mp4' => ['mp4''mp4v''mpg4''m4v''f4v''lrv'],
  1729.         'video/mp4v-es' => ['mp4''m4v''f4v''lrv'],
  1730.         'video/mpeg' => ['mpeg''mpg''mpe''m1v''m2v''mp2''vob'],
  1731.         'video/mpeg-system' => ['mpeg''mpg''mp2''mpe''vob'],
  1732.         'video/msvideo' => ['avi''avf''divx'],
  1733.         'video/ogg' => ['ogv''ogg'],
  1734.         'video/quicktime' => ['mov''qt''moov''qtvr'],
  1735.         'video/vivo' => ['viv''vivo'],
  1736.         'video/vnd.dece.hd' => ['uvh''uvvh'],
  1737.         'video/vnd.dece.mobile' => ['uvm''uvvm'],
  1738.         'video/vnd.dece.pd' => ['uvp''uvvp'],
  1739.         'video/vnd.dece.sd' => ['uvs''uvvs'],
  1740.         'video/vnd.dece.video' => ['uvv''uvvv'],
  1741.         'video/vnd.divx' => ['avi''avf''divx'],
  1742.         'video/vnd.dvb.file' => ['dvb'],
  1743.         'video/vnd.fvt' => ['fvt'],
  1744.         'video/vnd.mpegurl' => ['mxu''m4u''m1u'],
  1745.         'video/vnd.ms-playready.media.pyv' => ['pyv'],
  1746.         'video/vnd.radgamettools.bink' => ['bik''bk2'],
  1747.         'video/vnd.radgamettools.smacker' => ['smk'],
  1748.         'video/vnd.rn-realvideo' => ['rv''rvx'],
  1749.         'video/vnd.uvvu.mp4' => ['uvu''uvvu'],
  1750.         'video/vnd.vivo' => ['viv''vivo'],
  1751.         'video/webm' => ['webm'],
  1752.         'video/x-anim' => ['anim[1-9j]'],
  1753.         'video/x-annodex' => ['axv'],
  1754.         'video/x-avi' => ['avi''avf''divx'],
  1755.         'video/x-f4v' => ['f4v'],
  1756.         'video/x-fli' => ['fli''flc'],
  1757.         'video/x-flic' => ['fli''flc'],
  1758.         'video/x-flv' => ['flv'],
  1759.         'video/x-javafx' => ['fxm'],
  1760.         'video/x-m4v' => ['m4v''mp4''f4v''lrv'],
  1761.         'video/x-matroska' => ['mkv''mk3d''mks'],
  1762.         'video/x-matroska-3d' => ['mk3d'],
  1763.         'video/x-mjpeg' => ['mjpeg''mjpg'],
  1764.         'video/x-mng' => ['mng'],
  1765.         'video/x-mpeg' => ['mpeg''mpg''mp2''mpe''vob'],
  1766.         'video/x-mpeg-system' => ['mpeg''mpg''mp2''mpe''vob'],
  1767.         'video/x-mpeg2' => ['mpeg''mpg''mp2''mpe''vob'],
  1768.         'video/x-mpegurl' => ['m1u''m4u''mxu'],
  1769.         'video/x-ms-asf' => ['asf''asx'],
  1770.         'video/x-ms-asf-plugin' => ['asf'],
  1771.         'video/x-ms-vob' => ['vob'],
  1772.         'video/x-ms-wax' => ['asx''wax''wvx''wmx'],
  1773.         'video/x-ms-wm' => ['wm''asf'],
  1774.         'video/x-ms-wmv' => ['wmv'],
  1775.         'video/x-ms-wmx' => ['wmx''asx''wax''wvx'],
  1776.         'video/x-ms-wvx' => ['wvx''asx''wax''wmx'],
  1777.         'video/x-msvideo' => ['avi''avf''divx'],
  1778.         'video/x-nsv' => ['nsv'],
  1779.         'video/x-ogg' => ['ogv''ogg'],
  1780.         'video/x-ogm' => ['ogm'],
  1781.         'video/x-ogm+ogg' => ['ogm'],
  1782.         'video/x-real-video' => ['rv''rvx'],
  1783.         'video/x-sgi-movie' => ['movie'],
  1784.         'video/x-smv' => ['smv'],
  1785.         'video/x-theora' => ['ogg'],
  1786.         'video/x-theora+ogg' => ['ogg'],
  1787.         'x-conference/x-cooltalk' => ['ice'],
  1788.         'x-epoc/x-sisx-app' => ['sisx'],
  1789.         'zz-application/zz-winassoc-123' => ['123''wk1''wk3''wk4''wks'],
  1790.         'zz-application/zz-winassoc-cab' => ['cab'],
  1791.         'zz-application/zz-winassoc-cdr' => ['cdr'],
  1792.         'zz-application/zz-winassoc-doc' => ['doc'],
  1793.         'zz-application/zz-winassoc-hlp' => ['hlp'],
  1794.         'zz-application/zz-winassoc-mdb' => ['mdb'],
  1795.         'zz-application/zz-winassoc-uu' => ['uue'],
  1796.         'zz-application/zz-winassoc-xls' => ['xls''xlc''xll''xlm''xlw''xla''xlt''xld'],
  1797.     ];
  1798.     private const REVERSE_MAP = [
  1799.         '1km' => ['application/vnd.1000minds.decision-model+xml'],
  1800.         '32x' => ['application/x-genesis-32x-rom'],
  1801.         '3dml' => ['text/vnd.in3d.3dml'],
  1802.         '3ds' => ['application/x-nintendo-3ds-rom''image/x-3ds'],
  1803.         '3dsx' => ['application/x-nintendo-3ds-executable'],
  1804.         '3g2' => ['audio/3gpp2''video/3gpp2'],
  1805.         '3ga' => ['audio/3gpp''audio/3gpp-encrypted''audio/x-rn-3gpp-amr''audio/x-rn-3gpp-amr-encrypted''audio/x-rn-3gpp-amr-wb''audio/x-rn-3gpp-amr-wb-encrypted''video/3gp''video/3gpp''video/3gpp-encrypted'],
  1806.         '3gp' => ['audio/3gpp''audio/3gpp-encrypted''audio/x-rn-3gpp-amr''audio/x-rn-3gpp-amr-encrypted''audio/x-rn-3gpp-amr-wb''audio/x-rn-3gpp-amr-wb-encrypted''video/3gp''video/3gpp''video/3gpp-encrypted'],
  1807.         '3gp2' => ['audio/3gpp2''video/3gpp2'],
  1808.         '3gpp' => ['audio/3gpp''audio/3gpp-encrypted''audio/x-rn-3gpp-amr''audio/x-rn-3gpp-amr-encrypted''audio/x-rn-3gpp-amr-wb''audio/x-rn-3gpp-amr-wb-encrypted''video/3gp''video/3gpp''video/3gpp-encrypted'],
  1809.         '3gpp2' => ['audio/3gpp2''video/3gpp2'],
  1810.         '3mf' => ['model/3mf'],
  1811.         '7z' => ['application/x-7z-compressed'],
  1812.         '7z.001' => ['application/x-7z-compressed'],
  1813.         'BLEND' => ['application/x-blender'],
  1814.         'C' => ['text/x-c++src'],
  1815.         'PAR2' => ['application/x-par2'],
  1816.         'PL' => ['application/x-perl''text/x-perl'],
  1817.         'Z' => ['application/x-compress'],
  1818.         'a' => ['application/x-archive'],
  1819.         'a26' => ['application/x-atari-2600-rom'],
  1820.         'a78' => ['application/x-atari-7800-rom'],
  1821.         'aa' => ['audio/vnd.audible''audio/x-pn-audibleaudio'],
  1822.         'aab' => ['application/x-authorware-bin'],
  1823.         'aac' => ['audio/aac''audio/x-aac''audio/x-hx-aac-adts'],
  1824.         'aam' => ['application/x-authorware-map'],
  1825.         'aas' => ['application/x-authorware-seg'],
  1826.         'aax' => ['audio/vnd.audible''audio/vnd.audible.aax''audio/x-pn-audibleaudio'],
  1827.         'abw' => ['application/x-abiword'],
  1828.         'abw.CRASHED' => ['application/x-abiword'],
  1829.         'abw.gz' => ['application/x-abiword'],
  1830.         'ac' => ['application/pkix-attr-cert''application/vnd.nokia.n-gage.ac+xml'],
  1831.         'ac3' => ['audio/ac3'],
  1832.         'acc' => ['application/vnd.americandynamics.acc'],
  1833.         'ace' => ['application/x-ace''application/x-ace-compressed'],
  1834.         'acu' => ['application/vnd.acucobol'],
  1835.         'acutc' => ['application/vnd.acucorp'],
  1836.         'adb' => ['text/x-adasrc'],
  1837.         'adf' => ['application/x-amiga-disk-format'],
  1838.         'adp' => ['audio/adpcm'],
  1839.         'ads' => ['text/x-adasrc'],
  1840.         'adts' => ['audio/aac''audio/x-aac''audio/x-hx-aac-adts'],
  1841.         'aep' => ['application/vnd.audiograph'],
  1842.         'afm' => ['application/x-font-afm''application/x-font-type1'],
  1843.         'afp' => ['application/vnd.ibm.modcap'],
  1844.         'ag' => ['image/x-applix-graphics'],
  1845.         'agb' => ['application/x-gba-rom'],
  1846.         'ahead' => ['application/vnd.ahead.space'],
  1847.         'ai' => ['application/illustrator''application/postscript''application/vnd.adobe.illustrator'],
  1848.         'aif' => ['audio/x-aiff'],
  1849.         'aifc' => ['audio/x-aifc''audio/x-aiff''audio/x-aiffc'],
  1850.         'aiff' => ['audio/x-aiff'],
  1851.         'aiffc' => ['audio/x-aifc''audio/x-aiffc'],
  1852.         'air' => ['application/vnd.adobe.air-application-installer-package+zip'],
  1853.         'ait' => ['application/vnd.dvb.ait'],
  1854.         'al' => ['application/x-perl''text/x-perl'],
  1855.         'alz' => ['application/x-alz'],
  1856.         'ami' => ['application/vnd.amiga.ami'],
  1857.         'amr' => ['audio/amr''audio/amr-encrypted'],
  1858.         'amz' => ['audio/x-amzxml'],
  1859.         'ani' => ['application/x-navi-animation'],
  1860.         'anim[1-9j]' => ['video/x-anim'],
  1861.         'anx' => ['application/annodex''application/x-annodex'],
  1862.         'ape' => ['audio/x-ape'],
  1863.         'apk' => ['application/vnd.android.package-archive'],
  1864.         'apng' => ['image/apng'],
  1865.         'appcache' => ['text/cache-manifest'],
  1866.         'appimage' => ['application/vnd.appimage''application/x-iso9660-appimage'],
  1867.         'application' => ['application/x-ms-application'],
  1868.         'apr' => ['application/vnd.lotus-approach'],
  1869.         'ar' => ['application/x-archive'],
  1870.         'arc' => ['application/x-freearc'],
  1871.         'arj' => ['application/x-arj'],
  1872.         'arw' => ['image/x-sony-arw'],
  1873.         'as' => ['application/x-applix-spreadsheet'],
  1874.         'asc' => ['application/pgp''application/pgp-encrypted''application/pgp-keys''application/pgp-signature''text/plain'],
  1875.         'asd' => ['text/x-common-lisp'],
  1876.         'asf' => ['application/vnd.ms-asf''video/x-ms-asf''video/x-ms-asf-plugin''video/x-ms-wm'],
  1877.         'asice' => ['application/vnd.etsi.asic-e+zip'],
  1878.         'asm' => ['text/x-asm'],
  1879.         'aso' => ['application/vnd.accpac.simply.aso'],
  1880.         'asp' => ['application/x-asp'],
  1881.         'ass' => ['audio/aac''audio/x-aac''audio/x-hx-aac-adts''text/x-ssa'],
  1882.         'astc' => ['image/astc'],
  1883.         'asx' => ['application/x-ms-asx''audio/x-ms-asx''video/x-ms-asf''video/x-ms-wax''video/x-ms-wmx''video/x-ms-wvx'],
  1884.         'atc' => ['application/vnd.acucorp'],
  1885.         'atom' => ['application/atom+xml'],
  1886.         'atomcat' => ['application/atomcat+xml'],
  1887.         'atomdeleted' => ['application/atomdeleted+xml'],
  1888.         'atomsvc' => ['application/atomsvc+xml'],
  1889.         'atx' => ['application/vnd.antix.game-component'],
  1890.         'au' => ['audio/basic'],
  1891.         'automount' => ['text/x-systemd-unit'],
  1892.         'avf' => ['video/avi''video/divx''video/msvideo''video/vnd.divx''video/x-avi''video/x-msvideo'],
  1893.         'avi' => ['video/avi''video/divx''video/msvideo''video/vnd.divx''video/x-avi''video/x-msvideo'],
  1894.         'avif' => ['image/avif''image/avif-sequence'],
  1895.         'avifs' => ['image/avif''image/avif-sequence'],
  1896.         'aw' => ['application/applixware''application/x-applix-word'],
  1897.         'awb' => ['audio/amr-wb''audio/amr-wb-encrypted'],
  1898.         'awk' => ['application/x-awk'],
  1899.         'axa' => ['audio/annodex''audio/x-annodex'],
  1900.         'axv' => ['video/annodex''video/x-annodex'],
  1901.         'azf' => ['application/vnd.airzip.filesecure.azf'],
  1902.         'azs' => ['application/vnd.airzip.filesecure.azs'],
  1903.         'azv' => ['image/vnd.airzip.accelerator.azv'],
  1904.         'azw' => ['application/vnd.amazon.ebook'],
  1905.         'azw3' => ['application/vnd.amazon.mobi8-ebook''application/x-mobi8-ebook'],
  1906.         'b16' => ['image/vnd.pco.b16'],
  1907.         'bak' => ['application/x-trash'],
  1908.         'bat' => ['application/x-msdownload'],
  1909.         'bcpio' => ['application/x-bcpio'],
  1910.         'bdf' => ['application/x-font-bdf'],
  1911.         'bdm' => ['application/vnd.syncml.dm+wbxml''video/mp2t'],
  1912.         'bdmv' => ['video/mp2t'],
  1913.         'bdoc' => ['application/bdoc''application/x-bdoc'],
  1914.         'bed' => ['application/vnd.realvnc.bed'],
  1915.         'bh2' => ['application/vnd.fujitsu.oasysprs'],
  1916.         'bib' => ['text/x-bibtex'],
  1917.         'bik' => ['video/vnd.radgamettools.bink'],
  1918.         'bin' => ['application/octet-stream'],
  1919.         'bk2' => ['video/vnd.radgamettools.bink'],
  1920.         'blb' => ['application/x-blorb'],
  1921.         'blend' => ['application/x-blender'],
  1922.         'blender' => ['application/x-blender'],
  1923.         'blorb' => ['application/x-blorb'],
  1924.         'bmi' => ['application/vnd.bmi'],
  1925.         'bmml' => ['application/vnd.balsamiq.bmml+xml'],
  1926.         'bmp' => ['image/bmp''image/x-bmp''image/x-ms-bmp'],
  1927.         'book' => ['application/vnd.framemaker'],
  1928.         'box' => ['application/vnd.previewsystems.box'],
  1929.         'boz' => ['application/x-bzip2'],
  1930.         'bps' => ['application/x-bps-patch'],
  1931.         'bsdiff' => ['application/x-bsdiff'],
  1932.         'bsp' => ['model/vnd.valve.source.compiled-map'],
  1933.         'btif' => ['image/prs.btif'],
  1934.         'bz' => ['application/bzip2''application/x-bzip''application/x-bzip2'],
  1935.         'bz2' => ['application/x-bz2''application/bzip2''application/x-bzip''application/x-bzip2'],
  1936.         'c' => ['text/x-c''text/x-csrc'],
  1937.         'c++' => ['text/x-c++src'],
  1938.         'c11amc' => ['application/vnd.cluetrust.cartomobile-config'],
  1939.         'c11amz' => ['application/vnd.cluetrust.cartomobile-config-pkg'],
  1940.         'c4d' => ['application/vnd.clonk.c4group'],
  1941.         'c4f' => ['application/vnd.clonk.c4group'],
  1942.         'c4g' => ['application/vnd.clonk.c4group'],
  1943.         'c4p' => ['application/vnd.clonk.c4group'],
  1944.         'c4u' => ['application/vnd.clonk.c4group'],
  1945.         'cab' => ['application/vnd.ms-cab-compressed''zz-application/zz-winassoc-cab'],
  1946.         'caf' => ['audio/x-caf'],
  1947.         'cap' => ['application/pcap''application/vnd.tcpdump.pcap''application/x-pcap'],
  1948.         'car' => ['application/vnd.curl.car'],
  1949.         'cat' => ['application/vnd.ms-pki.seccat'],
  1950.         'cb7' => ['application/x-cb7''application/x-cbr'],
  1951.         'cba' => ['application/x-cbr'],
  1952.         'cbl' => ['text/x-cobol'],
  1953.         'cbr' => ['application/vnd.comicbook-rar''application/x-cbr'],
  1954.         'cbt' => ['application/x-cbr''application/x-cbt'],
  1955.         'cbz' => ['application/vnd.comicbook+zip''application/x-cbr''application/x-cbz'],
  1956.         'cc' => ['text/x-c''text/x-c++src'],
  1957.         'cci' => ['application/x-nintendo-3ds-rom'],
  1958.         'ccmx' => ['application/x-ccmx'],
  1959.         'cco' => ['application/x-cocoa'],
  1960.         'cct' => ['application/x-director'],
  1961.         'ccxml' => ['application/ccxml+xml'],
  1962.         'cdbcmsg' => ['application/vnd.contact.cmsg'],
  1963.         'cdf' => ['application/x-netcdf'],
  1964.         'cdfx' => ['application/cdfx+xml'],
  1965.         'cdi' => ['application/x-discjuggler-cd-image'],
  1966.         'cdkey' => ['application/vnd.mediastation.cdkey'],
  1967.         'cdmia' => ['application/cdmi-capability'],
  1968.         'cdmic' => ['application/cdmi-container'],
  1969.         'cdmid' => ['application/cdmi-domain'],
  1970.         'cdmio' => ['application/cdmi-object'],
  1971.         'cdmiq' => ['application/cdmi-queue'],
  1972.         'cdr' => ['application/cdr''application/coreldraw''application/vnd.corel-draw''application/x-cdr''application/x-coreldraw''image/cdr''image/x-cdr''zz-application/zz-winassoc-cdr'],
  1973.         'cdx' => ['chemical/x-cdx'],
  1974.         'cdxml' => ['application/vnd.chemdraw+xml'],
  1975.         'cdy' => ['application/vnd.cinderella'],
  1976.         'cer' => ['application/pkix-cert'],
  1977.         'cert' => ['application/x-x509-ca-cert'],
  1978.         'cfs' => ['application/x-cfs-compressed'],
  1979.         'cgb' => ['application/x-gameboy-color-rom'],
  1980.         'cgm' => ['image/cgm'],
  1981.         'chat' => ['application/x-chat'],
  1982.         'chd' => ['application/x-mame-chd'],
  1983.         'chm' => ['application/vnd.ms-htmlhelp''application/x-chm'],
  1984.         'chrt' => ['application/vnd.kde.kchart''application/x-kchart'],
  1985.         'cif' => ['chemical/x-cif'],
  1986.         'cii' => ['application/vnd.anser-web-certificate-issue-initiation'],
  1987.         'cil' => ['application/vnd.ms-artgalry'],
  1988.         'cjs' => ['application/node'],
  1989.         'cl' => ['text/x-opencl-src'],
  1990.         'cla' => ['application/vnd.claymore'],
  1991.         'class' => ['application/java''application/java-byte-code''application/java-vm''application/x-java''application/x-java-class''application/x-java-vm'],
  1992.         'clkk' => ['application/vnd.crick.clicker.keyboard'],
  1993.         'clkp' => ['application/vnd.crick.clicker.palette'],
  1994.         'clkt' => ['application/vnd.crick.clicker.template'],
  1995.         'clkw' => ['application/vnd.crick.clicker.wordbank'],
  1996.         'clkx' => ['application/vnd.crick.clicker'],
  1997.         'clp' => ['application/x-msclip'],
  1998.         'clpi' => ['video/mp2t'],
  1999.         'cls' => ['application/x-tex''text/x-tex'],
  2000.         'cmake' => ['text/x-cmake'],
  2001.         'cmc' => ['application/vnd.cosmocaller'],
  2002.         'cmdf' => ['chemical/x-cmdf'],
  2003.         'cml' => ['chemical/x-cml'],
  2004.         'cmp' => ['application/vnd.yellowriver-custom-menu'],
  2005.         'cmx' => ['image/x-cmx'],
  2006.         'cob' => ['text/x-cobol'],
  2007.         'cod' => ['application/vnd.rim.cod'],
  2008.         'coffee' => ['application/vnd.coffeescript''text/coffeescript'],
  2009.         'com' => ['application/x-msdownload'],
  2010.         'conf' => ['text/plain'],
  2011.         'cpi' => ['video/mp2t'],
  2012.         'cpio' => ['application/x-cpio'],
  2013.         'cpio.gz' => ['application/x-cpio-compressed'],
  2014.         'cpp' => ['text/x-c''text/x-c++src'],
  2015.         'cpt' => ['application/mac-compactpro'],
  2016.         'cr' => ['text/crystal''text/x-crystal'],
  2017.         'cr2' => ['image/x-canon-cr2'],
  2018.         'cr3' => ['image/x-canon-cr3'],
  2019.         'crd' => ['application/x-mscardfile'],
  2020.         'crdownload' => ['application/x-partial-download'],
  2021.         'crl' => ['application/pkix-crl'],
  2022.         'crt' => ['application/x-x509-ca-cert'],
  2023.         'crw' => ['image/x-canon-crw'],
  2024.         'crx' => ['application/x-chrome-extension'],
  2025.         'cryptonote' => ['application/vnd.rig.cryptonote'],
  2026.         'cs' => ['text/x-csharp'],
  2027.         'csh' => ['application/x-csh'],
  2028.         'csl' => ['application/vnd.citationstyles.style+xml'],
  2029.         'csml' => ['chemical/x-csml'],
  2030.         'cso' => ['application/x-compressed-iso'],
  2031.         'csp' => ['application/vnd.commonspace'],
  2032.         'css' => ['text/css'],
  2033.         'cst' => ['application/x-director'],
  2034.         'csv' => ['text/csv''application/csv''text/x-comma-separated-values''text/x-csv'],
  2035.         'csvs' => ['text/csv-schema'],
  2036.         'cu' => ['application/cu-seeme'],
  2037.         'cue' => ['application/x-cue'],
  2038.         'cur' => ['image/x-win-bitmap'],
  2039.         'curl' => ['text/vnd.curl'],
  2040.         'cwk' => ['application/x-appleworks-document'],
  2041.         'cww' => ['application/prs.cww'],
  2042.         'cxt' => ['application/x-director'],
  2043.         'cxx' => ['text/x-c''text/x-c++src'],
  2044.         'd' => ['text/x-dsrc'],
  2045.         'dae' => ['model/vnd.collada+xml'],
  2046.         'daf' => ['application/vnd.mobius.daf'],
  2047.         'dar' => ['application/x-dar'],
  2048.         'dart' => ['application/vnd.dart''text/x-dart'],
  2049.         'dataless' => ['application/vnd.fdsn.seed'],
  2050.         'davmount' => ['application/davmount+xml'],
  2051.         'dbf' => ['application/dbase''application/dbf''application/vnd.dbf''application/x-dbase''application/x-dbf'],
  2052.         'dbk' => ['application/docbook+xml''application/vnd.oasis.docbook+xml''application/x-docbook+xml'],
  2053.         'dc' => ['application/x-dc-rom'],
  2054.         'dcl' => ['text/x-dcl'],
  2055.         'dcm' => ['application/dicom'],
  2056.         'dcr' => ['application/x-director''image/x-kodak-dcr'],
  2057.         'dcurl' => ['text/vnd.curl.dcurl'],
  2058.         'dd2' => ['application/vnd.oma.dd2+xml'],
  2059.         'ddd' => ['application/vnd.fujixerox.ddd'],
  2060.         'ddf' => ['application/vnd.syncml.dmddf+xml'],
  2061.         'dds' => ['image/vnd.ms-dds''image/x-dds'],
  2062.         'deb' => ['application/vnd.debian.binary-package''application/x-deb''application/x-debian-package'],
  2063.         'def' => ['text/plain'],
  2064.         'der' => ['application/x-x509-ca-cert'],
  2065.         'desktop' => ['application/x-desktop''application/x-gnome-app-info'],
  2066.         'device' => ['text/x-systemd-unit'],
  2067.         'dfac' => ['application/vnd.dreamfactory'],
  2068.         'dgc' => ['application/x-dgc-compressed'],
  2069.         'di' => ['text/x-dsrc'],
  2070.         'dia' => ['application/x-dia-diagram'],
  2071.         'dib' => ['image/bmp''image/x-bmp''image/x-ms-bmp'],
  2072.         'dic' => ['text/x-c'],
  2073.         'diff' => ['text/x-diff''text/x-patch'],
  2074.         'dir' => ['application/x-director'],
  2075.         'dis' => ['application/vnd.mobius.dis'],
  2076.         'disposition-notification' => ['message/disposition-notification'],
  2077.         'divx' => ['video/avi''video/divx''video/msvideo''video/vnd.divx''video/x-avi''video/x-msvideo'],
  2078.         'djv' => ['image/vnd.djvu''image/vnd.djvu+multipage''image/x-djvu''image/x.djvu'],
  2079.         'djvu' => ['image/vnd.djvu''image/vnd.djvu+multipage''image/x-djvu''image/x.djvu'],
  2080.         'dll' => ['application/x-msdownload'],
  2081.         'dmg' => ['application/x-apple-diskimage'],
  2082.         'dmp' => ['application/pcap''application/vnd.tcpdump.pcap''application/x-pcap'],
  2083.         'dna' => ['application/vnd.dna'],
  2084.         'dng' => ['image/x-adobe-dng'],
  2085.         'doc' => ['application/msword''application/vnd.ms-word''application/x-msword''zz-application/zz-winassoc-doc'],
  2086.         'docbook' => ['application/docbook+xml''application/vnd.oasis.docbook+xml''application/x-docbook+xml'],
  2087.         'docm' => ['application/vnd.ms-word.document.macroenabled.12'],
  2088.         'docx' => ['application/vnd.openxmlformats-officedocument.wordprocessingml.document'],
  2089.         'dot' => ['application/msword''application/msword-template''text/vnd.graphviz'],
  2090.         'dotm' => ['application/vnd.ms-word.template.macroenabled.12'],
  2091.         'dotx' => ['application/vnd.openxmlformats-officedocument.wordprocessingml.template'],
  2092.         'dp' => ['application/vnd.osgi.dp'],
  2093.         'dpg' => ['application/vnd.dpgraph'],
  2094.         'dra' => ['audio/vnd.dra'],
  2095.         'drle' => ['image/dicom-rle'],
  2096.         'dsc' => ['text/prs.lines.tag'],
  2097.         'dsl' => ['text/x-dsl'],
  2098.         'dssc' => ['application/dssc+der'],
  2099.         'dtb' => ['application/x-dtbook+xml'],
  2100.         'dtd' => ['application/xml-dtd''text/x-dtd'],
  2101.         'dts' => ['audio/vnd.dts''audio/x-dts'],
  2102.         'dtshd' => ['audio/vnd.dts.hd''audio/x-dtshd'],
  2103.         'dtx' => ['application/x-tex''text/x-tex'],
  2104.         'dv' => ['video/dv'],
  2105.         'dvb' => ['video/vnd.dvb.file'],
  2106.         'dvi' => ['application/x-dvi'],
  2107.         'dvi.bz2' => ['application/x-bzdvi'],
  2108.         'dvi.gz' => ['application/x-gzdvi'],
  2109.         'dwd' => ['application/atsc-dwd+xml'],
  2110.         'dwf' => ['model/vnd.dwf'],
  2111.         'dwg' => ['image/vnd.dwg'],
  2112.         'dxf' => ['image/vnd.dxf'],
  2113.         'dxp' => ['application/vnd.spotfire.dxp'],
  2114.         'dxr' => ['application/x-director'],
  2115.         'e' => ['text/x-eiffel'],
  2116.         'ear' => ['application/java-archive'],
  2117.         'ecelp4800' => ['audio/vnd.nuera.ecelp4800'],
  2118.         'ecelp7470' => ['audio/vnd.nuera.ecelp7470'],
  2119.         'ecelp9600' => ['audio/vnd.nuera.ecelp9600'],
  2120.         'ecma' => ['application/ecmascript'],
  2121.         'edm' => ['application/vnd.novadigm.edm'],
  2122.         'edx' => ['application/vnd.novadigm.edx'],
  2123.         'efif' => ['application/vnd.picsel'],
  2124.         'egon' => ['application/x-egon'],
  2125.         'ei6' => ['application/vnd.pg.osasli'],
  2126.         'eif' => ['text/x-eiffel'],
  2127.         'el' => ['text/x-emacs-lisp'],
  2128.         'emf' => ['application/emf''application/x-emf''application/x-msmetafile''image/emf''image/x-emf'],
  2129.         'eml' => ['message/rfc822'],
  2130.         'emma' => ['application/emma+xml'],
  2131.         'emotionml' => ['application/emotionml+xml'],
  2132.         'emp' => ['application/vnd.emusic-emusic_package'],
  2133.         'emz' => ['application/x-msmetafile'],
  2134.         'ent' => ['application/xml-external-parsed-entity''text/xml-external-parsed-entity'],
  2135.         'eol' => ['audio/vnd.digital-winds'],
  2136.         'eot' => ['application/vnd.ms-fontobject'],
  2137.         'eps' => ['application/postscript''image/x-eps'],
  2138.         'eps.bz2' => ['image/x-bzeps'],
  2139.         'eps.gz' => ['image/x-gzeps'],
  2140.         'epsf' => ['image/x-eps'],
  2141.         'epsf.bz2' => ['image/x-bzeps'],
  2142.         'epsf.gz' => ['image/x-gzeps'],
  2143.         'epsi' => ['image/x-eps'],
  2144.         'epsi.bz2' => ['image/x-bzeps'],
  2145.         'epsi.gz' => ['image/x-gzeps'],
  2146.         'epub' => ['application/epub+zip'],
  2147.         'erl' => ['text/x-erlang'],
  2148.         'es' => ['application/ecmascript''text/ecmascript'],
  2149.         'es3' => ['application/vnd.eszigno3+xml'],
  2150.         'esa' => ['application/vnd.osgi.subsystem'],
  2151.         'esf' => ['application/vnd.epson.esf'],
  2152.         'et3' => ['application/vnd.eszigno3+xml'],
  2153.         'etheme' => ['application/x-e-theme'],
  2154.         'etx' => ['text/x-setext'],
  2155.         'eva' => ['application/x-eva'],
  2156.         'evy' => ['application/x-envoy'],
  2157.         'ex' => ['text/x-elixir'],
  2158.         'exe' => ['application/x-ms-dos-executable''application/x-msdos-program''application/x-msdownload'],
  2159.         'exi' => ['application/exi'],
  2160.         'exr' => ['image/aces''image/x-exr'],
  2161.         'exs' => ['text/x-elixir'],
  2162.         'ext' => ['application/vnd.novadigm.ext'],
  2163.         'ez' => ['application/andrew-inset'],
  2164.         'ez2' => ['application/vnd.ezpix-album'],
  2165.         'ez3' => ['application/vnd.ezpix-package'],
  2166.         'f' => ['text/x-fortran'],
  2167.         'f4a' => ['audio/m4a''audio/mp4''audio/x-m4a'],
  2168.         'f4b' => ['audio/x-m4b'],
  2169.         'f4v' => ['video/mp4''video/mp4v-es''video/x-f4v''video/x-m4v'],
  2170.         'f77' => ['text/x-fortran'],
  2171.         'f90' => ['text/x-fortran'],
  2172.         'f95' => ['text/x-fortran'],
  2173.         'fasl' => ['text/x-common-lisp'],
  2174.         'fb2' => ['application/x-fictionbook''application/x-fictionbook+xml'],
  2175.         'fb2.zip' => ['application/x-zip-compressed-fb2'],
  2176.         'fbs' => ['image/vnd.fastbidsheet'],
  2177.         'fcdt' => ['application/vnd.adobe.formscentral.fcdt'],
  2178.         'fcs' => ['application/vnd.isac.fcs'],
  2179.         'fd' => ['application/x-fd-file''application/x-raw-floppy-disk-image'],
  2180.         'fdf' => ['application/vnd.fdf'],
  2181.         'fds' => ['application/x-fds-disk'],
  2182.         'fdt' => ['application/fdt+xml'],
  2183.         'fe_launch' => ['application/vnd.denovo.fcselayout-link'],
  2184.         'feature' => ['text/x-gherkin'],
  2185.         'fg5' => ['application/vnd.fujitsu.oasysgp'],
  2186.         'fgd' => ['application/x-director'],
  2187.         'fh' => ['image/x-freehand'],
  2188.         'fh4' => ['image/x-freehand'],
  2189.         'fh5' => ['image/x-freehand'],
  2190.         'fh7' => ['image/x-freehand'],
  2191.         'fhc' => ['image/x-freehand'],
  2192.         'fig' => ['application/x-xfig''image/x-xfig'],
  2193.         'fits' => ['image/fits''image/x-fits'],
  2194.         'fl' => ['application/x-fluid'],
  2195.         'flac' => ['audio/flac''audio/x-flac'],
  2196.         'flatpak' => ['application/vnd.flatpak''application/vnd.xdgapp'],
  2197.         'flatpakref' => ['application/vnd.flatpak.ref'],
  2198.         'flatpakrepo' => ['application/vnd.flatpak.repo'],
  2199.         'flc' => ['video/fli''video/x-fli''video/x-flic'],
  2200.         'fli' => ['video/fli''video/x-fli''video/x-flic'],
  2201.         'flo' => ['application/vnd.micrografx.flo'],
  2202.         'flv' => ['video/x-flv''application/x-flash-video''flv-application/octet-stream''video/flv'],
  2203.         'flw' => ['application/vnd.kde.kivio''application/x-kivio'],
  2204.         'flx' => ['text/vnd.fmi.flexstor'],
  2205.         'fly' => ['text/vnd.fly'],
  2206.         'fm' => ['application/vnd.framemaker''application/x-frame'],
  2207.         'fnc' => ['application/vnd.frogans.fnc'],
  2208.         'fo' => ['application/vnd.software602.filler.form+xml''text/x-xslfo'],
  2209.         'fodg' => ['application/vnd.oasis.opendocument.graphics-flat-xml'],
  2210.         'fodp' => ['application/vnd.oasis.opendocument.presentation-flat-xml'],
  2211.         'fods' => ['application/vnd.oasis.opendocument.spreadsheet-flat-xml'],
  2212.         'fodt' => ['application/vnd.oasis.opendocument.text-flat-xml'],
  2213.         'for' => ['text/x-fortran'],
  2214.         'fpx' => ['image/vnd.fpx'],
  2215.         'frame' => ['application/vnd.framemaker'],
  2216.         'fsc' => ['application/vnd.fsc.weblaunch'],
  2217.         'fst' => ['image/vnd.fst'],
  2218.         'ftc' => ['application/vnd.fluxtime.clip'],
  2219.         'fti' => ['application/vnd.anser-web-funds-transfer-initiation'],
  2220.         'fvt' => ['video/vnd.fvt'],
  2221.         'fxm' => ['video/x-javafx'],
  2222.         'fxp' => ['application/vnd.adobe.fxp'],
  2223.         'fxpl' => ['application/vnd.adobe.fxp'],
  2224.         'fzs' => ['application/vnd.fuzzysheet'],
  2225.         'g2w' => ['application/vnd.geoplan'],
  2226.         'g3' => ['image/fax-g3''image/g3fax'],
  2227.         'g3w' => ['application/vnd.geospace'],
  2228.         'gac' => ['application/vnd.groove-account'],
  2229.         'gam' => ['application/x-tads'],
  2230.         'gb' => ['application/x-gameboy-rom'],
  2231.         'gba' => ['application/x-gba-rom'],
  2232.         'gbc' => ['application/x-gameboy-color-rom'],
  2233.         'gbr' => ['application/rpki-ghostbusters''image/x-gimp-gbr'],
  2234.         'gca' => ['application/x-gca-compressed'],
  2235.         'gcode' => ['text/x.gcode'],
  2236.         'gcrd' => ['text/directory''text/vcard''text/x-vcard'],
  2237.         'gdi' => ['application/x-gd-rom-cue'],
  2238.         'gdl' => ['model/vnd.gdl'],
  2239.         'gdoc' => ['application/vnd.google-apps.document'],
  2240.         'ged' => ['application/x-gedcom''text/gedcom'],
  2241.         'gedcom' => ['application/x-gedcom''text/gedcom'],
  2242.         'gem' => ['application/x-gtar''application/x-tar'],
  2243.         'gen' => ['application/x-genesis-rom'],
  2244.         'geo' => ['application/vnd.dynageo'],
  2245.         'geo.json' => ['application/geo+json''application/vnd.geo+json'],
  2246.         'geojson' => ['application/geo+json''application/vnd.geo+json'],
  2247.         'gex' => ['application/vnd.geometry-explorer'],
  2248.         'gf' => ['application/x-tex-gf'],
  2249.         'gg' => ['application/x-gamegear-rom'],
  2250.         'ggb' => ['application/vnd.geogebra.file'],
  2251.         'ggt' => ['application/vnd.geogebra.tool'],
  2252.         'ghf' => ['application/vnd.groove-help'],
  2253.         'gif' => ['image/gif'],
  2254.         'gih' => ['image/x-gimp-gih'],
  2255.         'gim' => ['application/vnd.groove-identity-message'],
  2256.         'glade' => ['application/x-glade'],
  2257.         'glb' => ['model/gltf-binary'],
  2258.         'gltf' => ['model/gltf+json'],
  2259.         'gml' => ['application/gml+xml'],
  2260.         'gmo' => ['application/x-gettext-translation'],
  2261.         'gmx' => ['application/vnd.gmx'],
  2262.         'gnc' => ['application/x-gnucash'],
  2263.         'gnd' => ['application/gnunet-directory'],
  2264.         'gnucash' => ['application/x-gnucash'],
  2265.         'gnumeric' => ['application/x-gnumeric'],
  2266.         'gnuplot' => ['application/x-gnuplot'],
  2267.         'go' => ['text/x-go'],
  2268.         'gp' => ['application/x-gnuplot'],
  2269.         'gpg' => ['application/pgp''application/pgp-encrypted''application/pgp-keys''application/pgp-signature'],
  2270.         'gph' => ['application/vnd.flographit'],
  2271.         'gplt' => ['application/x-gnuplot'],
  2272.         'gpx' => ['application/gpx''application/gpx+xml''application/x-gpx''application/x-gpx+xml'],
  2273.         'gqf' => ['application/vnd.grafeq'],
  2274.         'gqs' => ['application/vnd.grafeq'],
  2275.         'gra' => ['application/x-graphite'],
  2276.         'gradle' => ['text/x-gradle'],
  2277.         'gram' => ['application/srgs'],
  2278.         'gramps' => ['application/x-gramps-xml'],
  2279.         'gre' => ['application/vnd.geometry-explorer'],
  2280.         'groovy' => ['text/x-groovy'],
  2281.         'grv' => ['application/vnd.groove-injector'],
  2282.         'grxml' => ['application/srgs+xml'],
  2283.         'gs' => ['text/x-genie'],
  2284.         'gsf' => ['application/x-font-ghostscript''application/x-font-type1'],
  2285.         'gsh' => ['text/x-groovy'],
  2286.         'gsheet' => ['application/vnd.google-apps.spreadsheet'],
  2287.         'gslides' => ['application/vnd.google-apps.presentation'],
  2288.         'gsm' => ['audio/x-gsm'],
  2289.         'gtar' => ['application/x-gtar''application/x-tar'],
  2290.         'gtm' => ['application/vnd.groove-tool-message'],
  2291.         'gtw' => ['model/vnd.gtw'],
  2292.         'gv' => ['text/vnd.graphviz'],
  2293.         'gvp' => ['text/google-video-pointer''text/x-google-video-pointer'],
  2294.         'gvy' => ['text/x-groovy'],
  2295.         'gxf' => ['application/gxf'],
  2296.         'gxt' => ['application/vnd.geonext'],
  2297.         'gy' => ['text/x-groovy'],
  2298.         'gz' => ['application/x-gzip''application/gzip'],
  2299.         'h' => ['text/x-c''text/x-chdr'],
  2300.         'h++' => ['text/x-c++hdr'],
  2301.         'h261' => ['video/h261'],
  2302.         'h263' => ['video/h263'],
  2303.         'h264' => ['video/h264'],
  2304.         'h4' => ['application/x-hdf'],
  2305.         'h5' => ['application/x-hdf'],
  2306.         'hal' => ['application/vnd.hal+xml'],
  2307.         'hbci' => ['application/vnd.hbci'],
  2308.         'hbs' => ['text/x-handlebars-template'],
  2309.         'hdd' => ['application/x-virtualbox-hdd'],
  2310.         'hdf' => ['application/x-hdf'],
  2311.         'hdf4' => ['application/x-hdf'],
  2312.         'hdf5' => ['application/x-hdf'],
  2313.         'heic' => ['image/heic''image/heic-sequence''image/heif''image/heif-sequence'],
  2314.         'heics' => ['image/heic-sequence'],
  2315.         'heif' => ['image/heic''image/heic-sequence''image/heif''image/heif-sequence'],
  2316.         'heifs' => ['image/heif-sequence'],
  2317.         'hej2' => ['image/hej2k'],
  2318.         'held' => ['application/atsc-held+xml'],
  2319.         'hfe' => ['application/x-hfe-file''application/x-hfe-floppy-image'],
  2320.         'hh' => ['text/x-c''text/x-c++hdr'],
  2321.         'hjson' => ['application/hjson'],
  2322.         'hlp' => ['application/winhlp''zz-application/zz-winassoc-hlp'],
  2323.         'hp' => ['text/x-c++hdr'],
  2324.         'hpgl' => ['application/vnd.hp-hpgl'],
  2325.         'hpid' => ['application/vnd.hp-hpid'],
  2326.         'hpp' => ['text/x-c++hdr'],
  2327.         'hps' => ['application/vnd.hp-hps'],
  2328.         'hqx' => ['application/stuffit''application/mac-binhex40'],
  2329.         'hs' => ['text/x-haskell'],
  2330.         'hsj2' => ['image/hsj2'],
  2331.         'htc' => ['text/x-component'],
  2332.         'htke' => ['application/vnd.kenameaapp'],
  2333.         'htm' => ['text/html''application/xhtml+xml'],
  2334.         'html' => ['text/html''application/xhtml+xml'],
  2335.         'hvd' => ['application/vnd.yamaha.hv-dic'],
  2336.         'hvp' => ['application/vnd.yamaha.hv-voice'],
  2337.         'hvs' => ['application/vnd.yamaha.hv-script'],
  2338.         'hwp' => ['application/vnd.haansoft-hwp''application/x-hwp'],
  2339.         'hwt' => ['application/vnd.haansoft-hwt''application/x-hwt'],
  2340.         'hxx' => ['text/x-c++hdr'],
  2341.         'i2g' => ['application/vnd.intergeo'],
  2342.         'ica' => ['application/x-ica'],
  2343.         'icb' => ['application/tga''application/x-targa''application/x-tga''image/targa''image/tga''image/x-icb''image/x-targa''image/x-tga'],
  2344.         'icc' => ['application/vnd.iccprofile'],
  2345.         'ice' => ['x-conference/x-cooltalk'],
  2346.         'icm' => ['application/vnd.iccprofile'],
  2347.         'icns' => ['image/x-icns'],
  2348.         'ico' => ['application/ico''image/ico''image/icon''image/vnd.microsoft.icon''image/x-ico''image/x-icon''text/ico'],
  2349.         'ics' => ['application/ics''text/calendar''text/x-vcalendar'],
  2350.         'idl' => ['text/x-idl'],
  2351.         'ief' => ['image/ief'],
  2352.         'ifb' => ['text/calendar'],
  2353.         'iff' => ['image/x-iff''image/x-ilbm'],
  2354.         'ifm' => ['application/vnd.shana.informed.formdata'],
  2355.         'iges' => ['model/iges'],
  2356.         'igl' => ['application/vnd.igloader'],
  2357.         'igm' => ['application/vnd.insors.igm'],
  2358.         'igs' => ['model/iges'],
  2359.         'igx' => ['application/vnd.micrografx.igx'],
  2360.         'iif' => ['application/vnd.shana.informed.interchange'],
  2361.         'ilbm' => ['image/x-iff''image/x-ilbm'],
  2362.         'ime' => ['audio/imelody''audio/x-imelody''text/x-imelody'],
  2363.         'img' => ['application/x-raw-disk-image'],
  2364.         'img.xz' => ['application/x-raw-disk-image-xz-compressed'],
  2365.         'imp' => ['application/vnd.accpac.simply.imp'],
  2366.         'ims' => ['application/vnd.ms-ims'],
  2367.         'imy' => ['audio/imelody''audio/x-imelody''text/x-imelody'],
  2368.         'in' => ['text/plain'],
  2369.         'ini' => ['text/plain'],
  2370.         'ink' => ['application/inkml+xml'],
  2371.         'inkml' => ['application/inkml+xml'],
  2372.         'ins' => ['application/x-tex''text/x-tex'],
  2373.         'install' => ['application/x-install-instructions'],
  2374.         'iota' => ['application/vnd.astraea-software.iota'],
  2375.         'ipfix' => ['application/ipfix'],
  2376.         'ipk' => ['application/vnd.shana.informed.package'],
  2377.         'ips' => ['application/x-ips-patch'],
  2378.         'iptables' => ['text/x-iptables'],
  2379.         'ipynb' => ['application/x-ipynb+json'],
  2380.         'irm' => ['application/vnd.ibm.rights-management'],
  2381.         'irp' => ['application/vnd.irepository.package+xml'],
  2382.         'iso' => ['application/x-cd-image''application/x-dreamcast-rom''application/x-gamecube-iso-image''application/x-gamecube-rom''application/x-iso9660-image''application/x-saturn-rom''application/x-sega-cd-rom''application/x-sega-pico-rom''application/x-wbfs''application/x-wia''application/x-wii-iso-image''application/x-wii-rom'],
  2383.         'iso9660' => ['application/x-cd-image''application/x-iso9660-image'],
  2384.         'it' => ['audio/x-it'],
  2385.         'it87' => ['application/x-it87'],
  2386.         'itp' => ['application/vnd.shana.informed.formtemplate'],
  2387.         'its' => ['application/its+xml'],
  2388.         'ivp' => ['application/vnd.immervision-ivp'],
  2389.         'ivu' => ['application/vnd.immervision-ivu'],
  2390.         'j2c' => ['image/x-jp2-codestream'],
  2391.         'j2k' => ['image/x-jp2-codestream'],
  2392.         'jad' => ['text/vnd.sun.j2me.app-descriptor'],
  2393.         'jade' => ['text/jade'],
  2394.         'jam' => ['application/vnd.jam'],
  2395.         'jar' => ['application/x-java-archive''application/java-archive''application/x-jar'],
  2396.         'jardiff' => ['application/x-java-archive-diff'],
  2397.         'java' => ['text/x-java''text/x-java-source'],
  2398.         'jceks' => ['application/x-java-jce-keystore'],
  2399.         'jhc' => ['image/jphc'],
  2400.         'jisp' => ['application/vnd.jisp'],
  2401.         'jks' => ['application/x-java-keystore'],
  2402.         'jls' => ['image/jls'],
  2403.         'jlt' => ['application/vnd.hp-jlyt'],
  2404.         'jng' => ['image/x-jng'],
  2405.         'jnlp' => ['application/x-java-jnlp-file'],
  2406.         'joda' => ['application/vnd.joost.joda-archive'],
  2407.         'jp2' => ['image/jp2''image/jpeg2000''image/jpeg2000-image''image/x-jpeg2000-image'],
  2408.         'jpc' => ['image/x-jp2-codestream'],
  2409.         'jpe' => ['image/jpeg''image/pjpeg'],
  2410.         'jpeg' => ['image/jpeg''image/pjpeg'],
  2411.         'jpf' => ['image/jpx'],
  2412.         'jpg' => ['image/jpeg''image/pjpeg'],
  2413.         'jpg2' => ['image/jp2''image/jpeg2000''image/jpeg2000-image''image/x-jpeg2000-image'],
  2414.         'jpgm' => ['image/jpm''video/jpm'],
  2415.         'jpgv' => ['video/jpeg'],
  2416.         'jph' => ['image/jph'],
  2417.         'jpm' => ['image/jpm''video/jpm'],
  2418.         'jpr' => ['application/x-jbuilder-project'],
  2419.         'jpx' => ['application/x-jbuilder-project''image/jpx'],
  2420.         'jrd' => ['application/jrd+json'],
  2421.         'js' => ['text/javascript''application/javascript''application/x-javascript'],
  2422.         'jsm' => ['application/javascript''application/x-javascript''text/javascript'],
  2423.         'json' => ['application/json''application/schema+json'],
  2424.         'json-patch' => ['application/json-patch+json'],
  2425.         'json5' => ['application/json5'],
  2426.         'jsonld' => ['application/ld+json'],
  2427.         'jsonml' => ['application/jsonml+json'],
  2428.         'jsx' => ['text/jsx'],
  2429.         'jxl' => ['image/jxl'],
  2430.         'jxr' => ['image/jxr'],
  2431.         'jxra' => ['image/jxra'],
  2432.         'jxrs' => ['image/jxrs'],
  2433.         'jxs' => ['image/jxs'],
  2434.         'jxsc' => ['image/jxsc'],
  2435.         'jxsi' => ['image/jxsi'],
  2436.         'jxss' => ['image/jxss'],
  2437.         'k25' => ['image/x-kodak-k25'],
  2438.         'k7' => ['application/x-thomson-cassette'],
  2439.         'kar' => ['audio/midi''audio/x-midi'],
  2440.         'karbon' => ['application/vnd.kde.karbon''application/x-karbon'],
  2441.         'kdbx' => ['application/x-keepass2'],
  2442.         'kdc' => ['image/x-kodak-kdc'],
  2443.         'kdelnk' => ['application/x-desktop''application/x-gnome-app-info'],
  2444.         'kexi' => ['application/x-kexiproject-sqlite''application/x-kexiproject-sqlite2''application/x-kexiproject-sqlite3''application/x-vnd.kde.kexi'],
  2445.         'kexic' => ['application/x-kexi-connectiondata'],
  2446.         'kexis' => ['application/x-kexiproject-shortcut'],
  2447.         'key' => ['application/vnd.apple.keynote''application/pgp-keys''application/x-iwork-keynote-sffkey'],
  2448.         'keynote' => ['application/vnd.apple.keynote'],
  2449.         'kfo' => ['application/vnd.kde.kformula''application/x-kformula'],
  2450.         'kfx' => ['application/vnd.amazon.mobi8-ebook''application/x-mobi8-ebook'],
  2451.         'kia' => ['application/vnd.kidspiration'],
  2452.         'kil' => ['application/x-killustrator'],
  2453.         'kino' => ['application/smil''application/smil+xml'],
  2454.         'kml' => ['application/vnd.google-earth.kml+xml'],
  2455.         'kmz' => ['application/vnd.google-earth.kmz'],
  2456.         'kne' => ['application/vnd.kinar'],
  2457.         'knp' => ['application/vnd.kinar'],
  2458.         'kon' => ['application/vnd.kde.kontour''application/x-kontour'],
  2459.         'kpm' => ['application/x-kpovmodeler'],
  2460.         'kpr' => ['application/vnd.kde.kpresenter''application/x-kpresenter'],
  2461.         'kpt' => ['application/vnd.kde.kpresenter''application/x-kpresenter'],
  2462.         'kpxx' => ['application/vnd.ds-keypoint'],
  2463.         'kra' => ['application/x-krita'],
  2464.         'krz' => ['application/x-krita'],
  2465.         'ks' => ['application/x-java-keystore'],
  2466.         'ksp' => ['application/vnd.kde.kspread''application/x-kspread'],
  2467.         'ksy' => ['text/x-kaitai-struct'],
  2468.         'kt' => ['text/x-kotlin'],
  2469.         'ktr' => ['application/vnd.kahootz'],
  2470.         'ktx' => ['image/ktx'],
  2471.         'ktx2' => ['image/ktx2'],
  2472.         'ktz' => ['application/vnd.kahootz'],
  2473.         'kud' => ['application/x-kugar'],
  2474.         'kwd' => ['application/vnd.kde.kword''application/x-kword'],
  2475.         'kwt' => ['application/vnd.kde.kword''application/x-kword'],
  2476.         'la' => ['application/x-shared-library-la'],
  2477.         'lasxml' => ['application/vnd.las.las+xml'],
  2478.         'latex' => ['application/x-latex''application/x-tex''text/x-tex'],
  2479.         'lbd' => ['application/vnd.llamagraphics.life-balance.desktop'],
  2480.         'lbe' => ['application/vnd.llamagraphics.life-balance.exchange+xml'],
  2481.         'lbm' => ['image/x-iff''image/x-ilbm'],
  2482.         'ldif' => ['text/x-ldif'],
  2483.         'les' => ['application/vnd.hhe.lesson-player'],
  2484.         'less' => ['text/less'],
  2485.         'lgr' => ['application/lgr+xml'],
  2486.         'lha' => ['application/x-lha''application/x-lzh-compressed'],
  2487.         'lhs' => ['text/x-literate-haskell'],
  2488.         'lhz' => ['application/x-lhz'],
  2489.         'link66' => ['application/vnd.route66.link66+xml'],
  2490.         'lisp' => ['text/x-common-lisp'],
  2491.         'list' => ['text/plain'],
  2492.         'list3820' => ['application/vnd.ibm.modcap'],
  2493.         'listafp' => ['application/vnd.ibm.modcap'],
  2494.         'litcoffee' => ['text/coffeescript'],
  2495.         'lnk' => ['application/x-ms-shortcut'],
  2496.         'lnx' => ['application/x-atari-lynx-rom'],
  2497.         'loas' => ['audio/usac'],
  2498.         'log' => ['text/plain''text/x-log'],
  2499.         'lostxml' => ['application/lost+xml'],
  2500.         'lrm' => ['application/vnd.ms-lrm'],
  2501.         'lrv' => ['video/mp4''video/mp4v-es''video/x-m4v'],
  2502.         'lrz' => ['application/x-lrzip'],
  2503.         'ltf' => ['application/vnd.frogans.ltf'],
  2504.         'ltx' => ['application/x-tex''text/x-tex'],
  2505.         'lua' => ['text/x-lua'],
  2506.         'luac' => ['application/x-lua-bytecode'],
  2507.         'lvp' => ['audio/vnd.lucent.voice'],
  2508.         'lwo' => ['image/x-lwo'],
  2509.         'lwob' => ['image/x-lwo'],
  2510.         'lwp' => ['application/vnd.lotus-wordpro'],
  2511.         'lws' => ['image/x-lws'],
  2512.         'ly' => ['text/x-lilypond'],
  2513.         'lyx' => ['application/x-lyx''text/x-lyx'],
  2514.         'lz' => ['application/x-lzip'],
  2515.         'lz4' => ['application/x-lz4'],
  2516.         'lzh' => ['application/x-lha''application/x-lzh-compressed'],
  2517.         'lzma' => ['application/x-lzma'],
  2518.         'lzo' => ['application/x-lzop'],
  2519.         'm' => ['text/x-matlab''text/x-objcsrc''text/x-octave'],
  2520.         'm13' => ['application/x-msmediaview'],
  2521.         'm14' => ['application/x-msmediaview'],
  2522.         'm15' => ['audio/x-mod'],
  2523.         'm1u' => ['video/vnd.mpegurl''video/x-mpegurl'],
  2524.         'm1v' => ['video/mpeg'],
  2525.         'm21' => ['application/mp21'],
  2526.         'm2a' => ['audio/mpeg'],
  2527.         'm2t' => ['video/mp2t'],
  2528.         'm2ts' => ['video/mp2t'],
  2529.         'm2v' => ['video/mpeg'],
  2530.         'm3a' => ['audio/mpeg'],
  2531.         'm3u' => ['audio/x-mpegurl''application/m3u''application/vnd.apple.mpegurl''audio/m3u''audio/mpegurl''audio/x-m3u''audio/x-mp3-playlist'],
  2532.         'm3u8' => ['application/m3u''application/vnd.apple.mpegurl''audio/m3u''audio/mpegurl''audio/x-m3u''audio/x-mp3-playlist''audio/x-mpegurl'],
  2533.         'm4' => ['application/x-m4'],
  2534.         'm4a' => ['audio/mp4''audio/m4a''audio/x-m4a'],
  2535.         'm4b' => ['audio/x-m4b'],
  2536.         'm4p' => ['application/mp4'],
  2537.         'm4r' => ['audio/x-m4r'],
  2538.         'm4s' => ['video/iso.segment'],
  2539.         'm4u' => ['video/vnd.mpegurl''video/x-mpegurl'],
  2540.         'm4v' => ['video/mp4''video/mp4v-es''video/x-m4v'],
  2541.         'm7' => ['application/x-thomson-cartridge-memo7'],
  2542.         'ma' => ['application/mathematica'],
  2543.         'mab' => ['application/x-markaby'],
  2544.         'mads' => ['application/mads+xml'],
  2545.         'maei' => ['application/mmt-aei+xml'],
  2546.         'mag' => ['application/vnd.ecowin.chart'],
  2547.         'mak' => ['text/x-makefile'],
  2548.         'maker' => ['application/vnd.framemaker'],
  2549.         'man' => ['application/x-troff-man''text/troff'],
  2550.         'manifest' => ['text/cache-manifest'],
  2551.         'map' => ['application/json'],
  2552.         'markdown' => ['text/markdown''text/x-markdown'],
  2553.         'mathml' => ['application/mathml+xml'],
  2554.         'mb' => ['application/mathematica'],
  2555.         'mbk' => ['application/vnd.mobius.mbk'],
  2556.         'mbox' => ['application/mbox'],
  2557.         'mc1' => ['application/vnd.medcalcdata'],
  2558.         'mc2' => ['text/vnd.senx.warpscript'],
  2559.         'mcd' => ['application/vnd.mcd'],
  2560.         'mcurl' => ['text/vnd.curl.mcurl'],
  2561.         'md' => ['text/markdown''text/x-markdown'],
  2562.         'mdb' => ['application/x-msaccess''application/mdb''application/msaccess''application/vnd.ms-access''application/vnd.msaccess''application/x-mdb''zz-application/zz-winassoc-mdb'],
  2563.         'mdi' => ['image/vnd.ms-modi'],
  2564.         'mdx' => ['application/x-genesis-32x-rom''text/mdx'],
  2565.         'me' => ['text/troff''text/x-troff-me'],
  2566.         'med' => ['audio/x-mod'],
  2567.         'mesh' => ['model/mesh'],
  2568.         'meta4' => ['application/metalink4+xml'],
  2569.         'metalink' => ['application/metalink+xml'],
  2570.         'mets' => ['application/mets+xml'],
  2571.         'mfm' => ['application/vnd.mfmp'],
  2572.         'mft' => ['application/rpki-manifest'],
  2573.         'mgp' => ['application/vnd.osgeo.mapguide.package''application/x-magicpoint'],
  2574.         'mgz' => ['application/vnd.proteus.magazine'],
  2575.         'mht' => ['application/x-mimearchive'],
  2576.         'mhtml' => ['application/x-mimearchive'],
  2577.         'mid' => ['audio/midi''audio/x-midi'],
  2578.         'midi' => ['audio/midi''audio/x-midi'],
  2579.         'mie' => ['application/x-mie'],
  2580.         'mif' => ['application/vnd.mif''application/x-mif'],
  2581.         'mime' => ['message/rfc822'],
  2582.         'minipsf' => ['audio/x-minipsf'],
  2583.         'mj2' => ['video/mj2'],
  2584.         'mjp2' => ['video/mj2'],
  2585.         'mjpeg' => ['video/x-mjpeg'],
  2586.         'mjpg' => ['video/x-mjpeg'],
  2587.         'mjs' => ['application/javascript''application/x-javascript''text/javascript'],
  2588.         'mk' => ['text/x-makefile'],
  2589.         'mk3d' => ['video/x-matroska''video/x-matroska-3d'],
  2590.         'mka' => ['audio/x-matroska'],
  2591.         'mkd' => ['text/markdown''text/x-markdown'],
  2592.         'mks' => ['video/x-matroska'],
  2593.         'mkv' => ['video/x-matroska'],
  2594.         'ml' => ['text/x-ocaml'],
  2595.         'mli' => ['text/x-ocaml'],
  2596.         'mlp' => ['application/vnd.dolby.mlp'],
  2597.         'mm' => ['text/x-troff-mm'],
  2598.         'mmd' => ['application/vnd.chipnuts.karaoke-mmd'],
  2599.         'mmf' => ['application/vnd.smaf''application/x-smaf'],
  2600.         'mml' => ['application/mathml+xml''text/mathml'],
  2601.         'mmr' => ['image/vnd.fujixerox.edmics-mmr'],
  2602.         'mng' => ['video/x-mng'],
  2603.         'mny' => ['application/x-msmoney'],
  2604.         'mo' => ['application/x-gettext-translation''text/x-modelica'],
  2605.         'mo3' => ['audio/x-mo3'],
  2606.         'mobi' => ['application/x-mobipocket-ebook'],
  2607.         'moc' => ['text/x-moc'],
  2608.         'mod' => ['application/x-object''audio/x-mod'],
  2609.         'mods' => ['application/mods+xml'],
  2610.         'mof' => ['text/x-mof'],
  2611.         'moov' => ['video/quicktime'],
  2612.         'mount' => ['text/x-systemd-unit'],
  2613.         'mov' => ['video/quicktime'],
  2614.         'movie' => ['video/x-sgi-movie'],
  2615.         'mp+' => ['audio/x-musepack'],
  2616.         'mp2' => ['audio/mp2''audio/mpeg''audio/x-mp2''video/mpeg''video/mpeg-system''video/x-mpeg''video/x-mpeg-system''video/x-mpeg2'],
  2617.         'mp21' => ['application/mp21'],
  2618.         'mp2a' => ['audio/mpeg'],
  2619.         'mp3' => ['audio/mpeg''audio/mp3''audio/x-mp3''audio/x-mpeg''audio/x-mpg'],
  2620.         'mp4' => ['video/mp4''video/mp4v-es''video/x-m4v'],
  2621.         'mp4a' => ['audio/mp4'],
  2622.         'mp4s' => ['application/mp4'],
  2623.         'mp4v' => ['video/mp4'],
  2624.         'mpc' => ['application/vnd.mophun.certificate''audio/x-musepack'],
  2625.         'mpd' => ['application/dash+xml'],
  2626.         'mpe' => ['video/mpeg''video/mpeg-system''video/x-mpeg''video/x-mpeg-system''video/x-mpeg2'],
  2627.         'mpeg' => ['video/mpeg''video/mpeg-system''video/x-mpeg''video/x-mpeg-system''video/x-mpeg2'],
  2628.         'mpg' => ['video/mpeg''video/mpeg-system''video/x-mpeg''video/x-mpeg-system''video/x-mpeg2'],
  2629.         'mpg4' => ['video/mp4'],
  2630.         'mpga' => ['audio/mp3''audio/mpeg''audio/x-mp3''audio/x-mpeg''audio/x-mpg'],
  2631.         'mpkg' => ['application/vnd.apple.installer+xml'],
  2632.         'mpl' => ['video/mp2t'],
  2633.         'mpls' => ['video/mp2t'],
  2634.         'mpm' => ['application/vnd.blueice.multipass'],
  2635.         'mpn' => ['application/vnd.mophun.application'],
  2636.         'mpp' => ['application/vnd.ms-project''audio/x-musepack'],
  2637.         'mpt' => ['application/vnd.ms-project'],
  2638.         'mpy' => ['application/vnd.ibm.minipay'],
  2639.         'mqy' => ['application/vnd.mobius.mqy'],
  2640.         'mrc' => ['application/marc'],
  2641.         'mrcx' => ['application/marcxml+xml'],
  2642.         'mrl' => ['text/x-mrml'],
  2643.         'mrml' => ['text/x-mrml'],
  2644.         'mrw' => ['image/x-minolta-mrw'],
  2645.         'ms' => ['text/troff''text/x-troff-ms'],
  2646.         'mscml' => ['application/mediaservercontrol+xml'],
  2647.         'mseed' => ['application/vnd.fdsn.mseed'],
  2648.         'mseq' => ['application/vnd.mseq'],
  2649.         'msf' => ['application/vnd.epson.msf'],
  2650.         'msg' => ['application/vnd.ms-outlook'],
  2651.         'msh' => ['model/mesh'],
  2652.         'msi' => ['application/x-msdownload''application/x-msi'],
  2653.         'msl' => ['application/vnd.mobius.msl'],
  2654.         'msod' => ['image/x-msod'],
  2655.         'msty' => ['application/vnd.muvee.style'],
  2656.         'msx' => ['application/x-msx-rom'],
  2657.         'mtl' => ['model/mtl'],
  2658.         'mtm' => ['audio/x-mod'],
  2659.         'mts' => ['model/vnd.mts''video/mp2t'],
  2660.         'mup' => ['text/x-mup'],
  2661.         'mus' => ['application/vnd.musician'],
  2662.         'musd' => ['application/mmt-usd+xml'],
  2663.         'musicxml' => ['application/vnd.recordare.musicxml+xml'],
  2664.         'mvb' => ['application/x-msmediaview'],
  2665.         'mvt' => ['application/vnd.mapbox-vector-tile'],
  2666.         'mwf' => ['application/vnd.mfer'],
  2667.         'mxf' => ['application/mxf'],
  2668.         'mxl' => ['application/vnd.recordare.musicxml'],
  2669.         'mxmf' => ['audio/mobile-xmf'],
  2670.         'mxml' => ['application/xv+xml'],
  2671.         'mxs' => ['application/vnd.triscape.mxs'],
  2672.         'mxu' => ['video/vnd.mpegurl''video/x-mpegurl'],
  2673.         'n-gage' => ['application/vnd.nokia.n-gage.symbian.install'],
  2674.         'n3' => ['text/n3'],
  2675.         'n64' => ['application/x-n64-rom'],
  2676.         'nb' => ['application/mathematica''application/x-mathematica'],
  2677.         'nbp' => ['application/vnd.wolfram.player'],
  2678.         'nc' => ['application/x-netcdf'],
  2679.         'ncx' => ['application/x-dtbncx+xml'],
  2680.         'nds' => ['application/x-nintendo-ds-rom'],
  2681.         'nef' => ['image/x-nikon-nef'],
  2682.         'nes' => ['application/x-nes-rom'],
  2683.         'nez' => ['application/x-nes-rom'],
  2684.         'nfo' => ['text/x-nfo'],
  2685.         'ngc' => ['application/x-neo-geo-pocket-color-rom'],
  2686.         'ngdat' => ['application/vnd.nokia.n-gage.data'],
  2687.         'ngp' => ['application/x-neo-geo-pocket-rom'],
  2688.         'nitf' => ['application/vnd.nitf'],
  2689.         'nlu' => ['application/vnd.neurolanguage.nlu'],
  2690.         'nml' => ['application/vnd.enliven'],
  2691.         'nnd' => ['application/vnd.noblenet-directory'],
  2692.         'nns' => ['application/vnd.noblenet-sealer'],
  2693.         'nnw' => ['application/vnd.noblenet-web'],
  2694.         'not' => ['text/x-mup'],
  2695.         'npx' => ['image/vnd.net-fpx'],
  2696.         'nq' => ['application/n-quads'],
  2697.         'nrw' => ['image/x-nikon-nrw'],
  2698.         'nsc' => ['application/x-conference''application/x-netshow-channel'],
  2699.         'nsf' => ['application/vnd.lotus-notes'],
  2700.         'nsv' => ['video/x-nsv'],
  2701.         'nt' => ['application/n-triples'],
  2702.         'ntf' => ['application/vnd.nitf'],
  2703.         'numbers' => ['application/vnd.apple.numbers''application/x-iwork-numbers-sffnumbers'],
  2704.         'nzb' => ['application/x-nzb'],
  2705.         'o' => ['application/x-object'],
  2706.         'oa2' => ['application/vnd.fujitsu.oasys2'],
  2707.         'oa3' => ['application/vnd.fujitsu.oasys3'],
  2708.         'oas' => ['application/vnd.fujitsu.oasys'],
  2709.         'obd' => ['application/x-msbinder'],
  2710.         'obgx' => ['application/vnd.openblox.game+xml'],
  2711.         'obj' => ['application/x-tgif''model/obj'],
  2712.         'ocl' => ['text/x-ocl'],
  2713.         'oda' => ['application/oda'],
  2714.         'odb' => ['application/vnd.oasis.opendocument.database''application/vnd.sun.xml.base'],
  2715.         'odc' => ['application/vnd.oasis.opendocument.chart'],
  2716.         'odf' => ['application/vnd.oasis.opendocument.formula'],
  2717.         'odft' => ['application/vnd.oasis.opendocument.formula-template'],
  2718.         'odg' => ['application/vnd.oasis.opendocument.graphics'],
  2719.         'odi' => ['application/vnd.oasis.opendocument.image'],
  2720.         'odm' => ['application/vnd.oasis.opendocument.text-master'],
  2721.         'odp' => ['application/vnd.oasis.opendocument.presentation'],
  2722.         'ods' => ['application/vnd.oasis.opendocument.spreadsheet'],
  2723.         'odt' => ['application/vnd.oasis.opendocument.text'],
  2724.         'oga' => ['audio/ogg''audio/vorbis''audio/x-flac+ogg''audio/x-ogg''audio/x-oggflac''audio/x-speex+ogg''audio/x-vorbis''audio/x-vorbis+ogg'],
  2725.         'ogex' => ['model/vnd.opengex'],
  2726.         'ogg' => ['audio/ogg''audio/vorbis''audio/x-flac+ogg''audio/x-ogg''audio/x-oggflac''audio/x-speex+ogg''audio/x-vorbis''audio/x-vorbis+ogg''video/ogg''video/x-ogg''video/x-theora''video/x-theora+ogg'],
  2727.         'ogm' => ['video/x-ogm''video/x-ogm+ogg'],
  2728.         'ogv' => ['video/ogg''video/x-ogg'],
  2729.         'ogx' => ['application/ogg''application/x-ogg'],
  2730.         'old' => ['application/x-trash'],
  2731.         'oleo' => ['application/x-oleo'],
  2732.         'omdoc' => ['application/omdoc+xml'],
  2733.         'onepkg' => ['application/onenote'],
  2734.         'onetmp' => ['application/onenote'],
  2735.         'onetoc' => ['application/onenote'],
  2736.         'onetoc2' => ['application/onenote'],
  2737.         'ooc' => ['text/x-ooc'],
  2738.         'opf' => ['application/oebps-package+xml'],
  2739.         'opml' => ['text/x-opml''text/x-opml+xml'],
  2740.         'oprc' => ['application/vnd.palm''application/x-palm-database'],
  2741.         'opus' => ['audio/ogg''audio/x-ogg''audio/x-opus+ogg'],
  2742.         'ora' => ['image/openraster'],
  2743.         'orf' => ['image/x-olympus-orf'],
  2744.         'org' => ['application/vnd.lotus-organizer''text/org''text/x-org'],
  2745.         'osf' => ['application/vnd.yamaha.openscoreformat'],
  2746.         'osfpvg' => ['application/vnd.yamaha.openscoreformat.osfpvg+xml'],
  2747.         'osm' => ['application/vnd.openstreetmap.data+xml'],
  2748.         'otc' => ['application/vnd.oasis.opendocument.chart-template'],
  2749.         'otf' => ['application/vnd.oasis.opendocument.formula-template''application/x-font-otf''font/otf'],
  2750.         'otg' => ['application/vnd.oasis.opendocument.graphics-template'],
  2751.         'oth' => ['application/vnd.oasis.opendocument.text-web'],
  2752.         'oti' => ['application/vnd.oasis.opendocument.image-template'],
  2753.         'otp' => ['application/vnd.oasis.opendocument.presentation-template'],
  2754.         'ots' => ['application/vnd.oasis.opendocument.spreadsheet-template'],
  2755.         'ott' => ['application/vnd.oasis.opendocument.text-template'],
  2756.         'ova' => ['application/ovf''application/x-virtualbox-ova'],
  2757.         'ovf' => ['application/x-virtualbox-ovf'],
  2758.         'owl' => ['application/rdf+xml''text/rdf'],
  2759.         'owx' => ['application/owl+xml'],
  2760.         'oxps' => ['application/oxps'],
  2761.         'oxt' => ['application/vnd.openofficeorg.extension'],
  2762.         'p' => ['text/x-pascal'],
  2763.         'p10' => ['application/pkcs10'],
  2764.         'p12' => ['application/pkcs12''application/x-pkcs12'],
  2765.         'p65' => ['application/x-pagemaker'],
  2766.         'p7b' => ['application/x-pkcs7-certificates'],
  2767.         'p7c' => ['application/pkcs7-mime'],
  2768.         'p7m' => ['application/pkcs7-mime'],
  2769.         'p7r' => ['application/x-pkcs7-certreqresp'],
  2770.         'p7s' => ['application/pkcs7-signature'],
  2771.         'p8' => ['application/pkcs8'],
  2772.         'p8e' => ['application/pkcs8-encrypted'],
  2773.         'pac' => ['application/x-ns-proxy-autoconfig'],
  2774.         'pack' => ['application/x-java-pack200'],
  2775.         'pages' => ['application/vnd.apple.pages''application/x-iwork-pages-sffpages'],
  2776.         'pak' => ['application/x-pak'],
  2777.         'par2' => ['application/x-par2'],
  2778.         'part' => ['application/x-partial-download'],
  2779.         'pas' => ['text/x-pascal'],
  2780.         'pat' => ['image/x-gimp-pat'],
  2781.         'patch' => ['text/x-diff''text/x-patch'],
  2782.         'path' => ['text/x-systemd-unit'],
  2783.         'paw' => ['application/vnd.pawaafile'],
  2784.         'pbd' => ['application/vnd.powerbuilder6'],
  2785.         'pbm' => ['image/x-portable-bitmap'],
  2786.         'pcap' => ['application/pcap''application/vnd.tcpdump.pcap''application/x-pcap'],
  2787.         'pcd' => ['image/x-photo-cd'],
  2788.         'pce' => ['application/x-pc-engine-rom'],
  2789.         'pcf' => ['application/x-cisco-vpn-settings''application/x-font-pcf'],
  2790.         'pcf.Z' => ['application/x-font-pcf'],
  2791.         'pcf.gz' => ['application/x-font-pcf'],
  2792.         'pcl' => ['application/vnd.hp-pcl'],
  2793.         'pclxl' => ['application/vnd.hp-pclxl'],
  2794.         'pct' => ['image/x-pict'],
  2795.         'pcurl' => ['application/vnd.curl.pcurl'],
  2796.         'pcx' => ['image/vnd.zbrush.pcx''image/x-pcx'],
  2797.         'pdb' => ['application/vnd.palm''application/x-aportisdoc''application/x-palm-database''application/x-pilot'],
  2798.         'pdc' => ['application/x-aportisdoc'],
  2799.         'pde' => ['text/x-processing'],
  2800.         'pdf' => ['application/pdf''application/acrobat''application/nappdf''application/x-pdf''image/pdf'],
  2801.         'pdf.bz2' => ['application/x-bzpdf'],
  2802.         'pdf.gz' => ['application/x-gzpdf'],
  2803.         'pdf.lz' => ['application/x-lzpdf'],
  2804.         'pdf.xz' => ['application/x-xzpdf'],
  2805.         'pef' => ['image/x-pentax-pef'],
  2806.         'pem' => ['application/x-x509-ca-cert'],
  2807.         'perl' => ['application/x-perl''text/x-perl'],
  2808.         'pfa' => ['application/x-font-type1'],
  2809.         'pfb' => ['application/x-font-type1'],
  2810.         'pfm' => ['application/x-font-type1'],
  2811.         'pfr' => ['application/font-tdpfr'],
  2812.         'pfx' => ['application/pkcs12''application/x-pkcs12'],
  2813.         'pgm' => ['image/x-portable-graymap'],
  2814.         'pgn' => ['application/vnd.chess-pgn''application/x-chess-pgn'],
  2815.         'pgp' => ['application/pgp''application/pgp-encrypted''application/pgp-keys''application/pgp-signature'],
  2816.         'php' => ['application/x-php''application/x-httpd-php'],
  2817.         'php3' => ['application/x-php'],
  2818.         'php4' => ['application/x-php'],
  2819.         'php5' => ['application/x-php'],
  2820.         'phps' => ['application/x-php'],
  2821.         'pic' => ['image/x-pict'],
  2822.         'pict' => ['image/x-pict'],
  2823.         'pict1' => ['image/x-pict'],
  2824.         'pict2' => ['image/x-pict'],
  2825.         'pk' => ['application/x-tex-pk'],
  2826.         'pkg' => ['application/x-xar'],
  2827.         'pki' => ['application/pkixcmp'],
  2828.         'pkipath' => ['application/pkix-pkipath'],
  2829.         'pkpass' => ['application/vnd.apple.pkpass'],
  2830.         'pkr' => ['application/pgp-keys'],
  2831.         'pl' => ['application/x-perl''text/x-perl'],
  2832.         'pla' => ['audio/x-iriver-pla'],
  2833.         'plb' => ['application/vnd.3gpp.pic-bw-large'],
  2834.         'plc' => ['application/vnd.mobius.plc'],
  2835.         'plf' => ['application/vnd.pocketlearn'],
  2836.         'pln' => ['application/x-planperfect'],
  2837.         'pls' => ['application/pls''application/pls+xml''audio/scpls''audio/x-scpls'],
  2838.         'pm' => ['application/x-pagemaker''application/x-perl''text/x-perl'],
  2839.         'pm6' => ['application/x-pagemaker'],
  2840.         'pmd' => ['application/x-pagemaker'],
  2841.         'pml' => ['application/vnd.ctc-posml'],
  2842.         'png' => ['image/png'],
  2843.         'pnm' => ['image/x-portable-anymap'],
  2844.         'pntg' => ['image/x-macpaint'],
  2845.         'po' => ['application/x-gettext''text/x-gettext-translation''text/x-po'],
  2846.         'pod' => ['application/x-perl''text/x-perl'],
  2847.         'por' => ['application/x-spss-por'],
  2848.         'portpkg' => ['application/vnd.macports.portpkg'],
  2849.         'pot' => ['application/mspowerpoint''application/powerpoint''application/vnd.ms-powerpoint''application/x-mspowerpoint''text/x-gettext-translation-template''text/x-pot'],
  2850.         'potm' => ['application/vnd.ms-powerpoint.template.macroenabled.12'],
  2851.         'potx' => ['application/vnd.openxmlformats-officedocument.presentationml.template'],
  2852.         'ppam' => ['application/vnd.ms-powerpoint.addin.macroenabled.12'],
  2853.         'ppd' => ['application/vnd.cups-ppd'],
  2854.         'ppm' => ['image/x-portable-pixmap'],
  2855.         'pps' => ['application/mspowerpoint''application/powerpoint''application/vnd.ms-powerpoint''application/x-mspowerpoint'],
  2856.         'ppsm' => ['application/vnd.ms-powerpoint.slideshow.macroenabled.12'],
  2857.         'ppsx' => ['application/vnd.openxmlformats-officedocument.presentationml.slideshow'],
  2858.         'ppt' => ['application/vnd.ms-powerpoint''application/mspowerpoint''application/powerpoint''application/x-mspowerpoint'],
  2859.         'pptm' => ['application/vnd.ms-powerpoint.presentation.macroenabled.12'],
  2860.         'pptx' => ['application/vnd.openxmlformats-officedocument.presentationml.presentation'],
  2861.         'ppz' => ['application/mspowerpoint''application/powerpoint''application/vnd.ms-powerpoint''application/x-mspowerpoint'],
  2862.         'pqa' => ['application/vnd.palm''application/x-palm-database'],
  2863.         'prc' => ['application/vnd.palm''application/x-mobipocket-ebook''application/x-palm-database''application/x-pilot'],
  2864.         'pre' => ['application/vnd.lotus-freelance'],
  2865.         'prf' => ['application/pics-rules'],
  2866.         'provx' => ['application/provenance+xml'],
  2867.         'ps' => ['application/postscript'],
  2868.         'ps.bz2' => ['application/x-bzpostscript'],
  2869.         'ps.gz' => ['application/x-gzpostscript'],
  2870.         'psb' => ['application/vnd.3gpp.pic-bw-small'],
  2871.         'psd' => ['application/photoshop''application/x-photoshop''image/photoshop''image/psd''image/vnd.adobe.photoshop''image/x-photoshop''image/x-psd'],
  2872.         'psf' => ['application/x-font-linux-psf''audio/x-psf'],
  2873.         'psf.gz' => ['application/x-gz-font-linux-psf'],
  2874.         'psflib' => ['audio/x-psflib'],
  2875.         'psid' => ['audio/prs.sid'],
  2876.         'pskcxml' => ['application/pskc+xml'],
  2877.         'psw' => ['application/x-pocket-word'],
  2878.         'pti' => ['image/prs.pti'],
  2879.         'ptid' => ['application/vnd.pvi.ptid1'],
  2880.         'pub' => ['application/vnd.ms-publisher''application/x-mspublisher'],
  2881.         'pvb' => ['application/vnd.3gpp.pic-bw-var'],
  2882.         'pw' => ['application/x-pw'],
  2883.         'pwn' => ['application/vnd.3m.post-it-notes'],
  2884.         'py' => ['text/x-python''text/x-python3'],
  2885.         'py3' => ['text/x-python3'],
  2886.         'py3x' => ['text/x-python3'],
  2887.         'pya' => ['audio/vnd.ms-playready.media.pya'],
  2888.         'pyc' => ['application/x-python-bytecode'],
  2889.         'pyi' => ['text/x-python3'],
  2890.         'pyo' => ['application/x-python-bytecode'],
  2891.         'pys' => ['application/x-pyspread-bz-spreadsheet'],
  2892.         'pysu' => ['application/x-pyspread-spreadsheet'],
  2893.         'pyv' => ['video/vnd.ms-playready.media.pyv'],
  2894.         'pyx' => ['text/x-python'],
  2895.         'qam' => ['application/vnd.epson.quickanime'],
  2896.         'qbo' => ['application/vnd.intu.qbo'],
  2897.         'qcow' => ['application/x-qemu-disk'],
  2898.         'qcow2' => ['application/x-qemu-disk'],
  2899.         'qd' => ['application/x-fd-file''application/x-raw-floppy-disk-image'],
  2900.         'qed' => ['application/x-qed-disk'],
  2901.         'qfx' => ['application/vnd.intu.qfx'],
  2902.         'qif' => ['application/x-qw''image/x-quicktime'],
  2903.         'qml' => ['text/x-qml'],
  2904.         'qmlproject' => ['text/x-qml'],
  2905.         'qmltypes' => ['text/x-qml'],
  2906.         'qp' => ['application/x-qpress'],
  2907.         'qps' => ['application/vnd.publishare-delta-tree'],
  2908.         'qt' => ['video/quicktime'],
  2909.         'qti' => ['application/x-qtiplot'],
  2910.         'qti.gz' => ['application/x-qtiplot'],
  2911.         'qtif' => ['image/x-quicktime'],
  2912.         'qtl' => ['application/x-quicktime-media-link''application/x-quicktimeplayer'],
  2913.         'qtvr' => ['video/quicktime'],
  2914.         'qwd' => ['application/vnd.quark.quarkxpress'],
  2915.         'qwt' => ['application/vnd.quark.quarkxpress'],
  2916.         'qxb' => ['application/vnd.quark.quarkxpress'],
  2917.         'qxd' => ['application/vnd.quark.quarkxpress'],
  2918.         'qxl' => ['application/vnd.quark.quarkxpress'],
  2919.         'qxt' => ['application/vnd.quark.quarkxpress'],
  2920.         'ra' => ['audio/vnd.m-realaudio''audio/vnd.rn-realaudio''audio/x-pn-realaudio''audio/x-realaudio'],
  2921.         'raf' => ['image/x-fuji-raf'],
  2922.         'ram' => ['application/ram''audio/x-pn-realaudio'],
  2923.         'raml' => ['application/raml+yaml'],
  2924.         'rapd' => ['application/route-apd+xml'],
  2925.         'rar' => ['application/x-rar-compressed''application/vnd.rar''application/x-rar'],
  2926.         'ras' => ['image/x-cmu-raster'],
  2927.         'raw' => ['image/x-panasonic-raw''image/x-panasonic-rw'],
  2928.         'raw-disk-image' => ['application/x-raw-disk-image'],
  2929.         'raw-disk-image.xz' => ['application/x-raw-disk-image-xz-compressed'],
  2930.         'rax' => ['audio/vnd.m-realaudio''audio/vnd.rn-realaudio''audio/x-pn-realaudio'],
  2931.         'rb' => ['application/x-ruby'],
  2932.         'rcprofile' => ['application/vnd.ipunplugged.rcprofile'],
  2933.         'rdf' => ['application/rdf+xml''text/rdf'],
  2934.         'rdfs' => ['application/rdf+xml''text/rdf'],
  2935.         'rdz' => ['application/vnd.data-vision.rdz'],
  2936.         'reg' => ['text/x-ms-regedit'],
  2937.         'rej' => ['application/x-reject''text/x-reject'],
  2938.         'relo' => ['application/p2p-overlay+xml'],
  2939.         'rep' => ['application/vnd.businessobjects'],
  2940.         'res' => ['application/x-dtbresource+xml'],
  2941.         'rgb' => ['image/x-rgb'],
  2942.         'rif' => ['application/reginfo+xml'],
  2943.         'rip' => ['audio/vnd.rip'],
  2944.         'ris' => ['application/x-research-info-systems'],
  2945.         'rl' => ['application/resource-lists+xml'],
  2946.         'rlc' => ['image/vnd.fujixerox.edmics-rlc'],
  2947.         'rld' => ['application/resource-lists-diff+xml'],
  2948.         'rle' => ['image/rle'],
  2949.         'rm' => ['application/vnd.rn-realmedia''application/vnd.rn-realmedia-vbr'],
  2950.         'rmi' => ['audio/midi'],
  2951.         'rmj' => ['application/vnd.rn-realmedia''application/vnd.rn-realmedia-vbr'],
  2952.         'rmm' => ['application/vnd.rn-realmedia''application/vnd.rn-realmedia-vbr'],
  2953.         'rmp' => ['audio/x-pn-realaudio-plugin'],
  2954.         'rms' => ['application/vnd.jcp.javame.midlet-rms''application/vnd.rn-realmedia''application/vnd.rn-realmedia-vbr'],
  2955.         'rmvb' => ['application/vnd.rn-realmedia''application/vnd.rn-realmedia-vbr'],
  2956.         'rmx' => ['application/vnd.rn-realmedia''application/vnd.rn-realmedia-vbr'],
  2957.         'rnc' => ['application/relax-ng-compact-syntax''application/x-rnc'],
  2958.         'rng' => ['application/xml''text/xml'],
  2959.         'roa' => ['application/rpki-roa'],
  2960.         'roff' => ['application/x-troff''text/troff''text/x-troff'],
  2961.         'ros' => ['text/x-common-lisp'],
  2962.         'rp' => ['image/vnd.rn-realpix'],
  2963.         'rp9' => ['application/vnd.cloanto.rp9'],
  2964.         'rpm' => ['application/x-redhat-package-manager''application/x-rpm'],
  2965.         'rpss' => ['application/vnd.nokia.radio-presets'],
  2966.         'rpst' => ['application/vnd.nokia.radio-preset'],
  2967.         'rq' => ['application/sparql-query'],
  2968.         'rs' => ['application/rls-services+xml''text/rust'],
  2969.         'rsat' => ['application/atsc-rsat+xml'],
  2970.         'rsd' => ['application/rsd+xml'],
  2971.         'rsheet' => ['application/urc-ressheet+xml'],
  2972.         'rss' => ['application/rss+xml''text/rss'],
  2973.         'rst' => ['text/x-rst'],
  2974.         'rt' => ['text/vnd.rn-realtext'],
  2975.         'rtf' => ['application/rtf''text/rtf'],
  2976.         'rtx' => ['text/richtext'],
  2977.         'run' => ['application/x-makeself'],
  2978.         'rusd' => ['application/route-usd+xml'],
  2979.         'rv' => ['video/vnd.rn-realvideo''video/x-real-video'],
  2980.         'rvx' => ['video/vnd.rn-realvideo''video/x-real-video'],
  2981.         'rw2' => ['image/x-panasonic-raw2''image/x-panasonic-rw2'],
  2982.         's' => ['text/x-asm'],
  2983.         's3m' => ['audio/s3m''audio/x-s3m'],
  2984.         'saf' => ['application/vnd.yamaha.smaf-audio'],
  2985.         'sage' => ['text/x-sagemath'],
  2986.         'sam' => ['application/x-amipro'],
  2987.         'sami' => ['application/x-sami'],
  2988.         'sap' => ['application/x-sap-file''application/x-thomson-sap-image'],
  2989.         'sass' => ['text/x-sass'],
  2990.         'sav' => ['application/x-spss-sav''application/x-spss-savefile'],
  2991.         'sbml' => ['application/sbml+xml'],
  2992.         'sc' => ['application/vnd.ibm.secure-container''text/x-scala'],
  2993.         'scala' => ['text/x-scala'],
  2994.         'scd' => ['application/x-msschedule'],
  2995.         'scm' => ['application/vnd.lotus-screencam''text/x-scheme'],
  2996.         'scope' => ['text/x-systemd-unit'],
  2997.         'scq' => ['application/scvp-cv-request'],
  2998.         'scs' => ['application/scvp-cv-response'],
  2999.         'scss' => ['text/x-scss'],
  3000.         'scurl' => ['text/vnd.curl.scurl'],
  3001.         'sda' => ['application/vnd.stardivision.draw'],
  3002.         'sdc' => ['application/vnd.stardivision.calc'],
  3003.         'sdd' => ['application/vnd.stardivision.impress'],
  3004.         'sdkd' => ['application/vnd.solent.sdkm+xml'],
  3005.         'sdkm' => ['application/vnd.solent.sdkm+xml'],
  3006.         'sdp' => ['application/sdp''application/vnd.sdp''application/vnd.stardivision.impress''application/x-sdp'],
  3007.         'sds' => ['application/vnd.stardivision.chart'],
  3008.         'sdw' => ['application/vnd.stardivision.writer''application/vnd.stardivision.writer-global'],
  3009.         'sea' => ['application/x-sea'],
  3010.         'see' => ['application/vnd.seemail'],
  3011.         'seed' => ['application/vnd.fdsn.seed'],
  3012.         'sema' => ['application/vnd.sema'],
  3013.         'semd' => ['application/vnd.semd'],
  3014.         'semf' => ['application/vnd.semf'],
  3015.         'senmlx' => ['application/senml+xml'],
  3016.         'sensmlx' => ['application/sensml+xml'],
  3017.         'ser' => ['application/java-serialized-object'],
  3018.         'service' => ['text/x-dbus-service''text/x-systemd-unit'],
  3019.         'setpay' => ['application/set-payment-initiation'],
  3020.         'setreg' => ['application/set-registration-initiation'],
  3021.         'sfc' => ['application/vnd.nintendo.snes.rom''application/x-snes-rom'],
  3022.         'sfd-hdstx' => ['application/vnd.hydrostatix.sof-data'],
  3023.         'sfs' => ['application/vnd.spotfire.sfs'],
  3024.         'sfv' => ['text/x-sfv'],
  3025.         'sg' => ['application/x-sg1000-rom'],
  3026.         'sgb' => ['application/x-gameboy-rom'],
  3027.         'sgd' => ['application/x-genesis-rom'],
  3028.         'sgf' => ['application/x-go-sgf'],
  3029.         'sgi' => ['image/sgi''image/x-sgi'],
  3030.         'sgl' => ['application/vnd.stardivision.writer''application/vnd.stardivision.writer-global'],
  3031.         'sgm' => ['text/sgml'],
  3032.         'sgml' => ['text/sgml'],
  3033.         'sh' => ['application/x-sh''application/x-shellscript''text/x-sh'],
  3034.         'shape' => ['application/x-dia-shape'],
  3035.         'shar' => ['application/x-shar'],
  3036.         'shex' => ['text/shex'],
  3037.         'shf' => ['application/shf+xml'],
  3038.         'shn' => ['application/x-shorten''audio/x-shorten'],
  3039.         'shtml' => ['text/html'],
  3040.         'siag' => ['application/x-siag'],
  3041.         'sid' => ['audio/prs.sid''image/x-mrsid-image'],
  3042.         'sieve' => ['application/sieve'],
  3043.         'sig' => ['application/pgp-signature'],
  3044.         'sik' => ['application/x-trash'],
  3045.         'sil' => ['audio/silk'],
  3046.         'silo' => ['model/mesh'],
  3047.         'sis' => ['application/vnd.symbian.install'],
  3048.         'sisx' => ['application/vnd.symbian.install''x-epoc/x-sisx-app'],
  3049.         'sit' => ['application/x-stuffit''application/stuffit''application/x-sit'],
  3050.         'sitx' => ['application/x-stuffitx'],
  3051.         'siv' => ['application/sieve'],
  3052.         'sk' => ['image/x-skencil'],
  3053.         'sk1' => ['image/x-skencil'],
  3054.         'skd' => ['application/vnd.koan'],
  3055.         'skm' => ['application/vnd.koan'],
  3056.         'skp' => ['application/vnd.koan'],
  3057.         'skr' => ['application/pgp-keys'],
  3058.         'skt' => ['application/vnd.koan'],
  3059.         'sldm' => ['application/vnd.ms-powerpoint.slide.macroenabled.12'],
  3060.         'sldx' => ['application/vnd.openxmlformats-officedocument.presentationml.slide'],
  3061.         'slice' => ['text/x-systemd-unit'],
  3062.         'slim' => ['text/slim'],
  3063.         'slk' => ['text/spreadsheet'],
  3064.         'slm' => ['text/slim'],
  3065.         'sls' => ['application/route-s-tsid+xml'],
  3066.         'slt' => ['application/vnd.epson.salt'],
  3067.         'sm' => ['application/vnd.stepmania.stepchart'],
  3068.         'smaf' => ['application/vnd.smaf''application/x-smaf'],
  3069.         'smc' => ['application/vnd.nintendo.snes.rom''application/x-snes-rom'],
  3070.         'smd' => ['application/vnd.stardivision.mail''application/x-genesis-rom'],
  3071.         'smf' => ['application/vnd.stardivision.math'],
  3072.         'smi' => ['application/smil''application/smil+xml''application/x-sami'],
  3073.         'smil' => ['application/smil''application/smil+xml'],
  3074.         'smk' => ['video/vnd.radgamettools.smacker'],
  3075.         'sml' => ['application/smil''application/smil+xml'],
  3076.         'sms' => ['application/x-sms-rom'],
  3077.         'smv' => ['video/x-smv'],
  3078.         'smzip' => ['application/vnd.stepmania.package'],
  3079.         'snap' => ['application/vnd.snap'],
  3080.         'snd' => ['audio/basic'],
  3081.         'snf' => ['application/x-font-snf'],
  3082.         'so' => ['application/x-sharedlib'],
  3083.         'socket' => ['text/x-systemd-unit'],
  3084.         'spc' => ['application/x-pkcs7-certificates'],
  3085.         'spd' => ['application/x-font-speedo'],
  3086.         'spdx' => ['text/spdx'],
  3087.         'spec' => ['text/x-rpm-spec'],
  3088.         'spf' => ['application/vnd.yamaha.smaf-phrase'],
  3089.         'spl' => ['application/futuresplash''application/vnd.adobe.flash.movie''application/x-futuresplash''application/x-shockwave-flash'],
  3090.         'spm' => ['application/x-source-rpm'],
  3091.         'spot' => ['text/vnd.in3d.spot'],
  3092.         'spp' => ['application/scvp-vp-response'],
  3093.         'spq' => ['application/scvp-vp-request'],
  3094.         'spx' => ['application/x-apple-systemprofiler+xml''audio/ogg''audio/x-speex''audio/x-speex+ogg'],
  3095.         'sql' => ['application/sql''application/x-sql''text/x-sql'],
  3096.         'sqlite2' => ['application/x-sqlite2'],
  3097.         'sqlite3' => ['application/vnd.sqlite3''application/x-sqlite3'],
  3098.         'sqsh' => ['application/vnd.squashfs'],
  3099.         'sr2' => ['image/x-sony-sr2'],
  3100.         'src' => ['application/x-wais-source'],
  3101.         'src.rpm' => ['application/x-source-rpm'],
  3102.         'srf' => ['image/x-sony-srf'],
  3103.         'srt' => ['application/x-srt''application/x-subrip'],
  3104.         'sru' => ['application/sru+xml'],
  3105.         'srx' => ['application/sparql-results+xml'],
  3106.         'ss' => ['text/x-scheme'],
  3107.         'ssa' => ['text/x-ssa'],
  3108.         'ssdl' => ['application/ssdl+xml'],
  3109.         'sse' => ['application/vnd.kodak-descriptor'],
  3110.         'ssf' => ['application/vnd.epson.ssf'],
  3111.         'ssml' => ['application/ssml+xml'],
  3112.         'st' => ['application/vnd.sailingtracker.track'],
  3113.         'stc' => ['application/vnd.sun.xml.calc.template'],
  3114.         'std' => ['application/vnd.sun.xml.draw.template'],
  3115.         'stf' => ['application/vnd.wt.stf'],
  3116.         'sti' => ['application/vnd.sun.xml.impress.template'],
  3117.         'stk' => ['application/hyperstudio'],
  3118.         'stl' => ['application/vnd.ms-pki.stl''model/stl''model/x.stl-ascii''model/x.stl-binary'],
  3119.         'stm' => ['audio/x-stm'],
  3120.         'stpxz' => ['model/step-xml+zip'],
  3121.         'stpz' => ['model/step+zip'],
  3122.         'str' => ['application/vnd.pg.format'],
  3123.         'stw' => ['application/vnd.sun.xml.writer.template'],
  3124.         'sty' => ['application/x-tex''text/x-tex'],
  3125.         'styl' => ['text/stylus'],
  3126.         'stylus' => ['text/stylus'],
  3127.         'sub' => ['image/vnd.dvb.subtitle''text/vnd.dvb.subtitle''text/x-microdvd''text/x-mpsub''text/x-subviewer'],
  3128.         'sun' => ['image/x-sun-raster'],
  3129.         'sus' => ['application/vnd.sus-calendar'],
  3130.         'susp' => ['application/vnd.sus-calendar'],
  3131.         'sv' => ['text/x-svsrc'],
  3132.         'sv4cpio' => ['application/x-sv4cpio'],
  3133.         'sv4crc' => ['application/x-sv4crc'],
  3134.         'svc' => ['application/vnd.dvb.service'],
  3135.         'svd' => ['application/vnd.svd'],
  3136.         'svg' => ['image/svg+xml''image/svg'],
  3137.         'svgz' => ['image/svg+xml''image/svg+xml-compressed'],
  3138.         'svh' => ['text/x-svhdr'],
  3139.         'swa' => ['application/x-director'],
  3140.         'swap' => ['text/x-systemd-unit'],
  3141.         'swf' => ['application/futuresplash''application/vnd.adobe.flash.movie''application/x-shockwave-flash'],
  3142.         'swi' => ['application/vnd.aristanetworks.swi'],
  3143.         'swidtag' => ['application/swid+xml'],
  3144.         'swm' => ['application/x-ms-wim'],
  3145.         'sxc' => ['application/vnd.sun.xml.calc'],
  3146.         'sxd' => ['application/vnd.sun.xml.draw'],
  3147.         'sxg' => ['application/vnd.sun.xml.writer.global'],
  3148.         'sxi' => ['application/vnd.sun.xml.impress'],
  3149.         'sxm' => ['application/vnd.sun.xml.math'],
  3150.         'sxw' => ['application/vnd.sun.xml.writer'],
  3151.         'sylk' => ['text/spreadsheet'],
  3152.         't' => ['application/x-perl''application/x-troff''text/troff''text/x-perl''text/x-troff'],
  3153.         't2t' => ['text/x-txt2tags'],
  3154.         't3' => ['application/x-t3vm-image'],
  3155.         't38' => ['image/t38'],
  3156.         'taglet' => ['application/vnd.mynfc'],
  3157.         'tao' => ['application/vnd.tao.intent-module-archive'],
  3158.         'tap' => ['image/vnd.tencent.tap'],
  3159.         'tar' => ['application/x-tar''application/x-gtar'],
  3160.         'tar.Z' => ['application/x-tarz'],
  3161.         'tar.bz' => ['application/x-bzip-compressed-tar'],
  3162.         'tar.bz2' => ['application/x-bzip-compressed-tar'],
  3163.         'tar.gz' => ['application/x-compressed-tar'],
  3164.         'tar.lrz' => ['application/x-lrzip-compressed-tar'],
  3165.         'tar.lz' => ['application/x-lzip-compressed-tar'],
  3166.         'tar.lz4' => ['application/x-lz4-compressed-tar'],
  3167.         'tar.lzma' => ['application/x-lzma-compressed-tar'],
  3168.         'tar.lzo' => ['application/x-tzo'],
  3169.         'tar.xz' => ['application/x-xz-compressed-tar'],
  3170.         'tar.zst' => ['application/x-zstd-compressed-tar'],
  3171.         'target' => ['text/x-systemd-unit'],
  3172.         'taz' => ['application/x-tarz'],
  3173.         'tb2' => ['application/x-bzip-compressed-tar'],
  3174.         'tbz' => ['application/x-bzip-compressed-tar'],
  3175.         'tbz2' => ['application/x-bzip-compressed-tar'],
  3176.         'tcap' => ['application/vnd.3gpp2.tcap'],
  3177.         'tcl' => ['application/x-tcl''text/tcl''text/x-tcl'],
  3178.         'td' => ['application/urc-targetdesc+xml'],
  3179.         'teacher' => ['application/vnd.smart.teacher'],
  3180.         'tei' => ['application/tei+xml'],
  3181.         'teicorpus' => ['application/tei+xml'],
  3182.         'tex' => ['application/x-tex''text/x-tex'],
  3183.         'texi' => ['application/x-texinfo''text/x-texinfo'],
  3184.         'texinfo' => ['application/x-texinfo''text/x-texinfo'],
  3185.         'text' => ['text/plain'],
  3186.         'tfi' => ['application/thraud+xml'],
  3187.         'tfm' => ['application/x-tex-tfm'],
  3188.         'tfx' => ['image/tiff-fx'],
  3189.         'tga' => ['application/tga''application/x-targa''application/x-tga''image/targa''image/tga''image/x-icb''image/x-targa''image/x-tga'],
  3190.         'tgz' => ['application/x-compressed-tar'],
  3191.         'theme' => ['application/x-theme'],
  3192.         'themepack' => ['application/x-windows-themepack'],
  3193.         'thmx' => ['application/vnd.ms-officetheme'],
  3194.         'tif' => ['image/tiff'],
  3195.         'tiff' => ['image/tiff'],
  3196.         'timer' => ['text/x-systemd-unit'],
  3197.         'tk' => ['application/x-tcl''text/tcl''text/x-tcl'],
  3198.         'tlrz' => ['application/x-lrzip-compressed-tar'],
  3199.         'tlz' => ['application/x-lzma-compressed-tar'],
  3200.         'tmo' => ['application/vnd.tmobile-livetv'],
  3201.         'tnef' => ['application/ms-tnef''application/vnd.ms-tnef'],
  3202.         'tnf' => ['application/ms-tnef''application/vnd.ms-tnef'],
  3203.         'toc' => ['application/x-cdrdao-toc'],
  3204.         'toml' => ['application/toml'],
  3205.         'torrent' => ['application/x-bittorrent'],
  3206.         'tpic' => ['application/tga''application/x-targa''application/x-tga''image/targa''image/tga''image/x-icb''image/x-targa''image/x-tga'],
  3207.         'tpl' => ['application/vnd.groove-tool-template'],
  3208.         'tpt' => ['application/vnd.trid.tpt'],
  3209.         'tr' => ['application/x-troff''text/troff''text/x-troff'],
  3210.         'tra' => ['application/vnd.trueapp'],
  3211.         'trig' => ['application/trig''application/x-trig'],
  3212.         'trm' => ['application/x-msterminal'],
  3213.         'ts' => ['application/x-linguist''text/vnd.qt.linguist''text/vnd.trolltech.linguist''video/mp2t'],
  3214.         'tsd' => ['application/timestamped-data'],
  3215.         'tsv' => ['text/tab-separated-values'],
  3216.         'tta' => ['audio/tta''audio/x-tta'],
  3217.         'ttc' => ['font/collection'],
  3218.         'ttf' => ['application/x-font-truetype''application/x-font-ttf''font/ttf'],
  3219.         'ttl' => ['text/turtle'],
  3220.         'ttml' => ['application/ttml+xml'],
  3221.         'ttx' => ['application/x-font-ttx'],
  3222.         'twd' => ['application/vnd.simtech-mindmapper'],
  3223.         'twds' => ['application/vnd.simtech-mindmapper'],
  3224.         'twig' => ['text/x-twig'],
  3225.         'txd' => ['application/vnd.genomatix.tuxedo'],
  3226.         'txf' => ['application/vnd.mobius.txf'],
  3227.         'txt' => ['text/plain'],
  3228.         'txz' => ['application/x-xz-compressed-tar'],
  3229.         'tzo' => ['application/x-tzo'],
  3230.         'tzst' => ['application/x-zstd-compressed-tar'],
  3231.         'u32' => ['application/x-authorware-bin'],
  3232.         'u8dsn' => ['message/global-delivery-status'],
  3233.         'u8hdr' => ['message/global-headers'],
  3234.         'u8mdn' => ['message/global-disposition-notification'],
  3235.         'u8msg' => ['message/global'],
  3236.         'ubj' => ['application/ubjson'],
  3237.         'udeb' => ['application/vnd.debian.binary-package''application/x-deb''application/x-debian-package'],
  3238.         'ufd' => ['application/vnd.ufdl'],
  3239.         'ufdl' => ['application/vnd.ufdl'],
  3240.         'ufraw' => ['application/x-ufraw'],
  3241.         'ui' => ['application/x-designer''application/x-gtk-builder'],
  3242.         'uil' => ['text/x-uil'],
  3243.         'ult' => ['audio/x-mod'],
  3244.         'ulx' => ['application/x-glulx'],
  3245.         'umj' => ['application/vnd.umajin'],
  3246.         'unf' => ['application/x-nes-rom'],
  3247.         'uni' => ['audio/x-mod'],
  3248.         'unif' => ['application/x-nes-rom'],
  3249.         'unityweb' => ['application/vnd.unity'],
  3250.         'uoml' => ['application/vnd.uoml+xml'],
  3251.         'uri' => ['text/uri-list'],
  3252.         'uris' => ['text/uri-list'],
  3253.         'url' => ['application/x-mswinurl'],
  3254.         'urls' => ['text/uri-list'],
  3255.         'usdz' => ['model/vnd.usdz+zip'],
  3256.         'ustar' => ['application/x-ustar'],
  3257.         'utz' => ['application/vnd.uiq.theme'],
  3258.         'uu' => ['text/x-uuencode'],
  3259.         'uue' => ['text/x-uuencode''zz-application/zz-winassoc-uu'],
  3260.         'uva' => ['audio/vnd.dece.audio'],
  3261.         'uvd' => ['application/vnd.dece.data'],
  3262.         'uvf' => ['application/vnd.dece.data'],
  3263.         'uvg' => ['image/vnd.dece.graphic'],
  3264.         'uvh' => ['video/vnd.dece.hd'],
  3265.         'uvi' => ['image/vnd.dece.graphic'],
  3266.         'uvm' => ['video/vnd.dece.mobile'],
  3267.         'uvp' => ['video/vnd.dece.pd'],
  3268.         'uvs' => ['video/vnd.dece.sd'],
  3269.         'uvt' => ['application/vnd.dece.ttml+xml'],
  3270.         'uvu' => ['video/vnd.uvvu.mp4'],
  3271.         'uvv' => ['video/vnd.dece.video'],
  3272.         'uvva' => ['audio/vnd.dece.audio'],
  3273.         'uvvd' => ['application/vnd.dece.data'],
  3274.         'uvvf' => ['application/vnd.dece.data'],
  3275.         'uvvg' => ['image/vnd.dece.graphic'],
  3276.         'uvvh' => ['video/vnd.dece.hd'],
  3277.         'uvvi' => ['image/vnd.dece.graphic'],
  3278.         'uvvm' => ['video/vnd.dece.mobile'],
  3279.         'uvvp' => ['video/vnd.dece.pd'],
  3280.         'uvvs' => ['video/vnd.dece.sd'],
  3281.         'uvvt' => ['application/vnd.dece.ttml+xml'],
  3282.         'uvvu' => ['video/vnd.uvvu.mp4'],
  3283.         'uvvv' => ['video/vnd.dece.video'],
  3284.         'uvvx' => ['application/vnd.dece.unspecified'],
  3285.         'uvvz' => ['application/vnd.dece.zip'],
  3286.         'uvx' => ['application/vnd.dece.unspecified'],
  3287.         'uvz' => ['application/vnd.dece.zip'],
  3288.         'v' => ['text/x-verilog'],
  3289.         'v64' => ['application/x-n64-rom'],
  3290.         'vala' => ['text/x-vala'],
  3291.         'vapi' => ['text/x-vala'],
  3292.         'vb' => ['application/x-virtual-boy-rom'],
  3293.         'vbox' => ['application/x-virtualbox-vbox'],
  3294.         'vbox-extpack' => ['application/x-virtualbox-vbox-extpack'],
  3295.         'vbs' => ['text/vbs''text/vbscript'],
  3296.         'vcard' => ['text/directory''text/vcard''text/x-vcard'],
  3297.         'vcd' => ['application/x-cdlink'],
  3298.         'vcf' => ['text/x-vcard''text/directory''text/vcard'],
  3299.         'vcg' => ['application/vnd.groove-vcard'],
  3300.         'vcs' => ['application/ics''text/calendar''text/x-vcalendar'],
  3301.         'vct' => ['text/directory''text/vcard''text/x-vcard'],
  3302.         'vcx' => ['application/vnd.vcx'],
  3303.         'vda' => ['application/tga''application/x-targa''application/x-tga''image/targa''image/tga''image/x-icb''image/x-targa''image/x-tga'],
  3304.         'vdi' => ['application/x-vdi-disk''application/x-virtualbox-vdi'],
  3305.         'vds' => ['model/vnd.sap.vds'],
  3306.         'vhd' => ['application/x-vhd-disk''application/x-virtualbox-vhd''text/x-vhdl'],
  3307.         'vhdl' => ['text/x-vhdl'],
  3308.         'vhdx' => ['application/x-vhdx-disk''application/x-virtualbox-vhdx'],
  3309.         'vis' => ['application/vnd.visionary'],
  3310.         'viv' => ['video/vivo''video/vnd.vivo'],
  3311.         'vivo' => ['video/vivo''video/vnd.vivo'],
  3312.         'vlc' => ['application/m3u''audio/m3u''audio/mpegurl''audio/x-m3u''audio/x-mp3-playlist''audio/x-mpegurl'],
  3313.         'vmdk' => ['application/x-virtualbox-vmdk''application/x-vmdk-disk'],
  3314.         'vob' => ['video/mpeg''video/mpeg-system''video/x-mpeg''video/x-mpeg-system''video/x-mpeg2''video/x-ms-vob'],
  3315.         'voc' => ['audio/x-voc'],
  3316.         'vor' => ['application/vnd.stardivision.writer''application/vnd.stardivision.writer-global'],
  3317.         'vox' => ['application/x-authorware-bin'],
  3318.         'vpc' => ['application/x-vhd-disk''application/x-virtualbox-vhd'],
  3319.         'vrm' => ['model/vrml'],
  3320.         'vrml' => ['model/vrml'],
  3321.         'vsd' => ['application/vnd.visio'],
  3322.         'vsdm' => ['application/vnd.ms-visio.drawing.macroenabled.main+xml'],
  3323.         'vsdx' => ['application/vnd.ms-visio.drawing.main+xml'],
  3324.         'vsf' => ['application/vnd.vsf'],
  3325.         'vss' => ['application/vnd.visio'],
  3326.         'vssm' => ['application/vnd.ms-visio.stencil.macroenabled.main+xml'],
  3327.         'vssx' => ['application/vnd.ms-visio.stencil.main+xml'],
  3328.         'vst' => ['application/tga''application/vnd.visio''application/x-targa''application/x-tga''image/targa''image/tga''image/x-icb''image/x-targa''image/x-tga'],
  3329.         'vstm' => ['application/vnd.ms-visio.template.macroenabled.main+xml'],
  3330.         'vstx' => ['application/vnd.ms-visio.template.main+xml'],
  3331.         'vsw' => ['application/vnd.visio'],
  3332.         'vtf' => ['image/vnd.valve.source.texture'],
  3333.         'vtt' => ['text/vtt'],
  3334.         'vtu' => ['model/vnd.vtu'],
  3335.         'vxml' => ['application/voicexml+xml'],
  3336.         'w3d' => ['application/x-director'],
  3337.         'wad' => ['application/x-doom''application/x-doom-wad''application/x-wii-wad'],
  3338.         'wadl' => ['application/vnd.sun.wadl+xml'],
  3339.         'war' => ['application/java-archive'],
  3340.         'wasm' => ['application/wasm'],
  3341.         'wav' => ['audio/wav''audio/vnd.wave''audio/wave''audio/x-wav'],
  3342.         'wax' => ['application/x-ms-asx''audio/x-ms-asx''audio/x-ms-wax''video/x-ms-wax''video/x-ms-wmx''video/x-ms-wvx'],
  3343.         'wb1' => ['application/x-quattropro'],
  3344.         'wb2' => ['application/x-quattropro'],
  3345.         'wb3' => ['application/x-quattropro'],
  3346.         'wbmp' => ['image/vnd.wap.wbmp'],
  3347.         'wbs' => ['application/vnd.criticaltools.wbs+xml'],
  3348.         'wbxml' => ['application/vnd.wap.wbxml'],
  3349.         'wcm' => ['application/vnd.ms-works'],
  3350.         'wdb' => ['application/vnd.ms-works'],
  3351.         'wdp' => ['image/vnd.ms-photo'],
  3352.         'weba' => ['audio/webm'],
  3353.         'webapp' => ['application/x-web-app-manifest+json'],
  3354.         'webm' => ['video/webm'],
  3355.         'webmanifest' => ['application/manifest+json'],
  3356.         'webp' => ['image/webp'],
  3357.         'wg' => ['application/vnd.pmi.widget'],
  3358.         'wgt' => ['application/widget'],
  3359.         'wim' => ['application/x-ms-wim'],
  3360.         'wk1' => ['application/lotus123''application/vnd.lotus-1-2-3''application/wk1''application/x-123''application/x-lotus123''zz-application/zz-winassoc-123'],
  3361.         'wk3' => ['application/lotus123''application/vnd.lotus-1-2-3''application/wk1''application/x-123''application/x-lotus123''zz-application/zz-winassoc-123'],
  3362.         'wk4' => ['application/lotus123''application/vnd.lotus-1-2-3''application/wk1''application/x-123''application/x-lotus123''zz-application/zz-winassoc-123'],
  3363.         'wkdownload' => ['application/x-partial-download'],
  3364.         'wks' => ['application/lotus123''application/vnd.lotus-1-2-3''application/vnd.ms-works''application/wk1''application/x-123''application/x-lotus123''zz-application/zz-winassoc-123'],
  3365.         'wm' => ['video/x-ms-wm'],
  3366.         'wma' => ['audio/x-ms-wma''audio/wma'],
  3367.         'wmd' => ['application/x-ms-wmd'],
  3368.         'wmf' => ['application/wmf''application/x-msmetafile''application/x-wmf''image/wmf''image/x-win-metafile''image/x-wmf'],
  3369.         'wml' => ['text/vnd.wap.wml'],
  3370.         'wmlc' => ['application/vnd.wap.wmlc'],
  3371.         'wmls' => ['text/vnd.wap.wmlscript'],
  3372.         'wmlsc' => ['application/vnd.wap.wmlscriptc'],
  3373.         'wmv' => ['audio/x-ms-wmv''video/x-ms-wmv'],
  3374.         'wmx' => ['application/x-ms-asx''audio/x-ms-asx''video/x-ms-wax''video/x-ms-wmx''video/x-ms-wvx'],
  3375.         'wmz' => ['application/x-ms-wmz''application/x-msmetafile'],
  3376.         'woff' => ['application/font-woff''application/x-font-woff''font/woff'],
  3377.         'woff2' => ['font/woff2'],
  3378.         'wp' => ['application/vnd.wordperfect''application/wordperfect''application/x-wordperfect'],
  3379.         'wp4' => ['application/vnd.wordperfect''application/wordperfect''application/x-wordperfect'],
  3380.         'wp5' => ['application/vnd.wordperfect''application/wordperfect''application/x-wordperfect'],
  3381.         'wp6' => ['application/vnd.wordperfect''application/wordperfect''application/x-wordperfect'],
  3382.         'wpd' => ['application/vnd.wordperfect''application/wordperfect''application/x-wordperfect'],
  3383.         'wpg' => ['application/x-wpg'],
  3384.         'wpl' => ['application/vnd.ms-wpl'],
  3385.         'wpp' => ['application/vnd.wordperfect''application/wordperfect''application/x-wordperfect'],
  3386.         'wps' => ['application/vnd.ms-works'],
  3387.         'wqd' => ['application/vnd.wqd'],
  3388.         'wri' => ['application/x-mswrite'],
  3389.         'wrl' => ['model/vrml'],
  3390.         'ws' => ['application/x-wonderswan-rom'],
  3391.         'wsc' => ['application/x-wonderswan-color-rom''message/vnd.wfa.wsc'],
  3392.         'wsdl' => ['application/wsdl+xml'],
  3393.         'wsgi' => ['text/x-python'],
  3394.         'wspolicy' => ['application/wspolicy+xml'],
  3395.         'wtb' => ['application/vnd.webturbo'],
  3396.         'wv' => ['audio/x-wavpack'],
  3397.         'wvc' => ['audio/x-wavpack-correction'],
  3398.         'wvp' => ['audio/x-wavpack'],
  3399.         'wvx' => ['application/x-ms-asx''audio/x-ms-asx''video/x-ms-wax''video/x-ms-wmx''video/x-ms-wvx'],
  3400.         'wwf' => ['application/wwf''application/x-wwf'],
  3401.         'x32' => ['application/x-authorware-bin'],
  3402.         'x3d' => ['model/x3d+xml'],
  3403.         'x3db' => ['model/x3d+binary''model/x3d+fastinfoset'],
  3404.         'x3dbz' => ['model/x3d+binary'],
  3405.         'x3dv' => ['model/x3d+vrml''model/x3d-vrml'],
  3406.         'x3dvz' => ['model/x3d+vrml'],
  3407.         'x3dz' => ['model/x3d+xml'],
  3408.         'x3f' => ['image/x-sigma-x3f'],
  3409.         'x_b' => ['model/vnd.parasolid.transmit.binary'],
  3410.         'x_t' => ['model/vnd.parasolid.transmit.text'],
  3411.         'xac' => ['application/x-gnucash'],
  3412.         'xaml' => ['application/xaml+xml'],
  3413.         'xap' => ['application/x-silverlight-app'],
  3414.         'xar' => ['application/vnd.xara''application/x-xar'],
  3415.         'xav' => ['application/xcap-att+xml'],
  3416.         'xbap' => ['application/x-ms-xbap'],
  3417.         'xbd' => ['application/vnd.fujixerox.docuworks.binder'],
  3418.         'xbel' => ['application/x-xbel'],
  3419.         'xbl' => ['application/xml''text/xml'],
  3420.         'xbm' => ['image/x-xbitmap'],
  3421.         'xca' => ['application/xcap-caps+xml'],
  3422.         'xcf' => ['image/x-xcf'],
  3423.         'xcf.bz2' => ['image/x-compressed-xcf'],
  3424.         'xcf.gz' => ['image/x-compressed-xcf'],
  3425.         'xcs' => ['application/calendar+xml'],
  3426.         'xdf' => ['application/mrb-consumer+xml''application/mrb-publish+xml''application/xcap-diff+xml'],
  3427.         'xdgapp' => ['application/vnd.flatpak''application/vnd.xdgapp'],
  3428.         'xdm' => ['application/vnd.syncml.dm+xml'],
  3429.         'xdp' => ['application/vnd.adobe.xdp+xml'],
  3430.         'xdssc' => ['application/dssc+xml'],
  3431.         'xdw' => ['application/vnd.fujixerox.docuworks'],
  3432.         'xel' => ['application/xcap-el+xml'],
  3433.         'xenc' => ['application/xenc+xml'],
  3434.         'xer' => ['application/patch-ops-error+xml''application/xcap-error+xml'],
  3435.         'xfdf' => ['application/vnd.adobe.xfdf'],
  3436.         'xfdl' => ['application/vnd.xfdl'],
  3437.         'xhe' => ['audio/usac'],
  3438.         'xht' => ['application/xhtml+xml'],
  3439.         'xhtml' => ['application/xhtml+xml'],
  3440.         'xhvml' => ['application/xv+xml'],
  3441.         'xi' => ['audio/x-xi'],
  3442.         'xif' => ['image/vnd.xiff'],
  3443.         'xla' => ['application/msexcel''application/vnd.ms-excel''application/x-msexcel''zz-application/zz-winassoc-xls'],
  3444.         'xlam' => ['application/vnd.ms-excel.addin.macroenabled.12'],
  3445.         'xlc' => ['application/msexcel''application/vnd.ms-excel''application/x-msexcel''zz-application/zz-winassoc-xls'],
  3446.         'xld' => ['application/msexcel''application/vnd.ms-excel''application/x-msexcel''zz-application/zz-winassoc-xls'],
  3447.         'xlf' => ['application/x-xliff''application/x-xliff+xml''application/xliff+xml'],
  3448.         'xliff' => ['application/x-xliff''application/xliff+xml'],
  3449.         'xll' => ['application/msexcel''application/vnd.ms-excel''application/x-msexcel''zz-application/zz-winassoc-xls'],
  3450.         'xlm' => ['application/msexcel''application/vnd.ms-excel''application/x-msexcel''zz-application/zz-winassoc-xls'],
  3451.         'xlr' => ['application/vnd.ms-works'],
  3452.         'xls' => ['application/vnd.ms-excel''application/msexcel''application/x-msexcel''zz-application/zz-winassoc-xls'],
  3453.         'xlsb' => ['application/vnd.ms-excel.sheet.binary.macroenabled.12'],
  3454.         'xlsm' => ['application/vnd.ms-excel.sheet.macroenabled.12'],
  3455.         'xlsx' => ['application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'],
  3456.         'xlt' => ['application/msexcel''application/vnd.ms-excel''application/x-msexcel''zz-application/zz-winassoc-xls'],
  3457.         'xltm' => ['application/vnd.ms-excel.template.macroenabled.12'],
  3458.         'xltx' => ['application/vnd.openxmlformats-officedocument.spreadsheetml.template'],
  3459.         'xlw' => ['application/msexcel''application/vnd.ms-excel''application/x-msexcel''zz-application/zz-winassoc-xls'],
  3460.         'xm' => ['audio/x-xm''audio/xm'],
  3461.         'xmf' => ['audio/mobile-xmf''audio/x-xmf''audio/xmf'],
  3462.         'xmi' => ['text/x-xmi'],
  3463.         'xml' => ['application/xml''text/xml'],
  3464.         'xns' => ['application/xcap-ns+xml'],
  3465.         'xo' => ['application/vnd.olpc-sugar'],
  3466.         'xop' => ['application/xop+xml'],
  3467.         'xpi' => ['application/x-xpinstall'],
  3468.         'xpl' => ['application/xproc+xml'],
  3469.         'xpm' => ['image/x-xpixmap''image/x-xpm'],
  3470.         'xpr' => ['application/vnd.is-xpr'],
  3471.         'xps' => ['application/vnd.ms-xpsdocument''application/xps'],
  3472.         'xpw' => ['application/vnd.intercon.formnet'],
  3473.         'xpx' => ['application/vnd.intercon.formnet'],
  3474.         'xsd' => ['application/xml''text/xml'],
  3475.         'xsl' => ['application/xml''application/xslt+xml'],
  3476.         'xslfo' => ['text/x-xslfo'],
  3477.         'xslt' => ['application/xslt+xml'],
  3478.         'xsm' => ['application/vnd.syncml+xml'],
  3479.         'xspf' => ['application/x-xspf+xml''application/xspf+xml'],
  3480.         'xul' => ['application/vnd.mozilla.xul+xml'],
  3481.         'xvm' => ['application/xv+xml'],
  3482.         'xvml' => ['application/xv+xml'],
  3483.         'xwd' => ['image/x-xwindowdump'],
  3484.         'xyz' => ['chemical/x-xyz'],
  3485.         'xz' => ['application/x-xz'],
  3486.         'yaml' => ['application/x-yaml''text/x-yaml''text/yaml'],
  3487.         'yang' => ['application/yang'],
  3488.         'yin' => ['application/yin+xml'],
  3489.         'yml' => ['application/x-yaml''text/x-yaml''text/yaml'],
  3490.         'ymp' => ['text/x-suse-ymp'],
  3491.         'yt' => ['application/vnd.youtube.yt'],
  3492.         'z1' => ['application/x-zmachine'],
  3493.         'z2' => ['application/x-zmachine'],
  3494.         'z3' => ['application/x-zmachine'],
  3495.         'z4' => ['application/x-zmachine'],
  3496.         'z5' => ['application/x-zmachine'],
  3497.         'z6' => ['application/x-zmachine'],
  3498.         'z64' => ['application/x-n64-rom'],
  3499.         'z7' => ['application/x-zmachine'],
  3500.         'z8' => ['application/x-zmachine'],
  3501.         'zabw' => ['application/x-abiword'],
  3502.         'zaz' => ['application/vnd.zzazz.deck+xml'],
  3503.         'zip' => ['application/zip''application/x-zip''application/x-zip-compressed'],
  3504.         'zir' => ['application/vnd.zul'],
  3505.         'zirz' => ['application/vnd.zul'],
  3506.         'zmm' => ['application/vnd.handheld-entertainment+xml'],
  3507.         'zoo' => ['application/x-zoo'],
  3508.         'zsav' => ['application/x-spss-sav''application/x-spss-savefile'],
  3509.         'zst' => ['application/zstd'],
  3510.         'zz' => ['application/zlib'],
  3511.         '123' => ['application/lotus123''application/vnd.lotus-1-2-3''application/wk1''application/x-123''application/x-lotus123''zz-application/zz-winassoc-123'],
  3512.         '602' => ['application/x-t602'],
  3513.         '669' => ['audio/x-mod'],
  3514.     ];
  3515. }