zugferd_code_lists/zugferd_2_3_2/
unit.rs

1#![allow(non_camel_case_types)]
2
3#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
4#[derive(Debug, PartialEq, Eq, PartialOrd, Ord, Clone, Copy, Hash)]
5pub enum Unit {
6    /// group
7    ///
8    /// rec20
9    Group,
10    /// outfit
11    ///
12    /// rec20
13    Outfit,
14    /// ration
15    ///
16    /// rec20
17    Ration,
18    /// shot
19    ///
20    /// rec20
21    Shot,
22    /// stick, military
23    ///
24    /// rec20
25    StickMilitary,
26    /// twenty foot container
27    ///
28    /// rec20
29    TwentyFootContainer,
30    /// forty foot container
31    ///
32    /// rec20
33    FortyFootContainer,
34    /// decilitre per gram
35    ///
36    /// rec20
37    DecilitrePerGram,
38    /// gram per cubic centimetre
39    ///
40    /// rec20
41    GramPerCubicCentimetre,
42    /// theoretical pound
43    ///
44    /// rec20
45    TheoreticalPound,
46    /// gram per square centimetre
47    ///
48    /// rec20
49    GramPerSquareCentimetre,
50    /// theoretical ton
51    ///
52    /// rec20
53    TheoreticalTon,
54    /// kilogram per square metre
55    ///
56    /// rec20
57    KilogramPerSquareMetre,
58    /// kilopascal square metre per gram
59    ///
60    /// rec20
61    KilopascalSquareMetrePerGram,
62    /// kilopascal per millimetre
63    ///
64    /// rec20
65    KilopascalPerMillimetre,
66    /// millilitre per square centimetre second
67    ///
68    /// rec20
69    MillilitrePerSquareCentimetreSecond,
70    /// ounce per square foot
71    ///
72    /// rec20
73    OuncePerSquareFoot,
74    /// ounce per square foot per 0,01inch
75    ///
76    /// rec20
77    OuncePerSquareFootPer001inch,
78    /// millilitre per second
79    ///
80    /// rec20
81    MillilitrePerSecond,
82    /// millilitre per minute
83    ///
84    /// rec20
85    MillilitrePerMinute,
86    /// sitas
87    ///
88    /// rec20
89    Sitas,
90    /// mesh
91    ///
92    /// rec20
93    Mesh,
94    /// net kilogram
95    ///
96    /// rec20
97    NetKilogram,
98    /// part per million
99    ///
100    /// rec20
101    PartPerMillion,
102    /// percent weight
103    ///
104    /// rec20
105    PercentWeight,
106    /// part per billion (US)
107    ///
108    /// rec20
109    PartPerBillionUs,
110    /// millipascal
111    ///
112    /// rec20
113    Millipascal,
114    /// milli-inch
115    ///
116    /// rec20
117    MilliInch,
118    /// pound per square inch absolute
119    ///
120    /// rec20
121    PoundPerSquareInchAbsolute,
122    /// henry
123    ///
124    /// rec20
125    Henry,
126    /// foot pound-force
127    ///
128    /// rec20
129    FootPoundForce,
130    /// pound per cubic foot
131    ///
132    /// rec20
133    PoundPerCubicFoot,
134    /// poise
135    ///
136    /// rec20
137    Poise,
138    /// stokes
139    ///
140    /// rec20
141    Stokes,
142    /// fixed rate
143    ///
144    /// rec20
145    FixedRate,
146    /// radian per second
147    ///
148    /// rec20
149    RadianPerSecond,
150    /// radian per second squared
151    ///
152    /// rec20
153    RadianPerSecondSquared,
154    /// roentgen
155    ///
156    /// rec20
157    Roentgen,
158    /// volt AC
159    ///
160    /// rec20
161    VoltAc,
162    /// volt DC
163    ///
164    /// rec20
165    VoltDc,
166    /// British thermal unit (international table) per hour
167    ///
168    /// rec20
169    BritishThermalUnitInternationalTablePerHour,
170    /// cubic centimetre per second
171    ///
172    /// rec20
173    CubicCentimetrePerSecond,
174    /// cubic foot per hour
175    ///
176    /// rec20
177    CubicFootPerHour,
178    /// cubic foot per minute
179    ///
180    /// rec20
181    CubicFootPerMinute,
182    /// centimetre per second
183    ///
184    /// rec20
185    CentimetrePerSecond,
186    /// decibel
187    ///
188    /// rec20
189    Decibel,
190    /// kilobyte
191    ///
192    /// rec20
193    Kilobyte,
194    /// kilobecquerel
195    ///
196    /// rec20
197    Kilobecquerel,
198    /// kilocurie
199    ///
200    /// rec20
201    Kilocurie,
202    /// megagram
203    ///
204    /// rec20
205    Megagram,
206    /// metre per minute
207    ///
208    /// rec20
209    MetrePerMinute,
210    /// milliroentgen
211    ///
212    /// rec20
213    Milliroentgen,
214    /// millivolt
215    ///
216    /// rec20
217    Millivolt,
218    /// megajoule
219    ///
220    /// rec20
221    Megajoule,
222    /// manmonth
223    ///
224    /// rec20
225    Manmonth,
226    /// centistokes
227    ///
228    /// rec20
229    Centistokes,
230    /// microlitre
231    ///
232    /// rec20
233    Microlitre,
234    /// micrometre (micron)
235    ///
236    /// rec20
237    MicrometreMicron,
238    /// milliampere
239    ///
240    /// rec20
241    Milliampere,
242    /// megabyte
243    ///
244    /// rec20
245    Megabyte,
246    /// milligram per hour
247    ///
248    /// rec20
249    MilligramPerHour,
250    /// megabecquerel
251    ///
252    /// rec20
253    Megabecquerel,
254    /// microfarad
255    ///
256    /// rec20
257    Microfarad,
258    /// newton per metre
259    ///
260    /// rec20
261    NewtonPerMetre,
262    /// ounce inch
263    ///
264    /// rec20
265    OunceInch,
266    /// ounce foot
267    ///
268    /// rec20
269    OunceFoot,
270    /// picofarad
271    ///
272    /// rec20
273    Picofarad,
274    /// pound per hour
275    ///
276    /// rec20
277    PoundPerHour,
278    /// ton (US) per hour
279    ///
280    /// rec20
281    TonUsPerHour,
282    /// kilolitre per hour
283    ///
284    /// rec20
285    KilolitrePerHour,
286    /// barrel (US) per minute
287    ///
288    /// rec20
289    BarrelUsPerMinute,
290    /// batch
291    ///
292    /// rec20
293    Batch,
294    /// MMSCF/day
295    ///
296    /// rec20
297    MmscfDay,
298    /// hydraulic horse power
299    ///
300    /// rec20
301    HydraulicHorsePower,
302    /// ampere square metre per joule second
303    ///
304    /// rec20
305    AmpereSquareMetrePerJouleSecond,
306    /// angstrom
307    ///
308    /// rec20
309    Angstrom,
310    /// astronomical unit
311    ///
312    /// rec20
313    AstronomicalUnit,
314    /// attojoule
315    ///
316    /// rec20
317    Attojoule,
318    /// barn
319    ///
320    /// rec20
321    Barn,
322    /// barn per electronvolt
323    ///
324    /// rec20
325    BarnPerElectronvolt,
326    /// barn per steradian electronvolt
327    ///
328    /// rec20
329    BarnPerSteradianElectronvolt,
330    /// barn per steradian
331    ///
332    /// rec20
333    BarnPerSteradian,
334    /// becquerel per kilogram
335    ///
336    /// rec20
337    BecquerelPerKilogram,
338    /// becquerel per cubic metre
339    ///
340    /// rec20
341    BecquerelPerCubicMetre,
342    /// ampere per centimetre
343    ///
344    /// rec20
345    AmperePerCentimetre,
346    /// British thermal unit (international table) per second square foot degree Rankine
347    ///
348    /// rec20
349    BritishThermalUnitInternationalTablePerSecondSquareFootDegreeRankine,
350    /// British thermal unit (international table) per pound degree Rankine
351    ///
352    /// rec20
353    BritishThermalUnitInternationalTablePerPoundDegreeRankine,
354    /// British thermal unit (international table) per second foot degree Rankine
355    ///
356    /// rec20
357    BritishThermalUnitInternationalTablePerSecondFootDegreeRankine,
358    /// British thermal unit (international table) per hour square foot degree Rankine
359    ///
360    /// rec20
361    BritishThermalUnitInternationalTablePerHourSquareFootDegreeRankine,
362    /// candela per square metre
363    ///
364    /// rec20
365    CandelaPerSquareMetre,
366    /// coulomb metre
367    ///
368    /// rec20
369    CoulombMetre,
370    /// coulomb metre squared per volt
371    ///
372    /// rec20
373    CoulombMetreSquaredPerVolt,
374    /// coulomb per cubic centimetre
375    ///
376    /// rec20
377    CoulombPerCubicCentimetre,
378    /// coulomb per cubic metre
379    ///
380    /// rec20
381    CoulombPerCubicMetre,
382    /// ampere per millimetre
383    ///
384    /// rec20
385    AmperePerMillimetre,
386    /// coulomb per cubic millimetre
387    ///
388    /// rec20
389    CoulombPerCubicMillimetre,
390    /// coulomb per kilogram second
391    ///
392    /// rec20
393    CoulombPerKilogramSecond,
394    /// coulomb per mole
395    ///
396    /// rec20
397    CoulombPerMole,
398    /// coulomb per square centimetre
399    ///
400    /// rec20
401    CoulombPerSquareCentimetre,
402    /// coulomb per square metre
403    ///
404    /// rec20
405    CoulombPerSquareMetre,
406    /// coulomb per square millimetre
407    ///
408    /// rec20
409    CoulombPerSquareMillimetre,
410    /// cubic centimetre per mole
411    ///
412    /// rec20
413    CubicCentimetrePerMole,
414    /// cubic decimetre per mole
415    ///
416    /// rec20
417    CubicDecimetrePerMole,
418    /// cubic metre per coulomb
419    ///
420    /// rec20
421    CubicMetrePerCoulomb,
422    /// cubic metre per kilogram
423    ///
424    /// rec20
425    CubicMetrePerKilogram,
426    /// ampere per square centimetre
427    ///
428    /// rec20
429    AmperePerSquareCentimetre,
430    /// cubic metre per mole
431    ///
432    /// rec20
433    CubicMetrePerMole,
434    /// ampere per square metre
435    ///
436    /// rec20
437    AmperePerSquareMetre,
438    /// curie per kilogram
439    ///
440    /// rec20
441    CuriePerKilogram,
442    /// deadweight tonnage
443    ///
444    /// rec20
445    DeadweightTonnage,
446    /// decalitre
447    ///
448    /// rec20
449    Decalitre,
450    /// decametre
451    ///
452    /// rec20
453    Decametre,
454    /// decitex
455    ///
456    /// rec20
457    Decitex,
458    /// degree Rankine
459    ///
460    /// rec20
461    DegreeRankine,
462    /// denier
463    ///
464    /// rec20
465    Denier,
466    /// ampere square metre
467    ///
468    /// rec20
469    AmpereSquareMetre,
470    /// electronvolt
471    ///
472    /// rec20
473    Electronvolt,
474    /// electronvolt per metre
475    ///
476    /// rec20
477    ElectronvoltPerMetre,
478    /// electronvolt square metre
479    ///
480    /// rec20
481    ElectronvoltSquareMetre,
482    /// electronvolt square metre per kilogram
483    ///
484    /// rec20
485    ElectronvoltSquareMetrePerKilogram,
486    /// 8-part cloud cover
487    ///
488    /// rec20
489    _8PartCloudCover,
490    /// ampere per square metre kelvin squared
491    ///
492    /// rec20
493    AmperePerSquareMetreKelvinSquared,
494    /// exajoule
495    ///
496    /// rec20
497    Exajoule,
498    /// farad per metre
499    ///
500    /// rec20
501    FaradPerMetre,
502    /// ampere per square millimetre
503    ///
504    /// rec20
505    AmperePerSquareMillimetre,
506    /// femtojoule
507    ///
508    /// rec20
509    Femtojoule,
510    /// femtometre
511    ///
512    /// rec20
513    Femtometre,
514    /// foot per second squared
515    ///
516    /// rec20
517    FootPerSecondSquared,
518    /// foot pound-force per second
519    ///
520    /// rec20
521    FootPoundForcePerSecond,
522    /// freight ton
523    ///
524    /// rec20
525    FreightTon,
526    /// gal
527    ///
528    /// rec20
529    Gal,
530    /// ampere second
531    ///
532    /// rec20
533    AmpereSecond,
534    /// gigacoulomb per cubic metre
535    ///
536    /// rec20
537    GigacoulombPerCubicMetre,
538    /// gigaelectronvolt
539    ///
540    /// rec20
541    Gigaelectronvolt,
542    /// gigahertz
543    ///
544    /// rec20
545    Gigahertz,
546    /// gigaohm
547    ///
548    /// rec20
549    Gigaohm,
550    /// gigaohm metre
551    ///
552    /// rec20
553    GigaohmMetre,
554    /// gigapascal
555    ///
556    /// rec20
557    Gigapascal,
558    /// rate
559    ///
560    /// rec20
561    Rate,
562    /// gigawatt
563    ///
564    /// rec20
565    Gigawatt,
566    /// gon
567    ///
568    /// rec20
569    Gon,
570    /// gram per cubic metre
571    ///
572    /// rec20
573    GramPerCubicMetre,
574    /// gram per mole
575    ///
576    /// rec20
577    GramPerMole,
578    /// gray
579    ///
580    /// rec20
581    Gray,
582    /// gray per second
583    ///
584    /// rec20
585    GrayPerSecond,
586    /// hectopascal
587    ///
588    /// rec20
589    Hectopascal,
590    /// henry per metre
591    ///
592    /// rec20
593    HenryPerMetre,
594    /// bit
595    ///
596    /// rec20
597    Bit,
598    /// ball
599    ///
600    /// rec20
601    Ball,
602    /// bulk pack
603    ///
604    /// rec20
605    BulkPack,
606    /// acre
607    ///
608    /// rec20
609    Acre,
610    /// activity
611    ///
612    /// rec20
613    Activity,
614    /// byte
615    ///
616    /// rec20
617    Byte,
618    /// ampere per metre
619    ///
620    /// rec20
621    AmperePerMetre,
622    /// additional minute
623    ///
624    /// rec20
625    AdditionalMinute,
626    /// average minute per call
627    ///
628    /// rec20
629    AverageMinutePerCall,
630    /// fathom
631    ///
632    /// rec20
633    Fathom,
634    /// access line
635    ///
636    /// rec20
637    AccessLine,
638    /// ampere hour
639    ///
640    /// rec20
641    AmpereHour,
642    /// ampere
643    ///
644    /// rec20
645    Ampere,
646    /// year
647    ///
648    /// rec20
649    Year,
650    /// troy ounce or apothecary ounce
651    ///
652    /// rec20
653    TroyOunceOrApothecaryOunce,
654    /// anti-hemophilic factor (AHF) unit
655    ///
656    /// rec20
657    AntiHemophilicFactorAhfUnit,
658    /// assortment
659    ///
660    /// rec20
661    Assortment,
662    /// alcoholic strength by mass
663    ///
664    /// rec20
665    AlcoholicStrengthByMass,
666    /// alcoholic strength by volume
667    ///
668    /// rec20
669    AlcoholicStrengthByVolume,
670    /// standard atmosphere
671    ///
672    /// rec20
673    StandardAtmosphere,
674    /// american wire gauge
675    ///
676    /// rec20
677    AmericanWireGauge,
678    /// assembly
679    ///
680    /// rec20
681    Assembly,
682    /// British thermal unit (international table) per pound
683    ///
684    /// rec20
685    BritishThermalUnitInternationalTablePerPound,
686    /// barrel (US) per day
687    ///
688    /// rec20
689    BarrelUsPerDay,
690    /// bit per second
691    ///
692    /// rec20
693    BitPerSecond,
694    /// joule per kilogram kelvin
695    ///
696    /// rec20
697    JoulePerKilogramKelvin,
698    /// joule per metre
699    ///
700    /// rec20
701    JoulePerMetre,
702    /// joule per square metre
703    ///
704    /// rec20
705    JoulePerSquareMetre,
706    /// joule per metre to the fourth power
707    ///
708    /// rec20
709    JoulePerMetreToFourthPower,
710    /// joule per mole
711    ///
712    /// rec20
713    JoulePerMole,
714    /// joule per mole kelvin
715    ///
716    /// rec20
717    JoulePerMoleKelvin,
718    /// credit
719    ///
720    /// rec20
721    Credit,
722    /// joule second
723    ///
724    /// rec20
725    JouleSecond,
726    /// digit
727    ///
728    /// rec20
729    Digit,
730    /// joule square metre per kilogram
731    ///
732    /// rec20
733    JouleSquareMetrePerKilogram,
734    /// kelvin per watt
735    ///
736    /// rec20
737    KelvinPerWatt,
738    /// kiloampere
739    ///
740    /// rec20
741    Kiloampere,
742    /// kiloampere per square metre
743    ///
744    /// rec20
745    KiloamperePerSquareMetre,
746    /// kiloampere per metre
747    ///
748    /// rec20
749    KiloamperePerMetre,
750    /// kilobecquerel per kilogram
751    ///
752    /// rec20
753    KilobecquerelPerKilogram,
754    /// kilocoulomb
755    ///
756    /// rec20
757    Kilocoulomb,
758    /// kilocoulomb per cubic metre
759    ///
760    /// rec20
761    KilocoulombPerCubicMetre,
762    /// kilocoulomb per square metre
763    ///
764    /// rec20
765    KilocoulombPerSquareMetre,
766    /// kiloelectronvolt
767    ///
768    /// rec20
769    Kiloelectronvolt,
770    /// batting pound
771    ///
772    /// rec20
773    BattingPound,
774    /// gibibit
775    ///
776    /// rec20
777    Gibibit,
778    /// kilogram metre per second
779    ///
780    /// rec20
781    KilogramMetrePerSecond,
782    /// kilogram metre squared
783    ///
784    /// rec20
785    KilogramMetreSquared,
786    /// kilogram metre squared per second
787    ///
788    /// rec20
789    KilogramMetreSquaredPerSecond,
790    /// kilogram per cubic decimetre
791    ///
792    /// rec20
793    KilogramPerCubicDecimetre,
794    /// kilogram per litre
795    ///
796    /// rec20
797    KilogramPerLitre,
798    /// barrel, imperial
799    ///
800    /// rec20
801    BarrelImperial,
802    /// kilojoule per kelvin
803    ///
804    /// rec20
805    KilojoulePerKelvin,
806    /// kilojoule per kilogram
807    ///
808    /// rec20
809    KilojoulePerKilogram,
810    /// kilojoule per kilogram kelvin
811    ///
812    /// rec20
813    KilojoulePerKilogramKelvin,
814    /// kilojoule per mole
815    ///
816    /// rec20
817    KilojoulePerMole,
818    /// kilomole
819    ///
820    /// rec20
821    Kilomole,
822    /// kilomole per cubic metre
823    ///
824    /// rec20
825    KilomolePerCubicMetre,
826    /// kilonewton
827    ///
828    /// rec20
829    Kilonewton,
830    /// kilonewton metre
831    ///
832    /// rec20
833    KilonewtonMetre,
834    /// kiloohm
835    ///
836    /// rec20
837    Kiloohm,
838    /// kiloohm metre
839    ///
840    /// rec20
841    KiloohmMetre,
842    /// kilosecond
843    ///
844    /// rec20
845    Kilosecond,
846    /// kilosiemens
847    ///
848    /// rec20
849    Kilosiemens,
850    /// kilosiemens per metre
851    ///
852    /// rec20
853    KilosiemensPerMetre,
854    /// kilovolt per metre
855    ///
856    /// rec20
857    KilovoltPerMetre,
858    /// kiloweber per metre
859    ///
860    /// rec20
861    KiloweberPerMetre,
862    /// light year
863    ///
864    /// rec20
865    LightYear,
866    /// litre per mole
867    ///
868    /// rec20
869    LitrePerMole,
870    /// lumen hour
871    ///
872    /// rec20
873    LumenHour,
874    /// lumen per square metre
875    ///
876    /// rec20
877    LumenPerSquareMetre,
878    /// lumen per watt
879    ///
880    /// rec20
881    LumenPerWatt,
882    /// lumen second
883    ///
884    /// rec20
885    LumenSecond,
886    /// lux hour
887    ///
888    /// rec20
889    LuxHour,
890    /// lux second
891    ///
892    /// rec20
893    LuxSecond,
894    /// megaampere per square metre
895    ///
896    /// rec20
897    MegaamperePerSquareMetre,
898    /// megabecquerel per kilogram
899    ///
900    /// rec20
901    MegabecquerelPerKilogram,
902    /// gigabit
903    ///
904    /// rec20
905    Gigabit,
906    /// megacoulomb per cubic metre
907    ///
908    /// rec20
909    MegacoulombPerCubicMetre,
910    /// cycle
911    ///
912    /// rec20
913    Cycle,
914    /// megacoulomb per square metre
915    ///
916    /// rec20
917    MegacoulombPerSquareMetre,
918    /// megaelectronvolt
919    ///
920    /// rec20
921    Megaelectronvolt,
922    /// megagram per cubic metre
923    ///
924    /// rec20
925    MegagramPerCubicMetre,
926    /// meganewton
927    ///
928    /// rec20
929    Meganewton,
930    /// meganewton metre
931    ///
932    /// rec20
933    MeganewtonMetre,
934    /// megaohm
935    ///
936    /// rec20
937    Megaohm,
938    /// megaohm metre
939    ///
940    /// rec20
941    MegaohmMetre,
942    /// megasiemens per metre
943    ///
944    /// rec20
945    MegasiemensPerMetre,
946    /// megavolt
947    ///
948    /// rec20
949    Megavolt,
950    /// megavolt per metre
951    ///
952    /// rec20
953    MegavoltPerMetre,
954    /// joule per cubic metre
955    ///
956    /// rec20
957    JoulePerCubicMetre,
958    /// gigabit per second
959    ///
960    /// rec20
961    GigabitPerSecond,
962    /// reciprocal metre squared reciprocal second
963    ///
964    /// rec20
965    ReciprocalMetreSquaredReciprocalSecond,
966    /// inch per linear foot
967    ///
968    /// rec20
969    InchPerLinearFoot,
970    /// metre to the fourth power
971    ///
972    /// rec20
973    MetreToFourthPower,
974    /// microampere
975    ///
976    /// rec20
977    Microampere,
978    /// microbar
979    ///
980    /// rec20
981    Microbar,
982    /// microcoulomb
983    ///
984    /// rec20
985    Microcoulomb,
986    /// microcoulomb per cubic metre
987    ///
988    /// rec20
989    MicrocoulombPerCubicMetre,
990    /// microcoulomb per square metre
991    ///
992    /// rec20
993    MicrocoulombPerSquareMetre,
994    /// microfarad per metre
995    ///
996    /// rec20
997    MicrofaradPerMetre,
998    /// microhenry
999    ///
1000    /// rec20
1001    Microhenry,
1002    /// microhenry per metre
1003    ///
1004    /// rec20
1005    MicrohenryPerMetre,
1006    /// micronewton
1007    ///
1008    /// rec20
1009    Micronewton,
1010    /// micronewton metre
1011    ///
1012    /// rec20
1013    MicronewtonMetre,
1014    /// microohm
1015    ///
1016    /// rec20
1017    Microohm,
1018    /// microohm metre
1019    ///
1020    /// rec20
1021    MicroohmMetre,
1022    /// micropascal
1023    ///
1024    /// rec20
1025    Micropascal,
1026    /// microradian
1027    ///
1028    /// rec20
1029    Microradian,
1030    /// microsecond
1031    ///
1032    /// rec20
1033    Microsecond,
1034    /// microsiemens
1035    ///
1036    /// rec20
1037    Microsiemens,
1038    /// bar [unit of pressure]
1039    ///
1040    /// rec20
1041    BarUnitPressure,
1042    /// base box
1043    ///
1044    /// rec20
1045    BaseBox,
1046    /// board foot
1047    ///
1048    /// rec20
1049    BoardFoot,
1050    /// brake horse power
1051    ///
1052    /// rec20
1053    BrakeHorsePower,
1054    /// billion (EUR)
1055    ///
1056    /// rec20
1057    BillionEur,
1058    /// dry barrel (US)
1059    ///
1060    /// rec20
1061    DryBarrelUs,
1062    /// barrel (US)
1063    ///
1064    /// rec20
1065    BarrelUs,
1066    /// hundred board foot
1067    ///
1068    /// rec20
1069    HundredBoardFoot,
1070    /// beats per minute
1071    ///
1072    /// rec20
1073    BeatsPerMinute,
1074    /// becquerel
1075    ///
1076    /// rec20
1077    Becquerel,
1078    /// British thermal unit (international table)
1079    ///
1080    /// rec20
1081    BritishThermalUnitInternationalTable,
1082    /// bushel (US)
1083    ///
1084    /// rec20
1085    BushelUs,
1086    /// bushel (UK)
1087    ///
1088    /// rec20
1089    BushelUk,
1090    /// call
1091    ///
1092    /// rec20
1093    Call,
1094    /// millifarad
1095    ///
1096    /// rec20
1097    Millifarad,
1098    /// milligal
1099    ///
1100    /// rec20
1101    Milligal,
1102    /// milligram per metre
1103    ///
1104    /// rec20
1105    MilligramPerMetre,
1106    /// milligray
1107    ///
1108    /// rec20
1109    Milligray,
1110    /// millihenry
1111    ///
1112    /// rec20
1113    Millihenry,
1114    /// millijoule
1115    ///
1116    /// rec20
1117    Millijoule,
1118    /// millimetre per second
1119    ///
1120    /// rec20
1121    MillimetrePerSecond,
1122    /// millimetre squared per second
1123    ///
1124    /// rec20
1125    MillimetreSquaredPerSecond,
1126    /// millimole
1127    ///
1128    /// rec20
1129    Millimole,
1130    /// mole per kilogram
1131    ///
1132    /// rec20
1133    MolePerKilogram,
1134    /// millinewton
1135    ///
1136    /// rec20
1137    Millinewton,
1138    /// kibibit
1139    ///
1140    /// rec20
1141    Kibibit,
1142    /// millinewton per metre
1143    ///
1144    /// rec20
1145    MillinewtonPerMetre,
1146    /// milliohm metre
1147    ///
1148    /// rec20
1149    MilliohmMetre,
1150    /// millipascal second
1151    ///
1152    /// rec20
1153    MillipascalSecond,
1154    /// milliradian
1155    ///
1156    /// rec20
1157    Milliradian,
1158    /// millisecond
1159    ///
1160    /// rec20
1161    Millisecond,
1162    /// millisiemens
1163    ///
1164    /// rec20
1165    Millisiemens,
1166    /// millisievert
1167    ///
1168    /// rec20
1169    Millisievert,
1170    /// millitesla
1171    ///
1172    /// rec20
1173    Millitesla,
1174    /// microvolt per metre
1175    ///
1176    /// rec20
1177    MicrovoltPerMetre,
1178    /// millivolt per metre
1179    ///
1180    /// rec20
1181    MillivoltPerMetre,
1182    /// milliwatt
1183    ///
1184    /// rec20
1185    Milliwatt,
1186    /// milliwatt per square metre
1187    ///
1188    /// rec20
1189    MilliwattPerSquareMetre,
1190    /// milliweber
1191    ///
1192    /// rec20
1193    Milliweber,
1194    /// mole
1195    ///
1196    /// rec20
1197    Mole,
1198    /// mole per cubic decimetre
1199    ///
1200    /// rec20
1201    MolePerCubicDecimetre,
1202    /// mole per cubic metre
1203    ///
1204    /// rec20
1205    MolePerCubicMetre,
1206    /// kilobit
1207    ///
1208    /// rec20
1209    Kilobit,
1210    /// mole per litre
1211    ///
1212    /// rec20
1213    MolePerLitre,
1214    /// nanoampere
1215    ///
1216    /// rec20
1217    Nanoampere,
1218    /// nanocoulomb
1219    ///
1220    /// rec20
1221    Nanocoulomb,
1222    /// nanofarad
1223    ///
1224    /// rec20
1225    Nanofarad,
1226    /// nanofarad per metre
1227    ///
1228    /// rec20
1229    NanofaradPerMetre,
1230    /// nanohenry
1231    ///
1232    /// rec20
1233    Nanohenry,
1234    /// nanohenry per metre
1235    ///
1236    /// rec20
1237    NanohenryPerMetre,
1238    /// nanometre
1239    ///
1240    /// rec20
1241    Nanometre,
1242    /// nanoohm metre
1243    ///
1244    /// rec20
1245    NanoohmMetre,
1246    /// nanosecond
1247    ///
1248    /// rec20
1249    Nanosecond,
1250    /// nanotesla
1251    ///
1252    /// rec20
1253    Nanotesla,
1254    /// nanowatt
1255    ///
1256    /// rec20
1257    Nanowatt,
1258    /// neper
1259    ///
1260    /// rec20
1261    Neper,
1262    /// neper per second
1263    ///
1264    /// rec20
1265    NeperPerSecond,
1266    /// picometre
1267    ///
1268    /// rec20
1269    Picometre,
1270    /// newton metre second
1271    ///
1272    /// rec20
1273    NewtonMetreSecond,
1274    /// newton metre squared per kilogram squared
1275    ///
1276    /// rec20
1277    NewtonMetreSquaredPerKilogramSquared,
1278    /// newton per square metre
1279    ///
1280    /// rec20
1281    NewtonPerSquareMetre,
1282    /// newton per square millimetre
1283    ///
1284    /// rec20
1285    NewtonPerSquareMillimetre,
1286    /// newton second
1287    ///
1288    /// rec20
1289    NewtonSecond,
1290    /// newton second per metre
1291    ///
1292    /// rec20
1293    NewtonSecondPerMetre,
1294    /// octave
1295    ///
1296    /// rec20
1297    Octave,
1298    /// ohm centimetre
1299    ///
1300    /// rec20
1301    OhmCentimetre,
1302    /// ohm metre
1303    ///
1304    /// rec20
1305    OhmMetre,
1306    /// one
1307    ///
1308    /// rec20
1309    One,
1310    /// parsec
1311    ///
1312    /// rec20
1313    Parsec,
1314    /// pascal per kelvin
1315    ///
1316    /// rec20
1317    PascalPerKelvin,
1318    /// pascal second
1319    ///
1320    /// rec20
1321    PascalSecond,
1322    /// pascal second per cubic metre
1323    ///
1324    /// rec20
1325    PascalSecondPerCubicMetre,
1326    /// pascal second per metre
1327    ///
1328    /// rec20
1329    PascalSecondPerMetre,
1330    /// petajoule
1331    ///
1332    /// rec20
1333    Petajoule,
1334    /// phon
1335    ///
1336    /// rec20
1337    Phon,
1338    /// centipoise
1339    ///
1340    /// rec20
1341    Centipoise,
1342    /// picoampere
1343    ///
1344    /// rec20
1345    Picoampere,
1346    /// picocoulomb
1347    ///
1348    /// rec20
1349    Picocoulomb,
1350    /// picofarad per metre
1351    ///
1352    /// rec20
1353    PicofaradPerMetre,
1354    /// picohenry
1355    ///
1356    /// rec20
1357    Picohenry,
1358    /// kilobit per second
1359    ///
1360    /// rec20
1361    KilobitPerSecond,
1362    /// picowatt
1363    ///
1364    /// rec20
1365    Picowatt,
1366    /// picowatt per square metre
1367    ///
1368    /// rec20
1369    PicowattPerSquareMetre,
1370    /// pound-force
1371    ///
1372    /// rec20
1373    PoundForce,
1374    /// kilovolt ampere hour
1375    ///
1376    /// rec20
1377    KilovoltAmpereHour,
1378    /// millicoulomb per kilogram
1379    ///
1380    /// rec20
1381    MillicoulombPerKilogram,
1382    /// rad
1383    ///
1384    /// rec20
1385    Rad,
1386    /// radian
1387    ///
1388    /// rec20
1389    Radian,
1390    /// radian square metre per mole
1391    ///
1392    /// rec20
1393    RadianSquareMetrePerMole,
1394    /// radian square metre per kilogram
1395    ///
1396    /// rec20
1397    RadianSquareMetrePerKilogram,
1398    /// radian per metre
1399    ///
1400    /// rec20
1401    RadianPerMetre,
1402    /// reciprocal angstrom
1403    ///
1404    /// rec20
1405    ReciprocalAngstrom,
1406    /// reciprocal cubic metre
1407    ///
1408    /// rec20
1409    ReciprocalCubicMetre,
1410    /// reciprocal cubic metre per second
1411    ///
1412    /// rec20
1413    ReciprocalCubicMetrePerSecond,
1414    /// reciprocal electron volt per cubic metre
1415    ///
1416    /// rec20
1417    ReciprocalElectronVoltPerCubicMetre,
1418    /// reciprocal henry
1419    ///
1420    /// rec20
1421    ReciprocalHenry,
1422    /// coil group
1423    ///
1424    /// rec20
1425    CoilGroup,
1426    /// reciprocal joule per cubic metre
1427    ///
1428    /// rec20
1429    ReciprocalJoulePerCubicMetre,
1430    /// reciprocal kelvin or kelvin to the power minus one
1431    ///
1432    /// rec20
1433    ReciprocalKelvinOrKelvinToPowerMinusOne,
1434    /// reciprocal metre
1435    ///
1436    /// rec20
1437    ReciprocalMetre,
1438    /// reciprocal square metre
1439    ///
1440    /// rec20
1441    ReciprocalSquareMetre,
1442    /// reciprocal minute
1443    ///
1444    /// rec20
1445    ReciprocalMinute,
1446    /// reciprocal mole
1447    ///
1448    /// rec20
1449    ReciprocalMole,
1450    /// reciprocal pascal or pascal to the power minus one
1451    ///
1452    /// rec20
1453    ReciprocalPascalOrPascalToPowerMinusOne,
1454    /// reciprocal second
1455    ///
1456    /// rec20
1457    ReciprocalSecond,
1458    /// reciprocal second per metre squared
1459    ///
1460    /// rec20
1461    ReciprocalSecondPerMetreSquared,
1462    /// carrying capacity in metric ton
1463    ///
1464    /// rec20
1465    CarryingCapacityInMetricTon,
1466    /// candela
1467    ///
1468    /// rec20
1469    Candela,
1470    /// degree Celsius
1471    ///
1472    /// rec20
1473    DegreeCelsius,
1474    /// hundred
1475    ///
1476    /// rec20
1477    Hundred,
1478    /// card
1479    ///
1480    /// rec20
1481    Card,
1482    /// centigram
1483    ///
1484    /// rec20
1485    Centigram,
1486    /// coulomb per kilogram
1487    ///
1488    /// rec20
1489    CoulombPerKilogram,
1490    /// hundred leave
1491    ///
1492    /// rec20
1493    HundredLeave,
1494    /// centilitre
1495    ///
1496    /// rec20
1497    Centilitre,
1498    /// square centimetre
1499    ///
1500    /// rec20
1501    SquareCentimetre,
1502    /// cubic centimetre
1503    ///
1504    /// rec20
1505    CubicCentimetre,
1506    /// centimetre
1507    ///
1508    /// rec20
1509    Centimetre,
1510    /// hundred pack
1511    ///
1512    /// rec20
1513    HundredPack,
1514    /// cental (UK)
1515    ///
1516    /// rec20
1517    CentalUk,
1518    /// coulomb
1519    ///
1520    /// rec20
1521    Coulomb,
1522    /// content gram
1523    ///
1524    /// rec20
1525    ContentGram,
1526    /// metric carat
1527    ///
1528    /// rec20
1529    MetricCarat,
1530    /// content ton (metric)
1531    ///
1532    /// rec20
1533    ContentTonMetric,
1534    /// curie
1535    ///
1536    /// rec20
1537    Curie,
1538    /// hundred pound (cwt) / hundred weight (US)
1539    ///
1540    /// rec20
1541    HundredPoundCwtHundredWeightUs,
1542    /// hundred weight (UK)
1543    ///
1544    /// rec20
1545    HundredWeightUk,
1546    /// kilowatt hour per hour
1547    ///
1548    /// rec20
1549    KilowattHourPerHour,
1550    /// lot [unit of weight]
1551    ///
1552    /// rec20
1553    LotUnitWeight,
1554    /// reciprocal second per steradian
1555    ///
1556    /// rec20
1557    ReciprocalSecondPerSteradian,
1558    /// siemens per metre
1559    ///
1560    /// rec20
1561    SiemensPerMetre,
1562    /// mebibit
1563    ///
1564    /// rec20
1565    Mebibit,
1566    /// siemens square metre per mole
1567    ///
1568    /// rec20
1569    SiemensSquareMetrePerMole,
1570    /// sievert
1571    ///
1572    /// rec20
1573    Sievert,
1574    /// sone
1575    ///
1576    /// rec20
1577    Sone,
1578    /// square centimetre per erg
1579    ///
1580    /// rec20
1581    SquareCentimetrePerErg,
1582    /// square centimetre per steradian erg
1583    ///
1584    /// rec20
1585    SquareCentimetrePerSteradianErg,
1586    /// metre kelvin
1587    ///
1588    /// rec20
1589    MetreKelvin,
1590    /// square metre kelvin per watt
1591    ///
1592    /// rec20
1593    SquareMetreKelvinPerWatt,
1594    /// reciprocal second per steradian metre squared
1595    ///
1596    /// rec20
1597    ReciprocalSecondPerSteradianMetreSquared,
1598    /// square metre per joule
1599    ///
1600    /// rec20
1601    SquareMetrePerJoule,
1602    /// square metre per kilogram
1603    ///
1604    /// rec20
1605    SquareMetrePerKilogram,
1606    /// square metre per mole
1607    ///
1608    /// rec20
1609    SquareMetrePerMole,
1610    /// pen gram (protein)
1611    ///
1612    /// rec20
1613    PenGramProtein,
1614    /// square metre per steradian
1615    ///
1616    /// rec20
1617    SquareMetrePerSteradian,
1618    /// square metre per steradian joule
1619    ///
1620    /// rec20
1621    SquareMetrePerSteradianJoule,
1622    /// square metre per volt second
1623    ///
1624    /// rec20
1625    SquareMetrePerVoltSecond,
1626    /// steradian
1627    ///
1628    /// rec20
1629    Steradian,
1630    /// terahertz
1631    ///
1632    /// rec20
1633    Terahertz,
1634    /// terajoule
1635    ///
1636    /// rec20
1637    Terajoule,
1638    /// terawatt
1639    ///
1640    /// rec20
1641    Terawatt,
1642    /// terawatt hour
1643    ///
1644    /// rec20
1645    TerawattHour,
1646    /// tesla
1647    ///
1648    /// rec20
1649    Tesla,
1650    /// tex
1651    ///
1652    /// rec20
1653    Tex,
1654    /// megabit
1655    ///
1656    /// rec20
1657    Megabit,
1658    /// tonne per cubic metre
1659    ///
1660    /// rec20
1661    TonnePerCubicMetre,
1662    /// tropical year
1663    ///
1664    /// rec20
1665    TropicalYear,
1666    /// unified atomic mass unit
1667    ///
1668    /// rec20
1669    UnifiedAtomicMassUnit,
1670    /// var
1671    ///
1672    /// rec20
1673    Var,
1674    /// volt squared per kelvin squared
1675    ///
1676    /// rec20
1677    VoltSquaredPerKelvinSquared,
1678    /// volt - ampere
1679    ///
1680    /// rec20
1681    VoltAmpere,
1682    /// volt per centimetre
1683    ///
1684    /// rec20
1685    VoltPerCentimetre,
1686    /// volt per kelvin
1687    ///
1688    /// rec20
1689    VoltPerKelvin,
1690    /// millivolt per kelvin
1691    ///
1692    /// rec20
1693    MillivoltPerKelvin,
1694    /// kilogram per square centimetre
1695    ///
1696    /// rec20
1697    KilogramPerSquareCentimetre,
1698    /// volt per metre
1699    ///
1700    /// rec20
1701    VoltPerMetre,
1702    /// volt per millimetre
1703    ///
1704    /// rec20
1705    VoltPerMillimetre,
1706    /// watt per kelvin
1707    ///
1708    /// rec20
1709    WattPerKelvin,
1710    /// watt per metre kelvin
1711    ///
1712    /// rec20
1713    WattPerMetreKelvin,
1714    /// watt per square metre
1715    ///
1716    /// rec20
1717    WattPerSquareMetre,
1718    /// watt per square metre kelvin
1719    ///
1720    /// rec20
1721    WattPerSquareMetreKelvin,
1722    /// watt per square metre kelvin to the fourth power
1723    ///
1724    /// rec20
1725    WattPerSquareMetreKelvinToFourthPower,
1726    /// watt per steradian
1727    ///
1728    /// rec20
1729    WattPerSteradian,
1730    /// watt per steradian square metre
1731    ///
1732    /// rec20
1733    WattPerSteradianSquareMetre,
1734    /// weber per metre
1735    ///
1736    /// rec20
1737    WeberPerMetre,
1738    /// roentgen per second
1739    ///
1740    /// rec20
1741    RoentgenPerSecond,
1742    /// weber per millimetre
1743    ///
1744    /// rec20
1745    WeberPerMillimetre,
1746    /// minute [unit of angle]
1747    ///
1748    /// rec20
1749    MinuteUnitAngle,
1750    /// second [unit of angle]
1751    ///
1752    /// rec20
1753    SecondUnitAngle,
1754    /// book
1755    ///
1756    /// rec20
1757    Book,
1758    /// round
1759    ///
1760    /// rec20
1761    Round,
1762    /// number of words
1763    ///
1764    /// rec20
1765    NumberWords,
1766    /// inch to the fourth power
1767    ///
1768    /// rec20
1769    InchToFourthPower,
1770    /// joule square metre
1771    ///
1772    /// rec20
1773    JouleSquareMetre,
1774    /// kilogram per mole
1775    ///
1776    /// rec20
1777    KilogramPerMole,
1778    /// megacoulomb
1779    ///
1780    /// rec20
1781    Megacoulomb,
1782    /// megajoule per second
1783    ///
1784    /// rec20
1785    MegajoulePerSecond,
1786    /// microwatt
1787    ///
1788    /// rec20
1789    Microwatt,
1790    /// microtesla
1791    ///
1792    /// rec20
1793    Microtesla,
1794    /// microvolt
1795    ///
1796    /// rec20
1797    Microvolt,
1798    /// millinewton metre
1799    ///
1800    /// rec20
1801    MillinewtonMetre,
1802    /// microwatt per square metre
1803    ///
1804    /// rec20
1805    MicrowattPerSquareMetre,
1806    /// millicoulomb
1807    ///
1808    /// rec20
1809    Millicoulomb,
1810    /// millimole per kilogram
1811    ///
1812    /// rec20
1813    MillimolePerKilogram,
1814    /// millicoulomb per cubic metre
1815    ///
1816    /// rec20
1817    MillicoulombPerCubicMetre,
1818    /// millicoulomb per square metre
1819    ///
1820    /// rec20
1821    MillicoulombPerSquareMetre,
1822    /// rem
1823    ///
1824    /// rec20
1825    Rem,
1826    /// second per cubic metre
1827    ///
1828    /// rec20
1829    SecondPerCubicMetre,
1830    /// second per cubic metre radian
1831    ///
1832    /// rec20
1833    SecondPerCubicMetreRadian,
1834    /// joule per gram
1835    ///
1836    /// rec20
1837    JoulePerGram,
1838    /// decare
1839    ///
1840    /// rec20
1841    Decare,
1842    /// ten day
1843    ///
1844    /// rec20
1845    TenDay,
1846    /// day
1847    ///
1848    /// rec20
1849    Day,
1850    /// dry pound
1851    ///
1852    /// rec20
1853    DryPound,
1854    /// Decibel-milliwatts
1855    ///
1856    /// Rec20
1857    DecibelMilliwatts,
1858    /// Decibel watt
1859    ///
1860    /// Rec20
1861    DecibelWatt,
1862    /// degree [unit of angle]
1863    ///
1864    /// rec20
1865    DegreeUnitAngle,
1866    /// decade
1867    ///
1868    /// rec20
1869    Decade,
1870    /// decigram
1871    ///
1872    /// rec20
1873    Decigram,
1874    /// decagram
1875    ///
1876    /// rec20
1877    Decagram,
1878    /// decilitre
1879    ///
1880    /// rec20
1881    Decilitre,
1882    /// cubic decametre
1883    ///
1884    /// rec20
1885    CubicDecametre,
1886    /// square decimetre
1887    ///
1888    /// rec20
1889    SquareDecimetre,
1890    /// standard kilolitre
1891    ///
1892    /// rec20
1893    StandardKilolitre,
1894    /// cubic decimetre
1895    ///
1896    /// rec20
1897    CubicDecimetre,
1898    /// decimetre
1899    ///
1900    /// rec20
1901    Decimetre,
1902    /// decinewton metre
1903    ///
1904    /// rec20
1905    DecinewtonMetre,
1906    /// dozen piece
1907    ///
1908    /// rec20
1909    DozenPiece,
1910    /// dozen pair
1911    ///
1912    /// rec20
1913    DozenPair,
1914    /// displacement tonnage
1915    ///
1916    /// rec20
1917    DisplacementTonnage,
1918    /// dram (US)
1919    ///
1920    /// rec20
1921    DramUs,
1922    /// dram (UK)
1923    ///
1924    /// rec20
1925    DramUk,
1926    /// dozen roll
1927    ///
1928    /// rec20
1929    DozenRoll,
1930    /// dry ton
1931    ///
1932    /// rec20
1933    DryTon,
1934    /// decitonne
1935    ///
1936    /// rec20
1937    Decitonne,
1938    /// pennyweight
1939    ///
1940    /// rec20
1941    Pennyweight,
1942    /// dozen
1943    ///
1944    /// rec20
1945    Dozen,
1946    /// dozen pack
1947    ///
1948    /// rec20
1949    DozenPack,
1950    /// newton per square centimetre
1951    ///
1952    /// rec20
1953    NewtonPerSquareCentimetre,
1954    /// megawatt hour per hour
1955    ///
1956    /// rec20
1957    MegawattHourPerHour,
1958    /// megawatt per hertz
1959    ///
1960    /// rec20
1961    MegawattPerHertz,
1962    /// milliampere hour
1963    ///
1964    /// rec20
1965    MilliampereHour,
1966    /// degree day
1967    ///
1968    /// rec20
1969    DegreeDay,
1970    /// mille
1971    ///
1972    /// rec20
1973    Mille,
1974    /// kilocalorie (international table)
1975    ///
1976    /// rec20
1977    KilocalorieInternationalTable,
1978    /// kilocalorie (thermochemical) per hour
1979    ///
1980    /// rec20
1981    KilocalorieThermochemicalPerHour,
1982    /// million Btu(IT) per hour
1983    ///
1984    /// rec20
1985    MillionBtuItPerHour,
1986    /// cubic foot per second
1987    ///
1988    /// rec20
1989    CubicFootPerSecond,
1990    /// tonne per hour
1991    ///
1992    /// rec20
1993    TonnePerHour,
1994    /// ping
1995    ///
1996    /// rec20
1997    Ping,
1998    /// megabit per second
1999    ///
2000    /// rec20
2001    MegabitPerSecond,
2002    /// shares
2003    ///
2004    /// rec20
2005    Shares,
2006    /// TEU
2007    ///
2008    /// rec20
2009    Teu,
2010    /// tyre
2011    ///
2012    /// rec20
2013    Tyre,
2014    /// active unit
2015    ///
2016    /// rec20
2017    ActiveUnit,
2018    /// dose
2019    ///
2020    /// rec20
2021    Dose,
2022    /// air dry ton
2023    ///
2024    /// rec20
2025    AirDryTon,
2026    /// strand
2027    ///
2028    /// rec20
2029    Strand,
2030    /// square metre per litre
2031    ///
2032    /// rec20
2033    SquareMetrePerLitre,
2034    /// litre per hour
2035    ///
2036    /// rec20
2037    LitrePerHour,
2038    /// foot per thousand
2039    ///
2040    /// rec20
2041    FootPerThousand,
2042    /// gigabyte
2043    ///
2044    /// rec20
2045    Gigabyte,
2046    /// terabyte
2047    ///
2048    /// rec20
2049    Terabyte,
2050    /// petabyte
2051    ///
2052    /// rec20
2053    Petabyte,
2054    /// pixel
2055    ///
2056    /// rec20
2057    Pixel,
2058    /// megapixel
2059    ///
2060    /// rec20
2061    Megapixel,
2062    /// dots per inch
2063    ///
2064    /// rec20
2065    DotsPerInch,
2066    /// gross kilogram
2067    ///
2068    /// rec20
2069    GrossKilogram,
2070    /// part per hundred thousand
2071    ///
2072    /// rec20
2073    PartPerHundredThousand,
2074    /// kilogram-force per square millimetre
2075    ///
2076    /// rec20
2077    KilogramForcePerSquareMillimetre,
2078    /// kilogram-force per square centimetre
2079    ///
2080    /// rec20
2081    KilogramForcePerSquareCentimetre,
2082    /// joule per square centimetre
2083    ///
2084    /// rec20
2085    JoulePerSquareCentimetre,
2086    /// kilogram-force metre per square centimetre
2087    ///
2088    /// rec20
2089    KilogramForceMetrePerSquareCentimetre,
2090    /// milliohm
2091    ///
2092    /// rec20
2093    Milliohm,
2094    /// kilowatt hour per cubic metre
2095    ///
2096    /// rec20
2097    KilowattHourPerCubicMetre,
2098    /// kilowatt hour per kelvin
2099    ///
2100    /// rec20
2101    KilowattHourPerKelvin,
2102    /// service unit
2103    ///
2104    /// rec20
2105    ServiceUnit,
2106    /// working day
2107    ///
2108    /// rec20
2109    WorkingDay,
2110    /// accounting unit
2111    ///
2112    /// rec20
2113    AccountingUnit,
2114    /// job
2115    ///
2116    /// rec20
2117    Job,
2118    /// run foot
2119    ///
2120    /// rec20
2121    RunFoot,
2122    /// test
2123    ///
2124    /// rec20
2125    Test,
2126    /// trip
2127    ///
2128    /// rec20
2129    Trip,
2130    /// use
2131    ///
2132    /// rec20
2133    Use,
2134    /// well
2135    ///
2136    /// rec20
2137    Well,
2138    /// zone
2139    ///
2140    /// rec20
2141    Zone,
2142    /// exabit per second
2143    ///
2144    /// rec20
2145    ExabitPerSecond,
2146    /// exbibyte
2147    ///
2148    /// rec20
2149    Exbibyte,
2150    /// pebibyte
2151    ///
2152    /// rec20
2153    Pebibyte,
2154    /// tebibyte
2155    ///
2156    /// rec20
2157    Tebibyte,
2158    /// gibibyte
2159    ///
2160    /// rec20
2161    Gibibyte,
2162    /// mebibyte
2163    ///
2164    /// rec20
2165    Mebibyte,
2166    /// kibibyte
2167    ///
2168    /// rec20
2169    Kibibyte,
2170    /// exbibit per metre
2171    ///
2172    /// rec20
2173    ExbibitPerMetre,
2174    /// exbibit per square metre
2175    ///
2176    /// rec20
2177    ExbibitPerSquareMetre,
2178    /// exbibit per cubic metre
2179    ///
2180    /// rec20
2181    ExbibitPerCubicMetre,
2182    /// gigabyte per second
2183    ///
2184    /// rec20
2185    GigabytePerSecond,
2186    /// gibibit per metre
2187    ///
2188    /// rec20
2189    GibibitPerMetre,
2190    /// gibibit per square metre
2191    ///
2192    /// rec20
2193    GibibitPerSquareMetre,
2194    /// gibibit per cubic metre
2195    ///
2196    /// rec20
2197    GibibitPerCubicMetre,
2198    /// kibibit per metre
2199    ///
2200    /// rec20
2201    KibibitPerMetre,
2202    /// kibibit per square metre
2203    ///
2204    /// rec20
2205    KibibitPerSquareMetre,
2206    /// kibibit per cubic metre
2207    ///
2208    /// rec20
2209    KibibitPerCubicMetre,
2210    /// mebibit per metre
2211    ///
2212    /// rec20
2213    MebibitPerMetre,
2214    /// mebibit per square metre
2215    ///
2216    /// rec20
2217    MebibitPerSquareMetre,
2218    /// mebibit per cubic metre
2219    ///
2220    /// rec20
2221    MebibitPerCubicMetre,
2222    /// petabit
2223    ///
2224    /// rec20
2225    Petabit,
2226    /// petabit per second
2227    ///
2228    /// rec20
2229    PetabitPerSecond,
2230    /// pebibit per metre
2231    ///
2232    /// rec20
2233    PebibitPerMetre,
2234    /// pebibit per square metre
2235    ///
2236    /// rec20
2237    PebibitPerSquareMetre,
2238    /// pebibit per cubic metre
2239    ///
2240    /// rec20
2241    PebibitPerCubicMetre,
2242    /// terabit
2243    ///
2244    /// rec20
2245    Terabit,
2246    /// terabit per second
2247    ///
2248    /// rec20
2249    TerabitPerSecond,
2250    /// tebibit per metre
2251    ///
2252    /// rec20
2253    TebibitPerMetre,
2254    /// tebibit per cubic metre
2255    ///
2256    /// rec20
2257    TebibitPerCubicMetre,
2258    /// tebibit per square metre
2259    ///
2260    /// rec20
2261    TebibitPerSquareMetre,
2262    /// bit per metre
2263    ///
2264    /// rec20
2265    BitPerMetre,
2266    /// bit per square metre
2267    ///
2268    /// rec20
2269    BitPerSquareMetre,
2270    /// reciprocal centimetre
2271    ///
2272    /// rec20
2273    ReciprocalCentimetre,
2274    /// reciprocal day
2275    ///
2276    /// rec20
2277    ReciprocalDay,
2278    /// cubic decimetre per hour
2279    ///
2280    /// rec20
2281    CubicDecimetrePerHour,
2282    /// kilogram per hour
2283    ///
2284    /// rec20
2285    KilogramPerHour,
2286    /// kilomole per second
2287    ///
2288    /// rec20
2289    KilomolePerSecond,
2290    /// mole per second
2291    ///
2292    /// rec20
2293    MolePerSecond,
2294    /// degree per second
2295    ///
2296    /// rec20
2297    DegreePerSecond,
2298    /// millimetre per degree Celcius metre
2299    ///
2300    /// rec20
2301    MillimetrePerDegreeCelciusMetre,
2302    /// degree Celsius per kelvin
2303    ///
2304    /// rec20
2305    DegreeCelsiusPerKelvin,
2306    /// hectopascal per bar
2307    ///
2308    /// rec20
2309    HectopascalPerBar,
2310    /// each
2311    ///
2312    /// rec20
2313    Each,
2314    /// electronic mail box
2315    ///
2316    /// rec20
2317    ElectronicMailBox,
2318    /// equivalent gallon
2319    ///
2320    /// rec20
2321    EquivalentGallon,
2322    /// bit per cubic metre
2323    ///
2324    /// rec20
2325    BitPerCubicMetre,
2326    /// kelvin per kelvin
2327    ///
2328    /// rec20
2329    KelvinPerKelvin,
2330    /// kilopascal per bar
2331    ///
2332    /// rec20
2333    KilopascalPerBar,
2334    /// millibar per bar
2335    ///
2336    /// rec20
2337    MillibarPerBar,
2338    /// megapascal per bar
2339    ///
2340    /// rec20
2341    MegapascalPerBar,
2342    /// poise per bar
2343    ///
2344    /// rec20
2345    PoisePerBar,
2346    /// pascal per bar
2347    ///
2348    /// rec20
2349    PascalPerBar,
2350    /// milliampere per inch
2351    ///
2352    /// rec20
2353    MilliamperePerInch,
2354    /// kelvin per hour
2355    ///
2356    /// rec20
2357    KelvinPerHour,
2358    /// kelvin per minute
2359    ///
2360    /// rec20
2361    KelvinPerMinute,
2362    /// kelvin per second
2363    ///
2364    /// rec20
2365    KelvinPerSecond,
2366    /// slug
2367    ///
2368    /// rec20
2369    Slug,
2370    /// gram per kelvin
2371    ///
2372    /// rec20
2373    GramPerKelvin,
2374    /// kilogram per kelvin
2375    ///
2376    /// rec20
2377    KilogramPerKelvin,
2378    /// milligram per kelvin
2379    ///
2380    /// rec20
2381    MilligramPerKelvin,
2382    /// pound-force per foot
2383    ///
2384    /// rec20
2385    PoundForcePerFoot,
2386    /// kilogram square centimetre
2387    ///
2388    /// rec20
2389    KilogramSquareCentimetre,
2390    /// kilogram square millimetre
2391    ///
2392    /// rec20
2393    KilogramSquareMillimetre,
2394    /// pound inch squared
2395    ///
2396    /// rec20
2397    PoundInchSquared,
2398    /// pound-force inch
2399    ///
2400    /// rec20
2401    PoundForceInch,
2402    /// pound-force foot per ampere
2403    ///
2404    /// rec20
2405    PoundForceFootPerAmpere,
2406    /// gram per cubic decimetre
2407    ///
2408    /// rec20
2409    GramPerCubicDecimetre,
2410    /// kilogram per kilomol
2411    ///
2412    /// rec20
2413    KilogramPerKilomol,
2414    /// gram per hertz
2415    ///
2416    /// rec20
2417    GramPerHertz,
2418    /// gram per day
2419    ///
2420    /// rec20
2421    GramPerDay,
2422    /// gram per hour
2423    ///
2424    /// rec20
2425    GramPerHour,
2426    /// gram per minute
2427    ///
2428    /// rec20
2429    GramPerMinute,
2430    /// gram per second
2431    ///
2432    /// rec20
2433    GramPerSecond,
2434    /// kilogram per day
2435    ///
2436    /// rec20
2437    KilogramPerDay,
2438    /// kilogram per minute
2439    ///
2440    /// rec20
2441    KilogramPerMinute,
2442    /// milligram per day
2443    ///
2444    /// rec20
2445    MilligramPerDay,
2446    /// milligram per minute
2447    ///
2448    /// rec20
2449    MilligramPerMinute,
2450    /// milligram per second
2451    ///
2452    /// rec20
2453    MilligramPerSecond,
2454    /// gram per day kelvin
2455    ///
2456    /// rec20
2457    GramPerDayKelvin,
2458    /// gram per hour kelvin
2459    ///
2460    /// rec20
2461    GramPerHourKelvin,
2462    /// gram per minute kelvin
2463    ///
2464    /// rec20
2465    GramPerMinuteKelvin,
2466    /// gram per second kelvin
2467    ///
2468    /// rec20
2469    GramPerSecondKelvin,
2470    /// kilogram per day kelvin
2471    ///
2472    /// rec20
2473    KilogramPerDayKelvin,
2474    /// kilogram per hour kelvin
2475    ///
2476    /// rec20
2477    KilogramPerHourKelvin,
2478    /// kilogram per minute kelvin
2479    ///
2480    /// rec20
2481    KilogramPerMinuteKelvin,
2482    /// kilogram per second kelvin
2483    ///
2484    /// rec20
2485    KilogramPerSecondKelvin,
2486    /// milligram per day kelvin
2487    ///
2488    /// rec20
2489    MilligramPerDayKelvin,
2490    /// milligram per hour kelvin
2491    ///
2492    /// rec20
2493    MilligramPerHourKelvin,
2494    /// milligram per minute kelvin
2495    ///
2496    /// rec20
2497    MilligramPerMinuteKelvin,
2498    /// milligram per second kelvin
2499    ///
2500    /// rec20
2501    MilligramPerSecondKelvin,
2502    /// newton per millimetre
2503    ///
2504    /// rec20
2505    NewtonPerMillimetre,
2506    /// pound-force per inch
2507    ///
2508    /// rec20
2509    PoundForcePerInch,
2510    /// rod [unit of distance]
2511    ///
2512    /// rec20
2513    RodUnitDistance,
2514    /// micrometre per kelvin
2515    ///
2516    /// rec20
2517    MicrometrePerKelvin,
2518    /// centimetre per kelvin
2519    ///
2520    /// rec20
2521    CentimetrePerKelvin,
2522    /// metre per kelvin
2523    ///
2524    /// rec20
2525    MetrePerKelvin,
2526    /// millimetre per kelvin
2527    ///
2528    /// rec20
2529    MillimetrePerKelvin,
2530    /// milliohm per metre
2531    ///
2532    /// rec20
2533    MilliohmPerMetre,
2534    /// ohm per mile (statute mile)
2535    ///
2536    /// rec20
2537    OhmPerMileStatuteMile,
2538    /// ohm per kilometre
2539    ///
2540    /// rec20
2541    OhmPerKilometre,
2542    /// milliampere per pound-force per square inch
2543    ///
2544    /// rec20
2545    MilliamperePerPoundForcePerSquareInch,
2546    /// reciprocal bar
2547    ///
2548    /// rec20
2549    ReciprocalBar,
2550    /// milliampere per bar
2551    ///
2552    /// rec20
2553    MilliamperePerBar,
2554    /// degree Celsius per bar
2555    ///
2556    /// rec20
2557    DegreeCelsiusPerBar,
2558    /// kelvin per bar
2559    ///
2560    /// rec20
2561    KelvinPerBar,
2562    /// gram per day bar
2563    ///
2564    /// rec20
2565    GramPerDayBar,
2566    /// gram per hour bar
2567    ///
2568    /// rec20
2569    GramPerHourBar,
2570    /// gram per minute bar
2571    ///
2572    /// rec20
2573    GramPerMinuteBar,
2574    /// gram per second bar
2575    ///
2576    /// rec20
2577    GramPerSecondBar,
2578    /// kilogram per day bar
2579    ///
2580    /// rec20
2581    KilogramPerDayBar,
2582    /// kilogram per hour bar
2583    ///
2584    /// rec20
2585    KilogramPerHourBar,
2586    /// kilogram per minute bar
2587    ///
2588    /// rec20
2589    KilogramPerMinuteBar,
2590    /// kilogram per second bar
2591    ///
2592    /// rec20
2593    KilogramPerSecondBar,
2594    /// milligram per day bar
2595    ///
2596    /// rec20
2597    MilligramPerDayBar,
2598    /// milligram per hour bar
2599    ///
2600    /// rec20
2601    MilligramPerHourBar,
2602    /// milligram per minute bar
2603    ///
2604    /// rec20
2605    MilligramPerMinuteBar,
2606    /// milligram per second bar
2607    ///
2608    /// rec20
2609    MilligramPerSecondBar,
2610    /// gram per bar
2611    ///
2612    /// rec20
2613    GramPerBar,
2614    /// milligram per bar
2615    ///
2616    /// rec20
2617    MilligramPerBar,
2618    /// milliampere per millimetre
2619    ///
2620    /// rec20
2621    MilliamperePerMillimetre,
2622    /// pascal second per kelvin
2623    ///
2624    /// rec20
2625    PascalSecondPerKelvin,
2626    /// inch of water
2627    ///
2628    /// rec20
2629    InchWater,
2630    /// inch of mercury
2631    ///
2632    /// rec20
2633    InchMercury,
2634    /// water horse power
2635    ///
2636    /// rec20
2637    WaterHorsePower,
2638    /// bar per kelvin
2639    ///
2640    /// rec20
2641    BarPerKelvin,
2642    /// hectopascal per kelvin
2643    ///
2644    /// rec20
2645    HectopascalPerKelvin,
2646    /// kilopascal per kelvin
2647    ///
2648    /// rec20
2649    KilopascalPerKelvin,
2650    /// millibar per kelvin
2651    ///
2652    /// rec20
2653    MillibarPerKelvin,
2654    /// megapascal per kelvin
2655    ///
2656    /// rec20
2657    MegapascalPerKelvin,
2658    /// poise per kelvin
2659    ///
2660    /// rec20
2661    PoisePerKelvin,
2662    /// volt per litre minute
2663    ///
2664    /// rec20
2665    VoltPerLitreMinute,
2666    /// newton centimetre
2667    ///
2668    /// rec20
2669    NewtonCentimetre,
2670    /// newton metre per degree
2671    ///
2672    /// rec20
2673    NewtonMetrePerDegree,
2674    /// newton metre per ampere
2675    ///
2676    /// rec20
2677    NewtonMetrePerAmpere,
2678    /// bar litre per second
2679    ///
2680    /// rec20
2681    BarLitrePerSecond,
2682    /// bar cubic metre per second
2683    ///
2684    /// rec20
2685    BarCubicMetrePerSecond,
2686    /// hectopascal litre per second
2687    ///
2688    /// rec20
2689    HectopascalLitrePerSecond,
2690    /// hectopascal cubic metre per second
2691    ///
2692    /// rec20
2693    HectopascalCubicMetrePerSecond,
2694    /// millibar litre per second
2695    ///
2696    /// rec20
2697    MillibarLitrePerSecond,
2698    /// millibar cubic metre per second
2699    ///
2700    /// rec20
2701    MillibarCubicMetrePerSecond,
2702    /// megapascal litre per second
2703    ///
2704    /// rec20
2705    MegapascalLitrePerSecond,
2706    /// megapascal cubic metre per second
2707    ///
2708    /// rec20
2709    MegapascalCubicMetrePerSecond,
2710    /// pascal litre per second
2711    ///
2712    /// rec20
2713    PascalLitrePerSecond,
2714    /// degree Fahrenheit
2715    ///
2716    /// rec20
2717    DegreeFahrenheit,
2718    /// farad
2719    ///
2720    /// rec20
2721    Farad,
2722    /// fibre metre
2723    ///
2724    /// rec20
2725    FibreMetre,
2726    /// thousand cubic foot
2727    ///
2728    /// rec20
2729    ThousandCubicFoot,
2730    /// hundred cubic metre
2731    ///
2732    /// rec20
2733    HundredCubicMetre,
2734    /// micromole
2735    ///
2736    /// rec20
2737    Micromole,
2738    /// failures in time
2739    ///
2740    /// rec20
2741    FailuresInTime,
2742    /// flake ton
2743    ///
2744    /// rec20
2745    FlakeTon,
2746    /// Formazin nephelometric unit
2747    ///
2748    /// Rec20
2749    FormazinNephelometricUnit,
2750    /// foot
2751    ///
2752    /// rec20
2753    Foot,
2754    /// pound per square foot
2755    ///
2756    /// rec20
2757    PoundPerSquareFoot,
2758    /// foot per minute
2759    ///
2760    /// rec20
2761    FootPerMinute,
2762    /// foot per second
2763    ///
2764    /// rec20
2765    FootPerSecond,
2766    /// square foot
2767    ///
2768    /// rec20
2769    SquareFoot,
2770    /// cubic foot
2771    ///
2772    /// rec20
2773    CubicFoot,
2774    /// pascal cubic metre per second
2775    ///
2776    /// rec20
2777    PascalCubicMetrePerSecond,
2778    /// centimetre per bar
2779    ///
2780    /// rec20
2781    CentimetrePerBar,
2782    /// metre per bar
2783    ///
2784    /// rec20
2785    MetrePerBar,
2786    /// millimetre per bar
2787    ///
2788    /// rec20
2789    MillimetrePerBar,
2790    /// square inch per second
2791    ///
2792    /// rec20
2793    SquareInchPerSecond,
2794    /// square metre per second kelvin
2795    ///
2796    /// rec20
2797    SquareMetrePerSecondKelvin,
2798    /// stokes per kelvin
2799    ///
2800    /// rec20
2801    StokesPerKelvin,
2802    /// gram per cubic centimetre bar
2803    ///
2804    /// rec20
2805    GramPerCubicCentimetreBar,
2806    /// gram per cubic decimetre bar
2807    ///
2808    /// rec20
2809    GramPerCubicDecimetreBar,
2810    /// gram per litre bar
2811    ///
2812    /// rec20
2813    GramPerLitreBar,
2814    /// gram per cubic metre bar
2815    ///
2816    /// rec20
2817    GramPerCubicMetreBar,
2818    /// gram per millilitre bar
2819    ///
2820    /// rec20
2821    GramPerMillilitreBar,
2822    /// kilogram per cubic centimetre bar
2823    ///
2824    /// rec20
2825    KilogramPerCubicCentimetreBar,
2826    /// kilogram per litre bar
2827    ///
2828    /// rec20
2829    KilogramPerLitreBar,
2830    /// kilogram per cubic metre bar
2831    ///
2832    /// rec20
2833    KilogramPerCubicMetreBar,
2834    /// newton metre per kilogram
2835    ///
2836    /// rec20
2837    NewtonMetrePerKilogram,
2838    /// US gallon per minute
2839    ///
2840    /// rec20
2841    UsGallonPerMinute,
2842    /// pound-force foot per pound
2843    ///
2844    /// rec20
2845    PoundForceFootPerPound,
2846    /// cup [unit of volume]
2847    ///
2848    /// rec20
2849    CupUnitVolume,
2850    /// peck
2851    ///
2852    /// rec20
2853    Peck,
2854    /// tablespoon (US)
2855    ///
2856    /// rec20
2857    TablespoonUs,
2858    /// teaspoon (US)
2859    ///
2860    /// rec20
2861    TeaspoonUs,
2862    /// stere
2863    ///
2864    /// rec20
2865    Stere,
2866    /// cubic centimetre per kelvin
2867    ///
2868    /// rec20
2869    CubicCentimetrePerKelvin,
2870    /// litre per kelvin
2871    ///
2872    /// rec20
2873    LitrePerKelvin,
2874    /// cubic metre per kelvin
2875    ///
2876    /// rec20
2877    CubicMetrePerKelvin,
2878    /// Imperial gallon per minute
2879    ///
2880    /// rec20
2881    ImperialGallonPerMinute,
2882    /// millilitre per kelvin
2883    ///
2884    /// rec20
2885    MillilitrePerKelvin,
2886    /// kilogram per cubic centimetre
2887    ///
2888    /// rec20
2889    KilogramPerCubicCentimetre,
2890    /// ounce (avoirdupois) per cubic yard
2891    ///
2892    /// rec20
2893    OunceAvoirdupoisPerCubicYard,
2894    /// gram per cubic centimetre kelvin
2895    ///
2896    /// rec20
2897    GramPerCubicCentimetreKelvin,
2898    /// gram per cubic decimetre kelvin
2899    ///
2900    /// rec20
2901    GramPerCubicDecimetreKelvin,
2902    /// gram per litre kelvin
2903    ///
2904    /// rec20
2905    GramPerLitreKelvin,
2906    /// gram per cubic metre kelvin
2907    ///
2908    /// rec20
2909    GramPerCubicMetreKelvin,
2910    /// gram per millilitre kelvin
2911    ///
2912    /// rec20
2913    GramPerMillilitreKelvin,
2914    /// kilogram per cubic centimetre kelvin
2915    ///
2916    /// rec20
2917    KilogramPerCubicCentimetreKelvin,
2918    /// kilogram per litre kelvin
2919    ///
2920    /// rec20
2921    KilogramPerLitreKelvin,
2922    /// kilogram per cubic metre kelvin
2923    ///
2924    /// rec20
2925    KilogramPerCubicMetreKelvin,
2926    /// square metre per second bar
2927    ///
2928    /// rec20
2929    SquareMetrePerSecondBar,
2930    /// microsiemens per centimetre
2931    ///
2932    /// rec20
2933    MicrosiemensPerCentimetre,
2934    /// microsiemens per metre
2935    ///
2936    /// rec20
2937    MicrosiemensPerMetre,
2938    /// nanosiemens per centimetre
2939    ///
2940    /// rec20
2941    NanosiemensPerCentimetre,
2942    /// nanosiemens per metre
2943    ///
2944    /// rec20
2945    NanosiemensPerMetre,
2946    /// stokes per bar
2947    ///
2948    /// rec20
2949    StokesPerBar,
2950    /// cubic centimetre per day
2951    ///
2952    /// rec20
2953    CubicCentimetrePerDay,
2954    /// cubic centimetre per hour
2955    ///
2956    /// rec20
2957    CubicCentimetrePerHour,
2958    /// cubic centimetre per minute
2959    ///
2960    /// rec20
2961    CubicCentimetrePerMinute,
2962    /// gallon (US) per hour
2963    ///
2964    /// rec20
2965    GallonUsPerHour,
2966    /// litre per second
2967    ///
2968    /// rec20
2969    LitrePerSecond,
2970    /// cubic metre per day
2971    ///
2972    /// rec20
2973    CubicMetrePerDay,
2974    /// cubic metre per minute
2975    ///
2976    /// rec20
2977    CubicMetrePerMinute,
2978    /// millilitre per day
2979    ///
2980    /// rec20
2981    MillilitrePerDay,
2982    /// millilitre per hour
2983    ///
2984    /// rec20
2985    MillilitrePerHour,
2986    /// cubic inch per hour
2987    ///
2988    /// rec20
2989    CubicInchPerHour,
2990    /// cubic inch per minute
2991    ///
2992    /// rec20
2993    CubicInchPerMinute,
2994    /// cubic inch per second
2995    ///
2996    /// rec20
2997    CubicInchPerSecond,
2998    /// milliampere per litre minute
2999    ///
3000    /// rec20
3001    MilliamperePerLitreMinute,
3002    /// volt per bar
3003    ///
3004    /// rec20
3005    VoltPerBar,
3006    /// cubic centimetre per day kelvin
3007    ///
3008    /// rec20
3009    CubicCentimetrePerDayKelvin,
3010    /// cubic centimetre per hour kelvin
3011    ///
3012    /// rec20
3013    CubicCentimetrePerHourKelvin,
3014    /// cubic centimetre per minute kelvin
3015    ///
3016    /// rec20
3017    CubicCentimetrePerMinuteKelvin,
3018    /// cubic centimetre per second kelvin
3019    ///
3020    /// rec20
3021    CubicCentimetrePerSecondKelvin,
3022    /// litre per day kelvin
3023    ///
3024    /// rec20
3025    LitrePerDayKelvin,
3026    /// litre per hour kelvin
3027    ///
3028    /// rec20
3029    LitrePerHourKelvin,
3030    /// litre per minute kelvin
3031    ///
3032    /// rec20
3033    LitrePerMinuteKelvin,
3034    /// litre per second kelvin
3035    ///
3036    /// rec20
3037    LitrePerSecondKelvin,
3038    /// cubic metre per day kelvin
3039    ///
3040    /// rec20
3041    CubicMetrePerDayKelvin,
3042    /// cubic metre per hour kelvin
3043    ///
3044    /// rec20
3045    CubicMetrePerHourKelvin,
3046    /// cubic metre per minute kelvin
3047    ///
3048    /// rec20
3049    CubicMetrePerMinuteKelvin,
3050    /// cubic metre per second kelvin
3051    ///
3052    /// rec20
3053    CubicMetrePerSecondKelvin,
3054    /// millilitre per day kelvin
3055    ///
3056    /// rec20
3057    MillilitrePerDayKelvin,
3058    /// millilitre per hour kelvin
3059    ///
3060    /// rec20
3061    MillilitrePerHourKelvin,
3062    /// millilitre per minute kelvin
3063    ///
3064    /// rec20
3065    MillilitrePerMinuteKelvin,
3066    /// millilitre per second kelvin
3067    ///
3068    /// rec20
3069    MillilitrePerSecondKelvin,
3070    /// millimetre to the fourth power
3071    ///
3072    /// rec20
3073    MillimetreToFourthPower,
3074    /// cubic centimetre per day bar
3075    ///
3076    /// rec20
3077    CubicCentimetrePerDayBar,
3078    /// cubic centimetre per hour bar
3079    ///
3080    /// rec20
3081    CubicCentimetrePerHourBar,
3082    /// cubic centimetre per minute bar
3083    ///
3084    /// rec20
3085    CubicCentimetrePerMinuteBar,
3086    /// cubic centimetre per second bar
3087    ///
3088    /// rec20
3089    CubicCentimetrePerSecondBar,
3090    /// litre per day bar
3091    ///
3092    /// rec20
3093    LitrePerDayBar,
3094    /// litre per hour bar
3095    ///
3096    /// rec20
3097    LitrePerHourBar,
3098    /// litre per minute bar
3099    ///
3100    /// rec20
3101    LitrePerMinuteBar,
3102    /// litre per second bar
3103    ///
3104    /// rec20
3105    LitrePerSecondBar,
3106    /// cubic metre per day bar
3107    ///
3108    /// rec20
3109    CubicMetrePerDayBar,
3110    /// cubic metre per hour bar
3111    ///
3112    /// rec20
3113    CubicMetrePerHourBar,
3114    /// cubic metre per minute bar
3115    ///
3116    /// rec20
3117    CubicMetrePerMinuteBar,
3118    /// cubic metre per second bar
3119    ///
3120    /// rec20
3121    CubicMetrePerSecondBar,
3122    /// millilitre per day bar
3123    ///
3124    /// rec20
3125    MillilitrePerDayBar,
3126    /// millilitre per hour bar
3127    ///
3128    /// rec20
3129    MillilitrePerHourBar,
3130    /// millilitre per minute bar
3131    ///
3132    /// rec20
3133    MillilitrePerMinuteBar,
3134    /// millilitre per second bar
3135    ///
3136    /// rec20
3137    MillilitrePerSecondBar,
3138    /// cubic centimetre per bar
3139    ///
3140    /// rec20
3141    CubicCentimetrePerBar,
3142    /// litre per bar
3143    ///
3144    /// rec20
3145    LitrePerBar,
3146    /// cubic metre per bar
3147    ///
3148    /// rec20
3149    CubicMetrePerBar,
3150    /// millilitre per bar
3151    ///
3152    /// rec20
3153    MillilitrePerBar,
3154    /// microhenry per kiloohm
3155    ///
3156    /// rec20
3157    MicrohenryPerKiloohm,
3158    /// microhenry per ohm
3159    ///
3160    /// rec20
3161    MicrohenryPerOhm,
3162    /// gallon (US) per day
3163    ///
3164    /// rec20
3165    GallonUsPerDay,
3166    /// gigabecquerel
3167    ///
3168    /// rec20
3169    Gigabecquerel,
3170    /// gram, dry weight
3171    ///
3172    /// rec20
3173    GramDryWeight,
3174    /// pound per gallon (US)
3175    ///
3176    /// rec20
3177    PoundPerGallonUs,
3178    /// gram per metre (gram per 100 centimetres)
3179    ///
3180    /// rec20
3181    GramPerMetreGramPer100Centimetres,
3182    /// gram of fissile isotope
3183    ///
3184    /// rec20
3185    GramFissileIsotope,
3186    /// great gross
3187    ///
3188    /// rec20
3189    GreatGross,
3190    /// gill (US)
3191    ///
3192    /// rec20
3193    GillUs,
3194    /// gram, including container
3195    ///
3196    /// rec20
3197    GramIncludingContainer,
3198    /// gill (UK)
3199    ///
3200    /// rec20
3201    GillUk,
3202    /// gram, including inner packaging
3203    ///
3204    /// rec20
3205    GramIncludingInnerPackaging,
3206    /// gram per millilitre
3207    ///
3208    /// rec20
3209    GramPerMillilitre,
3210    /// gram per litre
3211    ///
3212    /// rec20
3213    GramPerLitre,
3214    /// dry gallon (US)
3215    ///
3216    /// rec20
3217    DryGallonUs,
3218    /// gallon (UK)
3219    ///
3220    /// rec20
3221    GallonUk,
3222    /// gallon (US)
3223    ///
3224    /// rec20
3225    GallonUs,
3226    /// gram per square metre
3227    ///
3228    /// rec20
3229    GramPerSquareMetre,
3230    /// milligram per square metre
3231    ///
3232    /// rec20
3233    MilligramPerSquareMetre,
3234    /// milligram per cubic metre
3235    ///
3236    /// rec20
3237    MilligramPerCubicMetre,
3238    /// microgram per cubic metre
3239    ///
3240    /// rec20
3241    MicrogramPerCubicMetre,
3242    /// gram
3243    ///
3244    /// rec20
3245    Gram,
3246    /// grain
3247    ///
3248    /// rec20
3249    Grain,
3250    /// gross
3251    ///
3252    /// rec20
3253    Gross,
3254    /// gigajoule
3255    ///
3256    /// rec20
3257    Gigajoule,
3258    /// gigawatt hour
3259    ///
3260    /// rec20
3261    GigawattHour,
3262    /// henry per kiloohm
3263    ///
3264    /// rec20
3265    HenryPerKiloohm,
3266    /// henry per ohm
3267    ///
3268    /// rec20
3269    HenryPerOhm,
3270    /// millihenry per kiloohm
3271    ///
3272    /// rec20
3273    MillihenryPerKiloohm,
3274    /// millihenry per ohm
3275    ///
3276    /// rec20
3277    MillihenryPerOhm,
3278    /// pascal second per bar
3279    ///
3280    /// rec20
3281    PascalSecondPerBar,
3282    /// microbecquerel
3283    ///
3284    /// rec20
3285    Microbecquerel,
3286    /// reciprocal year
3287    ///
3288    /// rec20
3289    ReciprocalYear,
3290    /// reciprocal hour
3291    ///
3292    /// rec20
3293    ReciprocalHour,
3294    /// reciprocal month
3295    ///
3296    /// rec20
3297    ReciprocalMonth,
3298    /// degree Celsius per hour
3299    ///
3300    /// rec20
3301    DegreeCelsiusPerHour,
3302    /// degree Celsius per minute
3303    ///
3304    /// rec20
3305    DegreeCelsiusPerMinute,
3306    /// degree Celsius per second
3307    ///
3308    /// rec20
3309    DegreeCelsiusPerSecond,
3310    /// square centimetre per gram
3311    ///
3312    /// rec20
3313    SquareCentimetrePerGram,
3314    /// square decametre
3315    ///
3316    /// rec20
3317    SquareDecametre,
3318    /// square hectometre
3319    ///
3320    /// rec20
3321    SquareHectometre,
3322    /// cubic hectometre
3323    ///
3324    /// rec20
3325    CubicHectometre,
3326    /// cubic kilometre
3327    ///
3328    /// rec20
3329    CubicKilometre,
3330    /// blank
3331    ///
3332    /// rec20
3333    Blank,
3334    /// volt square inch per pound-force
3335    ///
3336    /// rec20
3337    VoltSquareInchPerPoundForce,
3338    /// volt per inch
3339    ///
3340    /// rec20
3341    VoltPerInch,
3342    /// volt per microsecond
3343    ///
3344    /// rec20
3345    VoltPerMicrosecond,
3346    /// percent per kelvin
3347    ///
3348    /// rec20
3349    PercentPerKelvin,
3350    /// ohm per metre
3351    ///
3352    /// rec20
3353    OhmPerMetre,
3354    /// degree per metre
3355    ///
3356    /// rec20
3357    DegreePerMetre,
3358    /// microfarad per kilometre
3359    ///
3360    /// rec20
3361    MicrofaradPerKilometre,
3362    /// microgram per litre
3363    ///
3364    /// rec20
3365    MicrogramPerLitre,
3366    /// square micrometre (square micron)
3367    ///
3368    /// rec20
3369    SquareMicrometreSquareMicron,
3370    /// ampere per kilogram
3371    ///
3372    /// rec20
3373    AmperePerKilogram,
3374    /// ampere squared second
3375    ///
3376    /// rec20
3377    AmpereSquaredSecond,
3378    /// farad per kilometre
3379    ///
3380    /// rec20
3381    FaradPerKilometre,
3382    /// hertz metre
3383    ///
3384    /// rec20
3385    HertzMetre,
3386    /// kelvin metre per watt
3387    ///
3388    /// rec20
3389    KelvinMetrePerWatt,
3390    /// megaohm per kilometre
3391    ///
3392    /// rec20
3393    MegaohmPerKilometre,
3394    /// megaohm per metre
3395    ///
3396    /// rec20
3397    MegaohmPerMetre,
3398    /// megaampere
3399    ///
3400    /// rec20
3401    Megaampere,
3402    /// megahertz kilometre
3403    ///
3404    /// rec20
3405    MegahertzKilometre,
3406    /// newton per ampere
3407    ///
3408    /// rec20
3409    NewtonPerAmpere,
3410    /// newton metre watt to the power minus 0,5
3411    ///
3412    /// rec20
3413    NewtonMetreWattToPowerMinus05,
3414    /// pascal per metre
3415    ///
3416    /// rec20
3417    PascalPerMetre,
3418    /// siemens per centimetre
3419    ///
3420    /// rec20
3421    SiemensPerCentimetre,
3422    /// teraohm
3423    ///
3424    /// rec20
3425    Teraohm,
3426    /// volt second per metre
3427    ///
3428    /// rec20
3429    VoltSecondPerMetre,
3430    /// volt per second
3431    ///
3432    /// rec20
3433    VoltPerSecond,
3434    /// watt per cubic metre
3435    ///
3436    /// rec20
3437    WattPerCubicMetre,
3438    /// attofarad
3439    ///
3440    /// rec20
3441    Attofarad,
3442    /// centimetre per hour
3443    ///
3444    /// rec20
3445    CentimetrePerHour,
3446    /// reciprocal cubic centimetre
3447    ///
3448    /// rec20
3449    ReciprocalCubicCentimetre,
3450    /// decibel per kilometre
3451    ///
3452    /// rec20
3453    DecibelPerKilometre,
3454    /// decibel per metre
3455    ///
3456    /// rec20
3457    DecibelPerMetre,
3458    /// kilogram per bar
3459    ///
3460    /// rec20
3461    KilogramPerBar,
3462    /// kilogram per cubic decimetre kelvin
3463    ///
3464    /// rec20
3465    KilogramPerCubicDecimetreKelvin,
3466    /// kilogram per cubic decimetre bar
3467    ///
3468    /// rec20
3469    KilogramPerCubicDecimetreBar,
3470    /// kilogram per square metre second
3471    ///
3472    /// rec20
3473    KilogramPerSquareMetreSecond,
3474    /// inch per two pi radiant
3475    ///
3476    /// rec20
3477    InchPerTwoPiRadiant,
3478    /// metre per volt second
3479    ///
3480    /// rec20
3481    MetrePerVoltSecond,
3482    /// square metre per newton
3483    ///
3484    /// rec20
3485    SquareMetrePerNewton,
3486    /// cubic metre per cubic metre
3487    ///
3488    /// rec20
3489    CubicMetrePerCubicMetre,
3490    /// millisiemens per centimetre
3491    ///
3492    /// rec20
3493    MillisiemensPerCentimetre,
3494    /// millivolt per minute
3495    ///
3496    /// rec20
3497    MillivoltPerMinute,
3498    /// milligram per square centimetre
3499    ///
3500    /// rec20
3501    MilligramPerSquareCentimetre,
3502    /// milligram per gram
3503    ///
3504    /// rec20
3505    MilligramPerGram,
3506    /// millilitre per cubic metre
3507    ///
3508    /// rec20
3509    MillilitrePerCubicMetre,
3510    /// millimetre per year
3511    ///
3512    /// rec20
3513    MillimetrePerYear,
3514    /// millimetre per hour
3515    ///
3516    /// rec20
3517    MillimetrePerHour,
3518    /// millimole per gram
3519    ///
3520    /// rec20
3521    MillimolePerGram,
3522    /// picopascal per kilometre
3523    ///
3524    /// rec20
3525    PicopascalPerKilometre,
3526    /// picosecond
3527    ///
3528    /// rec20
3529    Picosecond,
3530    /// percent per month
3531    ///
3532    /// rec20
3533    PercentPerMonth,
3534    /// percent per hectobar
3535    ///
3536    /// rec20
3537    PercentPerHectobar,
3538    /// percent per decakelvin
3539    ///
3540    /// rec20
3541    PercentPerDecakelvin,
3542    /// watt per metre
3543    ///
3544    /// rec20
3545    WattPerMetre,
3546    /// decapascal
3547    ///
3548    /// rec20
3549    Decapascal,
3550    /// gram per millimetre
3551    ///
3552    /// rec20
3553    GramPerMillimetre,
3554    /// module width
3555    ///
3556    /// rec20
3557    ModuleWidth,
3558    /// French gauge
3559    ///
3560    /// rec20
3561    FrenchGauge,
3562    /// rack unit
3563    ///
3564    /// rec20
3565    RackUnit,
3566    /// millimetre per minute
3567    ///
3568    /// rec20
3569    MillimetrePerMinute,
3570    /// big point
3571    ///
3572    /// rec20
3573    BigPoint,
3574    /// litre per kilogram
3575    ///
3576    /// rec20
3577    LitrePerKilogram,
3578    /// gram millimetre
3579    ///
3580    /// rec20
3581    GramMillimetre,
3582    /// reciprocal week
3583    ///
3584    /// rec20
3585    ReciprocalWeek,
3586    /// piece
3587    ///
3588    /// rec20
3589    Piece,
3590    /// megaohm kilometre
3591    ///
3592    /// rec20
3593    MegaohmKilometre,
3594    /// percent per ohm
3595    ///
3596    /// rec20
3597    PercentPerOhm,
3598    /// percent per degree
3599    ///
3600    /// rec20
3601    PercentPerDegree,
3602    /// percent per ten thousand
3603    ///
3604    /// rec20
3605    PercentPerTenThousand,
3606    /// percent per one hundred thousand
3607    ///
3608    /// rec20
3609    PercentPerOneHundredThousand,
3610    /// percent per hundred
3611    ///
3612    /// rec20
3613    PercentPerHundred,
3614    /// percent per thousand
3615    ///
3616    /// rec20
3617    PercentPerThousand,
3618    /// percent per volt
3619    ///
3620    /// rec20
3621    PercentPerVolt,
3622    /// percent per bar
3623    ///
3624    /// rec20
3625    PercentPerBar,
3626    /// percent per inch
3627    ///
3628    /// rec20
3629    PercentPerInch,
3630    /// percent per metre
3631    ///
3632    /// rec20
3633    PercentPerMetre,
3634    /// hank
3635    ///
3636    /// rec20
3637    Hank,
3638    /// Piece Day
3639    ///
3640    /// Rec20
3641    PieceDay,
3642    /// hectobar
3643    ///
3644    /// rec20
3645    Hectobar,
3646    /// hundred boxes
3647    ///
3648    /// rec20
3649    HundredBoxes,
3650    /// hundred count
3651    ///
3652    /// rec20
3653    HundredCount,
3654    /// hundred kilogram, dry weight
3655    ///
3656    /// rec20
3657    HundredKilogramDryWeight,
3658    /// head
3659    ///
3660    /// rec20
3661    Head,
3662    /// hectogram
3663    ///
3664    /// rec20
3665    Hectogram,
3666    /// hundred cubic foot
3667    ///
3668    /// rec20
3669    HundredCubicFoot,
3670    /// hundred international unit
3671    ///
3672    /// rec20
3673    HundredInternationalUnit,
3674    /// hundred kilogram, net mass
3675    ///
3676    /// rec20
3677    HundredKilogramNetMass,
3678    /// hectolitre
3679    ///
3680    /// rec20
3681    Hectolitre,
3682    /// mile per hour (statute mile)
3683    ///
3684    /// rec20
3685    MilePerHourStatuteMile,
3686    /// Piece Month
3687    ///
3688    /// Rec20
3689    PieceMonth,
3690    /// million cubic metre
3691    ///
3692    /// rec20
3693    MillionCubicMetre,
3694    /// hectometre
3695    ///
3696    /// rec20
3697    Hectometre,
3698    /// hectolitre of pure alcohol
3699    ///
3700    /// rec20
3701    HectolitrePureAlcohol,
3702    /// hertz
3703    ///
3704    /// rec20
3705    Hertz,
3706    /// hour
3707    ///
3708    /// rec20
3709    Hour,
3710    /// Piece Week
3711    ///
3712    /// Rec20
3713    PieceWeek,
3714    /// inch pound (pound inch)
3715    ///
3716    /// rec20
3717    InchPoundPoundInch,
3718    /// person
3719    ///
3720    /// rec20
3721    Person,
3722    /// inch
3723    ///
3724    /// rec20
3725    Inch,
3726    /// square inch
3727    ///
3728    /// rec20
3729    SquareInch,
3730    /// cubic inch
3731    ///
3732    /// rec20
3733    CubicInch,
3734    /// international sugar degree
3735    ///
3736    /// rec20
3737    InternationalSugarDegree,
3738    /// inch per second
3739    ///
3740    /// rec20
3741    InchPerSecond,
3742    /// international unit per gram
3743    ///
3744    /// rec20
3745    InternationalUnitPerGram,
3746    /// inch per second squared
3747    ///
3748    /// rec20
3749    InchPerSecondSquared,
3750    /// percent per millimetre
3751    ///
3752    /// rec20
3753    PercentPerMillimetre,
3754    /// per mille per psi
3755    ///
3756    /// rec20
3757    PerMillePerPsi,
3758    /// degree API
3759    ///
3760    /// rec20
3761    DegreeApi,
3762    /// degree Baume (origin scale)
3763    ///
3764    /// rec20
3765    DegreeBaumeOriginScale,
3766    /// degree Baume (US heavy)
3767    ///
3768    /// rec20
3769    DegreeBaumeUsHeavy,
3770    /// degree Baume (US light)
3771    ///
3772    /// rec20
3773    DegreeBaumeUsLight,
3774    /// degree Balling
3775    ///
3776    /// rec20
3777    DegreeBalling,
3778    /// degree Brix
3779    ///
3780    /// rec20
3781    DegreeBrix,
3782    /// degree Fahrenheit hour square foot per British thermal unit (thermochemical)
3783    ///
3784    /// rec20
3785    DegreeFahrenheitHourSquareFootPerBritishThermalUnitThermochemical,
3786    /// joule per kilogram
3787    ///
3788    /// rec20
3789    JoulePerKilogram,
3790    /// degree Fahrenheit per kelvin
3791    ///
3792    /// rec20
3793    DegreeFahrenheitPerKelvin,
3794    /// degree Fahrenheit per bar
3795    ///
3796    /// rec20
3797    DegreeFahrenheitPerBar,
3798    /// degree Fahrenheit hour square foot per British thermal unit (international table)
3799    ///
3800    /// rec20
3801    DegreeFahrenheitHourSquareFootPerBritishThermalUnitInternationalTable,
3802    /// degree Fahrenheit per hour
3803    ///
3804    /// rec20
3805    DegreeFahrenheitPerHour,
3806    /// degree Fahrenheit per minute
3807    ///
3808    /// rec20
3809    DegreeFahrenheitPerMinute,
3810    /// degree Fahrenheit per second
3811    ///
3812    /// rec20
3813    DegreeFahrenheitPerSecond,
3814    /// reciprocal degree Fahrenheit
3815    ///
3816    /// rec20
3817    ReciprocalDegreeFahrenheit,
3818    /// degree Oechsle
3819    ///
3820    /// rec20
3821    DegreeOechsle,
3822    /// degree Rankine per hour
3823    ///
3824    /// rec20
3825    DegreeRankinePerHour,
3826    /// degree Rankine per minute
3827    ///
3828    /// rec20
3829    DegreeRankinePerMinute,
3830    /// degree Rankine per second
3831    ///
3832    /// rec20
3833    DegreeRankinePerSecond,
3834    /// degree Twaddell
3835    ///
3836    /// rec20
3837    DegreeTwaddell,
3838    /// micropoise
3839    ///
3840    /// rec20
3841    Micropoise,
3842    /// microgram per kilogram
3843    ///
3844    /// rec20
3845    MicrogramPerKilogram,
3846    /// microgram per cubic metre kelvin
3847    ///
3848    /// rec20
3849    MicrogramPerCubicMetreKelvin,
3850    /// microgram per cubic metre bar
3851    ///
3852    /// rec20
3853    MicrogramPerCubicMetreBar,
3854    /// microlitre per litre
3855    ///
3856    /// rec20
3857    MicrolitrePerLitre,
3858    /// baud
3859    ///
3860    /// rec20
3861    Baud,
3862    /// British thermal unit (mean)
3863    ///
3864    /// rec20
3865    BritishThermalUnitMean,
3866    /// British thermal unit (international table) foot per hour square foot degree Fahrenheit
3867    ///
3868    /// rec20
3869    BritishThermalUnitInternationalTableFootPerHourSquareFootDegreeFahrenheit,
3870    /// British thermal unit (international table) inch per hour square foot degree Fahrenheit
3871    ///
3872    /// rec20
3873    BritishThermalUnitInternationalTableInchPerHourSquareFootDegreeFahrenheit,
3874    /// British thermal unit (international table) inch per second square foot degree Fahrenheit
3875    ///
3876    /// rec20
3877    BritishThermalUnitInternationalTableInchPerSecondSquareFootDegreeFahrenheit,
3878    /// British thermal unit (international table) per pound degree Fahrenheit
3879    ///
3880    /// rec20
3881    BritishThermalUnitInternationalTablePerPoundDegreeFahrenheit,
3882    /// British thermal unit (international table) per minute
3883    ///
3884    /// rec20
3885    BritishThermalUnitInternationalTablePerMinute,
3886    /// British thermal unit (international table) per second
3887    ///
3888    /// rec20
3889    BritishThermalUnitInternationalTablePerSecond,
3890    /// British thermal unit (thermochemical) foot per hour square foot degree Fahrenheit
3891    ///
3892    /// rec20
3893    BritishThermalUnitThermochemicalFootPerHourSquareFootDegreeFahrenheit,
3894    /// British thermal unit (thermochemical) per hour
3895    ///
3896    /// rec20
3897    BritishThermalUnitThermochemicalPerHour,
3898    /// British thermal unit (thermochemical) inch per hour square foot degree Fahrenheit
3899    ///
3900    /// rec20
3901    BritishThermalUnitThermochemicalInchPerHourSquareFootDegreeFahrenheit,
3902    /// British thermal unit (thermochemical) inch per second square foot degree Fahrenheit
3903    ///
3904    /// rec20
3905    BritishThermalUnitThermochemicalInchPerSecondSquareFootDegreeFahrenheit,
3906    /// British thermal unit (thermochemical) per pound degree Fahrenheit
3907    ///
3908    /// rec20
3909    BritishThermalUnitThermochemicalPerPoundDegreeFahrenheit,
3910    /// British thermal unit (thermochemical) per minute
3911    ///
3912    /// rec20
3913    BritishThermalUnitThermochemicalPerMinute,
3914    /// British thermal unit (thermochemical) per second
3915    ///
3916    /// rec20
3917    BritishThermalUnitThermochemicalPerSecond,
3918    /// coulomb square metre per kilogram
3919    ///
3920    /// rec20
3921    CoulombSquareMetrePerKilogram,
3922    /// megabaud
3923    ///
3924    /// rec20
3925    Megabaud,
3926    /// watt second
3927    ///
3928    /// rec20
3929    WattSecond,
3930    /// bar per bar
3931    ///
3932    /// rec20
3933    BarPerBar,
3934    /// barrel (UK petroleum)
3935    ///
3936    /// rec20
3937    BarrelUkPetroleum,
3938    /// barrel (UK petroleum) per minute
3939    ///
3940    /// rec20
3941    BarrelUkPetroleumPerMinute,
3942    /// barrel (UK petroleum) per day
3943    ///
3944    /// rec20
3945    BarrelUkPetroleumPerDay,
3946    /// barrel (UK petroleum) per hour
3947    ///
3948    /// rec20
3949    BarrelUkPetroleumPerHour,
3950    /// barrel (UK petroleum) per second
3951    ///
3952    /// rec20
3953    BarrelUkPetroleumPerSecond,
3954    /// barrel (US petroleum) per hour
3955    ///
3956    /// rec20
3957    BarrelUsPetroleumPerHour,
3958    /// barrel (US petroleum) per second
3959    ///
3960    /// rec20
3961    BarrelUsPetroleumPerSecond,
3962    /// bushel (UK) per day
3963    ///
3964    /// rec20
3965    BushelUkPerDay,
3966    /// bushel (UK) per hour
3967    ///
3968    /// rec20
3969    BushelUkPerHour,
3970    /// bushel (UK) per minute
3971    ///
3972    /// rec20
3973    BushelUkPerMinute,
3974    /// bushel (UK) per second
3975    ///
3976    /// rec20
3977    BushelUkPerSecond,
3978    /// bushel (US dry) per day
3979    ///
3980    /// rec20
3981    BushelUsDryPerDay,
3982    /// bushel (US dry) per hour
3983    ///
3984    /// rec20
3985    BushelUsDryPerHour,
3986    /// bushel (US dry) per minute
3987    ///
3988    /// rec20
3989    BushelUsDryPerMinute,
3990    /// bushel (US dry) per second
3991    ///
3992    /// rec20
3993    BushelUsDryPerSecond,
3994    /// centinewton metre
3995    ///
3996    /// rec20
3997    CentinewtonMetre,
3998    /// centipoise per kelvin
3999    ///
4000    /// rec20
4001    CentipoisePerKelvin,
4002    /// centipoise per bar
4003    ///
4004    /// rec20
4005    CentipoisePerBar,
4006    /// calorie (mean)
4007    ///
4008    /// rec20
4009    CalorieMean,
4010    /// calorie (international table) per gram degree Celsius
4011    ///
4012    /// rec20
4013    CalorieInternationalTablePerGramDegreeCelsius,
4014    /// calorie (thermochemical) per centimetre second degree Celsius
4015    ///
4016    /// rec20
4017    CalorieThermochemicalPerCentimetreSecondDegreeCelsius,
4018    /// calorie (thermochemical) per gram degree Celsius
4019    ///
4020    /// rec20
4021    CalorieThermochemicalPerGramDegreeCelsius,
4022    /// calorie (thermochemical) per minute
4023    ///
4024    /// rec20
4025    CalorieThermochemicalPerMinute,
4026    /// calorie (thermochemical) per second
4027    ///
4028    /// rec20
4029    CalorieThermochemicalPerSecond,
4030    /// clo
4031    ///
4032    /// rec20
4033    Clo,
4034    /// centimetre per second kelvin
4035    ///
4036    /// rec20
4037    CentimetrePerSecondKelvin,
4038    /// centimetre per second bar
4039    ///
4040    /// rec20
4041    CentimetrePerSecondBar,
4042    /// cubic centimetre per cubic metre
4043    ///
4044    /// rec20
4045    CubicCentimetrePerCubicMetre,
4046    /// cubic decimetre per day
4047    ///
4048    /// rec20
4049    CubicDecimetrePerDay,
4050    /// cubic decimetre per cubic metre
4051    ///
4052    /// rec20
4053    CubicDecimetrePerCubicMetre,
4054    /// cubic decimetre per minute
4055    ///
4056    /// rec20
4057    CubicDecimetrePerMinute,
4058    /// cubic decimetre per second
4059    ///
4060    /// rec20
4061    CubicDecimetrePerSecond,
4062    /// ounce (UK fluid) per day
4063    ///
4064    /// rec20
4065    OunceUkFluidPerDay,
4066    /// ounce (UK fluid) per hour
4067    ///
4068    /// rec20
4069    OunceUkFluidPerHour,
4070    /// ounce (UK fluid) per minute
4071    ///
4072    /// rec20
4073    OunceUkFluidPerMinute,
4074    /// ounce (UK fluid) per second
4075    ///
4076    /// rec20
4077    OunceUkFluidPerSecond,
4078    /// ounce (US fluid) per day
4079    ///
4080    /// rec20
4081    OunceUsFluidPerDay,
4082    /// joule per kelvin
4083    ///
4084    /// rec20
4085    JoulePerKelvin,
4086    /// megajoule per kilogram
4087    ///
4088    /// rec20
4089    MegajoulePerKilogram,
4090    /// megajoule per cubic metre
4091    ///
4092    /// rec20
4093    MegajoulePerCubicMetre,
4094    /// pipeline joint
4095    ///
4096    /// rec20
4097    PipelineJoint,
4098    /// joule
4099    ///
4100    /// rec20
4101    Joule,
4102    /// hundred metre
4103    ///
4104    /// rec20
4105    HundredMetre,
4106    /// number of jewels
4107    ///
4108    /// rec20
4109    NumberJewels,
4110    /// kilowatt demand
4111    ///
4112    /// rec20
4113    KilowattDemand,
4114    /// ounce (US fluid) per hour
4115    ///
4116    /// rec20
4117    OunceUsFluidPerHour,
4118    /// ounce (US fluid) per minute
4119    ///
4120    /// rec20
4121    OunceUsFluidPerMinute,
4122    /// ounce (US fluid) per second
4123    ///
4124    /// rec20
4125    OunceUsFluidPerSecond,
4126    /// foot per degree Fahrenheit
4127    ///
4128    /// rec20
4129    FootPerDegreeFahrenheit,
4130    /// foot per hour
4131    ///
4132    /// rec20
4133    FootPerHour,
4134    /// foot pound-force per hour
4135    ///
4136    /// rec20
4137    FootPoundForcePerHour,
4138    /// foot pound-force per minute
4139    ///
4140    /// rec20
4141    FootPoundForcePerMinute,
4142    /// foot per psi
4143    ///
4144    /// rec20
4145    FootPerPsi,
4146    /// foot per second degree Fahrenheit
4147    ///
4148    /// rec20
4149    FootPerSecondDegreeFahrenheit,
4150    /// foot per second psi
4151    ///
4152    /// rec20
4153    FootPerSecondPsi,
4154    /// kilovolt ampere reactive demand
4155    ///
4156    /// rec20
4157    KilovoltAmpereReactiveDemand,
4158    /// reciprocal cubic foot
4159    ///
4160    /// rec20
4161    ReciprocalCubicFoot,
4162    /// cubic foot per degree Fahrenheit
4163    ///
4164    /// rec20
4165    CubicFootPerDegreeFahrenheit,
4166    /// cubic foot per day
4167    ///
4168    /// rec20
4169    CubicFootPerDay,
4170    /// cubic foot per psi
4171    ///
4172    /// rec20
4173    CubicFootPerPsi,
4174    /// gallon (UK) per day
4175    ///
4176    /// rec20
4177    GallonUkPerDay,
4178    /// gallon (UK) per hour
4179    ///
4180    /// rec20
4181    GallonUkPerHour,
4182    /// gallon (UK) per second
4183    ///
4184    /// rec20
4185    GallonUkPerSecond,
4186    /// kilovolt ampere reactive hour
4187    ///
4188    /// rec20
4189    KilovoltAmpereReactiveHour,
4190    /// gallon (US liquid) per second
4191    ///
4192    /// rec20
4193    GallonUsLiquidPerSecond,
4194    /// gram-force per square centimetre
4195    ///
4196    /// rec20
4197    GramForcePerSquareCentimetre,
4198    /// gill (UK) per day
4199    ///
4200    /// rec20
4201    GillUkPerDay,
4202    /// gill (UK) per hour
4203    ///
4204    /// rec20
4205    GillUkPerHour,
4206    /// gill (UK) per minute
4207    ///
4208    /// rec20
4209    GillUkPerMinute,
4210    /// gill (UK) per second
4211    ///
4212    /// rec20
4213    GillUkPerSecond,
4214    /// gill (US) per day
4215    ///
4216    /// rec20
4217    GillUsPerDay,
4218    /// gill (US) per hour
4219    ///
4220    /// rec20
4221    GillUsPerHour,
4222    /// gill (US) per minute
4223    ///
4224    /// rec20
4225    GillUsPerMinute,
4226    /// gill (US) per second
4227    ///
4228    /// rec20
4229    GillUsPerSecond,
4230    /// standard acceleration of free fall
4231    ///
4232    /// rec20
4233    StandardAccelerationFreeFall,
4234    /// grain per gallon (US)
4235    ///
4236    /// rec20
4237    GrainPerGallonUs,
4238    /// horsepower (boiler)
4239    ///
4240    /// rec20
4241    HorsepowerBoiler,
4242    /// horsepower (electric)
4243    ///
4244    /// rec20
4245    HorsepowerElectric,
4246    /// inch per degree Fahrenheit
4247    ///
4248    /// rec20
4249    InchPerDegreeFahrenheit,
4250    /// inch per psi
4251    ///
4252    /// rec20
4253    InchPerPsi,
4254    /// inch per second degree Fahrenheit
4255    ///
4256    /// rec20
4257    InchPerSecondDegreeFahrenheit,
4258    /// inch per second psi
4259    ///
4260    /// rec20
4261    InchPerSecondPsi,
4262    /// reciprocal cubic inch
4263    ///
4264    /// rec20
4265    ReciprocalCubicInch,
4266    /// kilobaud
4267    ///
4268    /// rec20
4269    Kilobaud,
4270    /// kilocalorie (mean)
4271    ///
4272    /// rec20
4273    KilocalorieMean,
4274    /// kilocalorie (international table) per hour metre degree Celsius
4275    ///
4276    /// rec20
4277    KilocalorieInternationalTablePerHourMetreDegreeCelsius,
4278    /// kilocalorie (thermochemical)
4279    ///
4280    /// rec20
4281    KilocalorieThermochemical,
4282    /// kilocalorie (thermochemical) per minute
4283    ///
4284    /// rec20
4285    KilocalorieThermochemicalPerMinute,
4286    /// kilocalorie (thermochemical) per second
4287    ///
4288    /// rec20
4289    KilocalorieThermochemicalPerSecond,
4290    /// kilomole per hour
4291    ///
4292    /// rec20
4293    KilomolePerHour,
4294    /// kilomole per cubic metre kelvin
4295    ///
4296    /// rec20
4297    KilomolePerCubicMetreKelvin,
4298    /// kilolitre
4299    ///
4300    /// rec20
4301    Kilolitre,
4302    /// kilomole per cubic metre bar
4303    ///
4304    /// rec20
4305    KilomolePerCubicMetreBar,
4306    /// kilomole per minute
4307    ///
4308    /// rec20
4309    KilomolePerMinute,
4310    /// litre per litre
4311    ///
4312    /// rec20
4313    LitrePerLitre,
4314    /// reciprocal litre
4315    ///
4316    /// rec20
4317    ReciprocalLitre,
4318    /// pound (avoirdupois) per degree Fahrenheit
4319    ///
4320    /// rec20
4321    PoundAvoirdupoisPerDegreeFahrenheit,
4322    /// pound (avoirdupois) square foot
4323    ///
4324    /// rec20
4325    PoundAvoirdupoisSquareFoot,
4326    /// pound (avoirdupois) per day
4327    ///
4328    /// rec20
4329    PoundAvoirdupoisPerDay,
4330    /// pound per foot hour
4331    ///
4332    /// rec20
4333    PoundPerFootHour,
4334    /// pound per foot second
4335    ///
4336    /// rec20
4337    PoundPerFootSecond,
4338    /// pound (avoirdupois) per cubic foot degree Fahrenheit
4339    ///
4340    /// rec20
4341    PoundAvoirdupoisPerCubicFootDegreeFahrenheit,
4342    /// pound (avoirdupois) per cubic foot psi
4343    ///
4344    /// rec20
4345    PoundAvoirdupoisPerCubicFootPsi,
4346    /// pound (avoirdupois) per gallon (UK)
4347    ///
4348    /// rec20
4349    PoundAvoirdupoisPerGallonUk,
4350    /// pound (avoirdupois) per hour degree Fahrenheit
4351    ///
4352    /// rec20
4353    PoundAvoirdupoisPerHourDegreeFahrenheit,
4354    /// pound (avoirdupois) per hour psi
4355    ///
4356    /// rec20
4357    PoundAvoirdupoisPerHourPsi,
4358    /// pound (avoirdupois) per cubic inch degree Fahrenheit
4359    ///
4360    /// rec20
4361    PoundAvoirdupoisPerCubicInchDegreeFahrenheit,
4362    /// pound (avoirdupois) per cubic inch psi
4363    ///
4364    /// rec20
4365    PoundAvoirdupoisPerCubicInchPsi,
4366    /// pound (avoirdupois) per psi
4367    ///
4368    /// rec20
4369    PoundAvoirdupoisPerPsi,
4370    /// pound (avoirdupois) per minute
4371    ///
4372    /// rec20
4373    PoundAvoirdupoisPerMinute,
4374    /// pound (avoirdupois) per minute degree Fahrenheit
4375    ///
4376    /// rec20
4377    PoundAvoirdupoisPerMinuteDegreeFahrenheit,
4378    /// pound (avoirdupois) per minute psi
4379    ///
4380    /// rec20
4381    PoundAvoirdupoisPerMinutePsi,
4382    /// pound (avoirdupois) per second
4383    ///
4384    /// rec20
4385    PoundAvoirdupoisPerSecond,
4386    /// pound (avoirdupois) per second degree Fahrenheit
4387    ///
4388    /// rec20
4389    PoundAvoirdupoisPerSecondDegreeFahrenheit,
4390    /// pound (avoirdupois) per second psi
4391    ///
4392    /// rec20
4393    PoundAvoirdupoisPerSecondPsi,
4394    /// pound per cubic yard
4395    ///
4396    /// rec20
4397    PoundPerCubicYard,
4398    /// pound-force per square foot
4399    ///
4400    /// rec20
4401    PoundForcePerSquareFoot,
4402    /// pound-force per square inch degree Fahrenheit
4403    ///
4404    /// rec20
4405    PoundForcePerSquareInchDegreeFahrenheit,
4406    /// psi cubic inch per second
4407    ///
4408    /// rec20
4409    PsiCubicInchPerSecond,
4410    /// psi litre per second
4411    ///
4412    /// rec20
4413    PsiLitrePerSecond,
4414    /// psi cubic metre per second
4415    ///
4416    /// rec20
4417    PsiCubicMetrePerSecond,
4418    /// psi cubic yard per second
4419    ///
4420    /// rec20
4421    PsiCubicYardPerSecond,
4422    /// pound-force second per square foot
4423    ///
4424    /// rec20
4425    PoundForceSecondPerSquareFoot,
4426    /// pound-force second per square inch
4427    ///
4428    /// rec20
4429    PoundForceSecondPerSquareInch,
4430    /// reciprocal psi
4431    ///
4432    /// rec20
4433    ReciprocalPsi,
4434    /// quart (UK liquid) per day
4435    ///
4436    /// rec20
4437    QuartUkLiquidPerDay,
4438    /// quart (UK liquid) per hour
4439    ///
4440    /// rec20
4441    QuartUkLiquidPerHour,
4442    /// quart (UK liquid) per minute
4443    ///
4444    /// rec20
4445    QuartUkLiquidPerMinute,
4446    /// quart (UK liquid) per second
4447    ///
4448    /// rec20
4449    QuartUkLiquidPerSecond,
4450    /// quart (US liquid) per day
4451    ///
4452    /// rec20
4453    QuartUsLiquidPerDay,
4454    /// quart (US liquid) per hour
4455    ///
4456    /// rec20
4457    QuartUsLiquidPerHour,
4458    /// cake
4459    ///
4460    /// rec20
4461    Cake,
4462    /// katal
4463    ///
4464    /// rec20
4465    Katal,
4466    /// kilocharacter
4467    ///
4468    /// rec20
4469    Kilocharacter,
4470    /// kilobar
4471    ///
4472    /// rec20
4473    Kilobar,
4474    /// kilogram of choline chloride
4475    ///
4476    /// rec20
4477    KilogramCholineChloride,
4478    /// kilogram drained net weight
4479    ///
4480    /// rec20
4481    KilogramDrainedNetWeight,
4482    /// kelvin
4483    ///
4484    /// rec20
4485    Kelvin,
4486    /// kilogram
4487    ///
4488    /// rec20
4489    Kilogram,
4490    /// kilogram per second
4491    ///
4492    /// rec20
4493    KilogramPerSecond,
4494    /// kilogram of hydrogen peroxide
4495    ///
4496    /// rec20
4497    KilogramHydrogenPeroxide,
4498    /// kilohertz
4499    ///
4500    /// rec20
4501    Kilohertz,
4502    /// kilogram per millimetre width
4503    ///
4504    /// rec20
4505    KilogramPerMillimetreWidth,
4506    /// kilogram, including container
4507    ///
4508    /// rec20
4509    KilogramIncludingContainer,
4510    /// kilogram, including inner packaging
4511    ///
4512    /// rec20
4513    KilogramIncludingInnerPackaging,
4514    /// kilosegment
4515    ///
4516    /// rec20
4517    Kilosegment,
4518    /// kilojoule
4519    ///
4520    /// rec20
4521    Kilojoule,
4522    /// kilogram per metre
4523    ///
4524    /// rec20
4525    KilogramPerMetre,
4526    /// lactic dry material percentage
4527    ///
4528    /// rec20
4529    LacticDryMaterialPercentage,
4530    /// kilolux
4531    ///
4532    /// rec20
4533    Kilolux,
4534    /// kilogram of methylamine
4535    ///
4536    /// rec20
4537    KilogramMethylamine,
4538    /// kilometre per hour
4539    ///
4540    /// rec20
4541    KilometrePerHour,
4542    /// square kilometre
4543    ///
4544    /// rec20
4545    SquareKilometre,
4546    /// kilogram per cubic metre
4547    ///
4548    /// rec20
4549    KilogramPerCubicMetre,
4550    /// kilometre
4551    ///
4552    /// rec20
4553    Kilometre,
4554    /// kilogram of nitrogen
4555    ///
4556    /// rec20
4557    KilogramNitrogen,
4558    /// kilonewton per square metre
4559    ///
4560    /// rec20
4561    KilonewtonPerSquareMetre,
4562    /// kilogram named substance
4563    ///
4564    /// rec20
4565    KilogramNamedSubstance,
4566    /// knot
4567    ///
4568    /// rec20
4569    Knot,
4570    /// milliequivalence caustic potash per gram of product
4571    ///
4572    /// rec20
4573    MilliequivalenceCausticPotashPerGramProduct,
4574    /// kilopascal
4575    ///
4576    /// rec20
4577    Kilopascal,
4578    /// kilogram of potassium hydroxide (caustic potash)
4579    ///
4580    /// rec20
4581    KilogramPotassiumHydroxideCausticPotash,
4582    /// kilogram of potassium oxide
4583    ///
4584    /// rec20
4585    KilogramPotassiumOxide,
4586    /// kilogram of phosphorus pentoxide (phosphoric anhydride)
4587    ///
4588    /// rec20
4589    KilogramPhosphorusPentoxidePhosphoricAnhydride,
4590    /// kiloroentgen
4591    ///
4592    /// rec20
4593    Kiloroentgen,
4594    /// kilogram of substance 90 % dry
4595    ///
4596    /// rec20
4597    KilogramSubstance90Dry,
4598    /// kilogram of sodium hydroxide (caustic soda)
4599    ///
4600    /// rec20
4601    KilogramSodiumHydroxideCausticSoda,
4602    /// kit
4603    ///
4604    /// rec20
4605    Kit,
4606    /// kilotonne
4607    ///
4608    /// rec20
4609    Kilotonne,
4610    /// kilogram of uranium
4611    ///
4612    /// rec20
4613    KilogramUranium,
4614    /// kilovolt - ampere
4615    ///
4616    /// rec20
4617    KilovoltAmpere,
4618    /// kilovar
4619    ///
4620    /// rec20
4621    Kilovar,
4622    /// kilovolt
4623    ///
4624    /// rec20
4625    Kilovolt,
4626    /// kilogram per millimetre
4627    ///
4628    /// rec20
4629    KilogramPerMillimetre,
4630    /// kilowatt hour
4631    ///
4632    /// rec20
4633    KilowattHour,
4634    /// Kilowatt hour per normalized cubic metre
4635    ///
4636    /// rec20
4637    KilowattHourPerNormalizedCubicMetre,
4638    /// kilogram of tungsten trioxide
4639    ///
4640    /// rec20
4641    KilogramTungstenTrioxide,
4642    /// Kilowatt hour per standard cubic metre
4643    ///
4644    /// rec20
4645    KilowattHourPerStandardCubicMetre,
4646    /// kilowatt
4647    ///
4648    /// rec20
4649    Kilowatt,
4650    /// kilowatt year
4651    ///
4652    /// Rec20
4653    KilowattYear,
4654    /// millilitre per kilogram
4655    ///
4656    /// rec20
4657    MillilitrePerKilogram,
4658    /// quart (US liquid) per minute
4659    ///
4660    /// rec20
4661    QuartUsLiquidPerMinute,
4662    /// quart (US liquid) per second
4663    ///
4664    /// rec20
4665    QuartUsLiquidPerSecond,
4666    /// metre per second kelvin
4667    ///
4668    /// rec20
4669    MetrePerSecondKelvin,
4670    /// metre per second bar
4671    ///
4672    /// rec20
4673    MetrePerSecondBar,
4674    /// square metre hour degree Celsius per kilocalorie (international table)
4675    ///
4676    /// rec20
4677    SquareMetreHourDegreeCelsiusPerKilocalorieInternationalTable,
4678    /// millipascal second per kelvin
4679    ///
4680    /// rec20
4681    MillipascalSecondPerKelvin,
4682    /// millipascal second per bar
4683    ///
4684    /// rec20
4685    MillipascalSecondPerBar,
4686    /// milligram per cubic metre kelvin
4687    ///
4688    /// rec20
4689    MilligramPerCubicMetreKelvin,
4690    /// milligram per cubic metre bar
4691    ///
4692    /// rec20
4693    MilligramPerCubicMetreBar,
4694    /// millilitre per litre
4695    ///
4696    /// rec20
4697    MillilitrePerLitre,
4698    /// litre per minute
4699    ///
4700    /// rec20
4701    LitrePerMinute,
4702    /// reciprocal cubic millimetre
4703    ///
4704    /// rec20
4705    ReciprocalCubicMillimetre,
4706    /// cubic millimetre per cubic metre
4707    ///
4708    /// rec20
4709    CubicMillimetrePerCubicMetre,
4710    /// mole per hour
4711    ///
4712    /// rec20
4713    MolePerHour,
4714    /// mole per kilogram kelvin
4715    ///
4716    /// rec20
4717    MolePerKilogramKelvin,
4718    /// mole per kilogram bar
4719    ///
4720    /// rec20
4721    MolePerKilogramBar,
4722    /// mole per litre kelvin
4723    ///
4724    /// rec20
4725    MolePerLitreKelvin,
4726    /// mole per litre bar
4727    ///
4728    /// rec20
4729    MolePerLitreBar,
4730    /// mole per cubic metre kelvin
4731    ///
4732    /// rec20
4733    MolePerCubicMetreKelvin,
4734    /// mole per cubic metre bar
4735    ///
4736    /// rec20
4737    MolePerCubicMetreBar,
4738    /// mole per minute
4739    ///
4740    /// rec20
4741    MolePerMinute,
4742    /// milliroentgen aequivalent men
4743    ///
4744    /// rec20
4745    MilliroentgenAequivalentMen,
4746    /// nanogram per kilogram
4747    ///
4748    /// rec20
4749    NanogramPerKilogram,
4750    /// ounce (avoirdupois) per day
4751    ///
4752    /// rec20
4753    OunceAvoirdupoisPerDay,
4754    /// ounce (avoirdupois) per hour
4755    ///
4756    /// rec20
4757    OunceAvoirdupoisPerHour,
4758    /// ounce (avoirdupois) per minute
4759    ///
4760    /// rec20
4761    OunceAvoirdupoisPerMinute,
4762    /// ounce (avoirdupois) per second
4763    ///
4764    /// rec20
4765    OunceAvoirdupoisPerSecond,
4766    /// ounce (avoirdupois) per gallon (UK)
4767    ///
4768    /// rec20
4769    OunceAvoirdupoisPerGallonUk,
4770    /// ounce (avoirdupois) per gallon (US)
4771    ///
4772    /// rec20
4773    OunceAvoirdupoisPerGallonUs,
4774    /// ounce (avoirdupois) per cubic inch
4775    ///
4776    /// rec20
4777    OunceAvoirdupoisPerCubicInch,
4778    /// ounce (avoirdupois)-force
4779    ///
4780    /// rec20
4781    OunceAvoirdupoisForce,
4782    /// ounce (avoirdupois)-force inch
4783    ///
4784    /// rec20
4785    OunceAvoirdupoisForceInch,
4786    /// picosiemens per metre
4787    ///
4788    /// rec20
4789    PicosiemensPerMetre,
4790    /// peck (UK)
4791    ///
4792    /// rec20
4793    PeckUk,
4794    /// peck (UK) per day
4795    ///
4796    /// rec20
4797    PeckUkPerDay,
4798    /// peck (UK) per hour
4799    ///
4800    /// rec20
4801    PeckUkPerHour,
4802    /// peck (UK) per minute
4803    ///
4804    /// rec20
4805    PeckUkPerMinute,
4806    /// peck (UK) per second
4807    ///
4808    /// rec20
4809    PeckUkPerSecond,
4810    /// peck (US dry) per day
4811    ///
4812    /// rec20
4813    PeckUsDryPerDay,
4814    /// peck (US dry) per hour
4815    ///
4816    /// rec20
4817    PeckUsDryPerHour,
4818    /// peck (US dry) per minute
4819    ///
4820    /// rec20
4821    PeckUsDryPerMinute,
4822    /// peck (US dry) per second
4823    ///
4824    /// rec20
4825    PeckUsDryPerSecond,
4826    /// psi per psi
4827    ///
4828    /// rec20
4829    PsiPerPsi,
4830    /// pint (UK) per day
4831    ///
4832    /// rec20
4833    PintUkPerDay,
4834    /// pint (UK) per hour
4835    ///
4836    /// rec20
4837    PintUkPerHour,
4838    /// pint (UK) per minute
4839    ///
4840    /// rec20
4841    PintUkPerMinute,
4842    /// pint (UK) per second
4843    ///
4844    /// rec20
4845    PintUkPerSecond,
4846    /// pint (US liquid) per day
4847    ///
4848    /// rec20
4849    PintUsLiquidPerDay,
4850    /// pint (US liquid) per hour
4851    ///
4852    /// rec20
4853    PintUsLiquidPerHour,
4854    /// pint (US liquid) per minute
4855    ///
4856    /// rec20
4857    PintUsLiquidPerMinute,
4858    /// pint (US liquid) per second
4859    ///
4860    /// rec20
4861    PintUsLiquidPerSecond,
4862    /// slug per day
4863    ///
4864    /// rec20
4865    SlugPerDay,
4866    /// slug per foot second
4867    ///
4868    /// rec20
4869    SlugPerFootSecond,
4870    /// slug per cubic foot
4871    ///
4872    /// rec20
4873    SlugPerCubicFoot,
4874    /// slug per hour
4875    ///
4876    /// rec20
4877    SlugPerHour,
4878    /// slug per minute
4879    ///
4880    /// rec20
4881    SlugPerMinute,
4882    /// slug per second
4883    ///
4884    /// rec20
4885    SlugPerSecond,
4886    /// tonne per kelvin
4887    ///
4888    /// rec20
4889    TonnePerKelvin,
4890    /// tonne per bar
4891    ///
4892    /// rec20
4893    TonnePerBar,
4894    /// tonne per day
4895    ///
4896    /// rec20
4897    TonnePerDay,
4898    /// tonne per day kelvin
4899    ///
4900    /// rec20
4901    TonnePerDayKelvin,
4902    /// tonne per day bar
4903    ///
4904    /// rec20
4905    TonnePerDayBar,
4906    /// tonne per hour kelvin
4907    ///
4908    /// rec20
4909    TonnePerHourKelvin,
4910    /// tonne per hour bar
4911    ///
4912    /// rec20
4913    TonnePerHourBar,
4914    /// tonne per cubic metre kelvin
4915    ///
4916    /// rec20
4917    TonnePerCubicMetreKelvin,
4918    /// tonne per cubic metre bar
4919    ///
4920    /// rec20
4921    TonnePerCubicMetreBar,
4922    /// tonne per minute
4923    ///
4924    /// rec20
4925    TonnePerMinute,
4926    /// tonne per minute kelvin
4927    ///
4928    /// rec20
4929    TonnePerMinuteKelvin,
4930    /// tonne per minute bar
4931    ///
4932    /// rec20
4933    TonnePerMinuteBar,
4934    /// tonne per second
4935    ///
4936    /// rec20
4937    TonnePerSecond,
4938    /// tonne per second kelvin
4939    ///
4940    /// rec20
4941    TonnePerSecondKelvin,
4942    /// tonne per second bar
4943    ///
4944    /// rec20
4945    TonnePerSecondBar,
4946    /// ton (UK shipping)
4947    ///
4948    /// rec20
4949    TonUkShipping,
4950    /// ton long per day
4951    ///
4952    /// rec20
4953    TonLongPerDay,
4954    /// ton (US shipping)
4955    ///
4956    /// rec20
4957    TonUsShipping,
4958    /// ton short per degree Fahrenheit
4959    ///
4960    /// rec20
4961    TonShortPerDegreeFahrenheit,
4962    /// ton short per day
4963    ///
4964    /// rec20
4965    TonShortPerDay,
4966    /// ton short per hour degree Fahrenheit
4967    ///
4968    /// rec20
4969    TonShortPerHourDegreeFahrenheit,
4970    /// ton short per hour psi
4971    ///
4972    /// rec20
4973    TonShortPerHourPsi,
4974    /// ton short per psi
4975    ///
4976    /// rec20
4977    TonShortPerPsi,
4978    /// ton (UK long) per cubic yard
4979    ///
4980    /// rec20
4981    TonUkLongPerCubicYard,
4982    /// ton (US short) per cubic yard
4983    ///
4984    /// rec20
4985    TonUsShortPerCubicYard,
4986    /// ton-force (US short)
4987    ///
4988    /// rec20
4989    TonForceUsShort,
4990    /// common year
4991    ///
4992    /// rec20
4993    CommonYear,
4994    /// sidereal year
4995    ///
4996    /// rec20
4997    SiderealYear,
4998    /// yard per degree Fahrenheit
4999    ///
5000    /// rec20
5001    YardPerDegreeFahrenheit,
5002    /// yard per psi
5003    ///
5004    /// rec20
5005    YardPerPsi,
5006    /// pound per cubic inch
5007    ///
5008    /// rec20
5009    PoundPerCubicInch,
5010    /// lactose excess percentage
5011    ///
5012    /// rec20
5013    LactoseExcessPercentage,
5014    /// pound
5015    ///
5016    /// rec20
5017    Pound,
5018    /// troy pound (US)
5019    ///
5020    /// rec20
5021    TroyPoundUs,
5022    /// litre per day
5023    ///
5024    /// rec20
5025    LitrePerDay,
5026    /// leaf
5027    ///
5028    /// rec20
5029    Leaf,
5030    /// linear foot
5031    ///
5032    /// rec20
5033    LinearFoot,
5034    /// labour hour
5035    ///
5036    /// rec20
5037    LabourHour,
5038    /// link
5039    ///
5040    /// rec20
5041    Link,
5042    /// linear metre
5043    ///
5044    /// rec20
5045    LinearMetre,
5046    /// length
5047    ///
5048    /// rec20
5049    Length,
5050    /// lot [unit of procurement]
5051    ///
5052    /// rec20
5053    LotUnitProcurement,
5054    /// liquid pound
5055    ///
5056    /// rec20
5057    LiquidPound,
5058    /// litre of pure alcohol
5059    ///
5060    /// rec20
5061    LitrePureAlcohol,
5062    /// layer
5063    ///
5064    /// rec20
5065    Layer,
5066    /// lump sum
5067    ///
5068    /// rec20
5069    LumpSum,
5070    /// ton (UK) or long ton (US)
5071    ///
5072    /// rec20
5073    TonUkOrLongTonUs,
5074    /// litre
5075    ///
5076    /// rec20
5077    Litre,
5078    /// metric ton, lubricating oil
5079    ///
5080    /// rec20
5081    MetricTonLubricatingOil,
5082    /// lumen
5083    ///
5084    /// rec20
5085    Lumen,
5086    /// lux
5087    ///
5088    /// rec20
5089    Lux,
5090    /// linear yard
5091    ///
5092    /// rec20
5093    LinearYard,
5094    /// milligram per litre
5095    ///
5096    /// rec20
5097    MilligramPerLitre,
5098    /// reciprocal cubic yard
5099    ///
5100    /// rec20
5101    ReciprocalCubicYard,
5102    /// cubic yard per degree Fahrenheit
5103    ///
5104    /// rec20
5105    CubicYardPerDegreeFahrenheit,
5106    /// cubic yard per day
5107    ///
5108    /// rec20
5109    CubicYardPerDay,
5110    /// cubic yard per hour
5111    ///
5112    /// rec20
5113    CubicYardPerHour,
5114    /// cubic yard per psi
5115    ///
5116    /// rec20
5117    CubicYardPerPsi,
5118    /// cubic yard per minute
5119    ///
5120    /// rec20
5121    CubicYardPerMinute,
5122    /// cubic yard per second
5123    ///
5124    /// rec20
5125    CubicYardPerSecond,
5126    /// kilohertz metre
5127    ///
5128    /// rec20
5129    KilohertzMetre,
5130    /// gigahertz metre
5131    ///
5132    /// rec20
5133    GigahertzMetre,
5134    /// Beaufort
5135    ///
5136    /// rec20
5137    Beaufort,
5138    /// reciprocal megakelvin or megakelvin to the power minus one
5139    ///
5140    /// rec20
5141    ReciprocalMegakelvinOrMegakelvinToPowerMinusOne,
5142    /// reciprocal kilovolt - ampere reciprocal hour
5143    ///
5144    /// rec20
5145    ReciprocalKilovoltAmpereReciprocalHour,
5146    /// millilitre per square centimetre minute
5147    ///
5148    /// rec20
5149    MillilitrePerSquareCentimetreMinute,
5150    /// newton per centimetre
5151    ///
5152    /// rec20
5153    NewtonPerCentimetre,
5154    /// ohm kilometre
5155    ///
5156    /// rec20
5157    OhmKilometre,
5158    /// percent per degree Celsius
5159    ///
5160    /// rec20
5161    PercentPerDegreeCelsius,
5162    /// gigaohm per metre
5163    ///
5164    /// rec20
5165    GigaohmPerMetre,
5166    /// megahertz metre
5167    ///
5168    /// rec20
5169    MegahertzMetre,
5170    /// kilogram per kilogram
5171    ///
5172    /// rec20
5173    KilogramPerKilogram,
5174    /// reciprocal volt - ampere reciprocal second
5175    ///
5176    /// rec20
5177    ReciprocalVoltAmpereReciprocalSecond,
5178    /// kilogram per kilometre
5179    ///
5180    /// rec20
5181    KilogramPerKilometre,
5182    /// pascal second per litre
5183    ///
5184    /// rec20
5185    PascalSecondPerLitre,
5186    /// millimole per litre
5187    ///
5188    /// rec20
5189    MillimolePerLitre,
5190    /// newton metre per square metre
5191    ///
5192    /// rec20
5193    NewtonMetrePerSquareMetre,
5194    /// millivolt - ampere
5195    ///
5196    /// rec20
5197    MillivoltAmpere,
5198    /// 30-day month
5199    ///
5200    /// rec20
5201    _30DayMonth,
5202    /// actual/360
5203    ///
5204    /// rec20
5205    Actual360,
5206    /// kilometre per second squared
5207    ///
5208    /// rec20
5209    KilometrePerSecondSquared,
5210    /// centimetre per second squared
5211    ///
5212    /// rec20
5213    CentimetrePerSecondSquared,
5214    /// monetary value
5215    ///
5216    /// rec20
5217    MonetaryValue,
5218    /// yard per second squared
5219    ///
5220    /// rec20
5221    YardPerSecondSquared,
5222    /// millimetre per second squared
5223    ///
5224    /// rec20
5225    MillimetrePerSecondSquared,
5226    /// mile (statute mile) per second squared
5227    ///
5228    /// rec20
5229    MileStatuteMilePerSecondSquared,
5230    /// mil
5231    ///
5232    /// rec20
5233    Mil,
5234    /// revolution
5235    ///
5236    /// rec20
5237    Revolution,
5238    /// degree [unit of angle] per second squared
5239    ///
5240    /// rec20
5241    DegreeUnitAnglePerSecondSquared,
5242    /// revolution per minute
5243    ///
5244    /// rec20
5245    RevolutionPerMinute,
5246    /// circular mil
5247    ///
5248    /// rec20
5249    CircularMil,
5250    /// square mile (based on U.S. survey foot)
5251    ///
5252    /// rec20
5253    SquareMileBasedOnUSSurveyFoot,
5254    /// chain (based on U.S. survey foot)
5255    ///
5256    /// rec20
5257    ChainBasedOnUSSurveyFoot,
5258    /// microcurie
5259    ///
5260    /// rec20
5261    Microcurie,
5262    /// furlong
5263    ///
5264    /// rec20
5265    Furlong,
5266    /// foot (U.S. survey)
5267    ///
5268    /// rec20
5269    FootUSSurvey,
5270    /// mile (based on U.S. survey foot)
5271    ///
5272    /// rec20
5273    MileBasedOnUSSurveyFoot,
5274    /// metre per pascal
5275    ///
5276    /// rec20
5277    MetrePerPascal,
5278    /// metre per radiant
5279    ///
5280    /// rec20
5281    MetrePerRadiant,
5282    /// shake
5283    ///
5284    /// rec20
5285    Shake,
5286    /// mile per minute
5287    ///
5288    /// rec20
5289    MilePerMinute,
5290    /// mile per second
5291    ///
5292    /// rec20
5293    MilePerSecond,
5294    /// metre per second pascal
5295    ///
5296    /// rec20
5297    MetrePerSecondPascal,
5298    /// metre per hour
5299    ///
5300    /// rec20
5301    MetrePerHour,
5302    /// inch per year
5303    ///
5304    /// rec20
5305    InchPerYear,
5306    /// kilometre per second
5307    ///
5308    /// rec20
5309    KilometrePerSecond,
5310    /// inch per minute
5311    ///
5312    /// rec20
5313    InchPerMinute,
5314    /// yard per second
5315    ///
5316    /// rec20
5317    YardPerSecond,
5318    /// yard per minute
5319    ///
5320    /// rec20
5321    YardPerMinute,
5322    /// yard per hour
5323    ///
5324    /// rec20
5325    YardPerHour,
5326    /// acre-foot (based on U.S. survey foot)
5327    ///
5328    /// rec20
5329    AcreFootBasedOnUSSurveyFoot,
5330    /// cord (128 ft3)
5331    ///
5332    /// rec20
5333    Cord128Ft3,
5334    /// cubic mile (UK statute)
5335    ///
5336    /// rec20
5337    CubicMileUkStatute,
5338    /// micro-inch
5339    ///
5340    /// rec20
5341    MicroInch,
5342    /// ton, register
5343    ///
5344    /// rec20
5345    TonRegister,
5346    /// cubic metre per pascal
5347    ///
5348    /// rec20
5349    CubicMetrePerPascal,
5350    /// bel
5351    ///
5352    /// rec20
5353    Bel,
5354    /// kilogram per cubic metre pascal
5355    ///
5356    /// rec20
5357    KilogramPerCubicMetrePascal,
5358    /// kilogram per pascal
5359    ///
5360    /// rec20
5361    KilogramPerPascal,
5362    /// kilopound-force
5363    ///
5364    /// rec20
5365    KilopoundForce,
5366    /// poundal
5367    ///
5368    /// rec20
5369    Poundal,
5370    /// kilogram metre per second squared
5371    ///
5372    /// rec20
5373    KilogramMetrePerSecondSquared,
5374    /// pond
5375    ///
5376    /// rec20
5377    Pond,
5378    /// square foot per hour
5379    ///
5380    /// rec20
5381    SquareFootPerHour,
5382    /// stokes per pascal
5383    ///
5384    /// rec20
5385    StokesPerPascal,
5386    /// square centimetre per second
5387    ///
5388    /// rec20
5389    SquareCentimetrePerSecond,
5390    /// square metre per second pascal
5391    ///
5392    /// rec20
5393    SquareMetrePerSecondPascal,
5394    /// denier
5395    ///
5396    /// rec20
5397    Denier_Dup,
5398    /// pound per yard
5399    ///
5400    /// rec20
5401    PoundPerYard,
5402    /// ton, assay
5403    ///
5404    /// rec20
5405    TonAssay,
5406    /// pfund
5407    ///
5408    /// rec20
5409    Pfund,
5410    /// kilogram per second pascal
5411    ///
5412    /// rec20
5413    KilogramPerSecondPascal,
5414    /// tonne per month
5415    ///
5416    /// rec20
5417    TonnePerMonth,
5418    /// tonne per year
5419    ///
5420    /// rec20
5421    TonnePerYear,
5422    /// million Btu per 1000 cubic foot
5423    ///
5424    /// rec20
5425    MillionBtuPer1000CubicFoot,
5426    /// kilopound per hour
5427    ///
5428    /// rec20
5429    KilopoundPerHour,
5430    /// pound per pound
5431    ///
5432    /// rec20
5433    PoundPerPound,
5434    /// pound-force foot
5435    ///
5436    /// rec20
5437    PoundForceFoot,
5438    /// newton metre per radian
5439    ///
5440    /// rec20
5441    NewtonMetrePerRadian,
5442    /// kilogram metre
5443    ///
5444    /// rec20
5445    KilogramMetre,
5446    /// poundal foot
5447    ///
5448    /// rec20
5449    PoundalFoot,
5450    /// poundal inch
5451    ///
5452    /// rec20
5453    PoundalInch,
5454    /// dyne metre
5455    ///
5456    /// rec20
5457    DyneMetre,
5458    /// kilogram centimetre per second
5459    ///
5460    /// rec20
5461    KilogramCentimetrePerSecond,
5462    /// gram centimetre per second
5463    ///
5464    /// rec20
5465    GramCentimetrePerSecond,
5466    /// megavolt ampere reactive hour
5467    ///
5468    /// rec20
5469    MegavoltAmpereReactiveHour,
5470    /// megalitre
5471    ///
5472    /// rec20
5473    Megalitre,
5474    /// megametre
5475    ///
5476    /// rec20
5477    Megametre,
5478    /// megavar
5479    ///
5480    /// rec20
5481    Megavar,
5482    /// megawatt
5483    ///
5484    /// rec20
5485    Megawatt,
5486    /// thousand standard brick equivalent
5487    ///
5488    /// rec20
5489    ThousandStandardBrickEquivalent,
5490    /// thousand board foot
5491    ///
5492    /// rec20
5493    ThousandBoardFoot,
5494    /// millibar
5495    ///
5496    /// rec20
5497    Millibar,
5498    /// microgram
5499    ///
5500    /// rec20
5501    Microgram,
5502    /// millicurie
5503    ///
5504    /// rec20
5505    Millicurie,
5506    /// air dry metric ton
5507    ///
5508    /// rec20
5509    AirDryMetricTon,
5510    /// milligram
5511    ///
5512    /// rec20
5513    Milligram,
5514    /// megahertz
5515    ///
5516    /// rec20
5517    Megahertz,
5518    /// square mile (statute mile)
5519    ///
5520    /// rec20
5521    SquareMileStatuteMile,
5522    /// thousand
5523    ///
5524    /// rec20
5525    Thousand,
5526    /// minute [unit of time]
5527    ///
5528    /// rec20
5529    MinuteUnitTime,
5530    /// million
5531    ///
5532    /// rec20
5533    Million,
5534    /// million international unit
5535    ///
5536    /// rec20
5537    MillionInternationalUnit,
5538    /// Square Metre Day
5539    ///
5540    /// Rec20
5541    SquareMetreDay,
5542    /// Square Metre Month
5543    ///
5544    /// Rec20
5545    SquareMetreMonth,
5546    /// Square Metre Week
5547    ///
5548    /// Rec20
5549    SquareMetreWeek,
5550    /// milliard
5551    ///
5552    /// rec20
5553    Milliard,
5554    /// millilitre
5555    ///
5556    /// rec20
5557    Millilitre,
5558    /// square millimetre
5559    ///
5560    /// rec20
5561    SquareMillimetre,
5562    /// cubic millimetre
5563    ///
5564    /// rec20
5565    CubicMillimetre,
5566    /// millimetre
5567    ///
5568    /// rec20
5569    Millimetre,
5570    /// kilogram, dry weight
5571    ///
5572    /// rec20
5573    KilogramDryWeight,
5574    /// Mega Joule per Normalised cubic Metre
5575    ///
5576    /// Rec20
5577    MegaJoulePerNormalisedCubicMetre,
5578    /// month
5579    ///
5580    /// rec20
5581    Month,
5582    /// megapascal
5583    ///
5584    /// rec20
5585    Megapascal,
5586    /// Cubic Metre Day
5587    ///
5588    /// Rec20
5589    CubicMetreDay,
5590    /// cubic metre per hour
5591    ///
5592    /// rec20
5593    CubicMetrePerHour,
5594    /// Cubic Metre Month
5595    ///
5596    /// Rec20
5597    CubicMetreMonth,
5598    /// cubic metre per second
5599    ///
5600    /// rec20
5601    CubicMetrePerSecond,
5602    /// Cubic Metre Week
5603    ///
5604    /// Rec20
5605    CubicMetreWeek,
5606    /// Metre Day
5607    ///
5608    /// Rec20
5609    MetreDay,
5610    /// Metre Month
5611    ///
5612    /// Rec20
5613    MetreMonth,
5614    /// Metre Week
5615    ///
5616    /// Rec20
5617    MetreWeek,
5618    /// metre per second squared
5619    ///
5620    /// rec20
5621    MetrePerSecondSquared,
5622    /// square metre
5623    ///
5624    /// rec20
5625    SquareMetre,
5626    /// cubic metre
5627    ///
5628    /// rec20
5629    CubicMetre,
5630    /// metre
5631    ///
5632    /// rec20
5633    Metre,
5634    /// metre per second
5635    ///
5636    /// rec20
5637    MetrePerSecond,
5638    /// milihertz
5639    ///
5640    /// Rec20
5641    Milihertz,
5642    /// megavolt - ampere
5643    ///
5644    /// rec20
5645    MegavoltAmpere,
5646    /// megawatt hour (1000 kW.h)
5647    ///
5648    /// rec20
5649    MegawattHour1000KwH,
5650    /// pen calorie
5651    ///
5652    /// rec20
5653    PenCalorie,
5654    /// pound foot per second
5655    ///
5656    /// rec20
5657    PoundFootPerSecond,
5658    /// pound inch per second
5659    ///
5660    /// rec20
5661    PoundInchPerSecond,
5662    /// Pferdestaerke
5663    ///
5664    /// rec20
5665    Pferdestaerke,
5666    /// centimetre of mercury (0 ºC)
5667    ///
5668    /// rec20
5669    CentimetreMercury0Oc,
5670    /// centimetre of water (4 ºC)
5671    ///
5672    /// rec20
5673    CentimetreWater4Oc,
5674    /// foot of water (39.2 ºF)
5675    ///
5676    /// rec20
5677    FootWater392Of,
5678    /// inch of mercury (32 ºF)
5679    ///
5680    /// rec20
5681    InchMercury32Of,
5682    /// inch of mercury (60 ºF)
5683    ///
5684    /// rec20
5685    InchMercury60Of,
5686    /// inch of water (39.2 ºF)
5687    ///
5688    /// rec20
5689    InchWater392Of,
5690    /// inch of water (60 ºF)
5691    ///
5692    /// rec20
5693    InchWater60Of,
5694    /// kip per square inch
5695    ///
5696    /// rec20
5697    KipPerSquareInch,
5698    /// poundal per square foot
5699    ///
5700    /// rec20
5701    PoundalPerSquareFoot,
5702    /// ounce (avoirdupois) per square inch
5703    ///
5704    /// rec20
5705    OunceAvoirdupoisPerSquareInch,
5706    /// conventional metre of water
5707    ///
5708    /// rec20
5709    ConventionalMetreWater,
5710    /// gram per square millimetre
5711    ///
5712    /// rec20
5713    GramPerSquareMillimetre,
5714    /// pound per square yard
5715    ///
5716    /// rec20
5717    PoundPerSquareYard,
5718    /// poundal per square inch
5719    ///
5720    /// rec20
5721    PoundalPerSquareInch,
5722    /// foot to the fourth power
5723    ///
5724    /// rec20
5725    FootToFourthPower,
5726    /// cubic decimetre per kilogram
5727    ///
5728    /// rec20
5729    CubicDecimetrePerKilogram,
5730    /// cubic foot per pound
5731    ///
5732    /// rec20
5733    CubicFootPerPound,
5734    /// print point
5735    ///
5736    /// rec20
5737    PrintPoint,
5738    /// cubic inch per pound
5739    ///
5740    /// rec20
5741    CubicInchPerPound,
5742    /// kilonewton per metre
5743    ///
5744    /// rec20
5745    KilonewtonPerMetre,
5746    /// poundal per inch
5747    ///
5748    /// rec20
5749    PoundalPerInch,
5750    /// pound-force per yard
5751    ///
5752    /// rec20
5753    PoundForcePerYard,
5754    /// poundal second per square foot
5755    ///
5756    /// rec20
5757    PoundalSecondPerSquareFoot,
5758    /// poise per pascal
5759    ///
5760    /// rec20
5761    PoisePerPascal,
5762    /// newton second per square metre
5763    ///
5764    /// rec20
5765    NewtonSecondPerSquareMetre,
5766    /// kilogram per metre second
5767    ///
5768    /// rec20
5769    KilogramPerMetreSecond,
5770    /// kilogram per metre minute
5771    ///
5772    /// rec20
5773    KilogramPerMetreMinute,
5774    /// kilogram per metre day
5775    ///
5776    /// rec20
5777    KilogramPerMetreDay,
5778    /// kilogram per metre hour
5779    ///
5780    /// rec20
5781    KilogramPerMetreHour,
5782    /// gram per centimetre second
5783    ///
5784    /// rec20
5785    GramPerCentimetreSecond,
5786    /// poundal second per square inch
5787    ///
5788    /// rec20
5789    PoundalSecondPerSquareInch,
5790    /// pound per foot minute
5791    ///
5792    /// rec20
5793    PoundPerFootMinute,
5794    /// pound per foot day
5795    ///
5796    /// rec20
5797    PoundPerFootDay,
5798    /// cubic metre per second pascal
5799    ///
5800    /// rec20
5801    CubicMetrePerSecondPascal,
5802    /// foot poundal
5803    ///
5804    /// rec20
5805    FootPoundal,
5806    /// inch poundal
5807    ///
5808    /// rec20
5809    InchPoundal,
5810    /// watt per square centimetre
5811    ///
5812    /// rec20
5813    WattPerSquareCentimetre,
5814    /// watt per square inch
5815    ///
5816    /// rec20
5817    WattPerSquareInch,
5818    /// British thermal unit (international table) per square foot hour
5819    ///
5820    /// rec20
5821    BritishThermalUnitInternationalTablePerSquareFootHour,
5822    /// British thermal unit (thermochemical) per square foot hour
5823    ///
5824    /// rec20
5825    BritishThermalUnitThermochemicalPerSquareFootHour,
5826    /// British thermal unit (thermochemical) per square foot minute
5827    ///
5828    /// rec20
5829    BritishThermalUnitThermochemicalPerSquareFootMinute,
5830    /// British thermal unit (international table) per square foot second
5831    ///
5832    /// rec20
5833    BritishThermalUnitInternationalTablePerSquareFootSecond,
5834    /// British thermal unit (thermochemical) per square foot second
5835    ///
5836    /// rec20
5837    BritishThermalUnitThermochemicalPerSquareFootSecond,
5838    /// British thermal unit (international table) per square inch second
5839    ///
5840    /// rec20
5841    BritishThermalUnitInternationalTablePerSquareInchSecond,
5842    /// calorie (thermochemical) per square centimetre minute
5843    ///
5844    /// rec20
5845    CalorieThermochemicalPerSquareCentimetreMinute,
5846    /// calorie (thermochemical) per square centimetre second
5847    ///
5848    /// rec20
5849    CalorieThermochemicalPerSquareCentimetreSecond,
5850    /// British thermal unit (international table) per cubic foot
5851    ///
5852    /// rec20
5853    BritishThermalUnitInternationalTablePerCubicFoot,
5854    /// British thermal unit (thermochemical) per cubic foot
5855    ///
5856    /// rec20
5857    BritishThermalUnitThermochemicalPerCubicFoot,
5858    /// British thermal unit (international table) per degree Fahrenheit
5859    ///
5860    /// rec20
5861    BritishThermalUnitInternationalTablePerDegreeFahrenheit,
5862    /// British thermal unit (thermochemical) per degree Fahrenheit
5863    ///
5864    /// rec20
5865    BritishThermalUnitThermochemicalPerDegreeFahrenheit,
5866    /// British thermal unit (international table) per degree Rankine
5867    ///
5868    /// rec20
5869    BritishThermalUnitInternationalTablePerDegreeRankine,
5870    /// British thermal unit (thermochemical) per degree Rankine
5871    ///
5872    /// rec20
5873    BritishThermalUnitThermochemicalPerDegreeRankine,
5874    /// British thermal unit (thermochemical) per pound degree Rankine
5875    ///
5876    /// rec20
5877    BritishThermalUnitThermochemicalPerPoundDegreeRankine,
5878    /// kilocalorie (international table) per gram kelvin
5879    ///
5880    /// rec20
5881    KilocalorieInternationalTablePerGramKelvin,
5882    /// British thermal unit (39 ºF)
5883    ///
5884    /// rec20
5885    BritishThermalUnit39Of,
5886    /// British thermal unit (59 ºF)
5887    ///
5888    /// rec20
5889    BritishThermalUnit59Of,
5890    /// British thermal unit (60 ºF)
5891    ///
5892    /// rec20
5893    BritishThermalUnit60Of,
5894    /// calorie (20 ºC)
5895    ///
5896    /// rec20
5897    Calorie20Oc,
5898    /// quad (1015 BtuIT)
5899    ///
5900    /// rec20
5901    Quad1015Btuit,
5902    /// therm (EC)
5903    ///
5904    /// rec20
5905    ThermEc,
5906    /// therm (U.S.)
5907    ///
5908    /// rec20
5909    ThermUS,
5910    /// British thermal unit (thermochemical) per pound
5911    ///
5912    /// rec20
5913    BritishThermalUnitThermochemicalPerPound,
5914    /// British thermal unit (international table) per hour square foot degree Fahrenheit
5915    ///
5916    /// rec20
5917    BritishThermalUnitInternationalTablePerHourSquareFootDegreeFahrenheit,
5918    /// British thermal unit (thermochemical) per hour square foot degree Fahrenheit
5919    ///
5920    /// rec20
5921    BritishThermalUnitThermochemicalPerHourSquareFootDegreeFahrenheit,
5922    /// British thermal unit (international table) per second square foot degree Fahrenheit
5923    ///
5924    /// rec20
5925    BritishThermalUnitInternationalTablePerSecondSquareFootDegreeFahrenheit,
5926    /// British thermal unit (thermochemical) per second square foot degree Fahrenheit
5927    ///
5928    /// rec20
5929    BritishThermalUnitThermochemicalPerSecondSquareFootDegreeFahrenheit,
5930    /// kilowatt per square metre kelvin
5931    ///
5932    /// rec20
5933    KilowattPerSquareMetreKelvin,
5934    /// kelvin per pascal
5935    ///
5936    /// rec20
5937    KelvinPerPascal,
5938    /// watt per metre degree Celsius
5939    ///
5940    /// rec20
5941    WattPerMetreDegreeCelsius,
5942    /// kilowatt per metre kelvin
5943    ///
5944    /// rec20
5945    KilowattPerMetreKelvin,
5946    /// kilowatt per metre degree Celsius
5947    ///
5948    /// rec20
5949    KilowattPerMetreDegreeCelsius,
5950    /// metre per degree Celcius metre
5951    ///
5952    /// rec20
5953    MetrePerDegreeCelciusMetre,
5954    /// degree Fahrenheit hour per British thermal unit (international table)
5955    ///
5956    /// rec20
5957    DegreeFahrenheitHourPerBritishThermalUnitInternationalTable,
5958    /// degree Fahrenheit hour per British thermal unit (thermochemical)
5959    ///
5960    /// rec20
5961    DegreeFahrenheitHourPerBritishThermalUnitThermochemical,
5962    /// degree Fahrenheit second per British thermal unit (international table)
5963    ///
5964    /// rec20
5965    DegreeFahrenheitSecondPerBritishThermalUnitInternationalTable,
5966    /// degree Fahrenheit second per British thermal unit (thermochemical)
5967    ///
5968    /// rec20
5969    DegreeFahrenheitSecondPerBritishThermalUnitThermochemical,
5970    /// degree Fahrenheit hour square foot per British thermal unit (international table) inch
5971    ///
5972    /// rec20
5973    DegreeFahrenheitHourSquareFootPerBritishThermalUnitInternationalTableInch,
5974    /// degree Fahrenheit hour square foot per British thermal unit (thermochemical) inch
5975    ///
5976    /// rec20
5977    DegreeFahrenheitHourSquareFootPerBritishThermalUnitThermochemicalInch,
5978    /// kilofarad
5979    ///
5980    /// rec20
5981    Kilofarad,
5982    /// reciprocal joule
5983    ///
5984    /// rec20
5985    ReciprocalJoule,
5986    /// picosiemens
5987    ///
5988    /// rec20
5989    Picosiemens,
5990    /// ampere per pascal
5991    ///
5992    /// rec20
5993    AmperePerPascal,
5994    /// franklin
5995    ///
5996    /// rec20
5997    Franklin,
5998    /// ampere minute
5999    ///
6000    /// rec20
6001    AmpereMinute,
6002    /// biot
6003    ///
6004    /// rec20
6005    Biot,
6006    /// gilbert
6007    ///
6008    /// rec20
6009    Gilbert,
6010    /// volt per pascal
6011    ///
6012    /// rec20
6013    VoltPerPascal,
6014    /// picovolt
6015    ///
6016    /// rec20
6017    Picovolt,
6018    /// milligram per kilogram
6019    ///
6020    /// rec20
6021    MilligramPerKilogram,
6022    /// number of articles
6023    ///
6024    /// rec20
6025    NumberArticles,
6026    /// number of cells
6027    ///
6028    /// rec20
6029    NumberCells,
6030    /// newton
6031    ///
6032    /// rec20
6033    Newton,
6034    /// message
6035    ///
6036    /// rec20
6037    Message,
6038    /// nil
6039    ///
6040    /// rec20
6041    Nil,
6042    /// number of international units
6043    ///
6044    /// rec20
6045    NumberInternationalUnits,
6046    /// load
6047    ///
6048    /// rec20
6049    Load,
6050    /// Normalised cubic metre
6051    ///
6052    /// rec20
6053    NormalisedCubicMetre,
6054    /// nautical mile
6055    ///
6056    /// rec20
6057    NauticalMile,
6058    /// number of packs
6059    ///
6060    /// rec20
6061    NumberPacks,
6062    /// number of parts
6063    ///
6064    /// rec20
6065    NumberParts,
6066    /// net ton
6067    ///
6068    /// rec20
6069    NetTon,
6070    /// Nephelometric turbidity unit
6071    ///
6072    /// Rec20
6073    NephelometricTurbidityUnit,
6074    /// newton metre
6075    ///
6076    /// rec20
6077    NewtonMetre,
6078    /// part per thousand
6079    ///
6080    /// rec20
6081    PartPerThousand,
6082    /// panel
6083    ///
6084    /// rec20
6085    Panel,
6086    /// ozone depletion equivalent
6087    ///
6088    /// rec20
6089    OzoneDepletionEquivalent,
6090    /// ODS Grams
6091    ///
6092    /// rec20
6093    OdsGrams,
6094    /// ODS Kilograms
6095    ///
6096    /// rec20
6097    OdsKilograms,
6098    /// ODS Milligrams
6099    ///
6100    /// rec20
6101    OdsMilligrams,
6102    /// ohm
6103    ///
6104    /// rec20
6105    Ohm,
6106    /// ounce per square yard
6107    ///
6108    /// rec20
6109    OuncePerSquareYard,
6110    /// ounce (avoirdupois)
6111    ///
6112    /// rec20
6113    OunceAvoirdupois,
6114    /// oscillations per minute
6115    ///
6116    /// rec20
6117    OscillationsPerMinute,
6118    /// overtime hour
6119    ///
6120    /// rec20
6121    OvertimeHour,
6122    /// fluid ounce (US)
6123    ///
6124    /// rec20
6125    FluidOunceUs,
6126    /// fluid ounce (UK)
6127    ///
6128    /// rec20
6129    FluidOunceUk,
6130    /// percent
6131    ///
6132    /// rec20
6133    Percent,
6134    /// coulomb per metre
6135    ///
6136    /// rec20
6137    CoulombPerMetre,
6138    /// kiloweber
6139    ///
6140    /// rec20
6141    Kiloweber,
6142    /// gamma
6143    ///
6144    /// rec20
6145    Gamma,
6146    /// kilotesla
6147    ///
6148    /// rec20
6149    Kilotesla,
6150    /// joule per second
6151    ///
6152    /// rec20
6153    JoulePerSecond,
6154    /// joule per minute
6155    ///
6156    /// rec20
6157    JoulePerMinute,
6158    /// joule per hour
6159    ///
6160    /// rec20
6161    JoulePerHour,
6162    /// joule per day
6163    ///
6164    /// rec20
6165    JoulePerDay,
6166    /// kilojoule per second
6167    ///
6168    /// rec20
6169    KilojoulePerSecond,
6170    /// kilojoule per minute
6171    ///
6172    /// rec20
6173    KilojoulePerMinute,
6174    /// pound per foot
6175    ///
6176    /// rec20
6177    PoundPerFoot,
6178    /// kilojoule per hour
6179    ///
6180    /// rec20
6181    KilojoulePerHour,
6182    /// kilojoule per day
6183    ///
6184    /// rec20
6185    KilojoulePerDay,
6186    /// nanoohm
6187    ///
6188    /// rec20
6189    Nanoohm,
6190    /// ohm circular-mil per foot
6191    ///
6192    /// rec20
6193    OhmCircularMilPerFoot,
6194    /// kilohenry
6195    ///
6196    /// rec20
6197    Kilohenry,
6198    /// lumen per square foot
6199    ///
6200    /// rec20
6201    LumenPerSquareFoot,
6202    /// phot
6203    ///
6204    /// rec20
6205    Phot,
6206    /// footcandle
6207    ///
6208    /// rec20
6209    Footcandle,
6210    /// candela per square inch
6211    ///
6212    /// rec20
6213    CandelaPerSquareInch,
6214    /// footlambert
6215    ///
6216    /// rec20
6217    Footlambert,
6218    /// lambert
6219    ///
6220    /// rec20
6221    Lambert,
6222    /// stilb
6223    ///
6224    /// rec20
6225    Stilb,
6226    /// candela per square foot
6227    ///
6228    /// rec20
6229    CandelaPerSquareFoot,
6230    /// kilocandela
6231    ///
6232    /// rec20
6233    Kilocandela,
6234    /// millicandela
6235    ///
6236    /// rec20
6237    Millicandela,
6238    /// Hefner-Kerze
6239    ///
6240    /// rec20
6241    HefnerKerze,
6242    /// international candle
6243    ///
6244    /// rec20
6245    InternationalCandle,
6246    /// British thermal unit (international table) per square foot
6247    ///
6248    /// rec20
6249    BritishThermalUnitInternationalTablePerSquareFoot,
6250    /// British thermal unit (thermochemical) per square foot
6251    ///
6252    /// rec20
6253    BritishThermalUnitThermochemicalPerSquareFoot,
6254    /// calorie (thermochemical) per square centimetre
6255    ///
6256    /// rec20
6257    CalorieThermochemicalPerSquareCentimetre,
6258    /// langley
6259    ///
6260    /// rec20
6261    Langley,
6262    /// decade (logarithmic)
6263    ///
6264    /// rec20
6265    DecadeLogarithmic,
6266    /// pascal squared second
6267    ///
6268    /// rec20
6269    PascalSquaredSecond,
6270    /// bel per metre
6271    ///
6272    /// rec20
6273    BelPerMetre,
6274    /// pound mole
6275    ///
6276    /// rec20
6277    PoundMole,
6278    /// pound mole per second
6279    ///
6280    /// rec20
6281    PoundMolePerSecond,
6282    /// pound mole per minute
6283    ///
6284    /// rec20
6285    PoundMolePerMinute,
6286    /// kilomole per kilogram
6287    ///
6288    /// rec20
6289    KilomolePerKilogram,
6290    /// pound mole per pound
6291    ///
6292    /// rec20
6293    PoundMolePerPound,
6294    /// newton square metre per ampere
6295    ///
6296    /// rec20
6297    NewtonSquareMetrePerAmpere,
6298    /// five pack
6299    ///
6300    /// rec20
6301    FivePack,
6302    /// weber metre
6303    ///
6304    /// rec20
6305    WeberMetre,
6306    /// mol per kilogram pascal
6307    ///
6308    /// rec20
6309    MolPerKilogramPascal,
6310    /// mol per cubic metre pascal
6311    ///
6312    /// rec20
6313    MolPerCubicMetrePascal,
6314    /// unit pole
6315    ///
6316    /// rec20
6317    UnitPole,
6318    /// milligray per second
6319    ///
6320    /// rec20
6321    MilligrayPerSecond,
6322    /// microgray per second
6323    ///
6324    /// rec20
6325    MicrograyPerSecond,
6326    /// nanogray per second
6327    ///
6328    /// rec20
6329    NanograyPerSecond,
6330    /// gray per minute
6331    ///
6332    /// rec20
6333    GrayPerMinute,
6334    /// milligray per minute
6335    ///
6336    /// rec20
6337    MilligrayPerMinute,
6338    /// microgray per minute
6339    ///
6340    /// rec20
6341    MicrograyPerMinute,
6342    /// nanogray per minute
6343    ///
6344    /// rec20
6345    NanograyPerMinute,
6346    /// gray per hour
6347    ///
6348    /// rec20
6349    GrayPerHour,
6350    /// milligray per hour
6351    ///
6352    /// rec20
6353    MilligrayPerHour,
6354    /// microgray per hour
6355    ///
6356    /// rec20
6357    MicrograyPerHour,
6358    /// nanogray per hour
6359    ///
6360    /// rec20
6361    NanograyPerHour,
6362    /// sievert per second
6363    ///
6364    /// rec20
6365    SievertPerSecond,
6366    /// millisievert per second
6367    ///
6368    /// rec20
6369    MillisievertPerSecond,
6370    /// microsievert per second
6371    ///
6372    /// rec20
6373    MicrosievertPerSecond,
6374    /// nanosievert per second
6375    ///
6376    /// rec20
6377    NanosievertPerSecond,
6378    /// rem per second
6379    ///
6380    /// rec20
6381    RemPerSecond,
6382    /// sievert per hour
6383    ///
6384    /// rec20
6385    SievertPerHour,
6386    /// millisievert per hour
6387    ///
6388    /// rec20
6389    MillisievertPerHour,
6390    /// microsievert per hour
6391    ///
6392    /// rec20
6393    MicrosievertPerHour,
6394    /// nanosievert per hour
6395    ///
6396    /// rec20
6397    NanosievertPerHour,
6398    /// sievert per minute
6399    ///
6400    /// rec20
6401    SievertPerMinute,
6402    /// millisievert per minute
6403    ///
6404    /// rec20
6405    MillisievertPerMinute,
6406    /// microsievert per minute
6407    ///
6408    /// rec20
6409    MicrosievertPerMinute,
6410    /// nanosievert per minute
6411    ///
6412    /// rec20
6413    NanosievertPerMinute,
6414    /// reciprocal square inch
6415    ///
6416    /// rec20
6417    ReciprocalSquareInch,
6418    /// pascal square metre per kilogram
6419    ///
6420    /// rec20
6421    PascalSquareMetrePerKilogram,
6422    /// millipascal per metre
6423    ///
6424    /// rec20
6425    MillipascalPerMetre,
6426    /// kilopascal per metre
6427    ///
6428    /// rec20
6429    KilopascalPerMetre,
6430    /// hectopascal per metre
6431    ///
6432    /// rec20
6433    HectopascalPerMetre,
6434    /// standard atmosphere per metre
6435    ///
6436    /// rec20
6437    StandardAtmospherePerMetre,
6438    /// technical atmosphere per metre
6439    ///
6440    /// rec20
6441    TechnicalAtmospherePerMetre,
6442    /// torr per metre
6443    ///
6444    /// rec20
6445    TorrPerMetre,
6446    /// psi per inch
6447    ///
6448    /// rec20
6449    PsiPerInch,
6450    /// cubic metre per second square metre
6451    ///
6452    /// rec20
6453    CubicMetrePerSecondSquareMetre,
6454    /// rhe
6455    ///
6456    /// rec20
6457    Rhe,
6458    /// pound-force foot per inch
6459    ///
6460    /// rec20
6461    PoundForceFootPerInch,
6462    /// pound-force inch per inch
6463    ///
6464    /// rec20
6465    PoundForceInchPerInch,
6466    /// perm (0 ºC)
6467    ///
6468    /// rec20
6469    Perm0Oc,
6470    /// perm (23 ºC)
6471    ///
6472    /// rec20
6473    Perm23Oc,
6474    /// byte per second
6475    ///
6476    /// rec20
6477    BytePerSecond,
6478    /// kilobyte per second
6479    ///
6480    /// rec20
6481    KilobytePerSecond,
6482    /// megabyte per second
6483    ///
6484    /// rec20
6485    MegabytePerSecond,
6486    /// reciprocal volt
6487    ///
6488    /// rec20
6489    ReciprocalVolt,
6490    /// reciprocal radian
6491    ///
6492    /// rec20
6493    ReciprocalRadian,
6494    /// pascal to the power sum of stoichiometric numbers
6495    ///
6496    /// rec20
6497    PascalToPowerSumStoichiometricNumbers,
6498    /// mole per cubiv metre to the power sum of stoichiometric numbers
6499    ///
6500    /// rec20
6501    MolePerCubivMetreToPowerSumStoichiometricNumbers,
6502    /// pascal
6503    ///
6504    /// rec20
6505    Pascal,
6506    /// pad
6507    ///
6508    /// rec20
6509    Pad,
6510    /// proof litre
6511    ///
6512    /// rec20
6513    ProofLitre,
6514    /// proof gallon
6515    ///
6516    /// rec20
6517    ProofGallon,
6518    /// pitch
6519    ///
6520    /// rec20
6521    Pitch,
6522    /// degree Plato
6523    ///
6524    /// rec20
6525    DegreePlato,
6526    /// pound per inch of length
6527    ///
6528    /// rec20
6529    PoundPerInchLength,
6530    /// page per inch
6531    ///
6532    /// rec20
6533    PagePerInch,
6534    /// pair
6535    ///
6536    /// rec20
6537    Pair,
6538    /// pound-force per square inch
6539    ///
6540    /// rec20
6541    PoundForcePerSquareInch,
6542    /// dry pint (US)
6543    ///
6544    /// rec20
6545    DryPintUs,
6546    /// pint (UK)
6547    ///
6548    /// rec20
6549    PintUk,
6550    /// liquid pint (US)
6551    ///
6552    /// rec20
6553    LiquidPintUs,
6554    /// portion
6555    ///
6556    /// rec20
6557    Portion,
6558    /// joule per tesla
6559    ///
6560    /// rec20
6561    JoulePerTesla,
6562    /// erlang
6563    ///
6564    /// rec20
6565    Erlang,
6566    /// octet
6567    ///
6568    /// rec20
6569    Octet,
6570    /// octet per second
6571    ///
6572    /// rec20
6573    OctetPerSecond,
6574    /// shannon
6575    ///
6576    /// rec20
6577    Shannon,
6578    /// hartley
6579    ///
6580    /// rec20
6581    Hartley,
6582    /// natural unit of information
6583    ///
6584    /// rec20
6585    NaturalUnitInformation,
6586    /// shannon per second
6587    ///
6588    /// rec20
6589    ShannonPerSecond,
6590    /// hartley per second
6591    ///
6592    /// rec20
6593    HartleyPerSecond,
6594    /// natural unit of information per second
6595    ///
6596    /// rec20
6597    NaturalUnitInformationPerSecond,
6598    /// second per kilogramm
6599    ///
6600    /// rec20
6601    SecondPerKilogramm,
6602    /// watt square metre
6603    ///
6604    /// rec20
6605    WattSquareMetre,
6606    /// second per radian cubic metre
6607    ///
6608    /// rec20
6609    SecondPerRadianCubicMetre,
6610    /// weber to the power minus one
6611    ///
6612    /// rec20
6613    WeberToPowerMinusOne,
6614    /// reciprocal inch
6615    ///
6616    /// rec20
6617    ReciprocalInch,
6618    /// dioptre
6619    ///
6620    /// rec20
6621    Dioptre,
6622    /// one per one
6623    ///
6624    /// rec20
6625    OnePerOne,
6626    /// newton metre per metre
6627    ///
6628    /// rec20
6629    NewtonMetrePerMetre,
6630    /// kilogram per square metre pascal second
6631    ///
6632    /// rec20
6633    KilogramPerSquareMetrePascalSecond,
6634    /// microgram per hectogram
6635    ///
6636    /// rec20
6637    MicrogramPerHectogram,
6638    /// meal
6639    ///
6640    /// rec20
6641    Meal,
6642    /// pH (potential of Hydrogen)
6643    ///
6644    /// rec20
6645    PhPotentialHydrogen,
6646    /// kilojoule per gram
6647    ///
6648    /// rec20
6649    KilojoulePerGram,
6650    /// femtolitre
6651    ///
6652    /// rec20
6653    Femtolitre,
6654    /// picolitre
6655    ///
6656    /// rec20
6657    Picolitre,
6658    /// nanolitre
6659    ///
6660    /// rec20
6661    Nanolitre,
6662    /// megawatts per minute
6663    ///
6664    /// rec20
6665    MegawattsPerMinute,
6666    /// square metre per cubic metre
6667    ///
6668    /// rec20
6669    SquareMetrePerCubicMetre,
6670    /// Standard cubic metre per day
6671    ///
6672    /// rec20
6673    StandardCubicMetrePerDay,
6674    /// Standard cubic metre per hour
6675    ///
6676    /// rec20
6677    StandardCubicMetrePerHour,
6678    /// Normalized cubic metre per day
6679    ///
6680    /// rec20
6681    NormalizedCubicMetrePerDay,
6682    /// Normalized cubic metre per hour
6683    ///
6684    /// rec20
6685    NormalizedCubicMetrePerHour,
6686    /// Joule per normalised cubic metre
6687    ///
6688    /// rec20
6689    JoulePerNormalisedCubicMetre,
6690    /// Joule per standard cubic metre
6691    ///
6692    /// rec20
6693    JoulePerStandardCubicMetre,
6694    /// page - facsimile
6695    ///
6696    /// rec20
6697    PageFacsimile,
6698    /// quarter (of a year)
6699    ///
6700    /// rec20
6701    QuarterAYear,
6702    /// page - hardcopy
6703    ///
6704    /// rec20
6705    PageHardcopy,
6706    /// quire
6707    ///
6708    /// rec20
6709    Quire,
6710    /// dry quart (US)
6711    ///
6712    /// rec20
6713    DryQuartUs,
6714    /// quart (UK)
6715    ///
6716    /// rec20
6717    QuartUk,
6718    /// liquid quart (US)
6719    ///
6720    /// rec20
6721    LiquidQuartUs,
6722    /// quarter (UK)
6723    ///
6724    /// rec20
6725    QuarterUk,
6726    /// pica
6727    ///
6728    /// rec20
6729    Pica,
6730    /// thousand cubic metre
6731    ///
6732    /// rec20
6733    ThousandCubicMetre,
6734    /// running or operating hour
6735    ///
6736    /// rec20
6737    RunningOrOperatingHour,
6738    /// ream
6739    ///
6740    /// rec20
6741    Ream,
6742    /// room
6743    ///
6744    /// rec20
6745    Room,
6746    /// pound per ream
6747    ///
6748    /// rec20
6749    PoundPerReam,
6750    /// revolutions per minute
6751    ///
6752    /// rec20
6753    RevolutionsPerMinute,
6754    /// revolutions per second
6755    ///
6756    /// rec20
6757    RevolutionsPerSecond,
6758    /// revenue ton mile
6759    ///
6760    /// rec20
6761    RevenueTonMile,
6762    /// square foot per second
6763    ///
6764    /// rec20
6765    SquareFootPerSecond,
6766    /// square metre per second
6767    ///
6768    /// rec20
6769    SquareMetrePerSecond,
6770    /// half year (6 months)
6771    ///
6772    /// rec20
6773    HalfYear6Months,
6774    /// score
6775    ///
6776    /// rec20
6777    Score,
6778    /// scruple
6779    ///
6780    /// rec20
6781    Scruple,
6782    /// second [unit of time]
6783    ///
6784    /// rec20
6785    SecondUnitTime,
6786    /// set
6787    ///
6788    /// rec20
6789    Set,
6790    /// segment
6791    ///
6792    /// rec20
6793    Segment,
6794    /// siemens
6795    ///
6796    /// rec20
6797    Siemens,
6798    /// Standard cubic metre
6799    ///
6800    /// rec20
6801    StandardCubicMetre,
6802    /// mile (statute mile)
6803    ///
6804    /// rec20
6805    MileStatuteMile,
6806    /// square
6807    ///
6808    /// rec20
6809    Square,
6810    /// square, roofing
6811    ///
6812    /// rec20
6813    SquareRoofing,
6814    /// strip
6815    ///
6816    /// rec20
6817    Strip,
6818    /// stick
6819    ///
6820    /// rec20
6821    Stick,
6822    /// stone (UK)
6823    ///
6824    /// rec20
6825    StoneUk,
6826    /// stick, cigarette
6827    ///
6828    /// rec20
6829    StickCigarette,
6830    /// standard litre
6831    ///
6832    /// rec20
6833    StandardLitre,
6834    /// ton (US) or short ton (UK/US)
6835    ///
6836    /// rec20
6837    TonUsOrShortTonUkUs,
6838    /// straw
6839    ///
6840    /// rec20
6841    Straw,
6842    /// skein
6843    ///
6844    /// rec20
6845    Skein,
6846    /// shipment
6847    ///
6848    /// rec20
6849    Shipment,
6850    /// syringe
6851    ///
6852    /// rec20
6853    Syringe,
6854    /// telecommunication line in service
6855    ///
6856    /// rec20
6857    TelecommunicationLineInService,
6858    /// thousand piece
6859    ///
6860    /// rec20
6861    ThousandPiece,
6862    /// kiloampere hour (thousand ampere hour)
6863    ///
6864    /// rec20
6865    KiloampereHourThousandAmpereHour,
6866    /// total acid number
6867    ///
6868    /// rec20
6869    TotalAcidNumber,
6870    /// thousand square inch
6871    ///
6872    /// rec20
6873    ThousandSquareInch,
6874    /// metric ton, including container
6875    ///
6876    /// rec20
6877    MetricTonIncludingContainer,
6878    /// metric ton, including inner packaging
6879    ///
6880    /// rec20
6881    MetricTonIncludingInnerPackaging,
6882    /// tonne kilometre
6883    ///
6884    /// rec20
6885    TonneKilometre,
6886    /// kilogram of imported meat, less offal
6887    ///
6888    /// rec20
6889    KilogramImportedMeatLessOffal,
6890    /// tonne (metric ton)
6891    ///
6892    /// rec20
6893    TonneMetricTon,
6894    /// ten pack
6895    ///
6896    /// rec20
6897    TenPack,
6898    /// teeth per inch
6899    ///
6900    /// rec20
6901    TeethPerInch,
6902    /// ten pair
6903    ///
6904    /// rec20
6905    TenPair,
6906    /// thousand cubic metre per day
6907    ///
6908    /// rec20
6909    ThousandCubicMetrePerDay,
6910    /// trillion (EUR)
6911    ///
6912    /// rec20
6913    TrillionEur,
6914    /// ten set
6915    ///
6916    /// rec20
6917    TenSet,
6918    /// ten thousand sticks
6919    ///
6920    /// rec20
6921    TenThousandSticks,
6922    /// treatment
6923    ///
6924    /// rec20
6925    Treatment,
6926    /// tablet
6927    ///
6928    /// rec20
6929    Tablet,
6930    /// telecommunication line in service average
6931    ///
6932    /// rec20
6933    TelecommunicationLineInServiceAverage,
6934    /// telecommunication port
6935    ///
6936    /// rec20
6937    TelecommunicationPort,
6938    /// volt - ampere per kilogram
6939    ///
6940    /// rec20
6941    VoltAmperePerKilogram,
6942    /// volt
6943    ///
6944    /// rec20
6945    Volt,
6946    /// percent volume
6947    ///
6948    /// rec20
6949    PercentVolume,
6950    /// wet kilo
6951    ///
6952    /// rec20
6953    WetKilo,
6954    /// watt per kilogram
6955    ///
6956    /// rec20
6957    WattPerKilogram,
6958    /// wet pound
6959    ///
6960    /// rec20
6961    WetPound,
6962    /// cord
6963    ///
6964    /// rec20
6965    Cord,
6966    /// wet ton
6967    ///
6968    /// rec20
6969    WetTon,
6970    /// weber
6971    ///
6972    /// rec20
6973    Weber,
6974    /// week
6975    ///
6976    /// rec20
6977    Week,
6978    /// wine gallon
6979    ///
6980    /// rec20
6981    WineGallon,
6982    /// watt hour
6983    ///
6984    /// rec20
6985    WattHour,
6986    /// working month
6987    ///
6988    /// rec20
6989    WorkingMonth,
6990    /// standard
6991    ///
6992    /// rec20
6993    Standard,
6994    /// watt
6995    ///
6996    /// rec20
6997    Watt,
6998    /// Gunter's chain
6999    ///
7000    /// rec20
7001    GuntersChain,
7002    /// square yard
7003    ///
7004    /// rec20
7005    SquareYard,
7006    /// cubic yard
7007    ///
7008    /// rec20
7009    CubicYard,
7010    /// yard
7011    ///
7012    /// rec20
7013    Yard,
7014    /// hanging container
7015    ///
7016    /// rec20
7017    HangingContainer,
7018    /// nanomole
7019    ///
7020    /// Rec20
7021    Nanomole,
7022    /// page
7023    ///
7024    /// rec20
7025    Page,
7026    /// mutually defined
7027    ///
7028    /// rec20
7029    MutuallyDefined,
7030    /// Drum, steel
7031    ///
7032    /// rec21
7033    DrumSteel,
7034    /// Drum, aluminium
7035    ///
7036    /// rec21
7037    DrumAluminium,
7038    /// Drum, plywood
7039    ///
7040    /// rec21
7041    DrumPlywood,
7042    /// Container, flexible
7043    ///
7044    /// rec21
7045    ContainerFlexible,
7046    /// Drum, fibre
7047    ///
7048    /// rec21
7049    DrumFibre,
7050    /// Drum, wooden
7051    ///
7052    /// rec21
7053    DrumWooden,
7054    /// Barrel, wooden
7055    ///
7056    /// rec21
7057    BarrelWooden,
7058    /// Jerrican, steel
7059    ///
7060    /// rec21
7061    JerricanSteel,
7062    /// Jerrican, plastic
7063    ///
7064    /// rec21
7065    JerricanPlastic,
7066    /// Bag, super bulk
7067    ///
7068    /// rec21
7069    BagSuperBulk,
7070    /// Bag, polybag
7071    ///
7072    /// rec21
7073    BagPolybag,
7074    /// Box, steel
7075    ///
7076    /// rec21
7077    BoxSteel,
7078    /// Box, aluminium
7079    ///
7080    /// rec21
7081    BoxAluminium,
7082    /// Box, natural wood
7083    ///
7084    /// rec21
7085    BoxNaturalWood,
7086    /// Box, plywood
7087    ///
7088    /// rec21
7089    BoxPlywood,
7090    /// Box, reconstituted wood
7091    ///
7092    /// rec21
7093    BoxReconstitutedWood,
7094    /// Box, fibreboard
7095    ///
7096    /// rec21
7097    BoxFibreboard,
7098    /// Box, plastic
7099    ///
7100    /// rec21
7101    BoxPlastic,
7102    /// Bag, woven plastic
7103    ///
7104    /// rec21
7105    BagWovenPlastic,
7106    /// Bag, textile
7107    ///
7108    /// rec21
7109    BagTextile,
7110    /// Bag, paper
7111    ///
7112    /// rec21
7113    BagPaper,
7114    /// Composite packaging, plastic receptacle
7115    ///
7116    /// rec21
7117    CompositePackagingPlasticReceptacle,
7118    /// Composite packaging, glass receptacle
7119    ///
7120    /// rec21
7121    CompositePackagingGlassReceptacle,
7122    /// Case, car
7123    ///
7124    /// rec21
7125    CaseCar,
7126    /// Case, wooden
7127    ///
7128    /// rec21
7129    CaseWooden,
7130    /// Pallet, wooden
7131    ///
7132    /// rec21
7133    PalletWooden,
7134    /// Crate, wooden
7135    ///
7136    /// rec21
7137    CrateWooden,
7138    /// Bundle, wooden
7139    ///
7140    /// rec21
7141    BundleWooden,
7142    /// Intermediate bulk container, rigid plastic
7143    ///
7144    /// rec21
7145    IntermediateBulkContainerRigidPlastic,
7146    /// Receptacle, fibre
7147    ///
7148    /// rec21
7149    ReceptacleFibre,
7150    /// Receptacle, paper
7151    ///
7152    /// rec21
7153    ReceptaclePaper,
7154    /// Receptacle, wooden
7155    ///
7156    /// rec21
7157    ReceptacleWooden,
7158    /// Aerosol
7159    ///
7160    /// rec21
7161    Aerosol,
7162    /// Pallet, modular, collars 80cms * 60cms
7163    ///
7164    /// rec21
7165    PalletModularCollars80cms60cms,
7166    /// Pallet, shrinkwrapped
7167    ///
7168    /// rec21
7169    PalletShrinkwrapped,
7170    /// Pallet, 100cms * 110cms
7171    ///
7172    /// rec21
7173    Pallet100cms110cms,
7174    /// Clamshell
7175    ///
7176    /// rec21
7177    Clamshell,
7178    /// Cone
7179    ///
7180    /// rec21
7181    Cone,
7182    /// Ball
7183    ///
7184    /// rec21
7185    Ball_Dup,
7186    /// Ampoule, non-protected
7187    ///
7188    /// rec21
7189    AmpouleNonProtected,
7190    /// Ampoule, protected
7191    ///
7192    /// rec21
7193    AmpouleProtected,
7194    /// Atomizer
7195    ///
7196    /// rec21
7197    Atomizer,
7198    /// Capsule
7199    ///
7200    /// rec21
7201    Capsule,
7202    /// Belt
7203    ///
7204    /// rec21
7205    Belt,
7206    /// Barrel
7207    ///
7208    /// rec21
7209    Barrel,
7210    /// Bobbin
7211    ///
7212    /// rec21
7213    Bobbin,
7214    /// Bottlecrate / bottlerack
7215    ///
7216    /// rec21
7217    BottlecrateBottlerack,
7218    /// Board
7219    ///
7220    /// rec21
7221    Board,
7222    /// Bundle
7223    ///
7224    /// rec21
7225    Bundle,
7226    /// Balloon, non-protected
7227    ///
7228    /// rec21
7229    BalloonNonProtected,
7230    /// Bag
7231    ///
7232    /// rec21
7233    Bag,
7234    /// Bunch
7235    ///
7236    /// rec21
7237    Bunch,
7238    /// Bin
7239    ///
7240    /// rec21
7241    Bin,
7242    /// Bucket
7243    ///
7244    /// rec21
7245    Bucket,
7246    /// Basket
7247    ///
7248    /// rec21
7249    Basket,
7250    /// Bale, compressed
7251    ///
7252    /// rec21
7253    BaleCompressed,
7254    /// Basin
7255    ///
7256    /// rec21
7257    Basin,
7258    /// Bale, non-compressed
7259    ///
7260    /// rec21
7261    BaleNonCompressed,
7262    /// Bottle, non-protected, cylindrical
7263    ///
7264    /// rec21
7265    BottleNonProtectedCylindrical,
7266    /// Balloon, protected
7267    ///
7268    /// rec21
7269    BalloonProtected,
7270    /// Bottle, protected cylindrical
7271    ///
7272    /// rec21
7273    BottleProtectedCylindrical,
7274    /// Bar
7275    ///
7276    /// rec21
7277    Bar,
7278    /// Bottle, non-protected, bulbous
7279    ///
7280    /// rec21
7281    BottleNonProtectedBulbous,
7282    /// Bolt
7283    ///
7284    /// rec21
7285    Bolt,
7286    /// Butt
7287    ///
7288    /// rec21
7289    Butt,
7290    /// Bottle, protected bulbous
7291    ///
7292    /// rec21
7293    BottleProtectedBulbous,
7294    /// Box, for liquids
7295    ///
7296    /// rec21
7297    BoxForLiquids,
7298    /// Box
7299    ///
7300    /// rec21
7301    Box,
7302    /// Board, in bundle/bunch/truss
7303    ///
7304    /// rec21
7305    BoardInBundleBunchTruss,
7306    /// Bars, in bundle/bunch/truss
7307    ///
7308    /// rec21
7309    BarsInBundleBunchTruss,
7310    /// Can, rectangular
7311    ///
7312    /// rec21
7313    CanRectangular,
7314    /// Crate, beer
7315    ///
7316    /// rec21
7317    CrateBeer,
7318    /// Churn
7319    ///
7320    /// rec21
7321    Churn,
7322    /// Can, with handle and spout
7323    ///
7324    /// rec21
7325    CanWithHandleAndSpout,
7326    /// Creel
7327    ///
7328    /// rec21
7329    Creel,
7330    /// Coffer
7331    ///
7332    /// rec21
7333    Coffer,
7334    /// Cage
7335    ///
7336    /// rec21
7337    Cage,
7338    /// Chest
7339    ///
7340    /// rec21
7341    Chest,
7342    /// Canister
7343    ///
7344    /// rec21
7345    Canister,
7346    /// Coffin
7347    ///
7348    /// rec21
7349    Coffin,
7350    /// Cask
7351    ///
7352    /// rec21
7353    Cask,
7354    /// Coil
7355    ///
7356    /// rec21
7357    Coil,
7358    /// Card
7359    ///
7360    /// rec21
7361    Card_Dup,
7362    /// Container, not otherwise specified as transport equipment
7363    ///
7364    /// rec21
7365    ContainerNotOtherwiseSpecifiedAsTransportEquipment,
7366    /// Carboy, non-protected
7367    ///
7368    /// rec21
7369    CarboyNonProtected,
7370    /// Carboy, protected
7371    ///
7372    /// rec21
7373    CarboyProtected,
7374    /// Cartridge
7375    ///
7376    /// rec21
7377    Cartridge,
7378    /// Crate
7379    ///
7380    /// rec21
7381    Crate,
7382    /// Case
7383    ///
7384    /// rec21
7385    Case,
7386    /// Carton
7387    ///
7388    /// rec21
7389    Carton,
7390    /// Cup
7391    ///
7392    /// rec21
7393    Cup,
7394    /// Cover
7395    ///
7396    /// rec21
7397    Cover,
7398    /// Cage, roll
7399    ///
7400    /// rec21
7401    CageRoll,
7402    /// Can, cylindrical
7403    ///
7404    /// rec21
7405    CanCylindrical,
7406    /// Cylinder
7407    ///
7408    /// rec21
7409    Cylinder,
7410    /// Canvas
7411    ///
7412    /// rec21
7413    Canvas,
7414    /// Crate, multiple layer, plastic
7415    ///
7416    /// rec21
7417    CrateMultipleLayerPlastic,
7418    /// Crate, multiple layer, wooden
7419    ///
7420    /// rec21
7421    CrateMultipleLayerWooden,
7422    /// Crate, multiple layer, cardboard
7423    ///
7424    /// rec21
7425    CrateMultipleLayerCardboard,
7426    /// Cage, Commonwealth Handling Equipment Pool (CHEP)
7427    ///
7428    /// rec21
7429    CageCommonwealthHandlingEquipmentPoolChep,
7430    /// Box, Commonwealth Handling Equipment Pool (CHEP), Eurobox
7431    ///
7432    /// rec21
7433    BoxCommonwealthHandlingEquipmentPoolChepEurobox,
7434    /// Drum, iron
7435    ///
7436    /// rec21
7437    DrumIron,
7438    /// Demijohn, non-protected
7439    ///
7440    /// rec21
7441    DemijohnNonProtected,
7442    /// Crate, bulk, cardboard
7443    ///
7444    /// rec21
7445    CrateBulkCardboard,
7446    /// Crate, bulk, plastic
7447    ///
7448    /// rec21
7449    CrateBulkPlastic,
7450    /// Crate, bulk, wooden
7451    ///
7452    /// rec21
7453    CrateBulkWooden,
7454    /// Dispenser
7455    ///
7456    /// rec21
7457    Dispenser,
7458    /// Demijohn, protected
7459    ///
7460    /// rec21
7461    DemijohnProtected,
7462    /// Drum
7463    ///
7464    /// rec21
7465    Drum,
7466    /// Tray, one layer no cover, plastic
7467    ///
7468    /// rec21
7469    TrayOneLayerNoCoverPlastic,
7470    /// Tray, one layer no cover, wooden
7471    ///
7472    /// rec21
7473    TrayOneLayerNoCoverWooden,
7474    /// Tray, one layer no cover, polystyrene
7475    ///
7476    /// rec21
7477    TrayOneLayerNoCoverPolystyrene,
7478    /// Tray, one layer no cover, cardboard
7479    ///
7480    /// rec21
7481    TrayOneLayerNoCoverCardboard,
7482    /// Tray, two layers no cover, plastic tray
7483    ///
7484    /// rec21
7485    TrayTwoLayersNoCoverPlasticTray,
7486    /// Tray, two layers no cover, wooden
7487    ///
7488    /// rec21
7489    TrayTwoLayersNoCoverWooden,
7490    /// Tray, two layers no cover, cardboard
7491    ///
7492    /// rec21
7493    TrayTwoLayersNoCoverCardboard,
7494    /// Bag, plastic
7495    ///
7496    /// rec21
7497    BagPlastic,
7498    /// Case, with pallet base
7499    ///
7500    /// rec21
7501    CaseWithPalletBase,
7502    /// Case, with pallet base, wooden
7503    ///
7504    /// rec21
7505    CaseWithPalletBaseWooden,
7506    /// Case, with pallet base, cardboard
7507    ///
7508    /// rec21
7509    CaseWithPalletBaseCardboard,
7510    /// Case, with pallet base, plastic
7511    ///
7512    /// rec21
7513    CaseWithPalletBasePlastic,
7514    /// Case, with pallet base, metal
7515    ///
7516    /// rec21
7517    CaseWithPalletBaseMetal,
7518    /// Case, isothermic
7519    ///
7520    /// rec21
7521    CaseIsothermic,
7522    /// Envelope
7523    ///
7524    /// rec21
7525    Envelope,
7526    /// Flexibag
7527    ///
7528    /// rec21
7529    Flexibag,
7530    /// Crate, fruit
7531    ///
7532    /// rec21
7533    CrateFruit,
7534    /// Crate, framed
7535    ///
7536    /// rec21
7537    CrateFramed,
7538    /// Flexitank
7539    ///
7540    /// rec21
7541    Flexitank,
7542    /// Firkin
7543    ///
7544    /// rec21
7545    Firkin,
7546    /// Flask
7547    ///
7548    /// rec21
7549    Flask,
7550    /// Footlocker
7551    ///
7552    /// rec21
7553    Footlocker,
7554    /// Filmpack
7555    ///
7556    /// rec21
7557    Filmpack,
7558    /// Frame
7559    ///
7560    /// rec21
7561    Frame,
7562    /// Foodtainer
7563    ///
7564    /// rec21
7565    Foodtainer,
7566    /// Cart, flatbed
7567    ///
7568    /// rec21
7569    CartFlatbed,
7570    /// Bag, flexible container
7571    ///
7572    /// rec21
7573    BagFlexibleContainer,
7574    /// Bottle, gas
7575    ///
7576    /// rec21
7577    BottleGas,
7578    /// Girder
7579    ///
7580    /// rec21
7581    Girder,
7582    /// Container, gallon
7583    ///
7584    /// rec21
7585    ContainerGallon,
7586    /// Receptacle, glass
7587    ///
7588    /// rec21
7589    ReceptacleGlass,
7590    /// Tray, containing horizontally stacked flat items
7591    ///
7592    /// rec21
7593    TrayContainingHorizontallyStackedFlatItems,
7594    /// Bag, gunny
7595    ///
7596    /// rec21
7597    BagGunny,
7598    /// Girders, in bundle/bunch/truss
7599    ///
7600    /// rec21
7601    GirdersInBundleBunchTruss,
7602    /// Basket, with handle, plastic
7603    ///
7604    /// rec21
7605    BasketWithHandlePlastic,
7606    /// Basket, with handle, wooden
7607    ///
7608    /// rec21
7609    BasketWithHandleWooden,
7610    /// Basket, with handle, cardboard
7611    ///
7612    /// rec21
7613    BasketWithHandleCardboard,
7614    /// Hogshead
7615    ///
7616    /// rec21
7617    Hogshead,
7618    /// Hanger
7619    ///
7620    /// rec21
7621    Hanger,
7622    /// Hamper
7623    ///
7624    /// rec21
7625    Hamper,
7626    /// Package, display, wooden
7627    ///
7628    /// rec21
7629    PackageDisplayWooden,
7630    /// Package, display, cardboard
7631    ///
7632    /// rec21
7633    PackageDisplayCardboard,
7634    /// Package, display, plastic
7635    ///
7636    /// rec21
7637    PackageDisplayPlastic,
7638    /// Package, display, metal
7639    ///
7640    /// rec21
7641    PackageDisplayMetal,
7642    /// Package, show
7643    ///
7644    /// rec21
7645    PackageShow,
7646    /// Package, flow
7647    ///
7648    /// rec21
7649    PackageFlow,
7650    /// Package, paper wrapped
7651    ///
7652    /// rec21
7653    PackagePaperWrapped,
7654    /// Drum, plastic
7655    ///
7656    /// rec21
7657    DrumPlastic,
7658    /// Package, cardboard, with bottle grip-holes
7659    ///
7660    /// rec21
7661    PackageCardboardWithBottleGripHoles,
7662    /// Tray, rigid, lidded stackable (CEN TS 14482:2002)
7663    ///
7664    /// rec21
7665    TrayRigidLiddedStackableCenTs144822002,
7666    /// Ingot
7667    ///
7668    /// rec21
7669    Ingot,
7670    /// Ingots, in bundle/bunch/truss
7671    ///
7672    /// rec21
7673    IngotsInBundleBunchTruss,
7674    /// Bag, jumbo
7675    ///
7676    /// rec21
7677    BagJumbo,
7678    /// Jerrican, rectangular
7679    ///
7680    /// rec21
7681    JerricanRectangular,
7682    /// Jug
7683    ///
7684    /// rec21
7685    Jug,
7686    /// Jar
7687    ///
7688    /// rec21
7689    Jar,
7690    /// Jutebag
7691    ///
7692    /// rec21
7693    Jutebag,
7694    /// Jerrican, cylindrical
7695    ///
7696    /// rec21
7697    JerricanCylindrical,
7698    /// Keg
7699    ///
7700    /// rec21
7701    Keg,
7702    /// Kit
7703    ///
7704    /// rec21
7705    Kit_Dup,
7706    /// Luggage
7707    ///
7708    /// rec21
7709    Luggage,
7710    /// Log
7711    ///
7712    /// rec21
7713    Log,
7714    /// Lot
7715    ///
7716    /// rec21
7717    Lot,
7718    /// Lug
7719    ///
7720    /// rec21
7721    Lug,
7722    /// Liftvan
7723    ///
7724    /// rec21
7725    Liftvan,
7726    /// Logs, in bundle/bunch/truss
7727    ///
7728    /// rec21
7729    LogsInBundleBunchTruss,
7730    /// Crate, metal
7731    ///
7732    /// rec21
7733    CrateMetal,
7734    /// Bag, multiply
7735    ///
7736    /// rec21
7737    BagMultiply,
7738    /// Crate, milk
7739    ///
7740    /// rec21
7741    CrateMilk,
7742    /// Container, metal
7743    ///
7744    /// rec21
7745    ContainerMetal,
7746    /// Receptacle, metal
7747    ///
7748    /// rec21
7749    ReceptacleMetal,
7750    /// Sack, multi-wall
7751    ///
7752    /// rec21
7753    SackMultiWall,
7754    /// Mat
7755    ///
7756    /// rec21
7757    Mat,
7758    /// Receptacle, plastic wrapped
7759    ///
7760    /// rec21
7761    ReceptaclePlasticWrapped,
7762    /// Matchbox
7763    ///
7764    /// rec21
7765    Matchbox,
7766    /// Not available
7767    ///
7768    /// rec21
7769    NotAvailable,
7770    /// Unpacked or unpackaged
7771    ///
7772    /// rec21
7773    UnpackedOrUnpackaged,
7774    /// Unpacked or unpackaged, single unit
7775    ///
7776    /// rec21
7777    UnpackedOrUnpackagedSingleUnit,
7778    /// Unpacked or unpackaged, multiple units
7779    ///
7780    /// rec21
7781    UnpackedOrUnpackagedMultipleUnits,
7782    /// Nest
7783    ///
7784    /// rec21
7785    Nest,
7786    /// Net
7787    ///
7788    /// rec21
7789    Net,
7790    /// Net, tube, plastic
7791    ///
7792    /// rec21
7793    NetTubePlastic,
7794    /// Net, tube, textile
7795    ///
7796    /// rec21
7797    NetTubeTextile,
7798    /// Two sided cage on wheels with fixing strap
7799    ///
7800    /// Rec21
7801    TwoSidedCageOnWheelsWithFixingStrap,
7802    /// Trolley
7803    ///
7804    /// Rec21
7805    Trolley,
7806    /// Oneway pallet ISO 0 - 1/2 EURO Pallet
7807    ///
7808    /// Rec21
7809    OnewayPalletIso012EuroPallet,
7810    /// Oneway pallet ISO 1 - 1/1 EURO Pallet
7811    ///
7812    /// Rec21
7813    OnewayPalletIso111EuroPallet,
7814    /// Oneway pallet ISO 2 - 2/1 EURO Pallet
7815    ///
7816    /// Rec21
7817    OnewayPalletIso221EuroPallet,
7818    /// Pallet with exceptional dimensions
7819    ///
7820    /// Rec21
7821    PalletWithExceptionalDimensions,
7822    /// Wooden pallet 40 cm x 80 cm
7823    ///
7824    /// Rec21
7825    WoodenPallet40CmX80Cm,
7826    /// Plastic pallet SRS 60 cm x 80 cm
7827    ///
7828    /// Rec21
7829    PlasticPalletSrs60CmX80Cm,
7830    /// Plastic pallet SRS 80 cm x 120 cm
7831    ///
7832    /// Rec21
7833    PlasticPalletSrs80CmX120Cm,
7834    /// Pallet, CHEP 40 cm x 60 cm
7835    ///
7836    /// rec21
7837    PalletChep40CmX60Cm,
7838    /// Pallet, CHEP 80 cm x 120 cm
7839    ///
7840    /// rec21
7841    PalletChep80CmX120Cm,
7842    /// Pallet, CHEP 100 cm x 120 cm
7843    ///
7844    /// rec21
7845    PalletChep100CmX120Cm,
7846    /// Pallet, AS 4068-1993
7847    ///
7848    /// rec21
7849    PalletAs40681993,
7850    /// Pallet, ISO T11
7851    ///
7852    /// rec21
7853    PalletIsoT11,
7854    /// Platform, unspecified weight or dimension
7855    ///
7856    /// rec21
7857    PlatformUnspecifiedWeightOrDimension,
7858    /// Pallet ISO 0 - 1/2 EURO Pallet
7859    ///
7860    /// Rec21
7861    PalletIso012EuroPallet,
7862    /// Pallet ISO 1 - 1/1 EURO Pallet
7863    ///
7864    /// Rec21
7865    PalletIso111EuroPallet,
7866    /// Pallet ISO 2 – 2/1 EURO Pallet
7867    ///
7868    /// Rec21
7869    PalletIso221EuroPallet,
7870    /// 1/4 EURO Pallet
7871    ///
7872    /// Rec21
7873    _14EuroPallet,
7874    /// Block
7875    ///
7876    /// rec21
7877    Block,
7878    /// 1/8 EURO Pallet
7879    ///
7880    /// Rec21
7881    _18EuroPallet,
7882    /// Synthetic pallet ISO 1
7883    ///
7884    /// Rec21
7885    SyntheticPalletIso1,
7886    /// Synthetic pallet ISO 2
7887    ///
7888    /// Rec21
7889    SyntheticPalletIso2,
7890    /// Wholesaler pallet
7891    ///
7892    /// Rec21
7893    WholesalerPallet,
7894    /// Pallet 80 X 100 cm
7895    ///
7896    /// Rec21
7897    Pallet80X100Cm,
7898    /// Pallet 60 X 100 cm
7899    ///
7900    /// Rec21
7901    Pallet60X100Cm,
7902    /// Oneway pallet
7903    ///
7904    /// Rec21
7905    OnewayPallet,
7906    /// Octabin
7907    ///
7908    /// rec21
7909    Octabin,
7910    /// Container, outer
7911    ///
7912    /// rec21
7913    ContainerOuter,
7914    /// Returnable pallet
7915    ///
7916    /// Rec21
7917    ReturnablePallet,
7918    /// Large bag, pallet sized
7919    ///
7920    /// Rec21
7921    LargeBagPalletSized,
7922    /// A wheeled pallet with raised rim (81 x 67 x 135)
7923    ///
7924    /// Rec21
7925    AWheeledPalletWithRaisedRim81X67X135,
7926    /// A Wheeled pallet with raised rim (81 x 72 x 135)
7927    ///
7928    /// Rec21
7929    AWheeledPalletWithRaisedRim81X72X135,
7930    /// Wheeled pallet with raised rim ( 81 x 60 x 16)
7931    ///
7932    /// Rec21
7933    WheeledPalletWithRaisedRim81X60X16,
7934    /// CHEP pallet 60 cm x 80 cm
7935    ///
7936    /// Rec21
7937    ChepPallet60CmX80Cm,
7938    /// Pan
7939    ///
7940    /// rec21
7941    Pan,
7942    /// LPR pallet 60 cm x 80 cm
7943    ///
7944    /// Rec21
7945    LprPallet60CmX80Cm,
7946    /// LPR pallet 80 cm x 120 cm
7947    ///
7948    /// Rec21
7949    LprPallet80CmX120Cm,
7950    /// Packet
7951    ///
7952    /// rec21
7953    Packet,
7954    /// Pallet, box Combined open-ended box and pallet
7955    ///
7956    /// rec21
7957    PalletBoxCombinedOpenEndedBoxAndPallet,
7958    /// Parcel
7959    ///
7960    /// rec21
7961    Parcel,
7962    /// Pallet, modular, collars 80cms * 100cms
7963    ///
7964    /// rec21
7965    PalletModularCollars80cms100cms,
7966    /// Pallet, modular, collars 80cms * 120cms
7967    ///
7968    /// rec21
7969    PalletModularCollars80cms120cms,
7970    /// Pen
7971    ///
7972    /// rec21
7973    Pen,
7974    /// Plate
7975    ///
7976    /// rec21
7977    Plate,
7978    /// Pitcher
7979    ///
7980    /// rec21
7981    Pitcher,
7982    /// Pipe
7983    ///
7984    /// rec21
7985    Pipe,
7986    /// Punnet
7987    ///
7988    /// rec21
7989    Punnet,
7990    /// Package
7991    ///
7992    /// rec21
7993    Package,
7994    /// Pail
7995    ///
7996    /// rec21
7997    Pail,
7998    /// Plank
7999    ///
8000    /// rec21
8001    Plank,
8002    /// Pouch
8003    ///
8004    /// rec21
8005    Pouch,
8006    /// Piece
8007    ///
8008    /// rec21
8009    Piece_Dup,
8010    /// Receptacle, plastic
8011    ///
8012    /// rec21
8013    ReceptaclePlastic,
8014    /// Pot
8015    ///
8016    /// rec21
8017    Pot,
8018    /// Tray
8019    ///
8020    /// rec21
8021    Tray,
8022    /// Pipes, in bundle/bunch/truss
8023    ///
8024    /// rec21
8025    PipesInBundleBunchTruss,
8026    /// Pallet
8027    ///
8028    /// rec21
8029    Pallet,
8030    /// Plates, in bundle/bunch/truss
8031    ///
8032    /// rec21
8033    PlatesInBundleBunchTruss,
8034    /// Planks, in bundle/bunch/truss
8035    ///
8036    /// rec21
8037    PlanksInBundleBunchTruss,
8038    /// Drum, steel, non-removable head
8039    ///
8040    /// rec21
8041    DrumSteelNonRemovableHead,
8042    /// Drum, steel, removable head
8043    ///
8044    /// rec21
8045    DrumSteelRemovableHead,
8046    /// Drum, aluminium, non-removable head
8047    ///
8048    /// rec21
8049    DrumAluminiumNonRemovableHead,
8050    /// Drum, aluminium, removable head
8051    ///
8052    /// rec21
8053    DrumAluminiumRemovableHead,
8054    /// Drum, plastic, non-removable head
8055    ///
8056    /// rec21
8057    DrumPlasticNonRemovableHead,
8058    /// Drum, plastic, removable head
8059    ///
8060    /// rec21
8061    DrumPlasticRemovableHead,
8062    /// Barrel, wooden, bung type
8063    ///
8064    /// rec21
8065    BarrelWoodenBungType,
8066    /// Barrel, wooden, removable head
8067    ///
8068    /// rec21
8069    BarrelWoodenRemovableHead,
8070    /// Jerrican, steel, non-removable head
8071    ///
8072    /// rec21
8073    JerricanSteelNonRemovableHead,
8074    /// Jerrican, steel, removable head
8075    ///
8076    /// rec21
8077    JerricanSteelRemovableHead,
8078    /// Jerrican, plastic, non-removable head
8079    ///
8080    /// rec21
8081    JerricanPlasticNonRemovableHead,
8082    /// Jerrican, plastic, removable head
8083    ///
8084    /// rec21
8085    JerricanPlasticRemovableHead,
8086    /// Box, wooden, natural wood, ordinary
8087    ///
8088    /// rec21
8089    BoxWoodenNaturalWoodOrdinary,
8090    /// Box, wooden, natural wood, with sift proof walls
8091    ///
8092    /// rec21
8093    BoxWoodenNaturalWoodWithSiftProofWalls,
8094    /// Box, plastic, expanded
8095    ///
8096    /// rec21
8097    BoxPlasticExpanded,
8098    /// Box, plastic, solid
8099    ///
8100    /// rec21
8101    BoxPlasticSolid,
8102    /// Rod
8103    ///
8104    /// rec21
8105    Rod,
8106    /// Ring
8107    ///
8108    /// rec21
8109    Ring,
8110    /// Rack, clothing hanger
8111    ///
8112    /// rec21
8113    RackClothingHanger,
8114    /// Rack
8115    ///
8116    /// rec21
8117    Rack,
8118    /// Reel
8119    ///
8120    /// rec21
8121    Reel,
8122    /// Roll
8123    ///
8124    /// rec21
8125    Roll,
8126    /// Rednet
8127    ///
8128    /// rec21
8129    Rednet,
8130    /// Rods, in bundle/bunch/truss
8131    ///
8132    /// rec21
8133    RodsInBundleBunchTruss,
8134    /// Sack
8135    ///
8136    /// rec21
8137    Sack,
8138    /// Slab
8139    ///
8140    /// rec21
8141    Slab,
8142    /// Crate, shallow
8143    ///
8144    /// rec21
8145    CrateShallow,
8146    /// Spindle
8147    ///
8148    /// rec21
8149    Spindle,
8150    /// Sea-chest
8151    ///
8152    /// rec21
8153    SeaChest,
8154    /// Sachet
8155    ///
8156    /// rec21
8157    Sachet,
8158    /// Skid
8159    ///
8160    /// rec21
8161    Skid,
8162    /// Case, skeleton
8163    ///
8164    /// rec21
8165    CaseSkeleton,
8166    /// Slipsheet
8167    ///
8168    /// rec21
8169    Slipsheet,
8170    /// Sheetmetal
8171    ///
8172    /// rec21
8173    Sheetmetal,
8174    /// Spool
8175    ///
8176    /// rec21
8177    Spool,
8178    /// Sheet, plastic wrapping
8179    ///
8180    /// rec21
8181    SheetPlasticWrapping,
8182    /// Case, steel
8183    ///
8184    /// rec21
8185    CaseSteel,
8186    /// Sheet
8187    ///
8188    /// rec21
8189    Sheet,
8190    /// Suitcase
8191    ///
8192    /// rec21
8193    Suitcase,
8194    /// Envelope, steel
8195    ///
8196    /// rec21
8197    EnvelopeSteel,
8198    /// Shrinkwrapped
8199    ///
8200    /// rec21
8201    Shrinkwrapped,
8202    /// Set
8203    ///
8204    /// Rec21
8205    Set_Dup,
8206    /// Sleeve
8207    ///
8208    /// rec21
8209    Sleeve,
8210    /// Sheets, in bundle/bunch/truss
8211    ///
8212    /// rec21
8213    SheetsInBundleBunchTruss,
8214    /// Tablet
8215    ///
8216    /// rec21
8217    Tablet_Dup,
8218    /// Tub
8219    ///
8220    /// rec21
8221    Tub,
8222    /// Tea-chest
8223    ///
8224    /// rec21
8225    TeaChest,
8226    /// Tube, collapsible
8227    ///
8228    /// rec21
8229    TubeCollapsible,
8230    /// Tyre
8231    ///
8232    /// rec21
8233    Tyre_Dup,
8234    /// Tank container, generic
8235    ///
8236    /// rec21
8237    TankContainerGeneric,
8238    /// Tierce
8239    ///
8240    /// rec21
8241    Tierce,
8242    /// Tank, rectangular
8243    ///
8244    /// rec21
8245    TankRectangular,
8246    /// Tub, with lid
8247    ///
8248    /// rec21
8249    TubWithLid,
8250    /// Tin
8251    ///
8252    /// rec21
8253    Tin,
8254    /// Tun
8255    ///
8256    /// rec21
8257    Tun,
8258    /// Trunk
8259    ///
8260    /// rec21
8261    Trunk,
8262    /// Truss
8263    ///
8264    /// rec21
8265    Truss,
8266    /// Bag, tote
8267    ///
8268    /// rec21
8269    BagTote,
8270    /// Tube
8271    ///
8272    /// rec21
8273    Tube,
8274    /// Tube, with nozzle
8275    ///
8276    /// rec21
8277    TubeWithNozzle,
8278    /// Pallet, triwall
8279    ///
8280    /// rec21
8281    PalletTriwall,
8282    /// Tank, cylindrical
8283    ///
8284    /// rec21
8285    TankCylindrical,
8286    /// Tubes, in bundle/bunch/truss
8287    ///
8288    /// rec21
8289    TubesInBundleBunchTruss,
8290    /// Uncaged
8291    ///
8292    /// rec21
8293    Uncaged,
8294    /// Unit
8295    ///
8296    /// rec21
8297    Unit,
8298    /// Vat
8299    ///
8300    /// rec21
8301    Vat,
8302    /// Bulk, gas (at 1031 mbar and 15°C)
8303    ///
8304    /// rec21
8305    BulkGasAt1031MbarAnd15C,
8306    /// Vial
8307    ///
8308    /// rec21
8309    Vial,
8310    /// Vanpack
8311    ///
8312    /// rec21
8313    Vanpack,
8314    /// Bulk, liquid
8315    ///
8316    /// rec21
8317    BulkLiquid,
8318    /// Vehicle
8319    ///
8320    /// rec21
8321    Vehicle,
8322    /// Bulk, solid, large particles (“nodules”)
8323    ///
8324    /// rec21
8325    BulkSolidLargeParticlesNodules,
8326    /// Vacuum-packed
8327    ///
8328    /// rec21
8329    VacuumPacked,
8330    /// Bulk, liquefied gas (at abnormal temperature/pressure)
8331    ///
8332    /// rec21
8333    BulkLiquefiedGasAtAbnormalTemperaturePressure,
8334    /// Bulk, solid, granular particles (“grains”)
8335    ///
8336    /// rec21
8337    BulkSolidGranularParticlesGrains,
8338    /// Bulk, scrap metal
8339    ///
8340    /// rec21
8341    BulkScrapMetal,
8342    /// Bulk, solid, fine particles (“powders”)
8343    ///
8344    /// rec21
8345    BulkSolidFineParticlesPowders,
8346    /// Intermediate bulk container
8347    ///
8348    /// rec21
8349    IntermediateBulkContainer,
8350    /// Wickerbottle
8351    ///
8352    /// rec21
8353    Wickerbottle,
8354    /// Intermediate bulk container, steel
8355    ///
8356    /// rec21
8357    IntermediateBulkContainerSteel,
8358    /// Intermediate bulk container, aluminium
8359    ///
8360    /// rec21
8361    IntermediateBulkContainerAluminium,
8362    /// Intermediate bulk container, metal
8363    ///
8364    /// rec21
8365    IntermediateBulkContainerMetal,
8366    /// Intermediate bulk container, steel, pressurised > 10 kpa
8367    ///
8368    /// rec21
8369    IntermediateBulkContainerSteelPressurised10Kpa,
8370    /// Intermediate bulk container, aluminium, pressurised > 10 kpa
8371    ///
8372    /// rec21
8373    IntermediateBulkContainerAluminiumPressurised10Kpa,
8374    /// Intermediate bulk container, metal, pressure 10 kpa
8375    ///
8376    /// rec21
8377    IntermediateBulkContainerMetalPressure10Kpa,
8378    /// Intermediate bulk container, steel, liquid
8379    ///
8380    /// rec21
8381    IntermediateBulkContainerSteelLiquid,
8382    /// Intermediate bulk container, aluminium, liquid
8383    ///
8384    /// rec21
8385    IntermediateBulkContainerAluminiumLiquid,
8386    /// Intermediate bulk container, metal, liquid
8387    ///
8388    /// rec21
8389    IntermediateBulkContainerMetalLiquid,
8390    /// Intermediate bulk container, woven plastic, without coat/liner
8391    ///
8392    /// rec21
8393    IntermediateBulkContainerWovenPlasticWithoutCoatLiner,
8394    /// Intermediate bulk container, woven plastic, coated
8395    ///
8396    /// rec21
8397    IntermediateBulkContainerWovenPlasticCoated,
8398    /// Intermediate bulk container, woven plastic, with liner
8399    ///
8400    /// rec21
8401    IntermediateBulkContainerWovenPlasticWithLiner,
8402    /// Intermediate bulk container, woven plastic, coated and liner
8403    ///
8404    /// rec21
8405    IntermediateBulkContainerWovenPlasticCoatedAndLiner,
8406    /// Intermediate bulk container, plastic film
8407    ///
8408    /// rec21
8409    IntermediateBulkContainerPlasticFilm,
8410    /// Intermediate bulk container, textile with out coat/liner
8411    ///
8412    /// rec21
8413    IntermediateBulkContainerTextileWithOutCoatLiner,
8414    /// Intermediate bulk container, natural wood, with inner liner
8415    ///
8416    /// rec21
8417    IntermediateBulkContainerNaturalWoodWithInnerLiner,
8418    /// Intermediate bulk container, textile, coated
8419    ///
8420    /// rec21
8421    IntermediateBulkContainerTextileCoated,
8422    /// Intermediate bulk container, textile, with liner
8423    ///
8424    /// rec21
8425    IntermediateBulkContainerTextileWithLiner,
8426    /// Intermediate bulk container, textile, coated and liner
8427    ///
8428    /// rec21
8429    IntermediateBulkContainerTextileCoatedAndLiner,
8430    /// Intermediate bulk container, plywood, with inner liner
8431    ///
8432    /// rec21
8433    IntermediateBulkContainerPlywoodWithInnerLiner,
8434    /// Intermediate bulk container, reconstituted wood, with inner liner
8435    ///
8436    /// rec21
8437    IntermediateBulkContainerReconstitutedWoodWithInnerLiner,
8438    /// Bag, woven plastic, without inner coat/liner
8439    ///
8440    /// rec21
8441    BagWovenPlasticWithoutInnerCoatLiner,
8442    /// Bag, woven plastic, sift proof
8443    ///
8444    /// rec21
8445    BagWovenPlasticSiftProof,
8446    /// Bag, woven plastic, water resistant
8447    ///
8448    /// rec21
8449    BagWovenPlasticWaterResistant,
8450    /// Bag, plastics film
8451    ///
8452    /// rec21
8453    BagPlasticsFilm,
8454    /// Bag, textile, without inner coat/liner
8455    ///
8456    /// rec21
8457    BagTextileWithoutInnerCoatLiner,
8458    /// Bag, textile, sift proof
8459    ///
8460    /// rec21
8461    BagTextileSiftProof,
8462    /// Bag, textile, water resistant
8463    ///
8464    /// rec21
8465    BagTextileWaterResistant,
8466    /// Bag, paper, multi-wall
8467    ///
8468    /// rec21
8469    BagPaperMultiWall,
8470    /// Bag, paper, multi-wall, water resistant
8471    ///
8472    /// rec21
8473    BagPaperMultiWallWaterResistant,
8474    /// Composite packaging, plastic receptacle in steel drum
8475    ///
8476    /// rec21
8477    CompositePackagingPlasticReceptacleInSteelDrum,
8478    /// Composite packaging, plastic receptacle in steel crate box
8479    ///
8480    /// rec21
8481    CompositePackagingPlasticReceptacleInSteelCrateBox,
8482    /// Composite packaging, plastic receptacle in aluminium drum
8483    ///
8484    /// rec21
8485    CompositePackagingPlasticReceptacleInAluminiumDrum,
8486    /// Composite packaging, plastic receptacle in aluminium crate
8487    ///
8488    /// rec21
8489    CompositePackagingPlasticReceptacleInAluminiumCrate,
8490    /// Composite packaging, plastic receptacle in wooden box
8491    ///
8492    /// rec21
8493    CompositePackagingPlasticReceptacleInWoodenBox,
8494    /// Composite packaging, plastic receptacle in plywood drum
8495    ///
8496    /// rec21
8497    CompositePackagingPlasticReceptacleInPlywoodDrum,
8498    /// Composite packaging, plastic receptacle in plywood box
8499    ///
8500    /// rec21
8501    CompositePackagingPlasticReceptacleInPlywoodBox,
8502    /// Composite packaging, plastic receptacle in fibre drum
8503    ///
8504    /// rec21
8505    CompositePackagingPlasticReceptacleInFibreDrum,
8506    /// Composite packaging, plastic receptacle in fibreboard box
8507    ///
8508    /// rec21
8509    CompositePackagingPlasticReceptacleInFibreboardBox,
8510    /// Composite packaging, plastic receptacle in plastic drum
8511    ///
8512    /// rec21
8513    CompositePackagingPlasticReceptacleInPlasticDrum,
8514    /// Composite packaging, plastic receptacle in solid plastic box
8515    ///
8516    /// rec21
8517    CompositePackagingPlasticReceptacleInSolidPlasticBox,
8518    /// Composite packaging, glass receptacle in steel drum
8519    ///
8520    /// rec21
8521    CompositePackagingGlassReceptacleInSteelDrum,
8522    /// Composite packaging, glass receptacle in steel crate box
8523    ///
8524    /// rec21
8525    CompositePackagingGlassReceptacleInSteelCrateBox,
8526    /// Composite packaging, glass receptacle in aluminium drum
8527    ///
8528    /// rec21
8529    CompositePackagingGlassReceptacleInAluminiumDrum,
8530    /// Composite packaging, glass receptacle in aluminium crate
8531    ///
8532    /// rec21
8533    CompositePackagingGlassReceptacleInAluminiumCrate,
8534    /// Composite packaging, glass receptacle in wooden box
8535    ///
8536    /// rec21
8537    CompositePackagingGlassReceptacleInWoodenBox,
8538    /// Composite packaging, glass receptacle in plywood drum
8539    ///
8540    /// rec21
8541    CompositePackagingGlassReceptacleInPlywoodDrum,
8542    /// Composite packaging, glass receptacle in wickerwork hamper
8543    ///
8544    /// rec21
8545    CompositePackagingGlassReceptacleInWickerworkHamper,
8546    /// Composite packaging, glass receptacle in fibre drum
8547    ///
8548    /// rec21
8549    CompositePackagingGlassReceptacleInFibreDrum,
8550    /// Composite packaging, glass receptacle in fibreboard box
8551    ///
8552    /// rec21
8553    CompositePackagingGlassReceptacleInFibreboardBox,
8554    /// Composite packaging, glass receptacle in expandable plastic pack
8555    ///
8556    /// rec21
8557    CompositePackagingGlassReceptacleInExpandablePlasticPack,
8558    /// Composite packaging, glass receptacle in solid plastic pack
8559    ///
8560    /// rec21
8561    CompositePackagingGlassReceptacleInSolidPlasticPack,
8562    /// Intermediate bulk container, paper, multi-wall
8563    ///
8564    /// rec21
8565    IntermediateBulkContainerPaperMultiWall,
8566    /// Bag, large
8567    ///
8568    /// rec21
8569    BagLarge,
8570    /// Intermediate bulk container, paper, multi-wall, water resistant
8571    ///
8572    /// rec21
8573    IntermediateBulkContainerPaperMultiWallWaterResistant,
8574    /// Intermediate bulk container, rigid plastic, with structural equipment, solids
8575    ///
8576    /// rec21
8577    IntermediateBulkContainerRigidPlasticWithStructuralEquipmentSolids,
8578    /// Intermediate bulk container, rigid plastic, freestanding, solids
8579    ///
8580    /// rec21
8581    IntermediateBulkContainerRigidPlasticFreestandingSolids,
8582    /// Intermediate bulk container, rigid plastic, with structural equipment, pressurised
8583    ///
8584    /// rec21
8585    IntermediateBulkContainerRigidPlasticWithStructuralEquipmentPressurised,
8586    /// Intermediate bulk container, rigid plastic, freestanding, pressurised
8587    ///
8588    /// rec21
8589    IntermediateBulkContainerRigidPlasticFreestandingPressurised,
8590    /// Intermediate bulk container, rigid plastic, with structural equipment, liquids
8591    ///
8592    /// rec21
8593    IntermediateBulkContainerRigidPlasticWithStructuralEquipmentLiquids,
8594    /// Intermediate bulk container, rigid plastic, freestanding, liquids
8595    ///
8596    /// rec21
8597    IntermediateBulkContainerRigidPlasticFreestandingLiquids,
8598    /// Intermediate bulk container, composite, rigid plastic, solids
8599    ///
8600    /// rec21
8601    IntermediateBulkContainerCompositeRigidPlasticSolids,
8602    /// Intermediate bulk container, composite, flexible plastic, solids
8603    ///
8604    /// rec21
8605    IntermediateBulkContainerCompositeFlexiblePlasticSolids,
8606    /// Intermediate bulk container, composite, rigid plastic, pressurised
8607    ///
8608    /// rec21
8609    IntermediateBulkContainerCompositeRigidPlasticPressurised,
8610    /// Intermediate bulk container, composite, flexible plastic, pressurised
8611    ///
8612    /// rec21
8613    IntermediateBulkContainerCompositeFlexiblePlasticPressurised,
8614    /// Intermediate bulk container, composite, rigid plastic, liquids
8615    ///
8616    /// rec21
8617    IntermediateBulkContainerCompositeRigidPlasticLiquids,
8618    /// Intermediate bulk container, composite, flexible plastic, liquids
8619    ///
8620    /// rec21
8621    IntermediateBulkContainerCompositeFlexiblePlasticLiquids,
8622    /// Intermediate bulk container, composite
8623    ///
8624    /// rec21
8625    IntermediateBulkContainerComposite,
8626    /// Intermediate bulk container, fibreboard
8627    ///
8628    /// rec21
8629    IntermediateBulkContainerFibreboard,
8630    /// Intermediate bulk container, flexible
8631    ///
8632    /// rec21
8633    IntermediateBulkContainerFlexible,
8634    /// Intermediate bulk container, metal, other than steel
8635    ///
8636    /// rec21
8637    IntermediateBulkContainerMetalOtherThanSteel,
8638    /// Intermediate bulk container, natural wood
8639    ///
8640    /// rec21
8641    IntermediateBulkContainerNaturalWood,
8642    /// Intermediate bulk container, plywood
8643    ///
8644    /// rec21
8645    IntermediateBulkContainerPlywood,
8646    /// Intermediate bulk container, reconstituted wood
8647    ///
8648    /// rec21
8649    IntermediateBulkContainerReconstitutedWood,
8650    /// Mutually defined
8651    ///
8652    /// rec21
8653    MutuallyDefined_Dup,
8654}
8655
8656impl crate::Code for Unit {
8657    fn code(self) -> &'static str {
8658        match self {
8659            Unit::Group => "10",
8660            Unit::Outfit => "11",
8661            Unit::Ration => "13",
8662            Unit::Shot => "14",
8663            Unit::StickMilitary => "15",
8664            Unit::TwentyFootContainer => "20",
8665            Unit::FortyFootContainer => "21",
8666            Unit::DecilitrePerGram => "22",
8667            Unit::GramPerCubicCentimetre => "23",
8668            Unit::TheoreticalPound => "24",
8669            Unit::GramPerSquareCentimetre => "25",
8670            Unit::TheoreticalTon => "27",
8671            Unit::KilogramPerSquareMetre => "28",
8672            Unit::KilopascalSquareMetrePerGram => "33",
8673            Unit::KilopascalPerMillimetre => "34",
8674            Unit::MillilitrePerSquareCentimetreSecond => "35",
8675            Unit::OuncePerSquareFoot => "37",
8676            Unit::OuncePerSquareFootPer001inch => "38",
8677            Unit::MillilitrePerSecond => "40",
8678            Unit::MillilitrePerMinute => "41",
8679            Unit::Sitas => "56",
8680            Unit::Mesh => "57",
8681            Unit::NetKilogram => "58",
8682            Unit::PartPerMillion => "59",
8683            Unit::PercentWeight => "60",
8684            Unit::PartPerBillionUs => "61",
8685            Unit::Millipascal => "74",
8686            Unit::MilliInch => "77",
8687            Unit::PoundPerSquareInchAbsolute => "80",
8688            Unit::Henry => "81",
8689            Unit::FootPoundForce => "85",
8690            Unit::PoundPerCubicFoot => "87",
8691            Unit::Poise => "89",
8692            Unit::Stokes => "91",
8693            Unit::FixedRate => "1I",
8694            Unit::RadianPerSecond => "2A",
8695            Unit::RadianPerSecondSquared => "2B",
8696            Unit::Roentgen => "2C",
8697            Unit::VoltAc => "2G",
8698            Unit::VoltDc => "2H",
8699            Unit::BritishThermalUnitInternationalTablePerHour => "2I",
8700            Unit::CubicCentimetrePerSecond => "2J",
8701            Unit::CubicFootPerHour => "2K",
8702            Unit::CubicFootPerMinute => "2L",
8703            Unit::CentimetrePerSecond => "2M",
8704            Unit::Decibel => "2N",
8705            Unit::Kilobyte => "2P",
8706            Unit::Kilobecquerel => "2Q",
8707            Unit::Kilocurie => "2R",
8708            Unit::Megagram => "2U",
8709            Unit::MetrePerMinute => "2X",
8710            Unit::Milliroentgen => "2Y",
8711            Unit::Millivolt => "2Z",
8712            Unit::Megajoule => "3B",
8713            Unit::Manmonth => "3C",
8714            Unit::Centistokes => "4C",
8715            Unit::Microlitre => "4G",
8716            Unit::MicrometreMicron => "4H",
8717            Unit::Milliampere => "4K",
8718            Unit::Megabyte => "4L",
8719            Unit::MilligramPerHour => "4M",
8720            Unit::Megabecquerel => "4N",
8721            Unit::Microfarad => "4O",
8722            Unit::NewtonPerMetre => "4P",
8723            Unit::OunceInch => "4Q",
8724            Unit::OunceFoot => "4R",
8725            Unit::Picofarad => "4T",
8726            Unit::PoundPerHour => "4U",
8727            Unit::TonUsPerHour => "4W",
8728            Unit::KilolitrePerHour => "4X",
8729            Unit::BarrelUsPerMinute => "5A",
8730            Unit::Batch => "5B",
8731            Unit::MmscfDay => "5E",
8732            Unit::HydraulicHorsePower => "5J",
8733            Unit::AmpereSquareMetrePerJouleSecond => "A10",
8734            Unit::Angstrom => "A11",
8735            Unit::AstronomicalUnit => "A12",
8736            Unit::Attojoule => "A13",
8737            Unit::Barn => "A14",
8738            Unit::BarnPerElectronvolt => "A15",
8739            Unit::BarnPerSteradianElectronvolt => "A16",
8740            Unit::BarnPerSteradian => "A17",
8741            Unit::BecquerelPerKilogram => "A18",
8742            Unit::BecquerelPerCubicMetre => "A19",
8743            Unit::AmperePerCentimetre => "A2",
8744            Unit::BritishThermalUnitInternationalTablePerSecondSquareFootDegreeRankine => "A20",
8745            Unit::BritishThermalUnitInternationalTablePerPoundDegreeRankine => "A21",
8746            Unit::BritishThermalUnitInternationalTablePerSecondFootDegreeRankine => "A22",
8747            Unit::BritishThermalUnitInternationalTablePerHourSquareFootDegreeRankine => "A23",
8748            Unit::CandelaPerSquareMetre => "A24",
8749            Unit::CoulombMetre => "A26",
8750            Unit::CoulombMetreSquaredPerVolt => "A27",
8751            Unit::CoulombPerCubicCentimetre => "A28",
8752            Unit::CoulombPerCubicMetre => "A29",
8753            Unit::AmperePerMillimetre => "A3",
8754            Unit::CoulombPerCubicMillimetre => "A30",
8755            Unit::CoulombPerKilogramSecond => "A31",
8756            Unit::CoulombPerMole => "A32",
8757            Unit::CoulombPerSquareCentimetre => "A33",
8758            Unit::CoulombPerSquareMetre => "A34",
8759            Unit::CoulombPerSquareMillimetre => "A35",
8760            Unit::CubicCentimetrePerMole => "A36",
8761            Unit::CubicDecimetrePerMole => "A37",
8762            Unit::CubicMetrePerCoulomb => "A38",
8763            Unit::CubicMetrePerKilogram => "A39",
8764            Unit::AmperePerSquareCentimetre => "A4",
8765            Unit::CubicMetrePerMole => "A40",
8766            Unit::AmperePerSquareMetre => "A41",
8767            Unit::CuriePerKilogram => "A42",
8768            Unit::DeadweightTonnage => "A43",
8769            Unit::Decalitre => "A44",
8770            Unit::Decametre => "A45",
8771            Unit::Decitex => "A47",
8772            Unit::DegreeRankine => "A48",
8773            Unit::Denier => "A49",
8774            Unit::AmpereSquareMetre => "A5",
8775            Unit::Electronvolt => "A53",
8776            Unit::ElectronvoltPerMetre => "A54",
8777            Unit::ElectronvoltSquareMetre => "A55",
8778            Unit::ElectronvoltSquareMetrePerKilogram => "A56",
8779            Unit::_8PartCloudCover => "A59",
8780            Unit::AmperePerSquareMetreKelvinSquared => "A6",
8781            Unit::Exajoule => "A68",
8782            Unit::FaradPerMetre => "A69",
8783            Unit::AmperePerSquareMillimetre => "A7",
8784            Unit::Femtojoule => "A70",
8785            Unit::Femtometre => "A71",
8786            Unit::FootPerSecondSquared => "A73",
8787            Unit::FootPoundForcePerSecond => "A74",
8788            Unit::FreightTon => "A75",
8789            Unit::Gal => "A76",
8790            Unit::AmpereSecond => "A8",
8791            Unit::GigacoulombPerCubicMetre => "A84",
8792            Unit::Gigaelectronvolt => "A85",
8793            Unit::Gigahertz => "A86",
8794            Unit::Gigaohm => "A87",
8795            Unit::GigaohmMetre => "A88",
8796            Unit::Gigapascal => "A89",
8797            Unit::Rate => "A9",
8798            Unit::Gigawatt => "A90",
8799            Unit::Gon => "A91",
8800            Unit::GramPerCubicMetre => "A93",
8801            Unit::GramPerMole => "A94",
8802            Unit::Gray => "A95",
8803            Unit::GrayPerSecond => "A96",
8804            Unit::Hectopascal => "A97",
8805            Unit::HenryPerMetre => "A98",
8806            Unit::Bit => "A99",
8807            Unit::Ball => "AA",
8808            Unit::BulkPack => "AB",
8809            Unit::Acre => "ACR",
8810            Unit::Activity => "ACT",
8811            Unit::Byte => "AD",
8812            Unit::AmperePerMetre => "AE",
8813            Unit::AdditionalMinute => "AH",
8814            Unit::AverageMinutePerCall => "AI",
8815            Unit::Fathom => "AK",
8816            Unit::AccessLine => "AL",
8817            Unit::AmpereHour => "AMH",
8818            Unit::Ampere => "AMP",
8819            Unit::Year => "ANN",
8820            Unit::TroyOunceOrApothecaryOunce => "APZ",
8821            Unit::AntiHemophilicFactorAhfUnit => "AQ",
8822            Unit::Assortment => "AS",
8823            Unit::AlcoholicStrengthByMass => "ASM",
8824            Unit::AlcoholicStrengthByVolume => "ASU",
8825            Unit::StandardAtmosphere => "ATM",
8826            Unit::AmericanWireGauge => "AWG",
8827            Unit::Assembly => "AY",
8828            Unit::BritishThermalUnitInternationalTablePerPound => "AZ",
8829            Unit::BarrelUsPerDay => "B1",
8830            Unit::BitPerSecond => "B10",
8831            Unit::JoulePerKilogramKelvin => "B11",
8832            Unit::JoulePerMetre => "B12",
8833            Unit::JoulePerSquareMetre => "B13",
8834            Unit::JoulePerMetreToFourthPower => "B14",
8835            Unit::JoulePerMole => "B15",
8836            Unit::JoulePerMoleKelvin => "B16",
8837            Unit::Credit => "B17",
8838            Unit::JouleSecond => "B18",
8839            Unit::Digit => "B19",
8840            Unit::JouleSquareMetrePerKilogram => "B20",
8841            Unit::KelvinPerWatt => "B21",
8842            Unit::Kiloampere => "B22",
8843            Unit::KiloamperePerSquareMetre => "B23",
8844            Unit::KiloamperePerMetre => "B24",
8845            Unit::KilobecquerelPerKilogram => "B25",
8846            Unit::Kilocoulomb => "B26",
8847            Unit::KilocoulombPerCubicMetre => "B27",
8848            Unit::KilocoulombPerSquareMetre => "B28",
8849            Unit::Kiloelectronvolt => "B29",
8850            Unit::BattingPound => "B3",
8851            Unit::Gibibit => "B30",
8852            Unit::KilogramMetrePerSecond => "B31",
8853            Unit::KilogramMetreSquared => "B32",
8854            Unit::KilogramMetreSquaredPerSecond => "B33",
8855            Unit::KilogramPerCubicDecimetre => "B34",
8856            Unit::KilogramPerLitre => "B35",
8857            Unit::BarrelImperial => "B4",
8858            Unit::KilojoulePerKelvin => "B41",
8859            Unit::KilojoulePerKilogram => "B42",
8860            Unit::KilojoulePerKilogramKelvin => "B43",
8861            Unit::KilojoulePerMole => "B44",
8862            Unit::Kilomole => "B45",
8863            Unit::KilomolePerCubicMetre => "B46",
8864            Unit::Kilonewton => "B47",
8865            Unit::KilonewtonMetre => "B48",
8866            Unit::Kiloohm => "B49",
8867            Unit::KiloohmMetre => "B50",
8868            Unit::Kilosecond => "B52",
8869            Unit::Kilosiemens => "B53",
8870            Unit::KilosiemensPerMetre => "B54",
8871            Unit::KilovoltPerMetre => "B55",
8872            Unit::KiloweberPerMetre => "B56",
8873            Unit::LightYear => "B57",
8874            Unit::LitrePerMole => "B58",
8875            Unit::LumenHour => "B59",
8876            Unit::LumenPerSquareMetre => "B60",
8877            Unit::LumenPerWatt => "B61",
8878            Unit::LumenSecond => "B62",
8879            Unit::LuxHour => "B63",
8880            Unit::LuxSecond => "B64",
8881            Unit::MegaamperePerSquareMetre => "B66",
8882            Unit::MegabecquerelPerKilogram => "B67",
8883            Unit::Gigabit => "B68",
8884            Unit::MegacoulombPerCubicMetre => "B69",
8885            Unit::Cycle => "B7",
8886            Unit::MegacoulombPerSquareMetre => "B70",
8887            Unit::Megaelectronvolt => "B71",
8888            Unit::MegagramPerCubicMetre => "B72",
8889            Unit::Meganewton => "B73",
8890            Unit::MeganewtonMetre => "B74",
8891            Unit::Megaohm => "B75",
8892            Unit::MegaohmMetre => "B76",
8893            Unit::MegasiemensPerMetre => "B77",
8894            Unit::Megavolt => "B78",
8895            Unit::MegavoltPerMetre => "B79",
8896            Unit::JoulePerCubicMetre => "B8",
8897            Unit::GigabitPerSecond => "B80",
8898            Unit::ReciprocalMetreSquaredReciprocalSecond => "B81",
8899            Unit::InchPerLinearFoot => "B82",
8900            Unit::MetreToFourthPower => "B83",
8901            Unit::Microampere => "B84",
8902            Unit::Microbar => "B85",
8903            Unit::Microcoulomb => "B86",
8904            Unit::MicrocoulombPerCubicMetre => "B87",
8905            Unit::MicrocoulombPerSquareMetre => "B88",
8906            Unit::MicrofaradPerMetre => "B89",
8907            Unit::Microhenry => "B90",
8908            Unit::MicrohenryPerMetre => "B91",
8909            Unit::Micronewton => "B92",
8910            Unit::MicronewtonMetre => "B93",
8911            Unit::Microohm => "B94",
8912            Unit::MicroohmMetre => "B95",
8913            Unit::Micropascal => "B96",
8914            Unit::Microradian => "B97",
8915            Unit::Microsecond => "B98",
8916            Unit::Microsiemens => "B99",
8917            Unit::BarUnitPressure => "BAR",
8918            Unit::BaseBox => "BB",
8919            Unit::BoardFoot => "BFT",
8920            Unit::BrakeHorsePower => "BHP",
8921            Unit::BillionEur => "BIL",
8922            Unit::DryBarrelUs => "BLD",
8923            Unit::BarrelUs => "BLL",
8924            Unit::HundredBoardFoot => "BP",
8925            Unit::BeatsPerMinute => "BPM",
8926            Unit::Becquerel => "BQL",
8927            Unit::BritishThermalUnitInternationalTable => "BTU",
8928            Unit::BushelUs => "BUA",
8929            Unit::BushelUk => "BUI",
8930            Unit::Call => "C0",
8931            Unit::Millifarad => "C10",
8932            Unit::Milligal => "C11",
8933            Unit::MilligramPerMetre => "C12",
8934            Unit::Milligray => "C13",
8935            Unit::Millihenry => "C14",
8936            Unit::Millijoule => "C15",
8937            Unit::MillimetrePerSecond => "C16",
8938            Unit::MillimetreSquaredPerSecond => "C17",
8939            Unit::Millimole => "C18",
8940            Unit::MolePerKilogram => "C19",
8941            Unit::Millinewton => "C20",
8942            Unit::Kibibit => "C21",
8943            Unit::MillinewtonPerMetre => "C22",
8944            Unit::MilliohmMetre => "C23",
8945            Unit::MillipascalSecond => "C24",
8946            Unit::Milliradian => "C25",
8947            Unit::Millisecond => "C26",
8948            Unit::Millisiemens => "C27",
8949            Unit::Millisievert => "C28",
8950            Unit::Millitesla => "C29",
8951            Unit::MicrovoltPerMetre => "C3",
8952            Unit::MillivoltPerMetre => "C30",
8953            Unit::Milliwatt => "C31",
8954            Unit::MilliwattPerSquareMetre => "C32",
8955            Unit::Milliweber => "C33",
8956            Unit::Mole => "C34",
8957            Unit::MolePerCubicDecimetre => "C35",
8958            Unit::MolePerCubicMetre => "C36",
8959            Unit::Kilobit => "C37",
8960            Unit::MolePerLitre => "C38",
8961            Unit::Nanoampere => "C39",
8962            Unit::Nanocoulomb => "C40",
8963            Unit::Nanofarad => "C41",
8964            Unit::NanofaradPerMetre => "C42",
8965            Unit::Nanohenry => "C43",
8966            Unit::NanohenryPerMetre => "C44",
8967            Unit::Nanometre => "C45",
8968            Unit::NanoohmMetre => "C46",
8969            Unit::Nanosecond => "C47",
8970            Unit::Nanotesla => "C48",
8971            Unit::Nanowatt => "C49",
8972            Unit::Neper => "C50",
8973            Unit::NeperPerSecond => "C51",
8974            Unit::Picometre => "C52",
8975            Unit::NewtonMetreSecond => "C53",
8976            Unit::NewtonMetreSquaredPerKilogramSquared => "C54",
8977            Unit::NewtonPerSquareMetre => "C55",
8978            Unit::NewtonPerSquareMillimetre => "C56",
8979            Unit::NewtonSecond => "C57",
8980            Unit::NewtonSecondPerMetre => "C58",
8981            Unit::Octave => "C59",
8982            Unit::OhmCentimetre => "C60",
8983            Unit::OhmMetre => "C61",
8984            Unit::One => "C62",
8985            Unit::Parsec => "C63",
8986            Unit::PascalPerKelvin => "C64",
8987            Unit::PascalSecond => "C65",
8988            Unit::PascalSecondPerCubicMetre => "C66",
8989            Unit::PascalSecondPerMetre => "C67",
8990            Unit::Petajoule => "C68",
8991            Unit::Phon => "C69",
8992            Unit::Centipoise => "C7",
8993            Unit::Picoampere => "C70",
8994            Unit::Picocoulomb => "C71",
8995            Unit::PicofaradPerMetre => "C72",
8996            Unit::Picohenry => "C73",
8997            Unit::KilobitPerSecond => "C74",
8998            Unit::Picowatt => "C75",
8999            Unit::PicowattPerSquareMetre => "C76",
9000            Unit::PoundForce => "C78",
9001            Unit::KilovoltAmpereHour => "C79",
9002            Unit::MillicoulombPerKilogram => "C8",
9003            Unit::Rad => "C80",
9004            Unit::Radian => "C81",
9005            Unit::RadianSquareMetrePerMole => "C82",
9006            Unit::RadianSquareMetrePerKilogram => "C83",
9007            Unit::RadianPerMetre => "C84",
9008            Unit::ReciprocalAngstrom => "C85",
9009            Unit::ReciprocalCubicMetre => "C86",
9010            Unit::ReciprocalCubicMetrePerSecond => "C87",
9011            Unit::ReciprocalElectronVoltPerCubicMetre => "C88",
9012            Unit::ReciprocalHenry => "C89",
9013            Unit::CoilGroup => "C9",
9014            Unit::ReciprocalJoulePerCubicMetre => "C90",
9015            Unit::ReciprocalKelvinOrKelvinToPowerMinusOne => "C91",
9016            Unit::ReciprocalMetre => "C92",
9017            Unit::ReciprocalSquareMetre => "C93",
9018            Unit::ReciprocalMinute => "C94",
9019            Unit::ReciprocalMole => "C95",
9020            Unit::ReciprocalPascalOrPascalToPowerMinusOne => "C96",
9021            Unit::ReciprocalSecond => "C97",
9022            Unit::ReciprocalSecondPerMetreSquared => "C99",
9023            Unit::CarryingCapacityInMetricTon => "CCT",
9024            Unit::Candela => "CDL",
9025            Unit::DegreeCelsius => "CEL",
9026            Unit::Hundred => "CEN",
9027            Unit::Card => "CG",
9028            Unit::Centigram => "CGM",
9029            Unit::CoulombPerKilogram => "CKG",
9030            Unit::HundredLeave => "CLF",
9031            Unit::Centilitre => "CLT",
9032            Unit::SquareCentimetre => "CMK",
9033            Unit::CubicCentimetre => "CMQ",
9034            Unit::Centimetre => "CMT",
9035            Unit::HundredPack => "CNP",
9036            Unit::CentalUk => "CNT",
9037            Unit::Coulomb => "COU",
9038            Unit::ContentGram => "CTG",
9039            Unit::MetricCarat => "CTM",
9040            Unit::ContentTonMetric => "CTN",
9041            Unit::Curie => "CUR",
9042            Unit::HundredPoundCwtHundredWeightUs => "CWA",
9043            Unit::HundredWeightUk => "CWI",
9044            Unit::KilowattHourPerHour => "D03",
9045            Unit::LotUnitWeight => "D04",
9046            Unit::ReciprocalSecondPerSteradian => "D1",
9047            Unit::SiemensPerMetre => "D10",
9048            Unit::Mebibit => "D11",
9049            Unit::SiemensSquareMetrePerMole => "D12",
9050            Unit::Sievert => "D13",
9051            Unit::Sone => "D15",
9052            Unit::SquareCentimetrePerErg => "D16",
9053            Unit::SquareCentimetrePerSteradianErg => "D17",
9054            Unit::MetreKelvin => "D18",
9055            Unit::SquareMetreKelvinPerWatt => "D19",
9056            Unit::ReciprocalSecondPerSteradianMetreSquared => "D2",
9057            Unit::SquareMetrePerJoule => "D20",
9058            Unit::SquareMetrePerKilogram => "D21",
9059            Unit::SquareMetrePerMole => "D22",
9060            Unit::PenGramProtein => "D23",
9061            Unit::SquareMetrePerSteradian => "D24",
9062            Unit::SquareMetrePerSteradianJoule => "D25",
9063            Unit::SquareMetrePerVoltSecond => "D26",
9064            Unit::Steradian => "D27",
9065            Unit::Terahertz => "D29",
9066            Unit::Terajoule => "D30",
9067            Unit::Terawatt => "D31",
9068            Unit::TerawattHour => "D32",
9069            Unit::Tesla => "D33",
9070            Unit::Tex => "D34",
9071            Unit::Megabit => "D36",
9072            Unit::TonnePerCubicMetre => "D41",
9073            Unit::TropicalYear => "D42",
9074            Unit::UnifiedAtomicMassUnit => "D43",
9075            Unit::Var => "D44",
9076            Unit::VoltSquaredPerKelvinSquared => "D45",
9077            Unit::VoltAmpere => "D46",
9078            Unit::VoltPerCentimetre => "D47",
9079            Unit::VoltPerKelvin => "D48",
9080            Unit::MillivoltPerKelvin => "D49",
9081            Unit::KilogramPerSquareCentimetre => "D5",
9082            Unit::VoltPerMetre => "D50",
9083            Unit::VoltPerMillimetre => "D51",
9084            Unit::WattPerKelvin => "D52",
9085            Unit::WattPerMetreKelvin => "D53",
9086            Unit::WattPerSquareMetre => "D54",
9087            Unit::WattPerSquareMetreKelvin => "D55",
9088            Unit::WattPerSquareMetreKelvinToFourthPower => "D56",
9089            Unit::WattPerSteradian => "D57",
9090            Unit::WattPerSteradianSquareMetre => "D58",
9091            Unit::WeberPerMetre => "D59",
9092            Unit::RoentgenPerSecond => "D6",
9093            Unit::WeberPerMillimetre => "D60",
9094            Unit::MinuteUnitAngle => "D61",
9095            Unit::SecondUnitAngle => "D62",
9096            Unit::Book => "D63",
9097            Unit::Round => "D65",
9098            Unit::NumberWords => "D68",
9099            Unit::InchToFourthPower => "D69",
9100            Unit::JouleSquareMetre => "D73",
9101            Unit::KilogramPerMole => "D74",
9102            Unit::Megacoulomb => "D77",
9103            Unit::MegajoulePerSecond => "D78",
9104            Unit::Microwatt => "D80",
9105            Unit::Microtesla => "D81",
9106            Unit::Microvolt => "D82",
9107            Unit::MillinewtonMetre => "D83",
9108            Unit::MicrowattPerSquareMetre => "D85",
9109            Unit::Millicoulomb => "D86",
9110            Unit::MillimolePerKilogram => "D87",
9111            Unit::MillicoulombPerCubicMetre => "D88",
9112            Unit::MillicoulombPerSquareMetre => "D89",
9113            Unit::Rem => "D91",
9114            Unit::SecondPerCubicMetre => "D93",
9115            Unit::SecondPerCubicMetreRadian => "D94",
9116            Unit::JoulePerGram => "D95",
9117            Unit::Decare => "DAA",
9118            Unit::TenDay => "DAD",
9119            Unit::Day => "DAY",
9120            Unit::DryPound => "DB",
9121            Unit::DecibelMilliwatts => "DBM",
9122            Unit::DecibelWatt => "DBW",
9123            Unit::DegreeUnitAngle => "DD",
9124            Unit::Decade => "DEC",
9125            Unit::Decigram => "DG",
9126            Unit::Decagram => "DJ",
9127            Unit::Decilitre => "DLT",
9128            Unit::CubicDecametre => "DMA",
9129            Unit::SquareDecimetre => "DMK",
9130            Unit::StandardKilolitre => "DMO",
9131            Unit::CubicDecimetre => "DMQ",
9132            Unit::Decimetre => "DMT",
9133            Unit::DecinewtonMetre => "DN",
9134            Unit::DozenPiece => "DPC",
9135            Unit::DozenPair => "DPR",
9136            Unit::DisplacementTonnage => "DPT",
9137            Unit::DramUs => "DRA",
9138            Unit::DramUk => "DRI",
9139            Unit::DozenRoll => "DRL",
9140            Unit::DryTon => "DT",
9141            Unit::Decitonne => "DTN",
9142            Unit::Pennyweight => "DWT",
9143            Unit::Dozen => "DZN",
9144            Unit::DozenPack => "DZP",
9145            Unit::NewtonPerSquareCentimetre => "E01",
9146            Unit::MegawattHourPerHour => "E07",
9147            Unit::MegawattPerHertz => "E08",
9148            Unit::MilliampereHour => "E09",
9149            Unit::DegreeDay => "E10",
9150            Unit::Mille => "E12",
9151            Unit::KilocalorieInternationalTable => "E14",
9152            Unit::KilocalorieThermochemicalPerHour => "E15",
9153            Unit::MillionBtuItPerHour => "E16",
9154            Unit::CubicFootPerSecond => "E17",
9155            Unit::TonnePerHour => "E18",
9156            Unit::Ping => "E19",
9157            Unit::MegabitPerSecond => "E20",
9158            Unit::Shares => "E21",
9159            Unit::Teu => "E22",
9160            Unit::Tyre => "E23",
9161            Unit::ActiveUnit => "E25",
9162            Unit::Dose => "E27",
9163            Unit::AirDryTon => "E28",
9164            Unit::Strand => "E30",
9165            Unit::SquareMetrePerLitre => "E31",
9166            Unit::LitrePerHour => "E32",
9167            Unit::FootPerThousand => "E33",
9168            Unit::Gigabyte => "E34",
9169            Unit::Terabyte => "E35",
9170            Unit::Petabyte => "E36",
9171            Unit::Pixel => "E37",
9172            Unit::Megapixel => "E38",
9173            Unit::DotsPerInch => "E39",
9174            Unit::GrossKilogram => "E4",
9175            Unit::PartPerHundredThousand => "E40",
9176            Unit::KilogramForcePerSquareMillimetre => "E41",
9177            Unit::KilogramForcePerSquareCentimetre => "E42",
9178            Unit::JoulePerSquareCentimetre => "E43",
9179            Unit::KilogramForceMetrePerSquareCentimetre => "E44",
9180            Unit::Milliohm => "E45",
9181            Unit::KilowattHourPerCubicMetre => "E46",
9182            Unit::KilowattHourPerKelvin => "E47",
9183            Unit::ServiceUnit => "E48",
9184            Unit::WorkingDay => "E49",
9185            Unit::AccountingUnit => "E50",
9186            Unit::Job => "E51",
9187            Unit::RunFoot => "E52",
9188            Unit::Test => "E53",
9189            Unit::Trip => "E54",
9190            Unit::Use => "E55",
9191            Unit::Well => "E56",
9192            Unit::Zone => "E57",
9193            Unit::ExabitPerSecond => "E58",
9194            Unit::Exbibyte => "E59",
9195            Unit::Pebibyte => "E60",
9196            Unit::Tebibyte => "E61",
9197            Unit::Gibibyte => "E62",
9198            Unit::Mebibyte => "E63",
9199            Unit::Kibibyte => "E64",
9200            Unit::ExbibitPerMetre => "E65",
9201            Unit::ExbibitPerSquareMetre => "E66",
9202            Unit::ExbibitPerCubicMetre => "E67",
9203            Unit::GigabytePerSecond => "E68",
9204            Unit::GibibitPerMetre => "E69",
9205            Unit::GibibitPerSquareMetre => "E70",
9206            Unit::GibibitPerCubicMetre => "E71",
9207            Unit::KibibitPerMetre => "E72",
9208            Unit::KibibitPerSquareMetre => "E73",
9209            Unit::KibibitPerCubicMetre => "E74",
9210            Unit::MebibitPerMetre => "E75",
9211            Unit::MebibitPerSquareMetre => "E76",
9212            Unit::MebibitPerCubicMetre => "E77",
9213            Unit::Petabit => "E78",
9214            Unit::PetabitPerSecond => "E79",
9215            Unit::PebibitPerMetre => "E80",
9216            Unit::PebibitPerSquareMetre => "E81",
9217            Unit::PebibitPerCubicMetre => "E82",
9218            Unit::Terabit => "E83",
9219            Unit::TerabitPerSecond => "E84",
9220            Unit::TebibitPerMetre => "E85",
9221            Unit::TebibitPerCubicMetre => "E86",
9222            Unit::TebibitPerSquareMetre => "E87",
9223            Unit::BitPerMetre => "E88",
9224            Unit::BitPerSquareMetre => "E89",
9225            Unit::ReciprocalCentimetre => "E90",
9226            Unit::ReciprocalDay => "E91",
9227            Unit::CubicDecimetrePerHour => "E92",
9228            Unit::KilogramPerHour => "E93",
9229            Unit::KilomolePerSecond => "E94",
9230            Unit::MolePerSecond => "E95",
9231            Unit::DegreePerSecond => "E96",
9232            Unit::MillimetrePerDegreeCelciusMetre => "E97",
9233            Unit::DegreeCelsiusPerKelvin => "E98",
9234            Unit::HectopascalPerBar => "E99",
9235            Unit::Each => "EA",
9236            Unit::ElectronicMailBox => "EB",
9237            Unit::EquivalentGallon => "EQ",
9238            Unit::BitPerCubicMetre => "F01",
9239            Unit::KelvinPerKelvin => "F02",
9240            Unit::KilopascalPerBar => "F03",
9241            Unit::MillibarPerBar => "F04",
9242            Unit::MegapascalPerBar => "F05",
9243            Unit::PoisePerBar => "F06",
9244            Unit::PascalPerBar => "F07",
9245            Unit::MilliamperePerInch => "F08",
9246            Unit::KelvinPerHour => "F10",
9247            Unit::KelvinPerMinute => "F11",
9248            Unit::KelvinPerSecond => "F12",
9249            Unit::Slug => "F13",
9250            Unit::GramPerKelvin => "F14",
9251            Unit::KilogramPerKelvin => "F15",
9252            Unit::MilligramPerKelvin => "F16",
9253            Unit::PoundForcePerFoot => "F17",
9254            Unit::KilogramSquareCentimetre => "F18",
9255            Unit::KilogramSquareMillimetre => "F19",
9256            Unit::PoundInchSquared => "F20",
9257            Unit::PoundForceInch => "F21",
9258            Unit::PoundForceFootPerAmpere => "F22",
9259            Unit::GramPerCubicDecimetre => "F23",
9260            Unit::KilogramPerKilomol => "F24",
9261            Unit::GramPerHertz => "F25",
9262            Unit::GramPerDay => "F26",
9263            Unit::GramPerHour => "F27",
9264            Unit::GramPerMinute => "F28",
9265            Unit::GramPerSecond => "F29",
9266            Unit::KilogramPerDay => "F30",
9267            Unit::KilogramPerMinute => "F31",
9268            Unit::MilligramPerDay => "F32",
9269            Unit::MilligramPerMinute => "F33",
9270            Unit::MilligramPerSecond => "F34",
9271            Unit::GramPerDayKelvin => "F35",
9272            Unit::GramPerHourKelvin => "F36",
9273            Unit::GramPerMinuteKelvin => "F37",
9274            Unit::GramPerSecondKelvin => "F38",
9275            Unit::KilogramPerDayKelvin => "F39",
9276            Unit::KilogramPerHourKelvin => "F40",
9277            Unit::KilogramPerMinuteKelvin => "F41",
9278            Unit::KilogramPerSecondKelvin => "F42",
9279            Unit::MilligramPerDayKelvin => "F43",
9280            Unit::MilligramPerHourKelvin => "F44",
9281            Unit::MilligramPerMinuteKelvin => "F45",
9282            Unit::MilligramPerSecondKelvin => "F46",
9283            Unit::NewtonPerMillimetre => "F47",
9284            Unit::PoundForcePerInch => "F48",
9285            Unit::RodUnitDistance => "F49",
9286            Unit::MicrometrePerKelvin => "F50",
9287            Unit::CentimetrePerKelvin => "F51",
9288            Unit::MetrePerKelvin => "F52",
9289            Unit::MillimetrePerKelvin => "F53",
9290            Unit::MilliohmPerMetre => "F54",
9291            Unit::OhmPerMileStatuteMile => "F55",
9292            Unit::OhmPerKilometre => "F56",
9293            Unit::MilliamperePerPoundForcePerSquareInch => "F57",
9294            Unit::ReciprocalBar => "F58",
9295            Unit::MilliamperePerBar => "F59",
9296            Unit::DegreeCelsiusPerBar => "F60",
9297            Unit::KelvinPerBar => "F61",
9298            Unit::GramPerDayBar => "F62",
9299            Unit::GramPerHourBar => "F63",
9300            Unit::GramPerMinuteBar => "F64",
9301            Unit::GramPerSecondBar => "F65",
9302            Unit::KilogramPerDayBar => "F66",
9303            Unit::KilogramPerHourBar => "F67",
9304            Unit::KilogramPerMinuteBar => "F68",
9305            Unit::KilogramPerSecondBar => "F69",
9306            Unit::MilligramPerDayBar => "F70",
9307            Unit::MilligramPerHourBar => "F71",
9308            Unit::MilligramPerMinuteBar => "F72",
9309            Unit::MilligramPerSecondBar => "F73",
9310            Unit::GramPerBar => "F74",
9311            Unit::MilligramPerBar => "F75",
9312            Unit::MilliamperePerMillimetre => "F76",
9313            Unit::PascalSecondPerKelvin => "F77",
9314            Unit::InchWater => "F78",
9315            Unit::InchMercury => "F79",
9316            Unit::WaterHorsePower => "F80",
9317            Unit::BarPerKelvin => "F81",
9318            Unit::HectopascalPerKelvin => "F82",
9319            Unit::KilopascalPerKelvin => "F83",
9320            Unit::MillibarPerKelvin => "F84",
9321            Unit::MegapascalPerKelvin => "F85",
9322            Unit::PoisePerKelvin => "F86",
9323            Unit::VoltPerLitreMinute => "F87",
9324            Unit::NewtonCentimetre => "F88",
9325            Unit::NewtonMetrePerDegree => "F89",
9326            Unit::NewtonMetrePerAmpere => "F90",
9327            Unit::BarLitrePerSecond => "F91",
9328            Unit::BarCubicMetrePerSecond => "F92",
9329            Unit::HectopascalLitrePerSecond => "F93",
9330            Unit::HectopascalCubicMetrePerSecond => "F94",
9331            Unit::MillibarLitrePerSecond => "F95",
9332            Unit::MillibarCubicMetrePerSecond => "F96",
9333            Unit::MegapascalLitrePerSecond => "F97",
9334            Unit::MegapascalCubicMetrePerSecond => "F98",
9335            Unit::PascalLitrePerSecond => "F99",
9336            Unit::DegreeFahrenheit => "FAH",
9337            Unit::Farad => "FAR",
9338            Unit::FibreMetre => "FBM",
9339            Unit::ThousandCubicFoot => "FC",
9340            Unit::HundredCubicMetre => "FF",
9341            Unit::Micromole => "FH",
9342            Unit::FailuresInTime => "FIT",
9343            Unit::FlakeTon => "FL",
9344            Unit::FormazinNephelometricUnit => "FNU",
9345            Unit::Foot => "FOT",
9346            Unit::PoundPerSquareFoot => "FP",
9347            Unit::FootPerMinute => "FR",
9348            Unit::FootPerSecond => "FS",
9349            Unit::SquareFoot => "FTK",
9350            Unit::CubicFoot => "FTQ",
9351            Unit::PascalCubicMetrePerSecond => "G01",
9352            Unit::CentimetrePerBar => "G04",
9353            Unit::MetrePerBar => "G05",
9354            Unit::MillimetrePerBar => "G06",
9355            Unit::SquareInchPerSecond => "G08",
9356            Unit::SquareMetrePerSecondKelvin => "G09",
9357            Unit::StokesPerKelvin => "G10",
9358            Unit::GramPerCubicCentimetreBar => "G11",
9359            Unit::GramPerCubicDecimetreBar => "G12",
9360            Unit::GramPerLitreBar => "G13",
9361            Unit::GramPerCubicMetreBar => "G14",
9362            Unit::GramPerMillilitreBar => "G15",
9363            Unit::KilogramPerCubicCentimetreBar => "G16",
9364            Unit::KilogramPerLitreBar => "G17",
9365            Unit::KilogramPerCubicMetreBar => "G18",
9366            Unit::NewtonMetrePerKilogram => "G19",
9367            Unit::UsGallonPerMinute => "G2",
9368            Unit::PoundForceFootPerPound => "G20",
9369            Unit::CupUnitVolume => "G21",
9370            Unit::Peck => "G23",
9371            Unit::TablespoonUs => "G24",
9372            Unit::TeaspoonUs => "G25",
9373            Unit::Stere => "G26",
9374            Unit::CubicCentimetrePerKelvin => "G27",
9375            Unit::LitrePerKelvin => "G28",
9376            Unit::CubicMetrePerKelvin => "G29",
9377            Unit::ImperialGallonPerMinute => "G3",
9378            Unit::MillilitrePerKelvin => "G30",
9379            Unit::KilogramPerCubicCentimetre => "G31",
9380            Unit::OunceAvoirdupoisPerCubicYard => "G32",
9381            Unit::GramPerCubicCentimetreKelvin => "G33",
9382            Unit::GramPerCubicDecimetreKelvin => "G34",
9383            Unit::GramPerLitreKelvin => "G35",
9384            Unit::GramPerCubicMetreKelvin => "G36",
9385            Unit::GramPerMillilitreKelvin => "G37",
9386            Unit::KilogramPerCubicCentimetreKelvin => "G38",
9387            Unit::KilogramPerLitreKelvin => "G39",
9388            Unit::KilogramPerCubicMetreKelvin => "G40",
9389            Unit::SquareMetrePerSecondBar => "G41",
9390            Unit::MicrosiemensPerCentimetre => "G42",
9391            Unit::MicrosiemensPerMetre => "G43",
9392            Unit::NanosiemensPerCentimetre => "G44",
9393            Unit::NanosiemensPerMetre => "G45",
9394            Unit::StokesPerBar => "G46",
9395            Unit::CubicCentimetrePerDay => "G47",
9396            Unit::CubicCentimetrePerHour => "G48",
9397            Unit::CubicCentimetrePerMinute => "G49",
9398            Unit::GallonUsPerHour => "G50",
9399            Unit::LitrePerSecond => "G51",
9400            Unit::CubicMetrePerDay => "G52",
9401            Unit::CubicMetrePerMinute => "G53",
9402            Unit::MillilitrePerDay => "G54",
9403            Unit::MillilitrePerHour => "G55",
9404            Unit::CubicInchPerHour => "G56",
9405            Unit::CubicInchPerMinute => "G57",
9406            Unit::CubicInchPerSecond => "G58",
9407            Unit::MilliamperePerLitreMinute => "G59",
9408            Unit::VoltPerBar => "G60",
9409            Unit::CubicCentimetrePerDayKelvin => "G61",
9410            Unit::CubicCentimetrePerHourKelvin => "G62",
9411            Unit::CubicCentimetrePerMinuteKelvin => "G63",
9412            Unit::CubicCentimetrePerSecondKelvin => "G64",
9413            Unit::LitrePerDayKelvin => "G65",
9414            Unit::LitrePerHourKelvin => "G66",
9415            Unit::LitrePerMinuteKelvin => "G67",
9416            Unit::LitrePerSecondKelvin => "G68",
9417            Unit::CubicMetrePerDayKelvin => "G69",
9418            Unit::CubicMetrePerHourKelvin => "G70",
9419            Unit::CubicMetrePerMinuteKelvin => "G71",
9420            Unit::CubicMetrePerSecondKelvin => "G72",
9421            Unit::MillilitrePerDayKelvin => "G73",
9422            Unit::MillilitrePerHourKelvin => "G74",
9423            Unit::MillilitrePerMinuteKelvin => "G75",
9424            Unit::MillilitrePerSecondKelvin => "G76",
9425            Unit::MillimetreToFourthPower => "G77",
9426            Unit::CubicCentimetrePerDayBar => "G78",
9427            Unit::CubicCentimetrePerHourBar => "G79",
9428            Unit::CubicCentimetrePerMinuteBar => "G80",
9429            Unit::CubicCentimetrePerSecondBar => "G81",
9430            Unit::LitrePerDayBar => "G82",
9431            Unit::LitrePerHourBar => "G83",
9432            Unit::LitrePerMinuteBar => "G84",
9433            Unit::LitrePerSecondBar => "G85",
9434            Unit::CubicMetrePerDayBar => "G86",
9435            Unit::CubicMetrePerHourBar => "G87",
9436            Unit::CubicMetrePerMinuteBar => "G88",
9437            Unit::CubicMetrePerSecondBar => "G89",
9438            Unit::MillilitrePerDayBar => "G90",
9439            Unit::MillilitrePerHourBar => "G91",
9440            Unit::MillilitrePerMinuteBar => "G92",
9441            Unit::MillilitrePerSecondBar => "G93",
9442            Unit::CubicCentimetrePerBar => "G94",
9443            Unit::LitrePerBar => "G95",
9444            Unit::CubicMetrePerBar => "G96",
9445            Unit::MillilitrePerBar => "G97",
9446            Unit::MicrohenryPerKiloohm => "G98",
9447            Unit::MicrohenryPerOhm => "G99",
9448            Unit::GallonUsPerDay => "GB",
9449            Unit::Gigabecquerel => "GBQ",
9450            Unit::GramDryWeight => "GDW",
9451            Unit::PoundPerGallonUs => "GE",
9452            Unit::GramPerMetreGramPer100Centimetres => "GF",
9453            Unit::GramFissileIsotope => "GFI",
9454            Unit::GreatGross => "GGR",
9455            Unit::GillUs => "GIA",
9456            Unit::GramIncludingContainer => "GIC",
9457            Unit::GillUk => "GII",
9458            Unit::GramIncludingInnerPackaging => "GIP",
9459            Unit::GramPerMillilitre => "GJ",
9460            Unit::GramPerLitre => "GL",
9461            Unit::DryGallonUs => "GLD",
9462            Unit::GallonUk => "GLI",
9463            Unit::GallonUs => "GLL",
9464            Unit::GramPerSquareMetre => "GM",
9465            Unit::MilligramPerSquareMetre => "GO",
9466            Unit::MilligramPerCubicMetre => "GP",
9467            Unit::MicrogramPerCubicMetre => "GQ",
9468            Unit::Gram => "GRM",
9469            Unit::Grain => "GRN",
9470            Unit::Gross => "GRO",
9471            Unit::Gigajoule => "GV",
9472            Unit::GigawattHour => "GWH",
9473            Unit::HenryPerKiloohm => "H03",
9474            Unit::HenryPerOhm => "H04",
9475            Unit::MillihenryPerKiloohm => "H05",
9476            Unit::MillihenryPerOhm => "H06",
9477            Unit::PascalSecondPerBar => "H07",
9478            Unit::Microbecquerel => "H08",
9479            Unit::ReciprocalYear => "H09",
9480            Unit::ReciprocalHour => "H10",
9481            Unit::ReciprocalMonth => "H11",
9482            Unit::DegreeCelsiusPerHour => "H12",
9483            Unit::DegreeCelsiusPerMinute => "H13",
9484            Unit::DegreeCelsiusPerSecond => "H14",
9485            Unit::SquareCentimetrePerGram => "H15",
9486            Unit::SquareDecametre => "H16",
9487            Unit::SquareHectometre => "H18",
9488            Unit::CubicHectometre => "H19",
9489            Unit::CubicKilometre => "H20",
9490            Unit::Blank => "H21",
9491            Unit::VoltSquareInchPerPoundForce => "H22",
9492            Unit::VoltPerInch => "H23",
9493            Unit::VoltPerMicrosecond => "H24",
9494            Unit::PercentPerKelvin => "H25",
9495            Unit::OhmPerMetre => "H26",
9496            Unit::DegreePerMetre => "H27",
9497            Unit::MicrofaradPerKilometre => "H28",
9498            Unit::MicrogramPerLitre => "H29",
9499            Unit::SquareMicrometreSquareMicron => "H30",
9500            Unit::AmperePerKilogram => "H31",
9501            Unit::AmpereSquaredSecond => "H32",
9502            Unit::FaradPerKilometre => "H33",
9503            Unit::HertzMetre => "H34",
9504            Unit::KelvinMetrePerWatt => "H35",
9505            Unit::MegaohmPerKilometre => "H36",
9506            Unit::MegaohmPerMetre => "H37",
9507            Unit::Megaampere => "H38",
9508            Unit::MegahertzKilometre => "H39",
9509            Unit::NewtonPerAmpere => "H40",
9510            Unit::NewtonMetreWattToPowerMinus05 => "H41",
9511            Unit::PascalPerMetre => "H42",
9512            Unit::SiemensPerCentimetre => "H43",
9513            Unit::Teraohm => "H44",
9514            Unit::VoltSecondPerMetre => "H45",
9515            Unit::VoltPerSecond => "H46",
9516            Unit::WattPerCubicMetre => "H47",
9517            Unit::Attofarad => "H48",
9518            Unit::CentimetrePerHour => "H49",
9519            Unit::ReciprocalCubicCentimetre => "H50",
9520            Unit::DecibelPerKilometre => "H51",
9521            Unit::DecibelPerMetre => "H52",
9522            Unit::KilogramPerBar => "H53",
9523            Unit::KilogramPerCubicDecimetreKelvin => "H54",
9524            Unit::KilogramPerCubicDecimetreBar => "H55",
9525            Unit::KilogramPerSquareMetreSecond => "H56",
9526            Unit::InchPerTwoPiRadiant => "H57",
9527            Unit::MetrePerVoltSecond => "H58",
9528            Unit::SquareMetrePerNewton => "H59",
9529            Unit::CubicMetrePerCubicMetre => "H60",
9530            Unit::MillisiemensPerCentimetre => "H61",
9531            Unit::MillivoltPerMinute => "H62",
9532            Unit::MilligramPerSquareCentimetre => "H63",
9533            Unit::MilligramPerGram => "H64",
9534            Unit::MillilitrePerCubicMetre => "H65",
9535            Unit::MillimetrePerYear => "H66",
9536            Unit::MillimetrePerHour => "H67",
9537            Unit::MillimolePerGram => "H68",
9538            Unit::PicopascalPerKilometre => "H69",
9539            Unit::Picosecond => "H70",
9540            Unit::PercentPerMonth => "H71",
9541            Unit::PercentPerHectobar => "H72",
9542            Unit::PercentPerDecakelvin => "H73",
9543            Unit::WattPerMetre => "H74",
9544            Unit::Decapascal => "H75",
9545            Unit::GramPerMillimetre => "H76",
9546            Unit::ModuleWidth => "H77",
9547            Unit::FrenchGauge => "H79",
9548            Unit::RackUnit => "H80",
9549            Unit::MillimetrePerMinute => "H81",
9550            Unit::BigPoint => "H82",
9551            Unit::LitrePerKilogram => "H83",
9552            Unit::GramMillimetre => "H84",
9553            Unit::ReciprocalWeek => "H85",
9554            Unit::Piece => "H87",
9555            Unit::MegaohmKilometre => "H88",
9556            Unit::PercentPerOhm => "H89",
9557            Unit::PercentPerDegree => "H90",
9558            Unit::PercentPerTenThousand => "H91",
9559            Unit::PercentPerOneHundredThousand => "H92",
9560            Unit::PercentPerHundred => "H93",
9561            Unit::PercentPerThousand => "H94",
9562            Unit::PercentPerVolt => "H95",
9563            Unit::PercentPerBar => "H96",
9564            Unit::PercentPerInch => "H98",
9565            Unit::PercentPerMetre => "H99",
9566            Unit::Hank => "HA",
9567            Unit::PieceDay => "HAD",
9568            Unit::Hectobar => "HBA",
9569            Unit::HundredBoxes => "HBX",
9570            Unit::HundredCount => "HC",
9571            Unit::HundredKilogramDryWeight => "HDW",
9572            Unit::Head => "HEA",
9573            Unit::Hectogram => "HGM",
9574            Unit::HundredCubicFoot => "HH",
9575            Unit::HundredInternationalUnit => "HIU",
9576            Unit::HundredKilogramNetMass => "HKM",
9577            Unit::Hectolitre => "HLT",
9578            Unit::MilePerHourStatuteMile => "HM",
9579            Unit::PieceMonth => "HMO",
9580            Unit::MillionCubicMetre => "HMQ",
9581            Unit::Hectometre => "HMT",
9582            Unit::HectolitrePureAlcohol => "HPA",
9583            Unit::Hertz => "HTZ",
9584            Unit::Hour => "HUR",
9585            Unit::PieceWeek => "HWE",
9586            Unit::InchPoundPoundInch => "IA",
9587            Unit::Person => "IE",
9588            Unit::Inch => "INH",
9589            Unit::SquareInch => "INK",
9590            Unit::CubicInch => "INQ",
9591            Unit::InternationalSugarDegree => "ISD",
9592            Unit::InchPerSecond => "IU",
9593            Unit::InternationalUnitPerGram => "IUG",
9594            Unit::InchPerSecondSquared => "IV",
9595            Unit::PercentPerMillimetre => "J10",
9596            Unit::PerMillePerPsi => "J12",
9597            Unit::DegreeApi => "J13",
9598            Unit::DegreeBaumeOriginScale => "J14",
9599            Unit::DegreeBaumeUsHeavy => "J15",
9600            Unit::DegreeBaumeUsLight => "J16",
9601            Unit::DegreeBalling => "J17",
9602            Unit::DegreeBrix => "J18",
9603            Unit::DegreeFahrenheitHourSquareFootPerBritishThermalUnitThermochemical => "J19",
9604            Unit::JoulePerKilogram => "J2",
9605            Unit::DegreeFahrenheitPerKelvin => "J20",
9606            Unit::DegreeFahrenheitPerBar => "J21",
9607            Unit::DegreeFahrenheitHourSquareFootPerBritishThermalUnitInternationalTable => "J22",
9608            Unit::DegreeFahrenheitPerHour => "J23",
9609            Unit::DegreeFahrenheitPerMinute => "J24",
9610            Unit::DegreeFahrenheitPerSecond => "J25",
9611            Unit::ReciprocalDegreeFahrenheit => "J26",
9612            Unit::DegreeOechsle => "J27",
9613            Unit::DegreeRankinePerHour => "J28",
9614            Unit::DegreeRankinePerMinute => "J29",
9615            Unit::DegreeRankinePerSecond => "J30",
9616            Unit::DegreeTwaddell => "J31",
9617            Unit::Micropoise => "J32",
9618            Unit::MicrogramPerKilogram => "J33",
9619            Unit::MicrogramPerCubicMetreKelvin => "J34",
9620            Unit::MicrogramPerCubicMetreBar => "J35",
9621            Unit::MicrolitrePerLitre => "J36",
9622            Unit::Baud => "J38",
9623            Unit::BritishThermalUnitMean => "J39",
9624            Unit::BritishThermalUnitInternationalTableFootPerHourSquareFootDegreeFahrenheit => {
9625                "J40"
9626            }
9627            Unit::BritishThermalUnitInternationalTableInchPerHourSquareFootDegreeFahrenheit => {
9628                "J41"
9629            }
9630            Unit::BritishThermalUnitInternationalTableInchPerSecondSquareFootDegreeFahrenheit => {
9631                "J42"
9632            }
9633            Unit::BritishThermalUnitInternationalTablePerPoundDegreeFahrenheit => "J43",
9634            Unit::BritishThermalUnitInternationalTablePerMinute => "J44",
9635            Unit::BritishThermalUnitInternationalTablePerSecond => "J45",
9636            Unit::BritishThermalUnitThermochemicalFootPerHourSquareFootDegreeFahrenheit => "J46",
9637            Unit::BritishThermalUnitThermochemicalPerHour => "J47",
9638            Unit::BritishThermalUnitThermochemicalInchPerHourSquareFootDegreeFahrenheit => "J48",
9639            Unit::BritishThermalUnitThermochemicalInchPerSecondSquareFootDegreeFahrenheit => "J49",
9640            Unit::BritishThermalUnitThermochemicalPerPoundDegreeFahrenheit => "J50",
9641            Unit::BritishThermalUnitThermochemicalPerMinute => "J51",
9642            Unit::BritishThermalUnitThermochemicalPerSecond => "J52",
9643            Unit::CoulombSquareMetrePerKilogram => "J53",
9644            Unit::Megabaud => "J54",
9645            Unit::WattSecond => "J55",
9646            Unit::BarPerBar => "J56",
9647            Unit::BarrelUkPetroleum => "J57",
9648            Unit::BarrelUkPetroleumPerMinute => "J58",
9649            Unit::BarrelUkPetroleumPerDay => "J59",
9650            Unit::BarrelUkPetroleumPerHour => "J60",
9651            Unit::BarrelUkPetroleumPerSecond => "J61",
9652            Unit::BarrelUsPetroleumPerHour => "J62",
9653            Unit::BarrelUsPetroleumPerSecond => "J63",
9654            Unit::BushelUkPerDay => "J64",
9655            Unit::BushelUkPerHour => "J65",
9656            Unit::BushelUkPerMinute => "J66",
9657            Unit::BushelUkPerSecond => "J67",
9658            Unit::BushelUsDryPerDay => "J68",
9659            Unit::BushelUsDryPerHour => "J69",
9660            Unit::BushelUsDryPerMinute => "J70",
9661            Unit::BushelUsDryPerSecond => "J71",
9662            Unit::CentinewtonMetre => "J72",
9663            Unit::CentipoisePerKelvin => "J73",
9664            Unit::CentipoisePerBar => "J74",
9665            Unit::CalorieMean => "J75",
9666            Unit::CalorieInternationalTablePerGramDegreeCelsius => "J76",
9667            Unit::CalorieThermochemicalPerCentimetreSecondDegreeCelsius => "J78",
9668            Unit::CalorieThermochemicalPerGramDegreeCelsius => "J79",
9669            Unit::CalorieThermochemicalPerMinute => "J81",
9670            Unit::CalorieThermochemicalPerSecond => "J82",
9671            Unit::Clo => "J83",
9672            Unit::CentimetrePerSecondKelvin => "J84",
9673            Unit::CentimetrePerSecondBar => "J85",
9674            Unit::CubicCentimetrePerCubicMetre => "J87",
9675            Unit::CubicDecimetrePerDay => "J90",
9676            Unit::CubicDecimetrePerCubicMetre => "J91",
9677            Unit::CubicDecimetrePerMinute => "J92",
9678            Unit::CubicDecimetrePerSecond => "J93",
9679            Unit::OunceUkFluidPerDay => "J95",
9680            Unit::OunceUkFluidPerHour => "J96",
9681            Unit::OunceUkFluidPerMinute => "J97",
9682            Unit::OunceUkFluidPerSecond => "J98",
9683            Unit::OunceUsFluidPerDay => "J99",
9684            Unit::JoulePerKelvin => "JE",
9685            Unit::MegajoulePerKilogram => "JK",
9686            Unit::MegajoulePerCubicMetre => "JM",
9687            Unit::PipelineJoint => "JNT",
9688            Unit::Joule => "JOU",
9689            Unit::HundredMetre => "JPS",
9690            Unit::NumberJewels => "JWL",
9691            Unit::KilowattDemand => "K1",
9692            Unit::OunceUsFluidPerHour => "K10",
9693            Unit::OunceUsFluidPerMinute => "K11",
9694            Unit::OunceUsFluidPerSecond => "K12",
9695            Unit::FootPerDegreeFahrenheit => "K13",
9696            Unit::FootPerHour => "K14",
9697            Unit::FootPoundForcePerHour => "K15",
9698            Unit::FootPoundForcePerMinute => "K16",
9699            Unit::FootPerPsi => "K17",
9700            Unit::FootPerSecondDegreeFahrenheit => "K18",
9701            Unit::FootPerSecondPsi => "K19",
9702            Unit::KilovoltAmpereReactiveDemand => "K2",
9703            Unit::ReciprocalCubicFoot => "K20",
9704            Unit::CubicFootPerDegreeFahrenheit => "K21",
9705            Unit::CubicFootPerDay => "K22",
9706            Unit::CubicFootPerPsi => "K23",
9707            Unit::GallonUkPerDay => "K26",
9708            Unit::GallonUkPerHour => "K27",
9709            Unit::GallonUkPerSecond => "K28",
9710            Unit::KilovoltAmpereReactiveHour => "K3",
9711            Unit::GallonUsLiquidPerSecond => "K30",
9712            Unit::GramForcePerSquareCentimetre => "K31",
9713            Unit::GillUkPerDay => "K32",
9714            Unit::GillUkPerHour => "K33",
9715            Unit::GillUkPerMinute => "K34",
9716            Unit::GillUkPerSecond => "K35",
9717            Unit::GillUsPerDay => "K36",
9718            Unit::GillUsPerHour => "K37",
9719            Unit::GillUsPerMinute => "K38",
9720            Unit::GillUsPerSecond => "K39",
9721            Unit::StandardAccelerationFreeFall => "K40",
9722            Unit::GrainPerGallonUs => "K41",
9723            Unit::HorsepowerBoiler => "K42",
9724            Unit::HorsepowerElectric => "K43",
9725            Unit::InchPerDegreeFahrenheit => "K45",
9726            Unit::InchPerPsi => "K46",
9727            Unit::InchPerSecondDegreeFahrenheit => "K47",
9728            Unit::InchPerSecondPsi => "K48",
9729            Unit::ReciprocalCubicInch => "K49",
9730            Unit::Kilobaud => "K50",
9731            Unit::KilocalorieMean => "K51",
9732            Unit::KilocalorieInternationalTablePerHourMetreDegreeCelsius => "K52",
9733            Unit::KilocalorieThermochemical => "K53",
9734            Unit::KilocalorieThermochemicalPerMinute => "K54",
9735            Unit::KilocalorieThermochemicalPerSecond => "K55",
9736            Unit::KilomolePerHour => "K58",
9737            Unit::KilomolePerCubicMetreKelvin => "K59",
9738            Unit::Kilolitre => "K6",
9739            Unit::KilomolePerCubicMetreBar => "K60",
9740            Unit::KilomolePerMinute => "K61",
9741            Unit::LitrePerLitre => "K62",
9742            Unit::ReciprocalLitre => "K63",
9743            Unit::PoundAvoirdupoisPerDegreeFahrenheit => "K64",
9744            Unit::PoundAvoirdupoisSquareFoot => "K65",
9745            Unit::PoundAvoirdupoisPerDay => "K66",
9746            Unit::PoundPerFootHour => "K67",
9747            Unit::PoundPerFootSecond => "K68",
9748            Unit::PoundAvoirdupoisPerCubicFootDegreeFahrenheit => "K69",
9749            Unit::PoundAvoirdupoisPerCubicFootPsi => "K70",
9750            Unit::PoundAvoirdupoisPerGallonUk => "K71",
9751            Unit::PoundAvoirdupoisPerHourDegreeFahrenheit => "K73",
9752            Unit::PoundAvoirdupoisPerHourPsi => "K74",
9753            Unit::PoundAvoirdupoisPerCubicInchDegreeFahrenheit => "K75",
9754            Unit::PoundAvoirdupoisPerCubicInchPsi => "K76",
9755            Unit::PoundAvoirdupoisPerPsi => "K77",
9756            Unit::PoundAvoirdupoisPerMinute => "K78",
9757            Unit::PoundAvoirdupoisPerMinuteDegreeFahrenheit => "K79",
9758            Unit::PoundAvoirdupoisPerMinutePsi => "K80",
9759            Unit::PoundAvoirdupoisPerSecond => "K81",
9760            Unit::PoundAvoirdupoisPerSecondDegreeFahrenheit => "K82",
9761            Unit::PoundAvoirdupoisPerSecondPsi => "K83",
9762            Unit::PoundPerCubicYard => "K84",
9763            Unit::PoundForcePerSquareFoot => "K85",
9764            Unit::PoundForcePerSquareInchDegreeFahrenheit => "K86",
9765            Unit::PsiCubicInchPerSecond => "K87",
9766            Unit::PsiLitrePerSecond => "K88",
9767            Unit::PsiCubicMetrePerSecond => "K89",
9768            Unit::PsiCubicYardPerSecond => "K90",
9769            Unit::PoundForceSecondPerSquareFoot => "K91",
9770            Unit::PoundForceSecondPerSquareInch => "K92",
9771            Unit::ReciprocalPsi => "K93",
9772            Unit::QuartUkLiquidPerDay => "K94",
9773            Unit::QuartUkLiquidPerHour => "K95",
9774            Unit::QuartUkLiquidPerMinute => "K96",
9775            Unit::QuartUkLiquidPerSecond => "K97",
9776            Unit::QuartUsLiquidPerDay => "K98",
9777            Unit::QuartUsLiquidPerHour => "K99",
9778            Unit::Cake => "KA",
9779            Unit::Katal => "KAT",
9780            Unit::Kilocharacter => "KB",
9781            Unit::Kilobar => "KBA",
9782            Unit::KilogramCholineChloride => "KCC",
9783            Unit::KilogramDrainedNetWeight => "KDW",
9784            Unit::Kelvin => "KEL",
9785            Unit::Kilogram => "KGM",
9786            Unit::KilogramPerSecond => "KGS",
9787            Unit::KilogramHydrogenPeroxide => "KHY",
9788            Unit::Kilohertz => "KHZ",
9789            Unit::KilogramPerMillimetreWidth => "KI",
9790            Unit::KilogramIncludingContainer => "KIC",
9791            Unit::KilogramIncludingInnerPackaging => "KIP",
9792            Unit::Kilosegment => "KJ",
9793            Unit::Kilojoule => "KJO",
9794            Unit::KilogramPerMetre => "KL",
9795            Unit::LacticDryMaterialPercentage => "KLK",
9796            Unit::Kilolux => "KLX",
9797            Unit::KilogramMethylamine => "KMA",
9798            Unit::KilometrePerHour => "KMH",
9799            Unit::SquareKilometre => "KMK",
9800            Unit::KilogramPerCubicMetre => "KMQ",
9801            Unit::Kilometre => "KMT",
9802            Unit::KilogramNitrogen => "KNI",
9803            Unit::KilonewtonPerSquareMetre => "KNM",
9804            Unit::KilogramNamedSubstance => "KNS",
9805            Unit::Knot => "KNT",
9806            Unit::MilliequivalenceCausticPotashPerGramProduct => "KO",
9807            Unit::Kilopascal => "KPA",
9808            Unit::KilogramPotassiumHydroxideCausticPotash => "KPH",
9809            Unit::KilogramPotassiumOxide => "KPO",
9810            Unit::KilogramPhosphorusPentoxidePhosphoricAnhydride => "KPP",
9811            Unit::Kiloroentgen => "KR",
9812            Unit::KilogramSubstance90Dry => "KSD",
9813            Unit::KilogramSodiumHydroxideCausticSoda => "KSH",
9814            Unit::Kit => "KT",
9815            Unit::Kilotonne => "KTN",
9816            Unit::KilogramUranium => "KUR",
9817            Unit::KilovoltAmpere => "KVA",
9818            Unit::Kilovar => "KVR",
9819            Unit::Kilovolt => "KVT",
9820            Unit::KilogramPerMillimetre => "KW",
9821            Unit::KilowattHour => "KWH",
9822            Unit::KilowattHourPerNormalizedCubicMetre => "KWN",
9823            Unit::KilogramTungstenTrioxide => "KWO",
9824            Unit::KilowattHourPerStandardCubicMetre => "KWS",
9825            Unit::Kilowatt => "KWT",
9826            Unit::KilowattYear => "KWY",
9827            Unit::MillilitrePerKilogram => "KX",
9828            Unit::QuartUsLiquidPerMinute => "L10",
9829            Unit::QuartUsLiquidPerSecond => "L11",
9830            Unit::MetrePerSecondKelvin => "L12",
9831            Unit::MetrePerSecondBar => "L13",
9832            Unit::SquareMetreHourDegreeCelsiusPerKilocalorieInternationalTable => "L14",
9833            Unit::MillipascalSecondPerKelvin => "L15",
9834            Unit::MillipascalSecondPerBar => "L16",
9835            Unit::MilligramPerCubicMetreKelvin => "L17",
9836            Unit::MilligramPerCubicMetreBar => "L18",
9837            Unit::MillilitrePerLitre => "L19",
9838            Unit::LitrePerMinute => "L2",
9839            Unit::ReciprocalCubicMillimetre => "L20",
9840            Unit::CubicMillimetrePerCubicMetre => "L21",
9841            Unit::MolePerHour => "L23",
9842            Unit::MolePerKilogramKelvin => "L24",
9843            Unit::MolePerKilogramBar => "L25",
9844            Unit::MolePerLitreKelvin => "L26",
9845            Unit::MolePerLitreBar => "L27",
9846            Unit::MolePerCubicMetreKelvin => "L28",
9847            Unit::MolePerCubicMetreBar => "L29",
9848            Unit::MolePerMinute => "L30",
9849            Unit::MilliroentgenAequivalentMen => "L31",
9850            Unit::NanogramPerKilogram => "L32",
9851            Unit::OunceAvoirdupoisPerDay => "L33",
9852            Unit::OunceAvoirdupoisPerHour => "L34",
9853            Unit::OunceAvoirdupoisPerMinute => "L35",
9854            Unit::OunceAvoirdupoisPerSecond => "L36",
9855            Unit::OunceAvoirdupoisPerGallonUk => "L37",
9856            Unit::OunceAvoirdupoisPerGallonUs => "L38",
9857            Unit::OunceAvoirdupoisPerCubicInch => "L39",
9858            Unit::OunceAvoirdupoisForce => "L40",
9859            Unit::OunceAvoirdupoisForceInch => "L41",
9860            Unit::PicosiemensPerMetre => "L42",
9861            Unit::PeckUk => "L43",
9862            Unit::PeckUkPerDay => "L44",
9863            Unit::PeckUkPerHour => "L45",
9864            Unit::PeckUkPerMinute => "L46",
9865            Unit::PeckUkPerSecond => "L47",
9866            Unit::PeckUsDryPerDay => "L48",
9867            Unit::PeckUsDryPerHour => "L49",
9868            Unit::PeckUsDryPerMinute => "L50",
9869            Unit::PeckUsDryPerSecond => "L51",
9870            Unit::PsiPerPsi => "L52",
9871            Unit::PintUkPerDay => "L53",
9872            Unit::PintUkPerHour => "L54",
9873            Unit::PintUkPerMinute => "L55",
9874            Unit::PintUkPerSecond => "L56",
9875            Unit::PintUsLiquidPerDay => "L57",
9876            Unit::PintUsLiquidPerHour => "L58",
9877            Unit::PintUsLiquidPerMinute => "L59",
9878            Unit::PintUsLiquidPerSecond => "L60",
9879            Unit::SlugPerDay => "L63",
9880            Unit::SlugPerFootSecond => "L64",
9881            Unit::SlugPerCubicFoot => "L65",
9882            Unit::SlugPerHour => "L66",
9883            Unit::SlugPerMinute => "L67",
9884            Unit::SlugPerSecond => "L68",
9885            Unit::TonnePerKelvin => "L69",
9886            Unit::TonnePerBar => "L70",
9887            Unit::TonnePerDay => "L71",
9888            Unit::TonnePerDayKelvin => "L72",
9889            Unit::TonnePerDayBar => "L73",
9890            Unit::TonnePerHourKelvin => "L74",
9891            Unit::TonnePerHourBar => "L75",
9892            Unit::TonnePerCubicMetreKelvin => "L76",
9893            Unit::TonnePerCubicMetreBar => "L77",
9894            Unit::TonnePerMinute => "L78",
9895            Unit::TonnePerMinuteKelvin => "L79",
9896            Unit::TonnePerMinuteBar => "L80",
9897            Unit::TonnePerSecond => "L81",
9898            Unit::TonnePerSecondKelvin => "L82",
9899            Unit::TonnePerSecondBar => "L83",
9900            Unit::TonUkShipping => "L84",
9901            Unit::TonLongPerDay => "L85",
9902            Unit::TonUsShipping => "L86",
9903            Unit::TonShortPerDegreeFahrenheit => "L87",
9904            Unit::TonShortPerDay => "L88",
9905            Unit::TonShortPerHourDegreeFahrenheit => "L89",
9906            Unit::TonShortPerHourPsi => "L90",
9907            Unit::TonShortPerPsi => "L91",
9908            Unit::TonUkLongPerCubicYard => "L92",
9909            Unit::TonUsShortPerCubicYard => "L93",
9910            Unit::TonForceUsShort => "L94",
9911            Unit::CommonYear => "L95",
9912            Unit::SiderealYear => "L96",
9913            Unit::YardPerDegreeFahrenheit => "L98",
9914            Unit::YardPerPsi => "L99",
9915            Unit::PoundPerCubicInch => "LA",
9916            Unit::LactoseExcessPercentage => "LAC",
9917            Unit::Pound => "LBR",
9918            Unit::TroyPoundUs => "LBT",
9919            Unit::LitrePerDay => "LD",
9920            Unit::Leaf => "LEF",
9921            Unit::LinearFoot => "LF",
9922            Unit::LabourHour => "LH",
9923            Unit::Link => "LK",
9924            Unit::LinearMetre => "LM",
9925            Unit::Length => "LN",
9926            Unit::LotUnitProcurement => "LO",
9927            Unit::LiquidPound => "LP",
9928            Unit::LitrePureAlcohol => "LPA",
9929            Unit::Layer => "LR",
9930            Unit::LumpSum => "LS",
9931            Unit::TonUkOrLongTonUs => "LTN",
9932            Unit::Litre => "LTR",
9933            Unit::MetricTonLubricatingOil => "LUB",
9934            Unit::Lumen => "LUM",
9935            Unit::Lux => "LUX",
9936            Unit::LinearYard => "LY",
9937            Unit::MilligramPerLitre => "M1",
9938            Unit::ReciprocalCubicYard => "M10",
9939            Unit::CubicYardPerDegreeFahrenheit => "M11",
9940            Unit::CubicYardPerDay => "M12",
9941            Unit::CubicYardPerHour => "M13",
9942            Unit::CubicYardPerPsi => "M14",
9943            Unit::CubicYardPerMinute => "M15",
9944            Unit::CubicYardPerSecond => "M16",
9945            Unit::KilohertzMetre => "M17",
9946            Unit::GigahertzMetre => "M18",
9947            Unit::Beaufort => "M19",
9948            Unit::ReciprocalMegakelvinOrMegakelvinToPowerMinusOne => "M20",
9949            Unit::ReciprocalKilovoltAmpereReciprocalHour => "M21",
9950            Unit::MillilitrePerSquareCentimetreMinute => "M22",
9951            Unit::NewtonPerCentimetre => "M23",
9952            Unit::OhmKilometre => "M24",
9953            Unit::PercentPerDegreeCelsius => "M25",
9954            Unit::GigaohmPerMetre => "M26",
9955            Unit::MegahertzMetre => "M27",
9956            Unit::KilogramPerKilogram => "M29",
9957            Unit::ReciprocalVoltAmpereReciprocalSecond => "M30",
9958            Unit::KilogramPerKilometre => "M31",
9959            Unit::PascalSecondPerLitre => "M32",
9960            Unit::MillimolePerLitre => "M33",
9961            Unit::NewtonMetrePerSquareMetre => "M34",
9962            Unit::MillivoltAmpere => "M35",
9963            Unit::_30DayMonth => "M36",
9964            Unit::Actual360 => "M37",
9965            Unit::KilometrePerSecondSquared => "M38",
9966            Unit::CentimetrePerSecondSquared => "M39",
9967            Unit::MonetaryValue => "M4",
9968            Unit::YardPerSecondSquared => "M40",
9969            Unit::MillimetrePerSecondSquared => "M41",
9970            Unit::MileStatuteMilePerSecondSquared => "M42",
9971            Unit::Mil => "M43",
9972            Unit::Revolution => "M44",
9973            Unit::DegreeUnitAnglePerSecondSquared => "M45",
9974            Unit::RevolutionPerMinute => "M46",
9975            Unit::CircularMil => "M47",
9976            Unit::SquareMileBasedOnUSSurveyFoot => "M48",
9977            Unit::ChainBasedOnUSSurveyFoot => "M49",
9978            Unit::Microcurie => "M5",
9979            Unit::Furlong => "M50",
9980            Unit::FootUSSurvey => "M51",
9981            Unit::MileBasedOnUSSurveyFoot => "M52",
9982            Unit::MetrePerPascal => "M53",
9983            Unit::MetrePerRadiant => "M55",
9984            Unit::Shake => "M56",
9985            Unit::MilePerMinute => "M57",
9986            Unit::MilePerSecond => "M58",
9987            Unit::MetrePerSecondPascal => "M59",
9988            Unit::MetrePerHour => "M60",
9989            Unit::InchPerYear => "M61",
9990            Unit::KilometrePerSecond => "M62",
9991            Unit::InchPerMinute => "M63",
9992            Unit::YardPerSecond => "M64",
9993            Unit::YardPerMinute => "M65",
9994            Unit::YardPerHour => "M66",
9995            Unit::AcreFootBasedOnUSSurveyFoot => "M67",
9996            Unit::Cord128Ft3 => "M68",
9997            Unit::CubicMileUkStatute => "M69",
9998            Unit::MicroInch => "M7",
9999            Unit::TonRegister => "M70",
10000            Unit::CubicMetrePerPascal => "M71",
10001            Unit::Bel => "M72",
10002            Unit::KilogramPerCubicMetrePascal => "M73",
10003            Unit::KilogramPerPascal => "M74",
10004            Unit::KilopoundForce => "M75",
10005            Unit::Poundal => "M76",
10006            Unit::KilogramMetrePerSecondSquared => "M77",
10007            Unit::Pond => "M78",
10008            Unit::SquareFootPerHour => "M79",
10009            Unit::StokesPerPascal => "M80",
10010            Unit::SquareCentimetrePerSecond => "M81",
10011            Unit::SquareMetrePerSecondPascal => "M82",
10012            Unit::Denier_Dup => "M83",
10013            Unit::PoundPerYard => "M84",
10014            Unit::TonAssay => "M85",
10015            Unit::Pfund => "M86",
10016            Unit::KilogramPerSecondPascal => "M87",
10017            Unit::TonnePerMonth => "M88",
10018            Unit::TonnePerYear => "M89",
10019            Unit::MillionBtuPer1000CubicFoot => "M9",
10020            Unit::KilopoundPerHour => "M90",
10021            Unit::PoundPerPound => "M91",
10022            Unit::PoundForceFoot => "M92",
10023            Unit::NewtonMetrePerRadian => "M93",
10024            Unit::KilogramMetre => "M94",
10025            Unit::PoundalFoot => "M95",
10026            Unit::PoundalInch => "M96",
10027            Unit::DyneMetre => "M97",
10028            Unit::KilogramCentimetrePerSecond => "M98",
10029            Unit::GramCentimetrePerSecond => "M99",
10030            Unit::MegavoltAmpereReactiveHour => "MAH",
10031            Unit::Megalitre => "MAL",
10032            Unit::Megametre => "MAM",
10033            Unit::Megavar => "MAR",
10034            Unit::Megawatt => "MAW",
10035            Unit::ThousandStandardBrickEquivalent => "MBE",
10036            Unit::ThousandBoardFoot => "MBF",
10037            Unit::Millibar => "MBR",
10038            Unit::Microgram => "MC",
10039            Unit::Millicurie => "MCU",
10040            Unit::AirDryMetricTon => "MD",
10041            Unit::Milligram => "MGM",
10042            Unit::Megahertz => "MHZ",
10043            Unit::SquareMileStatuteMile => "MIK",
10044            Unit::Thousand => "MIL",
10045            Unit::MinuteUnitTime => "MIN",
10046            Unit::Million => "MIO",
10047            Unit::MillionInternationalUnit => "MIU",
10048            Unit::SquareMetreDay => "MKD",
10049            Unit::SquareMetreMonth => "MKM",
10050            Unit::SquareMetreWeek => "MKW",
10051            Unit::Milliard => "MLD",
10052            Unit::Millilitre => "MLT",
10053            Unit::SquareMillimetre => "MMK",
10054            Unit::CubicMillimetre => "MMQ",
10055            Unit::Millimetre => "MMT",
10056            Unit::KilogramDryWeight => "MND",
10057            Unit::MegaJoulePerNormalisedCubicMetre => "MNJ",
10058            Unit::Month => "MON",
10059            Unit::Megapascal => "MPA",
10060            Unit::CubicMetreDay => "MQD",
10061            Unit::CubicMetrePerHour => "MQH",
10062            Unit::CubicMetreMonth => "MQM",
10063            Unit::CubicMetrePerSecond => "MQS",
10064            Unit::CubicMetreWeek => "MQW",
10065            Unit::MetreDay => "MRD",
10066            Unit::MetreMonth => "MRM",
10067            Unit::MetreWeek => "MRW",
10068            Unit::MetrePerSecondSquared => "MSK",
10069            Unit::SquareMetre => "MTK",
10070            Unit::CubicMetre => "MTQ",
10071            Unit::Metre => "MTR",
10072            Unit::MetrePerSecond => "MTS",
10073            Unit::Milihertz => "MTZ",
10074            Unit::MegavoltAmpere => "MVA",
10075            Unit::MegawattHour1000KwH => "MWH",
10076            Unit::PenCalorie => "N1",
10077            Unit::PoundFootPerSecond => "N10",
10078            Unit::PoundInchPerSecond => "N11",
10079            Unit::Pferdestaerke => "N12",
10080            Unit::CentimetreMercury0Oc => "N13",
10081            Unit::CentimetreWater4Oc => "N14",
10082            Unit::FootWater392Of => "N15",
10083            Unit::InchMercury32Of => "N16",
10084            Unit::InchMercury60Of => "N17",
10085            Unit::InchWater392Of => "N18",
10086            Unit::InchWater60Of => "N19",
10087            Unit::KipPerSquareInch => "N20",
10088            Unit::PoundalPerSquareFoot => "N21",
10089            Unit::OunceAvoirdupoisPerSquareInch => "N22",
10090            Unit::ConventionalMetreWater => "N23",
10091            Unit::GramPerSquareMillimetre => "N24",
10092            Unit::PoundPerSquareYard => "N25",
10093            Unit::PoundalPerSquareInch => "N26",
10094            Unit::FootToFourthPower => "N27",
10095            Unit::CubicDecimetrePerKilogram => "N28",
10096            Unit::CubicFootPerPound => "N29",
10097            Unit::PrintPoint => "N3",
10098            Unit::CubicInchPerPound => "N30",
10099            Unit::KilonewtonPerMetre => "N31",
10100            Unit::PoundalPerInch => "N32",
10101            Unit::PoundForcePerYard => "N33",
10102            Unit::PoundalSecondPerSquareFoot => "N34",
10103            Unit::PoisePerPascal => "N35",
10104            Unit::NewtonSecondPerSquareMetre => "N36",
10105            Unit::KilogramPerMetreSecond => "N37",
10106            Unit::KilogramPerMetreMinute => "N38",
10107            Unit::KilogramPerMetreDay => "N39",
10108            Unit::KilogramPerMetreHour => "N40",
10109            Unit::GramPerCentimetreSecond => "N41",
10110            Unit::PoundalSecondPerSquareInch => "N42",
10111            Unit::PoundPerFootMinute => "N43",
10112            Unit::PoundPerFootDay => "N44",
10113            Unit::CubicMetrePerSecondPascal => "N45",
10114            Unit::FootPoundal => "N46",
10115            Unit::InchPoundal => "N47",
10116            Unit::WattPerSquareCentimetre => "N48",
10117            Unit::WattPerSquareInch => "N49",
10118            Unit::BritishThermalUnitInternationalTablePerSquareFootHour => "N50",
10119            Unit::BritishThermalUnitThermochemicalPerSquareFootHour => "N51",
10120            Unit::BritishThermalUnitThermochemicalPerSquareFootMinute => "N52",
10121            Unit::BritishThermalUnitInternationalTablePerSquareFootSecond => "N53",
10122            Unit::BritishThermalUnitThermochemicalPerSquareFootSecond => "N54",
10123            Unit::BritishThermalUnitInternationalTablePerSquareInchSecond => "N55",
10124            Unit::CalorieThermochemicalPerSquareCentimetreMinute => "N56",
10125            Unit::CalorieThermochemicalPerSquareCentimetreSecond => "N57",
10126            Unit::BritishThermalUnitInternationalTablePerCubicFoot => "N58",
10127            Unit::BritishThermalUnitThermochemicalPerCubicFoot => "N59",
10128            Unit::BritishThermalUnitInternationalTablePerDegreeFahrenheit => "N60",
10129            Unit::BritishThermalUnitThermochemicalPerDegreeFahrenheit => "N61",
10130            Unit::BritishThermalUnitInternationalTablePerDegreeRankine => "N62",
10131            Unit::BritishThermalUnitThermochemicalPerDegreeRankine => "N63",
10132            Unit::BritishThermalUnitThermochemicalPerPoundDegreeRankine => "N64",
10133            Unit::KilocalorieInternationalTablePerGramKelvin => "N65",
10134            Unit::BritishThermalUnit39Of => "N66",
10135            Unit::BritishThermalUnit59Of => "N67",
10136            Unit::BritishThermalUnit60Of => "N68",
10137            Unit::Calorie20Oc => "N69",
10138            Unit::Quad1015Btuit => "N70",
10139            Unit::ThermEc => "N71",
10140            Unit::ThermUS => "N72",
10141            Unit::BritishThermalUnitThermochemicalPerPound => "N73",
10142            Unit::BritishThermalUnitInternationalTablePerHourSquareFootDegreeFahrenheit => "N74",
10143            Unit::BritishThermalUnitThermochemicalPerHourSquareFootDegreeFahrenheit => "N75",
10144            Unit::BritishThermalUnitInternationalTablePerSecondSquareFootDegreeFahrenheit => "N76",
10145            Unit::BritishThermalUnitThermochemicalPerSecondSquareFootDegreeFahrenheit => "N77",
10146            Unit::KilowattPerSquareMetreKelvin => "N78",
10147            Unit::KelvinPerPascal => "N79",
10148            Unit::WattPerMetreDegreeCelsius => "N80",
10149            Unit::KilowattPerMetreKelvin => "N81",
10150            Unit::KilowattPerMetreDegreeCelsius => "N82",
10151            Unit::MetrePerDegreeCelciusMetre => "N83",
10152            Unit::DegreeFahrenheitHourPerBritishThermalUnitInternationalTable => "N84",
10153            Unit::DegreeFahrenheitHourPerBritishThermalUnitThermochemical => "N85",
10154            Unit::DegreeFahrenheitSecondPerBritishThermalUnitInternationalTable => "N86",
10155            Unit::DegreeFahrenheitSecondPerBritishThermalUnitThermochemical => "N87",
10156            Unit::DegreeFahrenheitHourSquareFootPerBritishThermalUnitInternationalTableInch => {
10157                "N88"
10158            }
10159            Unit::DegreeFahrenheitHourSquareFootPerBritishThermalUnitThermochemicalInch => "N89",
10160            Unit::Kilofarad => "N90",
10161            Unit::ReciprocalJoule => "N91",
10162            Unit::Picosiemens => "N92",
10163            Unit::AmperePerPascal => "N93",
10164            Unit::Franklin => "N94",
10165            Unit::AmpereMinute => "N95",
10166            Unit::Biot => "N96",
10167            Unit::Gilbert => "N97",
10168            Unit::VoltPerPascal => "N98",
10169            Unit::Picovolt => "N99",
10170            Unit::MilligramPerKilogram => "NA",
10171            Unit::NumberArticles => "NAR",
10172            Unit::NumberCells => "NCL",
10173            Unit::Newton => "NEW",
10174            Unit::Message => "NF",
10175            Unit::Nil => "NIL",
10176            Unit::NumberInternationalUnits => "NIU",
10177            Unit::Load => "NL",
10178            Unit::NormalisedCubicMetre => "NM3",
10179            Unit::NauticalMile => "NMI",
10180            Unit::NumberPacks => "NMP",
10181            Unit::NumberParts => "NPT",
10182            Unit::NetTon => "NT",
10183            Unit::NephelometricTurbidityUnit => "NTU",
10184            Unit::NewtonMetre => "NU",
10185            Unit::PartPerThousand => "NX",
10186            Unit::Panel => "OA",
10187            Unit::OzoneDepletionEquivalent => "ODE",
10188            Unit::OdsGrams => "ODG",
10189            Unit::OdsKilograms => "ODK",
10190            Unit::OdsMilligrams => "ODM",
10191            Unit::Ohm => "OHM",
10192            Unit::OuncePerSquareYard => "ON",
10193            Unit::OunceAvoirdupois => "ONZ",
10194            Unit::OscillationsPerMinute => "OPM",
10195            Unit::OvertimeHour => "OT",
10196            Unit::FluidOunceUs => "OZA",
10197            Unit::FluidOunceUk => "OZI",
10198            Unit::Percent => "P1",
10199            Unit::CoulombPerMetre => "P10",
10200            Unit::Kiloweber => "P11",
10201            Unit::Gamma => "P12",
10202            Unit::Kilotesla => "P13",
10203            Unit::JoulePerSecond => "P14",
10204            Unit::JoulePerMinute => "P15",
10205            Unit::JoulePerHour => "P16",
10206            Unit::JoulePerDay => "P17",
10207            Unit::KilojoulePerSecond => "P18",
10208            Unit::KilojoulePerMinute => "P19",
10209            Unit::PoundPerFoot => "P2",
10210            Unit::KilojoulePerHour => "P20",
10211            Unit::KilojoulePerDay => "P21",
10212            Unit::Nanoohm => "P22",
10213            Unit::OhmCircularMilPerFoot => "P23",
10214            Unit::Kilohenry => "P24",
10215            Unit::LumenPerSquareFoot => "P25",
10216            Unit::Phot => "P26",
10217            Unit::Footcandle => "P27",
10218            Unit::CandelaPerSquareInch => "P28",
10219            Unit::Footlambert => "P29",
10220            Unit::Lambert => "P30",
10221            Unit::Stilb => "P31",
10222            Unit::CandelaPerSquareFoot => "P32",
10223            Unit::Kilocandela => "P33",
10224            Unit::Millicandela => "P34",
10225            Unit::HefnerKerze => "P35",
10226            Unit::InternationalCandle => "P36",
10227            Unit::BritishThermalUnitInternationalTablePerSquareFoot => "P37",
10228            Unit::BritishThermalUnitThermochemicalPerSquareFoot => "P38",
10229            Unit::CalorieThermochemicalPerSquareCentimetre => "P39",
10230            Unit::Langley => "P40",
10231            Unit::DecadeLogarithmic => "P41",
10232            Unit::PascalSquaredSecond => "P42",
10233            Unit::BelPerMetre => "P43",
10234            Unit::PoundMole => "P44",
10235            Unit::PoundMolePerSecond => "P45",
10236            Unit::PoundMolePerMinute => "P46",
10237            Unit::KilomolePerKilogram => "P47",
10238            Unit::PoundMolePerPound => "P48",
10239            Unit::NewtonSquareMetrePerAmpere => "P49",
10240            Unit::FivePack => "P5",
10241            Unit::WeberMetre => "P50",
10242            Unit::MolPerKilogramPascal => "P51",
10243            Unit::MolPerCubicMetrePascal => "P52",
10244            Unit::UnitPole => "P53",
10245            Unit::MilligrayPerSecond => "P54",
10246            Unit::MicrograyPerSecond => "P55",
10247            Unit::NanograyPerSecond => "P56",
10248            Unit::GrayPerMinute => "P57",
10249            Unit::MilligrayPerMinute => "P58",
10250            Unit::MicrograyPerMinute => "P59",
10251            Unit::NanograyPerMinute => "P60",
10252            Unit::GrayPerHour => "P61",
10253            Unit::MilligrayPerHour => "P62",
10254            Unit::MicrograyPerHour => "P63",
10255            Unit::NanograyPerHour => "P64",
10256            Unit::SievertPerSecond => "P65",
10257            Unit::MillisievertPerSecond => "P66",
10258            Unit::MicrosievertPerSecond => "P67",
10259            Unit::NanosievertPerSecond => "P68",
10260            Unit::RemPerSecond => "P69",
10261            Unit::SievertPerHour => "P70",
10262            Unit::MillisievertPerHour => "P71",
10263            Unit::MicrosievertPerHour => "P72",
10264            Unit::NanosievertPerHour => "P73",
10265            Unit::SievertPerMinute => "P74",
10266            Unit::MillisievertPerMinute => "P75",
10267            Unit::MicrosievertPerMinute => "P76",
10268            Unit::NanosievertPerMinute => "P77",
10269            Unit::ReciprocalSquareInch => "P78",
10270            Unit::PascalSquareMetrePerKilogram => "P79",
10271            Unit::MillipascalPerMetre => "P80",
10272            Unit::KilopascalPerMetre => "P81",
10273            Unit::HectopascalPerMetre => "P82",
10274            Unit::StandardAtmospherePerMetre => "P83",
10275            Unit::TechnicalAtmospherePerMetre => "P84",
10276            Unit::TorrPerMetre => "P85",
10277            Unit::PsiPerInch => "P86",
10278            Unit::CubicMetrePerSecondSquareMetre => "P87",
10279            Unit::Rhe => "P88",
10280            Unit::PoundForceFootPerInch => "P89",
10281            Unit::PoundForceInchPerInch => "P90",
10282            Unit::Perm0Oc => "P91",
10283            Unit::Perm23Oc => "P92",
10284            Unit::BytePerSecond => "P93",
10285            Unit::KilobytePerSecond => "P94",
10286            Unit::MegabytePerSecond => "P95",
10287            Unit::ReciprocalVolt => "P96",
10288            Unit::ReciprocalRadian => "P97",
10289            Unit::PascalToPowerSumStoichiometricNumbers => "P98",
10290            Unit::MolePerCubivMetreToPowerSumStoichiometricNumbers => "P99",
10291            Unit::Pascal => "PAL",
10292            Unit::Pad => "PD",
10293            Unit::ProofLitre => "PFL",
10294            Unit::ProofGallon => "PGL",
10295            Unit::Pitch => "PI",
10296            Unit::DegreePlato => "PLA",
10297            Unit::PoundPerInchLength => "PO",
10298            Unit::PagePerInch => "PQ",
10299            Unit::Pair => "PR",
10300            Unit::PoundForcePerSquareInch => "PS",
10301            Unit::DryPintUs => "PTD",
10302            Unit::PintUk => "PTI",
10303            Unit::LiquidPintUs => "PTL",
10304            Unit::Portion => "PTN",
10305            Unit::JoulePerTesla => "Q10",
10306            Unit::Erlang => "Q11",
10307            Unit::Octet => "Q12",
10308            Unit::OctetPerSecond => "Q13",
10309            Unit::Shannon => "Q14",
10310            Unit::Hartley => "Q15",
10311            Unit::NaturalUnitInformation => "Q16",
10312            Unit::ShannonPerSecond => "Q17",
10313            Unit::HartleyPerSecond => "Q18",
10314            Unit::NaturalUnitInformationPerSecond => "Q19",
10315            Unit::SecondPerKilogramm => "Q20",
10316            Unit::WattSquareMetre => "Q21",
10317            Unit::SecondPerRadianCubicMetre => "Q22",
10318            Unit::WeberToPowerMinusOne => "Q23",
10319            Unit::ReciprocalInch => "Q24",
10320            Unit::Dioptre => "Q25",
10321            Unit::OnePerOne => "Q26",
10322            Unit::NewtonMetrePerMetre => "Q27",
10323            Unit::KilogramPerSquareMetrePascalSecond => "Q28",
10324            Unit::MicrogramPerHectogram => "Q29",
10325            Unit::Meal => "Q3",
10326            Unit::PhPotentialHydrogen => "Q30",
10327            Unit::KilojoulePerGram => "Q31",
10328            Unit::Femtolitre => "Q32",
10329            Unit::Picolitre => "Q33",
10330            Unit::Nanolitre => "Q34",
10331            Unit::MegawattsPerMinute => "Q35",
10332            Unit::SquareMetrePerCubicMetre => "Q36",
10333            Unit::StandardCubicMetrePerDay => "Q37",
10334            Unit::StandardCubicMetrePerHour => "Q38",
10335            Unit::NormalizedCubicMetrePerDay => "Q39",
10336            Unit::NormalizedCubicMetrePerHour => "Q40",
10337            Unit::JoulePerNormalisedCubicMetre => "Q41",
10338            Unit::JoulePerStandardCubicMetre => "Q42",
10339            Unit::PageFacsimile => "QA",
10340            Unit::QuarterAYear => "QAN",
10341            Unit::PageHardcopy => "QB",
10342            Unit::Quire => "QR",
10343            Unit::DryQuartUs => "QTD",
10344            Unit::QuartUk => "QTI",
10345            Unit::LiquidQuartUs => "QTL",
10346            Unit::QuarterUk => "QTR",
10347            Unit::Pica => "R1",
10348            Unit::ThousandCubicMetre => "R9",
10349            Unit::RunningOrOperatingHour => "RH",
10350            Unit::Ream => "RM",
10351            Unit::Room => "ROM",
10352            Unit::PoundPerReam => "RP",
10353            Unit::RevolutionsPerMinute => "RPM",
10354            Unit::RevolutionsPerSecond => "RPS",
10355            Unit::RevenueTonMile => "RT",
10356            Unit::SquareFootPerSecond => "S3",
10357            Unit::SquareMetrePerSecond => "S4",
10358            Unit::HalfYear6Months => "SAN",
10359            Unit::Score => "SCO",
10360            Unit::Scruple => "SCR",
10361            Unit::SecondUnitTime => "SEC",
10362            Unit::Set => "SET",
10363            Unit::Segment => "SG",
10364            Unit::Siemens => "SIE",
10365            Unit::StandardCubicMetre => "SM3",
10366            Unit::MileStatuteMile => "SMI",
10367            Unit::Square => "SQ",
10368            Unit::SquareRoofing => "SQR",
10369            Unit::Strip => "SR",
10370            Unit::Stick => "STC",
10371            Unit::StoneUk => "STI",
10372            Unit::StickCigarette => "STK",
10373            Unit::StandardLitre => "STL",
10374            Unit::TonUsOrShortTonUkUs => "STN",
10375            Unit::Straw => "STW",
10376            Unit::Skein => "SW",
10377            Unit::Shipment => "SX",
10378            Unit::Syringe => "SYR",
10379            Unit::TelecommunicationLineInService => "T0",
10380            Unit::ThousandPiece => "T3",
10381            Unit::KiloampereHourThousandAmpereHour => "TAH",
10382            Unit::TotalAcidNumber => "TAN",
10383            Unit::ThousandSquareInch => "TI",
10384            Unit::MetricTonIncludingContainer => "TIC",
10385            Unit::MetricTonIncludingInnerPackaging => "TIP",
10386            Unit::TonneKilometre => "TKM",
10387            Unit::KilogramImportedMeatLessOffal => "TMS",
10388            Unit::TonneMetricTon => "TNE",
10389            Unit::TenPack => "TP",
10390            Unit::TeethPerInch => "TPI",
10391            Unit::TenPair => "TPR",
10392            Unit::ThousandCubicMetrePerDay => "TQD",
10393            Unit::TrillionEur => "TRL",
10394            Unit::TenSet => "TST",
10395            Unit::TenThousandSticks => "TTS",
10396            Unit::Treatment => "U1",
10397            Unit::Tablet => "U2",
10398            Unit::TelecommunicationLineInServiceAverage => "UB",
10399            Unit::TelecommunicationPort => "UC",
10400            Unit::VoltAmperePerKilogram => "VA",
10401            Unit::Volt => "VLT",
10402            Unit::PercentVolume => "VP",
10403            Unit::WetKilo => "W2",
10404            Unit::WattPerKilogram => "WA",
10405            Unit::WetPound => "WB",
10406            Unit::Cord => "WCD",
10407            Unit::WetTon => "WE",
10408            Unit::Weber => "WEB",
10409            Unit::Week => "WEE",
10410            Unit::WineGallon => "WG",
10411            Unit::WattHour => "WHR",
10412            Unit::WorkingMonth => "WM",
10413            Unit::Standard => "WSD",
10414            Unit::Watt => "WTT",
10415            Unit::GuntersChain => "X1",
10416            Unit::SquareYard => "YDK",
10417            Unit::CubicYard => "YDQ",
10418            Unit::Yard => "YRD",
10419            Unit::HangingContainer => "Z11",
10420            Unit::Nanomole => "Z9",
10421            Unit::Page => "ZP",
10422            Unit::MutuallyDefined => "ZZ",
10423            Unit::DrumSteel => "X1A",
10424            Unit::DrumAluminium => "X1B",
10425            Unit::DrumPlywood => "X1D",
10426            Unit::ContainerFlexible => "X1F",
10427            Unit::DrumFibre => "X1G",
10428            Unit::DrumWooden => "X1W",
10429            Unit::BarrelWooden => "X2C",
10430            Unit::JerricanSteel => "X3A",
10431            Unit::JerricanPlastic => "X3H",
10432            Unit::BagSuperBulk => "X43",
10433            Unit::BagPolybag => "X44",
10434            Unit::BoxSteel => "X4A",
10435            Unit::BoxAluminium => "X4B",
10436            Unit::BoxNaturalWood => "X4C",
10437            Unit::BoxPlywood => "X4D",
10438            Unit::BoxReconstitutedWood => "X4F",
10439            Unit::BoxFibreboard => "X4G",
10440            Unit::BoxPlastic => "X4H",
10441            Unit::BagWovenPlastic => "X5H",
10442            Unit::BagTextile => "X5L",
10443            Unit::BagPaper => "X5M",
10444            Unit::CompositePackagingPlasticReceptacle => "X6H",
10445            Unit::CompositePackagingGlassReceptacle => "X6P",
10446            Unit::CaseCar => "X7A",
10447            Unit::CaseWooden => "X7B",
10448            Unit::PalletWooden => "X8A",
10449            Unit::CrateWooden => "X8B",
10450            Unit::BundleWooden => "X8C",
10451            Unit::IntermediateBulkContainerRigidPlastic => "XAA",
10452            Unit::ReceptacleFibre => "XAB",
10453            Unit::ReceptaclePaper => "XAC",
10454            Unit::ReceptacleWooden => "XAD",
10455            Unit::Aerosol => "XAE",
10456            Unit::PalletModularCollars80cms60cms => "XAF",
10457            Unit::PalletShrinkwrapped => "XAG",
10458            Unit::Pallet100cms110cms => "XAH",
10459            Unit::Clamshell => "XAI",
10460            Unit::Cone => "XAJ",
10461            Unit::Ball_Dup => "XAL",
10462            Unit::AmpouleNonProtected => "XAM",
10463            Unit::AmpouleProtected => "XAP",
10464            Unit::Atomizer => "XAT",
10465            Unit::Capsule => "XAV",
10466            Unit::Belt => "XB4",
10467            Unit::Barrel => "XBA",
10468            Unit::Bobbin => "XBB",
10469            Unit::BottlecrateBottlerack => "XBC",
10470            Unit::Board => "XBD",
10471            Unit::Bundle => "XBE",
10472            Unit::BalloonNonProtected => "XBF",
10473            Unit::Bag => "XBG",
10474            Unit::Bunch => "XBH",
10475            Unit::Bin => "XBI",
10476            Unit::Bucket => "XBJ",
10477            Unit::Basket => "XBK",
10478            Unit::BaleCompressed => "XBL",
10479            Unit::Basin => "XBM",
10480            Unit::BaleNonCompressed => "XBN",
10481            Unit::BottleNonProtectedCylindrical => "XBO",
10482            Unit::BalloonProtected => "XBP",
10483            Unit::BottleProtectedCylindrical => "XBQ",
10484            Unit::Bar => "XBR",
10485            Unit::BottleNonProtectedBulbous => "XBS",
10486            Unit::Bolt => "XBT",
10487            Unit::Butt => "XBU",
10488            Unit::BottleProtectedBulbous => "XBV",
10489            Unit::BoxForLiquids => "XBW",
10490            Unit::Box => "XBX",
10491            Unit::BoardInBundleBunchTruss => "XBY",
10492            Unit::BarsInBundleBunchTruss => "XBZ",
10493            Unit::CanRectangular => "XCA",
10494            Unit::CrateBeer => "XCB",
10495            Unit::Churn => "XCC",
10496            Unit::CanWithHandleAndSpout => "XCD",
10497            Unit::Creel => "XCE",
10498            Unit::Coffer => "XCF",
10499            Unit::Cage => "XCG",
10500            Unit::Chest => "XCH",
10501            Unit::Canister => "XCI",
10502            Unit::Coffin => "XCJ",
10503            Unit::Cask => "XCK",
10504            Unit::Coil => "XCL",
10505            Unit::Card_Dup => "XCM",
10506            Unit::ContainerNotOtherwiseSpecifiedAsTransportEquipment => "XCN",
10507            Unit::CarboyNonProtected => "XCO",
10508            Unit::CarboyProtected => "XCP",
10509            Unit::Cartridge => "XCQ",
10510            Unit::Crate => "XCR",
10511            Unit::Case => "XCS",
10512            Unit::Carton => "XCT",
10513            Unit::Cup => "XCU",
10514            Unit::Cover => "XCV",
10515            Unit::CageRoll => "XCW",
10516            Unit::CanCylindrical => "XCX",
10517            Unit::Cylinder => "XCY",
10518            Unit::Canvas => "XCZ",
10519            Unit::CrateMultipleLayerPlastic => "XDA",
10520            Unit::CrateMultipleLayerWooden => "XDB",
10521            Unit::CrateMultipleLayerCardboard => "XDC",
10522            Unit::CageCommonwealthHandlingEquipmentPoolChep => "XDG",
10523            Unit::BoxCommonwealthHandlingEquipmentPoolChepEurobox => "XDH",
10524            Unit::DrumIron => "XDI",
10525            Unit::DemijohnNonProtected => "XDJ",
10526            Unit::CrateBulkCardboard => "XDK",
10527            Unit::CrateBulkPlastic => "XDL",
10528            Unit::CrateBulkWooden => "XDM",
10529            Unit::Dispenser => "XDN",
10530            Unit::DemijohnProtected => "XDP",
10531            Unit::Drum => "XDR",
10532            Unit::TrayOneLayerNoCoverPlastic => "XDS",
10533            Unit::TrayOneLayerNoCoverWooden => "XDT",
10534            Unit::TrayOneLayerNoCoverPolystyrene => "XDU",
10535            Unit::TrayOneLayerNoCoverCardboard => "XDV",
10536            Unit::TrayTwoLayersNoCoverPlasticTray => "XDW",
10537            Unit::TrayTwoLayersNoCoverWooden => "XDX",
10538            Unit::TrayTwoLayersNoCoverCardboard => "XDY",
10539            Unit::BagPlastic => "XEC",
10540            Unit::CaseWithPalletBase => "XED",
10541            Unit::CaseWithPalletBaseWooden => "XEE",
10542            Unit::CaseWithPalletBaseCardboard => "XEF",
10543            Unit::CaseWithPalletBasePlastic => "XEG",
10544            Unit::CaseWithPalletBaseMetal => "XEH",
10545            Unit::CaseIsothermic => "XEI",
10546            Unit::Envelope => "XEN",
10547            Unit::Flexibag => "XFB",
10548            Unit::CrateFruit => "XFC",
10549            Unit::CrateFramed => "XFD",
10550            Unit::Flexitank => "XFE",
10551            Unit::Firkin => "XFI",
10552            Unit::Flask => "XFL",
10553            Unit::Footlocker => "XFO",
10554            Unit::Filmpack => "XFP",
10555            Unit::Frame => "XFR",
10556            Unit::Foodtainer => "XFT",
10557            Unit::CartFlatbed => "XFW",
10558            Unit::BagFlexibleContainer => "XFX",
10559            Unit::BottleGas => "XGB",
10560            Unit::Girder => "XGI",
10561            Unit::ContainerGallon => "XGL",
10562            Unit::ReceptacleGlass => "XGR",
10563            Unit::TrayContainingHorizontallyStackedFlatItems => "XGU",
10564            Unit::BagGunny => "XGY",
10565            Unit::GirdersInBundleBunchTruss => "XGZ",
10566            Unit::BasketWithHandlePlastic => "XHA",
10567            Unit::BasketWithHandleWooden => "XHB",
10568            Unit::BasketWithHandleCardboard => "XHC",
10569            Unit::Hogshead => "XHG",
10570            Unit::Hanger => "XHN",
10571            Unit::Hamper => "XHR",
10572            Unit::PackageDisplayWooden => "XIA",
10573            Unit::PackageDisplayCardboard => "XIB",
10574            Unit::PackageDisplayPlastic => "XIC",
10575            Unit::PackageDisplayMetal => "XID",
10576            Unit::PackageShow => "XIE",
10577            Unit::PackageFlow => "XIF",
10578            Unit::PackagePaperWrapped => "XIG",
10579            Unit::DrumPlastic => "XIH",
10580            Unit::PackageCardboardWithBottleGripHoles => "XIK",
10581            Unit::TrayRigidLiddedStackableCenTs144822002 => "XIL",
10582            Unit::Ingot => "XIN",
10583            Unit::IngotsInBundleBunchTruss => "XIZ",
10584            Unit::BagJumbo => "XJB",
10585            Unit::JerricanRectangular => "XJC",
10586            Unit::Jug => "XJG",
10587            Unit::Jar => "XJR",
10588            Unit::Jutebag => "XJT",
10589            Unit::JerricanCylindrical => "XJY",
10590            Unit::Keg => "XKG",
10591            Unit::Kit_Dup => "XKI",
10592            Unit::Luggage => "XLE",
10593            Unit::Log => "XLG",
10594            Unit::Lot => "XLT",
10595            Unit::Lug => "XLU",
10596            Unit::Liftvan => "XLV",
10597            Unit::LogsInBundleBunchTruss => "XLZ",
10598            Unit::CrateMetal => "XMA",
10599            Unit::BagMultiply => "XMB",
10600            Unit::CrateMilk => "XMC",
10601            Unit::ContainerMetal => "XME",
10602            Unit::ReceptacleMetal => "XMR",
10603            Unit::SackMultiWall => "XMS",
10604            Unit::Mat => "XMT",
10605            Unit::ReceptaclePlasticWrapped => "XMW",
10606            Unit::Matchbox => "XMX",
10607            Unit::NotAvailable => "XNA",
10608            Unit::UnpackedOrUnpackaged => "XNE",
10609            Unit::UnpackedOrUnpackagedSingleUnit => "XNF",
10610            Unit::UnpackedOrUnpackagedMultipleUnits => "XNG",
10611            Unit::Nest => "XNS",
10612            Unit::Net => "XNT",
10613            Unit::NetTubePlastic => "XNU",
10614            Unit::NetTubeTextile => "XNV",
10615            Unit::TwoSidedCageOnWheelsWithFixingStrap => "XO1",
10616            Unit::Trolley => "XO2",
10617            Unit::OnewayPalletIso012EuroPallet => "XO3",
10618            Unit::OnewayPalletIso111EuroPallet => "XO4",
10619            Unit::OnewayPalletIso221EuroPallet => "XO5",
10620            Unit::PalletWithExceptionalDimensions => "XO6",
10621            Unit::WoodenPallet40CmX80Cm => "XO7",
10622            Unit::PlasticPalletSrs60CmX80Cm => "XO8",
10623            Unit::PlasticPalletSrs80CmX120Cm => "XO9",
10624            Unit::PalletChep40CmX60Cm => "XOA",
10625            Unit::PalletChep80CmX120Cm => "XOB",
10626            Unit::PalletChep100CmX120Cm => "XOC",
10627            Unit::PalletAs40681993 => "XOD",
10628            Unit::PalletIsoT11 => "XOE",
10629            Unit::PlatformUnspecifiedWeightOrDimension => "XOF",
10630            Unit::PalletIso012EuroPallet => "XOG",
10631            Unit::PalletIso111EuroPallet => "XOH",
10632            Unit::PalletIso221EuroPallet => "XOI",
10633            Unit::_14EuroPallet => "XOJ",
10634            Unit::Block => "XOK",
10635            Unit::_18EuroPallet => "XOL",
10636            Unit::SyntheticPalletIso1 => "XOM",
10637            Unit::SyntheticPalletIso2 => "XON",
10638            Unit::WholesalerPallet => "XOP",
10639            Unit::Pallet80X100Cm => "XOQ",
10640            Unit::Pallet60X100Cm => "XOR",
10641            Unit::OnewayPallet => "XOS",
10642            Unit::Octabin => "XOT",
10643            Unit::ContainerOuter => "XOU",
10644            Unit::ReturnablePallet => "XOV",
10645            Unit::LargeBagPalletSized => "XOW",
10646            Unit::AWheeledPalletWithRaisedRim81X67X135 => "XOX",
10647            Unit::AWheeledPalletWithRaisedRim81X72X135 => "XOY",
10648            Unit::WheeledPalletWithRaisedRim81X60X16 => "XOZ",
10649            Unit::ChepPallet60CmX80Cm => "XP1",
10650            Unit::Pan => "XP2",
10651            Unit::LprPallet60CmX80Cm => "XP3",
10652            Unit::LprPallet80CmX120Cm => "XP4",
10653            Unit::Packet => "XPA",
10654            Unit::PalletBoxCombinedOpenEndedBoxAndPallet => "XPB",
10655            Unit::Parcel => "XPC",
10656            Unit::PalletModularCollars80cms100cms => "XPD",
10657            Unit::PalletModularCollars80cms120cms => "XPE",
10658            Unit::Pen => "XPF",
10659            Unit::Plate => "XPG",
10660            Unit::Pitcher => "XPH",
10661            Unit::Pipe => "XPI",
10662            Unit::Punnet => "XPJ",
10663            Unit::Package => "XPK",
10664            Unit::Pail => "XPL",
10665            Unit::Plank => "XPN",
10666            Unit::Pouch => "XPO",
10667            Unit::Piece_Dup => "XPP",
10668            Unit::ReceptaclePlastic => "XPR",
10669            Unit::Pot => "XPT",
10670            Unit::Tray => "XPU",
10671            Unit::PipesInBundleBunchTruss => "XPV",
10672            Unit::Pallet => "XPX",
10673            Unit::PlatesInBundleBunchTruss => "XPY",
10674            Unit::PlanksInBundleBunchTruss => "XPZ",
10675            Unit::DrumSteelNonRemovableHead => "XQA",
10676            Unit::DrumSteelRemovableHead => "XQB",
10677            Unit::DrumAluminiumNonRemovableHead => "XQC",
10678            Unit::DrumAluminiumRemovableHead => "XQD",
10679            Unit::DrumPlasticNonRemovableHead => "XQF",
10680            Unit::DrumPlasticRemovableHead => "XQG",
10681            Unit::BarrelWoodenBungType => "XQH",
10682            Unit::BarrelWoodenRemovableHead => "XQJ",
10683            Unit::JerricanSteelNonRemovableHead => "XQK",
10684            Unit::JerricanSteelRemovableHead => "XQL",
10685            Unit::JerricanPlasticNonRemovableHead => "XQM",
10686            Unit::JerricanPlasticRemovableHead => "XQN",
10687            Unit::BoxWoodenNaturalWoodOrdinary => "XQP",
10688            Unit::BoxWoodenNaturalWoodWithSiftProofWalls => "XQQ",
10689            Unit::BoxPlasticExpanded => "XQR",
10690            Unit::BoxPlasticSolid => "XQS",
10691            Unit::Rod => "XRD",
10692            Unit::Ring => "XRG",
10693            Unit::RackClothingHanger => "XRJ",
10694            Unit::Rack => "XRK",
10695            Unit::Reel => "XRL",
10696            Unit::Roll => "XRO",
10697            Unit::Rednet => "XRT",
10698            Unit::RodsInBundleBunchTruss => "XRZ",
10699            Unit::Sack => "XSA",
10700            Unit::Slab => "XSB",
10701            Unit::CrateShallow => "XSC",
10702            Unit::Spindle => "XSD",
10703            Unit::SeaChest => "XSE",
10704            Unit::Sachet => "XSH",
10705            Unit::Skid => "XSI",
10706            Unit::CaseSkeleton => "XSK",
10707            Unit::Slipsheet => "XSL",
10708            Unit::Sheetmetal => "XSM",
10709            Unit::Spool => "XSO",
10710            Unit::SheetPlasticWrapping => "XSP",
10711            Unit::CaseSteel => "XSS",
10712            Unit::Sheet => "XST",
10713            Unit::Suitcase => "XSU",
10714            Unit::EnvelopeSteel => "XSV",
10715            Unit::Shrinkwrapped => "XSW",
10716            Unit::Set_Dup => "XSX",
10717            Unit::Sleeve => "XSY",
10718            Unit::SheetsInBundleBunchTruss => "XSZ",
10719            Unit::Tablet_Dup => "XT1",
10720            Unit::Tub => "XTB",
10721            Unit::TeaChest => "XTC",
10722            Unit::TubeCollapsible => "XTD",
10723            Unit::Tyre_Dup => "XTE",
10724            Unit::TankContainerGeneric => "XTG",
10725            Unit::Tierce => "XTI",
10726            Unit::TankRectangular => "XTK",
10727            Unit::TubWithLid => "XTL",
10728            Unit::Tin => "XTN",
10729            Unit::Tun => "XTO",
10730            Unit::Trunk => "XTR",
10731            Unit::Truss => "XTS",
10732            Unit::BagTote => "XTT",
10733            Unit::Tube => "XTU",
10734            Unit::TubeWithNozzle => "XTV",
10735            Unit::PalletTriwall => "XTW",
10736            Unit::TankCylindrical => "XTY",
10737            Unit::TubesInBundleBunchTruss => "XTZ",
10738            Unit::Uncaged => "XUC",
10739            Unit::Unit => "XUN",
10740            Unit::Vat => "XVA",
10741            Unit::BulkGasAt1031MbarAnd15C => "XVG",
10742            Unit::Vial => "XVI",
10743            Unit::Vanpack => "XVK",
10744            Unit::BulkLiquid => "XVL",
10745            Unit::Vehicle => "XVN",
10746            Unit::BulkSolidLargeParticlesNodules => "XVO",
10747            Unit::VacuumPacked => "XVP",
10748            Unit::BulkLiquefiedGasAtAbnormalTemperaturePressure => "XVQ",
10749            Unit::BulkSolidGranularParticlesGrains => "XVR",
10750            Unit::BulkScrapMetal => "XVS",
10751            Unit::BulkSolidFineParticlesPowders => "XVY",
10752            Unit::IntermediateBulkContainer => "XWA",
10753            Unit::Wickerbottle => "XWB",
10754            Unit::IntermediateBulkContainerSteel => "XWC",
10755            Unit::IntermediateBulkContainerAluminium => "XWD",
10756            Unit::IntermediateBulkContainerMetal => "XWF",
10757            Unit::IntermediateBulkContainerSteelPressurised10Kpa => "XWG",
10758            Unit::IntermediateBulkContainerAluminiumPressurised10Kpa => "XWH",
10759            Unit::IntermediateBulkContainerMetalPressure10Kpa => "XWJ",
10760            Unit::IntermediateBulkContainerSteelLiquid => "XWK",
10761            Unit::IntermediateBulkContainerAluminiumLiquid => "XWL",
10762            Unit::IntermediateBulkContainerMetalLiquid => "XWM",
10763            Unit::IntermediateBulkContainerWovenPlasticWithoutCoatLiner => "XWN",
10764            Unit::IntermediateBulkContainerWovenPlasticCoated => "XWP",
10765            Unit::IntermediateBulkContainerWovenPlasticWithLiner => "XWQ",
10766            Unit::IntermediateBulkContainerWovenPlasticCoatedAndLiner => "XWR",
10767            Unit::IntermediateBulkContainerPlasticFilm => "XWS",
10768            Unit::IntermediateBulkContainerTextileWithOutCoatLiner => "XWT",
10769            Unit::IntermediateBulkContainerNaturalWoodWithInnerLiner => "XWU",
10770            Unit::IntermediateBulkContainerTextileCoated => "XWV",
10771            Unit::IntermediateBulkContainerTextileWithLiner => "XWW",
10772            Unit::IntermediateBulkContainerTextileCoatedAndLiner => "XWX",
10773            Unit::IntermediateBulkContainerPlywoodWithInnerLiner => "XWY",
10774            Unit::IntermediateBulkContainerReconstitutedWoodWithInnerLiner => "XWZ",
10775            Unit::BagWovenPlasticWithoutInnerCoatLiner => "XXA",
10776            Unit::BagWovenPlasticSiftProof => "XXB",
10777            Unit::BagWovenPlasticWaterResistant => "XXC",
10778            Unit::BagPlasticsFilm => "XXD",
10779            Unit::BagTextileWithoutInnerCoatLiner => "XXF",
10780            Unit::BagTextileSiftProof => "XXG",
10781            Unit::BagTextileWaterResistant => "XXH",
10782            Unit::BagPaperMultiWall => "XXJ",
10783            Unit::BagPaperMultiWallWaterResistant => "XXK",
10784            Unit::CompositePackagingPlasticReceptacleInSteelDrum => "XYA",
10785            Unit::CompositePackagingPlasticReceptacleInSteelCrateBox => "XYB",
10786            Unit::CompositePackagingPlasticReceptacleInAluminiumDrum => "XYC",
10787            Unit::CompositePackagingPlasticReceptacleInAluminiumCrate => "XYD",
10788            Unit::CompositePackagingPlasticReceptacleInWoodenBox => "XYF",
10789            Unit::CompositePackagingPlasticReceptacleInPlywoodDrum => "XYG",
10790            Unit::CompositePackagingPlasticReceptacleInPlywoodBox => "XYH",
10791            Unit::CompositePackagingPlasticReceptacleInFibreDrum => "XYJ",
10792            Unit::CompositePackagingPlasticReceptacleInFibreboardBox => "XYK",
10793            Unit::CompositePackagingPlasticReceptacleInPlasticDrum => "XYL",
10794            Unit::CompositePackagingPlasticReceptacleInSolidPlasticBox => "XYM",
10795            Unit::CompositePackagingGlassReceptacleInSteelDrum => "XYN",
10796            Unit::CompositePackagingGlassReceptacleInSteelCrateBox => "XYP",
10797            Unit::CompositePackagingGlassReceptacleInAluminiumDrum => "XYQ",
10798            Unit::CompositePackagingGlassReceptacleInAluminiumCrate => "XYR",
10799            Unit::CompositePackagingGlassReceptacleInWoodenBox => "XYS",
10800            Unit::CompositePackagingGlassReceptacleInPlywoodDrum => "XYT",
10801            Unit::CompositePackagingGlassReceptacleInWickerworkHamper => "XYV",
10802            Unit::CompositePackagingGlassReceptacleInFibreDrum => "XYW",
10803            Unit::CompositePackagingGlassReceptacleInFibreboardBox => "XYX",
10804            Unit::CompositePackagingGlassReceptacleInExpandablePlasticPack => "XYY",
10805            Unit::CompositePackagingGlassReceptacleInSolidPlasticPack => "XYZ",
10806            Unit::IntermediateBulkContainerPaperMultiWall => "XZA",
10807            Unit::BagLarge => "XZB",
10808            Unit::IntermediateBulkContainerPaperMultiWallWaterResistant => "XZC",
10809            Unit::IntermediateBulkContainerRigidPlasticWithStructuralEquipmentSolids => "XZD",
10810            Unit::IntermediateBulkContainerRigidPlasticFreestandingSolids => "XZF",
10811            Unit::IntermediateBulkContainerRigidPlasticWithStructuralEquipmentPressurised => "XZG",
10812            Unit::IntermediateBulkContainerRigidPlasticFreestandingPressurised => "XZH",
10813            Unit::IntermediateBulkContainerRigidPlasticWithStructuralEquipmentLiquids => "XZJ",
10814            Unit::IntermediateBulkContainerRigidPlasticFreestandingLiquids => "XZK",
10815            Unit::IntermediateBulkContainerCompositeRigidPlasticSolids => "XZL",
10816            Unit::IntermediateBulkContainerCompositeFlexiblePlasticSolids => "XZM",
10817            Unit::IntermediateBulkContainerCompositeRigidPlasticPressurised => "XZN",
10818            Unit::IntermediateBulkContainerCompositeFlexiblePlasticPressurised => "XZP",
10819            Unit::IntermediateBulkContainerCompositeRigidPlasticLiquids => "XZQ",
10820            Unit::IntermediateBulkContainerCompositeFlexiblePlasticLiquids => "XZR",
10821            Unit::IntermediateBulkContainerComposite => "XZS",
10822            Unit::IntermediateBulkContainerFibreboard => "XZT",
10823            Unit::IntermediateBulkContainerFlexible => "XZU",
10824            Unit::IntermediateBulkContainerMetalOtherThanSteel => "XZV",
10825            Unit::IntermediateBulkContainerNaturalWood => "XZW",
10826            Unit::IntermediateBulkContainerPlywood => "XZX",
10827            Unit::IntermediateBulkContainerReconstitutedWood => "XZY",
10828            Unit::MutuallyDefined_Dup => "XZZ",
10829        }
10830    }
10831}
10832
10833impl crate::Description for Unit {
10834    fn description(self) -> &'static str {
10835        match self {
10836            Unit::Group => "group",
10837            Unit::Outfit => "outfit",
10838            Unit::Ration => "ration",
10839            Unit::Shot => "shot",
10840            Unit::StickMilitary => "stick, military",
10841            Unit::TwentyFootContainer => "twenty foot container",
10842            Unit::FortyFootContainer => "forty foot container",
10843            Unit::DecilitrePerGram => "decilitre per gram",
10844            Unit::GramPerCubicCentimetre => "gram per cubic centimetre",
10845            Unit::TheoreticalPound => "theoretical pound",
10846            Unit::GramPerSquareCentimetre => "gram per square centimetre",
10847            Unit::TheoreticalTon => "theoretical ton",
10848            Unit::KilogramPerSquareMetre => "kilogram per square metre",
10849            Unit::KilopascalSquareMetrePerGram => "kilopascal square metre per gram",
10850            Unit::KilopascalPerMillimetre => "kilopascal per millimetre",
10851            Unit::MillilitrePerSquareCentimetreSecond => "millilitre per square centimetre second",
10852            Unit::OuncePerSquareFoot => "ounce per square foot",
10853            Unit::OuncePerSquareFootPer001inch => "ounce per square foot per 0,01inch",
10854            Unit::MillilitrePerSecond => "millilitre per second",
10855            Unit::MillilitrePerMinute => "millilitre per minute",
10856            Unit::Sitas => "sitas",
10857            Unit::Mesh => "mesh",
10858            Unit::NetKilogram => "net kilogram",
10859            Unit::PartPerMillion => "part per million",
10860            Unit::PercentWeight => "percent weight",
10861            Unit::PartPerBillionUs => "part per billion (US)",
10862            Unit::Millipascal => "millipascal",
10863            Unit::MilliInch => "milli-inch",
10864            Unit::PoundPerSquareInchAbsolute => "pound per square inch absolute",
10865            Unit::Henry => "henry",
10866            Unit::FootPoundForce => "foot pound-force",
10867            Unit::PoundPerCubicFoot => "pound per cubic foot",
10868            Unit::Poise => "poise",
10869            Unit::Stokes => "stokes",
10870            Unit::FixedRate => "fixed rate",
10871            Unit::RadianPerSecond => "radian per second",
10872            Unit::RadianPerSecondSquared => "radian per second squared",
10873            Unit::Roentgen => "roentgen",
10874            Unit::VoltAc => "volt AC",
10875            Unit::VoltDc => "volt DC",
10876            Unit::BritishThermalUnitInternationalTablePerHour => "British thermal unit (international table) per hour",
10877            Unit::CubicCentimetrePerSecond => "cubic centimetre per second",
10878            Unit::CubicFootPerHour => "cubic foot per hour",
10879            Unit::CubicFootPerMinute => "cubic foot per minute",
10880            Unit::CentimetrePerSecond => "centimetre per second",
10881            Unit::Decibel => "decibel",
10882            Unit::Kilobyte => "kilobyte",
10883            Unit::Kilobecquerel => "kilobecquerel",
10884            Unit::Kilocurie => "kilocurie",
10885            Unit::Megagram => "megagram",
10886            Unit::MetrePerMinute => "metre per minute",
10887            Unit::Milliroentgen => "milliroentgen",
10888            Unit::Millivolt => "millivolt",
10889            Unit::Megajoule => "megajoule",
10890            Unit::Manmonth => "manmonth",
10891            Unit::Centistokes => "centistokes",
10892            Unit::Microlitre => "microlitre",
10893            Unit::MicrometreMicron => "micrometre (micron)",
10894            Unit::Milliampere => "milliampere",
10895            Unit::Megabyte => "megabyte",
10896            Unit::MilligramPerHour => "milligram per hour",
10897            Unit::Megabecquerel => "megabecquerel",
10898            Unit::Microfarad => "microfarad",
10899            Unit::NewtonPerMetre => "newton per metre",
10900            Unit::OunceInch => "ounce inch",
10901            Unit::OunceFoot => "ounce foot",
10902            Unit::Picofarad => "picofarad",
10903            Unit::PoundPerHour => "pound per hour",
10904            Unit::TonUsPerHour => "ton (US) per hour",
10905            Unit::KilolitrePerHour => "kilolitre per hour",
10906            Unit::BarrelUsPerMinute => "barrel (US) per minute",
10907            Unit::Batch => "batch",
10908            Unit::MmscfDay => "MMSCF/day",
10909            Unit::HydraulicHorsePower => "hydraulic horse power",
10910            Unit::AmpereSquareMetrePerJouleSecond => "ampere square metre per joule second",
10911            Unit::Angstrom => "angstrom",
10912            Unit::AstronomicalUnit => "astronomical unit",
10913            Unit::Attojoule => "attojoule",
10914            Unit::Barn => "barn",
10915            Unit::BarnPerElectronvolt => "barn per electronvolt",
10916            Unit::BarnPerSteradianElectronvolt => "barn per steradian electronvolt",
10917            Unit::BarnPerSteradian => "barn per steradian",
10918            Unit::BecquerelPerKilogram => "becquerel per kilogram",
10919            Unit::BecquerelPerCubicMetre => "becquerel per cubic metre",
10920            Unit::AmperePerCentimetre => "ampere per centimetre",
10921            Unit::BritishThermalUnitInternationalTablePerSecondSquareFootDegreeRankine => "British thermal unit (international table) per second square foot degree Rankine",
10922            Unit::BritishThermalUnitInternationalTablePerPoundDegreeRankine => "British thermal unit (international table) per pound degree Rankine",
10923            Unit::BritishThermalUnitInternationalTablePerSecondFootDegreeRankine => "British thermal unit (international table) per second foot degree Rankine",
10924            Unit::BritishThermalUnitInternationalTablePerHourSquareFootDegreeRankine => "British thermal unit (international table) per hour square foot degree Rankine",
10925            Unit::CandelaPerSquareMetre => "candela per square metre",
10926            Unit::CoulombMetre => "coulomb metre",
10927            Unit::CoulombMetreSquaredPerVolt => "coulomb metre squared per volt",
10928            Unit::CoulombPerCubicCentimetre => "coulomb per cubic centimetre",
10929            Unit::CoulombPerCubicMetre => "coulomb per cubic metre",
10930            Unit::AmperePerMillimetre => "ampere per millimetre",
10931            Unit::CoulombPerCubicMillimetre => "coulomb per cubic millimetre",
10932            Unit::CoulombPerKilogramSecond => "coulomb per kilogram second",
10933            Unit::CoulombPerMole => "coulomb per mole",
10934            Unit::CoulombPerSquareCentimetre => "coulomb per square centimetre",
10935            Unit::CoulombPerSquareMetre => "coulomb per square metre",
10936            Unit::CoulombPerSquareMillimetre => "coulomb per square millimetre",
10937            Unit::CubicCentimetrePerMole => "cubic centimetre per mole",
10938            Unit::CubicDecimetrePerMole => "cubic decimetre per mole",
10939            Unit::CubicMetrePerCoulomb => "cubic metre per coulomb",
10940            Unit::CubicMetrePerKilogram => "cubic metre per kilogram",
10941            Unit::AmperePerSquareCentimetre => "ampere per square centimetre",
10942            Unit::CubicMetrePerMole => "cubic metre per mole",
10943            Unit::AmperePerSquareMetre => "ampere per square metre",
10944            Unit::CuriePerKilogram => "curie per kilogram",
10945            Unit::DeadweightTonnage => "deadweight tonnage",
10946            Unit::Decalitre => "decalitre",
10947            Unit::Decametre => "decametre",
10948            Unit::Decitex => "decitex",
10949            Unit::DegreeRankine => "degree Rankine",
10950            Unit::Denier => "denier",
10951            Unit::AmpereSquareMetre => "ampere square metre",
10952            Unit::Electronvolt => "electronvolt",
10953            Unit::ElectronvoltPerMetre => "electronvolt per metre",
10954            Unit::ElectronvoltSquareMetre => "electronvolt square metre",
10955            Unit::ElectronvoltSquareMetrePerKilogram => "electronvolt square metre per kilogram",
10956            Unit::_8PartCloudCover => "8-part cloud cover",
10957            Unit::AmperePerSquareMetreKelvinSquared => "ampere per square metre kelvin squared",
10958            Unit::Exajoule => "exajoule",
10959            Unit::FaradPerMetre => "farad per metre",
10960            Unit::AmperePerSquareMillimetre => "ampere per square millimetre",
10961            Unit::Femtojoule => "femtojoule",
10962            Unit::Femtometre => "femtometre",
10963            Unit::FootPerSecondSquared => "foot per second squared",
10964            Unit::FootPoundForcePerSecond => "foot pound-force per second",
10965            Unit::FreightTon => "freight ton",
10966            Unit::Gal => "gal",
10967            Unit::AmpereSecond => "ampere second",
10968            Unit::GigacoulombPerCubicMetre => "gigacoulomb per cubic metre",
10969            Unit::Gigaelectronvolt => "gigaelectronvolt",
10970            Unit::Gigahertz => "gigahertz",
10971            Unit::Gigaohm => "gigaohm",
10972            Unit::GigaohmMetre => "gigaohm metre",
10973            Unit::Gigapascal => "gigapascal",
10974            Unit::Rate => "rate",
10975            Unit::Gigawatt => "gigawatt",
10976            Unit::Gon => "gon",
10977            Unit::GramPerCubicMetre => "gram per cubic metre",
10978            Unit::GramPerMole => "gram per mole",
10979            Unit::Gray => "gray",
10980            Unit::GrayPerSecond => "gray per second",
10981            Unit::Hectopascal => "hectopascal",
10982            Unit::HenryPerMetre => "henry per metre",
10983            Unit::Bit => "bit",
10984            Unit::Ball => "ball",
10985            Unit::BulkPack => "bulk pack",
10986            Unit::Acre => "acre",
10987            Unit::Activity => "activity",
10988            Unit::Byte => "byte",
10989            Unit::AmperePerMetre => "ampere per metre",
10990            Unit::AdditionalMinute => "additional minute",
10991            Unit::AverageMinutePerCall => "average minute per call",
10992            Unit::Fathom => "fathom",
10993            Unit::AccessLine => "access line",
10994            Unit::AmpereHour => "ampere hour",
10995            Unit::Ampere => "ampere",
10996            Unit::Year => "year",
10997            Unit::TroyOunceOrApothecaryOunce => "troy ounce or apothecary ounce",
10998            Unit::AntiHemophilicFactorAhfUnit => "anti-hemophilic factor (AHF) unit",
10999            Unit::Assortment => "assortment",
11000            Unit::AlcoholicStrengthByMass => "alcoholic strength by mass",
11001            Unit::AlcoholicStrengthByVolume => "alcoholic strength by volume",
11002            Unit::StandardAtmosphere => "standard atmosphere",
11003            Unit::AmericanWireGauge => "american wire gauge",
11004            Unit::Assembly => "assembly",
11005            Unit::BritishThermalUnitInternationalTablePerPound => "British thermal unit (international table) per pound",
11006            Unit::BarrelUsPerDay => "barrel (US) per day",
11007            Unit::BitPerSecond => "bit per second",
11008            Unit::JoulePerKilogramKelvin => "joule per kilogram kelvin",
11009            Unit::JoulePerMetre => "joule per metre",
11010            Unit::JoulePerSquareMetre => "joule per square metre",
11011            Unit::JoulePerMetreToFourthPower => "joule per metre to the fourth power",
11012            Unit::JoulePerMole => "joule per mole",
11013            Unit::JoulePerMoleKelvin => "joule per mole kelvin",
11014            Unit::Credit => "credit",
11015            Unit::JouleSecond => "joule second",
11016            Unit::Digit => "digit",
11017            Unit::JouleSquareMetrePerKilogram => "joule square metre per kilogram",
11018            Unit::KelvinPerWatt => "kelvin per watt",
11019            Unit::Kiloampere => "kiloampere",
11020            Unit::KiloamperePerSquareMetre => "kiloampere per square metre",
11021            Unit::KiloamperePerMetre => "kiloampere per metre",
11022            Unit::KilobecquerelPerKilogram => "kilobecquerel per kilogram",
11023            Unit::Kilocoulomb => "kilocoulomb",
11024            Unit::KilocoulombPerCubicMetre => "kilocoulomb per cubic metre",
11025            Unit::KilocoulombPerSquareMetre => "kilocoulomb per square metre",
11026            Unit::Kiloelectronvolt => "kiloelectronvolt",
11027            Unit::BattingPound => "batting pound",
11028            Unit::Gibibit => "gibibit",
11029            Unit::KilogramMetrePerSecond => "kilogram metre per second",
11030            Unit::KilogramMetreSquared => "kilogram metre squared",
11031            Unit::KilogramMetreSquaredPerSecond => "kilogram metre squared per second",
11032            Unit::KilogramPerCubicDecimetre => "kilogram per cubic decimetre",
11033            Unit::KilogramPerLitre => "kilogram per litre",
11034            Unit::BarrelImperial => "barrel, imperial",
11035            Unit::KilojoulePerKelvin => "kilojoule per kelvin",
11036            Unit::KilojoulePerKilogram => "kilojoule per kilogram",
11037            Unit::KilojoulePerKilogramKelvin => "kilojoule per kilogram kelvin",
11038            Unit::KilojoulePerMole => "kilojoule per mole",
11039            Unit::Kilomole => "kilomole",
11040            Unit::KilomolePerCubicMetre => "kilomole per cubic metre",
11041            Unit::Kilonewton => "kilonewton",
11042            Unit::KilonewtonMetre => "kilonewton metre",
11043            Unit::Kiloohm => "kiloohm",
11044            Unit::KiloohmMetre => "kiloohm metre",
11045            Unit::Kilosecond => "kilosecond",
11046            Unit::Kilosiemens => "kilosiemens",
11047            Unit::KilosiemensPerMetre => "kilosiemens per metre",
11048            Unit::KilovoltPerMetre => "kilovolt per metre",
11049            Unit::KiloweberPerMetre => "kiloweber per metre",
11050            Unit::LightYear => "light year",
11051            Unit::LitrePerMole => "litre per mole",
11052            Unit::LumenHour => "lumen hour",
11053            Unit::LumenPerSquareMetre => "lumen per square metre",
11054            Unit::LumenPerWatt => "lumen per watt",
11055            Unit::LumenSecond => "lumen second",
11056            Unit::LuxHour => "lux hour",
11057            Unit::LuxSecond => "lux second",
11058            Unit::MegaamperePerSquareMetre => "megaampere per square metre",
11059            Unit::MegabecquerelPerKilogram => "megabecquerel per kilogram",
11060            Unit::Gigabit => "gigabit",
11061            Unit::MegacoulombPerCubicMetre => "megacoulomb per cubic metre",
11062            Unit::Cycle => "cycle",
11063            Unit::MegacoulombPerSquareMetre => "megacoulomb per square metre",
11064            Unit::Megaelectronvolt => "megaelectronvolt",
11065            Unit::MegagramPerCubicMetre => "megagram per cubic metre",
11066            Unit::Meganewton => "meganewton",
11067            Unit::MeganewtonMetre => "meganewton metre",
11068            Unit::Megaohm => "megaohm",
11069            Unit::MegaohmMetre => "megaohm metre",
11070            Unit::MegasiemensPerMetre => "megasiemens per metre",
11071            Unit::Megavolt => "megavolt",
11072            Unit::MegavoltPerMetre => "megavolt per metre",
11073            Unit::JoulePerCubicMetre => "joule per cubic metre",
11074            Unit::GigabitPerSecond => "gigabit per second",
11075            Unit::ReciprocalMetreSquaredReciprocalSecond => "reciprocal metre squared reciprocal second",
11076            Unit::InchPerLinearFoot => "inch per linear foot",
11077            Unit::MetreToFourthPower => "metre to the fourth power",
11078            Unit::Microampere => "microampere",
11079            Unit::Microbar => "microbar",
11080            Unit::Microcoulomb => "microcoulomb",
11081            Unit::MicrocoulombPerCubicMetre => "microcoulomb per cubic metre",
11082            Unit::MicrocoulombPerSquareMetre => "microcoulomb per square metre",
11083            Unit::MicrofaradPerMetre => "microfarad per metre",
11084            Unit::Microhenry => "microhenry",
11085            Unit::MicrohenryPerMetre => "microhenry per metre",
11086            Unit::Micronewton => "micronewton",
11087            Unit::MicronewtonMetre => "micronewton metre",
11088            Unit::Microohm => "microohm",
11089            Unit::MicroohmMetre => "microohm metre",
11090            Unit::Micropascal => "micropascal",
11091            Unit::Microradian => "microradian",
11092            Unit::Microsecond => "microsecond",
11093            Unit::Microsiemens => "microsiemens",
11094            Unit::BarUnitPressure => "bar [unit of pressure]",
11095            Unit::BaseBox => "base box",
11096            Unit::BoardFoot => "board foot",
11097            Unit::BrakeHorsePower => "brake horse power",
11098            Unit::BillionEur => "billion (EUR)",
11099            Unit::DryBarrelUs => "dry barrel (US)",
11100            Unit::BarrelUs => "barrel (US)",
11101            Unit::HundredBoardFoot => "hundred board foot",
11102            Unit::BeatsPerMinute => "beats per minute",
11103            Unit::Becquerel => "becquerel",
11104            Unit::BritishThermalUnitInternationalTable => "British thermal unit (international table)",
11105            Unit::BushelUs => "bushel (US)",
11106            Unit::BushelUk => "bushel (UK)",
11107            Unit::Call => "call",
11108            Unit::Millifarad => "millifarad",
11109            Unit::Milligal => "milligal",
11110            Unit::MilligramPerMetre => "milligram per metre",
11111            Unit::Milligray => "milligray",
11112            Unit::Millihenry => "millihenry",
11113            Unit::Millijoule => "millijoule",
11114            Unit::MillimetrePerSecond => "millimetre per second",
11115            Unit::MillimetreSquaredPerSecond => "millimetre squared per second",
11116            Unit::Millimole => "millimole",
11117            Unit::MolePerKilogram => "mole per kilogram",
11118            Unit::Millinewton => "millinewton",
11119            Unit::Kibibit => "kibibit",
11120            Unit::MillinewtonPerMetre => "millinewton per metre",
11121            Unit::MilliohmMetre => "milliohm metre",
11122            Unit::MillipascalSecond => "millipascal second",
11123            Unit::Milliradian => "milliradian",
11124            Unit::Millisecond => "millisecond",
11125            Unit::Millisiemens => "millisiemens",
11126            Unit::Millisievert => "millisievert",
11127            Unit::Millitesla => "millitesla",
11128            Unit::MicrovoltPerMetre => "microvolt per metre",
11129            Unit::MillivoltPerMetre => "millivolt per metre",
11130            Unit::Milliwatt => "milliwatt",
11131            Unit::MilliwattPerSquareMetre => "milliwatt per square metre",
11132            Unit::Milliweber => "milliweber",
11133            Unit::Mole => "mole",
11134            Unit::MolePerCubicDecimetre => "mole per cubic decimetre",
11135            Unit::MolePerCubicMetre => "mole per cubic metre",
11136            Unit::Kilobit => "kilobit",
11137            Unit::MolePerLitre => "mole per litre",
11138            Unit::Nanoampere => "nanoampere",
11139            Unit::Nanocoulomb => "nanocoulomb",
11140            Unit::Nanofarad => "nanofarad",
11141            Unit::NanofaradPerMetre => "nanofarad per metre",
11142            Unit::Nanohenry => "nanohenry",
11143            Unit::NanohenryPerMetre => "nanohenry per metre",
11144            Unit::Nanometre => "nanometre",
11145            Unit::NanoohmMetre => "nanoohm metre",
11146            Unit::Nanosecond => "nanosecond",
11147            Unit::Nanotesla => "nanotesla",
11148            Unit::Nanowatt => "nanowatt",
11149            Unit::Neper => "neper",
11150            Unit::NeperPerSecond => "neper per second",
11151            Unit::Picometre => "picometre",
11152            Unit::NewtonMetreSecond => "newton metre second",
11153            Unit::NewtonMetreSquaredPerKilogramSquared => "newton metre squared per kilogram squared",
11154            Unit::NewtonPerSquareMetre => "newton per square metre",
11155            Unit::NewtonPerSquareMillimetre => "newton per square millimetre",
11156            Unit::NewtonSecond => "newton second",
11157            Unit::NewtonSecondPerMetre => "newton second per metre",
11158            Unit::Octave => "octave",
11159            Unit::OhmCentimetre => "ohm centimetre",
11160            Unit::OhmMetre => "ohm metre",
11161            Unit::One => "one",
11162            Unit::Parsec => "parsec",
11163            Unit::PascalPerKelvin => "pascal per kelvin",
11164            Unit::PascalSecond => "pascal second",
11165            Unit::PascalSecondPerCubicMetre => "pascal second per cubic metre",
11166            Unit::PascalSecondPerMetre => "pascal second per metre",
11167            Unit::Petajoule => "petajoule",
11168            Unit::Phon => "phon",
11169            Unit::Centipoise => "centipoise",
11170            Unit::Picoampere => "picoampere",
11171            Unit::Picocoulomb => "picocoulomb",
11172            Unit::PicofaradPerMetre => "picofarad per metre",
11173            Unit::Picohenry => "picohenry",
11174            Unit::KilobitPerSecond => "kilobit per second",
11175            Unit::Picowatt => "picowatt",
11176            Unit::PicowattPerSquareMetre => "picowatt per square metre",
11177            Unit::PoundForce => "pound-force",
11178            Unit::KilovoltAmpereHour => "kilovolt ampere hour",
11179            Unit::MillicoulombPerKilogram => "millicoulomb per kilogram",
11180            Unit::Rad => "rad",
11181            Unit::Radian => "radian",
11182            Unit::RadianSquareMetrePerMole => "radian square metre per mole",
11183            Unit::RadianSquareMetrePerKilogram => "radian square metre per kilogram",
11184            Unit::RadianPerMetre => "radian per metre",
11185            Unit::ReciprocalAngstrom => "reciprocal angstrom",
11186            Unit::ReciprocalCubicMetre => "reciprocal cubic metre",
11187            Unit::ReciprocalCubicMetrePerSecond => "reciprocal cubic metre per second",
11188            Unit::ReciprocalElectronVoltPerCubicMetre => "reciprocal electron volt per cubic metre",
11189            Unit::ReciprocalHenry => "reciprocal henry",
11190            Unit::CoilGroup => "coil group",
11191            Unit::ReciprocalJoulePerCubicMetre => "reciprocal joule per cubic metre",
11192            Unit::ReciprocalKelvinOrKelvinToPowerMinusOne => "reciprocal kelvin or kelvin to the power minus one",
11193            Unit::ReciprocalMetre => "reciprocal metre",
11194            Unit::ReciprocalSquareMetre => "reciprocal square metre",
11195            Unit::ReciprocalMinute => "reciprocal minute",
11196            Unit::ReciprocalMole => "reciprocal mole",
11197            Unit::ReciprocalPascalOrPascalToPowerMinusOne => "reciprocal pascal or pascal to the power minus one",
11198            Unit::ReciprocalSecond => "reciprocal second",
11199            Unit::ReciprocalSecondPerMetreSquared => "reciprocal second per metre squared",
11200            Unit::CarryingCapacityInMetricTon => "carrying capacity in metric ton",
11201            Unit::Candela => "candela",
11202            Unit::DegreeCelsius => "degree Celsius",
11203            Unit::Hundred => "hundred",
11204            Unit::Card => "card",
11205            Unit::Centigram => "centigram",
11206            Unit::CoulombPerKilogram => "coulomb per kilogram",
11207            Unit::HundredLeave => "hundred leave",
11208            Unit::Centilitre => "centilitre",
11209            Unit::SquareCentimetre => "square centimetre",
11210            Unit::CubicCentimetre => "cubic centimetre",
11211            Unit::Centimetre => "centimetre",
11212            Unit::HundredPack => "hundred pack",
11213            Unit::CentalUk => "cental (UK)",
11214            Unit::Coulomb => "coulomb",
11215            Unit::ContentGram => "content gram",
11216            Unit::MetricCarat => "metric carat",
11217            Unit::ContentTonMetric => "content ton (metric)",
11218            Unit::Curie => "curie",
11219            Unit::HundredPoundCwtHundredWeightUs => "hundred pound (cwt) / hundred weight (US)",
11220            Unit::HundredWeightUk => "hundred weight (UK)",
11221            Unit::KilowattHourPerHour => "kilowatt hour per hour",
11222            Unit::LotUnitWeight => "lot [unit of weight]",
11223            Unit::ReciprocalSecondPerSteradian => "reciprocal second per steradian",
11224            Unit::SiemensPerMetre => "siemens per metre",
11225            Unit::Mebibit => "mebibit",
11226            Unit::SiemensSquareMetrePerMole => "siemens square metre per mole",
11227            Unit::Sievert => "sievert",
11228            Unit::Sone => "sone",
11229            Unit::SquareCentimetrePerErg => "square centimetre per erg",
11230            Unit::SquareCentimetrePerSteradianErg => "square centimetre per steradian erg",
11231            Unit::MetreKelvin => "metre kelvin",
11232            Unit::SquareMetreKelvinPerWatt => "square metre kelvin per watt",
11233            Unit::ReciprocalSecondPerSteradianMetreSquared => "reciprocal second per steradian metre squared",
11234            Unit::SquareMetrePerJoule => "square metre per joule",
11235            Unit::SquareMetrePerKilogram => "square metre per kilogram",
11236            Unit::SquareMetrePerMole => "square metre per mole",
11237            Unit::PenGramProtein => "pen gram (protein)",
11238            Unit::SquareMetrePerSteradian => "square metre per steradian",
11239            Unit::SquareMetrePerSteradianJoule => "square metre per steradian joule",
11240            Unit::SquareMetrePerVoltSecond => "square metre per volt second",
11241            Unit::Steradian => "steradian",
11242            Unit::Terahertz => "terahertz",
11243            Unit::Terajoule => "terajoule",
11244            Unit::Terawatt => "terawatt",
11245            Unit::TerawattHour => "terawatt hour",
11246            Unit::Tesla => "tesla",
11247            Unit::Tex => "tex",
11248            Unit::Megabit => "megabit",
11249            Unit::TonnePerCubicMetre => "tonne per cubic metre",
11250            Unit::TropicalYear => "tropical year",
11251            Unit::UnifiedAtomicMassUnit => "unified atomic mass unit",
11252            Unit::Var => "var",
11253            Unit::VoltSquaredPerKelvinSquared => "volt squared per kelvin squared",
11254            Unit::VoltAmpere => "volt - ampere",
11255            Unit::VoltPerCentimetre => "volt per centimetre",
11256            Unit::VoltPerKelvin => "volt per kelvin",
11257            Unit::MillivoltPerKelvin => "millivolt per kelvin",
11258            Unit::KilogramPerSquareCentimetre => "kilogram per square centimetre",
11259            Unit::VoltPerMetre => "volt per metre",
11260            Unit::VoltPerMillimetre => "volt per millimetre",
11261            Unit::WattPerKelvin => "watt per kelvin",
11262            Unit::WattPerMetreKelvin => "watt per metre kelvin",
11263            Unit::WattPerSquareMetre => "watt per square metre",
11264            Unit::WattPerSquareMetreKelvin => "watt per square metre kelvin",
11265            Unit::WattPerSquareMetreKelvinToFourthPower => "watt per square metre kelvin to the fourth power",
11266            Unit::WattPerSteradian => "watt per steradian",
11267            Unit::WattPerSteradianSquareMetre => "watt per steradian square metre",
11268            Unit::WeberPerMetre => "weber per metre",
11269            Unit::RoentgenPerSecond => "roentgen per second",
11270            Unit::WeberPerMillimetre => "weber per millimetre",
11271            Unit::MinuteUnitAngle => "minute [unit of angle]",
11272            Unit::SecondUnitAngle => "second [unit of angle]",
11273            Unit::Book => "book",
11274            Unit::Round => "round",
11275            Unit::NumberWords => "number of words",
11276            Unit::InchToFourthPower => "inch to the fourth power",
11277            Unit::JouleSquareMetre => "joule square metre",
11278            Unit::KilogramPerMole => "kilogram per mole",
11279            Unit::Megacoulomb => "megacoulomb",
11280            Unit::MegajoulePerSecond => "megajoule per second",
11281            Unit::Microwatt => "microwatt",
11282            Unit::Microtesla => "microtesla",
11283            Unit::Microvolt => "microvolt",
11284            Unit::MillinewtonMetre => "millinewton metre",
11285            Unit::MicrowattPerSquareMetre => "microwatt per square metre",
11286            Unit::Millicoulomb => "millicoulomb",
11287            Unit::MillimolePerKilogram => "millimole per kilogram",
11288            Unit::MillicoulombPerCubicMetre => "millicoulomb per cubic metre",
11289            Unit::MillicoulombPerSquareMetre => "millicoulomb per square metre",
11290            Unit::Rem => "rem",
11291            Unit::SecondPerCubicMetre => "second per cubic metre",
11292            Unit::SecondPerCubicMetreRadian => "second per cubic metre radian",
11293            Unit::JoulePerGram => "joule per gram",
11294            Unit::Decare => "decare",
11295            Unit::TenDay => "ten day",
11296            Unit::Day => "day",
11297            Unit::DryPound => "dry pound",
11298            Unit::DecibelMilliwatts => "Decibel-milliwatts",
11299            Unit::DecibelWatt => "Decibel watt",
11300            Unit::DegreeUnitAngle => "degree [unit of angle]",
11301            Unit::Decade => "decade",
11302            Unit::Decigram => "decigram",
11303            Unit::Decagram => "decagram",
11304            Unit::Decilitre => "decilitre",
11305            Unit::CubicDecametre => "cubic decametre",
11306            Unit::SquareDecimetre => "square decimetre",
11307            Unit::StandardKilolitre => "standard kilolitre",
11308            Unit::CubicDecimetre => "cubic decimetre",
11309            Unit::Decimetre => "decimetre",
11310            Unit::DecinewtonMetre => "decinewton metre",
11311            Unit::DozenPiece => "dozen piece",
11312            Unit::DozenPair => "dozen pair",
11313            Unit::DisplacementTonnage => "displacement tonnage",
11314            Unit::DramUs => "dram (US)",
11315            Unit::DramUk => "dram (UK)",
11316            Unit::DozenRoll => "dozen roll",
11317            Unit::DryTon => "dry ton",
11318            Unit::Decitonne => "decitonne",
11319            Unit::Pennyweight => "pennyweight",
11320            Unit::Dozen => "dozen",
11321            Unit::DozenPack => "dozen pack",
11322            Unit::NewtonPerSquareCentimetre => "newton per square centimetre",
11323            Unit::MegawattHourPerHour => "megawatt hour per hour",
11324            Unit::MegawattPerHertz => "megawatt per hertz",
11325            Unit::MilliampereHour => "milliampere hour",
11326            Unit::DegreeDay => "degree day",
11327            Unit::Mille => "mille",
11328            Unit::KilocalorieInternationalTable => "kilocalorie (international table)",
11329            Unit::KilocalorieThermochemicalPerHour => "kilocalorie (thermochemical) per hour",
11330            Unit::MillionBtuItPerHour => "million Btu(IT) per hour",
11331            Unit::CubicFootPerSecond => "cubic foot per second",
11332            Unit::TonnePerHour => "tonne per hour",
11333            Unit::Ping => "ping",
11334            Unit::MegabitPerSecond => "megabit per second",
11335            Unit::Shares => "shares",
11336            Unit::Teu => "TEU",
11337            Unit::Tyre => "tyre",
11338            Unit::ActiveUnit => "active unit",
11339            Unit::Dose => "dose",
11340            Unit::AirDryTon => "air dry ton",
11341            Unit::Strand => "strand",
11342            Unit::SquareMetrePerLitre => "square metre per litre",
11343            Unit::LitrePerHour => "litre per hour",
11344            Unit::FootPerThousand => "foot per thousand",
11345            Unit::Gigabyte => "gigabyte",
11346            Unit::Terabyte => "terabyte",
11347            Unit::Petabyte => "petabyte",
11348            Unit::Pixel => "pixel",
11349            Unit::Megapixel => "megapixel",
11350            Unit::DotsPerInch => "dots per inch",
11351            Unit::GrossKilogram => "gross kilogram",
11352            Unit::PartPerHundredThousand => "part per hundred thousand",
11353            Unit::KilogramForcePerSquareMillimetre => "kilogram-force per square millimetre",
11354            Unit::KilogramForcePerSquareCentimetre => "kilogram-force per square centimetre",
11355            Unit::JoulePerSquareCentimetre => "joule per square centimetre",
11356            Unit::KilogramForceMetrePerSquareCentimetre => "kilogram-force metre per square centimetre",
11357            Unit::Milliohm => "milliohm",
11358            Unit::KilowattHourPerCubicMetre => "kilowatt hour per cubic metre",
11359            Unit::KilowattHourPerKelvin => "kilowatt hour per kelvin",
11360            Unit::ServiceUnit => "service unit",
11361            Unit::WorkingDay => "working day",
11362            Unit::AccountingUnit => "accounting unit",
11363            Unit::Job => "job",
11364            Unit::RunFoot => "run foot",
11365            Unit::Test => "test",
11366            Unit::Trip => "trip",
11367            Unit::Use => "use",
11368            Unit::Well => "well",
11369            Unit::Zone => "zone",
11370            Unit::ExabitPerSecond => "exabit per second",
11371            Unit::Exbibyte => "exbibyte",
11372            Unit::Pebibyte => "pebibyte",
11373            Unit::Tebibyte => "tebibyte",
11374            Unit::Gibibyte => "gibibyte",
11375            Unit::Mebibyte => "mebibyte",
11376            Unit::Kibibyte => "kibibyte",
11377            Unit::ExbibitPerMetre => "exbibit per metre",
11378            Unit::ExbibitPerSquareMetre => "exbibit per square metre",
11379            Unit::ExbibitPerCubicMetre => "exbibit per cubic metre",
11380            Unit::GigabytePerSecond => "gigabyte per second",
11381            Unit::GibibitPerMetre => "gibibit per metre",
11382            Unit::GibibitPerSquareMetre => "gibibit per square metre",
11383            Unit::GibibitPerCubicMetre => "gibibit per cubic metre",
11384            Unit::KibibitPerMetre => "kibibit per metre",
11385            Unit::KibibitPerSquareMetre => "kibibit per square metre",
11386            Unit::KibibitPerCubicMetre => "kibibit per cubic metre",
11387            Unit::MebibitPerMetre => "mebibit per metre",
11388            Unit::MebibitPerSquareMetre => "mebibit per square metre",
11389            Unit::MebibitPerCubicMetre => "mebibit per cubic metre",
11390            Unit::Petabit => "petabit",
11391            Unit::PetabitPerSecond => "petabit per second",
11392            Unit::PebibitPerMetre => "pebibit per metre",
11393            Unit::PebibitPerSquareMetre => "pebibit per square metre",
11394            Unit::PebibitPerCubicMetre => "pebibit per cubic metre",
11395            Unit::Terabit => "terabit",
11396            Unit::TerabitPerSecond => "terabit per second",
11397            Unit::TebibitPerMetre => "tebibit per metre",
11398            Unit::TebibitPerCubicMetre => "tebibit per cubic metre",
11399            Unit::TebibitPerSquareMetre => "tebibit per square metre",
11400            Unit::BitPerMetre => "bit per metre",
11401            Unit::BitPerSquareMetre => "bit per square metre",
11402            Unit::ReciprocalCentimetre => "reciprocal centimetre",
11403            Unit::ReciprocalDay => "reciprocal day",
11404            Unit::CubicDecimetrePerHour => "cubic decimetre per hour",
11405            Unit::KilogramPerHour => "kilogram per hour",
11406            Unit::KilomolePerSecond => "kilomole per second",
11407            Unit::MolePerSecond => "mole per second",
11408            Unit::DegreePerSecond => "degree per second",
11409            Unit::MillimetrePerDegreeCelciusMetre => "millimetre per degree Celcius metre",
11410            Unit::DegreeCelsiusPerKelvin => "degree Celsius per kelvin",
11411            Unit::HectopascalPerBar => "hectopascal per bar",
11412            Unit::Each => "each",
11413            Unit::ElectronicMailBox => "electronic mail box",
11414            Unit::EquivalentGallon => "equivalent gallon",
11415            Unit::BitPerCubicMetre => "bit per cubic metre",
11416            Unit::KelvinPerKelvin => "kelvin per kelvin",
11417            Unit::KilopascalPerBar => "kilopascal per bar",
11418            Unit::MillibarPerBar => "millibar per bar",
11419            Unit::MegapascalPerBar => "megapascal per bar",
11420            Unit::PoisePerBar => "poise per bar",
11421            Unit::PascalPerBar => "pascal per bar",
11422            Unit::MilliamperePerInch => "milliampere per inch",
11423            Unit::KelvinPerHour => "kelvin per hour",
11424            Unit::KelvinPerMinute => "kelvin per minute",
11425            Unit::KelvinPerSecond => "kelvin per second",
11426            Unit::Slug => "slug",
11427            Unit::GramPerKelvin => "gram per kelvin",
11428            Unit::KilogramPerKelvin => "kilogram per kelvin",
11429            Unit::MilligramPerKelvin => "milligram per kelvin",
11430            Unit::PoundForcePerFoot => "pound-force per foot",
11431            Unit::KilogramSquareCentimetre => "kilogram square centimetre",
11432            Unit::KilogramSquareMillimetre => "kilogram square millimetre",
11433            Unit::PoundInchSquared => "pound inch squared",
11434            Unit::PoundForceInch => "pound-force inch",
11435            Unit::PoundForceFootPerAmpere => "pound-force foot per ampere",
11436            Unit::GramPerCubicDecimetre => "gram per cubic decimetre",
11437            Unit::KilogramPerKilomol => "kilogram per kilomol",
11438            Unit::GramPerHertz => "gram per hertz",
11439            Unit::GramPerDay => "gram per day",
11440            Unit::GramPerHour => "gram per hour",
11441            Unit::GramPerMinute => "gram per minute",
11442            Unit::GramPerSecond => "gram per second",
11443            Unit::KilogramPerDay => "kilogram per day",
11444            Unit::KilogramPerMinute => "kilogram per minute",
11445            Unit::MilligramPerDay => "milligram per day",
11446            Unit::MilligramPerMinute => "milligram per minute",
11447            Unit::MilligramPerSecond => "milligram per second",
11448            Unit::GramPerDayKelvin => "gram per day kelvin",
11449            Unit::GramPerHourKelvin => "gram per hour kelvin",
11450            Unit::GramPerMinuteKelvin => "gram per minute kelvin",
11451            Unit::GramPerSecondKelvin => "gram per second kelvin",
11452            Unit::KilogramPerDayKelvin => "kilogram per day kelvin",
11453            Unit::KilogramPerHourKelvin => "kilogram per hour kelvin",
11454            Unit::KilogramPerMinuteKelvin => "kilogram per minute kelvin",
11455            Unit::KilogramPerSecondKelvin => "kilogram per second kelvin",
11456            Unit::MilligramPerDayKelvin => "milligram per day kelvin",
11457            Unit::MilligramPerHourKelvin => "milligram per hour kelvin",
11458            Unit::MilligramPerMinuteKelvin => "milligram per minute kelvin",
11459            Unit::MilligramPerSecondKelvin => "milligram per second kelvin",
11460            Unit::NewtonPerMillimetre => "newton per millimetre",
11461            Unit::PoundForcePerInch => "pound-force per inch",
11462            Unit::RodUnitDistance => "rod [unit of distance]",
11463            Unit::MicrometrePerKelvin => "micrometre per kelvin",
11464            Unit::CentimetrePerKelvin => "centimetre per kelvin",
11465            Unit::MetrePerKelvin => "metre per kelvin",
11466            Unit::MillimetrePerKelvin => "millimetre per kelvin",
11467            Unit::MilliohmPerMetre => "milliohm per metre",
11468            Unit::OhmPerMileStatuteMile => "ohm per mile (statute mile)",
11469            Unit::OhmPerKilometre => "ohm per kilometre",
11470            Unit::MilliamperePerPoundForcePerSquareInch => "milliampere per pound-force per square inch",
11471            Unit::ReciprocalBar => "reciprocal bar",
11472            Unit::MilliamperePerBar => "milliampere per bar",
11473            Unit::DegreeCelsiusPerBar => "degree Celsius per bar",
11474            Unit::KelvinPerBar => "kelvin per bar",
11475            Unit::GramPerDayBar => "gram per day bar",
11476            Unit::GramPerHourBar => "gram per hour bar",
11477            Unit::GramPerMinuteBar => "gram per minute bar",
11478            Unit::GramPerSecondBar => "gram per second bar",
11479            Unit::KilogramPerDayBar => "kilogram per day bar",
11480            Unit::KilogramPerHourBar => "kilogram per hour bar",
11481            Unit::KilogramPerMinuteBar => "kilogram per minute bar",
11482            Unit::KilogramPerSecondBar => "kilogram per second bar",
11483            Unit::MilligramPerDayBar => "milligram per day bar",
11484            Unit::MilligramPerHourBar => "milligram per hour bar",
11485            Unit::MilligramPerMinuteBar => "milligram per minute bar",
11486            Unit::MilligramPerSecondBar => "milligram per second bar",
11487            Unit::GramPerBar => "gram per bar",
11488            Unit::MilligramPerBar => "milligram per bar",
11489            Unit::MilliamperePerMillimetre => "milliampere per millimetre",
11490            Unit::PascalSecondPerKelvin => "pascal second per kelvin",
11491            Unit::InchWater => "inch of water",
11492            Unit::InchMercury => "inch of mercury",
11493            Unit::WaterHorsePower => "water horse power",
11494            Unit::BarPerKelvin => "bar per kelvin",
11495            Unit::HectopascalPerKelvin => "hectopascal per kelvin",
11496            Unit::KilopascalPerKelvin => "kilopascal per kelvin",
11497            Unit::MillibarPerKelvin => "millibar per kelvin",
11498            Unit::MegapascalPerKelvin => "megapascal per kelvin",
11499            Unit::PoisePerKelvin => "poise per kelvin",
11500            Unit::VoltPerLitreMinute => "volt per litre minute",
11501            Unit::NewtonCentimetre => "newton centimetre",
11502            Unit::NewtonMetrePerDegree => "newton metre per degree",
11503            Unit::NewtonMetrePerAmpere => "newton metre per ampere",
11504            Unit::BarLitrePerSecond => "bar litre per second",
11505            Unit::BarCubicMetrePerSecond => "bar cubic metre per second",
11506            Unit::HectopascalLitrePerSecond => "hectopascal litre per second",
11507            Unit::HectopascalCubicMetrePerSecond => "hectopascal cubic metre per second",
11508            Unit::MillibarLitrePerSecond => "millibar litre per second",
11509            Unit::MillibarCubicMetrePerSecond => "millibar cubic metre per second",
11510            Unit::MegapascalLitrePerSecond => "megapascal litre per second",
11511            Unit::MegapascalCubicMetrePerSecond => "megapascal cubic metre per second",
11512            Unit::PascalLitrePerSecond => "pascal litre per second",
11513            Unit::DegreeFahrenheit => "degree Fahrenheit",
11514            Unit::Farad => "farad",
11515            Unit::FibreMetre => "fibre metre",
11516            Unit::ThousandCubicFoot => "thousand cubic foot",
11517            Unit::HundredCubicMetre => "hundred cubic metre",
11518            Unit::Micromole => "micromole",
11519            Unit::FailuresInTime => "failures in time",
11520            Unit::FlakeTon => "flake ton",
11521            Unit::FormazinNephelometricUnit => "Formazin nephelometric unit",
11522            Unit::Foot => "foot",
11523            Unit::PoundPerSquareFoot => "pound per square foot",
11524            Unit::FootPerMinute => "foot per minute",
11525            Unit::FootPerSecond => "foot per second",
11526            Unit::SquareFoot => "square foot",
11527            Unit::CubicFoot => "cubic foot",
11528            Unit::PascalCubicMetrePerSecond => "pascal cubic metre per second",
11529            Unit::CentimetrePerBar => "centimetre per bar",
11530            Unit::MetrePerBar => "metre per bar",
11531            Unit::MillimetrePerBar => "millimetre per bar",
11532            Unit::SquareInchPerSecond => "square inch per second",
11533            Unit::SquareMetrePerSecondKelvin => "square metre per second kelvin",
11534            Unit::StokesPerKelvin => "stokes per kelvin",
11535            Unit::GramPerCubicCentimetreBar => "gram per cubic centimetre bar",
11536            Unit::GramPerCubicDecimetreBar => "gram per cubic decimetre bar",
11537            Unit::GramPerLitreBar => "gram per litre bar",
11538            Unit::GramPerCubicMetreBar => "gram per cubic metre bar",
11539            Unit::GramPerMillilitreBar => "gram per millilitre bar",
11540            Unit::KilogramPerCubicCentimetreBar => "kilogram per cubic centimetre bar",
11541            Unit::KilogramPerLitreBar => "kilogram per litre bar",
11542            Unit::KilogramPerCubicMetreBar => "kilogram per cubic metre bar",
11543            Unit::NewtonMetrePerKilogram => "newton metre per kilogram",
11544            Unit::UsGallonPerMinute => "US gallon per minute",
11545            Unit::PoundForceFootPerPound => "pound-force foot per pound",
11546            Unit::CupUnitVolume => "cup [unit of volume]",
11547            Unit::Peck => "peck",
11548            Unit::TablespoonUs => "tablespoon (US)",
11549            Unit::TeaspoonUs => "teaspoon (US)",
11550            Unit::Stere => "stere",
11551            Unit::CubicCentimetrePerKelvin => "cubic centimetre per kelvin",
11552            Unit::LitrePerKelvin => "litre per kelvin",
11553            Unit::CubicMetrePerKelvin => "cubic metre per kelvin",
11554            Unit::ImperialGallonPerMinute => "Imperial gallon per minute",
11555            Unit::MillilitrePerKelvin => "millilitre per kelvin",
11556            Unit::KilogramPerCubicCentimetre => "kilogram per cubic centimetre",
11557            Unit::OunceAvoirdupoisPerCubicYard => "ounce (avoirdupois) per cubic yard",
11558            Unit::GramPerCubicCentimetreKelvin => "gram per cubic centimetre kelvin",
11559            Unit::GramPerCubicDecimetreKelvin => "gram per cubic decimetre kelvin",
11560            Unit::GramPerLitreKelvin => "gram per litre kelvin",
11561            Unit::GramPerCubicMetreKelvin => "gram per cubic metre kelvin",
11562            Unit::GramPerMillilitreKelvin => "gram per millilitre kelvin",
11563            Unit::KilogramPerCubicCentimetreKelvin => "kilogram per cubic centimetre kelvin",
11564            Unit::KilogramPerLitreKelvin => "kilogram per litre kelvin",
11565            Unit::KilogramPerCubicMetreKelvin => "kilogram per cubic metre kelvin",
11566            Unit::SquareMetrePerSecondBar => "square metre per second bar",
11567            Unit::MicrosiemensPerCentimetre => "microsiemens per centimetre",
11568            Unit::MicrosiemensPerMetre => "microsiemens per metre",
11569            Unit::NanosiemensPerCentimetre => "nanosiemens per centimetre",
11570            Unit::NanosiemensPerMetre => "nanosiemens per metre",
11571            Unit::StokesPerBar => "stokes per bar",
11572            Unit::CubicCentimetrePerDay => "cubic centimetre per day",
11573            Unit::CubicCentimetrePerHour => "cubic centimetre per hour",
11574            Unit::CubicCentimetrePerMinute => "cubic centimetre per minute",
11575            Unit::GallonUsPerHour => "gallon (US) per hour",
11576            Unit::LitrePerSecond => "litre per second",
11577            Unit::CubicMetrePerDay => "cubic metre per day",
11578            Unit::CubicMetrePerMinute => "cubic metre per minute",
11579            Unit::MillilitrePerDay => "millilitre per day",
11580            Unit::MillilitrePerHour => "millilitre per hour",
11581            Unit::CubicInchPerHour => "cubic inch per hour",
11582            Unit::CubicInchPerMinute => "cubic inch per minute",
11583            Unit::CubicInchPerSecond => "cubic inch per second",
11584            Unit::MilliamperePerLitreMinute => "milliampere per litre minute",
11585            Unit::VoltPerBar => "volt per bar",
11586            Unit::CubicCentimetrePerDayKelvin => "cubic centimetre per day kelvin",
11587            Unit::CubicCentimetrePerHourKelvin => "cubic centimetre per hour kelvin",
11588            Unit::CubicCentimetrePerMinuteKelvin => "cubic centimetre per minute kelvin",
11589            Unit::CubicCentimetrePerSecondKelvin => "cubic centimetre per second kelvin",
11590            Unit::LitrePerDayKelvin => "litre per day kelvin",
11591            Unit::LitrePerHourKelvin => "litre per hour kelvin",
11592            Unit::LitrePerMinuteKelvin => "litre per minute kelvin",
11593            Unit::LitrePerSecondKelvin => "litre per second kelvin",
11594            Unit::CubicMetrePerDayKelvin => "cubic metre per day kelvin",
11595            Unit::CubicMetrePerHourKelvin => "cubic metre per hour kelvin",
11596            Unit::CubicMetrePerMinuteKelvin => "cubic metre per minute kelvin",
11597            Unit::CubicMetrePerSecondKelvin => "cubic metre per second kelvin",
11598            Unit::MillilitrePerDayKelvin => "millilitre per day kelvin",
11599            Unit::MillilitrePerHourKelvin => "millilitre per hour kelvin",
11600            Unit::MillilitrePerMinuteKelvin => "millilitre per minute kelvin",
11601            Unit::MillilitrePerSecondKelvin => "millilitre per second kelvin",
11602            Unit::MillimetreToFourthPower => "millimetre to the fourth power",
11603            Unit::CubicCentimetrePerDayBar => "cubic centimetre per day bar",
11604            Unit::CubicCentimetrePerHourBar => "cubic centimetre per hour bar",
11605            Unit::CubicCentimetrePerMinuteBar => "cubic centimetre per minute bar",
11606            Unit::CubicCentimetrePerSecondBar => "cubic centimetre per second bar",
11607            Unit::LitrePerDayBar => "litre per day bar",
11608            Unit::LitrePerHourBar => "litre per hour bar",
11609            Unit::LitrePerMinuteBar => "litre per minute bar",
11610            Unit::LitrePerSecondBar => "litre per second bar",
11611            Unit::CubicMetrePerDayBar => "cubic metre per day bar",
11612            Unit::CubicMetrePerHourBar => "cubic metre per hour bar",
11613            Unit::CubicMetrePerMinuteBar => "cubic metre per minute bar",
11614            Unit::CubicMetrePerSecondBar => "cubic metre per second bar",
11615            Unit::MillilitrePerDayBar => "millilitre per day bar",
11616            Unit::MillilitrePerHourBar => "millilitre per hour bar",
11617            Unit::MillilitrePerMinuteBar => "millilitre per minute bar",
11618            Unit::MillilitrePerSecondBar => "millilitre per second bar",
11619            Unit::CubicCentimetrePerBar => "cubic centimetre per bar",
11620            Unit::LitrePerBar => "litre per bar",
11621            Unit::CubicMetrePerBar => "cubic metre per bar",
11622            Unit::MillilitrePerBar => "millilitre per bar",
11623            Unit::MicrohenryPerKiloohm => "microhenry per kiloohm",
11624            Unit::MicrohenryPerOhm => "microhenry per ohm",
11625            Unit::GallonUsPerDay => "gallon (US) per day",
11626            Unit::Gigabecquerel => "gigabecquerel",
11627            Unit::GramDryWeight => "gram, dry weight",
11628            Unit::PoundPerGallonUs => "pound per gallon (US)",
11629            Unit::GramPerMetreGramPer100Centimetres => "gram per metre (gram per 100 centimetres)",
11630            Unit::GramFissileIsotope => "gram of fissile isotope",
11631            Unit::GreatGross => "great gross",
11632            Unit::GillUs => "gill (US)",
11633            Unit::GramIncludingContainer => "gram, including container",
11634            Unit::GillUk => "gill (UK)",
11635            Unit::GramIncludingInnerPackaging => "gram, including inner packaging",
11636            Unit::GramPerMillilitre => "gram per millilitre",
11637            Unit::GramPerLitre => "gram per litre",
11638            Unit::DryGallonUs => "dry gallon (US)",
11639            Unit::GallonUk => "gallon (UK)",
11640            Unit::GallonUs => "gallon (US)",
11641            Unit::GramPerSquareMetre => "gram per square metre",
11642            Unit::MilligramPerSquareMetre => "milligram per square metre",
11643            Unit::MilligramPerCubicMetre => "milligram per cubic metre",
11644            Unit::MicrogramPerCubicMetre => "microgram per cubic metre",
11645            Unit::Gram => "gram",
11646            Unit::Grain => "grain",
11647            Unit::Gross => "gross",
11648            Unit::Gigajoule => "gigajoule",
11649            Unit::GigawattHour => "gigawatt hour",
11650            Unit::HenryPerKiloohm => "henry per kiloohm",
11651            Unit::HenryPerOhm => "henry per ohm",
11652            Unit::MillihenryPerKiloohm => "millihenry per kiloohm",
11653            Unit::MillihenryPerOhm => "millihenry per ohm",
11654            Unit::PascalSecondPerBar => "pascal second per bar",
11655            Unit::Microbecquerel => "microbecquerel",
11656            Unit::ReciprocalYear => "reciprocal year",
11657            Unit::ReciprocalHour => "reciprocal hour",
11658            Unit::ReciprocalMonth => "reciprocal month",
11659            Unit::DegreeCelsiusPerHour => "degree Celsius per hour",
11660            Unit::DegreeCelsiusPerMinute => "degree Celsius per minute",
11661            Unit::DegreeCelsiusPerSecond => "degree Celsius per second",
11662            Unit::SquareCentimetrePerGram => "square centimetre per gram",
11663            Unit::SquareDecametre => "square decametre",
11664            Unit::SquareHectometre => "square hectometre",
11665            Unit::CubicHectometre => "cubic hectometre",
11666            Unit::CubicKilometre => "cubic kilometre",
11667            Unit::Blank => "blank",
11668            Unit::VoltSquareInchPerPoundForce => "volt square inch per pound-force",
11669            Unit::VoltPerInch => "volt per inch",
11670            Unit::VoltPerMicrosecond => "volt per microsecond",
11671            Unit::PercentPerKelvin => "percent per kelvin",
11672            Unit::OhmPerMetre => "ohm per metre",
11673            Unit::DegreePerMetre => "degree per metre",
11674            Unit::MicrofaradPerKilometre => "microfarad per kilometre",
11675            Unit::MicrogramPerLitre => "microgram per litre",
11676            Unit::SquareMicrometreSquareMicron => "square micrometre (square micron)",
11677            Unit::AmperePerKilogram => "ampere per kilogram",
11678            Unit::AmpereSquaredSecond => "ampere squared second",
11679            Unit::FaradPerKilometre => "farad per kilometre",
11680            Unit::HertzMetre => "hertz metre",
11681            Unit::KelvinMetrePerWatt => "kelvin metre per watt",
11682            Unit::MegaohmPerKilometre => "megaohm per kilometre",
11683            Unit::MegaohmPerMetre => "megaohm per metre",
11684            Unit::Megaampere => "megaampere",
11685            Unit::MegahertzKilometre => "megahertz kilometre",
11686            Unit::NewtonPerAmpere => "newton per ampere",
11687            Unit::NewtonMetreWattToPowerMinus05 => "newton metre watt to the power minus 0,5",
11688            Unit::PascalPerMetre => "pascal per metre",
11689            Unit::SiemensPerCentimetre => "siemens per centimetre",
11690            Unit::Teraohm => "teraohm",
11691            Unit::VoltSecondPerMetre => "volt second per metre",
11692            Unit::VoltPerSecond => "volt per second",
11693            Unit::WattPerCubicMetre => "watt per cubic metre",
11694            Unit::Attofarad => "attofarad",
11695            Unit::CentimetrePerHour => "centimetre per hour",
11696            Unit::ReciprocalCubicCentimetre => "reciprocal cubic centimetre",
11697            Unit::DecibelPerKilometre => "decibel per kilometre",
11698            Unit::DecibelPerMetre => "decibel per metre",
11699            Unit::KilogramPerBar => "kilogram per bar",
11700            Unit::KilogramPerCubicDecimetreKelvin => "kilogram per cubic decimetre kelvin",
11701            Unit::KilogramPerCubicDecimetreBar => "kilogram per cubic decimetre bar",
11702            Unit::KilogramPerSquareMetreSecond => "kilogram per square metre second",
11703            Unit::InchPerTwoPiRadiant => "inch per two pi radiant",
11704            Unit::MetrePerVoltSecond => "metre per volt second",
11705            Unit::SquareMetrePerNewton => "square metre per newton",
11706            Unit::CubicMetrePerCubicMetre => "cubic metre per cubic metre",
11707            Unit::MillisiemensPerCentimetre => "millisiemens per centimetre",
11708            Unit::MillivoltPerMinute => "millivolt per minute",
11709            Unit::MilligramPerSquareCentimetre => "milligram per square centimetre",
11710            Unit::MilligramPerGram => "milligram per gram",
11711            Unit::MillilitrePerCubicMetre => "millilitre per cubic metre",
11712            Unit::MillimetrePerYear => "millimetre per year",
11713            Unit::MillimetrePerHour => "millimetre per hour",
11714            Unit::MillimolePerGram => "millimole per gram",
11715            Unit::PicopascalPerKilometre => "picopascal per kilometre",
11716            Unit::Picosecond => "picosecond",
11717            Unit::PercentPerMonth => "percent per month",
11718            Unit::PercentPerHectobar => "percent per hectobar",
11719            Unit::PercentPerDecakelvin => "percent per decakelvin",
11720            Unit::WattPerMetre => "watt per metre",
11721            Unit::Decapascal => "decapascal",
11722            Unit::GramPerMillimetre => "gram per millimetre",
11723            Unit::ModuleWidth => "module width",
11724            Unit::FrenchGauge => "French gauge",
11725            Unit::RackUnit => "rack unit",
11726            Unit::MillimetrePerMinute => "millimetre per minute",
11727            Unit::BigPoint => "big point",
11728            Unit::LitrePerKilogram => "litre per kilogram",
11729            Unit::GramMillimetre => "gram millimetre",
11730            Unit::ReciprocalWeek => "reciprocal week",
11731            Unit::Piece => "piece",
11732            Unit::MegaohmKilometre => "megaohm kilometre",
11733            Unit::PercentPerOhm => "percent per ohm",
11734            Unit::PercentPerDegree => "percent per degree",
11735            Unit::PercentPerTenThousand => "percent per ten thousand",
11736            Unit::PercentPerOneHundredThousand => "percent per one hundred thousand",
11737            Unit::PercentPerHundred => "percent per hundred",
11738            Unit::PercentPerThousand => "percent per thousand",
11739            Unit::PercentPerVolt => "percent per volt",
11740            Unit::PercentPerBar => "percent per bar",
11741            Unit::PercentPerInch => "percent per inch",
11742            Unit::PercentPerMetre => "percent per metre",
11743            Unit::Hank => "hank",
11744            Unit::PieceDay => "Piece Day",
11745            Unit::Hectobar => "hectobar",
11746            Unit::HundredBoxes => "hundred boxes",
11747            Unit::HundredCount => "hundred count",
11748            Unit::HundredKilogramDryWeight => "hundred kilogram, dry weight",
11749            Unit::Head => "head",
11750            Unit::Hectogram => "hectogram",
11751            Unit::HundredCubicFoot => "hundred cubic foot",
11752            Unit::HundredInternationalUnit => "hundred international unit",
11753            Unit::HundredKilogramNetMass => "hundred kilogram, net mass",
11754            Unit::Hectolitre => "hectolitre",
11755            Unit::MilePerHourStatuteMile => "mile per hour (statute mile)",
11756            Unit::PieceMonth => "Piece Month",
11757            Unit::MillionCubicMetre => "million cubic metre",
11758            Unit::Hectometre => "hectometre",
11759            Unit::HectolitrePureAlcohol => "hectolitre of pure alcohol",
11760            Unit::Hertz => "hertz",
11761            Unit::Hour => "hour",
11762            Unit::PieceWeek => "Piece Week",
11763            Unit::InchPoundPoundInch => "inch pound (pound inch)",
11764            Unit::Person => "person",
11765            Unit::Inch => "inch",
11766            Unit::SquareInch => "square inch",
11767            Unit::CubicInch => "cubic inch",
11768            Unit::InternationalSugarDegree => "international sugar degree",
11769            Unit::InchPerSecond => "inch per second",
11770            Unit::InternationalUnitPerGram => "international unit per gram",
11771            Unit::InchPerSecondSquared => "inch per second squared",
11772            Unit::PercentPerMillimetre => "percent per millimetre",
11773            Unit::PerMillePerPsi => "per mille per psi",
11774            Unit::DegreeApi => "degree API",
11775            Unit::DegreeBaumeOriginScale => "degree Baume (origin scale)",
11776            Unit::DegreeBaumeUsHeavy => "degree Baume (US heavy)",
11777            Unit::DegreeBaumeUsLight => "degree Baume (US light)",
11778            Unit::DegreeBalling => "degree Balling",
11779            Unit::DegreeBrix => "degree Brix",
11780            Unit::DegreeFahrenheitHourSquareFootPerBritishThermalUnitThermochemical => "degree Fahrenheit hour square foot per British thermal unit (thermochemical)",
11781            Unit::JoulePerKilogram => "joule per kilogram",
11782            Unit::DegreeFahrenheitPerKelvin => "degree Fahrenheit per kelvin",
11783            Unit::DegreeFahrenheitPerBar => "degree Fahrenheit per bar",
11784            Unit::DegreeFahrenheitHourSquareFootPerBritishThermalUnitInternationalTable => "degree Fahrenheit hour square foot per British thermal unit (international table)",
11785            Unit::DegreeFahrenheitPerHour => "degree Fahrenheit per hour",
11786            Unit::DegreeFahrenheitPerMinute => "degree Fahrenheit per minute",
11787            Unit::DegreeFahrenheitPerSecond => "degree Fahrenheit per second",
11788            Unit::ReciprocalDegreeFahrenheit => "reciprocal degree Fahrenheit",
11789            Unit::DegreeOechsle => "degree Oechsle",
11790            Unit::DegreeRankinePerHour => "degree Rankine per hour",
11791            Unit::DegreeRankinePerMinute => "degree Rankine per minute",
11792            Unit::DegreeRankinePerSecond => "degree Rankine per second",
11793            Unit::DegreeTwaddell => "degree Twaddell",
11794            Unit::Micropoise => "micropoise",
11795            Unit::MicrogramPerKilogram => "microgram per kilogram",
11796            Unit::MicrogramPerCubicMetreKelvin => "microgram per cubic metre kelvin",
11797            Unit::MicrogramPerCubicMetreBar => "microgram per cubic metre bar",
11798            Unit::MicrolitrePerLitre => "microlitre per litre",
11799            Unit::Baud => "baud",
11800            Unit::BritishThermalUnitMean => "British thermal unit (mean)",
11801            Unit::BritishThermalUnitInternationalTableFootPerHourSquareFootDegreeFahrenheit => "British thermal unit (international table) foot per hour square foot degree Fahrenheit",
11802            Unit::BritishThermalUnitInternationalTableInchPerHourSquareFootDegreeFahrenheit => "British thermal unit (international table) inch per hour square foot degree Fahrenheit",
11803            Unit::BritishThermalUnitInternationalTableInchPerSecondSquareFootDegreeFahrenheit => "British thermal unit (international table) inch per second square foot degree Fahrenheit",
11804            Unit::BritishThermalUnitInternationalTablePerPoundDegreeFahrenheit => "British thermal unit (international table) per pound degree Fahrenheit",
11805            Unit::BritishThermalUnitInternationalTablePerMinute => "British thermal unit (international table) per minute",
11806            Unit::BritishThermalUnitInternationalTablePerSecond => "British thermal unit (international table) per second",
11807            Unit::BritishThermalUnitThermochemicalFootPerHourSquareFootDegreeFahrenheit => "British thermal unit (thermochemical) foot per hour square foot degree Fahrenheit",
11808            Unit::BritishThermalUnitThermochemicalPerHour => "British thermal unit (thermochemical) per hour",
11809            Unit::BritishThermalUnitThermochemicalInchPerHourSquareFootDegreeFahrenheit => "British thermal unit (thermochemical) inch per hour square foot degree Fahrenheit",
11810            Unit::BritishThermalUnitThermochemicalInchPerSecondSquareFootDegreeFahrenheit => "British thermal unit (thermochemical) inch per second square foot degree Fahrenheit",
11811            Unit::BritishThermalUnitThermochemicalPerPoundDegreeFahrenheit => "British thermal unit (thermochemical) per pound degree Fahrenheit",
11812            Unit::BritishThermalUnitThermochemicalPerMinute => "British thermal unit (thermochemical) per minute",
11813            Unit::BritishThermalUnitThermochemicalPerSecond => "British thermal unit (thermochemical) per second",
11814            Unit::CoulombSquareMetrePerKilogram => "coulomb square metre per kilogram",
11815            Unit::Megabaud => "megabaud",
11816            Unit::WattSecond => "watt second",
11817            Unit::BarPerBar => "bar per bar",
11818            Unit::BarrelUkPetroleum => "barrel (UK petroleum)",
11819            Unit::BarrelUkPetroleumPerMinute => "barrel (UK petroleum) per minute",
11820            Unit::BarrelUkPetroleumPerDay => "barrel (UK petroleum) per day",
11821            Unit::BarrelUkPetroleumPerHour => "barrel (UK petroleum) per hour",
11822            Unit::BarrelUkPetroleumPerSecond => "barrel (UK petroleum) per second",
11823            Unit::BarrelUsPetroleumPerHour => "barrel (US petroleum) per hour",
11824            Unit::BarrelUsPetroleumPerSecond => "barrel (US petroleum) per second",
11825            Unit::BushelUkPerDay => "bushel (UK) per day",
11826            Unit::BushelUkPerHour => "bushel (UK) per hour",
11827            Unit::BushelUkPerMinute => "bushel (UK) per minute",
11828            Unit::BushelUkPerSecond => "bushel (UK) per second",
11829            Unit::BushelUsDryPerDay => "bushel (US dry) per day",
11830            Unit::BushelUsDryPerHour => "bushel (US dry) per hour",
11831            Unit::BushelUsDryPerMinute => "bushel (US dry) per minute",
11832            Unit::BushelUsDryPerSecond => "bushel (US dry) per second",
11833            Unit::CentinewtonMetre => "centinewton metre",
11834            Unit::CentipoisePerKelvin => "centipoise per kelvin",
11835            Unit::CentipoisePerBar => "centipoise per bar",
11836            Unit::CalorieMean => "calorie (mean)",
11837            Unit::CalorieInternationalTablePerGramDegreeCelsius => "calorie (international table) per gram degree Celsius",
11838            Unit::CalorieThermochemicalPerCentimetreSecondDegreeCelsius => "calorie (thermochemical) per centimetre second degree Celsius",
11839            Unit::CalorieThermochemicalPerGramDegreeCelsius => "calorie (thermochemical) per gram degree Celsius",
11840            Unit::CalorieThermochemicalPerMinute => "calorie (thermochemical) per minute",
11841            Unit::CalorieThermochemicalPerSecond => "calorie (thermochemical) per second",
11842            Unit::Clo => "clo",
11843            Unit::CentimetrePerSecondKelvin => "centimetre per second kelvin",
11844            Unit::CentimetrePerSecondBar => "centimetre per second bar",
11845            Unit::CubicCentimetrePerCubicMetre => "cubic centimetre per cubic metre",
11846            Unit::CubicDecimetrePerDay => "cubic decimetre per day",
11847            Unit::CubicDecimetrePerCubicMetre => "cubic decimetre per cubic metre",
11848            Unit::CubicDecimetrePerMinute => "cubic decimetre per minute",
11849            Unit::CubicDecimetrePerSecond => "cubic decimetre per second",
11850            Unit::OunceUkFluidPerDay => "ounce (UK fluid) per day",
11851            Unit::OunceUkFluidPerHour => "ounce (UK fluid) per hour",
11852            Unit::OunceUkFluidPerMinute => "ounce (UK fluid) per minute",
11853            Unit::OunceUkFluidPerSecond => "ounce (UK fluid) per second",
11854            Unit::OunceUsFluidPerDay => "ounce (US fluid) per day",
11855            Unit::JoulePerKelvin => "joule per kelvin",
11856            Unit::MegajoulePerKilogram => "megajoule per kilogram",
11857            Unit::MegajoulePerCubicMetre => "megajoule per cubic metre",
11858            Unit::PipelineJoint => "pipeline joint",
11859            Unit::Joule => "joule",
11860            Unit::HundredMetre => "hundred metre",
11861            Unit::NumberJewels => "number of jewels",
11862            Unit::KilowattDemand => "kilowatt demand",
11863            Unit::OunceUsFluidPerHour => "ounce (US fluid) per hour",
11864            Unit::OunceUsFluidPerMinute => "ounce (US fluid) per minute",
11865            Unit::OunceUsFluidPerSecond => "ounce (US fluid) per second",
11866            Unit::FootPerDegreeFahrenheit => "foot per degree Fahrenheit",
11867            Unit::FootPerHour => "foot per hour",
11868            Unit::FootPoundForcePerHour => "foot pound-force per hour",
11869            Unit::FootPoundForcePerMinute => "foot pound-force per minute",
11870            Unit::FootPerPsi => "foot per psi",
11871            Unit::FootPerSecondDegreeFahrenheit => "foot per second degree Fahrenheit",
11872            Unit::FootPerSecondPsi => "foot per second psi",
11873            Unit::KilovoltAmpereReactiveDemand => "kilovolt ampere reactive demand",
11874            Unit::ReciprocalCubicFoot => "reciprocal cubic foot",
11875            Unit::CubicFootPerDegreeFahrenheit => "cubic foot per degree Fahrenheit",
11876            Unit::CubicFootPerDay => "cubic foot per day",
11877            Unit::CubicFootPerPsi => "cubic foot per psi",
11878            Unit::GallonUkPerDay => "gallon (UK) per day",
11879            Unit::GallonUkPerHour => "gallon (UK) per hour",
11880            Unit::GallonUkPerSecond => "gallon (UK) per second",
11881            Unit::KilovoltAmpereReactiveHour => "kilovolt ampere reactive hour",
11882            Unit::GallonUsLiquidPerSecond => "gallon (US liquid) per second",
11883            Unit::GramForcePerSquareCentimetre => "gram-force per square centimetre",
11884            Unit::GillUkPerDay => "gill (UK) per day",
11885            Unit::GillUkPerHour => "gill (UK) per hour",
11886            Unit::GillUkPerMinute => "gill (UK) per minute",
11887            Unit::GillUkPerSecond => "gill (UK) per second",
11888            Unit::GillUsPerDay => "gill (US) per day",
11889            Unit::GillUsPerHour => "gill (US) per hour",
11890            Unit::GillUsPerMinute => "gill (US) per minute",
11891            Unit::GillUsPerSecond => "gill (US) per second",
11892            Unit::StandardAccelerationFreeFall => "standard acceleration of free fall",
11893            Unit::GrainPerGallonUs => "grain per gallon (US)",
11894            Unit::HorsepowerBoiler => "horsepower (boiler)",
11895            Unit::HorsepowerElectric => "horsepower (electric)",
11896            Unit::InchPerDegreeFahrenheit => "inch per degree Fahrenheit",
11897            Unit::InchPerPsi => "inch per psi",
11898            Unit::InchPerSecondDegreeFahrenheit => "inch per second degree Fahrenheit",
11899            Unit::InchPerSecondPsi => "inch per second psi",
11900            Unit::ReciprocalCubicInch => "reciprocal cubic inch",
11901            Unit::Kilobaud => "kilobaud",
11902            Unit::KilocalorieMean => "kilocalorie (mean)",
11903            Unit::KilocalorieInternationalTablePerHourMetreDegreeCelsius => "kilocalorie (international table) per hour metre degree Celsius",
11904            Unit::KilocalorieThermochemical => "kilocalorie (thermochemical)",
11905            Unit::KilocalorieThermochemicalPerMinute => "kilocalorie (thermochemical) per minute",
11906            Unit::KilocalorieThermochemicalPerSecond => "kilocalorie (thermochemical) per second",
11907            Unit::KilomolePerHour => "kilomole per hour",
11908            Unit::KilomolePerCubicMetreKelvin => "kilomole per cubic metre kelvin",
11909            Unit::Kilolitre => "kilolitre",
11910            Unit::KilomolePerCubicMetreBar => "kilomole per cubic metre bar",
11911            Unit::KilomolePerMinute => "kilomole per minute",
11912            Unit::LitrePerLitre => "litre per litre",
11913            Unit::ReciprocalLitre => "reciprocal litre",
11914            Unit::PoundAvoirdupoisPerDegreeFahrenheit => "pound (avoirdupois) per degree Fahrenheit",
11915            Unit::PoundAvoirdupoisSquareFoot => "pound (avoirdupois) square foot",
11916            Unit::PoundAvoirdupoisPerDay => "pound (avoirdupois) per day",
11917            Unit::PoundPerFootHour => "pound per foot hour",
11918            Unit::PoundPerFootSecond => "pound per foot second",
11919            Unit::PoundAvoirdupoisPerCubicFootDegreeFahrenheit => "pound (avoirdupois) per cubic foot degree Fahrenheit",
11920            Unit::PoundAvoirdupoisPerCubicFootPsi => "pound (avoirdupois) per cubic foot psi",
11921            Unit::PoundAvoirdupoisPerGallonUk => "pound (avoirdupois) per gallon (UK)",
11922            Unit::PoundAvoirdupoisPerHourDegreeFahrenheit => "pound (avoirdupois) per hour degree Fahrenheit",
11923            Unit::PoundAvoirdupoisPerHourPsi => "pound (avoirdupois) per hour psi",
11924            Unit::PoundAvoirdupoisPerCubicInchDegreeFahrenheit => "pound (avoirdupois) per cubic inch degree Fahrenheit",
11925            Unit::PoundAvoirdupoisPerCubicInchPsi => "pound (avoirdupois) per cubic inch psi",
11926            Unit::PoundAvoirdupoisPerPsi => "pound (avoirdupois) per psi",
11927            Unit::PoundAvoirdupoisPerMinute => "pound (avoirdupois) per minute",
11928            Unit::PoundAvoirdupoisPerMinuteDegreeFahrenheit => "pound (avoirdupois) per minute degree Fahrenheit",
11929            Unit::PoundAvoirdupoisPerMinutePsi => "pound (avoirdupois) per minute psi",
11930            Unit::PoundAvoirdupoisPerSecond => "pound (avoirdupois) per second",
11931            Unit::PoundAvoirdupoisPerSecondDegreeFahrenheit => "pound (avoirdupois) per second degree Fahrenheit",
11932            Unit::PoundAvoirdupoisPerSecondPsi => "pound (avoirdupois) per second psi",
11933            Unit::PoundPerCubicYard => "pound per cubic yard",
11934            Unit::PoundForcePerSquareFoot => "pound-force per square foot",
11935            Unit::PoundForcePerSquareInchDegreeFahrenheit => "pound-force per square inch degree Fahrenheit",
11936            Unit::PsiCubicInchPerSecond => "psi cubic inch per second",
11937            Unit::PsiLitrePerSecond => "psi litre per second",
11938            Unit::PsiCubicMetrePerSecond => "psi cubic metre per second",
11939            Unit::PsiCubicYardPerSecond => "psi cubic yard per second",
11940            Unit::PoundForceSecondPerSquareFoot => "pound-force second per square foot",
11941            Unit::PoundForceSecondPerSquareInch => "pound-force second per square inch",
11942            Unit::ReciprocalPsi => "reciprocal psi",
11943            Unit::QuartUkLiquidPerDay => "quart (UK liquid) per day",
11944            Unit::QuartUkLiquidPerHour => "quart (UK liquid) per hour",
11945            Unit::QuartUkLiquidPerMinute => "quart (UK liquid) per minute",
11946            Unit::QuartUkLiquidPerSecond => "quart (UK liquid) per second",
11947            Unit::QuartUsLiquidPerDay => "quart (US liquid) per day",
11948            Unit::QuartUsLiquidPerHour => "quart (US liquid) per hour",
11949            Unit::Cake => "cake",
11950            Unit::Katal => "katal",
11951            Unit::Kilocharacter => "kilocharacter",
11952            Unit::Kilobar => "kilobar",
11953            Unit::KilogramCholineChloride => "kilogram of choline chloride",
11954            Unit::KilogramDrainedNetWeight => "kilogram drained net weight",
11955            Unit::Kelvin => "kelvin",
11956            Unit::Kilogram => "kilogram",
11957            Unit::KilogramPerSecond => "kilogram per second",
11958            Unit::KilogramHydrogenPeroxide => "kilogram of hydrogen peroxide",
11959            Unit::Kilohertz => "kilohertz",
11960            Unit::KilogramPerMillimetreWidth => "kilogram per millimetre width",
11961            Unit::KilogramIncludingContainer => "kilogram, including container",
11962            Unit::KilogramIncludingInnerPackaging => "kilogram, including inner packaging",
11963            Unit::Kilosegment => "kilosegment",
11964            Unit::Kilojoule => "kilojoule",
11965            Unit::KilogramPerMetre => "kilogram per metre",
11966            Unit::LacticDryMaterialPercentage => "lactic dry material percentage",
11967            Unit::Kilolux => "kilolux",
11968            Unit::KilogramMethylamine => "kilogram of methylamine",
11969            Unit::KilometrePerHour => "kilometre per hour",
11970            Unit::SquareKilometre => "square kilometre",
11971            Unit::KilogramPerCubicMetre => "kilogram per cubic metre",
11972            Unit::Kilometre => "kilometre",
11973            Unit::KilogramNitrogen => "kilogram of nitrogen",
11974            Unit::KilonewtonPerSquareMetre => "kilonewton per square metre",
11975            Unit::KilogramNamedSubstance => "kilogram named substance",
11976            Unit::Knot => "knot",
11977            Unit::MilliequivalenceCausticPotashPerGramProduct => "milliequivalence caustic potash per gram of product",
11978            Unit::Kilopascal => "kilopascal",
11979            Unit::KilogramPotassiumHydroxideCausticPotash => "kilogram of potassium hydroxide (caustic potash)",
11980            Unit::KilogramPotassiumOxide => "kilogram of potassium oxide",
11981            Unit::KilogramPhosphorusPentoxidePhosphoricAnhydride => "kilogram of phosphorus pentoxide (phosphoric anhydride)",
11982            Unit::Kiloroentgen => "kiloroentgen",
11983            Unit::KilogramSubstance90Dry => "kilogram of substance 90 % dry",
11984            Unit::KilogramSodiumHydroxideCausticSoda => "kilogram of sodium hydroxide (caustic soda)",
11985            Unit::Kit => "kit",
11986            Unit::Kilotonne => "kilotonne",
11987            Unit::KilogramUranium => "kilogram of uranium",
11988            Unit::KilovoltAmpere => "kilovolt - ampere",
11989            Unit::Kilovar => "kilovar",
11990            Unit::Kilovolt => "kilovolt",
11991            Unit::KilogramPerMillimetre => "kilogram per millimetre",
11992            Unit::KilowattHour => "kilowatt hour",
11993            Unit::KilowattHourPerNormalizedCubicMetre => "Kilowatt hour per normalized cubic metre",
11994            Unit::KilogramTungstenTrioxide => "kilogram of tungsten trioxide",
11995            Unit::KilowattHourPerStandardCubicMetre => "Kilowatt hour per standard cubic metre",
11996            Unit::Kilowatt => "kilowatt",
11997            Unit::KilowattYear => "kilowatt year",
11998            Unit::MillilitrePerKilogram => "millilitre per kilogram",
11999            Unit::QuartUsLiquidPerMinute => "quart (US liquid) per minute",
12000            Unit::QuartUsLiquidPerSecond => "quart (US liquid) per second",
12001            Unit::MetrePerSecondKelvin => "metre per second kelvin",
12002            Unit::MetrePerSecondBar => "metre per second bar",
12003            Unit::SquareMetreHourDegreeCelsiusPerKilocalorieInternationalTable => "square metre hour degree Celsius per kilocalorie (international table)",
12004            Unit::MillipascalSecondPerKelvin => "millipascal second per kelvin",
12005            Unit::MillipascalSecondPerBar => "millipascal second per bar",
12006            Unit::MilligramPerCubicMetreKelvin => "milligram per cubic metre kelvin",
12007            Unit::MilligramPerCubicMetreBar => "milligram per cubic metre bar",
12008            Unit::MillilitrePerLitre => "millilitre per litre",
12009            Unit::LitrePerMinute => "litre per minute",
12010            Unit::ReciprocalCubicMillimetre => "reciprocal cubic millimetre",
12011            Unit::CubicMillimetrePerCubicMetre => "cubic millimetre per cubic metre",
12012            Unit::MolePerHour => "mole per hour",
12013            Unit::MolePerKilogramKelvin => "mole per kilogram kelvin",
12014            Unit::MolePerKilogramBar => "mole per kilogram bar",
12015            Unit::MolePerLitreKelvin => "mole per litre kelvin",
12016            Unit::MolePerLitreBar => "mole per litre bar",
12017            Unit::MolePerCubicMetreKelvin => "mole per cubic metre kelvin",
12018            Unit::MolePerCubicMetreBar => "mole per cubic metre bar",
12019            Unit::MolePerMinute => "mole per minute",
12020            Unit::MilliroentgenAequivalentMen => "milliroentgen aequivalent men",
12021            Unit::NanogramPerKilogram => "nanogram per kilogram",
12022            Unit::OunceAvoirdupoisPerDay => "ounce (avoirdupois) per day",
12023            Unit::OunceAvoirdupoisPerHour => "ounce (avoirdupois) per hour",
12024            Unit::OunceAvoirdupoisPerMinute => "ounce (avoirdupois) per minute",
12025            Unit::OunceAvoirdupoisPerSecond => "ounce (avoirdupois) per second",
12026            Unit::OunceAvoirdupoisPerGallonUk => "ounce (avoirdupois) per gallon (UK)",
12027            Unit::OunceAvoirdupoisPerGallonUs => "ounce (avoirdupois) per gallon (US)",
12028            Unit::OunceAvoirdupoisPerCubicInch => "ounce (avoirdupois) per cubic inch",
12029            Unit::OunceAvoirdupoisForce => "ounce (avoirdupois)-force",
12030            Unit::OunceAvoirdupoisForceInch => "ounce (avoirdupois)-force inch",
12031            Unit::PicosiemensPerMetre => "picosiemens per metre",
12032            Unit::PeckUk => "peck (UK)",
12033            Unit::PeckUkPerDay => "peck (UK) per day",
12034            Unit::PeckUkPerHour => "peck (UK) per hour",
12035            Unit::PeckUkPerMinute => "peck (UK) per minute",
12036            Unit::PeckUkPerSecond => "peck (UK) per second",
12037            Unit::PeckUsDryPerDay => "peck (US dry) per day",
12038            Unit::PeckUsDryPerHour => "peck (US dry) per hour",
12039            Unit::PeckUsDryPerMinute => "peck (US dry) per minute",
12040            Unit::PeckUsDryPerSecond => "peck (US dry) per second",
12041            Unit::PsiPerPsi => "psi per psi",
12042            Unit::PintUkPerDay => "pint (UK) per day",
12043            Unit::PintUkPerHour => "pint (UK) per hour",
12044            Unit::PintUkPerMinute => "pint (UK) per minute",
12045            Unit::PintUkPerSecond => "pint (UK) per second",
12046            Unit::PintUsLiquidPerDay => "pint (US liquid) per day",
12047            Unit::PintUsLiquidPerHour => "pint (US liquid) per hour",
12048            Unit::PintUsLiquidPerMinute => "pint (US liquid) per minute",
12049            Unit::PintUsLiquidPerSecond => "pint (US liquid) per second",
12050            Unit::SlugPerDay => "slug per day",
12051            Unit::SlugPerFootSecond => "slug per foot second",
12052            Unit::SlugPerCubicFoot => "slug per cubic foot",
12053            Unit::SlugPerHour => "slug per hour",
12054            Unit::SlugPerMinute => "slug per minute",
12055            Unit::SlugPerSecond => "slug per second",
12056            Unit::TonnePerKelvin => "tonne per kelvin",
12057            Unit::TonnePerBar => "tonne per bar",
12058            Unit::TonnePerDay => "tonne per day",
12059            Unit::TonnePerDayKelvin => "tonne per day kelvin",
12060            Unit::TonnePerDayBar => "tonne per day bar",
12061            Unit::TonnePerHourKelvin => "tonne per hour kelvin",
12062            Unit::TonnePerHourBar => "tonne per hour bar",
12063            Unit::TonnePerCubicMetreKelvin => "tonne per cubic metre kelvin",
12064            Unit::TonnePerCubicMetreBar => "tonne per cubic metre bar",
12065            Unit::TonnePerMinute => "tonne per minute",
12066            Unit::TonnePerMinuteKelvin => "tonne per minute kelvin",
12067            Unit::TonnePerMinuteBar => "tonne per minute bar",
12068            Unit::TonnePerSecond => "tonne per second",
12069            Unit::TonnePerSecondKelvin => "tonne per second kelvin",
12070            Unit::TonnePerSecondBar => "tonne per second bar",
12071            Unit::TonUkShipping => "ton (UK shipping)",
12072            Unit::TonLongPerDay => "ton long per day",
12073            Unit::TonUsShipping => "ton (US shipping)",
12074            Unit::TonShortPerDegreeFahrenheit => "ton short per degree Fahrenheit",
12075            Unit::TonShortPerDay => "ton short per day",
12076            Unit::TonShortPerHourDegreeFahrenheit => "ton short per hour degree Fahrenheit",
12077            Unit::TonShortPerHourPsi => "ton short per hour psi",
12078            Unit::TonShortPerPsi => "ton short per psi",
12079            Unit::TonUkLongPerCubicYard => "ton (UK long) per cubic yard",
12080            Unit::TonUsShortPerCubicYard => "ton (US short) per cubic yard",
12081            Unit::TonForceUsShort => "ton-force (US short)",
12082            Unit::CommonYear => "common year",
12083            Unit::SiderealYear => "sidereal year",
12084            Unit::YardPerDegreeFahrenheit => "yard per degree Fahrenheit",
12085            Unit::YardPerPsi => "yard per psi",
12086            Unit::PoundPerCubicInch => "pound per cubic inch",
12087            Unit::LactoseExcessPercentage => "lactose excess percentage",
12088            Unit::Pound => "pound",
12089            Unit::TroyPoundUs => "troy pound (US)",
12090            Unit::LitrePerDay => "litre per day",
12091            Unit::Leaf => "leaf",
12092            Unit::LinearFoot => "linear foot",
12093            Unit::LabourHour => "labour hour",
12094            Unit::Link => "link",
12095            Unit::LinearMetre => "linear metre",
12096            Unit::Length => "length",
12097            Unit::LotUnitProcurement => "lot [unit of procurement]",
12098            Unit::LiquidPound => "liquid pound",
12099            Unit::LitrePureAlcohol => "litre of pure alcohol",
12100            Unit::Layer => "layer",
12101            Unit::LumpSum => "lump sum",
12102            Unit::TonUkOrLongTonUs => "ton (UK) or long ton (US)",
12103            Unit::Litre => "litre",
12104            Unit::MetricTonLubricatingOil => "metric ton, lubricating oil",
12105            Unit::Lumen => "lumen",
12106            Unit::Lux => "lux",
12107            Unit::LinearYard => "linear yard",
12108            Unit::MilligramPerLitre => "milligram per litre",
12109            Unit::ReciprocalCubicYard => "reciprocal cubic yard",
12110            Unit::CubicYardPerDegreeFahrenheit => "cubic yard per degree Fahrenheit",
12111            Unit::CubicYardPerDay => "cubic yard per day",
12112            Unit::CubicYardPerHour => "cubic yard per hour",
12113            Unit::CubicYardPerPsi => "cubic yard per psi",
12114            Unit::CubicYardPerMinute => "cubic yard per minute",
12115            Unit::CubicYardPerSecond => "cubic yard per second",
12116            Unit::KilohertzMetre => "kilohertz metre",
12117            Unit::GigahertzMetre => "gigahertz metre",
12118            Unit::Beaufort => "Beaufort",
12119            Unit::ReciprocalMegakelvinOrMegakelvinToPowerMinusOne => "reciprocal megakelvin or megakelvin to the power minus one",
12120            Unit::ReciprocalKilovoltAmpereReciprocalHour => "reciprocal kilovolt - ampere reciprocal hour",
12121            Unit::MillilitrePerSquareCentimetreMinute => "millilitre per square centimetre minute",
12122            Unit::NewtonPerCentimetre => "newton per centimetre",
12123            Unit::OhmKilometre => "ohm kilometre",
12124            Unit::PercentPerDegreeCelsius => "percent per degree Celsius",
12125            Unit::GigaohmPerMetre => "gigaohm per metre",
12126            Unit::MegahertzMetre => "megahertz metre",
12127            Unit::KilogramPerKilogram => "kilogram per kilogram",
12128            Unit::ReciprocalVoltAmpereReciprocalSecond => "reciprocal volt - ampere reciprocal second",
12129            Unit::KilogramPerKilometre => "kilogram per kilometre",
12130            Unit::PascalSecondPerLitre => "pascal second per litre",
12131            Unit::MillimolePerLitre => "millimole per litre",
12132            Unit::NewtonMetrePerSquareMetre => "newton metre per square metre",
12133            Unit::MillivoltAmpere => "millivolt - ampere",
12134            Unit::_30DayMonth => "30-day month",
12135            Unit::Actual360 => "actual/360",
12136            Unit::KilometrePerSecondSquared => "kilometre per second squared",
12137            Unit::CentimetrePerSecondSquared => "centimetre per second squared",
12138            Unit::MonetaryValue => "monetary value",
12139            Unit::YardPerSecondSquared => "yard per second squared",
12140            Unit::MillimetrePerSecondSquared => "millimetre per second squared",
12141            Unit::MileStatuteMilePerSecondSquared => "mile (statute mile) per second squared",
12142            Unit::Mil => "mil",
12143            Unit::Revolution => "revolution",
12144            Unit::DegreeUnitAnglePerSecondSquared => "degree [unit of angle] per second squared",
12145            Unit::RevolutionPerMinute => "revolution per minute ",
12146            Unit::CircularMil => "circular mil ",
12147            Unit::SquareMileBasedOnUSSurveyFoot => "square mile (based on U.S. survey foot) ",
12148            Unit::ChainBasedOnUSSurveyFoot => "chain (based on U.S. survey foot)",
12149            Unit::Microcurie => "microcurie",
12150            Unit::Furlong => "furlong",
12151            Unit::FootUSSurvey => "foot (U.S. survey) ",
12152            Unit::MileBasedOnUSSurveyFoot => "mile (based on U.S. survey foot) ",
12153            Unit::MetrePerPascal => "metre per pascal",
12154            Unit::MetrePerRadiant => "metre per radiant",
12155            Unit::Shake => "shake",
12156            Unit::MilePerMinute => "mile per minute ",
12157            Unit::MilePerSecond => "mile per second ",
12158            Unit::MetrePerSecondPascal => "metre per second pascal",
12159            Unit::MetrePerHour => "metre per hour",
12160            Unit::InchPerYear => "inch per year",
12161            Unit::KilometrePerSecond => "kilometre per second ",
12162            Unit::InchPerMinute => "inch per minute",
12163            Unit::YardPerSecond => "yard per second",
12164            Unit::YardPerMinute => "yard per minute",
12165            Unit::YardPerHour => "yard per hour",
12166            Unit::AcreFootBasedOnUSSurveyFoot => "acre-foot (based on U.S. survey foot)",
12167            Unit::Cord128Ft3 => "cord (128 ft3)",
12168            Unit::CubicMileUkStatute => "cubic mile (UK statute)",
12169            Unit::MicroInch => "micro-inch",
12170            Unit::TonRegister => "ton, register ",
12171            Unit::CubicMetrePerPascal => "cubic metre per pascal",
12172            Unit::Bel => "bel",
12173            Unit::KilogramPerCubicMetrePascal => "kilogram per cubic metre pascal",
12174            Unit::KilogramPerPascal => "kilogram per pascal",
12175            Unit::KilopoundForce => "kilopound-force",
12176            Unit::Poundal => "poundal",
12177            Unit::KilogramMetrePerSecondSquared => "kilogram metre per second squared",
12178            Unit::Pond => "pond",
12179            Unit::SquareFootPerHour => "square foot per hour ",
12180            Unit::StokesPerPascal => "stokes per pascal",
12181            Unit::SquareCentimetrePerSecond => "square centimetre per second",
12182            Unit::SquareMetrePerSecondPascal => "square metre per second pascal",
12183            Unit::Denier_Dup => "denier ",
12184            Unit::PoundPerYard => "pound per yard ",
12185            Unit::TonAssay => "ton, assay",
12186            Unit::Pfund => "pfund",
12187            Unit::KilogramPerSecondPascal => "kilogram per second pascal",
12188            Unit::TonnePerMonth => "tonne per month",
12189            Unit::TonnePerYear => "tonne per year",
12190            Unit::MillionBtuPer1000CubicFoot => "million Btu per 1000 cubic foot",
12191            Unit::KilopoundPerHour => "kilopound per hour",
12192            Unit::PoundPerPound => "pound per pound",
12193            Unit::PoundForceFoot => "pound-force foot",
12194            Unit::NewtonMetrePerRadian => "newton metre per radian",
12195            Unit::KilogramMetre => "kilogram metre",
12196            Unit::PoundalFoot => "poundal foot",
12197            Unit::PoundalInch => "poundal inch",
12198            Unit::DyneMetre => "dyne metre",
12199            Unit::KilogramCentimetrePerSecond => "kilogram centimetre per second",
12200            Unit::GramCentimetrePerSecond => "gram centimetre per second",
12201            Unit::MegavoltAmpereReactiveHour => "megavolt ampere reactive hour",
12202            Unit::Megalitre => "megalitre",
12203            Unit::Megametre => "megametre",
12204            Unit::Megavar => "megavar",
12205            Unit::Megawatt => "megawatt",
12206            Unit::ThousandStandardBrickEquivalent => "thousand standard brick equivalent",
12207            Unit::ThousandBoardFoot => "thousand board foot",
12208            Unit::Millibar => "millibar",
12209            Unit::Microgram => "microgram",
12210            Unit::Millicurie => "millicurie",
12211            Unit::AirDryMetricTon => "air dry metric ton",
12212            Unit::Milligram => "milligram",
12213            Unit::Megahertz => "megahertz",
12214            Unit::SquareMileStatuteMile => "square mile (statute mile)",
12215            Unit::Thousand => "thousand",
12216            Unit::MinuteUnitTime => "minute [unit of time]",
12217            Unit::Million => "million",
12218            Unit::MillionInternationalUnit => "million international unit",
12219            Unit::SquareMetreDay => "Square Metre Day",
12220            Unit::SquareMetreMonth => "Square Metre Month",
12221            Unit::SquareMetreWeek => "Square Metre Week",
12222            Unit::Milliard => "milliard",
12223            Unit::Millilitre => "millilitre",
12224            Unit::SquareMillimetre => "square millimetre",
12225            Unit::CubicMillimetre => "cubic millimetre",
12226            Unit::Millimetre => "millimetre",
12227            Unit::KilogramDryWeight => "kilogram, dry weight",
12228            Unit::MegaJoulePerNormalisedCubicMetre => "Mega Joule per Normalised cubic Metre",
12229            Unit::Month => "month",
12230            Unit::Megapascal => "megapascal",
12231            Unit::CubicMetreDay => "Cubic Metre Day",
12232            Unit::CubicMetrePerHour => "cubic metre per hour",
12233            Unit::CubicMetreMonth => "Cubic Metre Month",
12234            Unit::CubicMetrePerSecond => "cubic metre per second",
12235            Unit::CubicMetreWeek => "Cubic Metre Week",
12236            Unit::MetreDay => "Metre Day",
12237            Unit::MetreMonth => "Metre Month",
12238            Unit::MetreWeek => "Metre Week",
12239            Unit::MetrePerSecondSquared => "metre per second squared",
12240            Unit::SquareMetre => "square metre",
12241            Unit::CubicMetre => "cubic metre",
12242            Unit::Metre => "metre",
12243            Unit::MetrePerSecond => "metre per second",
12244            Unit::Milihertz => "milihertz",
12245            Unit::MegavoltAmpere => "megavolt - ampere",
12246            Unit::MegawattHour1000KwH => "megawatt hour (1000 kW.h)",
12247            Unit::PenCalorie => "pen calorie",
12248            Unit::PoundFootPerSecond => "pound foot per second",
12249            Unit::PoundInchPerSecond => "pound inch per second",
12250            Unit::Pferdestaerke => "Pferdestaerke",
12251            Unit::CentimetreMercury0Oc => "centimetre of mercury (0 ºC)",
12252            Unit::CentimetreWater4Oc => "centimetre of water (4 ºC)",
12253            Unit::FootWater392Of => "foot of water (39.2 ºF)",
12254            Unit::InchMercury32Of => "inch of mercury (32 ºF)",
12255            Unit::InchMercury60Of => "inch of mercury (60 ºF)",
12256            Unit::InchWater392Of => "inch of water (39.2 ºF)",
12257            Unit::InchWater60Of => "inch of water (60 ºF)",
12258            Unit::KipPerSquareInch => "kip per square inch",
12259            Unit::PoundalPerSquareFoot => "poundal per square foot ",
12260            Unit::OunceAvoirdupoisPerSquareInch => "ounce (avoirdupois) per square inch ",
12261            Unit::ConventionalMetreWater => "conventional metre of water",
12262            Unit::GramPerSquareMillimetre => "gram per square millimetre",
12263            Unit::PoundPerSquareYard => "pound per square yard",
12264            Unit::PoundalPerSquareInch => "poundal per square inch",
12265            Unit::FootToFourthPower => "foot to the fourth power ",
12266            Unit::CubicDecimetrePerKilogram => "cubic decimetre per kilogram",
12267            Unit::CubicFootPerPound => "cubic foot per pound",
12268            Unit::PrintPoint => "print point",
12269            Unit::CubicInchPerPound => "cubic inch per pound",
12270            Unit::KilonewtonPerMetre => "kilonewton per metre",
12271            Unit::PoundalPerInch => "poundal per inch",
12272            Unit::PoundForcePerYard => "pound-force per yard",
12273            Unit::PoundalSecondPerSquareFoot => "poundal second per square foot ",
12274            Unit::PoisePerPascal => "poise per pascal",
12275            Unit::NewtonSecondPerSquareMetre => "newton second per square metre",
12276            Unit::KilogramPerMetreSecond => "kilogram per metre second",
12277            Unit::KilogramPerMetreMinute => "kilogram per metre minute",
12278            Unit::KilogramPerMetreDay => "kilogram per metre day",
12279            Unit::KilogramPerMetreHour => "kilogram per metre hour",
12280            Unit::GramPerCentimetreSecond => "gram per centimetre second",
12281            Unit::PoundalSecondPerSquareInch => "poundal second per square inch",
12282            Unit::PoundPerFootMinute => "pound per foot minute",
12283            Unit::PoundPerFootDay => "pound per foot day",
12284            Unit::CubicMetrePerSecondPascal => "cubic metre per second pascal",
12285            Unit::FootPoundal => "foot poundal",
12286            Unit::InchPoundal => "inch poundal",
12287            Unit::WattPerSquareCentimetre => "watt per square centimetre ",
12288            Unit::WattPerSquareInch => "watt per square inch ",
12289            Unit::BritishThermalUnitInternationalTablePerSquareFootHour => "British thermal unit (international table) per square foot hour",
12290            Unit::BritishThermalUnitThermochemicalPerSquareFootHour => "British thermal unit (thermochemical) per square foot hour",
12291            Unit::BritishThermalUnitThermochemicalPerSquareFootMinute => "British thermal unit (thermochemical) per square foot minute",
12292            Unit::BritishThermalUnitInternationalTablePerSquareFootSecond => "British thermal unit (international table) per square foot second",
12293            Unit::BritishThermalUnitThermochemicalPerSquareFootSecond => "British thermal unit (thermochemical) per square foot second",
12294            Unit::BritishThermalUnitInternationalTablePerSquareInchSecond => "British thermal unit (international table) per square inch second",
12295            Unit::CalorieThermochemicalPerSquareCentimetreMinute => "calorie (thermochemical) per square centimetre minute",
12296            Unit::CalorieThermochemicalPerSquareCentimetreSecond => "calorie (thermochemical) per square centimetre second",
12297            Unit::BritishThermalUnitInternationalTablePerCubicFoot => "British thermal unit (international table) per cubic foot ",
12298            Unit::BritishThermalUnitThermochemicalPerCubicFoot => "British thermal unit (thermochemical) per cubic foot",
12299            Unit::BritishThermalUnitInternationalTablePerDegreeFahrenheit => "British thermal unit (international table) per degree Fahrenheit",
12300            Unit::BritishThermalUnitThermochemicalPerDegreeFahrenheit => "British thermal unit (thermochemical) per degree Fahrenheit",
12301            Unit::BritishThermalUnitInternationalTablePerDegreeRankine => "British thermal unit (international table) per degree Rankine",
12302            Unit::BritishThermalUnitThermochemicalPerDegreeRankine => "British thermal unit (thermochemical) per degree Rankine",
12303            Unit::BritishThermalUnitThermochemicalPerPoundDegreeRankine => "British thermal unit (thermochemical) per pound degree Rankine",
12304            Unit::KilocalorieInternationalTablePerGramKelvin => "kilocalorie (international table) per gram kelvin",
12305            Unit::BritishThermalUnit39Of => "British thermal unit (39 ºF) ",
12306            Unit::BritishThermalUnit59Of => "British thermal unit (59 ºF)",
12307            Unit::BritishThermalUnit60Of => "British thermal unit (60 ºF) ",
12308            Unit::Calorie20Oc => "calorie (20 ºC) ",
12309            Unit::Quad1015Btuit => "quad (1015 BtuIT)",
12310            Unit::ThermEc => "therm (EC)",
12311            Unit::ThermUS => "therm (U.S.)",
12312            Unit::BritishThermalUnitThermochemicalPerPound => "British thermal unit (thermochemical) per pound",
12313            Unit::BritishThermalUnitInternationalTablePerHourSquareFootDegreeFahrenheit => "British thermal unit (international table) per hour square foot degree Fahrenheit",
12314            Unit::BritishThermalUnitThermochemicalPerHourSquareFootDegreeFahrenheit => "British thermal unit (thermochemical) per hour square foot degree Fahrenheit",
12315            Unit::BritishThermalUnitInternationalTablePerSecondSquareFootDegreeFahrenheit => "British thermal unit (international table) per second square foot degree Fahrenheit",
12316            Unit::BritishThermalUnitThermochemicalPerSecondSquareFootDegreeFahrenheit => "British thermal unit (thermochemical) per second square foot degree Fahrenheit",
12317            Unit::KilowattPerSquareMetreKelvin => "kilowatt per square metre kelvin",
12318            Unit::KelvinPerPascal => "kelvin per pascal",
12319            Unit::WattPerMetreDegreeCelsius => "watt per metre degree Celsius",
12320            Unit::KilowattPerMetreKelvin => "kilowatt per metre kelvin",
12321            Unit::KilowattPerMetreDegreeCelsius => "kilowatt per metre degree Celsius",
12322            Unit::MetrePerDegreeCelciusMetre => "metre per degree Celcius metre",
12323            Unit::DegreeFahrenheitHourPerBritishThermalUnitInternationalTable => "degree Fahrenheit hour per British thermal unit (international table)",
12324            Unit::DegreeFahrenheitHourPerBritishThermalUnitThermochemical => "degree Fahrenheit hour per British thermal unit (thermochemical)",
12325            Unit::DegreeFahrenheitSecondPerBritishThermalUnitInternationalTable => "degree Fahrenheit second per British thermal unit (international table)",
12326            Unit::DegreeFahrenheitSecondPerBritishThermalUnitThermochemical => "degree Fahrenheit second per British thermal unit (thermochemical)",
12327            Unit::DegreeFahrenheitHourSquareFootPerBritishThermalUnitInternationalTableInch => "degree Fahrenheit hour square foot per British thermal unit (international table) inch",
12328            Unit::DegreeFahrenheitHourSquareFootPerBritishThermalUnitThermochemicalInch => "degree Fahrenheit hour square foot per British thermal unit (thermochemical) inch",
12329            Unit::Kilofarad => "kilofarad",
12330            Unit::ReciprocalJoule => "reciprocal joule",
12331            Unit::Picosiemens => "picosiemens",
12332            Unit::AmperePerPascal => "ampere per pascal",
12333            Unit::Franklin => "franklin",
12334            Unit::AmpereMinute => "ampere minute",
12335            Unit::Biot => "biot",
12336            Unit::Gilbert => "gilbert",
12337            Unit::VoltPerPascal => "volt per pascal",
12338            Unit::Picovolt => "picovolt",
12339            Unit::MilligramPerKilogram => "milligram per kilogram",
12340            Unit::NumberArticles => "number of articles",
12341            Unit::NumberCells => "number of cells",
12342            Unit::Newton => "newton",
12343            Unit::Message => "message",
12344            Unit::Nil => "nil",
12345            Unit::NumberInternationalUnits => "number of international units",
12346            Unit::Load => "load",
12347            Unit::NormalisedCubicMetre => "Normalised cubic metre",
12348            Unit::NauticalMile => "nautical mile",
12349            Unit::NumberPacks => "number of packs",
12350            Unit::NumberParts => "number of parts",
12351            Unit::NetTon => "net ton",
12352            Unit::NephelometricTurbidityUnit => "Nephelometric turbidity unit",
12353            Unit::NewtonMetre => "newton metre",
12354            Unit::PartPerThousand => "part per thousand",
12355            Unit::Panel => "panel",
12356            Unit::OzoneDepletionEquivalent => "ozone depletion equivalent",
12357            Unit::OdsGrams => "ODS Grams",
12358            Unit::OdsKilograms => "ODS Kilograms",
12359            Unit::OdsMilligrams => "ODS Milligrams",
12360            Unit::Ohm => "ohm",
12361            Unit::OuncePerSquareYard => "ounce per square yard",
12362            Unit::OunceAvoirdupois => "ounce (avoirdupois)",
12363            Unit::OscillationsPerMinute => "oscillations per minute",
12364            Unit::OvertimeHour => "overtime hour",
12365            Unit::FluidOunceUs => "fluid ounce (US)",
12366            Unit::FluidOunceUk => "fluid ounce (UK)",
12367            Unit::Percent => "percent",
12368            Unit::CoulombPerMetre => "coulomb per metre",
12369            Unit::Kiloweber => "kiloweber",
12370            Unit::Gamma => "gamma",
12371            Unit::Kilotesla => "kilotesla",
12372            Unit::JoulePerSecond => "joule per second",
12373            Unit::JoulePerMinute => "joule per minute",
12374            Unit::JoulePerHour => "joule per hour",
12375            Unit::JoulePerDay => "joule per day",
12376            Unit::KilojoulePerSecond => "kilojoule per second",
12377            Unit::KilojoulePerMinute => "kilojoule per minute",
12378            Unit::PoundPerFoot => "pound per foot",
12379            Unit::KilojoulePerHour => "kilojoule per hour",
12380            Unit::KilojoulePerDay => "kilojoule per day",
12381            Unit::Nanoohm => "nanoohm",
12382            Unit::OhmCircularMilPerFoot => "ohm circular-mil per foot ",
12383            Unit::Kilohenry => "kilohenry",
12384            Unit::LumenPerSquareFoot => "lumen per square foot ",
12385            Unit::Phot => "phot",
12386            Unit::Footcandle => "footcandle",
12387            Unit::CandelaPerSquareInch => "candela per square inch ",
12388            Unit::Footlambert => "footlambert",
12389            Unit::Lambert => "lambert",
12390            Unit::Stilb => "stilb",
12391            Unit::CandelaPerSquareFoot => "candela per square foot",
12392            Unit::Kilocandela => "kilocandela",
12393            Unit::Millicandela => "millicandela",
12394            Unit::HefnerKerze => "Hefner-Kerze",
12395            Unit::InternationalCandle => "international candle ",
12396            Unit::BritishThermalUnitInternationalTablePerSquareFoot => "British thermal unit (international table) per square foot",
12397            Unit::BritishThermalUnitThermochemicalPerSquareFoot => "British thermal unit (thermochemical) per square foot",
12398            Unit::CalorieThermochemicalPerSquareCentimetre => "calorie (thermochemical) per square centimetre ",
12399            Unit::Langley => "langley",
12400            Unit::DecadeLogarithmic => "decade (logarithmic)",
12401            Unit::PascalSquaredSecond => "pascal squared second",
12402            Unit::BelPerMetre => "bel per metre",
12403            Unit::PoundMole => "pound mole",
12404            Unit::PoundMolePerSecond => "pound mole per second",
12405            Unit::PoundMolePerMinute => "pound mole per minute",
12406            Unit::KilomolePerKilogram => "kilomole per kilogram",
12407            Unit::PoundMolePerPound => "pound mole per pound",
12408            Unit::NewtonSquareMetrePerAmpere => "newton square metre per ampere",
12409            Unit::FivePack => "five pack",
12410            Unit::WeberMetre => "weber metre",
12411            Unit::MolPerKilogramPascal => "mol per kilogram pascal",
12412            Unit::MolPerCubicMetrePascal => "mol per cubic metre pascal",
12413            Unit::UnitPole => "unit pole ",
12414            Unit::MilligrayPerSecond => "milligray per second",
12415            Unit::MicrograyPerSecond => "microgray per second",
12416            Unit::NanograyPerSecond => "nanogray per second",
12417            Unit::GrayPerMinute => "gray per minute",
12418            Unit::MilligrayPerMinute => "milligray per minute",
12419            Unit::MicrograyPerMinute => "microgray per minute",
12420            Unit::NanograyPerMinute => "nanogray per minute",
12421            Unit::GrayPerHour => "gray per hour",
12422            Unit::MilligrayPerHour => "milligray per hour",
12423            Unit::MicrograyPerHour => "microgray per hour",
12424            Unit::NanograyPerHour => "nanogray per hour",
12425            Unit::SievertPerSecond => "sievert per second",
12426            Unit::MillisievertPerSecond => "millisievert per second",
12427            Unit::MicrosievertPerSecond => "microsievert per second",
12428            Unit::NanosievertPerSecond => "nanosievert per second",
12429            Unit::RemPerSecond => "rem per second",
12430            Unit::SievertPerHour => "sievert per hour",
12431            Unit::MillisievertPerHour => "millisievert per hour",
12432            Unit::MicrosievertPerHour => "microsievert per hour",
12433            Unit::NanosievertPerHour => "nanosievert per hour",
12434            Unit::SievertPerMinute => "sievert per minute",
12435            Unit::MillisievertPerMinute => "millisievert per minute",
12436            Unit::MicrosievertPerMinute => "microsievert per minute",
12437            Unit::NanosievertPerMinute => "nanosievert per minute",
12438            Unit::ReciprocalSquareInch => "reciprocal square inch",
12439            Unit::PascalSquareMetrePerKilogram => "pascal square metre per kilogram",
12440            Unit::MillipascalPerMetre => "millipascal per metre",
12441            Unit::KilopascalPerMetre => "kilopascal per metre",
12442            Unit::HectopascalPerMetre => "hectopascal per metre",
12443            Unit::StandardAtmospherePerMetre => "standard atmosphere per metre",
12444            Unit::TechnicalAtmospherePerMetre => "technical atmosphere per metre",
12445            Unit::TorrPerMetre => "torr per metre",
12446            Unit::PsiPerInch => "psi per inch",
12447            Unit::CubicMetrePerSecondSquareMetre => "cubic metre per second square metre",
12448            Unit::Rhe => "rhe",
12449            Unit::PoundForceFootPerInch => "pound-force foot per inch",
12450            Unit::PoundForceInchPerInch => "pound-force inch per inch ",
12451            Unit::Perm0Oc => "perm (0 ºC) ",
12452            Unit::Perm23Oc => "perm (23 ºC) ",
12453            Unit::BytePerSecond => "byte per second",
12454            Unit::KilobytePerSecond => "kilobyte per second",
12455            Unit::MegabytePerSecond => "megabyte per second",
12456            Unit::ReciprocalVolt => "reciprocal volt",
12457            Unit::ReciprocalRadian => "reciprocal radian",
12458            Unit::PascalToPowerSumStoichiometricNumbers => "pascal to the power sum of stoichiometric numbers",
12459            Unit::MolePerCubivMetreToPowerSumStoichiometricNumbers => "mole per cubiv metre to the power sum of stoichiometric numbers",
12460            Unit::Pascal => "pascal",
12461            Unit::Pad => "pad",
12462            Unit::ProofLitre => "proof litre",
12463            Unit::ProofGallon => "proof gallon",
12464            Unit::Pitch => "pitch",
12465            Unit::DegreePlato => "degree Plato",
12466            Unit::PoundPerInchLength => "pound per inch of length",
12467            Unit::PagePerInch => "page per inch",
12468            Unit::Pair => "pair",
12469            Unit::PoundForcePerSquareInch => "pound-force per square inch",
12470            Unit::DryPintUs => "dry pint (US)",
12471            Unit::PintUk => "pint (UK)",
12472            Unit::LiquidPintUs => "liquid pint (US)",
12473            Unit::Portion => "portion",
12474            Unit::JoulePerTesla => "joule per tesla",
12475            Unit::Erlang => "erlang",
12476            Unit::Octet => "octet",
12477            Unit::OctetPerSecond => "octet per second",
12478            Unit::Shannon => "shannon",
12479            Unit::Hartley => "hartley",
12480            Unit::NaturalUnitInformation => "natural unit of information",
12481            Unit::ShannonPerSecond => "shannon per second",
12482            Unit::HartleyPerSecond => "hartley per second",
12483            Unit::NaturalUnitInformationPerSecond => "natural unit of information per second",
12484            Unit::SecondPerKilogramm => "second per kilogramm",
12485            Unit::WattSquareMetre => "watt square metre",
12486            Unit::SecondPerRadianCubicMetre => "second per radian cubic metre",
12487            Unit::WeberToPowerMinusOne => "weber to the power minus one",
12488            Unit::ReciprocalInch => "reciprocal inch",
12489            Unit::Dioptre => "dioptre",
12490            Unit::OnePerOne => "one per one",
12491            Unit::NewtonMetrePerMetre => "newton metre per metre",
12492            Unit::KilogramPerSquareMetrePascalSecond => "kilogram per square metre pascal second",
12493            Unit::MicrogramPerHectogram => "microgram per hectogram",
12494            Unit::Meal => "meal",
12495            Unit::PhPotentialHydrogen => "pH (potential of Hydrogen)",
12496            Unit::KilojoulePerGram => "kilojoule per gram",
12497            Unit::Femtolitre => "femtolitre",
12498            Unit::Picolitre => "picolitre",
12499            Unit::Nanolitre => "nanolitre",
12500            Unit::MegawattsPerMinute => "megawatts per minute",
12501            Unit::SquareMetrePerCubicMetre => "square metre per cubic metre",
12502            Unit::StandardCubicMetrePerDay => "Standard cubic metre per day",
12503            Unit::StandardCubicMetrePerHour => "Standard cubic metre per hour",
12504            Unit::NormalizedCubicMetrePerDay => "Normalized cubic metre per day",
12505            Unit::NormalizedCubicMetrePerHour => "Normalized cubic metre per hour",
12506            Unit::JoulePerNormalisedCubicMetre => "Joule per normalised cubic metre",
12507            Unit::JoulePerStandardCubicMetre => "Joule per standard cubic metre",
12508            Unit::PageFacsimile => "page - facsimile",
12509            Unit::QuarterAYear => "quarter (of a year)",
12510            Unit::PageHardcopy => "page - hardcopy",
12511            Unit::Quire => "quire",
12512            Unit::DryQuartUs => "dry quart (US)",
12513            Unit::QuartUk => "quart (UK)",
12514            Unit::LiquidQuartUs => "liquid quart (US)",
12515            Unit::QuarterUk => "quarter (UK)",
12516            Unit::Pica => "pica",
12517            Unit::ThousandCubicMetre => "thousand cubic metre",
12518            Unit::RunningOrOperatingHour => "running or operating hour",
12519            Unit::Ream => "ream",
12520            Unit::Room => "room",
12521            Unit::PoundPerReam => "pound per ream",
12522            Unit::RevolutionsPerMinute => "revolutions per minute",
12523            Unit::RevolutionsPerSecond => "revolutions per second",
12524            Unit::RevenueTonMile => "revenue ton mile",
12525            Unit::SquareFootPerSecond => "square foot per second",
12526            Unit::SquareMetrePerSecond => "square metre per second",
12527            Unit::HalfYear6Months => "half year (6 months)",
12528            Unit::Score => "score",
12529            Unit::Scruple => "scruple",
12530            Unit::SecondUnitTime => "second [unit of time]",
12531            Unit::Set => "set",
12532            Unit::Segment => "segment",
12533            Unit::Siemens => "siemens",
12534            Unit::StandardCubicMetre => "Standard cubic metre",
12535            Unit::MileStatuteMile => "mile (statute mile)",
12536            Unit::Square => "square",
12537            Unit::SquareRoofing => "square, roofing",
12538            Unit::Strip => "strip",
12539            Unit::Stick => "stick",
12540            Unit::StoneUk => "stone (UK)",
12541            Unit::StickCigarette => "stick, cigarette",
12542            Unit::StandardLitre => "standard litre",
12543            Unit::TonUsOrShortTonUkUs => "ton (US) or short ton (UK/US)",
12544            Unit::Straw => "straw",
12545            Unit::Skein => "skein",
12546            Unit::Shipment => "shipment",
12547            Unit::Syringe => "syringe",
12548            Unit::TelecommunicationLineInService => "telecommunication line in service",
12549            Unit::ThousandPiece => "thousand piece",
12550            Unit::KiloampereHourThousandAmpereHour => "kiloampere hour (thousand ampere hour)",
12551            Unit::TotalAcidNumber => "total acid number",
12552            Unit::ThousandSquareInch => "thousand square inch",
12553            Unit::MetricTonIncludingContainer => "metric ton, including container",
12554            Unit::MetricTonIncludingInnerPackaging => "metric ton, including inner packaging",
12555            Unit::TonneKilometre => "tonne kilometre",
12556            Unit::KilogramImportedMeatLessOffal => "kilogram of imported meat, less offal",
12557            Unit::TonneMetricTon => "tonne (metric ton)",
12558            Unit::TenPack => "ten pack",
12559            Unit::TeethPerInch => "teeth per inch",
12560            Unit::TenPair => "ten pair",
12561            Unit::ThousandCubicMetrePerDay => "thousand cubic metre per day",
12562            Unit::TrillionEur => "trillion (EUR)",
12563            Unit::TenSet => "ten set",
12564            Unit::TenThousandSticks => "ten thousand sticks",
12565            Unit::Treatment => "treatment",
12566            Unit::Tablet => "tablet",
12567            Unit::TelecommunicationLineInServiceAverage => "telecommunication line in service average",
12568            Unit::TelecommunicationPort => "telecommunication port",
12569            Unit::VoltAmperePerKilogram => "volt - ampere per kilogram",
12570            Unit::Volt => "volt",
12571            Unit::PercentVolume => "percent volume",
12572            Unit::WetKilo => "wet kilo",
12573            Unit::WattPerKilogram => "watt per kilogram",
12574            Unit::WetPound => "wet pound",
12575            Unit::Cord => "cord",
12576            Unit::WetTon => "wet ton",
12577            Unit::Weber => "weber",
12578            Unit::Week => "week",
12579            Unit::WineGallon => "wine gallon",
12580            Unit::WattHour => "watt hour",
12581            Unit::WorkingMonth => "working month",
12582            Unit::Standard => "standard",
12583            Unit::Watt => "watt",
12584            Unit::GuntersChain => "Gunter's chain",
12585            Unit::SquareYard => "square yard",
12586            Unit::CubicYard => "cubic yard",
12587            Unit::Yard => "yard",
12588            Unit::HangingContainer => "hanging container",
12589            Unit::Nanomole => "nanomole",
12590            Unit::Page => "page",
12591            Unit::MutuallyDefined => "mutually defined",
12592            Unit::DrumSteel => "Drum, steel",
12593            Unit::DrumAluminium => "Drum, aluminium",
12594            Unit::DrumPlywood => "Drum, plywood",
12595            Unit::ContainerFlexible => "Container, flexible",
12596            Unit::DrumFibre => "Drum, fibre",
12597            Unit::DrumWooden => "Drum, wooden",
12598            Unit::BarrelWooden => "Barrel, wooden",
12599            Unit::JerricanSteel => "Jerrican, steel",
12600            Unit::JerricanPlastic => "Jerrican, plastic",
12601            Unit::BagSuperBulk => "Bag, super bulk",
12602            Unit::BagPolybag => "Bag, polybag",
12603            Unit::BoxSteel => "Box, steel",
12604            Unit::BoxAluminium => "Box, aluminium",
12605            Unit::BoxNaturalWood => "Box, natural wood",
12606            Unit::BoxPlywood => "Box, plywood",
12607            Unit::BoxReconstitutedWood => "Box, reconstituted wood",
12608            Unit::BoxFibreboard => "Box, fibreboard",
12609            Unit::BoxPlastic => "Box, plastic",
12610            Unit::BagWovenPlastic => "Bag, woven plastic",
12611            Unit::BagTextile => "Bag, textile ",
12612            Unit::BagPaper => "Bag, paper ",
12613            Unit::CompositePackagingPlasticReceptacle => "Composite packaging, plastic receptacle",
12614            Unit::CompositePackagingGlassReceptacle => "Composite packaging, glass receptacle",
12615            Unit::CaseCar => "Case, car",
12616            Unit::CaseWooden => "Case, wooden",
12617            Unit::PalletWooden => "Pallet, wooden",
12618            Unit::CrateWooden => "Crate, wooden",
12619            Unit::BundleWooden => "Bundle, wooden",
12620            Unit::IntermediateBulkContainerRigidPlastic => "Intermediate bulk container, rigid plastic",
12621            Unit::ReceptacleFibre => "Receptacle, fibre ",
12622            Unit::ReceptaclePaper => "Receptacle, paper ",
12623            Unit::ReceptacleWooden => "Receptacle, wooden ",
12624            Unit::Aerosol => "Aerosol",
12625            Unit::PalletModularCollars80cms60cms => "Pallet, modular, collars 80cms * 60cms ",
12626            Unit::PalletShrinkwrapped => "Pallet, shrinkwrapped ",
12627            Unit::Pallet100cms110cms => "Pallet, 100cms * 110cms ",
12628            Unit::Clamshell => "Clamshell",
12629            Unit::Cone => "Cone",
12630            Unit::Ball_Dup => "Ball",
12631            Unit::AmpouleNonProtected => "Ampoule, non-protected ",
12632            Unit::AmpouleProtected => "Ampoule, protected ",
12633            Unit::Atomizer => "Atomizer ",
12634            Unit::Capsule => "Capsule",
12635            Unit::Belt => "Belt",
12636            Unit::Barrel => "Barrel ",
12637            Unit::Bobbin => "Bobbin ",
12638            Unit::BottlecrateBottlerack => "Bottlecrate / bottlerack ",
12639            Unit::Board => "Board",
12640            Unit::Bundle => "Bundle ",
12641            Unit::BalloonNonProtected => "Balloon, non-protected ",
12642            Unit::Bag => "Bag",
12643            Unit::Bunch => "Bunch",
12644            Unit::Bin => "Bin",
12645            Unit::Bucket => "Bucket ",
12646            Unit::Basket => "Basket ",
12647            Unit::BaleCompressed => "Bale, compressed ",
12648            Unit::Basin => "Basin",
12649            Unit::BaleNonCompressed => "Bale, non-compressed ",
12650            Unit::BottleNonProtectedCylindrical => "Bottle, non-protected, cylindrical ",
12651            Unit::BalloonProtected => "Balloon, protected ",
12652            Unit::BottleProtectedCylindrical => "Bottle, protected cylindrical",
12653            Unit::Bar => "Bar",
12654            Unit::BottleNonProtectedBulbous => "Bottle, non-protected, bulbous ",
12655            Unit::Bolt => "Bolt ",
12656            Unit::Butt => "Butt ",
12657            Unit::BottleProtectedBulbous => "Bottle, protected bulbous",
12658            Unit::BoxForLiquids => "Box, for liquids",
12659            Unit::Box => "Box",
12660            Unit::BoardInBundleBunchTruss => "Board, in bundle/bunch/truss ",
12661            Unit::BarsInBundleBunchTruss => "Bars, in bundle/bunch/truss",
12662            Unit::CanRectangular => "Can, rectangular ",
12663            Unit::CrateBeer => "Crate, beer",
12664            Unit::Churn => "Churn",
12665            Unit::CanWithHandleAndSpout => "Can, with handle and spout ",
12666            Unit::Creel => "Creel",
12667            Unit::Coffer => "Coffer ",
12668            Unit::Cage => "Cage ",
12669            Unit::Chest => "Chest",
12670            Unit::Canister => "Canister ",
12671            Unit::Coffin => "Coffin ",
12672            Unit::Cask => "Cask ",
12673            Unit::Coil => "Coil ",
12674            Unit::Card_Dup => "Card",
12675            Unit::ContainerNotOtherwiseSpecifiedAsTransportEquipment => "Container, not otherwise specified as transport equipment",
12676            Unit::CarboyNonProtected => "Carboy, non-protected",
12677            Unit::CarboyProtected => "Carboy, protected",
12678            Unit::Cartridge => "Cartridge",
12679            Unit::Crate => "Crate",
12680            Unit::Case => "Case ",
12681            Unit::Carton => "Carton ",
12682            Unit::Cup => "Cup",
12683            Unit::Cover => "Cover",
12684            Unit::CageRoll => "Cage, roll ",
12685            Unit::CanCylindrical => "Can, cylindrical ",
12686            Unit::Cylinder => "Cylinder ",
12687            Unit::Canvas => "Canvas ",
12688            Unit::CrateMultipleLayerPlastic => "Crate, multiple layer, plastic ",
12689            Unit::CrateMultipleLayerWooden => "Crate, multiple layer, wooden",
12690            Unit::CrateMultipleLayerCardboard => "Crate, multiple layer, cardboard ",
12691            Unit::CageCommonwealthHandlingEquipmentPoolChep => "Cage, Commonwealth Handling Equipment Pool (CHEP)",
12692            Unit::BoxCommonwealthHandlingEquipmentPoolChepEurobox => "Box, Commonwealth Handling Equipment Pool (CHEP), Eurobox",
12693            Unit::DrumIron => "Drum, iron ",
12694            Unit::DemijohnNonProtected => "Demijohn, non-protected",
12695            Unit::CrateBulkCardboard => "Crate, bulk, cardboard ",
12696            Unit::CrateBulkPlastic => "Crate, bulk, plastic ",
12697            Unit::CrateBulkWooden => "Crate, bulk, wooden",
12698            Unit::Dispenser => "Dispenser",
12699            Unit::DemijohnProtected => "Demijohn, protected",
12700            Unit::Drum => "Drum ",
12701            Unit::TrayOneLayerNoCoverPlastic => "Tray, one layer no cover, plastic",
12702            Unit::TrayOneLayerNoCoverWooden => "Tray, one layer no cover, wooden ",
12703            Unit::TrayOneLayerNoCoverPolystyrene => "Tray, one layer no cover, polystyrene",
12704            Unit::TrayOneLayerNoCoverCardboard => "Tray, one layer no cover, cardboard",
12705            Unit::TrayTwoLayersNoCoverPlasticTray => "Tray, two layers no cover, plastic tray",
12706            Unit::TrayTwoLayersNoCoverWooden => "Tray, two layers no cover, wooden",
12707            Unit::TrayTwoLayersNoCoverCardboard => "Tray, two layers no cover, cardboard ",
12708            Unit::BagPlastic => "Bag, plastic ",
12709            Unit::CaseWithPalletBase => "Case, with pallet base ",
12710            Unit::CaseWithPalletBaseWooden => "Case, with pallet base, wooden ",
12711            Unit::CaseWithPalletBaseCardboard => "Case, with pallet base, cardboard",
12712            Unit::CaseWithPalletBasePlastic => "Case, with pallet base, plastic",
12713            Unit::CaseWithPalletBaseMetal => "Case, with pallet base, metal",
12714            Unit::CaseIsothermic => "Case, isothermic ",
12715            Unit::Envelope => "Envelope ",
12716            Unit::Flexibag => "Flexibag",
12717            Unit::CrateFruit => "Crate, fruit ",
12718            Unit::CrateFramed => "Crate, framed",
12719            Unit::Flexitank => "Flexitank",
12720            Unit::Firkin => "Firkin ",
12721            Unit::Flask => "Flask",
12722            Unit::Footlocker => "Footlocker ",
12723            Unit::Filmpack => "Filmpack ",
12724            Unit::Frame => "Frame",
12725            Unit::Foodtainer => "Foodtainer",
12726            Unit::CartFlatbed => "Cart, flatbed",
12727            Unit::BagFlexibleContainer => "Bag, flexible container",
12728            Unit::BottleGas => "Bottle, gas",
12729            Unit::Girder => "Girder ",
12730            Unit::ContainerGallon => "Container, gallon",
12731            Unit::ReceptacleGlass => "Receptacle, glass ",
12732            Unit::TrayContainingHorizontallyStackedFlatItems => "Tray, containing horizontally stacked flat items",
12733            Unit::BagGunny => "Bag, gunny",
12734            Unit::GirdersInBundleBunchTruss => "Girders, in bundle/bunch/truss ",
12735            Unit::BasketWithHandlePlastic => "Basket, with handle, plastic ",
12736            Unit::BasketWithHandleWooden => "Basket, with handle, wooden",
12737            Unit::BasketWithHandleCardboard => "Basket, with handle, cardboard ",
12738            Unit::Hogshead => "Hogshead ",
12739            Unit::Hanger => "Hanger",
12740            Unit::Hamper => "Hamper ",
12741            Unit::PackageDisplayWooden => "Package, display, wooden ",
12742            Unit::PackageDisplayCardboard => "Package, display, cardboard",
12743            Unit::PackageDisplayPlastic => "Package, display, plastic",
12744            Unit::PackageDisplayMetal => "Package, display, metal",
12745            Unit::PackageShow => "Package, show",
12746            Unit::PackageFlow => "Package, flow ",
12747            Unit::PackagePaperWrapped => "Package, paper wrapped",
12748            Unit::DrumPlastic => "Drum, plastic",
12749            Unit::PackageCardboardWithBottleGripHoles => "Package, cardboard, with bottle grip-holes ",
12750            Unit::TrayRigidLiddedStackableCenTs144822002 => "Tray, rigid, lidded stackable (CEN TS 14482:2002)",
12751            Unit::Ingot => "Ingot",
12752            Unit::IngotsInBundleBunchTruss => "Ingots, in bundle/bunch/truss",
12753            Unit::BagJumbo => "Bag, jumbo",
12754            Unit::JerricanRectangular => "Jerrican, rectangular",
12755            Unit::Jug => "Jug",
12756            Unit::Jar => "Jar",
12757            Unit::Jutebag => "Jutebag",
12758            Unit::JerricanCylindrical => "Jerrican, cylindrical",
12759            Unit::Keg => "Keg",
12760            Unit::Kit_Dup => "Kit",
12761            Unit::Luggage => "Luggage",
12762            Unit::Log => "Log",
12763            Unit::Lot => "Lot",
12764            Unit::Lug => "Lug",
12765            Unit::Liftvan => "Liftvan",
12766            Unit::LogsInBundleBunchTruss => "Logs, in bundle/bunch/truss",
12767            Unit::CrateMetal => "Crate, metal",
12768            Unit::BagMultiply => "Bag, multiply",
12769            Unit::CrateMilk => "Crate, milk",
12770            Unit::ContainerMetal => "Container, metal",
12771            Unit::ReceptacleMetal => "Receptacle, metal ",
12772            Unit::SackMultiWall => "Sack, multi-wall ",
12773            Unit::Mat => "Mat",
12774            Unit::ReceptaclePlasticWrapped => "Receptacle, plastic wrapped ",
12775            Unit::Matchbox => "Matchbox ",
12776            Unit::NotAvailable => "Not available",
12777            Unit::UnpackedOrUnpackaged => "Unpacked or unpackaged ",
12778            Unit::UnpackedOrUnpackagedSingleUnit => "Unpacked or unpackaged, single unit",
12779            Unit::UnpackedOrUnpackagedMultipleUnits => "Unpacked or unpackaged, multiple units",
12780            Unit::Nest => "Nest ",
12781            Unit::Net => "Net",
12782            Unit::NetTubePlastic => "Net, tube, plastic ",
12783            Unit::NetTubeTextile => "Net, tube, textile ",
12784            Unit::TwoSidedCageOnWheelsWithFixingStrap => "Two sided cage on wheels with fixing strap",
12785            Unit::Trolley => "Trolley",
12786            Unit::OnewayPalletIso012EuroPallet => "Oneway pallet ISO 0 - 1/2 EURO Pallet",
12787            Unit::OnewayPalletIso111EuroPallet => "Oneway pallet ISO 1 - 1/1 EURO Pallet",
12788            Unit::OnewayPalletIso221EuroPallet => "Oneway pallet ISO 2 - 2/1 EURO Pallet",
12789            Unit::PalletWithExceptionalDimensions => "Pallet with exceptional dimensions",
12790            Unit::WoodenPallet40CmX80Cm => "Wooden pallet 40 cm x 80 cm",
12791            Unit::PlasticPalletSrs60CmX80Cm => "Plastic pallet SRS 60 cm x 80 cm",
12792            Unit::PlasticPalletSrs80CmX120Cm => "Plastic pallet SRS 80 cm x 120 cm",
12793            Unit::PalletChep40CmX60Cm => "Pallet, CHEP 40 cm x 60 cm",
12794            Unit::PalletChep80CmX120Cm => "Pallet, CHEP 80 cm x 120 cm",
12795            Unit::PalletChep100CmX120Cm => "Pallet, CHEP 100 cm x 120 cm",
12796            Unit::PalletAs40681993 => "Pallet, AS 4068-1993",
12797            Unit::PalletIsoT11 => "Pallet, ISO T11",
12798            Unit::PlatformUnspecifiedWeightOrDimension => "Platform, unspecified weight or dimension",
12799            Unit::PalletIso012EuroPallet => "Pallet ISO 0 - 1/2 EURO Pallet",
12800            Unit::PalletIso111EuroPallet => "Pallet ISO 1 - 1/1 EURO Pallet",
12801            Unit::PalletIso221EuroPallet => "Pallet ISO 2 – 2/1 EURO Pallet",
12802            Unit::_14EuroPallet => "1/4 EURO Pallet",
12803            Unit::Block => "Block",
12804            Unit::_18EuroPallet => "1/8 EURO Pallet",
12805            Unit::SyntheticPalletIso1 => "Synthetic pallet ISO 1",
12806            Unit::SyntheticPalletIso2 => "Synthetic pallet ISO 2",
12807            Unit::WholesalerPallet => "Wholesaler pallet",
12808            Unit::Pallet80X100Cm => "Pallet 80 X 100 cm",
12809            Unit::Pallet60X100Cm => "Pallet 60 X 100 cm",
12810            Unit::OnewayPallet => "Oneway pallet",
12811            Unit::Octabin => "Octabin",
12812            Unit::ContainerOuter => "Container, outer",
12813            Unit::ReturnablePallet => "Returnable pallet",
12814            Unit::LargeBagPalletSized => "Large bag, pallet sized",
12815            Unit::AWheeledPalletWithRaisedRim81X67X135 => "A wheeled pallet with raised rim (81 x 67 x 135)",
12816            Unit::AWheeledPalletWithRaisedRim81X72X135 => "A Wheeled pallet with raised rim (81 x 72 x 135)",
12817            Unit::WheeledPalletWithRaisedRim81X60X16 => "Wheeled pallet with raised rim ( 81 x 60 x 16)",
12818            Unit::ChepPallet60CmX80Cm => "CHEP pallet 60 cm x 80 cm ",
12819            Unit::Pan => "Pan",
12820            Unit::LprPallet60CmX80Cm => "LPR pallet 60 cm x 80 cm",
12821            Unit::LprPallet80CmX120Cm => "LPR pallet 80 cm x 120 cm",
12822            Unit::Packet => "Packet ",
12823            Unit::PalletBoxCombinedOpenEndedBoxAndPallet => "Pallet, box Combined open-ended box and pallet",
12824            Unit::Parcel => "Parcel ",
12825            Unit::PalletModularCollars80cms100cms => "Pallet, modular, collars 80cms * 100cms ",
12826            Unit::PalletModularCollars80cms120cms => "Pallet, modular, collars 80cms * 120cms ",
12827            Unit::Pen => "Pen ",
12828            Unit::Plate => "Plate",
12829            Unit::Pitcher => "Pitcher",
12830            Unit::Pipe => "Pipe ",
12831            Unit::Punnet => "Punnet",
12832            Unit::Package => "Package",
12833            Unit::Pail => "Pail ",
12834            Unit::Plank => "Plank",
12835            Unit::Pouch => "Pouch",
12836            Unit::Piece_Dup => "Piece",
12837            Unit::ReceptaclePlastic => "Receptacle, plastic ",
12838            Unit::Pot => "Pot",
12839            Unit::Tray => "Tray ",
12840            Unit::PipesInBundleBunchTruss => "Pipes, in bundle/bunch/truss ",
12841            Unit::Pallet => "Pallet ",
12842            Unit::PlatesInBundleBunchTruss => "Plates, in bundle/bunch/truss",
12843            Unit::PlanksInBundleBunchTruss => "Planks, in bundle/bunch/truss",
12844            Unit::DrumSteelNonRemovableHead => "Drum, steel, non-removable head",
12845            Unit::DrumSteelRemovableHead => "Drum, steel, removable head",
12846            Unit::DrumAluminiumNonRemovableHead => "Drum, aluminium, non-removable head",
12847            Unit::DrumAluminiumRemovableHead => "Drum, aluminium, removable head",
12848            Unit::DrumPlasticNonRemovableHead => "Drum, plastic, non-removable head",
12849            Unit::DrumPlasticRemovableHead => "Drum, plastic, removable head",
12850            Unit::BarrelWoodenBungType => "Barrel, wooden, bung type",
12851            Unit::BarrelWoodenRemovableHead => "Barrel, wooden, removable head ",
12852            Unit::JerricanSteelNonRemovableHead => "Jerrican, steel, non-removable head",
12853            Unit::JerricanSteelRemovableHead => "Jerrican, steel, removable head",
12854            Unit::JerricanPlasticNonRemovableHead => "Jerrican, plastic, non-removable head",
12855            Unit::JerricanPlasticRemovableHead => "Jerrican, plastic, removable head",
12856            Unit::BoxWoodenNaturalWoodOrdinary => "Box, wooden, natural wood, ordinary",
12857            Unit::BoxWoodenNaturalWoodWithSiftProofWalls => "Box, wooden, natural wood, with sift proof walls",
12858            Unit::BoxPlasticExpanded => "Box, plastic, expanded ",
12859            Unit::BoxPlasticSolid => "Box, plastic, solid",
12860            Unit::Rod => "Rod",
12861            Unit::Ring => "Ring ",
12862            Unit::RackClothingHanger => "Rack, clothing hanger",
12863            Unit::Rack => "Rack ",
12864            Unit::Reel => "Reel ",
12865            Unit::Roll => "Roll ",
12866            Unit::Rednet => "Rednet ",
12867            Unit::RodsInBundleBunchTruss => "Rods, in bundle/bunch/truss",
12868            Unit::Sack => "Sack ",
12869            Unit::Slab => "Slab",
12870            Unit::CrateShallow => "Crate, shallow ",
12871            Unit::Spindle => "Spindle",
12872            Unit::SeaChest => "Sea-chest",
12873            Unit::Sachet => "Sachet ",
12874            Unit::Skid => "Skid ",
12875            Unit::CaseSkeleton => "Case, skeleton ",
12876            Unit::Slipsheet => "Slipsheet ",
12877            Unit::Sheetmetal => "Sheetmetal ",
12878            Unit::Spool => "Spool ",
12879            Unit::SheetPlasticWrapping => "Sheet, plastic wrapping",
12880            Unit::CaseSteel => "Case, steel",
12881            Unit::Sheet => "Sheet",
12882            Unit::Suitcase => "Suitcase ",
12883            Unit::EnvelopeSteel => "Envelope, steel",
12884            Unit::Shrinkwrapped => "Shrinkwrapped ",
12885            Unit::Set_Dup => "Set",
12886            Unit::Sleeve => "Sleeve",
12887            Unit::SheetsInBundleBunchTruss => "Sheets, in bundle/bunch/truss",
12888            Unit::Tablet_Dup => "Tablet",
12889            Unit::Tub => "Tub",
12890            Unit::TeaChest => "Tea-chest",
12891            Unit::TubeCollapsible => "Tube, collapsible",
12892            Unit::Tyre_Dup => "Tyre",
12893            Unit::TankContainerGeneric => "Tank container, generic",
12894            Unit::Tierce => "Tierce",
12895            Unit::TankRectangular => "Tank, rectangular",
12896            Unit::TubWithLid => "Tub, with lid",
12897            Unit::Tin => "Tin",
12898            Unit::Tun => "Tun",
12899            Unit::Trunk => "Trunk",
12900            Unit::Truss => "Truss",
12901            Unit::BagTote => "Bag, tote",
12902            Unit::Tube => "Tube ",
12903            Unit::TubeWithNozzle => "Tube, with nozzle ",
12904            Unit::PalletTriwall => "Pallet, triwall",
12905            Unit::TankCylindrical => "Tank, cylindrical",
12906            Unit::TubesInBundleBunchTruss => "Tubes, in bundle/bunch/truss ",
12907            Unit::Uncaged => "Uncaged ",
12908            Unit::Unit => "Unit",
12909            Unit::Vat => "Vat",
12910            Unit::BulkGasAt1031MbarAnd15C => "Bulk, gas (at 1031 mbar and 15°C)",
12911            Unit::Vial => "Vial ",
12912            Unit::Vanpack => "Vanpack ",
12913            Unit::BulkLiquid => "Bulk, liquid ",
12914            Unit::Vehicle => "Vehicle",
12915            Unit::BulkSolidLargeParticlesNodules => "Bulk, solid, large particles (“nodules”) ",
12916            Unit::VacuumPacked => "Vacuum-packed",
12917            Unit::BulkLiquefiedGasAtAbnormalTemperaturePressure => "Bulk, liquefied gas (at abnormal temperature/pressure) ",
12918            Unit::BulkSolidGranularParticlesGrains => "Bulk, solid, granular particles (“grains”) ",
12919            Unit::BulkScrapMetal => "Bulk, scrap metal",
12920            Unit::BulkSolidFineParticlesPowders => "Bulk, solid, fine particles (“powders”)",
12921            Unit::IntermediateBulkContainer => "Intermediate bulk container",
12922            Unit::Wickerbottle => "Wickerbottle ",
12923            Unit::IntermediateBulkContainerSteel => "Intermediate bulk container, steel ",
12924            Unit::IntermediateBulkContainerAluminium => "Intermediate bulk container, aluminium ",
12925            Unit::IntermediateBulkContainerMetal => "Intermediate bulk container, metal ",
12926            Unit::IntermediateBulkContainerSteelPressurised10Kpa => "Intermediate bulk container, steel, pressurised > 10 kpa",
12927            Unit::IntermediateBulkContainerAluminiumPressurised10Kpa => "Intermediate bulk container, aluminium, pressurised > 10 kpa",
12928            Unit::IntermediateBulkContainerMetalPressure10Kpa => "Intermediate bulk container, metal, pressure 10 kpa ",
12929            Unit::IntermediateBulkContainerSteelLiquid => "Intermediate bulk container, steel, liquid ",
12930            Unit::IntermediateBulkContainerAluminiumLiquid => "Intermediate bulk container, aluminium, liquid ",
12931            Unit::IntermediateBulkContainerMetalLiquid => "Intermediate bulk container, metal, liquid ",
12932            Unit::IntermediateBulkContainerWovenPlasticWithoutCoatLiner => "Intermediate bulk container, woven plastic, without coat/liner ",
12933            Unit::IntermediateBulkContainerWovenPlasticCoated => "Intermediate bulk container, woven plastic, coated ",
12934            Unit::IntermediateBulkContainerWovenPlasticWithLiner => "Intermediate bulk container, woven plastic, with liner ",
12935            Unit::IntermediateBulkContainerWovenPlasticCoatedAndLiner => "Intermediate bulk container, woven plastic, coated and liner ",
12936            Unit::IntermediateBulkContainerPlasticFilm => "Intermediate bulk container, plastic film",
12937            Unit::IntermediateBulkContainerTextileWithOutCoatLiner => "Intermediate bulk container, textile with out coat/liner ",
12938            Unit::IntermediateBulkContainerNaturalWoodWithInnerLiner => "Intermediate bulk container, natural wood, with inner liner",
12939            Unit::IntermediateBulkContainerTextileCoated => "Intermediate bulk container, textile, coated ",
12940            Unit::IntermediateBulkContainerTextileWithLiner => "Intermediate bulk container, textile, with liner ",
12941            Unit::IntermediateBulkContainerTextileCoatedAndLiner => "Intermediate bulk container, textile, coated and liner ",
12942            Unit::IntermediateBulkContainerPlywoodWithInnerLiner => "Intermediate bulk container, plywood, with inner liner ",
12943            Unit::IntermediateBulkContainerReconstitutedWoodWithInnerLiner => "Intermediate bulk container, reconstituted wood, with inner liner",
12944            Unit::BagWovenPlasticWithoutInnerCoatLiner => "Bag, woven plastic, without inner coat/liner ",
12945            Unit::BagWovenPlasticSiftProof => "Bag, woven plastic, sift proof ",
12946            Unit::BagWovenPlasticWaterResistant => "Bag, woven plastic, water resistant",
12947            Unit::BagPlasticsFilm => "Bag, plastics film ",
12948            Unit::BagTextileWithoutInnerCoatLiner => "Bag, textile, without inner coat/liner ",
12949            Unit::BagTextileSiftProof => "Bag, textile, sift proof ",
12950            Unit::BagTextileWaterResistant => "Bag, textile, water resistant",
12951            Unit::BagPaperMultiWall => "Bag, paper, multi-wall ",
12952            Unit::BagPaperMultiWallWaterResistant => "Bag, paper, multi-wall, water resistant",
12953            Unit::CompositePackagingPlasticReceptacleInSteelDrum => "Composite packaging, plastic receptacle in steel drum",
12954            Unit::CompositePackagingPlasticReceptacleInSteelCrateBox => "Composite packaging, plastic receptacle in steel crate box",
12955            Unit::CompositePackagingPlasticReceptacleInAluminiumDrum => "Composite packaging, plastic receptacle in aluminium drum",
12956            Unit::CompositePackagingPlasticReceptacleInAluminiumCrate => "Composite packaging, plastic receptacle in aluminium crate",
12957            Unit::CompositePackagingPlasticReceptacleInWoodenBox => "Composite packaging, plastic receptacle in wooden box",
12958            Unit::CompositePackagingPlasticReceptacleInPlywoodDrum => "Composite packaging, plastic receptacle in plywood drum",
12959            Unit::CompositePackagingPlasticReceptacleInPlywoodBox => "Composite packaging, plastic receptacle in plywood box ",
12960            Unit::CompositePackagingPlasticReceptacleInFibreDrum => "Composite packaging, plastic receptacle in fibre drum",
12961            Unit::CompositePackagingPlasticReceptacleInFibreboardBox => "Composite packaging, plastic receptacle in fibreboard box",
12962            Unit::CompositePackagingPlasticReceptacleInPlasticDrum => "Composite packaging, plastic receptacle in plastic drum",
12963            Unit::CompositePackagingPlasticReceptacleInSolidPlasticBox => "Composite packaging, plastic receptacle in solid plastic box",
12964            Unit::CompositePackagingGlassReceptacleInSteelDrum => "Composite packaging, glass receptacle in steel drum",
12965            Unit::CompositePackagingGlassReceptacleInSteelCrateBox => "Composite packaging, glass receptacle in steel crate box",
12966            Unit::CompositePackagingGlassReceptacleInAluminiumDrum => "Composite packaging, glass receptacle in aluminium drum",
12967            Unit::CompositePackagingGlassReceptacleInAluminiumCrate => "Composite packaging, glass receptacle in aluminium crate",
12968            Unit::CompositePackagingGlassReceptacleInWoodenBox => "Composite packaging, glass receptacle in wooden box",
12969            Unit::CompositePackagingGlassReceptacleInPlywoodDrum => "Composite packaging, glass receptacle in plywood drum",
12970            Unit::CompositePackagingGlassReceptacleInWickerworkHamper => "Composite packaging, glass receptacle in wickerwork hamper",
12971            Unit::CompositePackagingGlassReceptacleInFibreDrum => "Composite packaging, glass receptacle in fibre drum",
12972            Unit::CompositePackagingGlassReceptacleInFibreboardBox => "Composite packaging, glass receptacle in fibreboard box ",
12973            Unit::CompositePackagingGlassReceptacleInExpandablePlasticPack => "Composite packaging, glass receptacle in expandable plastic pack",
12974            Unit::CompositePackagingGlassReceptacleInSolidPlasticPack => "Composite packaging, glass receptacle in solid plastic pack",
12975            Unit::IntermediateBulkContainerPaperMultiWall => "Intermediate bulk container, paper, multi-wall ",
12976            Unit::BagLarge => "Bag, large ",
12977            Unit::IntermediateBulkContainerPaperMultiWallWaterResistant => "Intermediate bulk container, paper, multi-wall, water resistant",
12978            Unit::IntermediateBulkContainerRigidPlasticWithStructuralEquipmentSolids => "Intermediate bulk container, rigid plastic, with structural equipment, solids",
12979            Unit::IntermediateBulkContainerRigidPlasticFreestandingSolids => "Intermediate bulk container, rigid plastic, freestanding, solids",
12980            Unit::IntermediateBulkContainerRigidPlasticWithStructuralEquipmentPressurised => "Intermediate bulk container, rigid plastic, with structural equipment, pressurised",
12981            Unit::IntermediateBulkContainerRigidPlasticFreestandingPressurised => "Intermediate bulk container, rigid plastic, freestanding, pressurised",
12982            Unit::IntermediateBulkContainerRigidPlasticWithStructuralEquipmentLiquids => "Intermediate bulk container, rigid plastic, with structural equipment, liquids ",
12983            Unit::IntermediateBulkContainerRigidPlasticFreestandingLiquids => "Intermediate bulk container, rigid plastic, freestanding, liquids",
12984            Unit::IntermediateBulkContainerCompositeRigidPlasticSolids => "Intermediate bulk container, composite, rigid plastic, solids",
12985            Unit::IntermediateBulkContainerCompositeFlexiblePlasticSolids => "Intermediate bulk container, composite, flexible plastic, solids",
12986            Unit::IntermediateBulkContainerCompositeRigidPlasticPressurised => "Intermediate bulk container, composite, rigid plastic, pressurised ",
12987            Unit::IntermediateBulkContainerCompositeFlexiblePlasticPressurised => "Intermediate bulk container, composite, flexible plastic, pressurised",
12988            Unit::IntermediateBulkContainerCompositeRigidPlasticLiquids => "Intermediate bulk container, composite, rigid plastic, liquids",
12989            Unit::IntermediateBulkContainerCompositeFlexiblePlasticLiquids => "Intermediate bulk container, composite, flexible plastic, liquids ",
12990            Unit::IntermediateBulkContainerComposite => "Intermediate bulk container, composite",
12991            Unit::IntermediateBulkContainerFibreboard => "Intermediate bulk container, fibreboard",
12992            Unit::IntermediateBulkContainerFlexible => "Intermediate bulk container, flexible",
12993            Unit::IntermediateBulkContainerMetalOtherThanSteel => "Intermediate bulk container, metal, other than steel",
12994            Unit::IntermediateBulkContainerNaturalWood => "Intermediate bulk container, natural wood",
12995            Unit::IntermediateBulkContainerPlywood => "Intermediate bulk container, plywood",
12996            Unit::IntermediateBulkContainerReconstitutedWood => "Intermediate bulk container, reconstituted wood",
12997            Unit::MutuallyDefined_Dup => "Mutually defined ",
12998        }
12999    }
13000}
13001
13002impl crate::FromCode for Unit {
13003    fn from_code(code: &str) -> Option<Self>
13004    where
13005        Self: Sized,
13006    {
13007        match code {
13008            "10" => Some(Unit::Group),
13009            "11" => Some(Unit::Outfit),
13010            "13" => Some(Unit::Ration),
13011            "14" => Some(Unit::Shot),
13012            "15" => Some(Unit::StickMilitary),
13013            "20" => Some(Unit::TwentyFootContainer),
13014            "21" => Some(Unit::FortyFootContainer),
13015            "22" => Some(Unit::DecilitrePerGram),
13016            "23" => Some(Unit::GramPerCubicCentimetre),
13017            "24" => Some(Unit::TheoreticalPound),
13018            "25" => Some(Unit::GramPerSquareCentimetre),
13019            "27" => Some(Unit::TheoreticalTon),
13020            "28" => Some(Unit::KilogramPerSquareMetre),
13021            "33" => Some(Unit::KilopascalSquareMetrePerGram),
13022            "34" => Some(Unit::KilopascalPerMillimetre),
13023            "35" => Some(Unit::MillilitrePerSquareCentimetreSecond),
13024            "37" => Some(Unit::OuncePerSquareFoot),
13025            "38" => Some(Unit::OuncePerSquareFootPer001inch),
13026            "40" => Some(Unit::MillilitrePerSecond),
13027            "41" => Some(Unit::MillilitrePerMinute),
13028            "56" => Some(Unit::Sitas),
13029            "57" => Some(Unit::Mesh),
13030            "58" => Some(Unit::NetKilogram),
13031            "59" => Some(Unit::PartPerMillion),
13032            "60" => Some(Unit::PercentWeight),
13033            "61" => Some(Unit::PartPerBillionUs),
13034            "74" => Some(Unit::Millipascal),
13035            "77" => Some(Unit::MilliInch),
13036            "80" => Some(Unit::PoundPerSquareInchAbsolute),
13037            "81" => Some(Unit::Henry),
13038            "85" => Some(Unit::FootPoundForce),
13039            "87" => Some(Unit::PoundPerCubicFoot),
13040            "89" => Some(Unit::Poise),
13041            "91" => Some(Unit::Stokes),
13042            "1I" => Some(Unit::FixedRate),
13043            "2A" => Some(Unit::RadianPerSecond),
13044            "2B" => Some(Unit::RadianPerSecondSquared),
13045            "2C" => Some(Unit::Roentgen),
13046            "2G" => Some(Unit::VoltAc),
13047            "2H" => Some(Unit::VoltDc),
13048            "2I" => Some(Unit::BritishThermalUnitInternationalTablePerHour),
13049            "2J" => Some(Unit::CubicCentimetrePerSecond),
13050            "2K" => Some(Unit::CubicFootPerHour),
13051            "2L" => Some(Unit::CubicFootPerMinute),
13052            "2M" => Some(Unit::CentimetrePerSecond),
13053            "2N" => Some(Unit::Decibel),
13054            "2P" => Some(Unit::Kilobyte),
13055            "2Q" => Some(Unit::Kilobecquerel),
13056            "2R" => Some(Unit::Kilocurie),
13057            "2U" => Some(Unit::Megagram),
13058            "2X" => Some(Unit::MetrePerMinute),
13059            "2Y" => Some(Unit::Milliroentgen),
13060            "2Z" => Some(Unit::Millivolt),
13061            "3B" => Some(Unit::Megajoule),
13062            "3C" => Some(Unit::Manmonth),
13063            "4C" => Some(Unit::Centistokes),
13064            "4G" => Some(Unit::Microlitre),
13065            "4H" => Some(Unit::MicrometreMicron),
13066            "4K" => Some(Unit::Milliampere),
13067            "4L" => Some(Unit::Megabyte),
13068            "4M" => Some(Unit::MilligramPerHour),
13069            "4N" => Some(Unit::Megabecquerel),
13070            "4O" => Some(Unit::Microfarad),
13071            "4P" => Some(Unit::NewtonPerMetre),
13072            "4Q" => Some(Unit::OunceInch),
13073            "4R" => Some(Unit::OunceFoot),
13074            "4T" => Some(Unit::Picofarad),
13075            "4U" => Some(Unit::PoundPerHour),
13076            "4W" => Some(Unit::TonUsPerHour),
13077            "4X" => Some(Unit::KilolitrePerHour),
13078            "5A" => Some(Unit::BarrelUsPerMinute),
13079            "5B" => Some(Unit::Batch),
13080            "5E" => Some(Unit::MmscfDay),
13081            "5J" => Some(Unit::HydraulicHorsePower),
13082            "A10" => Some(Unit::AmpereSquareMetrePerJouleSecond),
13083            "A11" => Some(Unit::Angstrom),
13084            "A12" => Some(Unit::AstronomicalUnit),
13085            "A13" => Some(Unit::Attojoule),
13086            "A14" => Some(Unit::Barn),
13087            "A15" => Some(Unit::BarnPerElectronvolt),
13088            "A16" => Some(Unit::BarnPerSteradianElectronvolt),
13089            "A17" => Some(Unit::BarnPerSteradian),
13090            "A18" => Some(Unit::BecquerelPerKilogram),
13091            "A19" => Some(Unit::BecquerelPerCubicMetre),
13092            "A2" => Some(Unit::AmperePerCentimetre),
13093            "A20" => {
13094                Some(Unit::BritishThermalUnitInternationalTablePerSecondSquareFootDegreeRankine)
13095            }
13096            "A21" => Some(Unit::BritishThermalUnitInternationalTablePerPoundDegreeRankine),
13097            "A22" => Some(Unit::BritishThermalUnitInternationalTablePerSecondFootDegreeRankine),
13098            "A23" => Some(Unit::BritishThermalUnitInternationalTablePerHourSquareFootDegreeRankine),
13099            "A24" => Some(Unit::CandelaPerSquareMetre),
13100            "A26" => Some(Unit::CoulombMetre),
13101            "A27" => Some(Unit::CoulombMetreSquaredPerVolt),
13102            "A28" => Some(Unit::CoulombPerCubicCentimetre),
13103            "A29" => Some(Unit::CoulombPerCubicMetre),
13104            "A3" => Some(Unit::AmperePerMillimetre),
13105            "A30" => Some(Unit::CoulombPerCubicMillimetre),
13106            "A31" => Some(Unit::CoulombPerKilogramSecond),
13107            "A32" => Some(Unit::CoulombPerMole),
13108            "A33" => Some(Unit::CoulombPerSquareCentimetre),
13109            "A34" => Some(Unit::CoulombPerSquareMetre),
13110            "A35" => Some(Unit::CoulombPerSquareMillimetre),
13111            "A36" => Some(Unit::CubicCentimetrePerMole),
13112            "A37" => Some(Unit::CubicDecimetrePerMole),
13113            "A38" => Some(Unit::CubicMetrePerCoulomb),
13114            "A39" => Some(Unit::CubicMetrePerKilogram),
13115            "A4" => Some(Unit::AmperePerSquareCentimetre),
13116            "A40" => Some(Unit::CubicMetrePerMole),
13117            "A41" => Some(Unit::AmperePerSquareMetre),
13118            "A42" => Some(Unit::CuriePerKilogram),
13119            "A43" => Some(Unit::DeadweightTonnage),
13120            "A44" => Some(Unit::Decalitre),
13121            "A45" => Some(Unit::Decametre),
13122            "A47" => Some(Unit::Decitex),
13123            "A48" => Some(Unit::DegreeRankine),
13124            "A49" => Some(Unit::Denier),
13125            "A5" => Some(Unit::AmpereSquareMetre),
13126            "A53" => Some(Unit::Electronvolt),
13127            "A54" => Some(Unit::ElectronvoltPerMetre),
13128            "A55" => Some(Unit::ElectronvoltSquareMetre),
13129            "A56" => Some(Unit::ElectronvoltSquareMetrePerKilogram),
13130            "A59" => Some(Unit::_8PartCloudCover),
13131            "A6" => Some(Unit::AmperePerSquareMetreKelvinSquared),
13132            "A68" => Some(Unit::Exajoule),
13133            "A69" => Some(Unit::FaradPerMetre),
13134            "A7" => Some(Unit::AmperePerSquareMillimetre),
13135            "A70" => Some(Unit::Femtojoule),
13136            "A71" => Some(Unit::Femtometre),
13137            "A73" => Some(Unit::FootPerSecondSquared),
13138            "A74" => Some(Unit::FootPoundForcePerSecond),
13139            "A75" => Some(Unit::FreightTon),
13140            "A76" => Some(Unit::Gal),
13141            "A8" => Some(Unit::AmpereSecond),
13142            "A84" => Some(Unit::GigacoulombPerCubicMetre),
13143            "A85" => Some(Unit::Gigaelectronvolt),
13144            "A86" => Some(Unit::Gigahertz),
13145            "A87" => Some(Unit::Gigaohm),
13146            "A88" => Some(Unit::GigaohmMetre),
13147            "A89" => Some(Unit::Gigapascal),
13148            "A9" => Some(Unit::Rate),
13149            "A90" => Some(Unit::Gigawatt),
13150            "A91" => Some(Unit::Gon),
13151            "A93" => Some(Unit::GramPerCubicMetre),
13152            "A94" => Some(Unit::GramPerMole),
13153            "A95" => Some(Unit::Gray),
13154            "A96" => Some(Unit::GrayPerSecond),
13155            "A97" => Some(Unit::Hectopascal),
13156            "A98" => Some(Unit::HenryPerMetre),
13157            "A99" => Some(Unit::Bit),
13158            "AA" => Some(Unit::Ball),
13159            "AB" => Some(Unit::BulkPack),
13160            "ACR" => Some(Unit::Acre),
13161            "ACT" => Some(Unit::Activity),
13162            "AD" => Some(Unit::Byte),
13163            "AE" => Some(Unit::AmperePerMetre),
13164            "AH" => Some(Unit::AdditionalMinute),
13165            "AI" => Some(Unit::AverageMinutePerCall),
13166            "AK" => Some(Unit::Fathom),
13167            "AL" => Some(Unit::AccessLine),
13168            "AMH" => Some(Unit::AmpereHour),
13169            "AMP" => Some(Unit::Ampere),
13170            "ANN" => Some(Unit::Year),
13171            "APZ" => Some(Unit::TroyOunceOrApothecaryOunce),
13172            "AQ" => Some(Unit::AntiHemophilicFactorAhfUnit),
13173            "AS" => Some(Unit::Assortment),
13174            "ASM" => Some(Unit::AlcoholicStrengthByMass),
13175            "ASU" => Some(Unit::AlcoholicStrengthByVolume),
13176            "ATM" => Some(Unit::StandardAtmosphere),
13177            "AWG" => Some(Unit::AmericanWireGauge),
13178            "AY" => Some(Unit::Assembly),
13179            "AZ" => Some(Unit::BritishThermalUnitInternationalTablePerPound),
13180            "B1" => Some(Unit::BarrelUsPerDay),
13181            "B10" => Some(Unit::BitPerSecond),
13182            "B11" => Some(Unit::JoulePerKilogramKelvin),
13183            "B12" => Some(Unit::JoulePerMetre),
13184            "B13" => Some(Unit::JoulePerSquareMetre),
13185            "B14" => Some(Unit::JoulePerMetreToFourthPower),
13186            "B15" => Some(Unit::JoulePerMole),
13187            "B16" => Some(Unit::JoulePerMoleKelvin),
13188            "B17" => Some(Unit::Credit),
13189            "B18" => Some(Unit::JouleSecond),
13190            "B19" => Some(Unit::Digit),
13191            "B20" => Some(Unit::JouleSquareMetrePerKilogram),
13192            "B21" => Some(Unit::KelvinPerWatt),
13193            "B22" => Some(Unit::Kiloampere),
13194            "B23" => Some(Unit::KiloamperePerSquareMetre),
13195            "B24" => Some(Unit::KiloamperePerMetre),
13196            "B25" => Some(Unit::KilobecquerelPerKilogram),
13197            "B26" => Some(Unit::Kilocoulomb),
13198            "B27" => Some(Unit::KilocoulombPerCubicMetre),
13199            "B28" => Some(Unit::KilocoulombPerSquareMetre),
13200            "B29" => Some(Unit::Kiloelectronvolt),
13201            "B3" => Some(Unit::BattingPound),
13202            "B30" => Some(Unit::Gibibit),
13203            "B31" => Some(Unit::KilogramMetrePerSecond),
13204            "B32" => Some(Unit::KilogramMetreSquared),
13205            "B33" => Some(Unit::KilogramMetreSquaredPerSecond),
13206            "B34" => Some(Unit::KilogramPerCubicDecimetre),
13207            "B35" => Some(Unit::KilogramPerLitre),
13208            "B4" => Some(Unit::BarrelImperial),
13209            "B41" => Some(Unit::KilojoulePerKelvin),
13210            "B42" => Some(Unit::KilojoulePerKilogram),
13211            "B43" => Some(Unit::KilojoulePerKilogramKelvin),
13212            "B44" => Some(Unit::KilojoulePerMole),
13213            "B45" => Some(Unit::Kilomole),
13214            "B46" => Some(Unit::KilomolePerCubicMetre),
13215            "B47" => Some(Unit::Kilonewton),
13216            "B48" => Some(Unit::KilonewtonMetre),
13217            "B49" => Some(Unit::Kiloohm),
13218            "B50" => Some(Unit::KiloohmMetre),
13219            "B52" => Some(Unit::Kilosecond),
13220            "B53" => Some(Unit::Kilosiemens),
13221            "B54" => Some(Unit::KilosiemensPerMetre),
13222            "B55" => Some(Unit::KilovoltPerMetre),
13223            "B56" => Some(Unit::KiloweberPerMetre),
13224            "B57" => Some(Unit::LightYear),
13225            "B58" => Some(Unit::LitrePerMole),
13226            "B59" => Some(Unit::LumenHour),
13227            "B60" => Some(Unit::LumenPerSquareMetre),
13228            "B61" => Some(Unit::LumenPerWatt),
13229            "B62" => Some(Unit::LumenSecond),
13230            "B63" => Some(Unit::LuxHour),
13231            "B64" => Some(Unit::LuxSecond),
13232            "B66" => Some(Unit::MegaamperePerSquareMetre),
13233            "B67" => Some(Unit::MegabecquerelPerKilogram),
13234            "B68" => Some(Unit::Gigabit),
13235            "B69" => Some(Unit::MegacoulombPerCubicMetre),
13236            "B7" => Some(Unit::Cycle),
13237            "B70" => Some(Unit::MegacoulombPerSquareMetre),
13238            "B71" => Some(Unit::Megaelectronvolt),
13239            "B72" => Some(Unit::MegagramPerCubicMetre),
13240            "B73" => Some(Unit::Meganewton),
13241            "B74" => Some(Unit::MeganewtonMetre),
13242            "B75" => Some(Unit::Megaohm),
13243            "B76" => Some(Unit::MegaohmMetre),
13244            "B77" => Some(Unit::MegasiemensPerMetre),
13245            "B78" => Some(Unit::Megavolt),
13246            "B79" => Some(Unit::MegavoltPerMetre),
13247            "B8" => Some(Unit::JoulePerCubicMetre),
13248            "B80" => Some(Unit::GigabitPerSecond),
13249            "B81" => Some(Unit::ReciprocalMetreSquaredReciprocalSecond),
13250            "B82" => Some(Unit::InchPerLinearFoot),
13251            "B83" => Some(Unit::MetreToFourthPower),
13252            "B84" => Some(Unit::Microampere),
13253            "B85" => Some(Unit::Microbar),
13254            "B86" => Some(Unit::Microcoulomb),
13255            "B87" => Some(Unit::MicrocoulombPerCubicMetre),
13256            "B88" => Some(Unit::MicrocoulombPerSquareMetre),
13257            "B89" => Some(Unit::MicrofaradPerMetre),
13258            "B90" => Some(Unit::Microhenry),
13259            "B91" => Some(Unit::MicrohenryPerMetre),
13260            "B92" => Some(Unit::Micronewton),
13261            "B93" => Some(Unit::MicronewtonMetre),
13262            "B94" => Some(Unit::Microohm),
13263            "B95" => Some(Unit::MicroohmMetre),
13264            "B96" => Some(Unit::Micropascal),
13265            "B97" => Some(Unit::Microradian),
13266            "B98" => Some(Unit::Microsecond),
13267            "B99" => Some(Unit::Microsiemens),
13268            "BAR" => Some(Unit::BarUnitPressure),
13269            "BB" => Some(Unit::BaseBox),
13270            "BFT" => Some(Unit::BoardFoot),
13271            "BHP" => Some(Unit::BrakeHorsePower),
13272            "BIL" => Some(Unit::BillionEur),
13273            "BLD" => Some(Unit::DryBarrelUs),
13274            "BLL" => Some(Unit::BarrelUs),
13275            "BP" => Some(Unit::HundredBoardFoot),
13276            "BPM" => Some(Unit::BeatsPerMinute),
13277            "BQL" => Some(Unit::Becquerel),
13278            "BTU" => Some(Unit::BritishThermalUnitInternationalTable),
13279            "BUA" => Some(Unit::BushelUs),
13280            "BUI" => Some(Unit::BushelUk),
13281            "C0" => Some(Unit::Call),
13282            "C10" => Some(Unit::Millifarad),
13283            "C11" => Some(Unit::Milligal),
13284            "C12" => Some(Unit::MilligramPerMetre),
13285            "C13" => Some(Unit::Milligray),
13286            "C14" => Some(Unit::Millihenry),
13287            "C15" => Some(Unit::Millijoule),
13288            "C16" => Some(Unit::MillimetrePerSecond),
13289            "C17" => Some(Unit::MillimetreSquaredPerSecond),
13290            "C18" => Some(Unit::Millimole),
13291            "C19" => Some(Unit::MolePerKilogram),
13292            "C20" => Some(Unit::Millinewton),
13293            "C21" => Some(Unit::Kibibit),
13294            "C22" => Some(Unit::MillinewtonPerMetre),
13295            "C23" => Some(Unit::MilliohmMetre),
13296            "C24" => Some(Unit::MillipascalSecond),
13297            "C25" => Some(Unit::Milliradian),
13298            "C26" => Some(Unit::Millisecond),
13299            "C27" => Some(Unit::Millisiemens),
13300            "C28" => Some(Unit::Millisievert),
13301            "C29" => Some(Unit::Millitesla),
13302            "C3" => Some(Unit::MicrovoltPerMetre),
13303            "C30" => Some(Unit::MillivoltPerMetre),
13304            "C31" => Some(Unit::Milliwatt),
13305            "C32" => Some(Unit::MilliwattPerSquareMetre),
13306            "C33" => Some(Unit::Milliweber),
13307            "C34" => Some(Unit::Mole),
13308            "C35" => Some(Unit::MolePerCubicDecimetre),
13309            "C36" => Some(Unit::MolePerCubicMetre),
13310            "C37" => Some(Unit::Kilobit),
13311            "C38" => Some(Unit::MolePerLitre),
13312            "C39" => Some(Unit::Nanoampere),
13313            "C40" => Some(Unit::Nanocoulomb),
13314            "C41" => Some(Unit::Nanofarad),
13315            "C42" => Some(Unit::NanofaradPerMetre),
13316            "C43" => Some(Unit::Nanohenry),
13317            "C44" => Some(Unit::NanohenryPerMetre),
13318            "C45" => Some(Unit::Nanometre),
13319            "C46" => Some(Unit::NanoohmMetre),
13320            "C47" => Some(Unit::Nanosecond),
13321            "C48" => Some(Unit::Nanotesla),
13322            "C49" => Some(Unit::Nanowatt),
13323            "C50" => Some(Unit::Neper),
13324            "C51" => Some(Unit::NeperPerSecond),
13325            "C52" => Some(Unit::Picometre),
13326            "C53" => Some(Unit::NewtonMetreSecond),
13327            "C54" => Some(Unit::NewtonMetreSquaredPerKilogramSquared),
13328            "C55" => Some(Unit::NewtonPerSquareMetre),
13329            "C56" => Some(Unit::NewtonPerSquareMillimetre),
13330            "C57" => Some(Unit::NewtonSecond),
13331            "C58" => Some(Unit::NewtonSecondPerMetre),
13332            "C59" => Some(Unit::Octave),
13333            "C60" => Some(Unit::OhmCentimetre),
13334            "C61" => Some(Unit::OhmMetre),
13335            "C62" => Some(Unit::One),
13336            "C63" => Some(Unit::Parsec),
13337            "C64" => Some(Unit::PascalPerKelvin),
13338            "C65" => Some(Unit::PascalSecond),
13339            "C66" => Some(Unit::PascalSecondPerCubicMetre),
13340            "C67" => Some(Unit::PascalSecondPerMetre),
13341            "C68" => Some(Unit::Petajoule),
13342            "C69" => Some(Unit::Phon),
13343            "C7" => Some(Unit::Centipoise),
13344            "C70" => Some(Unit::Picoampere),
13345            "C71" => Some(Unit::Picocoulomb),
13346            "C72" => Some(Unit::PicofaradPerMetre),
13347            "C73" => Some(Unit::Picohenry),
13348            "C74" => Some(Unit::KilobitPerSecond),
13349            "C75" => Some(Unit::Picowatt),
13350            "C76" => Some(Unit::PicowattPerSquareMetre),
13351            "C78" => Some(Unit::PoundForce),
13352            "C79" => Some(Unit::KilovoltAmpereHour),
13353            "C8" => Some(Unit::MillicoulombPerKilogram),
13354            "C80" => Some(Unit::Rad),
13355            "C81" => Some(Unit::Radian),
13356            "C82" => Some(Unit::RadianSquareMetrePerMole),
13357            "C83" => Some(Unit::RadianSquareMetrePerKilogram),
13358            "C84" => Some(Unit::RadianPerMetre),
13359            "C85" => Some(Unit::ReciprocalAngstrom),
13360            "C86" => Some(Unit::ReciprocalCubicMetre),
13361            "C87" => Some(Unit::ReciprocalCubicMetrePerSecond),
13362            "C88" => Some(Unit::ReciprocalElectronVoltPerCubicMetre),
13363            "C89" => Some(Unit::ReciprocalHenry),
13364            "C9" => Some(Unit::CoilGroup),
13365            "C90" => Some(Unit::ReciprocalJoulePerCubicMetre),
13366            "C91" => Some(Unit::ReciprocalKelvinOrKelvinToPowerMinusOne),
13367            "C92" => Some(Unit::ReciprocalMetre),
13368            "C93" => Some(Unit::ReciprocalSquareMetre),
13369            "C94" => Some(Unit::ReciprocalMinute),
13370            "C95" => Some(Unit::ReciprocalMole),
13371            "C96" => Some(Unit::ReciprocalPascalOrPascalToPowerMinusOne),
13372            "C97" => Some(Unit::ReciprocalSecond),
13373            "C99" => Some(Unit::ReciprocalSecondPerMetreSquared),
13374            "CCT" => Some(Unit::CarryingCapacityInMetricTon),
13375            "CDL" => Some(Unit::Candela),
13376            "CEL" => Some(Unit::DegreeCelsius),
13377            "CEN" => Some(Unit::Hundred),
13378            "CG" => Some(Unit::Card),
13379            "CGM" => Some(Unit::Centigram),
13380            "CKG" => Some(Unit::CoulombPerKilogram),
13381            "CLF" => Some(Unit::HundredLeave),
13382            "CLT" => Some(Unit::Centilitre),
13383            "CMK" => Some(Unit::SquareCentimetre),
13384            "CMQ" => Some(Unit::CubicCentimetre),
13385            "CMT" => Some(Unit::Centimetre),
13386            "CNP" => Some(Unit::HundredPack),
13387            "CNT" => Some(Unit::CentalUk),
13388            "COU" => Some(Unit::Coulomb),
13389            "CTG" => Some(Unit::ContentGram),
13390            "CTM" => Some(Unit::MetricCarat),
13391            "CTN" => Some(Unit::ContentTonMetric),
13392            "CUR" => Some(Unit::Curie),
13393            "CWA" => Some(Unit::HundredPoundCwtHundredWeightUs),
13394            "CWI" => Some(Unit::HundredWeightUk),
13395            "D03" => Some(Unit::KilowattHourPerHour),
13396            "D04" => Some(Unit::LotUnitWeight),
13397            "D1" => Some(Unit::ReciprocalSecondPerSteradian),
13398            "D10" => Some(Unit::SiemensPerMetre),
13399            "D11" => Some(Unit::Mebibit),
13400            "D12" => Some(Unit::SiemensSquareMetrePerMole),
13401            "D13" => Some(Unit::Sievert),
13402            "D15" => Some(Unit::Sone),
13403            "D16" => Some(Unit::SquareCentimetrePerErg),
13404            "D17" => Some(Unit::SquareCentimetrePerSteradianErg),
13405            "D18" => Some(Unit::MetreKelvin),
13406            "D19" => Some(Unit::SquareMetreKelvinPerWatt),
13407            "D2" => Some(Unit::ReciprocalSecondPerSteradianMetreSquared),
13408            "D20" => Some(Unit::SquareMetrePerJoule),
13409            "D21" => Some(Unit::SquareMetrePerKilogram),
13410            "D22" => Some(Unit::SquareMetrePerMole),
13411            "D23" => Some(Unit::PenGramProtein),
13412            "D24" => Some(Unit::SquareMetrePerSteradian),
13413            "D25" => Some(Unit::SquareMetrePerSteradianJoule),
13414            "D26" => Some(Unit::SquareMetrePerVoltSecond),
13415            "D27" => Some(Unit::Steradian),
13416            "D29" => Some(Unit::Terahertz),
13417            "D30" => Some(Unit::Terajoule),
13418            "D31" => Some(Unit::Terawatt),
13419            "D32" => Some(Unit::TerawattHour),
13420            "D33" => Some(Unit::Tesla),
13421            "D34" => Some(Unit::Tex),
13422            "D36" => Some(Unit::Megabit),
13423            "D41" => Some(Unit::TonnePerCubicMetre),
13424            "D42" => Some(Unit::TropicalYear),
13425            "D43" => Some(Unit::UnifiedAtomicMassUnit),
13426            "D44" => Some(Unit::Var),
13427            "D45" => Some(Unit::VoltSquaredPerKelvinSquared),
13428            "D46" => Some(Unit::VoltAmpere),
13429            "D47" => Some(Unit::VoltPerCentimetre),
13430            "D48" => Some(Unit::VoltPerKelvin),
13431            "D49" => Some(Unit::MillivoltPerKelvin),
13432            "D5" => Some(Unit::KilogramPerSquareCentimetre),
13433            "D50" => Some(Unit::VoltPerMetre),
13434            "D51" => Some(Unit::VoltPerMillimetre),
13435            "D52" => Some(Unit::WattPerKelvin),
13436            "D53" => Some(Unit::WattPerMetreKelvin),
13437            "D54" => Some(Unit::WattPerSquareMetre),
13438            "D55" => Some(Unit::WattPerSquareMetreKelvin),
13439            "D56" => Some(Unit::WattPerSquareMetreKelvinToFourthPower),
13440            "D57" => Some(Unit::WattPerSteradian),
13441            "D58" => Some(Unit::WattPerSteradianSquareMetre),
13442            "D59" => Some(Unit::WeberPerMetre),
13443            "D6" => Some(Unit::RoentgenPerSecond),
13444            "D60" => Some(Unit::WeberPerMillimetre),
13445            "D61" => Some(Unit::MinuteUnitAngle),
13446            "D62" => Some(Unit::SecondUnitAngle),
13447            "D63" => Some(Unit::Book),
13448            "D65" => Some(Unit::Round),
13449            "D68" => Some(Unit::NumberWords),
13450            "D69" => Some(Unit::InchToFourthPower),
13451            "D73" => Some(Unit::JouleSquareMetre),
13452            "D74" => Some(Unit::KilogramPerMole),
13453            "D77" => Some(Unit::Megacoulomb),
13454            "D78" => Some(Unit::MegajoulePerSecond),
13455            "D80" => Some(Unit::Microwatt),
13456            "D81" => Some(Unit::Microtesla),
13457            "D82" => Some(Unit::Microvolt),
13458            "D83" => Some(Unit::MillinewtonMetre),
13459            "D85" => Some(Unit::MicrowattPerSquareMetre),
13460            "D86" => Some(Unit::Millicoulomb),
13461            "D87" => Some(Unit::MillimolePerKilogram),
13462            "D88" => Some(Unit::MillicoulombPerCubicMetre),
13463            "D89" => Some(Unit::MillicoulombPerSquareMetre),
13464            "D91" => Some(Unit::Rem),
13465            "D93" => Some(Unit::SecondPerCubicMetre),
13466            "D94" => Some(Unit::SecondPerCubicMetreRadian),
13467            "D95" => Some(Unit::JoulePerGram),
13468            "DAA" => Some(Unit::Decare),
13469            "DAD" => Some(Unit::TenDay),
13470            "DAY" => Some(Unit::Day),
13471            "DB" => Some(Unit::DryPound),
13472            "DBM" => Some(Unit::DecibelMilliwatts),
13473            "DBW" => Some(Unit::DecibelWatt),
13474            "DD" => Some(Unit::DegreeUnitAngle),
13475            "DEC" => Some(Unit::Decade),
13476            "DG" => Some(Unit::Decigram),
13477            "DJ" => Some(Unit::Decagram),
13478            "DLT" => Some(Unit::Decilitre),
13479            "DMA" => Some(Unit::CubicDecametre),
13480            "DMK" => Some(Unit::SquareDecimetre),
13481            "DMO" => Some(Unit::StandardKilolitre),
13482            "DMQ" => Some(Unit::CubicDecimetre),
13483            "DMT" => Some(Unit::Decimetre),
13484            "DN" => Some(Unit::DecinewtonMetre),
13485            "DPC" => Some(Unit::DozenPiece),
13486            "DPR" => Some(Unit::DozenPair),
13487            "DPT" => Some(Unit::DisplacementTonnage),
13488            "DRA" => Some(Unit::DramUs),
13489            "DRI" => Some(Unit::DramUk),
13490            "DRL" => Some(Unit::DozenRoll),
13491            "DT" => Some(Unit::DryTon),
13492            "DTN" => Some(Unit::Decitonne),
13493            "DWT" => Some(Unit::Pennyweight),
13494            "DZN" => Some(Unit::Dozen),
13495            "DZP" => Some(Unit::DozenPack),
13496            "E01" => Some(Unit::NewtonPerSquareCentimetre),
13497            "E07" => Some(Unit::MegawattHourPerHour),
13498            "E08" => Some(Unit::MegawattPerHertz),
13499            "E09" => Some(Unit::MilliampereHour),
13500            "E10" => Some(Unit::DegreeDay),
13501            "E12" => Some(Unit::Mille),
13502            "E14" => Some(Unit::KilocalorieInternationalTable),
13503            "E15" => Some(Unit::KilocalorieThermochemicalPerHour),
13504            "E16" => Some(Unit::MillionBtuItPerHour),
13505            "E17" => Some(Unit::CubicFootPerSecond),
13506            "E18" => Some(Unit::TonnePerHour),
13507            "E19" => Some(Unit::Ping),
13508            "E20" => Some(Unit::MegabitPerSecond),
13509            "E21" => Some(Unit::Shares),
13510            "E22" => Some(Unit::Teu),
13511            "E23" => Some(Unit::Tyre),
13512            "E25" => Some(Unit::ActiveUnit),
13513            "E27" => Some(Unit::Dose),
13514            "E28" => Some(Unit::AirDryTon),
13515            "E30" => Some(Unit::Strand),
13516            "E31" => Some(Unit::SquareMetrePerLitre),
13517            "E32" => Some(Unit::LitrePerHour),
13518            "E33" => Some(Unit::FootPerThousand),
13519            "E34" => Some(Unit::Gigabyte),
13520            "E35" => Some(Unit::Terabyte),
13521            "E36" => Some(Unit::Petabyte),
13522            "E37" => Some(Unit::Pixel),
13523            "E38" => Some(Unit::Megapixel),
13524            "E39" => Some(Unit::DotsPerInch),
13525            "E4" => Some(Unit::GrossKilogram),
13526            "E40" => Some(Unit::PartPerHundredThousand),
13527            "E41" => Some(Unit::KilogramForcePerSquareMillimetre),
13528            "E42" => Some(Unit::KilogramForcePerSquareCentimetre),
13529            "E43" => Some(Unit::JoulePerSquareCentimetre),
13530            "E44" => Some(Unit::KilogramForceMetrePerSquareCentimetre),
13531            "E45" => Some(Unit::Milliohm),
13532            "E46" => Some(Unit::KilowattHourPerCubicMetre),
13533            "E47" => Some(Unit::KilowattHourPerKelvin),
13534            "E48" => Some(Unit::ServiceUnit),
13535            "E49" => Some(Unit::WorkingDay),
13536            "E50" => Some(Unit::AccountingUnit),
13537            "E51" => Some(Unit::Job),
13538            "E52" => Some(Unit::RunFoot),
13539            "E53" => Some(Unit::Test),
13540            "E54" => Some(Unit::Trip),
13541            "E55" => Some(Unit::Use),
13542            "E56" => Some(Unit::Well),
13543            "E57" => Some(Unit::Zone),
13544            "E58" => Some(Unit::ExabitPerSecond),
13545            "E59" => Some(Unit::Exbibyte),
13546            "E60" => Some(Unit::Pebibyte),
13547            "E61" => Some(Unit::Tebibyte),
13548            "E62" => Some(Unit::Gibibyte),
13549            "E63" => Some(Unit::Mebibyte),
13550            "E64" => Some(Unit::Kibibyte),
13551            "E65" => Some(Unit::ExbibitPerMetre),
13552            "E66" => Some(Unit::ExbibitPerSquareMetre),
13553            "E67" => Some(Unit::ExbibitPerCubicMetre),
13554            "E68" => Some(Unit::GigabytePerSecond),
13555            "E69" => Some(Unit::GibibitPerMetre),
13556            "E70" => Some(Unit::GibibitPerSquareMetre),
13557            "E71" => Some(Unit::GibibitPerCubicMetre),
13558            "E72" => Some(Unit::KibibitPerMetre),
13559            "E73" => Some(Unit::KibibitPerSquareMetre),
13560            "E74" => Some(Unit::KibibitPerCubicMetre),
13561            "E75" => Some(Unit::MebibitPerMetre),
13562            "E76" => Some(Unit::MebibitPerSquareMetre),
13563            "E77" => Some(Unit::MebibitPerCubicMetre),
13564            "E78" => Some(Unit::Petabit),
13565            "E79" => Some(Unit::PetabitPerSecond),
13566            "E80" => Some(Unit::PebibitPerMetre),
13567            "E81" => Some(Unit::PebibitPerSquareMetre),
13568            "E82" => Some(Unit::PebibitPerCubicMetre),
13569            "E83" => Some(Unit::Terabit),
13570            "E84" => Some(Unit::TerabitPerSecond),
13571            "E85" => Some(Unit::TebibitPerMetre),
13572            "E86" => Some(Unit::TebibitPerCubicMetre),
13573            "E87" => Some(Unit::TebibitPerSquareMetre),
13574            "E88" => Some(Unit::BitPerMetre),
13575            "E89" => Some(Unit::BitPerSquareMetre),
13576            "E90" => Some(Unit::ReciprocalCentimetre),
13577            "E91" => Some(Unit::ReciprocalDay),
13578            "E92" => Some(Unit::CubicDecimetrePerHour),
13579            "E93" => Some(Unit::KilogramPerHour),
13580            "E94" => Some(Unit::KilomolePerSecond),
13581            "E95" => Some(Unit::MolePerSecond),
13582            "E96" => Some(Unit::DegreePerSecond),
13583            "E97" => Some(Unit::MillimetrePerDegreeCelciusMetre),
13584            "E98" => Some(Unit::DegreeCelsiusPerKelvin),
13585            "E99" => Some(Unit::HectopascalPerBar),
13586            "EA" => Some(Unit::Each),
13587            "EB" => Some(Unit::ElectronicMailBox),
13588            "EQ" => Some(Unit::EquivalentGallon),
13589            "F01" => Some(Unit::BitPerCubicMetre),
13590            "F02" => Some(Unit::KelvinPerKelvin),
13591            "F03" => Some(Unit::KilopascalPerBar),
13592            "F04" => Some(Unit::MillibarPerBar),
13593            "F05" => Some(Unit::MegapascalPerBar),
13594            "F06" => Some(Unit::PoisePerBar),
13595            "F07" => Some(Unit::PascalPerBar),
13596            "F08" => Some(Unit::MilliamperePerInch),
13597            "F10" => Some(Unit::KelvinPerHour),
13598            "F11" => Some(Unit::KelvinPerMinute),
13599            "F12" => Some(Unit::KelvinPerSecond),
13600            "F13" => Some(Unit::Slug),
13601            "F14" => Some(Unit::GramPerKelvin),
13602            "F15" => Some(Unit::KilogramPerKelvin),
13603            "F16" => Some(Unit::MilligramPerKelvin),
13604            "F17" => Some(Unit::PoundForcePerFoot),
13605            "F18" => Some(Unit::KilogramSquareCentimetre),
13606            "F19" => Some(Unit::KilogramSquareMillimetre),
13607            "F20" => Some(Unit::PoundInchSquared),
13608            "F21" => Some(Unit::PoundForceInch),
13609            "F22" => Some(Unit::PoundForceFootPerAmpere),
13610            "F23" => Some(Unit::GramPerCubicDecimetre),
13611            "F24" => Some(Unit::KilogramPerKilomol),
13612            "F25" => Some(Unit::GramPerHertz),
13613            "F26" => Some(Unit::GramPerDay),
13614            "F27" => Some(Unit::GramPerHour),
13615            "F28" => Some(Unit::GramPerMinute),
13616            "F29" => Some(Unit::GramPerSecond),
13617            "F30" => Some(Unit::KilogramPerDay),
13618            "F31" => Some(Unit::KilogramPerMinute),
13619            "F32" => Some(Unit::MilligramPerDay),
13620            "F33" => Some(Unit::MilligramPerMinute),
13621            "F34" => Some(Unit::MilligramPerSecond),
13622            "F35" => Some(Unit::GramPerDayKelvin),
13623            "F36" => Some(Unit::GramPerHourKelvin),
13624            "F37" => Some(Unit::GramPerMinuteKelvin),
13625            "F38" => Some(Unit::GramPerSecondKelvin),
13626            "F39" => Some(Unit::KilogramPerDayKelvin),
13627            "F40" => Some(Unit::KilogramPerHourKelvin),
13628            "F41" => Some(Unit::KilogramPerMinuteKelvin),
13629            "F42" => Some(Unit::KilogramPerSecondKelvin),
13630            "F43" => Some(Unit::MilligramPerDayKelvin),
13631            "F44" => Some(Unit::MilligramPerHourKelvin),
13632            "F45" => Some(Unit::MilligramPerMinuteKelvin),
13633            "F46" => Some(Unit::MilligramPerSecondKelvin),
13634            "F47" => Some(Unit::NewtonPerMillimetre),
13635            "F48" => Some(Unit::PoundForcePerInch),
13636            "F49" => Some(Unit::RodUnitDistance),
13637            "F50" => Some(Unit::MicrometrePerKelvin),
13638            "F51" => Some(Unit::CentimetrePerKelvin),
13639            "F52" => Some(Unit::MetrePerKelvin),
13640            "F53" => Some(Unit::MillimetrePerKelvin),
13641            "F54" => Some(Unit::MilliohmPerMetre),
13642            "F55" => Some(Unit::OhmPerMileStatuteMile),
13643            "F56" => Some(Unit::OhmPerKilometre),
13644            "F57" => Some(Unit::MilliamperePerPoundForcePerSquareInch),
13645            "F58" => Some(Unit::ReciprocalBar),
13646            "F59" => Some(Unit::MilliamperePerBar),
13647            "F60" => Some(Unit::DegreeCelsiusPerBar),
13648            "F61" => Some(Unit::KelvinPerBar),
13649            "F62" => Some(Unit::GramPerDayBar),
13650            "F63" => Some(Unit::GramPerHourBar),
13651            "F64" => Some(Unit::GramPerMinuteBar),
13652            "F65" => Some(Unit::GramPerSecondBar),
13653            "F66" => Some(Unit::KilogramPerDayBar),
13654            "F67" => Some(Unit::KilogramPerHourBar),
13655            "F68" => Some(Unit::KilogramPerMinuteBar),
13656            "F69" => Some(Unit::KilogramPerSecondBar),
13657            "F70" => Some(Unit::MilligramPerDayBar),
13658            "F71" => Some(Unit::MilligramPerHourBar),
13659            "F72" => Some(Unit::MilligramPerMinuteBar),
13660            "F73" => Some(Unit::MilligramPerSecondBar),
13661            "F74" => Some(Unit::GramPerBar),
13662            "F75" => Some(Unit::MilligramPerBar),
13663            "F76" => Some(Unit::MilliamperePerMillimetre),
13664            "F77" => Some(Unit::PascalSecondPerKelvin),
13665            "F78" => Some(Unit::InchWater),
13666            "F79" => Some(Unit::InchMercury),
13667            "F80" => Some(Unit::WaterHorsePower),
13668            "F81" => Some(Unit::BarPerKelvin),
13669            "F82" => Some(Unit::HectopascalPerKelvin),
13670            "F83" => Some(Unit::KilopascalPerKelvin),
13671            "F84" => Some(Unit::MillibarPerKelvin),
13672            "F85" => Some(Unit::MegapascalPerKelvin),
13673            "F86" => Some(Unit::PoisePerKelvin),
13674            "F87" => Some(Unit::VoltPerLitreMinute),
13675            "F88" => Some(Unit::NewtonCentimetre),
13676            "F89" => Some(Unit::NewtonMetrePerDegree),
13677            "F90" => Some(Unit::NewtonMetrePerAmpere),
13678            "F91" => Some(Unit::BarLitrePerSecond),
13679            "F92" => Some(Unit::BarCubicMetrePerSecond),
13680            "F93" => Some(Unit::HectopascalLitrePerSecond),
13681            "F94" => Some(Unit::HectopascalCubicMetrePerSecond),
13682            "F95" => Some(Unit::MillibarLitrePerSecond),
13683            "F96" => Some(Unit::MillibarCubicMetrePerSecond),
13684            "F97" => Some(Unit::MegapascalLitrePerSecond),
13685            "F98" => Some(Unit::MegapascalCubicMetrePerSecond),
13686            "F99" => Some(Unit::PascalLitrePerSecond),
13687            "FAH" => Some(Unit::DegreeFahrenheit),
13688            "FAR" => Some(Unit::Farad),
13689            "FBM" => Some(Unit::FibreMetre),
13690            "FC" => Some(Unit::ThousandCubicFoot),
13691            "FF" => Some(Unit::HundredCubicMetre),
13692            "FH" => Some(Unit::Micromole),
13693            "FIT" => Some(Unit::FailuresInTime),
13694            "FL" => Some(Unit::FlakeTon),
13695            "FNU" => Some(Unit::FormazinNephelometricUnit),
13696            "FOT" => Some(Unit::Foot),
13697            "FP" => Some(Unit::PoundPerSquareFoot),
13698            "FR" => Some(Unit::FootPerMinute),
13699            "FS" => Some(Unit::FootPerSecond),
13700            "FTK" => Some(Unit::SquareFoot),
13701            "FTQ" => Some(Unit::CubicFoot),
13702            "G01" => Some(Unit::PascalCubicMetrePerSecond),
13703            "G04" => Some(Unit::CentimetrePerBar),
13704            "G05" => Some(Unit::MetrePerBar),
13705            "G06" => Some(Unit::MillimetrePerBar),
13706            "G08" => Some(Unit::SquareInchPerSecond),
13707            "G09" => Some(Unit::SquareMetrePerSecondKelvin),
13708            "G10" => Some(Unit::StokesPerKelvin),
13709            "G11" => Some(Unit::GramPerCubicCentimetreBar),
13710            "G12" => Some(Unit::GramPerCubicDecimetreBar),
13711            "G13" => Some(Unit::GramPerLitreBar),
13712            "G14" => Some(Unit::GramPerCubicMetreBar),
13713            "G15" => Some(Unit::GramPerMillilitreBar),
13714            "G16" => Some(Unit::KilogramPerCubicCentimetreBar),
13715            "G17" => Some(Unit::KilogramPerLitreBar),
13716            "G18" => Some(Unit::KilogramPerCubicMetreBar),
13717            "G19" => Some(Unit::NewtonMetrePerKilogram),
13718            "G2" => Some(Unit::UsGallonPerMinute),
13719            "G20" => Some(Unit::PoundForceFootPerPound),
13720            "G21" => Some(Unit::CupUnitVolume),
13721            "G23" => Some(Unit::Peck),
13722            "G24" => Some(Unit::TablespoonUs),
13723            "G25" => Some(Unit::TeaspoonUs),
13724            "G26" => Some(Unit::Stere),
13725            "G27" => Some(Unit::CubicCentimetrePerKelvin),
13726            "G28" => Some(Unit::LitrePerKelvin),
13727            "G29" => Some(Unit::CubicMetrePerKelvin),
13728            "G3" => Some(Unit::ImperialGallonPerMinute),
13729            "G30" => Some(Unit::MillilitrePerKelvin),
13730            "G31" => Some(Unit::KilogramPerCubicCentimetre),
13731            "G32" => Some(Unit::OunceAvoirdupoisPerCubicYard),
13732            "G33" => Some(Unit::GramPerCubicCentimetreKelvin),
13733            "G34" => Some(Unit::GramPerCubicDecimetreKelvin),
13734            "G35" => Some(Unit::GramPerLitreKelvin),
13735            "G36" => Some(Unit::GramPerCubicMetreKelvin),
13736            "G37" => Some(Unit::GramPerMillilitreKelvin),
13737            "G38" => Some(Unit::KilogramPerCubicCentimetreKelvin),
13738            "G39" => Some(Unit::KilogramPerLitreKelvin),
13739            "G40" => Some(Unit::KilogramPerCubicMetreKelvin),
13740            "G41" => Some(Unit::SquareMetrePerSecondBar),
13741            "G42" => Some(Unit::MicrosiemensPerCentimetre),
13742            "G43" => Some(Unit::MicrosiemensPerMetre),
13743            "G44" => Some(Unit::NanosiemensPerCentimetre),
13744            "G45" => Some(Unit::NanosiemensPerMetre),
13745            "G46" => Some(Unit::StokesPerBar),
13746            "G47" => Some(Unit::CubicCentimetrePerDay),
13747            "G48" => Some(Unit::CubicCentimetrePerHour),
13748            "G49" => Some(Unit::CubicCentimetrePerMinute),
13749            "G50" => Some(Unit::GallonUsPerHour),
13750            "G51" => Some(Unit::LitrePerSecond),
13751            "G52" => Some(Unit::CubicMetrePerDay),
13752            "G53" => Some(Unit::CubicMetrePerMinute),
13753            "G54" => Some(Unit::MillilitrePerDay),
13754            "G55" => Some(Unit::MillilitrePerHour),
13755            "G56" => Some(Unit::CubicInchPerHour),
13756            "G57" => Some(Unit::CubicInchPerMinute),
13757            "G58" => Some(Unit::CubicInchPerSecond),
13758            "G59" => Some(Unit::MilliamperePerLitreMinute),
13759            "G60" => Some(Unit::VoltPerBar),
13760            "G61" => Some(Unit::CubicCentimetrePerDayKelvin),
13761            "G62" => Some(Unit::CubicCentimetrePerHourKelvin),
13762            "G63" => Some(Unit::CubicCentimetrePerMinuteKelvin),
13763            "G64" => Some(Unit::CubicCentimetrePerSecondKelvin),
13764            "G65" => Some(Unit::LitrePerDayKelvin),
13765            "G66" => Some(Unit::LitrePerHourKelvin),
13766            "G67" => Some(Unit::LitrePerMinuteKelvin),
13767            "G68" => Some(Unit::LitrePerSecondKelvin),
13768            "G69" => Some(Unit::CubicMetrePerDayKelvin),
13769            "G70" => Some(Unit::CubicMetrePerHourKelvin),
13770            "G71" => Some(Unit::CubicMetrePerMinuteKelvin),
13771            "G72" => Some(Unit::CubicMetrePerSecondKelvin),
13772            "G73" => Some(Unit::MillilitrePerDayKelvin),
13773            "G74" => Some(Unit::MillilitrePerHourKelvin),
13774            "G75" => Some(Unit::MillilitrePerMinuteKelvin),
13775            "G76" => Some(Unit::MillilitrePerSecondKelvin),
13776            "G77" => Some(Unit::MillimetreToFourthPower),
13777            "G78" => Some(Unit::CubicCentimetrePerDayBar),
13778            "G79" => Some(Unit::CubicCentimetrePerHourBar),
13779            "G80" => Some(Unit::CubicCentimetrePerMinuteBar),
13780            "G81" => Some(Unit::CubicCentimetrePerSecondBar),
13781            "G82" => Some(Unit::LitrePerDayBar),
13782            "G83" => Some(Unit::LitrePerHourBar),
13783            "G84" => Some(Unit::LitrePerMinuteBar),
13784            "G85" => Some(Unit::LitrePerSecondBar),
13785            "G86" => Some(Unit::CubicMetrePerDayBar),
13786            "G87" => Some(Unit::CubicMetrePerHourBar),
13787            "G88" => Some(Unit::CubicMetrePerMinuteBar),
13788            "G89" => Some(Unit::CubicMetrePerSecondBar),
13789            "G90" => Some(Unit::MillilitrePerDayBar),
13790            "G91" => Some(Unit::MillilitrePerHourBar),
13791            "G92" => Some(Unit::MillilitrePerMinuteBar),
13792            "G93" => Some(Unit::MillilitrePerSecondBar),
13793            "G94" => Some(Unit::CubicCentimetrePerBar),
13794            "G95" => Some(Unit::LitrePerBar),
13795            "G96" => Some(Unit::CubicMetrePerBar),
13796            "G97" => Some(Unit::MillilitrePerBar),
13797            "G98" => Some(Unit::MicrohenryPerKiloohm),
13798            "G99" => Some(Unit::MicrohenryPerOhm),
13799            "GB" => Some(Unit::GallonUsPerDay),
13800            "GBQ" => Some(Unit::Gigabecquerel),
13801            "GDW" => Some(Unit::GramDryWeight),
13802            "GE" => Some(Unit::PoundPerGallonUs),
13803            "GF" => Some(Unit::GramPerMetreGramPer100Centimetres),
13804            "GFI" => Some(Unit::GramFissileIsotope),
13805            "GGR" => Some(Unit::GreatGross),
13806            "GIA" => Some(Unit::GillUs),
13807            "GIC" => Some(Unit::GramIncludingContainer),
13808            "GII" => Some(Unit::GillUk),
13809            "GIP" => Some(Unit::GramIncludingInnerPackaging),
13810            "GJ" => Some(Unit::GramPerMillilitre),
13811            "GL" => Some(Unit::GramPerLitre),
13812            "GLD" => Some(Unit::DryGallonUs),
13813            "GLI" => Some(Unit::GallonUk),
13814            "GLL" => Some(Unit::GallonUs),
13815            "GM" => Some(Unit::GramPerSquareMetre),
13816            "GO" => Some(Unit::MilligramPerSquareMetre),
13817            "GP" => Some(Unit::MilligramPerCubicMetre),
13818            "GQ" => Some(Unit::MicrogramPerCubicMetre),
13819            "GRM" => Some(Unit::Gram),
13820            "GRN" => Some(Unit::Grain),
13821            "GRO" => Some(Unit::Gross),
13822            "GV" => Some(Unit::Gigajoule),
13823            "GWH" => Some(Unit::GigawattHour),
13824            "H03" => Some(Unit::HenryPerKiloohm),
13825            "H04" => Some(Unit::HenryPerOhm),
13826            "H05" => Some(Unit::MillihenryPerKiloohm),
13827            "H06" => Some(Unit::MillihenryPerOhm),
13828            "H07" => Some(Unit::PascalSecondPerBar),
13829            "H08" => Some(Unit::Microbecquerel),
13830            "H09" => Some(Unit::ReciprocalYear),
13831            "H10" => Some(Unit::ReciprocalHour),
13832            "H11" => Some(Unit::ReciprocalMonth),
13833            "H12" => Some(Unit::DegreeCelsiusPerHour),
13834            "H13" => Some(Unit::DegreeCelsiusPerMinute),
13835            "H14" => Some(Unit::DegreeCelsiusPerSecond),
13836            "H15" => Some(Unit::SquareCentimetrePerGram),
13837            "H16" => Some(Unit::SquareDecametre),
13838            "H18" => Some(Unit::SquareHectometre),
13839            "H19" => Some(Unit::CubicHectometre),
13840            "H20" => Some(Unit::CubicKilometre),
13841            "H21" => Some(Unit::Blank),
13842            "H22" => Some(Unit::VoltSquareInchPerPoundForce),
13843            "H23" => Some(Unit::VoltPerInch),
13844            "H24" => Some(Unit::VoltPerMicrosecond),
13845            "H25" => Some(Unit::PercentPerKelvin),
13846            "H26" => Some(Unit::OhmPerMetre),
13847            "H27" => Some(Unit::DegreePerMetre),
13848            "H28" => Some(Unit::MicrofaradPerKilometre),
13849            "H29" => Some(Unit::MicrogramPerLitre),
13850            "H30" => Some(Unit::SquareMicrometreSquareMicron),
13851            "H31" => Some(Unit::AmperePerKilogram),
13852            "H32" => Some(Unit::AmpereSquaredSecond),
13853            "H33" => Some(Unit::FaradPerKilometre),
13854            "H34" => Some(Unit::HertzMetre),
13855            "H35" => Some(Unit::KelvinMetrePerWatt),
13856            "H36" => Some(Unit::MegaohmPerKilometre),
13857            "H37" => Some(Unit::MegaohmPerMetre),
13858            "H38" => Some(Unit::Megaampere),
13859            "H39" => Some(Unit::MegahertzKilometre),
13860            "H40" => Some(Unit::NewtonPerAmpere),
13861            "H41" => Some(Unit::NewtonMetreWattToPowerMinus05),
13862            "H42" => Some(Unit::PascalPerMetre),
13863            "H43" => Some(Unit::SiemensPerCentimetre),
13864            "H44" => Some(Unit::Teraohm),
13865            "H45" => Some(Unit::VoltSecondPerMetre),
13866            "H46" => Some(Unit::VoltPerSecond),
13867            "H47" => Some(Unit::WattPerCubicMetre),
13868            "H48" => Some(Unit::Attofarad),
13869            "H49" => Some(Unit::CentimetrePerHour),
13870            "H50" => Some(Unit::ReciprocalCubicCentimetre),
13871            "H51" => Some(Unit::DecibelPerKilometre),
13872            "H52" => Some(Unit::DecibelPerMetre),
13873            "H53" => Some(Unit::KilogramPerBar),
13874            "H54" => Some(Unit::KilogramPerCubicDecimetreKelvin),
13875            "H55" => Some(Unit::KilogramPerCubicDecimetreBar),
13876            "H56" => Some(Unit::KilogramPerSquareMetreSecond),
13877            "H57" => Some(Unit::InchPerTwoPiRadiant),
13878            "H58" => Some(Unit::MetrePerVoltSecond),
13879            "H59" => Some(Unit::SquareMetrePerNewton),
13880            "H60" => Some(Unit::CubicMetrePerCubicMetre),
13881            "H61" => Some(Unit::MillisiemensPerCentimetre),
13882            "H62" => Some(Unit::MillivoltPerMinute),
13883            "H63" => Some(Unit::MilligramPerSquareCentimetre),
13884            "H64" => Some(Unit::MilligramPerGram),
13885            "H65" => Some(Unit::MillilitrePerCubicMetre),
13886            "H66" => Some(Unit::MillimetrePerYear),
13887            "H67" => Some(Unit::MillimetrePerHour),
13888            "H68" => Some(Unit::MillimolePerGram),
13889            "H69" => Some(Unit::PicopascalPerKilometre),
13890            "H70" => Some(Unit::Picosecond),
13891            "H71" => Some(Unit::PercentPerMonth),
13892            "H72" => Some(Unit::PercentPerHectobar),
13893            "H73" => Some(Unit::PercentPerDecakelvin),
13894            "H74" => Some(Unit::WattPerMetre),
13895            "H75" => Some(Unit::Decapascal),
13896            "H76" => Some(Unit::GramPerMillimetre),
13897            "H77" => Some(Unit::ModuleWidth),
13898            "H79" => Some(Unit::FrenchGauge),
13899            "H80" => Some(Unit::RackUnit),
13900            "H81" => Some(Unit::MillimetrePerMinute),
13901            "H82" => Some(Unit::BigPoint),
13902            "H83" => Some(Unit::LitrePerKilogram),
13903            "H84" => Some(Unit::GramMillimetre),
13904            "H85" => Some(Unit::ReciprocalWeek),
13905            "H87" => Some(Unit::Piece),
13906            "H88" => Some(Unit::MegaohmKilometre),
13907            "H89" => Some(Unit::PercentPerOhm),
13908            "H90" => Some(Unit::PercentPerDegree),
13909            "H91" => Some(Unit::PercentPerTenThousand),
13910            "H92" => Some(Unit::PercentPerOneHundredThousand),
13911            "H93" => Some(Unit::PercentPerHundred),
13912            "H94" => Some(Unit::PercentPerThousand),
13913            "H95" => Some(Unit::PercentPerVolt),
13914            "H96" => Some(Unit::PercentPerBar),
13915            "H98" => Some(Unit::PercentPerInch),
13916            "H99" => Some(Unit::PercentPerMetre),
13917            "HA" => Some(Unit::Hank),
13918            "HAD" => Some(Unit::PieceDay),
13919            "HBA" => Some(Unit::Hectobar),
13920            "HBX" => Some(Unit::HundredBoxes),
13921            "HC" => Some(Unit::HundredCount),
13922            "HDW" => Some(Unit::HundredKilogramDryWeight),
13923            "HEA" => Some(Unit::Head),
13924            "HGM" => Some(Unit::Hectogram),
13925            "HH" => Some(Unit::HundredCubicFoot),
13926            "HIU" => Some(Unit::HundredInternationalUnit),
13927            "HKM" => Some(Unit::HundredKilogramNetMass),
13928            "HLT" => Some(Unit::Hectolitre),
13929            "HM" => Some(Unit::MilePerHourStatuteMile),
13930            "HMO" => Some(Unit::PieceMonth),
13931            "HMQ" => Some(Unit::MillionCubicMetre),
13932            "HMT" => Some(Unit::Hectometre),
13933            "HPA" => Some(Unit::HectolitrePureAlcohol),
13934            "HTZ" => Some(Unit::Hertz),
13935            "HUR" => Some(Unit::Hour),
13936            "HWE" => Some(Unit::PieceWeek),
13937            "IA" => Some(Unit::InchPoundPoundInch),
13938            "IE" => Some(Unit::Person),
13939            "INH" => Some(Unit::Inch),
13940            "INK" => Some(Unit::SquareInch),
13941            "INQ" => Some(Unit::CubicInch),
13942            "ISD" => Some(Unit::InternationalSugarDegree),
13943            "IU" => Some(Unit::InchPerSecond),
13944            "IUG" => Some(Unit::InternationalUnitPerGram),
13945            "IV" => Some(Unit::InchPerSecondSquared),
13946            "J10" => Some(Unit::PercentPerMillimetre),
13947            "J12" => Some(Unit::PerMillePerPsi),
13948            "J13" => Some(Unit::DegreeApi),
13949            "J14" => Some(Unit::DegreeBaumeOriginScale),
13950            "J15" => Some(Unit::DegreeBaumeUsHeavy),
13951            "J16" => Some(Unit::DegreeBaumeUsLight),
13952            "J17" => Some(Unit::DegreeBalling),
13953            "J18" => Some(Unit::DegreeBrix),
13954            "J19" => Some(Unit::DegreeFahrenheitHourSquareFootPerBritishThermalUnitThermochemical),
13955            "J2" => Some(Unit::JoulePerKilogram),
13956            "J20" => Some(Unit::DegreeFahrenheitPerKelvin),
13957            "J21" => Some(Unit::DegreeFahrenheitPerBar),
13958            "J22" => {
13959                Some(Unit::DegreeFahrenheitHourSquareFootPerBritishThermalUnitInternationalTable)
13960            }
13961            "J23" => Some(Unit::DegreeFahrenheitPerHour),
13962            "J24" => Some(Unit::DegreeFahrenheitPerMinute),
13963            "J25" => Some(Unit::DegreeFahrenheitPerSecond),
13964            "J26" => Some(Unit::ReciprocalDegreeFahrenheit),
13965            "J27" => Some(Unit::DegreeOechsle),
13966            "J28" => Some(Unit::DegreeRankinePerHour),
13967            "J29" => Some(Unit::DegreeRankinePerMinute),
13968            "J30" => Some(Unit::DegreeRankinePerSecond),
13969            "J31" => Some(Unit::DegreeTwaddell),
13970            "J32" => Some(Unit::Micropoise),
13971            "J33" => Some(Unit::MicrogramPerKilogram),
13972            "J34" => Some(Unit::MicrogramPerCubicMetreKelvin),
13973            "J35" => Some(Unit::MicrogramPerCubicMetreBar),
13974            "J36" => Some(Unit::MicrolitrePerLitre),
13975            "J38" => Some(Unit::Baud),
13976            "J39" => Some(Unit::BritishThermalUnitMean),
13977            "J40" => Some(
13978                Unit::BritishThermalUnitInternationalTableFootPerHourSquareFootDegreeFahrenheit,
13979            ),
13980            "J41" => Some(
13981                Unit::BritishThermalUnitInternationalTableInchPerHourSquareFootDegreeFahrenheit,
13982            ),
13983            "J42" => Some(
13984                Unit::BritishThermalUnitInternationalTableInchPerSecondSquareFootDegreeFahrenheit,
13985            ),
13986            "J43" => Some(Unit::BritishThermalUnitInternationalTablePerPoundDegreeFahrenheit),
13987            "J44" => Some(Unit::BritishThermalUnitInternationalTablePerMinute),
13988            "J45" => Some(Unit::BritishThermalUnitInternationalTablePerSecond),
13989            "J46" => {
13990                Some(Unit::BritishThermalUnitThermochemicalFootPerHourSquareFootDegreeFahrenheit)
13991            }
13992            "J47" => Some(Unit::BritishThermalUnitThermochemicalPerHour),
13993            "J48" => {
13994                Some(Unit::BritishThermalUnitThermochemicalInchPerHourSquareFootDegreeFahrenheit)
13995            }
13996            "J49" => {
13997                Some(Unit::BritishThermalUnitThermochemicalInchPerSecondSquareFootDegreeFahrenheit)
13998            }
13999            "J50" => Some(Unit::BritishThermalUnitThermochemicalPerPoundDegreeFahrenheit),
14000            "J51" => Some(Unit::BritishThermalUnitThermochemicalPerMinute),
14001            "J52" => Some(Unit::BritishThermalUnitThermochemicalPerSecond),
14002            "J53" => Some(Unit::CoulombSquareMetrePerKilogram),
14003            "J54" => Some(Unit::Megabaud),
14004            "J55" => Some(Unit::WattSecond),
14005            "J56" => Some(Unit::BarPerBar),
14006            "J57" => Some(Unit::BarrelUkPetroleum),
14007            "J58" => Some(Unit::BarrelUkPetroleumPerMinute),
14008            "J59" => Some(Unit::BarrelUkPetroleumPerDay),
14009            "J60" => Some(Unit::BarrelUkPetroleumPerHour),
14010            "J61" => Some(Unit::BarrelUkPetroleumPerSecond),
14011            "J62" => Some(Unit::BarrelUsPetroleumPerHour),
14012            "J63" => Some(Unit::BarrelUsPetroleumPerSecond),
14013            "J64" => Some(Unit::BushelUkPerDay),
14014            "J65" => Some(Unit::BushelUkPerHour),
14015            "J66" => Some(Unit::BushelUkPerMinute),
14016            "J67" => Some(Unit::BushelUkPerSecond),
14017            "J68" => Some(Unit::BushelUsDryPerDay),
14018            "J69" => Some(Unit::BushelUsDryPerHour),
14019            "J70" => Some(Unit::BushelUsDryPerMinute),
14020            "J71" => Some(Unit::BushelUsDryPerSecond),
14021            "J72" => Some(Unit::CentinewtonMetre),
14022            "J73" => Some(Unit::CentipoisePerKelvin),
14023            "J74" => Some(Unit::CentipoisePerBar),
14024            "J75" => Some(Unit::CalorieMean),
14025            "J76" => Some(Unit::CalorieInternationalTablePerGramDegreeCelsius),
14026            "J78" => Some(Unit::CalorieThermochemicalPerCentimetreSecondDegreeCelsius),
14027            "J79" => Some(Unit::CalorieThermochemicalPerGramDegreeCelsius),
14028            "J81" => Some(Unit::CalorieThermochemicalPerMinute),
14029            "J82" => Some(Unit::CalorieThermochemicalPerSecond),
14030            "J83" => Some(Unit::Clo),
14031            "J84" => Some(Unit::CentimetrePerSecondKelvin),
14032            "J85" => Some(Unit::CentimetrePerSecondBar),
14033            "J87" => Some(Unit::CubicCentimetrePerCubicMetre),
14034            "J90" => Some(Unit::CubicDecimetrePerDay),
14035            "J91" => Some(Unit::CubicDecimetrePerCubicMetre),
14036            "J92" => Some(Unit::CubicDecimetrePerMinute),
14037            "J93" => Some(Unit::CubicDecimetrePerSecond),
14038            "J95" => Some(Unit::OunceUkFluidPerDay),
14039            "J96" => Some(Unit::OunceUkFluidPerHour),
14040            "J97" => Some(Unit::OunceUkFluidPerMinute),
14041            "J98" => Some(Unit::OunceUkFluidPerSecond),
14042            "J99" => Some(Unit::OunceUsFluidPerDay),
14043            "JE" => Some(Unit::JoulePerKelvin),
14044            "JK" => Some(Unit::MegajoulePerKilogram),
14045            "JM" => Some(Unit::MegajoulePerCubicMetre),
14046            "JNT" => Some(Unit::PipelineJoint),
14047            "JOU" => Some(Unit::Joule),
14048            "JPS" => Some(Unit::HundredMetre),
14049            "JWL" => Some(Unit::NumberJewels),
14050            "K1" => Some(Unit::KilowattDemand),
14051            "K10" => Some(Unit::OunceUsFluidPerHour),
14052            "K11" => Some(Unit::OunceUsFluidPerMinute),
14053            "K12" => Some(Unit::OunceUsFluidPerSecond),
14054            "K13" => Some(Unit::FootPerDegreeFahrenheit),
14055            "K14" => Some(Unit::FootPerHour),
14056            "K15" => Some(Unit::FootPoundForcePerHour),
14057            "K16" => Some(Unit::FootPoundForcePerMinute),
14058            "K17" => Some(Unit::FootPerPsi),
14059            "K18" => Some(Unit::FootPerSecondDegreeFahrenheit),
14060            "K19" => Some(Unit::FootPerSecondPsi),
14061            "K2" => Some(Unit::KilovoltAmpereReactiveDemand),
14062            "K20" => Some(Unit::ReciprocalCubicFoot),
14063            "K21" => Some(Unit::CubicFootPerDegreeFahrenheit),
14064            "K22" => Some(Unit::CubicFootPerDay),
14065            "K23" => Some(Unit::CubicFootPerPsi),
14066            "K26" => Some(Unit::GallonUkPerDay),
14067            "K27" => Some(Unit::GallonUkPerHour),
14068            "K28" => Some(Unit::GallonUkPerSecond),
14069            "K3" => Some(Unit::KilovoltAmpereReactiveHour),
14070            "K30" => Some(Unit::GallonUsLiquidPerSecond),
14071            "K31" => Some(Unit::GramForcePerSquareCentimetre),
14072            "K32" => Some(Unit::GillUkPerDay),
14073            "K33" => Some(Unit::GillUkPerHour),
14074            "K34" => Some(Unit::GillUkPerMinute),
14075            "K35" => Some(Unit::GillUkPerSecond),
14076            "K36" => Some(Unit::GillUsPerDay),
14077            "K37" => Some(Unit::GillUsPerHour),
14078            "K38" => Some(Unit::GillUsPerMinute),
14079            "K39" => Some(Unit::GillUsPerSecond),
14080            "K40" => Some(Unit::StandardAccelerationFreeFall),
14081            "K41" => Some(Unit::GrainPerGallonUs),
14082            "K42" => Some(Unit::HorsepowerBoiler),
14083            "K43" => Some(Unit::HorsepowerElectric),
14084            "K45" => Some(Unit::InchPerDegreeFahrenheit),
14085            "K46" => Some(Unit::InchPerPsi),
14086            "K47" => Some(Unit::InchPerSecondDegreeFahrenheit),
14087            "K48" => Some(Unit::InchPerSecondPsi),
14088            "K49" => Some(Unit::ReciprocalCubicInch),
14089            "K50" => Some(Unit::Kilobaud),
14090            "K51" => Some(Unit::KilocalorieMean),
14091            "K52" => Some(Unit::KilocalorieInternationalTablePerHourMetreDegreeCelsius),
14092            "K53" => Some(Unit::KilocalorieThermochemical),
14093            "K54" => Some(Unit::KilocalorieThermochemicalPerMinute),
14094            "K55" => Some(Unit::KilocalorieThermochemicalPerSecond),
14095            "K58" => Some(Unit::KilomolePerHour),
14096            "K59" => Some(Unit::KilomolePerCubicMetreKelvin),
14097            "K6" => Some(Unit::Kilolitre),
14098            "K60" => Some(Unit::KilomolePerCubicMetreBar),
14099            "K61" => Some(Unit::KilomolePerMinute),
14100            "K62" => Some(Unit::LitrePerLitre),
14101            "K63" => Some(Unit::ReciprocalLitre),
14102            "K64" => Some(Unit::PoundAvoirdupoisPerDegreeFahrenheit),
14103            "K65" => Some(Unit::PoundAvoirdupoisSquareFoot),
14104            "K66" => Some(Unit::PoundAvoirdupoisPerDay),
14105            "K67" => Some(Unit::PoundPerFootHour),
14106            "K68" => Some(Unit::PoundPerFootSecond),
14107            "K69" => Some(Unit::PoundAvoirdupoisPerCubicFootDegreeFahrenheit),
14108            "K70" => Some(Unit::PoundAvoirdupoisPerCubicFootPsi),
14109            "K71" => Some(Unit::PoundAvoirdupoisPerGallonUk),
14110            "K73" => Some(Unit::PoundAvoirdupoisPerHourDegreeFahrenheit),
14111            "K74" => Some(Unit::PoundAvoirdupoisPerHourPsi),
14112            "K75" => Some(Unit::PoundAvoirdupoisPerCubicInchDegreeFahrenheit),
14113            "K76" => Some(Unit::PoundAvoirdupoisPerCubicInchPsi),
14114            "K77" => Some(Unit::PoundAvoirdupoisPerPsi),
14115            "K78" => Some(Unit::PoundAvoirdupoisPerMinute),
14116            "K79" => Some(Unit::PoundAvoirdupoisPerMinuteDegreeFahrenheit),
14117            "K80" => Some(Unit::PoundAvoirdupoisPerMinutePsi),
14118            "K81" => Some(Unit::PoundAvoirdupoisPerSecond),
14119            "K82" => Some(Unit::PoundAvoirdupoisPerSecondDegreeFahrenheit),
14120            "K83" => Some(Unit::PoundAvoirdupoisPerSecondPsi),
14121            "K84" => Some(Unit::PoundPerCubicYard),
14122            "K85" => Some(Unit::PoundForcePerSquareFoot),
14123            "K86" => Some(Unit::PoundForcePerSquareInchDegreeFahrenheit),
14124            "K87" => Some(Unit::PsiCubicInchPerSecond),
14125            "K88" => Some(Unit::PsiLitrePerSecond),
14126            "K89" => Some(Unit::PsiCubicMetrePerSecond),
14127            "K90" => Some(Unit::PsiCubicYardPerSecond),
14128            "K91" => Some(Unit::PoundForceSecondPerSquareFoot),
14129            "K92" => Some(Unit::PoundForceSecondPerSquareInch),
14130            "K93" => Some(Unit::ReciprocalPsi),
14131            "K94" => Some(Unit::QuartUkLiquidPerDay),
14132            "K95" => Some(Unit::QuartUkLiquidPerHour),
14133            "K96" => Some(Unit::QuartUkLiquidPerMinute),
14134            "K97" => Some(Unit::QuartUkLiquidPerSecond),
14135            "K98" => Some(Unit::QuartUsLiquidPerDay),
14136            "K99" => Some(Unit::QuartUsLiquidPerHour),
14137            "KA" => Some(Unit::Cake),
14138            "KAT" => Some(Unit::Katal),
14139            "KB" => Some(Unit::Kilocharacter),
14140            "KBA" => Some(Unit::Kilobar),
14141            "KCC" => Some(Unit::KilogramCholineChloride),
14142            "KDW" => Some(Unit::KilogramDrainedNetWeight),
14143            "KEL" => Some(Unit::Kelvin),
14144            "KGM" => Some(Unit::Kilogram),
14145            "KGS" => Some(Unit::KilogramPerSecond),
14146            "KHY" => Some(Unit::KilogramHydrogenPeroxide),
14147            "KHZ" => Some(Unit::Kilohertz),
14148            "KI" => Some(Unit::KilogramPerMillimetreWidth),
14149            "KIC" => Some(Unit::KilogramIncludingContainer),
14150            "KIP" => Some(Unit::KilogramIncludingInnerPackaging),
14151            "KJ" => Some(Unit::Kilosegment),
14152            "KJO" => Some(Unit::Kilojoule),
14153            "KL" => Some(Unit::KilogramPerMetre),
14154            "KLK" => Some(Unit::LacticDryMaterialPercentage),
14155            "KLX" => Some(Unit::Kilolux),
14156            "KMA" => Some(Unit::KilogramMethylamine),
14157            "KMH" => Some(Unit::KilometrePerHour),
14158            "KMK" => Some(Unit::SquareKilometre),
14159            "KMQ" => Some(Unit::KilogramPerCubicMetre),
14160            "KMT" => Some(Unit::Kilometre),
14161            "KNI" => Some(Unit::KilogramNitrogen),
14162            "KNM" => Some(Unit::KilonewtonPerSquareMetre),
14163            "KNS" => Some(Unit::KilogramNamedSubstance),
14164            "KNT" => Some(Unit::Knot),
14165            "KO" => Some(Unit::MilliequivalenceCausticPotashPerGramProduct),
14166            "KPA" => Some(Unit::Kilopascal),
14167            "KPH" => Some(Unit::KilogramPotassiumHydroxideCausticPotash),
14168            "KPO" => Some(Unit::KilogramPotassiumOxide),
14169            "KPP" => Some(Unit::KilogramPhosphorusPentoxidePhosphoricAnhydride),
14170            "KR" => Some(Unit::Kiloroentgen),
14171            "KSD" => Some(Unit::KilogramSubstance90Dry),
14172            "KSH" => Some(Unit::KilogramSodiumHydroxideCausticSoda),
14173            "KT" => Some(Unit::Kit),
14174            "KTN" => Some(Unit::Kilotonne),
14175            "KUR" => Some(Unit::KilogramUranium),
14176            "KVA" => Some(Unit::KilovoltAmpere),
14177            "KVR" => Some(Unit::Kilovar),
14178            "KVT" => Some(Unit::Kilovolt),
14179            "KW" => Some(Unit::KilogramPerMillimetre),
14180            "KWH" => Some(Unit::KilowattHour),
14181            "KWN" => Some(Unit::KilowattHourPerNormalizedCubicMetre),
14182            "KWO" => Some(Unit::KilogramTungstenTrioxide),
14183            "KWS" => Some(Unit::KilowattHourPerStandardCubicMetre),
14184            "KWT" => Some(Unit::Kilowatt),
14185            "KWY" => Some(Unit::KilowattYear),
14186            "KX" => Some(Unit::MillilitrePerKilogram),
14187            "L10" => Some(Unit::QuartUsLiquidPerMinute),
14188            "L11" => Some(Unit::QuartUsLiquidPerSecond),
14189            "L12" => Some(Unit::MetrePerSecondKelvin),
14190            "L13" => Some(Unit::MetrePerSecondBar),
14191            "L14" => Some(Unit::SquareMetreHourDegreeCelsiusPerKilocalorieInternationalTable),
14192            "L15" => Some(Unit::MillipascalSecondPerKelvin),
14193            "L16" => Some(Unit::MillipascalSecondPerBar),
14194            "L17" => Some(Unit::MilligramPerCubicMetreKelvin),
14195            "L18" => Some(Unit::MilligramPerCubicMetreBar),
14196            "L19" => Some(Unit::MillilitrePerLitre),
14197            "L2" => Some(Unit::LitrePerMinute),
14198            "L20" => Some(Unit::ReciprocalCubicMillimetre),
14199            "L21" => Some(Unit::CubicMillimetrePerCubicMetre),
14200            "L23" => Some(Unit::MolePerHour),
14201            "L24" => Some(Unit::MolePerKilogramKelvin),
14202            "L25" => Some(Unit::MolePerKilogramBar),
14203            "L26" => Some(Unit::MolePerLitreKelvin),
14204            "L27" => Some(Unit::MolePerLitreBar),
14205            "L28" => Some(Unit::MolePerCubicMetreKelvin),
14206            "L29" => Some(Unit::MolePerCubicMetreBar),
14207            "L30" => Some(Unit::MolePerMinute),
14208            "L31" => Some(Unit::MilliroentgenAequivalentMen),
14209            "L32" => Some(Unit::NanogramPerKilogram),
14210            "L33" => Some(Unit::OunceAvoirdupoisPerDay),
14211            "L34" => Some(Unit::OunceAvoirdupoisPerHour),
14212            "L35" => Some(Unit::OunceAvoirdupoisPerMinute),
14213            "L36" => Some(Unit::OunceAvoirdupoisPerSecond),
14214            "L37" => Some(Unit::OunceAvoirdupoisPerGallonUk),
14215            "L38" => Some(Unit::OunceAvoirdupoisPerGallonUs),
14216            "L39" => Some(Unit::OunceAvoirdupoisPerCubicInch),
14217            "L40" => Some(Unit::OunceAvoirdupoisForce),
14218            "L41" => Some(Unit::OunceAvoirdupoisForceInch),
14219            "L42" => Some(Unit::PicosiemensPerMetre),
14220            "L43" => Some(Unit::PeckUk),
14221            "L44" => Some(Unit::PeckUkPerDay),
14222            "L45" => Some(Unit::PeckUkPerHour),
14223            "L46" => Some(Unit::PeckUkPerMinute),
14224            "L47" => Some(Unit::PeckUkPerSecond),
14225            "L48" => Some(Unit::PeckUsDryPerDay),
14226            "L49" => Some(Unit::PeckUsDryPerHour),
14227            "L50" => Some(Unit::PeckUsDryPerMinute),
14228            "L51" => Some(Unit::PeckUsDryPerSecond),
14229            "L52" => Some(Unit::PsiPerPsi),
14230            "L53" => Some(Unit::PintUkPerDay),
14231            "L54" => Some(Unit::PintUkPerHour),
14232            "L55" => Some(Unit::PintUkPerMinute),
14233            "L56" => Some(Unit::PintUkPerSecond),
14234            "L57" => Some(Unit::PintUsLiquidPerDay),
14235            "L58" => Some(Unit::PintUsLiquidPerHour),
14236            "L59" => Some(Unit::PintUsLiquidPerMinute),
14237            "L60" => Some(Unit::PintUsLiquidPerSecond),
14238            "L63" => Some(Unit::SlugPerDay),
14239            "L64" => Some(Unit::SlugPerFootSecond),
14240            "L65" => Some(Unit::SlugPerCubicFoot),
14241            "L66" => Some(Unit::SlugPerHour),
14242            "L67" => Some(Unit::SlugPerMinute),
14243            "L68" => Some(Unit::SlugPerSecond),
14244            "L69" => Some(Unit::TonnePerKelvin),
14245            "L70" => Some(Unit::TonnePerBar),
14246            "L71" => Some(Unit::TonnePerDay),
14247            "L72" => Some(Unit::TonnePerDayKelvin),
14248            "L73" => Some(Unit::TonnePerDayBar),
14249            "L74" => Some(Unit::TonnePerHourKelvin),
14250            "L75" => Some(Unit::TonnePerHourBar),
14251            "L76" => Some(Unit::TonnePerCubicMetreKelvin),
14252            "L77" => Some(Unit::TonnePerCubicMetreBar),
14253            "L78" => Some(Unit::TonnePerMinute),
14254            "L79" => Some(Unit::TonnePerMinuteKelvin),
14255            "L80" => Some(Unit::TonnePerMinuteBar),
14256            "L81" => Some(Unit::TonnePerSecond),
14257            "L82" => Some(Unit::TonnePerSecondKelvin),
14258            "L83" => Some(Unit::TonnePerSecondBar),
14259            "L84" => Some(Unit::TonUkShipping),
14260            "L85" => Some(Unit::TonLongPerDay),
14261            "L86" => Some(Unit::TonUsShipping),
14262            "L87" => Some(Unit::TonShortPerDegreeFahrenheit),
14263            "L88" => Some(Unit::TonShortPerDay),
14264            "L89" => Some(Unit::TonShortPerHourDegreeFahrenheit),
14265            "L90" => Some(Unit::TonShortPerHourPsi),
14266            "L91" => Some(Unit::TonShortPerPsi),
14267            "L92" => Some(Unit::TonUkLongPerCubicYard),
14268            "L93" => Some(Unit::TonUsShortPerCubicYard),
14269            "L94" => Some(Unit::TonForceUsShort),
14270            "L95" => Some(Unit::CommonYear),
14271            "L96" => Some(Unit::SiderealYear),
14272            "L98" => Some(Unit::YardPerDegreeFahrenheit),
14273            "L99" => Some(Unit::YardPerPsi),
14274            "LA" => Some(Unit::PoundPerCubicInch),
14275            "LAC" => Some(Unit::LactoseExcessPercentage),
14276            "LBR" => Some(Unit::Pound),
14277            "LBT" => Some(Unit::TroyPoundUs),
14278            "LD" => Some(Unit::LitrePerDay),
14279            "LEF" => Some(Unit::Leaf),
14280            "LF" => Some(Unit::LinearFoot),
14281            "LH" => Some(Unit::LabourHour),
14282            "LK" => Some(Unit::Link),
14283            "LM" => Some(Unit::LinearMetre),
14284            "LN" => Some(Unit::Length),
14285            "LO" => Some(Unit::LotUnitProcurement),
14286            "LP" => Some(Unit::LiquidPound),
14287            "LPA" => Some(Unit::LitrePureAlcohol),
14288            "LR" => Some(Unit::Layer),
14289            "LS" => Some(Unit::LumpSum),
14290            "LTN" => Some(Unit::TonUkOrLongTonUs),
14291            "LTR" => Some(Unit::Litre),
14292            "LUB" => Some(Unit::MetricTonLubricatingOil),
14293            "LUM" => Some(Unit::Lumen),
14294            "LUX" => Some(Unit::Lux),
14295            "LY" => Some(Unit::LinearYard),
14296            "M1" => Some(Unit::MilligramPerLitre),
14297            "M10" => Some(Unit::ReciprocalCubicYard),
14298            "M11" => Some(Unit::CubicYardPerDegreeFahrenheit),
14299            "M12" => Some(Unit::CubicYardPerDay),
14300            "M13" => Some(Unit::CubicYardPerHour),
14301            "M14" => Some(Unit::CubicYardPerPsi),
14302            "M15" => Some(Unit::CubicYardPerMinute),
14303            "M16" => Some(Unit::CubicYardPerSecond),
14304            "M17" => Some(Unit::KilohertzMetre),
14305            "M18" => Some(Unit::GigahertzMetre),
14306            "M19" => Some(Unit::Beaufort),
14307            "M20" => Some(Unit::ReciprocalMegakelvinOrMegakelvinToPowerMinusOne),
14308            "M21" => Some(Unit::ReciprocalKilovoltAmpereReciprocalHour),
14309            "M22" => Some(Unit::MillilitrePerSquareCentimetreMinute),
14310            "M23" => Some(Unit::NewtonPerCentimetre),
14311            "M24" => Some(Unit::OhmKilometre),
14312            "M25" => Some(Unit::PercentPerDegreeCelsius),
14313            "M26" => Some(Unit::GigaohmPerMetre),
14314            "M27" => Some(Unit::MegahertzMetre),
14315            "M29" => Some(Unit::KilogramPerKilogram),
14316            "M30" => Some(Unit::ReciprocalVoltAmpereReciprocalSecond),
14317            "M31" => Some(Unit::KilogramPerKilometre),
14318            "M32" => Some(Unit::PascalSecondPerLitre),
14319            "M33" => Some(Unit::MillimolePerLitre),
14320            "M34" => Some(Unit::NewtonMetrePerSquareMetre),
14321            "M35" => Some(Unit::MillivoltAmpere),
14322            "M36" => Some(Unit::_30DayMonth),
14323            "M37" => Some(Unit::Actual360),
14324            "M38" => Some(Unit::KilometrePerSecondSquared),
14325            "M39" => Some(Unit::CentimetrePerSecondSquared),
14326            "M4" => Some(Unit::MonetaryValue),
14327            "M40" => Some(Unit::YardPerSecondSquared),
14328            "M41" => Some(Unit::MillimetrePerSecondSquared),
14329            "M42" => Some(Unit::MileStatuteMilePerSecondSquared),
14330            "M43" => Some(Unit::Mil),
14331            "M44" => Some(Unit::Revolution),
14332            "M45" => Some(Unit::DegreeUnitAnglePerSecondSquared),
14333            "M46" => Some(Unit::RevolutionPerMinute),
14334            "M47" => Some(Unit::CircularMil),
14335            "M48" => Some(Unit::SquareMileBasedOnUSSurveyFoot),
14336            "M49" => Some(Unit::ChainBasedOnUSSurveyFoot),
14337            "M5" => Some(Unit::Microcurie),
14338            "M50" => Some(Unit::Furlong),
14339            "M51" => Some(Unit::FootUSSurvey),
14340            "M52" => Some(Unit::MileBasedOnUSSurveyFoot),
14341            "M53" => Some(Unit::MetrePerPascal),
14342            "M55" => Some(Unit::MetrePerRadiant),
14343            "M56" => Some(Unit::Shake),
14344            "M57" => Some(Unit::MilePerMinute),
14345            "M58" => Some(Unit::MilePerSecond),
14346            "M59" => Some(Unit::MetrePerSecondPascal),
14347            "M60" => Some(Unit::MetrePerHour),
14348            "M61" => Some(Unit::InchPerYear),
14349            "M62" => Some(Unit::KilometrePerSecond),
14350            "M63" => Some(Unit::InchPerMinute),
14351            "M64" => Some(Unit::YardPerSecond),
14352            "M65" => Some(Unit::YardPerMinute),
14353            "M66" => Some(Unit::YardPerHour),
14354            "M67" => Some(Unit::AcreFootBasedOnUSSurveyFoot),
14355            "M68" => Some(Unit::Cord128Ft3),
14356            "M69" => Some(Unit::CubicMileUkStatute),
14357            "M7" => Some(Unit::MicroInch),
14358            "M70" => Some(Unit::TonRegister),
14359            "M71" => Some(Unit::CubicMetrePerPascal),
14360            "M72" => Some(Unit::Bel),
14361            "M73" => Some(Unit::KilogramPerCubicMetrePascal),
14362            "M74" => Some(Unit::KilogramPerPascal),
14363            "M75" => Some(Unit::KilopoundForce),
14364            "M76" => Some(Unit::Poundal),
14365            "M77" => Some(Unit::KilogramMetrePerSecondSquared),
14366            "M78" => Some(Unit::Pond),
14367            "M79" => Some(Unit::SquareFootPerHour),
14368            "M80" => Some(Unit::StokesPerPascal),
14369            "M81" => Some(Unit::SquareCentimetrePerSecond),
14370            "M82" => Some(Unit::SquareMetrePerSecondPascal),
14371            "M83" => Some(Unit::Denier_Dup),
14372            "M84" => Some(Unit::PoundPerYard),
14373            "M85" => Some(Unit::TonAssay),
14374            "M86" => Some(Unit::Pfund),
14375            "M87" => Some(Unit::KilogramPerSecondPascal),
14376            "M88" => Some(Unit::TonnePerMonth),
14377            "M89" => Some(Unit::TonnePerYear),
14378            "M9" => Some(Unit::MillionBtuPer1000CubicFoot),
14379            "M90" => Some(Unit::KilopoundPerHour),
14380            "M91" => Some(Unit::PoundPerPound),
14381            "M92" => Some(Unit::PoundForceFoot),
14382            "M93" => Some(Unit::NewtonMetrePerRadian),
14383            "M94" => Some(Unit::KilogramMetre),
14384            "M95" => Some(Unit::PoundalFoot),
14385            "M96" => Some(Unit::PoundalInch),
14386            "M97" => Some(Unit::DyneMetre),
14387            "M98" => Some(Unit::KilogramCentimetrePerSecond),
14388            "M99" => Some(Unit::GramCentimetrePerSecond),
14389            "MAH" => Some(Unit::MegavoltAmpereReactiveHour),
14390            "MAL" => Some(Unit::Megalitre),
14391            "MAM" => Some(Unit::Megametre),
14392            "MAR" => Some(Unit::Megavar),
14393            "MAW" => Some(Unit::Megawatt),
14394            "MBE" => Some(Unit::ThousandStandardBrickEquivalent),
14395            "MBF" => Some(Unit::ThousandBoardFoot),
14396            "MBR" => Some(Unit::Millibar),
14397            "MC" => Some(Unit::Microgram),
14398            "MCU" => Some(Unit::Millicurie),
14399            "MD" => Some(Unit::AirDryMetricTon),
14400            "MGM" => Some(Unit::Milligram),
14401            "MHZ" => Some(Unit::Megahertz),
14402            "MIK" => Some(Unit::SquareMileStatuteMile),
14403            "MIL" => Some(Unit::Thousand),
14404            "MIN" => Some(Unit::MinuteUnitTime),
14405            "MIO" => Some(Unit::Million),
14406            "MIU" => Some(Unit::MillionInternationalUnit),
14407            "MKD" => Some(Unit::SquareMetreDay),
14408            "MKM" => Some(Unit::SquareMetreMonth),
14409            "MKW" => Some(Unit::SquareMetreWeek),
14410            "MLD" => Some(Unit::Milliard),
14411            "MLT" => Some(Unit::Millilitre),
14412            "MMK" => Some(Unit::SquareMillimetre),
14413            "MMQ" => Some(Unit::CubicMillimetre),
14414            "MMT" => Some(Unit::Millimetre),
14415            "MND" => Some(Unit::KilogramDryWeight),
14416            "MNJ" => Some(Unit::MegaJoulePerNormalisedCubicMetre),
14417            "MON" => Some(Unit::Month),
14418            "MPA" => Some(Unit::Megapascal),
14419            "MQD" => Some(Unit::CubicMetreDay),
14420            "MQH" => Some(Unit::CubicMetrePerHour),
14421            "MQM" => Some(Unit::CubicMetreMonth),
14422            "MQS" => Some(Unit::CubicMetrePerSecond),
14423            "MQW" => Some(Unit::CubicMetreWeek),
14424            "MRD" => Some(Unit::MetreDay),
14425            "MRM" => Some(Unit::MetreMonth),
14426            "MRW" => Some(Unit::MetreWeek),
14427            "MSK" => Some(Unit::MetrePerSecondSquared),
14428            "MTK" => Some(Unit::SquareMetre),
14429            "MTQ" => Some(Unit::CubicMetre),
14430            "MTR" => Some(Unit::Metre),
14431            "MTS" => Some(Unit::MetrePerSecond),
14432            "MTZ" => Some(Unit::Milihertz),
14433            "MVA" => Some(Unit::MegavoltAmpere),
14434            "MWH" => Some(Unit::MegawattHour1000KwH),
14435            "N1" => Some(Unit::PenCalorie),
14436            "N10" => Some(Unit::PoundFootPerSecond),
14437            "N11" => Some(Unit::PoundInchPerSecond),
14438            "N12" => Some(Unit::Pferdestaerke),
14439            "N13" => Some(Unit::CentimetreMercury0Oc),
14440            "N14" => Some(Unit::CentimetreWater4Oc),
14441            "N15" => Some(Unit::FootWater392Of),
14442            "N16" => Some(Unit::InchMercury32Of),
14443            "N17" => Some(Unit::InchMercury60Of),
14444            "N18" => Some(Unit::InchWater392Of),
14445            "N19" => Some(Unit::InchWater60Of),
14446            "N20" => Some(Unit::KipPerSquareInch),
14447            "N21" => Some(Unit::PoundalPerSquareFoot),
14448            "N22" => Some(Unit::OunceAvoirdupoisPerSquareInch),
14449            "N23" => Some(Unit::ConventionalMetreWater),
14450            "N24" => Some(Unit::GramPerSquareMillimetre),
14451            "N25" => Some(Unit::PoundPerSquareYard),
14452            "N26" => Some(Unit::PoundalPerSquareInch),
14453            "N27" => Some(Unit::FootToFourthPower),
14454            "N28" => Some(Unit::CubicDecimetrePerKilogram),
14455            "N29" => Some(Unit::CubicFootPerPound),
14456            "N3" => Some(Unit::PrintPoint),
14457            "N30" => Some(Unit::CubicInchPerPound),
14458            "N31" => Some(Unit::KilonewtonPerMetre),
14459            "N32" => Some(Unit::PoundalPerInch),
14460            "N33" => Some(Unit::PoundForcePerYard),
14461            "N34" => Some(Unit::PoundalSecondPerSquareFoot),
14462            "N35" => Some(Unit::PoisePerPascal),
14463            "N36" => Some(Unit::NewtonSecondPerSquareMetre),
14464            "N37" => Some(Unit::KilogramPerMetreSecond),
14465            "N38" => Some(Unit::KilogramPerMetreMinute),
14466            "N39" => Some(Unit::KilogramPerMetreDay),
14467            "N40" => Some(Unit::KilogramPerMetreHour),
14468            "N41" => Some(Unit::GramPerCentimetreSecond),
14469            "N42" => Some(Unit::PoundalSecondPerSquareInch),
14470            "N43" => Some(Unit::PoundPerFootMinute),
14471            "N44" => Some(Unit::PoundPerFootDay),
14472            "N45" => Some(Unit::CubicMetrePerSecondPascal),
14473            "N46" => Some(Unit::FootPoundal),
14474            "N47" => Some(Unit::InchPoundal),
14475            "N48" => Some(Unit::WattPerSquareCentimetre),
14476            "N49" => Some(Unit::WattPerSquareInch),
14477            "N50" => Some(Unit::BritishThermalUnitInternationalTablePerSquareFootHour),
14478            "N51" => Some(Unit::BritishThermalUnitThermochemicalPerSquareFootHour),
14479            "N52" => Some(Unit::BritishThermalUnitThermochemicalPerSquareFootMinute),
14480            "N53" => Some(Unit::BritishThermalUnitInternationalTablePerSquareFootSecond),
14481            "N54" => Some(Unit::BritishThermalUnitThermochemicalPerSquareFootSecond),
14482            "N55" => Some(Unit::BritishThermalUnitInternationalTablePerSquareInchSecond),
14483            "N56" => Some(Unit::CalorieThermochemicalPerSquareCentimetreMinute),
14484            "N57" => Some(Unit::CalorieThermochemicalPerSquareCentimetreSecond),
14485            "N58" => Some(Unit::BritishThermalUnitInternationalTablePerCubicFoot),
14486            "N59" => Some(Unit::BritishThermalUnitThermochemicalPerCubicFoot),
14487            "N60" => Some(Unit::BritishThermalUnitInternationalTablePerDegreeFahrenheit),
14488            "N61" => Some(Unit::BritishThermalUnitThermochemicalPerDegreeFahrenheit),
14489            "N62" => Some(Unit::BritishThermalUnitInternationalTablePerDegreeRankine),
14490            "N63" => Some(Unit::BritishThermalUnitThermochemicalPerDegreeRankine),
14491            "N64" => Some(Unit::BritishThermalUnitThermochemicalPerPoundDegreeRankine),
14492            "N65" => Some(Unit::KilocalorieInternationalTablePerGramKelvin),
14493            "N66" => Some(Unit::BritishThermalUnit39Of),
14494            "N67" => Some(Unit::BritishThermalUnit59Of),
14495            "N68" => Some(Unit::BritishThermalUnit60Of),
14496            "N69" => Some(Unit::Calorie20Oc),
14497            "N70" => Some(Unit::Quad1015Btuit),
14498            "N71" => Some(Unit::ThermEc),
14499            "N72" => Some(Unit::ThermUS),
14500            "N73" => Some(Unit::BritishThermalUnitThermochemicalPerPound),
14501            "N74" => {
14502                Some(Unit::BritishThermalUnitInternationalTablePerHourSquareFootDegreeFahrenheit)
14503            }
14504            "N75" => Some(Unit::BritishThermalUnitThermochemicalPerHourSquareFootDegreeFahrenheit),
14505            "N76" => {
14506                Some(Unit::BritishThermalUnitInternationalTablePerSecondSquareFootDegreeFahrenheit)
14507            }
14508            "N77" => {
14509                Some(Unit::BritishThermalUnitThermochemicalPerSecondSquareFootDegreeFahrenheit)
14510            }
14511            "N78" => Some(Unit::KilowattPerSquareMetreKelvin),
14512            "N79" => Some(Unit::KelvinPerPascal),
14513            "N80" => Some(Unit::WattPerMetreDegreeCelsius),
14514            "N81" => Some(Unit::KilowattPerMetreKelvin),
14515            "N82" => Some(Unit::KilowattPerMetreDegreeCelsius),
14516            "N83" => Some(Unit::MetrePerDegreeCelciusMetre),
14517            "N84" => Some(Unit::DegreeFahrenheitHourPerBritishThermalUnitInternationalTable),
14518            "N85" => Some(Unit::DegreeFahrenheitHourPerBritishThermalUnitThermochemical),
14519            "N86" => Some(Unit::DegreeFahrenheitSecondPerBritishThermalUnitInternationalTable),
14520            "N87" => Some(Unit::DegreeFahrenheitSecondPerBritishThermalUnitThermochemical),
14521            "N88" => Some(
14522                Unit::DegreeFahrenheitHourSquareFootPerBritishThermalUnitInternationalTableInch,
14523            ),
14524            "N89" => {
14525                Some(Unit::DegreeFahrenheitHourSquareFootPerBritishThermalUnitThermochemicalInch)
14526            }
14527            "N90" => Some(Unit::Kilofarad),
14528            "N91" => Some(Unit::ReciprocalJoule),
14529            "N92" => Some(Unit::Picosiemens),
14530            "N93" => Some(Unit::AmperePerPascal),
14531            "N94" => Some(Unit::Franklin),
14532            "N95" => Some(Unit::AmpereMinute),
14533            "N96" => Some(Unit::Biot),
14534            "N97" => Some(Unit::Gilbert),
14535            "N98" => Some(Unit::VoltPerPascal),
14536            "N99" => Some(Unit::Picovolt),
14537            "NA" => Some(Unit::MilligramPerKilogram),
14538            "NAR" => Some(Unit::NumberArticles),
14539            "NCL" => Some(Unit::NumberCells),
14540            "NEW" => Some(Unit::Newton),
14541            "NF" => Some(Unit::Message),
14542            "NIL" => Some(Unit::Nil),
14543            "NIU" => Some(Unit::NumberInternationalUnits),
14544            "NL" => Some(Unit::Load),
14545            "NM3" => Some(Unit::NormalisedCubicMetre),
14546            "NMI" => Some(Unit::NauticalMile),
14547            "NMP" => Some(Unit::NumberPacks),
14548            "NPT" => Some(Unit::NumberParts),
14549            "NT" => Some(Unit::NetTon),
14550            "NTU" => Some(Unit::NephelometricTurbidityUnit),
14551            "NU" => Some(Unit::NewtonMetre),
14552            "NX" => Some(Unit::PartPerThousand),
14553            "OA" => Some(Unit::Panel),
14554            "ODE" => Some(Unit::OzoneDepletionEquivalent),
14555            "ODG" => Some(Unit::OdsGrams),
14556            "ODK" => Some(Unit::OdsKilograms),
14557            "ODM" => Some(Unit::OdsMilligrams),
14558            "OHM" => Some(Unit::Ohm),
14559            "ON" => Some(Unit::OuncePerSquareYard),
14560            "ONZ" => Some(Unit::OunceAvoirdupois),
14561            "OPM" => Some(Unit::OscillationsPerMinute),
14562            "OT" => Some(Unit::OvertimeHour),
14563            "OZA" => Some(Unit::FluidOunceUs),
14564            "OZI" => Some(Unit::FluidOunceUk),
14565            "P1" => Some(Unit::Percent),
14566            "P10" => Some(Unit::CoulombPerMetre),
14567            "P11" => Some(Unit::Kiloweber),
14568            "P12" => Some(Unit::Gamma),
14569            "P13" => Some(Unit::Kilotesla),
14570            "P14" => Some(Unit::JoulePerSecond),
14571            "P15" => Some(Unit::JoulePerMinute),
14572            "P16" => Some(Unit::JoulePerHour),
14573            "P17" => Some(Unit::JoulePerDay),
14574            "P18" => Some(Unit::KilojoulePerSecond),
14575            "P19" => Some(Unit::KilojoulePerMinute),
14576            "P2" => Some(Unit::PoundPerFoot),
14577            "P20" => Some(Unit::KilojoulePerHour),
14578            "P21" => Some(Unit::KilojoulePerDay),
14579            "P22" => Some(Unit::Nanoohm),
14580            "P23" => Some(Unit::OhmCircularMilPerFoot),
14581            "P24" => Some(Unit::Kilohenry),
14582            "P25" => Some(Unit::LumenPerSquareFoot),
14583            "P26" => Some(Unit::Phot),
14584            "P27" => Some(Unit::Footcandle),
14585            "P28" => Some(Unit::CandelaPerSquareInch),
14586            "P29" => Some(Unit::Footlambert),
14587            "P30" => Some(Unit::Lambert),
14588            "P31" => Some(Unit::Stilb),
14589            "P32" => Some(Unit::CandelaPerSquareFoot),
14590            "P33" => Some(Unit::Kilocandela),
14591            "P34" => Some(Unit::Millicandela),
14592            "P35" => Some(Unit::HefnerKerze),
14593            "P36" => Some(Unit::InternationalCandle),
14594            "P37" => Some(Unit::BritishThermalUnitInternationalTablePerSquareFoot),
14595            "P38" => Some(Unit::BritishThermalUnitThermochemicalPerSquareFoot),
14596            "P39" => Some(Unit::CalorieThermochemicalPerSquareCentimetre),
14597            "P40" => Some(Unit::Langley),
14598            "P41" => Some(Unit::DecadeLogarithmic),
14599            "P42" => Some(Unit::PascalSquaredSecond),
14600            "P43" => Some(Unit::BelPerMetre),
14601            "P44" => Some(Unit::PoundMole),
14602            "P45" => Some(Unit::PoundMolePerSecond),
14603            "P46" => Some(Unit::PoundMolePerMinute),
14604            "P47" => Some(Unit::KilomolePerKilogram),
14605            "P48" => Some(Unit::PoundMolePerPound),
14606            "P49" => Some(Unit::NewtonSquareMetrePerAmpere),
14607            "P5" => Some(Unit::FivePack),
14608            "P50" => Some(Unit::WeberMetre),
14609            "P51" => Some(Unit::MolPerKilogramPascal),
14610            "P52" => Some(Unit::MolPerCubicMetrePascal),
14611            "P53" => Some(Unit::UnitPole),
14612            "P54" => Some(Unit::MilligrayPerSecond),
14613            "P55" => Some(Unit::MicrograyPerSecond),
14614            "P56" => Some(Unit::NanograyPerSecond),
14615            "P57" => Some(Unit::GrayPerMinute),
14616            "P58" => Some(Unit::MilligrayPerMinute),
14617            "P59" => Some(Unit::MicrograyPerMinute),
14618            "P60" => Some(Unit::NanograyPerMinute),
14619            "P61" => Some(Unit::GrayPerHour),
14620            "P62" => Some(Unit::MilligrayPerHour),
14621            "P63" => Some(Unit::MicrograyPerHour),
14622            "P64" => Some(Unit::NanograyPerHour),
14623            "P65" => Some(Unit::SievertPerSecond),
14624            "P66" => Some(Unit::MillisievertPerSecond),
14625            "P67" => Some(Unit::MicrosievertPerSecond),
14626            "P68" => Some(Unit::NanosievertPerSecond),
14627            "P69" => Some(Unit::RemPerSecond),
14628            "P70" => Some(Unit::SievertPerHour),
14629            "P71" => Some(Unit::MillisievertPerHour),
14630            "P72" => Some(Unit::MicrosievertPerHour),
14631            "P73" => Some(Unit::NanosievertPerHour),
14632            "P74" => Some(Unit::SievertPerMinute),
14633            "P75" => Some(Unit::MillisievertPerMinute),
14634            "P76" => Some(Unit::MicrosievertPerMinute),
14635            "P77" => Some(Unit::NanosievertPerMinute),
14636            "P78" => Some(Unit::ReciprocalSquareInch),
14637            "P79" => Some(Unit::PascalSquareMetrePerKilogram),
14638            "P80" => Some(Unit::MillipascalPerMetre),
14639            "P81" => Some(Unit::KilopascalPerMetre),
14640            "P82" => Some(Unit::HectopascalPerMetre),
14641            "P83" => Some(Unit::StandardAtmospherePerMetre),
14642            "P84" => Some(Unit::TechnicalAtmospherePerMetre),
14643            "P85" => Some(Unit::TorrPerMetre),
14644            "P86" => Some(Unit::PsiPerInch),
14645            "P87" => Some(Unit::CubicMetrePerSecondSquareMetre),
14646            "P88" => Some(Unit::Rhe),
14647            "P89" => Some(Unit::PoundForceFootPerInch),
14648            "P90" => Some(Unit::PoundForceInchPerInch),
14649            "P91" => Some(Unit::Perm0Oc),
14650            "P92" => Some(Unit::Perm23Oc),
14651            "P93" => Some(Unit::BytePerSecond),
14652            "P94" => Some(Unit::KilobytePerSecond),
14653            "P95" => Some(Unit::MegabytePerSecond),
14654            "P96" => Some(Unit::ReciprocalVolt),
14655            "P97" => Some(Unit::ReciprocalRadian),
14656            "P98" => Some(Unit::PascalToPowerSumStoichiometricNumbers),
14657            "P99" => Some(Unit::MolePerCubivMetreToPowerSumStoichiometricNumbers),
14658            "PAL" => Some(Unit::Pascal),
14659            "PD" => Some(Unit::Pad),
14660            "PFL" => Some(Unit::ProofLitre),
14661            "PGL" => Some(Unit::ProofGallon),
14662            "PI" => Some(Unit::Pitch),
14663            "PLA" => Some(Unit::DegreePlato),
14664            "PO" => Some(Unit::PoundPerInchLength),
14665            "PQ" => Some(Unit::PagePerInch),
14666            "PR" => Some(Unit::Pair),
14667            "PS" => Some(Unit::PoundForcePerSquareInch),
14668            "PTD" => Some(Unit::DryPintUs),
14669            "PTI" => Some(Unit::PintUk),
14670            "PTL" => Some(Unit::LiquidPintUs),
14671            "PTN" => Some(Unit::Portion),
14672            "Q10" => Some(Unit::JoulePerTesla),
14673            "Q11" => Some(Unit::Erlang),
14674            "Q12" => Some(Unit::Octet),
14675            "Q13" => Some(Unit::OctetPerSecond),
14676            "Q14" => Some(Unit::Shannon),
14677            "Q15" => Some(Unit::Hartley),
14678            "Q16" => Some(Unit::NaturalUnitInformation),
14679            "Q17" => Some(Unit::ShannonPerSecond),
14680            "Q18" => Some(Unit::HartleyPerSecond),
14681            "Q19" => Some(Unit::NaturalUnitInformationPerSecond),
14682            "Q20" => Some(Unit::SecondPerKilogramm),
14683            "Q21" => Some(Unit::WattSquareMetre),
14684            "Q22" => Some(Unit::SecondPerRadianCubicMetre),
14685            "Q23" => Some(Unit::WeberToPowerMinusOne),
14686            "Q24" => Some(Unit::ReciprocalInch),
14687            "Q25" => Some(Unit::Dioptre),
14688            "Q26" => Some(Unit::OnePerOne),
14689            "Q27" => Some(Unit::NewtonMetrePerMetre),
14690            "Q28" => Some(Unit::KilogramPerSquareMetrePascalSecond),
14691            "Q29" => Some(Unit::MicrogramPerHectogram),
14692            "Q3" => Some(Unit::Meal),
14693            "Q30" => Some(Unit::PhPotentialHydrogen),
14694            "Q31" => Some(Unit::KilojoulePerGram),
14695            "Q32" => Some(Unit::Femtolitre),
14696            "Q33" => Some(Unit::Picolitre),
14697            "Q34" => Some(Unit::Nanolitre),
14698            "Q35" => Some(Unit::MegawattsPerMinute),
14699            "Q36" => Some(Unit::SquareMetrePerCubicMetre),
14700            "Q37" => Some(Unit::StandardCubicMetrePerDay),
14701            "Q38" => Some(Unit::StandardCubicMetrePerHour),
14702            "Q39" => Some(Unit::NormalizedCubicMetrePerDay),
14703            "Q40" => Some(Unit::NormalizedCubicMetrePerHour),
14704            "Q41" => Some(Unit::JoulePerNormalisedCubicMetre),
14705            "Q42" => Some(Unit::JoulePerStandardCubicMetre),
14706            "QA" => Some(Unit::PageFacsimile),
14707            "QAN" => Some(Unit::QuarterAYear),
14708            "QB" => Some(Unit::PageHardcopy),
14709            "QR" => Some(Unit::Quire),
14710            "QTD" => Some(Unit::DryQuartUs),
14711            "QTI" => Some(Unit::QuartUk),
14712            "QTL" => Some(Unit::LiquidQuartUs),
14713            "QTR" => Some(Unit::QuarterUk),
14714            "R1" => Some(Unit::Pica),
14715            "R9" => Some(Unit::ThousandCubicMetre),
14716            "RH" => Some(Unit::RunningOrOperatingHour),
14717            "RM" => Some(Unit::Ream),
14718            "ROM" => Some(Unit::Room),
14719            "RP" => Some(Unit::PoundPerReam),
14720            "RPM" => Some(Unit::RevolutionsPerMinute),
14721            "RPS" => Some(Unit::RevolutionsPerSecond),
14722            "RT" => Some(Unit::RevenueTonMile),
14723            "S3" => Some(Unit::SquareFootPerSecond),
14724            "S4" => Some(Unit::SquareMetrePerSecond),
14725            "SAN" => Some(Unit::HalfYear6Months),
14726            "SCO" => Some(Unit::Score),
14727            "SCR" => Some(Unit::Scruple),
14728            "SEC" => Some(Unit::SecondUnitTime),
14729            "SET" => Some(Unit::Set),
14730            "SG" => Some(Unit::Segment),
14731            "SIE" => Some(Unit::Siemens),
14732            "SM3" => Some(Unit::StandardCubicMetre),
14733            "SMI" => Some(Unit::MileStatuteMile),
14734            "SQ" => Some(Unit::Square),
14735            "SQR" => Some(Unit::SquareRoofing),
14736            "SR" => Some(Unit::Strip),
14737            "STC" => Some(Unit::Stick),
14738            "STI" => Some(Unit::StoneUk),
14739            "STK" => Some(Unit::StickCigarette),
14740            "STL" => Some(Unit::StandardLitre),
14741            "STN" => Some(Unit::TonUsOrShortTonUkUs),
14742            "STW" => Some(Unit::Straw),
14743            "SW" => Some(Unit::Skein),
14744            "SX" => Some(Unit::Shipment),
14745            "SYR" => Some(Unit::Syringe),
14746            "T0" => Some(Unit::TelecommunicationLineInService),
14747            "T3" => Some(Unit::ThousandPiece),
14748            "TAH" => Some(Unit::KiloampereHourThousandAmpereHour),
14749            "TAN" => Some(Unit::TotalAcidNumber),
14750            "TI" => Some(Unit::ThousandSquareInch),
14751            "TIC" => Some(Unit::MetricTonIncludingContainer),
14752            "TIP" => Some(Unit::MetricTonIncludingInnerPackaging),
14753            "TKM" => Some(Unit::TonneKilometre),
14754            "TMS" => Some(Unit::KilogramImportedMeatLessOffal),
14755            "TNE" => Some(Unit::TonneMetricTon),
14756            "TP" => Some(Unit::TenPack),
14757            "TPI" => Some(Unit::TeethPerInch),
14758            "TPR" => Some(Unit::TenPair),
14759            "TQD" => Some(Unit::ThousandCubicMetrePerDay),
14760            "TRL" => Some(Unit::TrillionEur),
14761            "TST" => Some(Unit::TenSet),
14762            "TTS" => Some(Unit::TenThousandSticks),
14763            "U1" => Some(Unit::Treatment),
14764            "U2" => Some(Unit::Tablet),
14765            "UB" => Some(Unit::TelecommunicationLineInServiceAverage),
14766            "UC" => Some(Unit::TelecommunicationPort),
14767            "VA" => Some(Unit::VoltAmperePerKilogram),
14768            "VLT" => Some(Unit::Volt),
14769            "VP" => Some(Unit::PercentVolume),
14770            "W2" => Some(Unit::WetKilo),
14771            "WA" => Some(Unit::WattPerKilogram),
14772            "WB" => Some(Unit::WetPound),
14773            "WCD" => Some(Unit::Cord),
14774            "WE" => Some(Unit::WetTon),
14775            "WEB" => Some(Unit::Weber),
14776            "WEE" => Some(Unit::Week),
14777            "WG" => Some(Unit::WineGallon),
14778            "WHR" => Some(Unit::WattHour),
14779            "WM" => Some(Unit::WorkingMonth),
14780            "WSD" => Some(Unit::Standard),
14781            "WTT" => Some(Unit::Watt),
14782            "X1" => Some(Unit::GuntersChain),
14783            "YDK" => Some(Unit::SquareYard),
14784            "YDQ" => Some(Unit::CubicYard),
14785            "YRD" => Some(Unit::Yard),
14786            "Z11" => Some(Unit::HangingContainer),
14787            "Z9" => Some(Unit::Nanomole),
14788            "ZP" => Some(Unit::Page),
14789            "ZZ" => Some(Unit::MutuallyDefined),
14790            "X1A" => Some(Unit::DrumSteel),
14791            "X1B" => Some(Unit::DrumAluminium),
14792            "X1D" => Some(Unit::DrumPlywood),
14793            "X1F" => Some(Unit::ContainerFlexible),
14794            "X1G" => Some(Unit::DrumFibre),
14795            "X1W" => Some(Unit::DrumWooden),
14796            "X2C" => Some(Unit::BarrelWooden),
14797            "X3A" => Some(Unit::JerricanSteel),
14798            "X3H" => Some(Unit::JerricanPlastic),
14799            "X43" => Some(Unit::BagSuperBulk),
14800            "X44" => Some(Unit::BagPolybag),
14801            "X4A" => Some(Unit::BoxSteel),
14802            "X4B" => Some(Unit::BoxAluminium),
14803            "X4C" => Some(Unit::BoxNaturalWood),
14804            "X4D" => Some(Unit::BoxPlywood),
14805            "X4F" => Some(Unit::BoxReconstitutedWood),
14806            "X4G" => Some(Unit::BoxFibreboard),
14807            "X4H" => Some(Unit::BoxPlastic),
14808            "X5H" => Some(Unit::BagWovenPlastic),
14809            "X5L" => Some(Unit::BagTextile),
14810            "X5M" => Some(Unit::BagPaper),
14811            "X6H" => Some(Unit::CompositePackagingPlasticReceptacle),
14812            "X6P" => Some(Unit::CompositePackagingGlassReceptacle),
14813            "X7A" => Some(Unit::CaseCar),
14814            "X7B" => Some(Unit::CaseWooden),
14815            "X8A" => Some(Unit::PalletWooden),
14816            "X8B" => Some(Unit::CrateWooden),
14817            "X8C" => Some(Unit::BundleWooden),
14818            "XAA" => Some(Unit::IntermediateBulkContainerRigidPlastic),
14819            "XAB" => Some(Unit::ReceptacleFibre),
14820            "XAC" => Some(Unit::ReceptaclePaper),
14821            "XAD" => Some(Unit::ReceptacleWooden),
14822            "XAE" => Some(Unit::Aerosol),
14823            "XAF" => Some(Unit::PalletModularCollars80cms60cms),
14824            "XAG" => Some(Unit::PalletShrinkwrapped),
14825            "XAH" => Some(Unit::Pallet100cms110cms),
14826            "XAI" => Some(Unit::Clamshell),
14827            "XAJ" => Some(Unit::Cone),
14828            "XAL" => Some(Unit::Ball_Dup),
14829            "XAM" => Some(Unit::AmpouleNonProtected),
14830            "XAP" => Some(Unit::AmpouleProtected),
14831            "XAT" => Some(Unit::Atomizer),
14832            "XAV" => Some(Unit::Capsule),
14833            "XB4" => Some(Unit::Belt),
14834            "XBA" => Some(Unit::Barrel),
14835            "XBB" => Some(Unit::Bobbin),
14836            "XBC" => Some(Unit::BottlecrateBottlerack),
14837            "XBD" => Some(Unit::Board),
14838            "XBE" => Some(Unit::Bundle),
14839            "XBF" => Some(Unit::BalloonNonProtected),
14840            "XBG" => Some(Unit::Bag),
14841            "XBH" => Some(Unit::Bunch),
14842            "XBI" => Some(Unit::Bin),
14843            "XBJ" => Some(Unit::Bucket),
14844            "XBK" => Some(Unit::Basket),
14845            "XBL" => Some(Unit::BaleCompressed),
14846            "XBM" => Some(Unit::Basin),
14847            "XBN" => Some(Unit::BaleNonCompressed),
14848            "XBO" => Some(Unit::BottleNonProtectedCylindrical),
14849            "XBP" => Some(Unit::BalloonProtected),
14850            "XBQ" => Some(Unit::BottleProtectedCylindrical),
14851            "XBR" => Some(Unit::Bar),
14852            "XBS" => Some(Unit::BottleNonProtectedBulbous),
14853            "XBT" => Some(Unit::Bolt),
14854            "XBU" => Some(Unit::Butt),
14855            "XBV" => Some(Unit::BottleProtectedBulbous),
14856            "XBW" => Some(Unit::BoxForLiquids),
14857            "XBX" => Some(Unit::Box),
14858            "XBY" => Some(Unit::BoardInBundleBunchTruss),
14859            "XBZ" => Some(Unit::BarsInBundleBunchTruss),
14860            "XCA" => Some(Unit::CanRectangular),
14861            "XCB" => Some(Unit::CrateBeer),
14862            "XCC" => Some(Unit::Churn),
14863            "XCD" => Some(Unit::CanWithHandleAndSpout),
14864            "XCE" => Some(Unit::Creel),
14865            "XCF" => Some(Unit::Coffer),
14866            "XCG" => Some(Unit::Cage),
14867            "XCH" => Some(Unit::Chest),
14868            "XCI" => Some(Unit::Canister),
14869            "XCJ" => Some(Unit::Coffin),
14870            "XCK" => Some(Unit::Cask),
14871            "XCL" => Some(Unit::Coil),
14872            "XCM" => Some(Unit::Card_Dup),
14873            "XCN" => Some(Unit::ContainerNotOtherwiseSpecifiedAsTransportEquipment),
14874            "XCO" => Some(Unit::CarboyNonProtected),
14875            "XCP" => Some(Unit::CarboyProtected),
14876            "XCQ" => Some(Unit::Cartridge),
14877            "XCR" => Some(Unit::Crate),
14878            "XCS" => Some(Unit::Case),
14879            "XCT" => Some(Unit::Carton),
14880            "XCU" => Some(Unit::Cup),
14881            "XCV" => Some(Unit::Cover),
14882            "XCW" => Some(Unit::CageRoll),
14883            "XCX" => Some(Unit::CanCylindrical),
14884            "XCY" => Some(Unit::Cylinder),
14885            "XCZ" => Some(Unit::Canvas),
14886            "XDA" => Some(Unit::CrateMultipleLayerPlastic),
14887            "XDB" => Some(Unit::CrateMultipleLayerWooden),
14888            "XDC" => Some(Unit::CrateMultipleLayerCardboard),
14889            "XDG" => Some(Unit::CageCommonwealthHandlingEquipmentPoolChep),
14890            "XDH" => Some(Unit::BoxCommonwealthHandlingEquipmentPoolChepEurobox),
14891            "XDI" => Some(Unit::DrumIron),
14892            "XDJ" => Some(Unit::DemijohnNonProtected),
14893            "XDK" => Some(Unit::CrateBulkCardboard),
14894            "XDL" => Some(Unit::CrateBulkPlastic),
14895            "XDM" => Some(Unit::CrateBulkWooden),
14896            "XDN" => Some(Unit::Dispenser),
14897            "XDP" => Some(Unit::DemijohnProtected),
14898            "XDR" => Some(Unit::Drum),
14899            "XDS" => Some(Unit::TrayOneLayerNoCoverPlastic),
14900            "XDT" => Some(Unit::TrayOneLayerNoCoverWooden),
14901            "XDU" => Some(Unit::TrayOneLayerNoCoverPolystyrene),
14902            "XDV" => Some(Unit::TrayOneLayerNoCoverCardboard),
14903            "XDW" => Some(Unit::TrayTwoLayersNoCoverPlasticTray),
14904            "XDX" => Some(Unit::TrayTwoLayersNoCoverWooden),
14905            "XDY" => Some(Unit::TrayTwoLayersNoCoverCardboard),
14906            "XEC" => Some(Unit::BagPlastic),
14907            "XED" => Some(Unit::CaseWithPalletBase),
14908            "XEE" => Some(Unit::CaseWithPalletBaseWooden),
14909            "XEF" => Some(Unit::CaseWithPalletBaseCardboard),
14910            "XEG" => Some(Unit::CaseWithPalletBasePlastic),
14911            "XEH" => Some(Unit::CaseWithPalletBaseMetal),
14912            "XEI" => Some(Unit::CaseIsothermic),
14913            "XEN" => Some(Unit::Envelope),
14914            "XFB" => Some(Unit::Flexibag),
14915            "XFC" => Some(Unit::CrateFruit),
14916            "XFD" => Some(Unit::CrateFramed),
14917            "XFE" => Some(Unit::Flexitank),
14918            "XFI" => Some(Unit::Firkin),
14919            "XFL" => Some(Unit::Flask),
14920            "XFO" => Some(Unit::Footlocker),
14921            "XFP" => Some(Unit::Filmpack),
14922            "XFR" => Some(Unit::Frame),
14923            "XFT" => Some(Unit::Foodtainer),
14924            "XFW" => Some(Unit::CartFlatbed),
14925            "XFX" => Some(Unit::BagFlexibleContainer),
14926            "XGB" => Some(Unit::BottleGas),
14927            "XGI" => Some(Unit::Girder),
14928            "XGL" => Some(Unit::ContainerGallon),
14929            "XGR" => Some(Unit::ReceptacleGlass),
14930            "XGU" => Some(Unit::TrayContainingHorizontallyStackedFlatItems),
14931            "XGY" => Some(Unit::BagGunny),
14932            "XGZ" => Some(Unit::GirdersInBundleBunchTruss),
14933            "XHA" => Some(Unit::BasketWithHandlePlastic),
14934            "XHB" => Some(Unit::BasketWithHandleWooden),
14935            "XHC" => Some(Unit::BasketWithHandleCardboard),
14936            "XHG" => Some(Unit::Hogshead),
14937            "XHN" => Some(Unit::Hanger),
14938            "XHR" => Some(Unit::Hamper),
14939            "XIA" => Some(Unit::PackageDisplayWooden),
14940            "XIB" => Some(Unit::PackageDisplayCardboard),
14941            "XIC" => Some(Unit::PackageDisplayPlastic),
14942            "XID" => Some(Unit::PackageDisplayMetal),
14943            "XIE" => Some(Unit::PackageShow),
14944            "XIF" => Some(Unit::PackageFlow),
14945            "XIG" => Some(Unit::PackagePaperWrapped),
14946            "XIH" => Some(Unit::DrumPlastic),
14947            "XIK" => Some(Unit::PackageCardboardWithBottleGripHoles),
14948            "XIL" => Some(Unit::TrayRigidLiddedStackableCenTs144822002),
14949            "XIN" => Some(Unit::Ingot),
14950            "XIZ" => Some(Unit::IngotsInBundleBunchTruss),
14951            "XJB" => Some(Unit::BagJumbo),
14952            "XJC" => Some(Unit::JerricanRectangular),
14953            "XJG" => Some(Unit::Jug),
14954            "XJR" => Some(Unit::Jar),
14955            "XJT" => Some(Unit::Jutebag),
14956            "XJY" => Some(Unit::JerricanCylindrical),
14957            "XKG" => Some(Unit::Keg),
14958            "XKI" => Some(Unit::Kit_Dup),
14959            "XLE" => Some(Unit::Luggage),
14960            "XLG" => Some(Unit::Log),
14961            "XLT" => Some(Unit::Lot),
14962            "XLU" => Some(Unit::Lug),
14963            "XLV" => Some(Unit::Liftvan),
14964            "XLZ" => Some(Unit::LogsInBundleBunchTruss),
14965            "XMA" => Some(Unit::CrateMetal),
14966            "XMB" => Some(Unit::BagMultiply),
14967            "XMC" => Some(Unit::CrateMilk),
14968            "XME" => Some(Unit::ContainerMetal),
14969            "XMR" => Some(Unit::ReceptacleMetal),
14970            "XMS" => Some(Unit::SackMultiWall),
14971            "XMT" => Some(Unit::Mat),
14972            "XMW" => Some(Unit::ReceptaclePlasticWrapped),
14973            "XMX" => Some(Unit::Matchbox),
14974            "XNA" => Some(Unit::NotAvailable),
14975            "XNE" => Some(Unit::UnpackedOrUnpackaged),
14976            "XNF" => Some(Unit::UnpackedOrUnpackagedSingleUnit),
14977            "XNG" => Some(Unit::UnpackedOrUnpackagedMultipleUnits),
14978            "XNS" => Some(Unit::Nest),
14979            "XNT" => Some(Unit::Net),
14980            "XNU" => Some(Unit::NetTubePlastic),
14981            "XNV" => Some(Unit::NetTubeTextile),
14982            "XO1" => Some(Unit::TwoSidedCageOnWheelsWithFixingStrap),
14983            "XO2" => Some(Unit::Trolley),
14984            "XO3" => Some(Unit::OnewayPalletIso012EuroPallet),
14985            "XO4" => Some(Unit::OnewayPalletIso111EuroPallet),
14986            "XO5" => Some(Unit::OnewayPalletIso221EuroPallet),
14987            "XO6" => Some(Unit::PalletWithExceptionalDimensions),
14988            "XO7" => Some(Unit::WoodenPallet40CmX80Cm),
14989            "XO8" => Some(Unit::PlasticPalletSrs60CmX80Cm),
14990            "XO9" => Some(Unit::PlasticPalletSrs80CmX120Cm),
14991            "XOA" => Some(Unit::PalletChep40CmX60Cm),
14992            "XOB" => Some(Unit::PalletChep80CmX120Cm),
14993            "XOC" => Some(Unit::PalletChep100CmX120Cm),
14994            "XOD" => Some(Unit::PalletAs40681993),
14995            "XOE" => Some(Unit::PalletIsoT11),
14996            "XOF" => Some(Unit::PlatformUnspecifiedWeightOrDimension),
14997            "XOG" => Some(Unit::PalletIso012EuroPallet),
14998            "XOH" => Some(Unit::PalletIso111EuroPallet),
14999            "XOI" => Some(Unit::PalletIso221EuroPallet),
15000            "XOJ" => Some(Unit::_14EuroPallet),
15001            "XOK" => Some(Unit::Block),
15002            "XOL" => Some(Unit::_18EuroPallet),
15003            "XOM" => Some(Unit::SyntheticPalletIso1),
15004            "XON" => Some(Unit::SyntheticPalletIso2),
15005            "XOP" => Some(Unit::WholesalerPallet),
15006            "XOQ" => Some(Unit::Pallet80X100Cm),
15007            "XOR" => Some(Unit::Pallet60X100Cm),
15008            "XOS" => Some(Unit::OnewayPallet),
15009            "XOT" => Some(Unit::Octabin),
15010            "XOU" => Some(Unit::ContainerOuter),
15011            "XOV" => Some(Unit::ReturnablePallet),
15012            "XOW" => Some(Unit::LargeBagPalletSized),
15013            "XOX" => Some(Unit::AWheeledPalletWithRaisedRim81X67X135),
15014            "XOY" => Some(Unit::AWheeledPalletWithRaisedRim81X72X135),
15015            "XOZ" => Some(Unit::WheeledPalletWithRaisedRim81X60X16),
15016            "XP1" => Some(Unit::ChepPallet60CmX80Cm),
15017            "XP2" => Some(Unit::Pan),
15018            "XP3" => Some(Unit::LprPallet60CmX80Cm),
15019            "XP4" => Some(Unit::LprPallet80CmX120Cm),
15020            "XPA" => Some(Unit::Packet),
15021            "XPB" => Some(Unit::PalletBoxCombinedOpenEndedBoxAndPallet),
15022            "XPC" => Some(Unit::Parcel),
15023            "XPD" => Some(Unit::PalletModularCollars80cms100cms),
15024            "XPE" => Some(Unit::PalletModularCollars80cms120cms),
15025            "XPF" => Some(Unit::Pen),
15026            "XPG" => Some(Unit::Plate),
15027            "XPH" => Some(Unit::Pitcher),
15028            "XPI" => Some(Unit::Pipe),
15029            "XPJ" => Some(Unit::Punnet),
15030            "XPK" => Some(Unit::Package),
15031            "XPL" => Some(Unit::Pail),
15032            "XPN" => Some(Unit::Plank),
15033            "XPO" => Some(Unit::Pouch),
15034            "XPP" => Some(Unit::Piece_Dup),
15035            "XPR" => Some(Unit::ReceptaclePlastic),
15036            "XPT" => Some(Unit::Pot),
15037            "XPU" => Some(Unit::Tray),
15038            "XPV" => Some(Unit::PipesInBundleBunchTruss),
15039            "XPX" => Some(Unit::Pallet),
15040            "XPY" => Some(Unit::PlatesInBundleBunchTruss),
15041            "XPZ" => Some(Unit::PlanksInBundleBunchTruss),
15042            "XQA" => Some(Unit::DrumSteelNonRemovableHead),
15043            "XQB" => Some(Unit::DrumSteelRemovableHead),
15044            "XQC" => Some(Unit::DrumAluminiumNonRemovableHead),
15045            "XQD" => Some(Unit::DrumAluminiumRemovableHead),
15046            "XQF" => Some(Unit::DrumPlasticNonRemovableHead),
15047            "XQG" => Some(Unit::DrumPlasticRemovableHead),
15048            "XQH" => Some(Unit::BarrelWoodenBungType),
15049            "XQJ" => Some(Unit::BarrelWoodenRemovableHead),
15050            "XQK" => Some(Unit::JerricanSteelNonRemovableHead),
15051            "XQL" => Some(Unit::JerricanSteelRemovableHead),
15052            "XQM" => Some(Unit::JerricanPlasticNonRemovableHead),
15053            "XQN" => Some(Unit::JerricanPlasticRemovableHead),
15054            "XQP" => Some(Unit::BoxWoodenNaturalWoodOrdinary),
15055            "XQQ" => Some(Unit::BoxWoodenNaturalWoodWithSiftProofWalls),
15056            "XQR" => Some(Unit::BoxPlasticExpanded),
15057            "XQS" => Some(Unit::BoxPlasticSolid),
15058            "XRD" => Some(Unit::Rod),
15059            "XRG" => Some(Unit::Ring),
15060            "XRJ" => Some(Unit::RackClothingHanger),
15061            "XRK" => Some(Unit::Rack),
15062            "XRL" => Some(Unit::Reel),
15063            "XRO" => Some(Unit::Roll),
15064            "XRT" => Some(Unit::Rednet),
15065            "XRZ" => Some(Unit::RodsInBundleBunchTruss),
15066            "XSA" => Some(Unit::Sack),
15067            "XSB" => Some(Unit::Slab),
15068            "XSC" => Some(Unit::CrateShallow),
15069            "XSD" => Some(Unit::Spindle),
15070            "XSE" => Some(Unit::SeaChest),
15071            "XSH" => Some(Unit::Sachet),
15072            "XSI" => Some(Unit::Skid),
15073            "XSK" => Some(Unit::CaseSkeleton),
15074            "XSL" => Some(Unit::Slipsheet),
15075            "XSM" => Some(Unit::Sheetmetal),
15076            "XSO" => Some(Unit::Spool),
15077            "XSP" => Some(Unit::SheetPlasticWrapping),
15078            "XSS" => Some(Unit::CaseSteel),
15079            "XST" => Some(Unit::Sheet),
15080            "XSU" => Some(Unit::Suitcase),
15081            "XSV" => Some(Unit::EnvelopeSteel),
15082            "XSW" => Some(Unit::Shrinkwrapped),
15083            "XSX" => Some(Unit::Set_Dup),
15084            "XSY" => Some(Unit::Sleeve),
15085            "XSZ" => Some(Unit::SheetsInBundleBunchTruss),
15086            "XT1" => Some(Unit::Tablet_Dup),
15087            "XTB" => Some(Unit::Tub),
15088            "XTC" => Some(Unit::TeaChest),
15089            "XTD" => Some(Unit::TubeCollapsible),
15090            "XTE" => Some(Unit::Tyre_Dup),
15091            "XTG" => Some(Unit::TankContainerGeneric),
15092            "XTI" => Some(Unit::Tierce),
15093            "XTK" => Some(Unit::TankRectangular),
15094            "XTL" => Some(Unit::TubWithLid),
15095            "XTN" => Some(Unit::Tin),
15096            "XTO" => Some(Unit::Tun),
15097            "XTR" => Some(Unit::Trunk),
15098            "XTS" => Some(Unit::Truss),
15099            "XTT" => Some(Unit::BagTote),
15100            "XTU" => Some(Unit::Tube),
15101            "XTV" => Some(Unit::TubeWithNozzle),
15102            "XTW" => Some(Unit::PalletTriwall),
15103            "XTY" => Some(Unit::TankCylindrical),
15104            "XTZ" => Some(Unit::TubesInBundleBunchTruss),
15105            "XUC" => Some(Unit::Uncaged),
15106            "XUN" => Some(Unit::Unit),
15107            "XVA" => Some(Unit::Vat),
15108            "XVG" => Some(Unit::BulkGasAt1031MbarAnd15C),
15109            "XVI" => Some(Unit::Vial),
15110            "XVK" => Some(Unit::Vanpack),
15111            "XVL" => Some(Unit::BulkLiquid),
15112            "XVN" => Some(Unit::Vehicle),
15113            "XVO" => Some(Unit::BulkSolidLargeParticlesNodules),
15114            "XVP" => Some(Unit::VacuumPacked),
15115            "XVQ" => Some(Unit::BulkLiquefiedGasAtAbnormalTemperaturePressure),
15116            "XVR" => Some(Unit::BulkSolidGranularParticlesGrains),
15117            "XVS" => Some(Unit::BulkScrapMetal),
15118            "XVY" => Some(Unit::BulkSolidFineParticlesPowders),
15119            "XWA" => Some(Unit::IntermediateBulkContainer),
15120            "XWB" => Some(Unit::Wickerbottle),
15121            "XWC" => Some(Unit::IntermediateBulkContainerSteel),
15122            "XWD" => Some(Unit::IntermediateBulkContainerAluminium),
15123            "XWF" => Some(Unit::IntermediateBulkContainerMetal),
15124            "XWG" => Some(Unit::IntermediateBulkContainerSteelPressurised10Kpa),
15125            "XWH" => Some(Unit::IntermediateBulkContainerAluminiumPressurised10Kpa),
15126            "XWJ" => Some(Unit::IntermediateBulkContainerMetalPressure10Kpa),
15127            "XWK" => Some(Unit::IntermediateBulkContainerSteelLiquid),
15128            "XWL" => Some(Unit::IntermediateBulkContainerAluminiumLiquid),
15129            "XWM" => Some(Unit::IntermediateBulkContainerMetalLiquid),
15130            "XWN" => Some(Unit::IntermediateBulkContainerWovenPlasticWithoutCoatLiner),
15131            "XWP" => Some(Unit::IntermediateBulkContainerWovenPlasticCoated),
15132            "XWQ" => Some(Unit::IntermediateBulkContainerWovenPlasticWithLiner),
15133            "XWR" => Some(Unit::IntermediateBulkContainerWovenPlasticCoatedAndLiner),
15134            "XWS" => Some(Unit::IntermediateBulkContainerPlasticFilm),
15135            "XWT" => Some(Unit::IntermediateBulkContainerTextileWithOutCoatLiner),
15136            "XWU" => Some(Unit::IntermediateBulkContainerNaturalWoodWithInnerLiner),
15137            "XWV" => Some(Unit::IntermediateBulkContainerTextileCoated),
15138            "XWW" => Some(Unit::IntermediateBulkContainerTextileWithLiner),
15139            "XWX" => Some(Unit::IntermediateBulkContainerTextileCoatedAndLiner),
15140            "XWY" => Some(Unit::IntermediateBulkContainerPlywoodWithInnerLiner),
15141            "XWZ" => Some(Unit::IntermediateBulkContainerReconstitutedWoodWithInnerLiner),
15142            "XXA" => Some(Unit::BagWovenPlasticWithoutInnerCoatLiner),
15143            "XXB" => Some(Unit::BagWovenPlasticSiftProof),
15144            "XXC" => Some(Unit::BagWovenPlasticWaterResistant),
15145            "XXD" => Some(Unit::BagPlasticsFilm),
15146            "XXF" => Some(Unit::BagTextileWithoutInnerCoatLiner),
15147            "XXG" => Some(Unit::BagTextileSiftProof),
15148            "XXH" => Some(Unit::BagTextileWaterResistant),
15149            "XXJ" => Some(Unit::BagPaperMultiWall),
15150            "XXK" => Some(Unit::BagPaperMultiWallWaterResistant),
15151            "XYA" => Some(Unit::CompositePackagingPlasticReceptacleInSteelDrum),
15152            "XYB" => Some(Unit::CompositePackagingPlasticReceptacleInSteelCrateBox),
15153            "XYC" => Some(Unit::CompositePackagingPlasticReceptacleInAluminiumDrum),
15154            "XYD" => Some(Unit::CompositePackagingPlasticReceptacleInAluminiumCrate),
15155            "XYF" => Some(Unit::CompositePackagingPlasticReceptacleInWoodenBox),
15156            "XYG" => Some(Unit::CompositePackagingPlasticReceptacleInPlywoodDrum),
15157            "XYH" => Some(Unit::CompositePackagingPlasticReceptacleInPlywoodBox),
15158            "XYJ" => Some(Unit::CompositePackagingPlasticReceptacleInFibreDrum),
15159            "XYK" => Some(Unit::CompositePackagingPlasticReceptacleInFibreboardBox),
15160            "XYL" => Some(Unit::CompositePackagingPlasticReceptacleInPlasticDrum),
15161            "XYM" => Some(Unit::CompositePackagingPlasticReceptacleInSolidPlasticBox),
15162            "XYN" => Some(Unit::CompositePackagingGlassReceptacleInSteelDrum),
15163            "XYP" => Some(Unit::CompositePackagingGlassReceptacleInSteelCrateBox),
15164            "XYQ" => Some(Unit::CompositePackagingGlassReceptacleInAluminiumDrum),
15165            "XYR" => Some(Unit::CompositePackagingGlassReceptacleInAluminiumCrate),
15166            "XYS" => Some(Unit::CompositePackagingGlassReceptacleInWoodenBox),
15167            "XYT" => Some(Unit::CompositePackagingGlassReceptacleInPlywoodDrum),
15168            "XYV" => Some(Unit::CompositePackagingGlassReceptacleInWickerworkHamper),
15169            "XYW" => Some(Unit::CompositePackagingGlassReceptacleInFibreDrum),
15170            "XYX" => Some(Unit::CompositePackagingGlassReceptacleInFibreboardBox),
15171            "XYY" => Some(Unit::CompositePackagingGlassReceptacleInExpandablePlasticPack),
15172            "XYZ" => Some(Unit::CompositePackagingGlassReceptacleInSolidPlasticPack),
15173            "XZA" => Some(Unit::IntermediateBulkContainerPaperMultiWall),
15174            "XZB" => Some(Unit::BagLarge),
15175            "XZC" => Some(Unit::IntermediateBulkContainerPaperMultiWallWaterResistant),
15176            "XZD" => Some(Unit::IntermediateBulkContainerRigidPlasticWithStructuralEquipmentSolids),
15177            "XZF" => Some(Unit::IntermediateBulkContainerRigidPlasticFreestandingSolids),
15178            "XZG" => {
15179                Some(Unit::IntermediateBulkContainerRigidPlasticWithStructuralEquipmentPressurised)
15180            }
15181            "XZH" => Some(Unit::IntermediateBulkContainerRigidPlasticFreestandingPressurised),
15182            "XZJ" => {
15183                Some(Unit::IntermediateBulkContainerRigidPlasticWithStructuralEquipmentLiquids)
15184            }
15185            "XZK" => Some(Unit::IntermediateBulkContainerRigidPlasticFreestandingLiquids),
15186            "XZL" => Some(Unit::IntermediateBulkContainerCompositeRigidPlasticSolids),
15187            "XZM" => Some(Unit::IntermediateBulkContainerCompositeFlexiblePlasticSolids),
15188            "XZN" => Some(Unit::IntermediateBulkContainerCompositeRigidPlasticPressurised),
15189            "XZP" => Some(Unit::IntermediateBulkContainerCompositeFlexiblePlasticPressurised),
15190            "XZQ" => Some(Unit::IntermediateBulkContainerCompositeRigidPlasticLiquids),
15191            "XZR" => Some(Unit::IntermediateBulkContainerCompositeFlexiblePlasticLiquids),
15192            "XZS" => Some(Unit::IntermediateBulkContainerComposite),
15193            "XZT" => Some(Unit::IntermediateBulkContainerFibreboard),
15194            "XZU" => Some(Unit::IntermediateBulkContainerFlexible),
15195            "XZV" => Some(Unit::IntermediateBulkContainerMetalOtherThanSteel),
15196            "XZW" => Some(Unit::IntermediateBulkContainerNaturalWood),
15197            "XZX" => Some(Unit::IntermediateBulkContainerPlywood),
15198            "XZY" => Some(Unit::IntermediateBulkContainerReconstitutedWood),
15199            "XZZ" => Some(Unit::MutuallyDefined_Dup),
15200            _ => None,
15201        }
15202    }
15203}