forked from RamseyK/httpserver
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMimeTypes.inc
More file actions
executable file
·458 lines (458 loc) · 17 KB
/
MimeTypes.inc
File metadata and controls
executable file
·458 lines (458 loc) · 17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
STR_PAIR("3dm", "x-world/x-3dmf"),
STR_PAIR("3dmf", "x-world/x-3dmf"),
STR_PAIR("a", "application/octet-stream"),
STR_PAIR("aab", "application/x-authorware-bin"),
STR_PAIR("aam", "application/x-authorware-map"),
STR_PAIR("aas", "application/x-authorware-seg"),
STR_PAIR("abc", "text/vnd.abc"),
STR_PAIR("acgi", "text/html"),
STR_PAIR("afl", "video/animaflex"),
STR_PAIR("ai", "application/postscript"),
STR_PAIR("aif", "audio/aiff"),
STR_PAIR("aifc", "audio/aiff"),
STR_PAIR("aiff", "audio/aiff"),
STR_PAIR("aim", "application/x-aim"),
STR_PAIR("aip", "text/x-audiosoft-intra"),
STR_PAIR("ani", "application/x-navi-animation"),
STR_PAIR("aos", "application/x-nokia-9000-communicator-add-on-software"),
STR_PAIR("aps", "application/mime"),
STR_PAIR("arc", "application/octet-stream"),
STR_PAIR("arj", "application/arj"),
STR_PAIR("art", "image/x-jg"),
STR_PAIR("asf", "video/x-ms-asf"),
STR_PAIR("asm", "text/x-asm"),
STR_PAIR("asp", "text/asp"),
STR_PAIR("asx", "video/x-ms-asf"),
STR_PAIR("au", "audio/x-au"),
STR_PAIR("avi", "video/avi"),
STR_PAIR("avs", "video/avs-video"),
STR_PAIR("bcpio", "application/x-bcpio"),
STR_PAIR("bin", "application/octet-stream"),
STR_PAIR("bm", "image/bmp"),
STR_PAIR("bmp", "image/bmp"),
STR_PAIR("boo", "application/book"),
STR_PAIR("book", "application/book"),
STR_PAIR("boz", "application/x-bzip2"),
STR_PAIR("bsh", "application/x-bsh"),
STR_PAIR("bz", "application/x-bzip"),
STR_PAIR("bz2", "application/x-bzip2"),
STR_PAIR("c", "text/plain"),
STR_PAIR("c++", "text/plain"),
STR_PAIR("cat", "application/vnd.ms-pki.seccat"),
STR_PAIR("cc", "text/plain"),
STR_PAIR("ccad", "application/clariscad"),
STR_PAIR("cco", "application/x-cocoa"),
STR_PAIR("cdf", "application/cdf"),
STR_PAIR("cer", "application/pkix-cert"),
STR_PAIR("cer", "application/x-x509-ca-cert"),
STR_PAIR("cha", "application/x-chat"),
STR_PAIR("chat", "application/x-chat"),
STR_PAIR("class", "application/java"),
STR_PAIR("com", "text/plain"),
STR_PAIR("conf", "text/plain"),
STR_PAIR("cpio", "application/x-cpio"),
STR_PAIR("cpp", "text/x-c"),
STR_PAIR("cpt", "application/x-cpt"),
STR_PAIR("crl", "application/pkcs-crl"),
STR_PAIR("crt", "application/pkix-cert"),
STR_PAIR("csh", "text/x-script.csh"),
STR_PAIR("css", "text/css"),
STR_PAIR("cxx", "text/plain"),
STR_PAIR("dcr", "application/x-director"),
STR_PAIR("deepv", "application/x-deepv"),
STR_PAIR("def", "text/plain"),
STR_PAIR("der", "application/x-x509-ca-cert"),
STR_PAIR("dif", "video/x-dv"),
STR_PAIR("dir", "application/x-director"),
STR_PAIR("dl", "video/dl"),
STR_PAIR("doc", "application/msword"),
STR_PAIR("docx", "application/msword"),
STR_PAIR("dot", "application/msword"),
STR_PAIR("dp", "application/commonground"),
STR_PAIR("drw", "application/drafting"),
STR_PAIR("dump", "application/octet-stream"),
STR_PAIR("dv", "video/x-dv"),
STR_PAIR("dvi", "application/x-dvi"),
STR_PAIR("dwf", "model/vnd.dwf"),
STR_PAIR("dwg", "image/x-dwg"),
STR_PAIR("dxf", "image/x-dwg"),
STR_PAIR("el", "text/x-script.elisp"),
STR_PAIR("elc", "application/x-elc"),
STR_PAIR("env", "application/x-envoy"),
STR_PAIR("eps", "application/postscript"),
STR_PAIR("es", "application/x-esrehber"),
STR_PAIR("etx", "text/x-setext"),
STR_PAIR("evy", "application/envoy"),
STR_PAIR("exe", "application/octet-stream"),
STR_PAIR("f", "text/plain"),
STR_PAIR("f77", "text/x-fortran"),
STR_PAIR("f90", "text/plain"),
STR_PAIR("fdf", "application/vnd.fdf"),
STR_PAIR("fif", "image/fif"),
STR_PAIR("fli", "video/fli"),
STR_PAIR("flo", "image/florian"),
STR_PAIR("flx", "text/vnd.fmi.flexstor"),
STR_PAIR("fmf", "video/x-atomic3d-feature"),
STR_PAIR("for", "text/plain"),
STR_PAIR("fpx", "image/vnd.fpx"),
STR_PAIR("frl", "application/freeloader"),
STR_PAIR("funk", "audio/make"),
STR_PAIR("g", "text/plain"),
STR_PAIR("g3", "image/g3fax"),
STR_PAIR("gif", "image/gif"),
STR_PAIR("gl", "video/gl"),
STR_PAIR("gsd", "audio/x-gsm"),
STR_PAIR("gsm", "audio/x-gsm"),
STR_PAIR("gsp", "application/x-gsp"),
STR_PAIR("gss", "application/x-gss"),
STR_PAIR("gtar", "application/x-gtar"),
STR_PAIR("gz", "application/x-gzip"),
STR_PAIR("gzip", "application/x-gzip"),
STR_PAIR("h", "text/plain"),
STR_PAIR("hdf", "application/x-hdf"),
STR_PAIR("help", "application/x-helpfile"),
STR_PAIR("hgl", "application/vnd.hp-hpgl"),
STR_PAIR("hh", "text/plain"),
STR_PAIR("hlb", "text/x-script"),
STR_PAIR("hlp", "application/x-helpfile"),
STR_PAIR("hpg", "application/vnd.hp-hpgl"),
STR_PAIR("hpgl", "application/vnd.hp-hpgl"),
STR_PAIR("hqx", "application/binhex"),
STR_PAIR("hta", "application/hta"),
STR_PAIR("htc", "text/x-component"),
STR_PAIR("htm", "text/html"),
STR_PAIR("html", "text/html"),
STR_PAIR("htmls", "text/html"),
STR_PAIR("htt", "text/webviewhtml"),
STR_PAIR("htx", "text/html"),
STR_PAIR("ice", "x-conference/x-cooltalk"),
STR_PAIR("ico", "image/x-icon"),
STR_PAIR("idc", "text/plain"),
STR_PAIR("ief", "image/ief"),
STR_PAIR("iefs", "image/ief"),
STR_PAIR("iges", "application/iges"),
STR_PAIR("iges", "model/iges"),
STR_PAIR("igs", "model/iges"),
STR_PAIR("ima", "application/x-ima"),
STR_PAIR("imap", "application/x-httpd-imap"),
STR_PAIR("inf", "application/inf"),
STR_PAIR("ins", "application/x-internett-signup"),
STR_PAIR("ip", "application/x-ip2"),
STR_PAIR("isu", "video/x-isvideo"),
STR_PAIR("it", "audio/it"),
STR_PAIR("iv", "application/x-inventor"),
STR_PAIR("ivr", "i-world/i-vrml"),
STR_PAIR("ivy", "application/x-livescreen"),
STR_PAIR("jam", "audio/x-jam"),
STR_PAIR("jav", "text/plain"),
STR_PAIR("java", "text/plain"),
STR_PAIR("jcm", "application/x-java-commerce"),
STR_PAIR("jfif", "image/jpeg"),
STR_PAIR("jfif-tbnl", "image/jpeg"),
STR_PAIR("jpe", "image/jpeg"),
STR_PAIR("jpeg", "image/jpeg"),
STR_PAIR("jpg", "image/jpeg"),
STR_PAIR("jps", "image/x-jps"),
STR_PAIR("js", "application/x-javascript"),
STR_PAIR("jut", "image/jutvision"),
STR_PAIR("kar", "audio/midi"),
STR_PAIR("ksh", "application/x-ksh"),
STR_PAIR("la", "audio/nspaudio"),
STR_PAIR("lam", "audio/x-liveaudio"),
STR_PAIR("latex", "application/x-latex"),
STR_PAIR("lha", "application/lha"),
STR_PAIR("lhx", "application/octet-stream"),
STR_PAIR("list", "text/plain"),
STR_PAIR("lma", "audio/nspaudio"),
STR_PAIR("log", "text/plain"),
STR_PAIR("lsp", "application/x-lisp"),
STR_PAIR("lst", "text/plain"),
STR_PAIR("lsx", "text/x-la-asf"),
STR_PAIR("lzh", "application/octet-stream"),
STR_PAIR("lzx", "application/lzx"),
STR_PAIR("m", "text/plain"),
STR_PAIR("m1v", "video/mpeg"),
STR_PAIR("m2a", "audio/mpeg"),
STR_PAIR("m2v", "video/mpeg"),
STR_PAIR("m3u", "audio/x-mpequrl"),
STR_PAIR("man", "application/x-troff-man"),
STR_PAIR("map", "application/x-navimap"),
STR_PAIR("mar", "text/plain"),
STR_PAIR("mbd", "application/mbedlet"),
STR_PAIR("mc$", "application/x-magic-cap-package-1.0"),
STR_PAIR("mcd", "application/mcad"),
STR_PAIR("mcf", "image/vasa"),
STR_PAIR("mcf", "text/mcf"),
STR_PAIR("mcp", "application/netmc"),
STR_PAIR("me", "application/x-troff-me"),
STR_PAIR("mht", "message/rfc822"),
STR_PAIR("mhtml", "message/rfc822"),
STR_PAIR("mid", "audio/midi"),
STR_PAIR("midi", "audio/midi"),
STR_PAIR("mif", "application/x-mif"),
STR_PAIR("mime", "www/mime"),
STR_PAIR("mjf", "audio/x-vnd.audioexplosion.mjuicemediafile"),
STR_PAIR("mjpg", "video/x-motion-jpeg"),
STR_PAIR("mm", "application/base64"),
STR_PAIR("mme", "application/base64"),
STR_PAIR("mod", "audio/mod"),
STR_PAIR("moov", "video/quicktime"),
STR_PAIR("mov", "video/quicktime"),
STR_PAIR("movie", "video/x-sgi-movie"),
STR_PAIR("mp2", "audio/mpeg"),
STR_PAIR("mp3", "audio/mpeg3"),
STR_PAIR("mpa", "audio/mpeg"),
STR_PAIR("mpc", "application/x-project"),
STR_PAIR("mpe", "video/mpeg"),
STR_PAIR("mpeg", "video/mpeg"),
STR_PAIR("mpg", "video/mpeg"),
STR_PAIR("mpga", "audio/mpeg"),
STR_PAIR("mpp", "application/vnd.ms-project"),
STR_PAIR("mpt", "application/x-project"),
STR_PAIR("mpv", "application/x-project"),
STR_PAIR("mpx", "application/x-project"),
STR_PAIR("mrc", "application/marc"),
STR_PAIR("ms", "application/x-troff-ms"),
STR_PAIR("mv", "video/x-sgi-movie"),
STR_PAIR("my", "audio/make"),
STR_PAIR("mzz", "application/x-vnd.audioexplosion.mzz"),
STR_PAIR("nap", "image/naplps"),
STR_PAIR("naplps", "image/naplps"),
STR_PAIR("nc", "application/x-netcdf"),
STR_PAIR("ncm", "application/vnd.nokia.configuration-message"),
STR_PAIR("nif", "image/x-niff"),
STR_PAIR("niff", "image/x-niff"),
STR_PAIR("nix", "application/x-mix-transfer"),
STR_PAIR("nsc", "application/x-conference"),
STR_PAIR("nvd", "application/x-navidoc"),
STR_PAIR("o", "application/octet-stream"),
STR_PAIR("oda", "application/oda"),
STR_PAIR("omc", "application/x-omc"),
STR_PAIR("omcd", "application/x-omcdatamaker"),
STR_PAIR("omcr", "application/x-omcregerator"),
STR_PAIR("p", "text/x-pascal"),
STR_PAIR("p10", "application/pkcs10"),
STR_PAIR("p10", "application/x-pkcs10"),
STR_PAIR("p12", "application/pkcs-12"),
STR_PAIR("p12", "application/x-pkcs12"),
STR_PAIR("p7a", "application/x-pkcs7-signature"),
STR_PAIR("p7c", "application/pkcs7-mime"),
STR_PAIR("p7c", "application/x-pkcs7-mime"),
STR_PAIR("p7m", "application/pkcs7-mime"),
STR_PAIR("p7m", "application/x-pkcs7-mime"),
STR_PAIR("p7r", "application/x-pkcs7-certreqresp"),
STR_PAIR("p7s", "application/pkcs7-signature"),
STR_PAIR("part", "application/pro_eng"),
STR_PAIR("pas", "text/pascal"),
STR_PAIR("pbm", "image/x-portable-bitmap"),
STR_PAIR("pcl", "application/x-pcl"),
STR_PAIR("pct", "image/x-pict"),
STR_PAIR("pcx", "image/x-pcx"),
STR_PAIR("pdb", "chemical/x-pdb"),
STR_PAIR("pdf", "application/pdf"),
STR_PAIR("pfunk", "audio/make"),
STR_PAIR("pgm", "image/x-portable-graymap"),
STR_PAIR("pic", "image/pict"),
STR_PAIR("pict", "image/pict"),
STR_PAIR("pkg", "application/x-newton-compatible-pkg"),
STR_PAIR("pko", "application/vnd.ms-pki.pko"),
STR_PAIR("pl", "text/plain"),
STR_PAIR("plx", "application/x-pixclscript"),
STR_PAIR("pm", "image/x-xpixmap"),
STR_PAIR("pm4", "application/x-pagemaker"),
STR_PAIR("pm5", "application/x-pagemaker"),
STR_PAIR("png", "image/png"),
STR_PAIR("pnm", "image/x-portable-anymap"),
STR_PAIR("pot", "application/mspowerpoint"),
STR_PAIR("pov", "model/x-pov"),
STR_PAIR("ppa", "application/vnd.ms-powerpoint"),
STR_PAIR("ppm", "image/x-portable-pixmap"),
STR_PAIR("pps", "application/mspowerpoint"),
STR_PAIR("ppt", "application/powerpoint"),
STR_PAIR("pptx", "application/powerpoint"),
STR_PAIR("ppz", "application/mspowerpoint"),
STR_PAIR("pre", "application/x-freelance"),
STR_PAIR("prt", "application/pro_eng"),
STR_PAIR("ps", "application/postscript"),
STR_PAIR("psd", "application/octet-stream"),
STR_PAIR("pvu", "paleovu/x-pv"),
STR_PAIR("pwz", "application/vnd.ms-powerpoint"),
STR_PAIR("py", "text/x-script.phyton"),
STR_PAIR("pyc", "applicaiton/x-bytecode.python"),
STR_PAIR("qcp", "audio/vnd.qcelp"),
STR_PAIR("qd3", "x-world/x-3dmf"),
STR_PAIR("qd3d", "x-world/x-3dmf"),
STR_PAIR("qif", "image/x-quicktime"),
STR_PAIR("qt", "video/quicktime"),
STR_PAIR("qtc", "video/x-qtc"),
STR_PAIR("qti", "image/x-quicktime"),
STR_PAIR("qtif", "image/x-quicktime"),
STR_PAIR("ra", "audio/x-realaudio"),
STR_PAIR("ram", "audio/x-pn-realaudio"),
STR_PAIR("ras", "image/cmu-raster"),
STR_PAIR("ras", "image/x-cmu-raster"),
STR_PAIR("rast", "image/cmu-raster"),
STR_PAIR("rexx", "text/x-script.rexx"),
STR_PAIR("rf", "image/vnd.rn-realflash"),
STR_PAIR("rgb", "image/x-rgb"),
STR_PAIR("rm", "audio/x-pn-realaudio"),
STR_PAIR("rmi", "audio/mid"),
STR_PAIR("rmm", "audio/x-pn-realaudio"),
STR_PAIR("rmp", "audio/x-pn-realaudio"),
STR_PAIR("rng", "application/ringing-tones"),
STR_PAIR("rnx", "application/vnd.rn-realplayer"),
STR_PAIR("roff", "application/x-troff"),
STR_PAIR("rp", "image/vnd.rn-realpix"),
STR_PAIR("rpm", "audio/x-pn-realaudio-plugin"),
STR_PAIR("rt", "text/richtext"),
STR_PAIR("rt", "text/vnd.rn-realtext"),
STR_PAIR("rtf", "text/richtext"),
STR_PAIR("rtx", "text/richtext"),
STR_PAIR("rv", "video/vnd.rn-realvideo"),
STR_PAIR("s", "text/x-asm"),
STR_PAIR("s3m", "audio/s3m"),
STR_PAIR("saveme", "application/octet-stream"),
STR_PAIR("sbk", "application/x-tbook"),
STR_PAIR("scm", "video/x-scm"),
STR_PAIR("sdml", "text/plain"),
STR_PAIR("sdp", "application/sdp"),
STR_PAIR("sdp", "application/x-sdp"),
STR_PAIR("sdr", "application/sounder"),
STR_PAIR("sea", "application/sea"),
STR_PAIR("set", "application/set"),
STR_PAIR("sgm", "text/sgml"),
STR_PAIR("sgml", "text/sgml"),
STR_PAIR("sh", "text/x-script.sh"),
STR_PAIR("shar", "application/x-bsh"),
STR_PAIR("shtml", "text/html"),
STR_PAIR("sid", "audio/x-psid"),
STR_PAIR("sit", "application/x-sit"),
STR_PAIR("skd", "application/x-koan"),
STR_PAIR("skm", "application/x-koan"),
STR_PAIR("skp", "application/x-koan"),
STR_PAIR("skt", "application/x-koan"),
STR_PAIR("sl", "application/x-seelogo"),
STR_PAIR("smi", "application/smil"),
STR_PAIR("smil", "application/smil"),
STR_PAIR("snd", "audio/basic"),
STR_PAIR("sol", "application/solids"),
STR_PAIR("spc", "text/x-speech"),
STR_PAIR("spl", "application/futuresplash"),
STR_PAIR("spr", "application/x-sprite"),
STR_PAIR("sprite", "application/x-sprite"),
STR_PAIR("src", "application/x-wais-source"),
STR_PAIR("ssi", "text/x-server-parsed-html"),
STR_PAIR("ssm", "application/streamingmedia"),
STR_PAIR("sst", "application/vnd.ms-pki.certstore"),
STR_PAIR("step", "application/step"),
STR_PAIR("stl", "application/sla"),
STR_PAIR("stp", "application/step"),
STR_PAIR("sv4cpio", "application/x-sv4cpio"),
STR_PAIR("sv4crc", "application/x-sv4crc"),
STR_PAIR("svf", "image/x-dwg"),
STR_PAIR("svr", "x-world/x-svr"),
STR_PAIR("swf", "application/x-shockwave-flash"),
STR_PAIR("t", "application/x-troff"),
STR_PAIR("talk", "text/x-speech"),
STR_PAIR("tar", "application/x-tar"),
STR_PAIR("tbk", "application/toolbook"),
STR_PAIR("tcl", "text/x-script.tcl"),
STR_PAIR("tcsh", "text/x-script.tcsh"),
STR_PAIR("tex", "application/x-tex"),
STR_PAIR("texi", "application/x-texinfo"),
STR_PAIR("texinfo", "application/x-texinfo"),
STR_PAIR("text", "text/plain"),
STR_PAIR("tgz", "application/gnutar"),
STR_PAIR("tif", "image/tiff"),
STR_PAIR("tiff", "image/tiff"),
STR_PAIR("tr", "application/x-troff"),
STR_PAIR("tsi", "audio/tsp-audio"),
STR_PAIR("tsp", "audio/tsplayer"),
STR_PAIR("tsv", "text/tab-separated-values"),
STR_PAIR("turbot", "image/florian"),
STR_PAIR("txt", "text/plain"),
STR_PAIR("uil", "text/x-uil"),
STR_PAIR("uni", "text/uri-list"),
STR_PAIR("unis", "text/uri-list"),
STR_PAIR("unv", "application/i-deas"),
STR_PAIR("uri", "text/uri-list"),
STR_PAIR("uris", "text/uri-list"),
STR_PAIR("ustar", "application/x-ustar"),
STR_PAIR("uu", "application/octet-stream"),
STR_PAIR("uue", "text/x-uuencode"),
STR_PAIR("vcd", "application/x-cdlink"),
STR_PAIR("vcs", "text/x-vcalendar"),
STR_PAIR("vda", "application/vda"),
STR_PAIR("vdo", "video/vdo"),
STR_PAIR("vew", "application/groupwise"),
STR_PAIR("viv", "video/vivo"),
STR_PAIR("vivo", "video/vivo"),
STR_PAIR("vmd", "application/vocaltec-media-desc"),
STR_PAIR("vmf", "application/vocaltec-media-file"),
STR_PAIR("voc", "audio/voc"),
STR_PAIR("vos", "video/vosaic"),
STR_PAIR("vox", "audio/voxware"),
STR_PAIR("vqe", "audio/x-twinvq-plugin"),
STR_PAIR("vqf", "audio/x-twinvq"),
STR_PAIR("vql", "audio/x-twinvq-plugin"),
STR_PAIR("vrml", "model/vrml"),
STR_PAIR("vrt", "x-world/x-vrt"),
STR_PAIR("vsd", "application/x-visio"),
STR_PAIR("vst", "application/x-visio"),
STR_PAIR("vsw", "application/x-visio"),
STR_PAIR("w60", "application/wordperfect6.0"),
STR_PAIR("w61", "application/wordperfect6.1"),
STR_PAIR("w6w", "application/msword"),
STR_PAIR("wav", "audio/wav"),
STR_PAIR("wb1", "application/x-qpro"),
STR_PAIR("wbmp", "image/vnd.wap.wbmp"),
STR_PAIR("web", "application/vnd.xara"),
STR_PAIR("wiz", "application/msword"),
STR_PAIR("wk1", "application/x-123"),
STR_PAIR("wmf", "windows/metafile"),
STR_PAIR("wml", "text/vnd.wap.wml"),
STR_PAIR("wmlc", "application/vnd.wap.wmlc"),
STR_PAIR("wmls", "text/vnd.wap.wmlscript"),
STR_PAIR("wmlsc", "application/vnd.wap.wmlscriptc"),
STR_PAIR("word", "application/msword"),
STR_PAIR("wp", "application/wordperfect"),
STR_PAIR("wp5", "application/wordperfect"),
STR_PAIR("wp5", "application/wordperfect6.0"),
STR_PAIR("wp6", "application/wordperfect"),
STR_PAIR("wpd", "application/wordperfect"),
STR_PAIR("wq1", "application/x-lotus"),
STR_PAIR("wri", "application/mswrite"),
STR_PAIR("wrl", "application/x-world"),
STR_PAIR("wrz", "model/vrml"),
STR_PAIR("wsc", "text/scriplet"),
STR_PAIR("wsrc", "application/x-wais-source"),
STR_PAIR("wtk", "application/x-wintalk"),
STR_PAIR("xbm", "image/xbm"),
STR_PAIR("xdr", "video/x-amt-demorun"),
STR_PAIR("xgz", "xgl/drawing"),
STR_PAIR("xif", "image/vnd.xiff"),
STR_PAIR("xl", "application/excel"),
STR_PAIR("xla", "application/excel"),
STR_PAIR("xlb", "application/excel"),
STR_PAIR("xlc", "application/excel"),
STR_PAIR("xld", "application/excel"),
STR_PAIR("xlk", "application/excel"),
STR_PAIR("xll", "application/excel"),
STR_PAIR("xlm", "application/excel"),
STR_PAIR("xls", "application/excel"),
STR_PAIR("xlsx", "application/excel"),
STR_PAIR("xlt", "application/excel"),
STR_PAIR("xlw", "application/excel"),
STR_PAIR("xm", "audio/xm"),
STR_PAIR("xml", "text/xml"),
STR_PAIR("xmz", "xgl/movie"),
STR_PAIR("xpix", "application/x-vnd.ls-xpix"),
STR_PAIR("xpm", "image/xpm"),
STR_PAIR("x-png", "image/png"),
STR_PAIR("xsr", "video/x-amt-showrun"),
STR_PAIR("xwd", "image/x-xwd"),
STR_PAIR("xyz", "chemical/x-pdb"),
STR_PAIR("z", "application/x-compressed"),
STR_PAIR("zip", "application/zip"),
STR_PAIR("zoo", "application/octet-stream"),
STR_PAIR("zsh", "text/x-script.zsh")