http_constant/constant/
file_extension.rs

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
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
pub static FILE_EXTENSION_123: &str = "123";
pub static FILE_EXTENSION_3DML: &str = "3dml";
pub static FILE_EXTENSION_3DS: &str = "3ds";
pub static FILE_EXTENSION_3G2: &str = "3g2";
pub static FILE_EXTENSION_3GP: &str = "3gp";
pub static FILE_EXTENSION_7Z: &str = "7z";
pub static FILE_EXTENSION_AAB: &str = "aab";
pub static FILE_EXTENSION_AAC: &str = "aac";
pub static FILE_EXTENSION_AAM: &str = "aam";
pub static FILE_EXTENSION_AAS: &str = "aas";
pub static FILE_EXTENSION_ABS: &str = "abs";
pub static FILE_EXTENSION_ABW: &str = "abw";
pub static FILE_EXTENSION_AC: &str = "ac";
pub static FILE_EXTENSION_ACC: &str = "acc";
pub static FILE_EXTENSION_ACE: &str = "ace";
pub static FILE_EXTENSION_ACU: &str = "acu";
pub static FILE_EXTENSION_ACUTC: &str = "acutc";
pub static FILE_EXTENSION_ADP: &str = "adp";
pub static FILE_EXTENSION_AEP: &str = "aep";
pub static FILE_EXTENSION_AFM: &str = "afm";
pub static FILE_EXTENSION_AFP: &str = "afp";
pub static FILE_EXTENSION_AHEAD: &str = "ahead";
pub static FILE_EXTENSION_AI: &str = "ai";
pub static FILE_EXTENSION_AIF: &str = "aif";
pub static FILE_EXTENSION_AIFC: &str = "aifc";
pub static FILE_EXTENSION_AIFF: &str = "aiff";
pub static FILE_EXTENSION_AIM: &str = "aim";
pub static FILE_EXTENSION_AIR: &str = "air";
pub static FILE_EXTENSION_AIT: &str = "ait";
pub static FILE_EXTENSION_AMI: &str = "ami";
pub static FILE_EXTENSION_ANX: &str = "anx";
pub static FILE_EXTENSION_APK: &str = "apk";
pub static FILE_EXTENSION_APPCACHE: &str = "appcache";
pub static FILE_EXTENSION_APPLICATION: &str = "application";
pub static FILE_EXTENSION_APR: &str = "apr";
pub static FILE_EXTENSION_ARC: &str = "arc";
pub static FILE_EXTENSION_ART: &str = "art";
pub static FILE_EXTENSION_ASC: &str = "asc";
pub static FILE_EXTENSION_ASF: &str = "asf";
pub static FILE_EXTENSION_ASM: &str = "asm";
pub static FILE_EXTENSION_ASO: &str = "aso";
pub static FILE_EXTENSION_ASX: &str = "asx";
pub static FILE_EXTENSION_ATC: &str = "atc";
pub static FILE_EXTENSION_ATOM: &str = "atom";
pub static FILE_EXTENSION_ATOMCAT: &str = "atomcat";
pub static FILE_EXTENSION_ATOMSVC: &str = "atomsvc";
pub static FILE_EXTENSION_ATX: &str = "atx";
pub static FILE_EXTENSION_AU: &str = "au";
pub static FILE_EXTENSION_AVI: &str = "avi";
pub static FILE_EXTENSION_AVX: &str = "avx";
pub static FILE_EXTENSION_AW: &str = "aw";
pub static FILE_EXTENSION_AXA: &str = "axa";
pub static FILE_EXTENSION_AXV: &str = "axv";
pub static FILE_EXTENSION_AZF: &str = "azf";
pub static FILE_EXTENSION_AZS: &str = "azs";
pub static FILE_EXTENSION_AZW: &str = "azw";
pub static FILE_EXTENSION_BAT: &str = "bat";
pub static FILE_EXTENSION_BCPIO: &str = "bcpio";
pub static FILE_EXTENSION_BDF: &str = "bdf";
pub static FILE_EXTENSION_BDM: &str = "bdm";
pub static FILE_EXTENSION_BED: &str = "bed";
pub static FILE_EXTENSION_BH2: &str = "bh2";
pub static FILE_EXTENSION_BIN: &str = "bin";
pub static FILE_EXTENSION_BLB: &str = "blb";
pub static FILE_EXTENSION_BLORB: &str = "blorb";
pub static FILE_EXTENSION_BMI: &str = "bmi";
pub static FILE_EXTENSION_BMP: &str = "bmp";
pub static FILE_EXTENSION_BODY: &str = "body";
pub static FILE_EXTENSION_BOOK: &str = "book";
pub static FILE_EXTENSION_BOX: &str = "box";
pub static FILE_EXTENSION_BOZ: &str = "boz";
pub static FILE_EXTENSION_BPK: &str = "bpk";
pub static FILE_EXTENSION_BTIF: &str = "btif";
pub static FILE_EXTENSION_BZ: &str = "bz";
pub static FILE_EXTENSION_BZ2: &str = "bz2";
pub static FILE_EXTENSION_C: &str = "c";
pub static FILE_EXTENSION_C11AMC: &str = "c11amc";
pub static FILE_EXTENSION_C11AMZ: &str = "c11amz";
pub static FILE_EXTENSION_C4D: &str = "c4d";
pub static FILE_EXTENSION_C4F: &str = "c4f";
pub static FILE_EXTENSION_C4G: &str = "c4g";
pub static FILE_EXTENSION_C4P: &str = "c4p";
pub static FILE_EXTENSION_C4U: &str = "c4u";
pub static FILE_EXTENSION_CAB: &str = "cab";
pub static FILE_EXTENSION_CAF: &str = "caf";
pub static FILE_EXTENSION_CAP: &str = "cap";
pub static FILE_EXTENSION_CAR: &str = "car";
pub static FILE_EXTENSION_CAT: &str = "cat";
pub static FILE_EXTENSION_CB7: &str = "cb7";
pub static FILE_EXTENSION_CBA: &str = "cba";
pub static FILE_EXTENSION_CBR: &str = "cbr";
pub static FILE_EXTENSION_CBT: &str = "cbt";
pub static FILE_EXTENSION_CBZ: &str = "cbz";
pub static FILE_EXTENSION_CC: &str = "cc";
pub static FILE_EXTENSION_CCT: &str = "cct";
pub static FILE_EXTENSION_CCXML: &str = "ccxml";
pub static FILE_EXTENSION_CDBCMSG: &str = "cdbcmsg";
pub static FILE_EXTENSION_CDF: &str = "cdf";
pub static FILE_EXTENSION_CDKEY: &str = "cdkey";
pub static FILE_EXTENSION_CDMIA: &str = "cdmia";
pub static FILE_EXTENSION_CDMIC: &str = "cdmic";
pub static FILE_EXTENSION_CDMID: &str = "cdmid";
pub static FILE_EXTENSION_CDMIO: &str = "cdmio";
pub static FILE_EXTENSION_CDMIQ: &str = "cdmiq";
pub static FILE_EXTENSION_CDX: &str = "cdx";
pub static FILE_EXTENSION_CDXML: &str = "cdxml";
pub static FILE_EXTENSION_CDY: &str = "cdy";
pub static FILE_EXTENSION_CER: &str = "cer";
pub static FILE_EXTENSION_CFS: &str = "cfs";
pub static FILE_EXTENSION_CGM: &str = "cgm";
pub static FILE_EXTENSION_CHAT: &str = "chat";
pub static FILE_EXTENSION_CHM: &str = "chm";
pub static FILE_EXTENSION_CHRT: &str = "chrt";
pub static FILE_EXTENSION_CIF: &str = "cif";
pub static FILE_EXTENSION_CII: &str = "cii";
pub static FILE_EXTENSION_CIL: &str = "cil";
pub static FILE_EXTENSION_CLA: &str = "cla";
pub static FILE_EXTENSION_CLASS: &str = "class";
pub static FILE_EXTENSION_CLKK: &str = "clkk";
pub static FILE_EXTENSION_CLKP: &str = "clkp";
pub static FILE_EXTENSION_CLKT: &str = "clkt";
pub static FILE_EXTENSION_CLKW: &str = "clkw";
pub static FILE_EXTENSION_CLKX: &str = "clkx";
pub static FILE_EXTENSION_CLP: &str = "clp";
pub static FILE_EXTENSION_CMC: &str = "cmc";
pub static FILE_EXTENSION_CMDF: &str = "cmdf";
pub static FILE_EXTENSION_CML: &str = "cml";
pub static FILE_EXTENSION_CMP: &str = "cmp";
pub static FILE_EXTENSION_CMX: &str = "cmx";
pub static FILE_EXTENSION_COD: &str = "cod";
pub static FILE_EXTENSION_COM: &str = "com";
pub static FILE_EXTENSION_CONF: &str = "conf";
pub static FILE_EXTENSION_CPIO: &str = "cpio";
pub static FILE_EXTENSION_CPP: &str = "cpp";
pub static FILE_EXTENSION_CPT: &str = "cpt";
pub static FILE_EXTENSION_CRD: &str = "crd";
pub static FILE_EXTENSION_CRL: &str = "crl";
pub static FILE_EXTENSION_CRT: &str = "crt";
pub static FILE_EXTENSION_CRYPTONOTE: &str = "cryptonote";
pub static FILE_EXTENSION_CSH: &str = "csh";
pub static FILE_EXTENSION_CSML: &str = "csml";
pub static FILE_EXTENSION_CSP: &str = "csp";
pub static FILE_EXTENSION_CSS: &str = "css";
pub static FILE_EXTENSION_CST: &str = "cst";
pub static FILE_EXTENSION_CSV: &str = "csv";
pub static FILE_EXTENSION_CU: &str = "cu";
pub static FILE_EXTENSION_CURL: &str = "curl";
pub static FILE_EXTENSION_CWW: &str = "cww";
pub static FILE_EXTENSION_CXT: &str = "cxt";
pub static FILE_EXTENSION_CXX: &str = "cxx";
pub static FILE_EXTENSION_DAE: &str = "dae";
pub static FILE_EXTENSION_DAF: &str = "daf";
pub static FILE_EXTENSION_DART: &str = "dart";
pub static FILE_EXTENSION_DATALESS: &str = "dataless";
pub static FILE_EXTENSION_DAVMOUNT: &str = "davmount";
pub static FILE_EXTENSION_DBK: &str = "dbk";
pub static FILE_EXTENSION_DCR: &str = "dcr";
pub static FILE_EXTENSION_DCURL: &str = "dcurl";
pub static FILE_EXTENSION_DD2: &str = "dd2";
pub static FILE_EXTENSION_DDD: &str = "ddd";
pub static FILE_EXTENSION_DEB: &str = "deb";
pub static FILE_EXTENSION_DEF: &str = "def";
pub static FILE_EXTENSION_DEPLOY: &str = "deploy";
pub static FILE_EXTENSION_DER: &str = "der";
pub static FILE_EXTENSION_DFAC: &str = "dfac";
pub static FILE_EXTENSION_DGC: &str = "dgc";
pub static FILE_EXTENSION_DIB: &str = "dib";
pub static FILE_EXTENSION_DIC: &str = "dic";
pub static FILE_EXTENSION_DIR: &str = "dir";
pub static FILE_EXTENSION_DIS: &str = "dis";
pub static FILE_EXTENSION_DIST: &str = "dist";
pub static FILE_EXTENSION_DISTZ: &str = "distz";
pub static FILE_EXTENSION_DJV: &str = "djv";
pub static FILE_EXTENSION_DJVU: &str = "djvu";
pub static FILE_EXTENSION_DLL: &str = "dll";
pub static FILE_EXTENSION_DMG: &str = "dmg";
pub static FILE_EXTENSION_DMP: &str = "dmp";
pub static FILE_EXTENSION_DMS: &str = "dms";
pub static FILE_EXTENSION_DNA: &str = "dna";
pub static FILE_EXTENSION_DOC: &str = "doc";
pub static FILE_EXTENSION_DOCM: &str = "docm";
pub static FILE_EXTENSION_DOCX: &str = "docx";
pub static FILE_EXTENSION_DOT: &str = "dot";
pub static FILE_EXTENSION_DOTM: &str = "dotm";
pub static FILE_EXTENSION_DOTX: &str = "dotx";
pub static FILE_EXTENSION_DP: &str = "dp";
pub static FILE_EXTENSION_DPG: &str = "dpg";
pub static FILE_EXTENSION_DRA: &str = "dra";
pub static FILE_EXTENSION_DSC: &str = "dsc";
pub static FILE_EXTENSION_DSSC: &str = "dssc";
pub static FILE_EXTENSION_DTB: &str = "dtb";
pub static FILE_EXTENSION_DTD: &str = "dtd";
pub static FILE_EXTENSION_DTS: &str = "dts";
pub static FILE_EXTENSION_DTSHD: &str = "dtshd";
pub static FILE_EXTENSION_DUMP: &str = "dump";
pub static FILE_EXTENSION_DV: &str = "dv";
pub static FILE_EXTENSION_DVB: &str = "dvb";
pub static FILE_EXTENSION_DVI: &str = "dvi";
pub static FILE_EXTENSION_DWF: &str = "dwf";
pub static FILE_EXTENSION_DWG: &str = "dwg";
pub static FILE_EXTENSION_DXF: &str = "dxf";
pub static FILE_EXTENSION_DXP: &str = "dxp";
pub static FILE_EXTENSION_DXR: &str = "dxr";
pub static FILE_EXTENSION_ECELP4800: &str = "ecelp4800";
pub static FILE_EXTENSION_ECELP7470: &str = "ecelp7470";
pub static FILE_EXTENSION_ECELP9600: &str = "ecelp9600";
pub static FILE_EXTENSION_ECMA: &str = "ecma";
pub static FILE_EXTENSION_EDM: &str = "edm";
pub static FILE_EXTENSION_EDX: &str = "edx";
pub static FILE_EXTENSION_EFIF: &str = "efif";
pub static FILE_EXTENSION_EI6: &str = "ei6";
pub static FILE_EXTENSION_ELC: &str = "elc";
pub static FILE_EXTENSION_EMF: &str = "emf";
pub static FILE_EXTENSION_EML: &str = "eml";
pub static FILE_EXTENSION_EMMA: &str = "emma";
pub static FILE_EXTENSION_EMZ: &str = "emz";
pub static FILE_EXTENSION_EOL: &str = "eol";
pub static FILE_EXTENSION_EOT: &str = "eot";
pub static FILE_EXTENSION_EPS: &str = "eps";
pub static FILE_EXTENSION_EPUB: &str = "epub";
pub static FILE_EXTENSION_ES3: &str = "es3";
pub static FILE_EXTENSION_ESA: &str = "esa";
pub static FILE_EXTENSION_ESF: &str = "esf";
pub static FILE_EXTENSION_ET3: &str = "et3";
pub static FILE_EXTENSION_ETX: &str = "etx";
pub static FILE_EXTENSION_EVA: &str = "eva";
pub static FILE_EXTENSION_EVY: &str = "evy";
pub static FILE_EXTENSION_EXE: &str = "exe";
pub static FILE_EXTENSION_EXI: &str = "exi";
pub static FILE_EXTENSION_EXT: &str = "ext";
pub static FILE_EXTENSION_EZ: &str = "ez";
pub static FILE_EXTENSION_EZ2: &str = "ez2";
pub static FILE_EXTENSION_EZ3: &str = "ez3";
pub static FILE_EXTENSION_F: &str = "f";
pub static FILE_EXTENSION_F4V: &str = "f4v";
pub static FILE_EXTENSION_F77: &str = "f77";
pub static FILE_EXTENSION_F90: &str = "f90";
pub static FILE_EXTENSION_FBS: &str = "fbs";
pub static FILE_EXTENSION_FCDT: &str = "fcdt";
pub static FILE_EXTENSION_FCS: &str = "fcs";
pub static FILE_EXTENSION_FDF: &str = "fdf";
pub static FILE_EXTENSION_FE_LAUNCH: &str = "fe_launch";
pub static FILE_EXTENSION_FG5: &str = "fg5";
pub static FILE_EXTENSION_FGD: &str = "fgd";
pub static FILE_EXTENSION_FH: &str = "fh";
pub static FILE_EXTENSION_FH4: &str = "fh4";
pub static FILE_EXTENSION_FH5: &str = "fh5";
pub static FILE_EXTENSION_FH7: &str = "fh7";
pub static FILE_EXTENSION_FHC: &str = "fhc";
pub static FILE_EXTENSION_FIG: &str = "fig";
pub static FILE_EXTENSION_FLAC: &str = "flac";
pub static FILE_EXTENSION_FLI: &str = "fli";
pub static FILE_EXTENSION_FLO: &str = "flo";
pub static FILE_EXTENSION_FLV: &str = "flv";
pub static FILE_EXTENSION_FLW: &str = "flw";
pub static FILE_EXTENSION_FLX: &str = "flx";
pub static FILE_EXTENSION_FLY: &str = "fly";
pub static FILE_EXTENSION_FM: &str = "fm";
pub static FILE_EXTENSION_FNC: &str = "fnc";
pub static FILE_EXTENSION_FOR: &str = "for";
pub static FILE_EXTENSION_FPX: &str = "fpx";
pub static FILE_EXTENSION_FRAME: &str = "frame";
pub static FILE_EXTENSION_FSC: &str = "fsc";
pub static FILE_EXTENSION_FST: &str = "fst";
pub static FILE_EXTENSION_FTC: &str = "ftc";
pub static FILE_EXTENSION_FTI: &str = "fti";
pub static FILE_EXTENSION_FVT: &str = "fvt";
pub static FILE_EXTENSION_FXP: &str = "fxp";
pub static FILE_EXTENSION_FXPL: &str = "fxpl";
pub static FILE_EXTENSION_FZS: &str = "fzs";
pub static FILE_EXTENSION_G2W: &str = "g2w";
pub static FILE_EXTENSION_G3: &str = "g3";
pub static FILE_EXTENSION_G3W: &str = "g3w";
pub static FILE_EXTENSION_GAC: &str = "gac";
pub static FILE_EXTENSION_GAM: &str = "gam";
pub static FILE_EXTENSION_GBR: &str = "gbr";
pub static FILE_EXTENSION_GCA: &str = "gca";
pub static FILE_EXTENSION_GDL: &str = "gdl";
pub static FILE_EXTENSION_GEO: &str = "geo";
pub static FILE_EXTENSION_GEX: &str = "gex";
pub static FILE_EXTENSION_GGB: &str = "ggb";
pub static FILE_EXTENSION_GGT: &str = "ggt";
pub static FILE_EXTENSION_GHF: &str = "ghf";
pub static FILE_EXTENSION_GIF: &str = "gif";
pub static FILE_EXTENSION_GIM: &str = "gim";
pub static FILE_EXTENSION_GML: &str = "gml";
pub static FILE_EXTENSION_GMX: &str = "gmx";
pub static FILE_EXTENSION_GNUMERIC: &str = "gnumeric";
pub static FILE_EXTENSION_GPH: &str = "gph";
pub static FILE_EXTENSION_GPX: &str = "gpx";
pub static FILE_EXTENSION_GQF: &str = "gqf";
pub static FILE_EXTENSION_GQS: &str = "gqs";
pub static FILE_EXTENSION_GRAM: &str = "gram";
pub static FILE_EXTENSION_GRAMPS: &str = "gramps";
pub static FILE_EXTENSION_GRE: &str = "gre";
pub static FILE_EXTENSION_GRV: &str = "grv";
pub static FILE_EXTENSION_GRXML: &str = "grxml";
pub static FILE_EXTENSION_GSF: &str = "gsf";
pub static FILE_EXTENSION_GTAR: &str = "gtar";
pub static FILE_EXTENSION_GTM: &str = "gtm";
pub static FILE_EXTENSION_GTW: &str = "gtw";
pub static FILE_EXTENSION_GV: &str = "gv";
pub static FILE_EXTENSION_GXF: &str = "gxf";
pub static FILE_EXTENSION_GXT: &str = "gxt";
pub static FILE_EXTENSION_GZ: &str = "gz";
pub static FILE_EXTENSION_H: &str = "h";
pub static FILE_EXTENSION_H261: &str = "h261";
pub static FILE_EXTENSION_H263: &str = "h263";
pub static FILE_EXTENSION_H264: &str = "h264";
pub static FILE_EXTENSION_HAL: &str = "hal";
pub static FILE_EXTENSION_HBCI: &str = "hbci";
pub static FILE_EXTENSION_HDF: &str = "hdf";
pub static FILE_EXTENSION_HH: &str = "hh";
pub static FILE_EXTENSION_HLP: &str = "hlp";
pub static FILE_EXTENSION_HPGL: &str = "hpgl";
pub static FILE_EXTENSION_HPID: &str = "hpid";
pub static FILE_EXTENSION_HPS: &str = "hps";
pub static FILE_EXTENSION_HQX: &str = "hqx";
pub static FILE_EXTENSION_HTC: &str = "htc";
pub static FILE_EXTENSION_HTKE: &str = "htke";
pub static FILE_EXTENSION_HTM: &str = "htm";
pub static FILE_EXTENSION_HTML: &str = "html";
pub static FILE_EXTENSION_HVD: &str = "hvd";
pub static FILE_EXTENSION_HVP: &str = "hvp";
pub static FILE_EXTENSION_HVS: &str = "hvs";
pub static FILE_EXTENSION_I2G: &str = "i2g";
pub static FILE_EXTENSION_ICC: &str = "icc";
pub static FILE_EXTENSION_ICE: &str = "ice";
pub static FILE_EXTENSION_ICM: &str = "icm";
pub static FILE_EXTENSION_ICO: &str = "ico";
pub static FILE_EXTENSION_ICS: &str = "ics";
pub static FILE_EXTENSION_IEF: &str = "ief";
pub static FILE_EXTENSION_IFB: &str = "ifb";
pub static FILE_EXTENSION_IFM: &str = "ifm";
pub static FILE_EXTENSION_IGES: &str = "iges";
pub static FILE_EXTENSION_IGL: &str = "igl";
pub static FILE_EXTENSION_IGM: &str = "igm";
pub static FILE_EXTENSION_IGS: &str = "igs";
pub static FILE_EXTENSION_IGX: &str = "igx";
pub static FILE_EXTENSION_IIF: &str = "iif";
pub static FILE_EXTENSION_IMP: &str = "imp";
pub static FILE_EXTENSION_IMS: &str = "ims";
pub static FILE_EXTENSION_IN: &str = "in";
pub static FILE_EXTENSION_INK: &str = "ink";
pub static FILE_EXTENSION_INKML: &str = "inkml";
pub static FILE_EXTENSION_INSTALL: &str = "install";
pub static FILE_EXTENSION_IOTA: &str = "iota";
pub static FILE_EXTENSION_IPFIX: &str = "ipfix";
pub static FILE_EXTENSION_IPK: &str = "ipk";
pub static FILE_EXTENSION_IRM: &str = "irm";
pub static FILE_EXTENSION_IRP: &str = "irp";
pub static FILE_EXTENSION_ISO: &str = "iso";
pub static FILE_EXTENSION_ITP: &str = "itp";
pub static FILE_EXTENSION_IVP: &str = "ivp";
pub static FILE_EXTENSION_IVU: &str = "ivu";
pub static FILE_EXTENSION_JAD: &str = "jad";
pub static FILE_EXTENSION_JAM: &str = "jam";
pub static FILE_EXTENSION_JAR: &str = "jar";
pub static FILE_EXTENSION_JAVA: &str = "java";
pub static FILE_EXTENSION_JISP: &str = "jisp";
pub static FILE_EXTENSION_JLT: &str = "jlt";
pub static FILE_EXTENSION_JNLP: &str = "jnlp";
pub static FILE_EXTENSION_JODA: &str = "joda";
pub static FILE_EXTENSION_JPE: &str = "jpe";
pub static FILE_EXTENSION_JPEG: &str = "jpeg";
pub static FILE_EXTENSION_JPG: &str = "jpg";
pub static FILE_EXTENSION_JPGM: &str = "jpgm";
pub static FILE_EXTENSION_JPGV: &str = "jpgv";
pub static FILE_EXTENSION_JPM: &str = "jpm";
pub static FILE_EXTENSION_JS: &str = "js";
pub static FILE_EXTENSION_JSF: &str = "jsf";
pub static FILE_EXTENSION_JSON: &str = "json";
pub static FILE_EXTENSION_JSONML: &str = "jsonml";
pub static FILE_EXTENSION_JSPF: &str = "jspf";
pub static FILE_EXTENSION_KAR: &str = "kar";
pub static FILE_EXTENSION_KARBON: &str = "karbon";
pub static FILE_EXTENSION_KFO: &str = "kfo";
pub static FILE_EXTENSION_KIA: &str = "kia";
pub static FILE_EXTENSION_KML: &str = "kml";
pub static FILE_EXTENSION_KMZ: &str = "kmz";
pub static FILE_EXTENSION_KNE: &str = "kne";
pub static FILE_EXTENSION_KNP: &str = "knp";
pub static FILE_EXTENSION_KON: &str = "kon";
pub static FILE_EXTENSION_KPR: &str = "kpr";
pub static FILE_EXTENSION_KPT: &str = "kpt";
pub static FILE_EXTENSION_KPXX: &str = "kpxx";
pub static FILE_EXTENSION_KSP: &str = "ksp";
pub static FILE_EXTENSION_KTR: &str = "ktr";
pub static FILE_EXTENSION_KTX: &str = "ktx";
pub static FILE_EXTENSION_KTZ: &str = "ktz";
pub static FILE_EXTENSION_KWD: &str = "kwd";
pub static FILE_EXTENSION_KWT: &str = "kwt";
pub static FILE_EXTENSION_LASXML: &str = "lasxml";
pub static FILE_EXTENSION_LATEX: &str = "latex";
pub static FILE_EXTENSION_LBD: &str = "lbd";
pub static FILE_EXTENSION_LBE: &str = "lbe";
pub static FILE_EXTENSION_LES: &str = "les";
pub static FILE_EXTENSION_LHA: &str = "lha";
pub static FILE_EXTENSION_LINK66: &str = "link66";
pub static FILE_EXTENSION_LIST: &str = "list";
pub static FILE_EXTENSION_LIST3820: &str = "list3820";
pub static FILE_EXTENSION_LISTAFP: &str = "listafp";
pub static FILE_EXTENSION_LNK: &str = "lnk";
pub static FILE_EXTENSION_LOG: &str = "log";
pub static FILE_EXTENSION_LOSTXML: &str = "lostxml";
pub static FILE_EXTENSION_LRF: &str = "lrf";
pub static FILE_EXTENSION_LRM: &str = "lrm";
pub static FILE_EXTENSION_LTF: &str = "ltf";
pub static FILE_EXTENSION_LVP: &str = "lvp";
pub static FILE_EXTENSION_LWP: &str = "lwp";
pub static FILE_EXTENSION_LZH: &str = "lzh";
pub static FILE_EXTENSION_M13: &str = "m13";
pub static FILE_EXTENSION_M14: &str = "m14";
pub static FILE_EXTENSION_M1V: &str = "m1v";
pub static FILE_EXTENSION_M21: &str = "m21";
pub static FILE_EXTENSION_M2A: &str = "m2a";
pub static FILE_EXTENSION_M2V: &str = "m2v";
pub static FILE_EXTENSION_M3A: &str = "m3a";
pub static FILE_EXTENSION_M3U: &str = "m3u";
pub static FILE_EXTENSION_M3U8: &str = "m3u8";
pub static FILE_EXTENSION_M4A: &str = "m4a";
pub static FILE_EXTENSION_M4B: &str = "m4b";
pub static FILE_EXTENSION_M4R: &str = "m4r";
pub static FILE_EXTENSION_M4U: &str = "m4u";
pub static FILE_EXTENSION_M4V: &str = "m4v";
pub static FILE_EXTENSION_MA: &str = "ma";
pub static FILE_EXTENSION_MAC: &str = "mac";
pub static FILE_EXTENSION_MADS: &str = "mads";
pub static FILE_EXTENSION_MAG: &str = "mag";
pub static FILE_EXTENSION_MAKER: &str = "maker";
pub static FILE_EXTENSION_MAN: &str = "man";
pub static FILE_EXTENSION_MAR: &str = "mar";
pub static FILE_EXTENSION_MATHML: &str = "mathml";
pub static FILE_EXTENSION_MB: &str = "mb";
pub static FILE_EXTENSION_MBK: &str = "mbk";
pub static FILE_EXTENSION_MBOX: &str = "mbox";
pub static FILE_EXTENSION_MC1: &str = "mc1";
pub static FILE_EXTENSION_MCD: &str = "mcd";
pub static FILE_EXTENSION_MCURL: &str = "mcurl";
pub static FILE_EXTENSION_MDB: &str = "mdb";
pub static FILE_EXTENSION_MDI: &str = "mdi";
pub static FILE_EXTENSION_ME: &str = "me";
pub static FILE_EXTENSION_MESH: &str = "mesh";
pub static FILE_EXTENSION_META4: &str = "meta4";
pub static FILE_EXTENSION_METALINK: &str = "metalink";
pub static FILE_EXTENSION_METS: &str = "mets";
pub static FILE_EXTENSION_MFM: &str = "mfm";
pub static FILE_EXTENSION_MFT: &str = "mft";
pub static FILE_EXTENSION_MGP: &str = "mgp";
pub static FILE_EXTENSION_MGZ: &str = "mgz";
pub static FILE_EXTENSION_MID: &str = "mid";
pub static FILE_EXTENSION_MIDI: &str = "midi";
pub static FILE_EXTENSION_MIE: &str = "mie";
pub static FILE_EXTENSION_MIF: &str = "mif";
pub static FILE_EXTENSION_MIME: &str = "mime";
pub static FILE_EXTENSION_MJ2: &str = "mj2";
pub static FILE_EXTENSION_MJP2: &str = "mjp2";
pub static FILE_EXTENSION_MK3D: &str = "mk3d";
pub static FILE_EXTENSION_MKA: &str = "mka";
pub static FILE_EXTENSION_MKS: &str = "mks";
pub static FILE_EXTENSION_MKV: &str = "mkv";
pub static FILE_EXTENSION_MLP: &str = "mlp";
pub static FILE_EXTENSION_MMD: &str = "mmd";
pub static FILE_EXTENSION_MMF: &str = "mmf";
pub static FILE_EXTENSION_MMR: &str = "mmr";
pub static FILE_EXTENSION_MNG: &str = "mng";
pub static FILE_EXTENSION_MNY: &str = "mny";
pub static FILE_EXTENSION_MOBI: &str = "mobi";
pub static FILE_EXTENSION_MODS: &str = "mods";
pub static FILE_EXTENSION_MOV: &str = "mov";
pub static FILE_EXTENSION_MOVIE: &str = "movie";
pub static FILE_EXTENSION_MP1: &str = "mp1";
pub static FILE_EXTENSION_MP2: &str = "mp2";
pub static FILE_EXTENSION_MP21: &str = "mp21";
pub static FILE_EXTENSION_MP2A: &str = "mp2a";
pub static FILE_EXTENSION_MP3: &str = "mp3";
pub static FILE_EXTENSION_MP4: &str = "mp4";
pub static FILE_EXTENSION_MP4A: &str = "mp4a";
pub static FILE_EXTENSION_MP4S: &str = "mp4s";
pub static FILE_EXTENSION_MP4V: &str = "mp4v";
pub static FILE_EXTENSION_MPA: &str = "mpa";
pub static FILE_EXTENSION_MPC: &str = "mpc";
pub static FILE_EXTENSION_MPE: &str = "mpe";
pub static FILE_EXTENSION_MPEG: &str = "mpeg";
pub static FILE_EXTENSION_MPEGA: &str = "mpega";
pub static FILE_EXTENSION_MPG: &str = "mpg";
pub static FILE_EXTENSION_MPG4: &str = "mpg4";
pub static FILE_EXTENSION_MPGA: &str = "mpga";
pub static FILE_EXTENSION_MPKG: &str = "mpkg";
pub static FILE_EXTENSION_MPM: &str = "mpm";
pub static FILE_EXTENSION_MPN: &str = "mpn";
pub static FILE_EXTENSION_MPP: &str = "mpp";
pub static FILE_EXTENSION_MPT: &str = "mpt";
pub static FILE_EXTENSION_MPV2: &str = "mpv2";
pub static FILE_EXTENSION_MPY: &str = "mpy";
pub static FILE_EXTENSION_MQY: &str = "mqy";
pub static FILE_EXTENSION_MRC: &str = "mrc";
pub static FILE_EXTENSION_MRCX: &str = "mrcx";
pub static FILE_EXTENSION_MS: &str = "ms";
pub static FILE_EXTENSION_MSCML: &str = "mscml";
pub static FILE_EXTENSION_MSEED: &str = "mseed";
pub static FILE_EXTENSION_MSEQ: &str = "mseq";
pub static FILE_EXTENSION_MSF: &str = "msf";
pub static FILE_EXTENSION_MSH: &str = "msh";
pub static FILE_EXTENSION_MSI: &str = "msi";
pub static FILE_EXTENSION_MSL: &str = "msl";
pub static FILE_EXTENSION_MSTY: &str = "msty";
pub static FILE_EXTENSION_MTS: &str = "mts";
pub static FILE_EXTENSION_MUS: &str = "mus";
pub static FILE_EXTENSION_MUSICXML: &str = "musicxml";
pub static FILE_EXTENSION_MVB: &str = "mvb";
pub static FILE_EXTENSION_MWF: &str = "mwf";
pub static FILE_EXTENSION_MXF: &str = "mxf";
pub static FILE_EXTENSION_MXL: &str = "mxl";
pub static FILE_EXTENSION_MXML: &str = "mxml";
pub static FILE_EXTENSION_MXS: &str = "mxs";
pub static FILE_EXTENSION_MXU: &str = "mxu";
pub static FILE_EXTENSION_N_GAGE: &str = "n-gage";
pub static FILE_EXTENSION_N3: &str = "n3";
pub static FILE_EXTENSION_NB: &str = "nb";
pub static FILE_EXTENSION_NBP: &str = "nbp";
pub static FILE_EXTENSION_NC: &str = "nc";
pub static FILE_EXTENSION_NCX: &str = "ncx";
pub static FILE_EXTENSION_NFO: &str = "nfo";
pub static FILE_EXTENSION_NGDAT: &str = "ngdat";
pub static FILE_EXTENSION_NITF: &str = "nitf";
pub static FILE_EXTENSION_NLU: &str = "nlu";
pub static FILE_EXTENSION_NML: &str = "nml";
pub static FILE_EXTENSION_NND: &str = "nnd";
pub static FILE_EXTENSION_NNS: &str = "nns";
pub static FILE_EXTENSION_NNW: &str = "nnw";
pub static FILE_EXTENSION_NPX: &str = "npx";
pub static FILE_EXTENSION_NSC: &str = "nsc";
pub static FILE_EXTENSION_NSF: &str = "nsf";
pub static FILE_EXTENSION_NTF: &str = "ntf";
pub static FILE_EXTENSION_NZB: &str = "nzb";
pub static FILE_EXTENSION_OA2: &str = "oa2";
pub static FILE_EXTENSION_OA3: &str = "oa3";
pub static FILE_EXTENSION_OAS: &str = "oas";
pub static FILE_EXTENSION_OBD: &str = "obd";
pub static FILE_EXTENSION_OBJ: &str = "obj";
pub static FILE_EXTENSION_ODA: &str = "oda";
pub static FILE_EXTENSION_ODB: &str = "odb";
pub static FILE_EXTENSION_ODC: &str = "odc";
pub static FILE_EXTENSION_ODF: &str = "odf";
pub static FILE_EXTENSION_ODFT: &str = "odft";
pub static FILE_EXTENSION_ODG: &str = "odg";
pub static FILE_EXTENSION_ODI: &str = "odi";
pub static FILE_EXTENSION_ODM: &str = "odm";
pub static FILE_EXTENSION_ODP: &str = "odp";
pub static FILE_EXTENSION_ODS: &str = "ods";
pub static FILE_EXTENSION_ODT: &str = "odt";
pub static FILE_EXTENSION_OGA: &str = "oga";
pub static FILE_EXTENSION_OGG: &str = "ogg";
pub static FILE_EXTENSION_OGV: &str = "ogv";
pub static FILE_EXTENSION_OGX: &str = "ogx";
pub static FILE_EXTENSION_OMDOC: &str = "omdoc";
pub static FILE_EXTENSION_ONEPKG: &str = "onepkg";
pub static FILE_EXTENSION_ONETMP: &str = "onetmp";
pub static FILE_EXTENSION_ONETOC: &str = "onetoc";
pub static FILE_EXTENSION_ONETOC2: &str = "onetoc2";
pub static FILE_EXTENSION_OPF: &str = "opf";
pub static FILE_EXTENSION_OPML: &str = "opml";
pub static FILE_EXTENSION_OPRC: &str = "oprc";
pub static FILE_EXTENSION_ORG: &str = "org";
pub static FILE_EXTENSION_OSF: &str = "osf";
pub static FILE_EXTENSION_OSFPVG: &str = "osfpvg";
pub static FILE_EXTENSION_OTC: &str = "otc";
pub static FILE_EXTENSION_OTF: &str = "otf";
pub static FILE_EXTENSION_OTG: &str = "otg";
pub static FILE_EXTENSION_OTH: &str = "oth";
pub static FILE_EXTENSION_OTI: &str = "oti";
pub static FILE_EXTENSION_OTP: &str = "otp";
pub static FILE_EXTENSION_OTS: &str = "ots";
pub static FILE_EXTENSION_OTT: &str = "ott";
pub static FILE_EXTENSION_OXPS: &str = "oxps";
pub static FILE_EXTENSION_OXT: &str = "oxt";
pub static FILE_EXTENSION_P: &str = "p";
pub static FILE_EXTENSION_P10: &str = "p10";
pub static FILE_EXTENSION_P12: &str = "p12";
pub static FILE_EXTENSION_P7B: &str = "p7b";
pub static FILE_EXTENSION_P7C: &str = "p7c";
pub static FILE_EXTENSION_P7M: &str = "p7m";
pub static FILE_EXTENSION_P7R: &str = "p7r";
pub static FILE_EXTENSION_P7S: &str = "p7s";
pub static FILE_EXTENSION_P8: &str = "p8";
pub static FILE_EXTENSION_PAS: &str = "pas";
pub static FILE_EXTENSION_PAW: &str = "paw";
pub static FILE_EXTENSION_PBD: &str = "pbd";
pub static FILE_EXTENSION_PBM: &str = "pbm";
pub static FILE_EXTENSION_PCAP: &str = "pcap";
pub static FILE_EXTENSION_PCF: &str = "pcf";
pub static FILE_EXTENSION_PCL: &str = "pcl";
pub static FILE_EXTENSION_PCLXL: &str = "pclxl";
pub static FILE_EXTENSION_PCT: &str = "pct";
pub static FILE_EXTENSION_PCURL: &str = "pcurl";
pub static FILE_EXTENSION_PCX: &str = "pcx";
pub static FILE_EXTENSION_PDB: &str = "pdb";
pub static FILE_EXTENSION_PDF: &str = "pdf";
pub static FILE_EXTENSION_PFA: &str = "pfa";
pub static FILE_EXTENSION_PFB: &str = "pfb";
pub static FILE_EXTENSION_PFM: &str = "pfm";
pub static FILE_EXTENSION_PFR: &str = "pfr";
pub static FILE_EXTENSION_PFX: &str = "pfx";
pub static FILE_EXTENSION_PGM: &str = "pgm";
pub static FILE_EXTENSION_PGN: &str = "pgn";
pub static FILE_EXTENSION_PGP: &str = "pgp";
pub static FILE_EXTENSION_PIC: &str = "pic";
pub static FILE_EXTENSION_PICT: &str = "pict";
pub static FILE_EXTENSION_PKG: &str = "pkg";
pub static FILE_EXTENSION_PKI: &str = "pki";
pub static FILE_EXTENSION_PKIPATH: &str = "pkipath";
pub static FILE_EXTENSION_PLB: &str = "plb";
pub static FILE_EXTENSION_PLC: &str = "plc";
pub static FILE_EXTENSION_PLF: &str = "plf";
pub static FILE_EXTENSION_PLS: &str = "pls";
pub static FILE_EXTENSION_PML: &str = "pml";
pub static FILE_EXTENSION_PNG: &str = "png";
pub static FILE_EXTENSION_PNM: &str = "pnm";
pub static FILE_EXTENSION_PNT: &str = "pnt";
pub static FILE_EXTENSION_PORTPKG: &str = "portpkg";
pub static FILE_EXTENSION_POT: &str = "pot";
pub static FILE_EXTENSION_POTM: &str = "potm";
pub static FILE_EXTENSION_POTX: &str = "potx";
pub static FILE_EXTENSION_PPAM: &str = "ppam";
pub static FILE_EXTENSION_PPD: &str = "ppd";
pub static FILE_EXTENSION_PPM: &str = "ppm";
pub static FILE_EXTENSION_PPS: &str = "pps";
pub static FILE_EXTENSION_PPSM: &str = "ppsm";
pub static FILE_EXTENSION_PPSX: &str = "ppsx";
pub static FILE_EXTENSION_PPT: &str = "ppt";
pub static FILE_EXTENSION_PPTM: &str = "pptm";
pub static FILE_EXTENSION_PPTX: &str = "pptx";
pub static FILE_EXTENSION_PQA: &str = "pqa";
pub static FILE_EXTENSION_PRC: &str = "prc";
pub static FILE_EXTENSION_PRE: &str = "pre";
pub static FILE_EXTENSION_PRF: &str = "prf";
pub static FILE_EXTENSION_PS: &str = "ps";
pub static FILE_EXTENSION_PSB: &str = "psb";
pub static FILE_EXTENSION_PSD: &str = "psd";
pub static FILE_EXTENSION_PSF: &str = "psf";
pub static FILE_EXTENSION_PSKCXML: &str = "pskcxml";
pub static FILE_EXTENSION_PTID: &str = "ptid";
pub static FILE_EXTENSION_PUB: &str = "pub";
pub static FILE_EXTENSION_PVB: &str = "pvb";
pub static FILE_EXTENSION_PWN: &str = "pwn";
pub static FILE_EXTENSION_PYA: &str = "pya";
pub static FILE_EXTENSION_PYV: &str = "pyv";
pub static FILE_EXTENSION_QAM: &str = "qam";
pub static FILE_EXTENSION_QBO: &str = "qbo";
pub static FILE_EXTENSION_QFX: &str = "qfx";
pub static FILE_EXTENSION_QPS: &str = "qps";
pub static FILE_EXTENSION_QT: &str = "qt";
pub static FILE_EXTENSION_QTI: &str = "qti";
pub static FILE_EXTENSION_QTIF: &str = "qtif";
pub static FILE_EXTENSION_QWD: &str = "qwd";
pub static FILE_EXTENSION_QWT: &str = "qwt";
pub static FILE_EXTENSION_QXB: &str = "qxb";
pub static FILE_EXTENSION_QXD: &str = "qxd";
pub static FILE_EXTENSION_QXL: &str = "qxl";
pub static FILE_EXTENSION_QXT: &str = "qxt";
pub static FILE_EXTENSION_RA: &str = "ra";
pub static FILE_EXTENSION_RAM: &str = "ram";
pub static FILE_EXTENSION_RAR: &str = "rar";
pub static FILE_EXTENSION_RAS: &str = "ras";
pub static FILE_EXTENSION_RCPROFILE: &str = "rcprofile";
pub static FILE_EXTENSION_RDF: &str = "rdf";
pub static FILE_EXTENSION_RDZ: &str = "rdz";
pub static FILE_EXTENSION_REP: &str = "rep";
pub static FILE_EXTENSION_RES: &str = "res";
pub static FILE_EXTENSION_RGB: &str = "rgb";
pub static FILE_EXTENSION_RIF: &str = "rif";
pub static FILE_EXTENSION_RIP: &str = "rip";
pub static FILE_EXTENSION_RIS: &str = "ris";
pub static FILE_EXTENSION_RL: &str = "rl";
pub static FILE_EXTENSION_RLC: &str = "rlc";
pub static FILE_EXTENSION_RLD: &str = "rld";
pub static FILE_EXTENSION_RM: &str = "rm";
pub static FILE_EXTENSION_RMI: &str = "rmi";
pub static FILE_EXTENSION_RMP: &str = "rmp";
pub static FILE_EXTENSION_RMS: &str = "rms";
pub static FILE_EXTENSION_RMVB: &str = "rmvb";
pub static FILE_EXTENSION_RNC: &str = "rnc";
pub static FILE_EXTENSION_ROA: &str = "roa";
pub static FILE_EXTENSION_ROFF: &str = "roff";
pub static FILE_EXTENSION_RP9: &str = "rp9";
pub static FILE_EXTENSION_RPSS: &str = "rpss";
pub static FILE_EXTENSION_RPST: &str = "rpst";
pub static FILE_EXTENSION_RQ: &str = "rq";
pub static FILE_EXTENSION_RS: &str = "rs";
pub static FILE_EXTENSION_RSD: &str = "rsd";
pub static FILE_EXTENSION_RSS: &str = "rss";
pub static FILE_EXTENSION_RTF: &str = "rtf";
pub static FILE_EXTENSION_RTX: &str = "rtx";
pub static FILE_EXTENSION_S: &str = "s";
pub static FILE_EXTENSION_S3M: &str = "s3m";
pub static FILE_EXTENSION_SAF: &str = "saf";
pub static FILE_EXTENSION_SBML: &str = "sbml";
pub static FILE_EXTENSION_SC: &str = "sc";
pub static FILE_EXTENSION_SCD: &str = "scd";
pub static FILE_EXTENSION_SCM: &str = "scm";
pub static FILE_EXTENSION_SCQ: &str = "scq";
pub static FILE_EXTENSION_SCS: &str = "scs";
pub static FILE_EXTENSION_SCURL: &str = "scurl";
pub static FILE_EXTENSION_SDA: &str = "sda";
pub static FILE_EXTENSION_SDC: &str = "sdc";
pub static FILE_EXTENSION_SDD: &str = "sdd";
pub static FILE_EXTENSION_SDKD: &str = "sdkd";
pub static FILE_EXTENSION_SDKM: &str = "sdkm";
pub static FILE_EXTENSION_SDP: &str = "sdp";
pub static FILE_EXTENSION_SDW: &str = "sdw";
pub static FILE_EXTENSION_SEE: &str = "see";
pub static FILE_EXTENSION_SEED: &str = "seed";
pub static FILE_EXTENSION_SEMA: &str = "sema";
pub static FILE_EXTENSION_SEMD: &str = "semd";
pub static FILE_EXTENSION_SEMF: &str = "semf";
pub static FILE_EXTENSION_SER: &str = "ser";
pub static FILE_EXTENSION_SETPAY: &str = "setpay";
pub static FILE_EXTENSION_SETREG: &str = "setreg";
pub static FILE_EXTENSION_SFD_HDSTX: &str = "sfd-hdstx";
pub static FILE_EXTENSION_SFS: &str = "sfs";
pub static FILE_EXTENSION_SFV: &str = "sfv";
pub static FILE_EXTENSION_SGI: &str = "sgi";
pub static FILE_EXTENSION_SGL: &str = "sgl";
pub static FILE_EXTENSION_SGM: &str = "sgm";
pub static FILE_EXTENSION_SGML: &str = "sgml";
pub static FILE_EXTENSION_SH: &str = "sh";
pub static FILE_EXTENSION_SHAR: &str = "shar";
pub static FILE_EXTENSION_SHF: &str = "shf";
pub static FILE_EXTENSION_SID: &str = "sid";
pub static FILE_EXTENSION_SIG: &str = "sig";
pub static FILE_EXTENSION_SIL: &str = "sil";
pub static FILE_EXTENSION_SILO: &str = "silo";
pub static FILE_EXTENSION_SIS: &str = "sis";
pub static FILE_EXTENSION_SISX: &str = "sisx";
pub static FILE_EXTENSION_SIT: &str = "sit";
pub static FILE_EXTENSION_SITX: &str = "sitx";
pub static FILE_EXTENSION_SKD: &str = "skd";
pub static FILE_EXTENSION_SKM: &str = "skm";
pub static FILE_EXTENSION_SKP: &str = "skp";
pub static FILE_EXTENSION_SKT: &str = "skt";
pub static FILE_EXTENSION_SLDM: &str = "sldm";
pub static FILE_EXTENSION_SLDX: &str = "sldx";
pub static FILE_EXTENSION_SLT: &str = "slt";
pub static FILE_EXTENSION_SM: &str = "sm";
pub static FILE_EXTENSION_SMF: &str = "smf";
pub static FILE_EXTENSION_SMI: &str = "smi";
pub static FILE_EXTENSION_SMIL: &str = "smil";
pub static FILE_EXTENSION_SMV: &str = "smv";
pub static FILE_EXTENSION_SMZIP: &str = "smzip";
pub static FILE_EXTENSION_SND: &str = "snd";
pub static FILE_EXTENSION_SNF: &str = "snf";
pub static FILE_EXTENSION_SO: &str = "so";
pub static FILE_EXTENSION_SPC: &str = "spc";
pub static FILE_EXTENSION_SPF: &str = "spf";
pub static FILE_EXTENSION_SPL: &str = "spl";
pub static FILE_EXTENSION_SPOT: &str = "spot";
pub static FILE_EXTENSION_SPP: &str = "spp";
pub static FILE_EXTENSION_SPQ: &str = "spq";
pub static FILE_EXTENSION_SPX: &str = "spx";
pub static FILE_EXTENSION_SQL: &str = "sql";
pub static FILE_EXTENSION_SRC: &str = "src";
pub static FILE_EXTENSION_SRT: &str = "srt";
pub static FILE_EXTENSION_SRU: &str = "sru";
pub static FILE_EXTENSION_SRX: &str = "srx";
pub static FILE_EXTENSION_SSDL: &str = "ssdl";
pub static FILE_EXTENSION_SSE: &str = "sse";
pub static FILE_EXTENSION_SSF: &str = "ssf";
pub static FILE_EXTENSION_SSML: &str = "ssml";
pub static FILE_EXTENSION_ST: &str = "st";
pub static FILE_EXTENSION_STC: &str = "stc";
pub static FILE_EXTENSION_STD: &str = "std";
pub static FILE_EXTENSION_STF: &str = "stf";
pub static FILE_EXTENSION_STI: &str = "sti";
pub static FILE_EXTENSION_STK: &str = "stk";
pub static FILE_EXTENSION_STL: &str = "stl";
pub static FILE_EXTENSION_STR: &str = "str";
pub static FILE_EXTENSION_STW: &str = "stw";
pub static FILE_EXTENSION_SUB: &str = "sub";
pub static FILE_EXTENSION_SUS: &str = "sus";
pub static FILE_EXTENSION_SUSP: &str = "susp";
pub static FILE_EXTENSION_SV4CPIO: &str = "sv4cpio";
pub static FILE_EXTENSION_SV4CRC: &str = "sv4crc";
pub static FILE_EXTENSION_SVC: &str = "svc";
pub static FILE_EXTENSION_SVD: &str = "svd";
pub static FILE_EXTENSION_SVG: &str = "svg";
pub static FILE_EXTENSION_SVGZ: &str = "svgz";
pub static FILE_EXTENSION_SWA: &str = "swa";
pub static FILE_EXTENSION_SWF: &str = "swf";
pub static FILE_EXTENSION_SWI: &str = "swi";
pub static FILE_EXTENSION_SXC: &str = "sxc";
pub static FILE_EXTENSION_SXD: &str = "sxd";
pub static FILE_EXTENSION_SXG: &str = "sxg";
pub static FILE_EXTENSION_SXI: &str = "sxi";
pub static FILE_EXTENSION_SXM: &str = "sxm";
pub static FILE_EXTENSION_SXW: &str = "sxw";
pub static FILE_EXTENSION_T: &str = "t";
pub static FILE_EXTENSION_T3: &str = "t3";
pub static FILE_EXTENSION_TAGLET: &str = "taglet";
pub static FILE_EXTENSION_TAO: &str = "tao";
pub static FILE_EXTENSION_TAR: &str = "tar";
pub static FILE_EXTENSION_TCAP: &str = "tcap";
pub static FILE_EXTENSION_TCL: &str = "tcl";
pub static FILE_EXTENSION_TEACHER: &str = "teacher";
pub static FILE_EXTENSION_TEI: &str = "tei";
pub static FILE_EXTENSION_TEICORPUS: &str = "teicorpus";
pub static FILE_EXTENSION_TEX: &str = "tex";
pub static FILE_EXTENSION_TEXI: &str = "texi";
pub static FILE_EXTENSION_TEXINFO: &str = "texinfo";
pub static FILE_EXTENSION_TEXT: &str = "text";
pub static FILE_EXTENSION_TFI: &str = "tfi";
pub static FILE_EXTENSION_TFM: &str = "tfm";
pub static FILE_EXTENSION_TGA: &str = "tga";
pub static FILE_EXTENSION_THMX: &str = "thmx";
pub static FILE_EXTENSION_TIF: &str = "tif";
pub static FILE_EXTENSION_TIFF: &str = "tiff";
pub static FILE_EXTENSION_TMO: &str = "tmo";
pub static FILE_EXTENSION_TORRENT: &str = "torrent";
pub static FILE_EXTENSION_TPL: &str = "tpl";
pub static FILE_EXTENSION_TPT: &str = "tpt";
pub static FILE_EXTENSION_TR: &str = "tr";
pub static FILE_EXTENSION_TRA: &str = "tra";
pub static FILE_EXTENSION_TRM: &str = "trm";
pub static FILE_EXTENSION_TSD: &str = "tsd";
pub static FILE_EXTENSION_TSV: &str = "tsv";
pub static FILE_EXTENSION_TTC: &str = "ttc";
pub static FILE_EXTENSION_TTF: &str = "ttf";
pub static FILE_EXTENSION_TTL: &str = "ttl";
pub static FILE_EXTENSION_TWD: &str = "twd";
pub static FILE_EXTENSION_TWDS: &str = "twds";
pub static FILE_EXTENSION_TXD: &str = "txd";
pub static FILE_EXTENSION_TXF: &str = "txf";
pub static FILE_EXTENSION_TXT: &str = "txt";
pub static FILE_EXTENSION_U32: &str = "u32";
pub static FILE_EXTENSION_UDEB: &str = "udeb";
pub static FILE_EXTENSION_UFD: &str = "ufd";
pub static FILE_EXTENSION_UFDL: &str = "ufdl";
pub static FILE_EXTENSION_ULW: &str = "ulw";
pub static FILE_EXTENSION_ULX: &str = "ulx";
pub static FILE_EXTENSION_UMJ: &str = "umj";
pub static FILE_EXTENSION_UNITYWEB: &str = "unityweb";
pub static FILE_EXTENSION_UOML: &str = "uoml";
pub static FILE_EXTENSION_URI: &str = "uri";
pub static FILE_EXTENSION_URIS: &str = "uris";
pub static FILE_EXTENSION_URLS: &str = "urls";
pub static FILE_EXTENSION_USTAR: &str = "ustar";
pub static FILE_EXTENSION_UTZ: &str = "utz";
pub static FILE_EXTENSION_UU: &str = "uu";
pub static FILE_EXTENSION_UVA: &str = "uva";
pub static FILE_EXTENSION_UVD: &str = "uvd";
pub static FILE_EXTENSION_UVF: &str = "uvf";
pub static FILE_EXTENSION_UVG: &str = "uvg";
pub static FILE_EXTENSION_UVH: &str = "uvh";
pub static FILE_EXTENSION_UVI: &str = "uvi";
pub static FILE_EXTENSION_UVM: &str = "uvm";
pub static FILE_EXTENSION_UVP: &str = "uvp";
pub static FILE_EXTENSION_UVS: &str = "uvs";
pub static FILE_EXTENSION_UVT: &str = "uvt";
pub static FILE_EXTENSION_UVU: &str = "uvu";
pub static FILE_EXTENSION_UVV: &str = "uvv";
pub static FILE_EXTENSION_UVVA: &str = "uvva";
pub static FILE_EXTENSION_UVVD: &str = "uvvd";
pub static FILE_EXTENSION_UVVF: &str = "uvvf";
pub static FILE_EXTENSION_UVVG: &str = "uvvg";
pub static FILE_EXTENSION_UVVH: &str = "uvvh";
pub static FILE_EXTENSION_UVVI: &str = "uvvi";
pub static FILE_EXTENSION_UVVM: &str = "uvvm";
pub static FILE_EXTENSION_UVVP: &str = "uvvp";
pub static FILE_EXTENSION_UVVS: &str = "uvvs";
pub static FILE_EXTENSION_UVVT: &str = "uvvt";
pub static FILE_EXTENSION_UVVU: &str = "uvvu";
pub static FILE_EXTENSION_UVVV: &str = "uvvv";
pub static FILE_EXTENSION_UVVX: &str = "uvvx";
pub static FILE_EXTENSION_UVVZ: &str = "uvvz";
pub static FILE_EXTENSION_UVX: &str = "uvx";
pub static FILE_EXTENSION_UVZ: &str = "uvz";
pub static FILE_EXTENSION_VCARD: &str = "vcard";
pub static FILE_EXTENSION_VCD: &str = "vcd";
pub static FILE_EXTENSION_VCF: &str = "vcf";
pub static FILE_EXTENSION_VCG: &str = "vcg";
pub static FILE_EXTENSION_VCS: &str = "vcs";
pub static FILE_EXTENSION_VCX: &str = "vcx";
pub static FILE_EXTENSION_VIS: &str = "vis";
pub static FILE_EXTENSION_VIV: &str = "viv";
pub static FILE_EXTENSION_VOB: &str = "vob";
pub static FILE_EXTENSION_VOR: &str = "vor";
pub static FILE_EXTENSION_VOX: &str = "vox";
pub static FILE_EXTENSION_VRML: &str = "vrml";
pub static FILE_EXTENSION_VSD: &str = "vsd";
pub static FILE_EXTENSION_VSF: &str = "vsf";
pub static FILE_EXTENSION_VSS: &str = "vss";
pub static FILE_EXTENSION_VST: &str = "vst";
pub static FILE_EXTENSION_VSW: &str = "vsw";
pub static FILE_EXTENSION_VTU: &str = "vtu";
pub static FILE_EXTENSION_VXML: &str = "vxml";
pub static FILE_EXTENSION_W3D: &str = "w3d";
pub static FILE_EXTENSION_WAD: &str = "wad";
pub static FILE_EXTENSION_WAV: &str = "wav";
pub static FILE_EXTENSION_WAX: &str = "wax";
pub static FILE_EXTENSION_WBMP: &str = "wbmp";
pub static FILE_EXTENSION_WBS: &str = "wbs";
pub static FILE_EXTENSION_WBXML: &str = "wbxml";
pub static FILE_EXTENSION_WCM: &str = "wcm";
pub static FILE_EXTENSION_WDB: &str = "wdb";
pub static FILE_EXTENSION_WDP: &str = "wdp";
pub static FILE_EXTENSION_WEBA: &str = "weba";
pub static FILE_EXTENSION_WEBM: &str = "webm";
pub static FILE_EXTENSION_WEBP: &str = "webp";
pub static FILE_EXTENSION_WG: &str = "wg";
pub static FILE_EXTENSION_WGT: &str = "wgt";
pub static FILE_EXTENSION_WKS: &str = "wks";
pub static FILE_EXTENSION_WM: &str = "wm";
pub static FILE_EXTENSION_WMA: &str = "wma";
pub static FILE_EXTENSION_WMD: &str = "wmd";
pub static FILE_EXTENSION_WMF: &str = "wmf";
pub static FILE_EXTENSION_WML: &str = "wml";
pub static FILE_EXTENSION_WMLC: &str = "wmlc";
pub static FILE_EXTENSION_WMLS: &str = "wmls";
pub static FILE_EXTENSION_WMLSC: &str = "wmlsc";
pub static FILE_EXTENSION_WMV: &str = "wmv";
pub static FILE_EXTENSION_WMX: &str = "wmx";
pub static FILE_EXTENSION_WMZ: &str = "wmz";
pub static FILE_EXTENSION_WOFF: &str = "woff";
pub static FILE_EXTENSION_WOFF2: &str = "woff2";
pub static FILE_EXTENSION_WPD: &str = "wpd";
pub static FILE_EXTENSION_WPL: &str = "wpl";
pub static FILE_EXTENSION_WPS: &str = "wps";
pub static FILE_EXTENSION_WQD: &str = "wqd";
pub static FILE_EXTENSION_WRI: &str = "wri";
pub static FILE_EXTENSION_WRL: &str = "wrl";
pub static FILE_EXTENSION_WSDL: &str = "wsdl";
pub static FILE_EXTENSION_WSPOLICY: &str = "wspolicy";
pub static FILE_EXTENSION_WTB: &str = "wtb";
pub static FILE_EXTENSION_WVX: &str = "wvx";
pub static FILE_EXTENSION_X32: &str = "x32";
pub static FILE_EXTENSION_X3D: &str = "x3d";
pub static FILE_EXTENSION_X3DB: &str = "x3db";
pub static FILE_EXTENSION_X3DBZ: &str = "x3dbz";
pub static FILE_EXTENSION_X3DV: &str = "x3dv";
pub static FILE_EXTENSION_X3DVZ: &str = "x3dvz";
pub static FILE_EXTENSION_X3DZ: &str = "x3dz";
pub static FILE_EXTENSION_XAML: &str = "xaml";
pub static FILE_EXTENSION_XAP: &str = "xap";
pub static FILE_EXTENSION_XAR: &str = "xar";
pub static FILE_EXTENSION_XBAP: &str = "xbap";
pub static FILE_EXTENSION_XBD: &str = "xbd";
pub static FILE_EXTENSION_XBM: &str = "xbm";
pub static FILE_EXTENSION_XDF: &str = "xdf";
pub static FILE_EXTENSION_XDM: &str = "xdm";
pub static FILE_EXTENSION_XDP: &str = "xdp";
pub static FILE_EXTENSION_XDSSC: &str = "xdssc";
pub static FILE_EXTENSION_XDW: &str = "xdw";
pub static FILE_EXTENSION_XENC: &str = "xenc";
pub static FILE_EXTENSION_XER: &str = "xer";
pub static FILE_EXTENSION_XFDF: &str = "xfdf";
pub static FILE_EXTENSION_XFDL: &str = "xfdl";
pub static FILE_EXTENSION_XHT: &str = "xht";
pub static FILE_EXTENSION_XHTML: &str = "xhtml";
pub static FILE_EXTENSION_XHVML: &str = "xhvml";
pub static FILE_EXTENSION_XIF: &str = "xif";
pub static FILE_EXTENSION_XLA: &str = "xla";
pub static FILE_EXTENSION_XLAM: &str = "xlam";
pub static FILE_EXTENSION_XLC: &str = "xlc";
pub static FILE_EXTENSION_XLF: &str = "xlf";
pub static FILE_EXTENSION_XLM: &str = "xlm";
pub static FILE_EXTENSION_XLS: &str = "xls";
pub static FILE_EXTENSION_XLSB: &str = "xlsb";
pub static FILE_EXTENSION_XLSM: &str = "xlsm";
pub static FILE_EXTENSION_XLSX: &str = "xlsx";
pub static FILE_EXTENSION_XLT: &str = "xlt";
pub static FILE_EXTENSION_XLTM: &str = "xltm";
pub static FILE_EXTENSION_XLTX: &str = "xltx";
pub static FILE_EXTENSION_XLW: &str = "xlw";
pub static FILE_EXTENSION_XM: &str = "xm";
pub static FILE_EXTENSION_XML: &str = "xml";
pub static FILE_EXTENSION_XO: &str = "xo";
pub static FILE_EXTENSION_XOP: &str = "xop";
pub static FILE_EXTENSION_XPI: &str = "xpi";
pub static FILE_EXTENSION_XPL: &str = "xpl";
pub static FILE_EXTENSION_XPM: &str = "xpm";
pub static FILE_EXTENSION_XPR: &str = "xpr";
pub static FILE_EXTENSION_XPS: &str = "xps";
pub static FILE_EXTENSION_XPW: &str = "xpw";
pub static FILE_EXTENSION_XPX: &str = "xpx";
pub static FILE_EXTENSION_XSL: &str = "xsl";
pub static FILE_EXTENSION_XSLT: &str = "xslt";
pub static FILE_EXTENSION_XSM: &str = "xsm";
pub static FILE_EXTENSION_XSPF: &str = "xspf";
pub static FILE_EXTENSION_XUL: &str = "xul";
pub static FILE_EXTENSION_XVM: &str = "xvm";
pub static FILE_EXTENSION_XVML: &str = "xvml";
pub static FILE_EXTENSION_XWD: &str = "xwd";
pub static FILE_EXTENSION_XYZ: &str = "xyz";
pub static FILE_EXTENSION_XZ: &str = "xz";
pub static FILE_EXTENSION_YANG: &str = "yang";
pub static FILE_EXTENSION_YIN: &str = "yin";
pub static FILE_EXTENSION_Z: &str = "z";
pub static FILE_EXTENSION_Z_UPPERCASEE: &str = "Z";
pub static FILE_EXTENSION_Z1: &str = "z1";
pub static FILE_EXTENSION_Z2: &str = "z2";
pub static FILE_EXTENSION_Z3: &str = "z3";
pub static FILE_EXTENSION_Z4: &str = "z4";
pub static FILE_EXTENSION_Z5: &str = "z5";
pub static FILE_EXTENSION_Z6: &str = "z6";
pub static FILE_EXTENSION_Z7: &str = "z7";
pub static FILE_EXTENSION_Z8: &str = "z8";
pub static FILE_EXTENSION_ZAZ: &str = "zaz";
pub static FILE_EXTENSION_ZIP: &str = "zip";
pub static FILE_EXTENSION_ZIR: &str = "zir";
pub static FILE_EXTENSION_ZIRZ: &str = "zirz";
pub static FILE_EXTENSION_ZMM: &str = "zmm";