vin-info 0.1.2

VIN (Vehicle identifier number) parser
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
//Generated file

const UNKNOWN: &str = "Unknown";

pub const fn map_wmi_to_manufacturer(wmi: &str) -> &'static str {
    match wmi.as_bytes()[0] {
        b'2' => match wmi.as_bytes()[1] {
            b'T' => match wmi.as_bytes()[2] {
                b'U' => "Tri-Star Industries Limited",
                b'1' => "Toyota Motor Manufacturing Canada",
                b'2' => "Toyota Motor Manufacturing Canada",
                b'3' => "Toyota Motor Manufacturing Canada",
                _ => UNKNOWN,
            },
            b'P' => match wmi.as_bytes()[2] {
                b'C' => "Volvo Group Canada, Inc",
                b'5' => "Fca Canada Inc.",
                b'3' => "Fca Canada Inc.",
                b'4' => "Fca Canada Inc.",
                b'7' => "Fca Canada Inc.",
                _ => UNKNOWN,
            },
            b'N' => match wmi.as_bytes()[2] {
                b'V' => "Nova Bus Inc.",
                _ => UNKNOWN,
            },
            b'M' => match wmi.as_bytes()[2] {
                b'G' => "Motor Coach Industries Limited",
                b'E' => "Ford Motor Company Of Canada, Ltd.",
                b'R' => "Ford Motor Company Of Canada, Ltd.",
                b'1' => "Mack Canada Inc.",
                _ => UNKNOWN,
            },
            b'F' => match wmi.as_bytes()[2] {
                b'Y' => "New Flyer Industries Canada Ulc",
                b'B' => "Ford Motor Company Of Canada, Ltd.",
                b'A' => "Ford Motor Company Of Canada, Ltd.",
                b'M' => "Ford Motor Company Of Canada, Ltd.",
                b'U' => "Freightliner  Corporation",
                b'T' => "Ford Motor Company Of Canada, Ltd.",
                b'W' => "Sterling Trucks (Daimler Division)",
                _ => UNKNOWN,
            },
            b'B' => match wmi.as_bytes()[2] {
                b'1' => "Daimlerchrysler Commercial Buses North America (Canada)",
                b'5' => "Fca Canada Inc.",
                b'3' => "Fca Canada Inc.",
                b'X' => "Bombardier Recreational Products Inc ",
                b'4' => "Fca Canada Inc.",
                b'8' => "Fca Canada Inc.",
                b'A' => "Daimlerchrysler Commercial Buses North America (Canada)",
                b'C' => "American Motors Corp.",
                b'7' => "Fca Canada Inc.",
                _ => UNKNOWN,
            },
            b'J' => match wmi.as_bytes()[2] {
                b'5' => "Fca Canada Inc.",
                b'4' => "Fca Canada Inc.",
                _ => UNKNOWN,
            },
            b'D' => match wmi.as_bytes()[2] {
                b'5' => "Fca Canada Inc.",
                b'4' => "Fca Canada Inc.",
                b'8' => "Fca Canada Inc.",
                b'3' => "Fca Canada Inc.",
                b'7' => "Fca Canada Inc.",
                _ => UNKNOWN,
            },
            b'G' => match wmi.as_bytes()[2] {
                b'J' => "General Motors Llc",
                b'A' => "General Motors Llc",
                b'H' => "General Motors Llc",
                b'0' => "General Motors Llc",
                b'1' => "General Motors Llc",
                b'7' => "General Motors Llc",
                b'4' => "General Motors Llc",
                b'6' => "General Motors Llc",
                b'2' => "General Motors Llc",
                b'3' => "General Motors Llc",
                b'N' => "General Motors Llc",
                b'K' => "General Motors Llc",
                b'8' => "General Motors Llc",
                b'5' => "General Motors Llc",
                b'T' => "General Motors Llc",
                b'C' => "General Motors Llc",
                _ => UNKNOWN,
            },
            b'C' => match wmi.as_bytes()[2] {
                b'5' => "Fca Canada Inc.",
                b'3' => "Fca Canada Inc.",
                b'M' => "American Motors (Canada) Inc",
                b'1' => "General Motors Llc",
                b'2' => "General Motors Llc",
                b'4' => "Fca Canada Inc.",
                b'A' => "Fca Canada Inc.",
                b'8' => "Fca Canada Inc.",
                b'C' => "Cami Automotive Inc",
                b'T' => "General Motors Llc",
                b'K' => "General Motors Llc",
                b'N' => "General Motors Llc",
                b'G' => "General Motors Llc",
                b'6' => "Fca Canada Inc.",
                b'0' => "Cami Automotive Inc",
                _ => UNKNOWN,
            },
            b'H' => match wmi.as_bytes()[2] {
                b'G' => "Honda Of Canada Mfg., Inc.",
                b'H' => "Honda Of Canada Mfg., Inc.",
                b'K' => "Honda Of Canada Mfg., Inc.",
                b'N' => "Honda Of Canada Mfg., Inc.",
                b'P' => "Navistar Canada, Inc.",
                b'S' => "Navistar Canada, Inc.",
                b'J' => "Honda Of Canada Mfg., Inc.",
                b'U' => "Honda Of Canada Mfg., Inc.",
                _ => UNKNOWN,
            },
            b'L' => match wmi.as_bytes()[2] {
                b'N' => "Ford Motor Company Of Canada, Ltd.",
                b'M' => "Ford Motor Company Of Canada, Ltd.",
                _ => UNKNOWN,
            },
            b'E' => match wmi.as_bytes()[2] {
                b'3' => "Fca Canada Inc.",
                b'Z' => "Electra Meccanica Vehicles Corporation",
                _ => UNKNOWN,
            },
            b'A' => match wmi.as_bytes()[2] {
                b'3' => "Fca Canada Inc.",
                b'8' => "Fca Canada Inc.",
                b'4' => "Fca Canada Inc.",
                b'Z' => "Hino Motors Canada, Ltd",
                b'7' => "Fca Canada Inc.",
                _ => UNKNOWN,
            },
            b'X' => match wmi.as_bytes()[2] {
                b'M' => "Chrysler Group Llc(Usa),Chrysler Canada, Chrysler De Mexico",
                b'P' => "Peterbilt Motors Company",
                b'K' => "Kenworth Truck Company",
                _ => UNKNOWN,
            },
            b'S' => match wmi.as_bytes()[2] {
                b'2' => "Suzuki Motor Of America, Inc",
                _ => UNKNOWN,
            },
            b'V' => match wmi.as_bytes()[2] {
                b'4' => "Fca Canada Inc.",
                b'8' => "Chrysler Group Llc(Usa),Chrysler Canada, Chrysler De Mexico",
                _ => UNKNOWN,
            },
            b'W' => match wmi.as_bytes()[2] {
                b'K' => "Western Star Trucks Inc",
                b'E' => "Western Star Trucks Inc",
                _ => UNKNOWN,
            },
            _ => UNKNOWN,
        },
        b'W' => match wmi.as_bytes()[1] {
            b'E' => match wmi.as_bytes()[2] {
                b'B' => "Evobus Gmbh",
                b'W' => "E-Bility Gmbh",
                _ => UNKNOWN,
            },
            b'C' => match wmi.as_bytes()[2] {
                b'D' => "Daimler Chrysler Ag",
                _ => UNKNOWN,
            },
            b'D' => match wmi.as_bytes()[2] {
                b'Z' => "Mercedes-Benz Usa, Llc (Sprinter)",
                b'W' => "Mercedes-Benz, Ag",
                b'D' => "Mercedes-Benz Cars",
                b'B' => "Mercedes-Benz Cars",
                b'R' => "Daimler Chrysler Ag",
                b'4' => "Mercedes-Benz, Ag",
                b'C' => "Mercedes-Benz Cars",
                b'5' => "Daimler Chrysler Ag",
                b'8' => "Mercedes-Benz, Ag",
                b'Y' => "Daimler Chrysler Ag",
                b'6' => "Daimler Chrysler Ag",
                b'3' => "Mercedes-Benz, Ag",
                b'0' => "Mercedes-Benz, Ag",
                b'2' => "Daimler Chrysler Ag",
                _ => UNKNOWN,
            },
            b'1' => match wmi.as_bytes()[2] {
                b'Z' => "Mercedes-Benz, Ag",
                b'K' => "Mercedes-Benz Cars",
                b'N' => "Mercedes-Benz Cars",
                b'W' => "Mercedes-Benz, Ag",
                b'H' => "Mercedes-Benz, Ag",
                b'Y' => "Mercedes-Benz, Ag",
                _ => UNKNOWN,
            },
            b'2' => match wmi.as_bytes()[2] {
                b'Z' => "Mercedes-Benz, Ag",
                b'W' => "Mercedes-Benz, Ag",
                b'Y' => "Mercedes-Benz, Ag",
                _ => UNKNOWN,
            },
            b'K' => match wmi.as_bytes()[2] {
                b'K' => "Evobus Gmbh",
                _ => UNKNOWN,
            },
            b'0' => match wmi.as_bytes()[2] {
                b'6' => "Adam Opel Ag",
                b'4' => "Adam Opel Ag",
                b'V' => "General Motors Llc",
                b'8' => "Adam Opel Ag",
                b'L' => "Adam Opel Ag",
                _ => UNKNOWN,
            },
            b'A' => match wmi.as_bytes()[2] {
                b'U' => "Audi Ag",
                b'P' => "Bmw Of North America, Llc",
                b'1' => "Audi Ag",
                _ => UNKNOWN,
            },
            b'U' => match wmi.as_bytes()[2] {
                b'A' => "Audi Sport Gmbh",
                b'1' => "Audi Sport Gmbh",
                _ => UNKNOWN,
            },
            b'B' => match wmi.as_bytes()[2] {
                b'A' => "Bmw Ag",
                b'Y' => "Bmw Ag",
                b'S' => "Bmw M Gmbh",
                b'C' => "Boom Trikes Fahrzeugbau Ag",
                b'1' => "Bmw Ag Motorcycles",
                b'3' => "Bmw Ag Motorcycles",
                b'4' => "Bmw Ag Motorcycles",
                b'7' => "Black Tea Motorbikes Gmbh",
                b'X' => "Bmw Ag",
                b'5' => "Bmw Ag",
                _ => UNKNOWN,
            },
            b'M' => match wmi.as_bytes()[2] {
                b'W' => "Bmw Ag",
                b'E' => "Mercedes-Benz Cars",
                b'Z' => "Bmw Ag",
                _ => UNKNOWN,
            },
            b'Z' => match wmi.as_bytes()[2] {
                b'1' => "Bmw Ag",
                _ => UNKNOWN,
            },
            b'P' => match wmi.as_bytes()[2] {
                b'0' => "Dr. Ing. H.C.F. Porsche Ag",
                b'1' => "Dr. Ing. H.C.F. Porsche Ag",
                _ => UNKNOWN,
            },
            b'F' => match wmi.as_bytes()[2] {
                b'0' => "Ford Werke Ag",
                b'1' => "Ford Werke Ag",
                _ => UNKNOWN,
            },
            b'V' => match wmi.as_bytes()[2] {
                b'W' => "Volkswagen Ag",
                b'G' => "Volkswagen Ag",
                b'2' => "Volkswagen Group Of America, Inc.",
                b'1' => "Volkswagen Group Of America, Inc.",
                _ => UNKNOWN,
            },
            b'T' => match wmi.as_bytes()[2] {
                b'K' => "Tinbot Technology Gmbh",
                _ => UNKNOWN,
            },
            b'G' => match wmi.as_bytes()[2] {
                b'G' => "Ggc-Global Generation Cult, Gmbh",
                _ => UNKNOWN,
            },
            b'Y' => match wmi.as_bytes()[2] {
                b'B' => "Mercedes-Benz, Ag",
                _ => UNKNOWN,
            },
            _ => UNKNOWN,
        },
        b'J' => match wmi.as_bytes()[1] {
            b'H' => match wmi.as_bytes()[2] {
                b'C' => "Hino Motors, Ltd.",
                b'2' => "Honda Motor Co., Ltd",
                b'3' => "Honda Motor Co., Ltd",
                b'A' => "Hino Motors, Ltd.",
                b'7' => "Hino Motors, Ltd.",
                _ => UNKNOWN,
            },
            b'8' => match wmi.as_bytes()[2] {
                b'7' => "Isuzu Motors Limited, Japan",
                b'1' => "Isuzu Motors Limited, Japan",
                b'Z' => "Isuzu Motors Limited, Japan",
                b'C' => "General Motors Llc",
                b'T' => "General Motors Llc",
                _ => UNKNOWN,
            },
            b'T' => match wmi.as_bytes()[2] {
                b'H' => "Toyota Motor Corporation",
                b'D' => "Toyota Motor Corporation",
                b'N' => "Toyota Motor Corporation",
                b'2' => "Toyota Motor Corporation",
                b'8' => "Toyota Motor Corporation",
                b'5' => "Toyota Motor Corporation",
                b'K' => "Toyota Motor North America, Inc",
                b'E' => "Toyota Motor North America, Inc",
                b'L' => "Toyota Motor Corporation",
                b'J' => "Toyota Motor Corporation",
                b'M' => "Toyota Motor Corporation",
                b'6' => "Toyota Motor Corporation",
                b'3' => "Toyota Motor Corporation",
                b'4' => "Toyota Motor Corporation",
                _ => UNKNOWN,
            },
            b'F' => match wmi.as_bytes()[2] {
                b'1' => "Subaru Corporation",
                b'4' => "Fuji Heavy Industries U.S.A., Inc. (C/O Subaru Of America)",
                b'E' => "Zhejiang Senling Motorcycle Co., Ltd.",
                b'2' => "Subaru Corporation",
                b'3' => "Fuji Heavy Industries U.S.A., Inc. (C/O Subaru Of America)",
                _ => UNKNOWN,
            },
            b'G' => match wmi.as_bytes()[2] {
                b'7' => "Suzuki Motor Of America, Inc",
                b'1' => "General Motors Llc",
                b'2' => "General Motors Llc",
                b'C' => "General Motors Llc",
                b'T' => "General Motors Llc",
                _ => UNKNOWN,
            },
            b'N' => match wmi.as_bytes()[2] {
                b'1' => "Nissan Motor Company, Ltd",
                b'8' => "Nissan Motor Company, Ltd",
                b'6' => "Nissan Motor Company, Ltd",
                b'E' => "Ud Trucks Corporation",
                _ => UNKNOWN,
            },
            b'P' => match wmi.as_bytes()[2] {
                b'3' => "Mitsubishi Motors Corporation (Mmc)",
                b'4' => "Mitsubishi Motors Corporation (Mmc)",
                b'7' => "Mitsubishi Motors Corporation (Mmc)",
                b'E' => "Ud Trucks Corporation",
                b'B' => "Ud Trucks Corporation",
                _ => UNKNOWN,
            },
            b'J' => match wmi.as_bytes()[2] {
                b'3' => "Mitsubishi Motors Corporation (Mmc)",
                _ => UNKNOWN,
            },
            b'E' => match wmi.as_bytes()[2] {
                b'4' => "Mitsubishi Motors Corporation (Mmc)",
                b'3' => "Fca Us Llc",
                _ => UNKNOWN,
            },
            b'M' => match wmi.as_bytes()[2] {
                b'1' => "Mazda Motor Corporation",
                b'3' => "Mazda Motor Corporation",
                b'2' => "Mazda Motor Corporation",
                _ => UNKNOWN,
            },
            b'C' => match wmi.as_bytes()[2] {
                b'1' => "Mazda Motor Corporation",
                b'2' => "Mazda Motor Corporation",
                _ => UNKNOWN,
            },
            b'A' => match wmi.as_bytes()[2] {
                b'3' => "Mitsubishi Motors Corporation (Mmc)",
                b'B' => "Isuzu Motors Limited, Japan",
                b'4' => "Mitsubishi Motors Corporation (Mmc)",
                b'C' => "Isuzu Motors Limited, Japan",
                b'E' => "Isuzu Motors Limited, Japan",
                b'7' => "Mitsubishi Motors Corporation (Mmc)",
                b'A' => "Isuzu Motors Limited, Japan",
                _ => UNKNOWN,
            },
            b'B' => match wmi.as_bytes()[2] {
                b'3' => "Fca Us Llc",
                b'4' => "Mitsubishi Motors Corporation (Mmc)",
                b'7' => "Mitsubishi Motors Corporation (Mmc)",
                _ => UNKNOWN,
            },
            b'D' => match wmi.as_bytes()[2] {
                b'1' => "Daihatsu Motor Co., Ltd.",
                b'2' => "Daihatsu Motor Co., Ltd.",
                _ => UNKNOWN,
            },
            b'K' => match wmi.as_bytes()[2] {
                b'S' => "Suzuki Motor Of America, Inc",
                b'8' => "Kawasaki Motors, Ltd",
                b'A' => "Kawasaki Motors, Ltd",
                b'B' => "Kawasaki Motors, Ltd",
                _ => UNKNOWN,
            },
            b'S' => match wmi.as_bytes()[2] {
                b'K' => "Suzuki Motor Of America, Inc",
                b'L' => "Suzuki Motor Of America, Inc",
                b'1' => "Suzuki Motor Of America, Inc",
                b'A' => "Suzuki Motor Of America, Inc",
                b'4' => "Suzuki Motor Of America, Inc",
                _ => UNKNOWN,
            },
            b'Y' => match wmi.as_bytes()[2] {
                b'4' => "Yamaha Motor Corporation",
                b'A' => "Yamaha Motor Co., Ltd.",
                _ => UNKNOWN,
            },
            b'R' => match wmi.as_bytes()[2] {
                b'2' => "Honda Motor Co., Ltd",
                _ => UNKNOWN,
            },
            b'W' => match wmi.as_bytes()[2] {
                b'7' => "Mitsubishi Motors Corporation (Mmc)",
                _ => UNKNOWN,
            },
            _ => UNKNOWN,
        },
        b'S' => match wmi.as_bytes()[1] {
            b'F' => match wmi.as_bytes()[2] {
                b'E' => "Alexander Dennis Limited",
                b'Z' => "Tesla, Inc.",
                b'N' => "Kenworth Truck Company",
                _ => UNKNOWN,
            },
            b'C' => match wmi.as_bytes()[2] {
                b'B' => "Bentley Motors Limited",
                b'F' => "Aston Martin Lagonda Limited",
                b'C' => "Lotus Cars Ltd.",
                b'A' => "Rolls Royce Motor Cars",
                b'R' => "Carbodies Ltd",
                _ => UNKNOWN,
            },
            b'A' => match wmi.as_bytes()[2] {
                b'X' => "Austin Rover Group Limited",
                b'J' => "Jaguar Land Rover Limited",
                b'T' => "Triumph Motor Company",
                b'Y' => "Norton Motorcycles Uk Ltd",
                b'L' => "Jaguar Land Rover Limited",
                b'D' => "Jaguar Land Rover Limited",
                _ => UNKNOWN,
            },
            b'J' => match wmi.as_bytes()[2] {
                b'Z' => "Autocar Limited",
                b'K' => "Nissan Motor Manufacturing (Uk) Ltd",
                b'A' => "Bentley Motors Limited",
                _ => UNKNOWN,
            },
            b'H' => match wmi.as_bytes()[2] {
                b'H' => "Honda Of The U.K. Mfg., Ltd.",
                b'S' => "Honda Of The U.K. Mfg., Ltd.",
                _ => UNKNOWN,
            },
            b'B' => match wmi.as_bytes()[2] {
                b'M' => "Mclaren Automotive Limited",
                b'S' => "Scammell Motors Plant",
                _ => UNKNOWN,
            },
            b'M' => match wmi.as_bytes()[2] {
                b'T' => "Triumph Motor Company",
                _ => UNKNOWN,
            },
            b'Z' => match wmi.as_bytes()[2] {
                b'C' => "Vectrix Sp. Z O.O.",
                _ => UNKNOWN,
            },
            b'N' => match wmi.as_bytes()[2] {
                b'Z' => "Muz Of North America",
                _ => UNKNOWN,
            },
            b'V' => match wmi.as_bytes()[2] {
                b'E' => "Govecs Ag",
                _ => UNKNOWN,
            },
            b'D' => match wmi.as_bytes()[2] {
                b'7' => "Aston Martin Lagonda Limited",
                _ => UNKNOWN,
            },
            b'L' => match wmi.as_bytes()[2] {
                b'A' => "Rolls Royce Motor Cars",
                _ => UNKNOWN,
            },
            b'E' => match wmi.as_bytes()[2] {
                b'G' => "Dennis Eagle, Ltd.",
                _ => UNKNOWN,
            },
            _ => UNKNOWN,
        },
        b'1' => match wmi.as_bytes()[1] {
            b'B' => match wmi.as_bytes()[2] {
                b'A' => "Blue Bird Body Company",
                b'5' => "Fca Us Llc",
                b'B' => "Blue Bird Body Company",
                b'8' => "Fca Us Llc",
                b'4' => "Fca Us Llc",
                b'7' => "Fca Us Llc",
                b'C' => "Blue Bird Body Company",
                _ => UNKNOWN,
            },
            b'V' => match wmi.as_bytes()[2] {
                b'H' => "Daimlerchrysler Commercial Buses North America",
                b'W' => "Volkswagen Group Of America, Inc.",
                b'2' => "Volkswagen Group Of America, Inc.",
                b'1' => "Volkswagen Group Of America, Inc.",
                _ => UNKNOWN,
            },
            b'5' => match wmi.as_bytes()[2] {
                b'G' => "Gillig Llc",
                _ => UNKNOWN,
            },
            b'G' => match wmi.as_bytes()[2] {
                b'A' => "General Motors Llc",
                b'J' => "General Motors Llc",
                b'F' => "The Flxible Corporation",
                b'2' => "General Motors Llc",
                b'3' => "General Motors Llc",
                b'8' => "General Motors Llc",
                b'1' => "General Motors Llc",
                b'4' => "General Motors Llc",
                b'6' => "General Motors Llc",
                b'0' => "General Motors Llc",
                b'7' => "General Motors Llc",
                b'Y' => "General Motors Llc",
                b'N' => "General Motors Llc",
                b'H' => "General Motors Llc",
                b'K' => "General Motors Llc",
                b'M' => "General Motors Llc",
                b'5' => "General Motors Llc",
                b'G' => "General Motors Llc",
                b'W' => "Grumman Olson Industries Inc.",
                b'C' => "General Motors Llc",
                b'T' => "General Motors Llc",
                _ => UNKNOWN,
            },
            b'C' => match wmi.as_bytes()[2] {
                b'5' => "Fca Us Llc",
                b'3' => "Fca Us Llc",
                b'U' => "Cushman A Division Of Outboard Marine Corporation",
                b'4' => "Fca Us Llc",
                b'8' => "Fca Us Llc",
                b'6' => "Fca Us Llc",
                _ => UNKNOWN,
            },
            b'J' => match wmi.as_bytes()[2] {
                b'5' => "Fca Us Llc",
                b'4' => "Fca Us Llc",
                b'8' => "Fca Us Llc",
                b'C' => "Fca Us Llc",
                b'3' => "Fca Us Llc",
                b'7' => "Fca Us Llc",
                b'T' => "Fca Us Llc",
                b'U' => "Marmon Motor Co",
                _ => UNKNOWN,
            },
            b'P' => match wmi.as_bytes()[2] {
                b'5' => "Fca Us Llc",
                b'3' => "Fca Us Llc",
                b'4' => "Fca Us Llc",
                b'7' => "Fca Us Llc",
                _ => UNKNOWN,
            },
            b'D' => match wmi.as_bytes()[2] {
                b'5' => "Fca Us Llc",
                b'4' => "Fca Us Llc",
                b'8' => "Fca Us Llc",
                b'7' => "Fca Us Llc",
                b'3' => "Fca Us Llc",
                _ => UNKNOWN,
            },
            b'F' => match wmi.as_bytes()[2] {
                b'B' => "Ford Motor Company",
                b'A' => "Ford Motor Company",
                b'7' => "Ford Motor Company",
                b'L' => "Ford Motor Company",
                b'M' => "Ford Motor Company",
                b'1' => "Ford Motor Company",
                b'U' => "Daimler Trucks North America Llc",
                b'T' => "Ford Motor Company",
                _ => UNKNOWN,
            },
            b'E' => match wmi.as_bytes()[2] {
                b'U' => "Silver Eagle Bus Manufacturing, Inc",
                b'3' => "Fca Us Llc",
                _ => UNKNOWN,
            },
            b'T' => match wmi.as_bytes()[2] {
                b'U' => "Transportation Manufacturing Corporation ",
                _ => UNKNOWN,
            },
            b'M' => match wmi.as_bytes()[2] {
                b'8' => "Motor Coach Industries, Inc.",
                b'R' => "Ford Motor Company",
                b'E' => "Ford Motor Company",
                b'B' => "Mercedes-Benz Truck Company Inc",
                b'1' => "Mack Trucks Inc.",
                _ => UNKNOWN,
            },
            b'8' => match wmi.as_bytes()[2] {
                b'L' => "The Londoncoach Company, Incorporated",
                _ => UNKNOWN,
            },
            b'N' => match wmi.as_bytes()[2] {
                b'4' => "Nissan North America, Inc.",
                b'X' => "New United Motor Manufacturing, Inc.",
                b'6' => "Nissan North America, Inc.",
                _ => UNKNOWN,
            },
            b'Y' => match wmi.as_bytes()[2] {
                b'1' => "New United Motor Manufacturing, Inc.",
                b'V' => "Auto Alliance International, Usa",
                b'J' => "Rokon International, Inc.",
                _ => UNKNOWN,
            },
            b'7' => match wmi.as_bytes()[2] {
                b'7' => "Golden Age Auto Corp",
                b'J' => "Owosso Motor Car Company",
                _ => UNKNOWN,
            },
            b'L' => match wmi.as_bytes()[2] {
                b'N' => "Ford Motor Company",
                b'1' => "Ford Motor Company",
                _ => UNKNOWN,
            },
            b'X' => match wmi.as_bytes()[2] {
                b'A' => "Excalibur Automobile Corporation",
                b'P' => "Peterbilt Motors Company",
                b'K' => "Kenworth Truck Company",
                _ => UNKNOWN,
            },
            b'H' => match wmi.as_bytes()[2] {
                b'G' => "American Honda Motor Co., Inc.",
                b'F' => "American Honda Motor Co., Inc.",
                b'D' => "Harley-Davidson Motor Company",
                b'P' => "Navistar, Inc.",
                b'S' => "Navistar, Inc.",
                _ => UNKNOWN,
            },
            b'9' => match wmi.as_bytes()[2] {
                b'X' => "American Honda Motor Co., Inc.",
                b'U' => "American Honda Motor Co., Inc.",
                b'V' => "American Honda Motor Co., Inc.",
                b'Z' => "Ultra Acquisition Corporation ",
                _ => UNKNOWN,
            },
            b'Z' => match wmi.as_bytes()[2] {
                b'V' => "Auto Alliance International, Usa",
                b'W' => "Auto Alliance International, Usa",
                b'4' => "Fca Us Llc",
                b'6' => "Fca Us Llc",
                b'8' => "Fca Us Llc",
                b'7' => "Fca Us Llc",
                b'3' => "Fca Us Llc",
                _ => UNKNOWN,
            },
            b'2' => match wmi.as_bytes()[2] {
                b'A' => "Avanti Motor Corporation",
                _ => UNKNOWN,
            },
            b'4' => match wmi.as_bytes()[2] {
                b'3' => "Zoe Motors, Inc ",
                _ => UNKNOWN,
            },
            b'1' => match wmi.as_bytes()[2] {
                b'Z' => "Badsey Bullet U.S.A., Inc.",
                b'V' => "Kalmar Solutions Llc",
                _ => UNKNOWN,
            },
            b'A' => match wmi.as_bytes()[2] {
                b'4' => "Fca Us Llc",
                b'8' => "Fca Us Llc",
                b'C' => "American Motors Corp.",
                b'M' => "American Motors Corp.",
                b'3' => "Fca Us Llc",
                b'7' => "Fca Us Llc",
                b'F' => "American Lafrance, Llc",
                _ => UNKNOWN,
            },
            b'3' => match wmi.as_bytes()[2] {
                b'7' => "Am General Llc",
                _ => UNKNOWN,
            },
            b'W' => match wmi.as_bytes()[2] {
                b'V' => "Winnebago Industries, Inc.",
                b'W' => "Winnebago Industries, Inc.",
                b'T' => "Winnebago Industries, Inc.",
                b'A' => "Volvo White Truck Corporation",
                b'U' => "Volvo White Truck Corporation",
                _ => UNKNOWN,
            },
            b'0' => match wmi.as_bytes()[2] {
                b'T' => "Oshkosh Corporation",
                _ => UNKNOWN,
            },
            b'R' => match wmi.as_bytes()[2] {
                b'G' => "Trident Motors, Inc ",
                _ => UNKNOWN,
            },
            _ => UNKNOWN,
        },
        b'7' => match wmi.as_bytes()[1] {
            b'D' => match wmi.as_bytes()[2] {
                b'L' => "Designline International Holdings, Llc (Usa)",
                _ => UNKNOWN,
            },
            b'J' => match wmi.as_bytes()[2] {
                b'Z' => "Proterra Operating Company, Inc.",
                b'R' => "Volvo Car Usa, Llc",
                b'1' => "Ampere Electric Cars, Inc.",
                b'0' => "Ayro Inc",
                _ => UNKNOWN,
            },
            b'T' => match wmi.as_bytes()[2] {
                b'F' => "Lion Electric Manufacturing Usa Inc.",
                b'1' => "Boss Motor Inc.",
                b'Y' => "Fly E-Bike Inc.",
                b'Z' => "Mullen Automotive, Inc.",
                b'G' => "Lion Electric Manufacturing Usa Inc.",
                _ => UNKNOWN,
            },
            b'K' => match wmi.as_bytes()[2] {
                b'Z' => "Zhejiang Kandi Vehicles Co. Ltd.",
                b'G' => "Vanderhall Motor Works Inc",
                _ => UNKNOWN,
            },
            b'H' => match wmi.as_bytes()[2] {
                b'T' => "Sf Motors, Inc.",
                b'4' => "Hino Motors Manufacturing Usa, Inc",
                _ => UNKNOWN,
            },
            b'N' => match wmi.as_bytes()[2] {
                b'E' => "Ziggy Lsv Inc. (Formerly Ziggy Inc.)",
                b'6' => "P And G Imports, Llc",
                b'F' => "Land Llc",
                b'A' => "Navistar Defense, Llc",
                b'Y' => "Lordstown Ev Corporation",
                _ => UNKNOWN,
            },
            b'F' => match wmi.as_bytes()[2] {
                b'7' => "Arcimoto Inc.",
                b'A' => "American Honda Motor Co., Inc.",
                b'C' => "Rivian Automotive, Llc",
                _ => UNKNOWN,
            },
            b'P' => match wmi.as_bytes()[2] {
                b'3' => "Ev Transportation Services, Inc.",
                b'7' => "Tham Corporation",
                b'2' => "Bremach, Inc.",
                b'D' => "Rivian Automotive, Llc",
                _ => UNKNOWN,
            },
            b'M' => match wmi.as_bytes()[2] {
                b'E' => "Onyx Motorbikes, Inc.",
                b'U' => "Mazda Toyota Manufacturing, Usa, Inc.",
                b'M' => "Mazda Toyota Manufacturing, Usa, Inc.",
                _ => UNKNOWN,
            },
            b'U' => match wmi.as_bytes()[2] {
                b'V' => "Rawrr Inc.",
                b'K' => "Xos, Inc",
                _ => UNKNOWN,
            },
            b'G' => match wmi.as_bytes()[2] {
                b'0' => "Faraday&Future Inc.",
                b'6' => "Us Specialty Vehicles Llc",
                b'2' => "Tesla, Inc.",
                b'B' => "Mahindra North American Technical Center Incorporated",
                _ => UNKNOWN,
            },
            b'S' => match wmi.as_bytes()[2] {
                b'V' => "Toyota Motor Manufacturing, Texas, Inc.",
                b'A' => "Tesla, Inc.",
                b'U' => "The Shyft Group Ev Solutions, Llc",
                _ => UNKNOWN,
            },
            _ => UNKNOWN,
        },
        b'4' => match wmi.as_bytes()[1] {
            b'U' => match wmi.as_bytes()[2] {
                b'7' => "Country Coach Corporation",
                b'S' => "Bmw Manufacturer Corporation / Bmw North America",
                _ => UNKNOWN,
            },
            b'D' => match wmi.as_bytes()[2] {
                b'R' => "Ic Bus, Llc",
                _ => UNKNOWN,
            },
            b'S' => match wmi.as_bytes()[2] {
                b'L' => "Safari Motor Coaches",
                b'3' => "Subaru Of America, Inc",
                b'2' => "Isuzu Motors Limited, Japan",
                b'6' => "Isuzu Manufacturing Services Of America, Inc.",
                b'4' => "Subaru Of America, Inc",
                b'1' => "Isuzu Motors Limited, Japan",
                _ => UNKNOWN,
            },
            b'R' => match wmi.as_bytes()[2] {
                b'K' => "Nova Bus (Us) Inc.",
                _ => UNKNOWN,
            },
            b'T' => match wmi.as_bytes()[2] {
                b'1' => "Toyota Motor Manufacturing, Kentucky, Inc.",
                b'4' => "Toyota Motor Manufacturing, Northern Kentucky, Inc.",
                b'3' => "Toyota Motor Manufacturing, Kentucky, Inc.",
                b'A' => "Tabc Inc.",
                _ => UNKNOWN,
            },
            b'H' => match wmi.as_bytes()[2] {
                b'R' => "Renaissance Cars Inc",
                b'M' => "Heritage Marketing Inc.",
                _ => UNKNOWN,
            },
            b'A' => match wmi.as_bytes()[2] {
                b'3' => "Mitsubishi Motors North America",
                b'4' => "Mitsubishi Motors North America",
                _ => UNKNOWN,
            },
            b'P' => match wmi.as_bytes()[2] {
                b'3' => "Mitsubishi Motors North America",
                _ => UNKNOWN,
            },
            b'G' => match wmi.as_bytes()[2] {
                b'3' => "General Motors Llc",
                b'5' => "General Motors Llc",
                b'1' => "General Motors Llc",
                b'2' => "General Motors Llc",
                b'D' => "General Motors Llc",
                b'T' => "General Motors Llc",
                _ => UNKNOWN,
            },
            b'C' => match wmi.as_bytes()[2] {
                b'3' => "Fca Us Llc",
                b'R' => "Classic Roadsters, Ltd.",
                _ => UNKNOWN,
            },
            b'E' => match wmi.as_bytes()[2] {
                b'3' => "Fca Us Llc",
                b'N' => "Emergency One, Inc",
                _ => UNKNOWN,
            },
            b'B' => match wmi.as_bytes()[2] {
                b'3' => "Fca Us Llc",
                b'7' => "Global Motorsport Group, Inc.",
                _ => UNKNOWN,
            },
            b'3' => match wmi.as_bytes()[2] {
                b'C' => "Consulier Industries, Inc.",
                b'3' => "Kkm Enterprises",
                _ => UNKNOWN,
            },
            b'M' => match wmi.as_bytes()[2] {
                b'0' => "Vectrix Corporation",
                b'A' => "Atk America, Inc.",
                b'2' => "Ford Motor Company",
                b'4' => "Ford Motor Company",
                _ => UNKNOWN,
            },
            b'J' => match wmi.as_bytes()[2] {
                b'W' => "Westinghouse Electric Corporation",
                b'G' => "Mercedes-Benz Of North America, Inc.",
                _ => UNKNOWN,
            },
            b'7' => match wmi.as_bytes()[2] {
                b'8' => "American Honda Motor Co., Inc.",
                _ => UNKNOWN,
            },
            b'Z' => match wmi.as_bytes()[2] {
                b'M' => "Emb Incorporated",
                b'3' => "American Lafrance, Llc",
                _ => UNKNOWN,
            },
            b'8' => match wmi.as_bytes()[2] {
                b'D' => "Stroker Cycles, Inc",
                b'0' => "Sterling Trucks (Daimler Division)",
                _ => UNKNOWN,
            },
            b'N' => match wmi.as_bytes()[2] {
                b'T' => "General Motors Llc",
                b'U' => "General Motors Llc",
                b'2' => "Ford Motor Company",
                b'4' => "Ford Motor Company",
                _ => UNKNOWN,
            },
            b'F' => match wmi.as_bytes()[2] {
                b'2' => "Ford Motor Company",
                b'3' => "Ford Motor Company",
                b'4' => "Ford Motor Company",
                _ => UNKNOWN,
            },
            b'5' => match wmi.as_bytes()[2] {
                b'V' => "Utilimaster Corporation",
                _ => UNKNOWN,
            },
            b'1' => match wmi.as_bytes()[2] {
                b'S' => "Superior Coaches",
                _ => UNKNOWN,
            },
            b'9' => match wmi.as_bytes()[2] {
                b'H' => "Sterling Trucks (Daimler Division)",
                _ => UNKNOWN,
            },
            b'V' => match wmi.as_bytes()[2] {
                b'4' => "Volvo Group North America, Llc",
                b'J' => "Volvo Group North America, Llc",
                b'6' => "Volvo Group North America, Llc",
                b'3' => "Volvo Group North America, Llc",
                _ => UNKNOWN,
            },
            b'L' => match wmi.as_bytes()[2] {
                b'M' => "Capacity Of Texas",
                _ => UNKNOWN,
            },
            b'K' => match wmi.as_bytes()[2] {
                b'A' => "Ic Bus, Llc",
                _ => UNKNOWN,
            },
            _ => UNKNOWN,
        },
        b'L' => match wmi.as_bytes()[1] {
            b'T' => match wmi.as_bytes()[2] {
                b'S' => "International Transit Systems, Ltd.",
                b'U' => "Nine Tech Co., Ltd.",
                b'D' => "Taixing Sandi Motorcycle Co., Ltd.",
                b'4' => "Taizhou Jiaojiang Zhiwei Motorcycle Manufacture Co., Ltd.",
                b'B' => "Guangdong Qingxin Liantong Industry Co. Ltd.",
                b'8' => "China Taishan Group, Taishan, Haofu, Dajinya",
                _ => UNKNOWN,
            },
            b'C' => match wmi.as_bytes()[2] {
                b'0' => "Byd Auto Industry Company Limited",
                b'2' => "Kwang Yang Motor Co., Ltd (Kymco)",
                b'6' => "Suzuki Motor Of America, Inc",
                b'4' => "Chongqing Liyang Jiayu Motorcycle Co., Ltd.",
                b'E' => "Zhejiang Cfmoto Power Co., Ltd",
                b'3' => "Wuxi Jinhong Motorcycle Co., Ltd",
                _ => UNKNOWN,
            },
            b'W' => match wmi.as_bytes()[2] {
                b'E' => "Dongfeng Yangtse Motor (Wuhan) Co., Ltd Dba Wuxi An Yuan Automobile Company",
                b'B' => "American Honda Motor Co., Inc.",
                b'G' => "Chongqing Huansong Industries (Group) Co., Ltd.",
                b'0' => "Wenzhou Light Motorcycle Co. Ltd. (Powersports)",
                _ => UNKNOWN,
            },
            b'V' => match wmi.as_bytes()[2] {
                b'C' => "Beiqi Foton Motor Co., Ltd. Beijing Bus Branch Com",
                b'E' => "Beiqi Foton Motor Co., Ltd. Beijing Bus Branch Com",
                b'P' => "Dfsk Motor Co.,Ltd.",
                b'Y' => "Daqing Volvo Car Manufacturing Co Ltd",
                b'N' => "Nogas Electric Scooter Co.",
                b'2' => "Jiangsu Lvneng Electrical Bicycle Technology Co., Ltd.",
                b'7' => "Jinan Qingqi Motorcycle Co., Ltd.",
                b'W' => "First United Industrial Foshan Limited",
                _ => UNKNOWN,
            },
            b'A' => match wmi.as_bytes()[2] {
                b'8' => "Anhui Ankai Automobile Co., Ltd.",
                b'N' => "Changzhou Yamasaki Motorcycle Co. Ltd.",
                b'Y' => "Nanfang Space Navigation Science & Technology Co., Ltd.",
                b'T' => "Luoyang Northern Ek Chor Motorcycle Co., Ltd.",
                b'E' => "Jinan Dalong Vehicle Industry Co. Ltd. (Qingqi Group Motorcycle Co. Ltd.)",
                b'W' => "Qianjiang Motorcycles Group Corporation",
                b'L' => "Sundiro Honda Motorcycle Co., Ltd.",
                b'A' => "Shanghai Jialing Vehicle Co., Ltd.",
                b'2' => "Cps Limited",
                _ => UNKNOWN,
            },
            b'P' => match wmi.as_bytes()[2] {
                b'K' => "Anyuan Bus Manufacturing Co., Ltd ",
                b'S' => "Zhejiang Haoqing Automobile Mfg Co Ltd",
                b'R' => "Yamaha Motor Corporation",
                b'Y' => "China Baotian Motorcycle Industrial Co. Ltd.",
                b'P' => "Nanchang Aircraft Mfg. Co ( Hongdu Machinery Plant)",
                b'6' => "Guangzhou Panyu Haojian Motorcycle Industry Co., Ltd.",
                b'5' => "Guangzhou Tianma Group Tianma Motorcycle Co., Ltd.",
                b'E' => "Byd Auto Industry Company Limited",
                _ => UNKNOWN,
            },
            b'S' => match wmi.as_bytes()[2] {
                b'G' => "General Motors Llc",
                b'R' => "Chongqing Hi-Bird Motorcycle Industry Co., Ltd.",
                _ => UNKNOWN,
            },
            b'F' => match wmi.as_bytes()[2] {
                b'P' => "China First Automobile Group Imp. % Exp. Corp.",
                b'3' => "Lifan Industry (Group) Company Ltd.",
                b'Y' => "Changshu Light Motorcycle Factory",
                b'E' => "Zhejiang Senling Motorcycle Co., Ltd.",
                b'F' => "Zhejiang Taizhou Wangye Power Co., Ltd.",
                b'G' => "Zhejiang Chuangtai Motorcycle Co., Ltd.",
                _ => UNKNOWN,
            },
            b'G' => match wmi.as_bytes()[2] {
                b'X' => "Byd Auto Co., Ltd.",
                b'0' => "Yongkang Eagle Motor Co.,Ltd",
                b'A' => "The Second Automobile Works",
                _ => UNKNOWN,
            },
            b'R' => match wmi.as_bytes()[2] {
                b'E' => "Shanghai General Motors Corp Ltd.",
                b'Y' => "Chongqing Guangyu Motorcycle Manufacture Co., Ltd.",
                b'P' => "Chongqing Rato Power Co., Ltd.",
                b'4' => "Yadea  Technology Group Co., Ltd.",
                b'B' => "General Motors Llc",
                _ => UNKNOWN,
            },
            b'N' => match wmi.as_bytes()[2] {
                b'1' => "Suzuki Motor Of America, Inc",
                b'4' => "Zhejiang Kinye Motor Vehicle Co.,Ltd",
                _ => UNKNOWN,
            },
            b'M' => match wmi.as_bytes()[2] {
                b'1' => "Suzuki Motor Of America, Inc",
                b'4' => "Suzuki Motor Of America, Inc",
                b'F' => "Jiangmen Zhongyu Motor (Group) Co., Ltd.",
                b'5' => "Sanfu Motor Industry ",
                _ => UNKNOWN,
            },
            b'5' => match wmi.as_bytes()[2] {
                b'X' => "Yadea  Technology Group Co., Ltd.",
                b'Z' => "Wuzheng North America Ltd",
                b'M' => "Ningbo Kangda Bicycle Co., Ltd.",
                b'R' => "Jiangsu Dafier Motorcycle Co., Ltd.",
                b'N' => "Jinyun County Xiangyuan Industry Co., Ltd",
                b'Y' => "Taizhou Zhongneng Motorcycle Co., Ltd.",
                b'C' => "Zhejiang Kangdi Vehicles Co. Ltd.",
                b'T' => "Yongkang Mtl Metal Products Co., Ltd.",
                _ => UNKNOWN,
            },
            b'8' => match wmi.as_bytes()[2] {
                b'Y' => "Zhejiang Jonway Motorcycle Manufacturing Co., Ltd.",
                b'2' => "Jiangmen Sino-Hongkong Baotian Motorcycle Industrial Co., Ltd.",
                b'X' => "Zhejiang Summit Huawin Motorcycle Co., Ltd.",
                _ => UNKNOWN,
            },
            b'1' => match wmi.as_bytes()[2] {
                b'T' => "Zhejiang Doohan Technology Co., Ltd.",
                b'3' => "Shandong Baoya New Energy Vehicle Co., Ltd.",
                b'E' => "Taizhou Oming Motorcycle Co., Ltd.",
                b'P' => "Chongquing Dajiang Motorcycles Co., Ltd",
                _ => UNKNOWN,
            },
            b'4' => match wmi.as_bytes()[2] {
                b'B' => "China Xingyue Group Co., Ltd.",
                b'T' => "Tank Sports Inc. A Parent Company Of Pmi Northern Company Ltd.",
                b'Y' => "Ningbo Dalong Smooth Locomotive Industry Co., Ltd.",
                b'H' => "Ningbo Longjia Motorcycle Co., Ltd.",
                b'G' => "Qunsheng Group Co., Ltd.",
                b'S' => "Zhejiang Xingyue Vehicle Co., Ltd.",
                _ => UNKNOWN,
            },
            b'D' => match wmi.as_bytes()[2] {
                b'5' => "Benzhou Vehicle Industry Group Co., Ltd",
                b'Y' => "Taizhou Jiaojiang Zhiwei Motorcycle Manufacture Co., Ltd.",
                b'U' => "Chongqing Huanghe Motorcycle Co.,Ltd",
                b'6' => "Zhejiang Leike Machine Industry Co., Ltd.",
                _ => UNKNOWN,
            },
            b'Z' => match wmi.as_bytes()[2] {
                b'E' => "Dazon , Inc.",
                b'R' => "Juneng Motorcycle Technology Co., Ltd",
                b'B' => "Sanyou Holding Group Yinyou Motorcycle Co., Ltd",
                b'P' => "China Baotian Motorcycle Industrial Co. Ltd.",
                b'X' => "Chongqing Shuangqing Mechanical & Electrical Co. Ltd.",
                b'S' => "Chongqing Zongshen Automobile Industry Co., Ltd.",
                b'L' => "Zengcheng Haili Motorcycle Co., Ltd.",
                _ => UNKNOWN,
            },
            b'E' => match wmi.as_bytes()[2] {
                b'X' => "Exigis, Inc.",
                b'6' => "Hongdou Group Chituma Motorcycle Company",
                b'8' => "Guangzhou Huaye Electric Vehicle Technology Co., Ltd.",
                b'H' => "Zhejiang Riya Motorcycle Co., Ltd.",
                b'S' => "Sanfu Motor Industry ",
                _ => UNKNOWN,
            },
            b'X' => match wmi.as_bytes()[2] {
                b'S' => "Guangzhou Dayang Motorcycle Co., Ltd.",
                b'D' => "Ningbo Dongfang Lingyun Vehicle Made Co., Ltd.",
                b'E' => "Jiangsu Sinski Vehicle Science & Technology Co., Ltd.",
                b'R' => "Jiangsu Xinri E-Vehicle Co.,Ltd.",
                b'K' => "Shanghai Meitian Motorcycle Company Ltd.",
                b'6' => "Jiangmen City Huari Group Co., Ltd.",
                b'Y' => "Chongqing Shineray Motorcycle Co., Ltd.",
                b'M' => "Xiamen Xiashing Motorcycle Co., Ltd.",
                b'A' => "Jiangmen Qipai Motorcycle Co., Ltd",
                _ => UNKNOWN,
            },
            b'6' => match wmi.as_bytes()[2] {
                b'K' => "Shanghai Howhit Machinery Manufacture Co., Ltd",
                b'M' => "Wuxi Tmec Power Technology Co., Ltd.",
                _ => UNKNOWN,
            },
            b'3' => match wmi.as_bytes()[2] {
                b'7' => "Huzhou Daixi Zhenhua Technology Trade Co. Ltd.",
                b'J' => "Jiangsu Sacin Motorcycle Co., Ltd.",
                b'Y' => "Ningbo Motorcycle Factory",
                _ => UNKNOWN,
            },
            b'2' => match wmi.as_bytes()[2] {
                b'B' => "Jiangsu Baodiao Locomotive Co., Ltd.",
                _ => UNKNOWN,
            },
            b'K' => match wmi.as_bytes()[2] {
                b'K' => "Jiangsu Jinjie Motor Manufacture Co., Ltd",
                b'X' => "Chongqing Andes Motorcycle Manufacturing Co.,Ltd.",
                _ => UNKNOWN,
            },
            b'B' => match wmi.as_bytes()[2] {
                b'U' => "Jiangsu Kingbon Vehicle Co., Ltd.",
                b'X' => "Kinroad Xintian Motorcycle Manufacture Co., Ltd.",
                b'5' => "Foshan Fosti Motorcycle Manufacturing Co., Ltd.",
                b'4' => "Chongqing Yinxiang Motorcycle (Group) Co., Ltd.",
                b'B' => "Zhejiang Qianjiang Motorcycle Co., Ltd.",
                b'2' => "Zhejiang Geely Ming Industrial Co., Ltd",
                _ => UNKNOWN,
            },
            b'L' => match wmi.as_bytes()[2] {
                b'8' => "Jiangsu Linhai Power Machinery Group Corp.",
                b'0' => "Sanmen County Yongfu Machine Co., Ltd.",
                b'A' => "Shanghai Honling Motorcycle Manufacture Co., Ltd.",
                b'C' => "Chongqing Kinlon Motorcycle Manufacture Co., Ltd",
                b'M' => "Zhejiang Lingtian Motorcycle Co., Ltd",
                b'P' => "Zhejiang Jiajue Motorcycle Manufacturing Co., Ltd.",
                _ => UNKNOWN,
            },
            b'Y' => match wmi.as_bytes()[2] {
                b'X' => "Jiangsu Sinski Sonik Motor Technology Co., Ltd.",
                b'H' => "Ningbo Sanjiang Dykon Motorcycle Co., Ltd.",
                b'S' => "Nanjing Vmoto Manufacturing Co., Ltd.",
                b'D' => "Taizhou City Senlong Motorcycle Manufacture Co.,Ltd.",
                b'E' => "Chongqing Kaier Motorcycle Manufacturing Co.,",
                b'4' => "Chongqing Yingang Science & Technology (Group) Co., Ltd.",
                b'V' => "Daqing Volvo Car Manufacturing Co Ltd",
                _ => UNKNOWN,
            },
            b'J' => match wmi.as_bytes()[2] {
                b'C' => "Jincheng Corporation",
                b'4' => "Shanghai Jmstar Motorcycle Co., Ltd",
                b'5' => "Cixi Kingring Motorcycle Co., Ltd",
                b'L' => "Zhejiang Lingyu Vehicle Industry Co., Ltd.",
                _ => UNKNOWN,
            },
            b'7' => match wmi.as_bytes()[2] {
                b'Z' => "Shanghai Fu Quan Automobile Manufactory Co., Ltd.",
                _ => UNKNOWN,
            },
            b'H' => match wmi.as_bytes()[2] {
                b'A' => "Shenzhen Greenwheel Electric Vehicle Co., Ltd.",
                b'J' => "Chongqing Astronautic Bashan Motorcycle Manufacturing Co., Ltd.",
                _ => UNKNOWN,
            },
            b'U' => match wmi.as_bytes()[2] {
                b'A' => "Chongqing Hensim Group Co., Ltd.",
                b'J' => "Zhejiang Shanqi Tianying Vehicle Industry Co., Ltd.",
                _ => UNKNOWN,
            },
            b'9' => match wmi.as_bytes()[2] {
                b'N' => "Zhejiang Taotao Vehicles Co.,Ltd",
                _ => UNKNOWN,
            },
            b'0' => match wmi.as_bytes()[2] {
                b'8' => "Zhejiang Jiajue Apollo Vehicle Manufacture Co., Ltd.",
                _ => UNKNOWN,
            },
            _ => UNKNOWN,
        },
        b'5' => match wmi.as_bytes()[1] {
            b'4' => match wmi.as_bytes()[2] {
                b'R' => "Rev Recreation Group",
                b'T' => "Ukeycheyma",
                b'S' => "Ukeycheyma",
                b'6' => "Buell Motorcycle Co.",
                b'W' => "Ukeycheyma",
                b'U' => "Ukeycheyma",
                b'V' => "Ukeycheyma",
                _ => UNKNOWN,
            },
            b'B' => match wmi.as_bytes()[2] {
                b'Z' => "Nissan North America, Inc.",
                b'P' => "Solectria Corporation",
                b'J' => "Ives Motors Corporation (Imc)",
                b'6' => "Cannondale Corporation",
                b'B' => "Milwaukee Motorcycle Company",
                _ => UNKNOWN,
            },
            b'F' => match wmi.as_bytes()[2] {
                b'Y' => "New Flyer Industries Canada Ulc",
                b'5' => "Esarati Electric Technologies Corp.",
                b'N' => "American Honda Motor Co., Inc.",
                b'R' => "American Honda Motor Co., Inc.",
                b'P' => "American Honda Motor Co., Inc.",
                b'S' => "American Honda Motor Co., Inc.",
                _ => UNKNOWN,
            },
            b'U' => match wmi.as_bytes()[2] {
                b'M' => "Bmw Ag",
                b'V' => "Titan Imports Inc. Dba Us Titan Inc.",
                b'X' => "Bmw Manufacturer Corporation / Bmw North America",
                _ => UNKNOWN,
            },
            b'8' => match wmi.as_bytes()[2] {
                b'A' => "Toyota Motor Manufacturing, Kentucky, Inc.",
                b'M' => "Contemporary Classic Cars, Inc.",
                b'F' => "Cleveland Cyclewerks Llc Dba Cultura Scooter Company",
                b'7' => "Lit Motors Corporation",
                b'D' => "Mahindra Tractor Assembly Inc",
                b'N' => "Shockwave Motors, Inc.",
                b'W' => "Rainier Truck And Chassis Llc",
                _ => UNKNOWN,
            },
            b'Y' => match wmi.as_bytes()[2] {
                b'F' => "Toyota Motor Manufacturing, Mississippi, Inc.",
                b'J' => "Tesla, Inc.",
                b'2' => "New United Motor Manufacturing, Inc.",
                b'4' => "Yamaha Motor Corporation",
                b'U' => "Zerteck, Inc.",
                b'L' => "Apex Motor Usa",
                b'A' => "Indian Motorcycle Company",
                b'W' => "Knievel Motorcycle Manufacturing Inc.",
                b'P' => "Trifun, Inc.",
                b'S' => "St Certification Service (Usa) Co., Ltd.",
                b'M' => "Bmw Manufacturer Corporation / Bmw North America",
                _ => UNKNOWN,
            },
            b'3' => match wmi.as_bytes()[2] {
                b'T' => "Think North America Inc.",
                b'J' => "Avera Motors",
                b'G' => "Coda Automotive, Inc.",
                b'8' => "Zero Motorcycles, Inc.",
                b'7' => "Azure Dynamics",
                _ => UNKNOWN,
            },
            b'C' => match wmi.as_bytes()[2] {
                b'X' => "Shelby American, Inc.",
                b'D' => "Indian Motorcycle Company",
                b'K' => "Western Star Trucks Inc",
                _ => UNKNOWN,
            },
            b'5' => match wmi.as_bytes()[2] {
                b'S' => "Mercedes-Benz Cars",
                b'2' => "Evolve Electric Motorcycles",
                b'G' => "Sabertooth Motor Group, Llc",
                _ => UNKNOWN,
            },
            b'0' => match wmi.as_bytes()[2] {
                b'E' => "Lucid Usa, Inc.",
                b'G' => "Karma Automotive Llc",
                b'Y' => "American Ironhorse Llc",
                b'S' => "Mobility Technologies Llc",
                _ => UNKNOWN,
            },
            b'X' => match wmi.as_bytes()[2] {
                b'X' => "Kia Georgia, Inc",
                b'W' => "Alpha Products International, Inc.",
                b'R' => "Luyuan Inc.",
                b'S' => "Street Steel Motorsports, Llc",
                b'Y' => "Kia Georgia, Inc",
                _ => UNKNOWN,
            },
            b'N' => match wmi.as_bytes()[2] {
                b'P' => "Hyundai-Kia America Technical Center Inc (Hatci)",
                b'M' => "Hyundai Motor Manufacturing Alabama Llc (Hmma)",
                b'1' => "Nissan North America, Inc.",
                b'T' => "Hyundai Motor Manufacturing Alabama Llc (Hmma)",
                _ => UNKNOWN,
            },
            b'G' => match wmi.as_bytes()[2] {
                b'D' => "General Motors Llc",
                b'8' => "General Motors Llc",
                b'2' => "General Motors Llc",
                b'A' => "General Motors Llc",
                b'3' => "General Motors Llc",
                b'R' => "General Motors Llc",
                b'T' => "General Motors Llc",
                b'Z' => "General Motors Llc",
                b'5' => "General Motors Llc",
                b'N' => "General Motors Llc",
                _ => UNKNOWN,
            },
            b'6' => match wmi.as_bytes()[2] {
                b'N' => "Fortunesport",
                b'A' => "Biketoo, Inc.",
                b'P' => "Faster Faster Inc.",
                b'K' => "Indian Motorcycle Company",
                b'M' => "Switch Vehicles, Inc.",
                _ => UNKNOWN,
            },
            b'2' => match wmi.as_bytes()[2] {
                b'S' => "Equus Automotive, Inc.",
                b'0' => "Bakkura Mobility Inc.",
                b'G' => "California Scooter Company, Llc",
                b'E' => "Amp Motor Vehicles, Inc.",
                b'3' => "The Vehicle Production Group Llc",
                _ => UNKNOWN,
            },
            b'K' => match wmi.as_bytes()[2] {
                b'B' => "American Honda Motor Co., Inc.",
                b'C' => "American Honda Motor Co., Inc.",
                b'M' => "Vento North America, Llc",
                b'0' => "The Electric Cycle Company",
                b'J' => "Daimler Trucks North America Llc",
                _ => UNKNOWN,
            },
            b'A' => match wmi.as_bytes()[2] {
                b'C' => "Bug Motors, Inc.",
                _ => UNKNOWN,
            },
            b'W' => match wmi.as_bytes()[2] {
                b'Y' => "Verucci Motorcycles, Llc",
                b'T' => "Aptera Motors Corp.",
                b'R' => "Intrepid Engineering Group (Ieg)",
                b'N' => "Metrorider Llc",
                _ => UNKNOWN,
            },
            b'Z' => match wmi.as_bytes()[2] {
                b'Z' => "Xtreme Green Products, Inc.",
                b'K' => "American Performance Technologies, Llc",
                b'R' => "Motoadvent, Inc.",
                b'6' => "Suzuki Motor Of America, Inc",
                b'U' => "Greenkraft Inc.",
                _ => UNKNOWN,
            },
            b'R' => match wmi.as_bytes()[2] {
                b'4' => "Xkeleton Motorcycle",
                b'D' => "Hitong Motors Corp.",
                b'Y' => "Roketa",
                b'J' => "Android Industries - Springfield Llc",
                b'6' => "Azure Dynamics Inc.",
                _ => UNKNOWN,
            },
            b'1' => match wmi.as_bytes()[2] {
                b'R' => "Brammo, Inc.",
                b'D' => "Eco Motor Company, Inc.",
                b'1' => "Mizer Motor Works, Inc.",
                b'6' => "Autocar Industries, Llc",
                _ => UNKNOWN,
            },
            b'E' => match wmi.as_bytes()[2] {
                b'U' => "Astur N.C. Tooling, Inc",
                b'H' => "Excelsior-Henderson Motorcycles",
                b'8' => "Focus  Inc ",
                b'S' => "Hunter Automotive Group, Inc.",
                _ => UNKNOWN,
            },
            b'L' => match wmi.as_bytes()[2] {
                b'5' => "American Ironhorse Motorcycle Company, Inc.",
                b'Y' => "Johnny Pag",
                b'M' => "Ford Motor Company",
                b'1' => "Ford Motor Company",
                b'T' => "Ford Motor Company",
                _ => UNKNOWN,
            },
            b'P' => match wmi.as_bytes()[2] {
                b'3' => "Baron Motorcycles, Inc.",
                b'8' => "Rc Motorsports, Llc.",
                b'4' => "Power Sports Factory",
                _ => UNKNOWN,
            },
            b'J' => match wmi.as_bytes()[2] {
                b'1' => "Big Dog Motorcycles",
                b'E' => "Fast Trac Manufacturing Inc",
                b'6' => "American Honda Motor Co., Inc.",
                b'8' => "American Honda Motor Co., Inc.",
                b'7' => "American Honda Motor Co., Inc.",
                b'0' => "American Honda Motor Co., Inc.",
                _ => UNKNOWN,
            },
            b'T' => match wmi.as_bytes()[2] {
                b'C' => "Cruisers Manufacturing, Inc.",
                b'Y' => "Thoroughbred Motorsports Inc.",
                b'M' => "Titan Motorcycle Company Of America",
                b'D' => "Toyota Motor Manufacturing, Indiana, Inc.",
                b'E' => "Toyota Motor Manufacturing, California, Inc.",
                b'B' => "Toyota Motor Manufacturing, Indiana, Inc.",
                b'F' => "Toyota Motor Manufacturing, Texas, Inc.",
                b'4' => "Workhorse Custom Chassis",
                _ => UNKNOWN,
            },
            b'7' => match wmi.as_bytes()[2] {
                b'G' => "Massimo Motor Sports, Llc",
                b'E' => "Pagsta. Llc Limited Liability Company",
                b'S' => "Lightning Motors Corp",
                _ => UNKNOWN,
            },
            b'V' => match wmi.as_bytes()[2] {
                b'X' => "Millennium Cycles, Inc. ",
                b'0' => "Nst Inc.",
                b'R' => "Kuryente Enterprises, Llc",
                b'4' => "Autocar Llc",
                _ => UNKNOWN,
            },
            b'9' => match wmi.as_bytes()[2] {
                b'U' => "Spira4U Llc",
                b'R' => "Workhorse Group Inc.",
                _ => UNKNOWN,
            },
            b'S' => match wmi.as_bytes()[2] {
                b'A' => "Suzuki Motor Of America, Inc",
                b'J' => "Avanti Motorcycles Inc.",
                b'3' => "General Motors Llc",
                _ => UNKNOWN,
            },
            b'D' => match wmi.as_bytes()[2] {
                b'G' => "Terex Advance Mixer",
                _ => UNKNOWN,
            },
            _ => UNKNOWN,
        },
        b'V' => match wmi.as_bytes()[1] {
            b'N' => match wmi.as_bytes()[2] {
                b'E' => "Irisbus France",
                b'K' => "Toyota Motor Manufacturing, France, S.A.S.",
                _ => UNKNOWN,
            },
            b'G' => match wmi.as_bytes()[2] {
                b'8' => "Renault Group",
                b'5' => "Yamaha Motor Corporation",
                b'A' => "Peugeot Motorcycles",
                _ => UNKNOWN,
            },
            b'L' => match wmi.as_bytes()[2] {
                b'4' => "Bluecar, Sas ",
                _ => UNKNOWN,
            },
            b'F' => match wmi.as_bytes()[2] {
                b'1' => "Renault Group",
                b'3' => "Automobiles Peugeot",
                _ => UNKNOWN,
            },
            b'X' => match wmi.as_bytes()[2] {
                b'1' => "Sour Zavodi Crvena Zastava Dba Yugo America, Inc.",
                _ => UNKNOWN,
            },
            b'R' => match wmi.as_bytes()[2] {
                b'C' => "Verucci Motorcycles, Llc",
                _ => UNKNOWN,
            },
            b'B' => match wmi.as_bytes()[2] {
                b'K' => "Ktm Ag",
                _ => UNKNOWN,
            },
            b'T' => match wmi.as_bytes()[2] {
                b'M' => "Montesa Honda Sa",
                b'D' => "Montesa Honda Sa",
                b'H' => "Nacional Motor S.A.U.",
                b'T' => "Suzuki Motor Of America, Inc",
                _ => UNKNOWN,
            },
            _ => UNKNOWN,
        },
        b'3' => match wmi.as_bytes()[1] {
            b'C' => match wmi.as_bytes()[2] {
                b'E' => "Volvo Group Mexico, S.A. De C.V.",
                b'5' => "Chrysler De Mexico Toluca",
                b'3' => "Chrysler De Mexico Toluca",
                b'G' => "Ktmmex Sa. De Cv.",
                b'Z' => "Honda De Mexico",
                b'4' => "Chrysler De Mexico Toluca",
                b'A' => "Chrysler De Mexico Toluca",
                b'8' => "Chrysler De Mexico Toluca",
                b'6' => "Chrysler De Mexico Toluca",
                _ => UNKNOWN,
            },
            b'B' => match wmi.as_bytes()[2] {
                b'M' => "Motor Coach Industries, Inc.",
                b'5' => "Chrysler De Mexico Toluca",
                b'4' => "Chrysler De Mexico Toluca",
                b'8' => "Chrysler De Mexico Toluca",
                b'7' => "Chrysler De Mexico Toluca",
                b'H' => "Daimler Trucks North America Llc",
                _ => UNKNOWN,
            },
            b'J' => match wmi.as_bytes()[2] {
                b'5' => "Chrysler De Mexico Toluca",
                b'B' => "Bombardier Recreational Products Inc ",
                b'4' => "Chrysler De Mexico Toluca",
                _ => UNKNOWN,
            },
            b'P' => match wmi.as_bytes()[2] {
                b'5' => "Chrysler De Mexico Toluca",
                b'3' => "Chrysler De Mexico Toluca",
                b'4' => "Chrysler De Mexico Toluca",
                b'C' => "Nissan North America, Inc.",
                b'7' => "Chrysler De Mexico Toluca",
                _ => UNKNOWN,
            },
            b'D' => match wmi.as_bytes()[2] {
                b'5' => "Chrysler De Mexico Toluca",
                b'4' => "Chrysler De Mexico Toluca",
                b'8' => "Chrysler De Mexico Toluca",
                b'7' => "Chrysler De Mexico Toluca",
                b'3' => "Chrysler De Mexico Toluca",
                _ => UNKNOWN,
            },
            b'A' => match wmi.as_bytes()[2] {
                b'B' => "Dina Autobuses",
                b'4' => "Chrysler De Mexico Toluca",
                b'8' => "Chrysler De Mexico Toluca",
                b'3' => "Chrysler De Mexico Toluca",
                b'7' => "Chrysler De Mexico Toluca",
                b'K' => "Daimler Trucks North America Llc",
                _ => UNKNOWN,
            },
            b'F' => match wmi.as_bytes()[2] {
                b'B' => "Ford Motor Company, Mexico",
                b'A' => "Ford Motor Company, Mexico",
                b'M' => "Ford Motor Company, Mexico",
                b'N' => "Blue Diamond Truck, S. De R. L. De C. V.",
                b'T' => "Ford Motor Company, Mexico",
                b'6' => "Daimler Chrysler De Mexico Sa De Cv",
                _ => UNKNOWN,
            },
            b'M' => match wmi.as_bytes()[2] {
                b'W' => "Bmw Ag",
                b'F' => "Bmw Ag",
                b'E' => "Ford Motor Company, Mexico",
                b'A' => "Ford Motor Company, Mexico",
                b'Z' => "Mazda Motor Manufacturing De Mexico S.A. De C.V.",
                b'Y' => "Mazda Motor Manufacturing De Mexico S.A. De C.V.",
                b'D' => "Mazda Motor Manufacturing De Mexico S.A. De C.V.",
                b'V' => "Mazda Motor Manufacturing De Mexico S.A. De C.V.",
                _ => UNKNOWN,
            },
            b'G' => match wmi.as_bytes()[2] {
                b'2' => "General Motors Llc",
                b'4' => "General Motors Llc",
                b'3' => "General Motors Llc",
                b'1' => "General Motors Llc",
                b'S' => "General Motors Llc",
                b'7' => "General Motors Llc",
                b'K' => "General Motors Llc",
                b'M' => "General Motors Llc",
                b'5' => "General Motors Llc",
                b'0' => "General Motors Llc",
                b'Y' => "General Motors Llc",
                b'N' => "General Motors Llc",
                b'C' => "General Motors Llc",
                b'T' => "General Motors Llc",
                b'G' => "General Motors Llc",
                _ => UNKNOWN,
            },
            b'E' => match wmi.as_bytes()[2] {
                b'3' => "Chrysler De Mexico Toluca",
                _ => UNKNOWN,
            },
            b'L' => match wmi.as_bytes()[2] {
                b'N' => "Ford Motor Company, Mexico",
                _ => UNKNOWN,
            },
            b'V' => match wmi.as_bytes()[2] {
                b'W' => "Volkswagen De Mexico Sa De Cv",
                b'V' => "Volkswagen De Mexico Sa De Cv",
                _ => UNKNOWN,
            },
            b'N' => match wmi.as_bytes()[2] {
                b'1' => "Nissan Mexicana, S.A. De C.V.",
                b'E' => "Polaris Industries Inc.",
                b'S' => "Polaris Industries Inc.",
                b'8' => "Nissan Mexicana, S.A. De C.V.",
                b'6' => "Nissan Mexicana, S.A. De C.V.",
                _ => UNKNOWN,
            },
            b'K' => match wmi.as_bytes()[2] {
                b'P' => "Kia  Mexico S.A. De C.V.",
                b'M' => "Kia  Mexico S.A. De C.V.",
                _ => UNKNOWN,
            },
            b'H' => match wmi.as_bytes()[2] {
                b'G' => "Honda De Mexico",
                b'1' => "Honda De Mexico",
                b'C' => "Blue Diamond Truck, S. De R. L. De C. V.",
                b'R' => "Navistar, Inc.",
                b'S' => "Navistar, Inc.",
                _ => UNKNOWN,
            },
            b'X' => match wmi.as_bytes()[2] {
                b'K' => "Kenworth Mexicana Sa De Cv",
                _ => UNKNOWN,
            },
            b'W' => match wmi.as_bytes()[2] {
                b'M' => "Kenworth Mexicana Sa De Cv",
                b'K' => "Kenworth Truck Company",
                b'P' => "Peterbilt Motors Company",
                _ => UNKNOWN,
            },
            b'T' => match wmi.as_bytes()[2] {
                b'M' => "Toyota Motor Mfg De Baja California S De Rl De Cv",
                b'Y' => "Toyota Motor Manufacturing De Guanajuato",
                _ => UNKNOWN,
            },
            b'S' => match wmi.as_bytes()[2] {
                b'D' => "Sterling Trucks (Daimler Division)",
                _ => UNKNOWN,
            },
            _ => UNKNOWN,
        },
        b'N' => match wmi.as_bytes()[1] {
            b'L' => match wmi.as_bytes()[2] {
                b'N' => "Karsan Otomotiv Sanayii Ve Tic. A.S.",
                b'T' => "Temsa Skoda Sabanci Ulasim Araclari A.S.",
                _ => UNKNOWN,
            },
            b'M' => match wmi.as_bytes()[2] {
                b'T' => "Toyota Motor Manufacturing,Turkey ,Inc.",
                b'0' => "Ford Otomotiv Sanayi A.S., Turkey",
                _ => UNKNOWN,
            },
            _ => UNKNOWN,
        },
        b'8' => match wmi.as_bytes()[1] {
            b'B' => match wmi.as_bytes()[2] {
                b'R' => "Mercedes-Benz Usa, Llc (Sprinter)",
                b'T' => "Mercedes-Benz Usa, Llc (Sprinter)",
                b'U' => "Mercedes-Benz Usa, Llc (Sprinter)",
                _ => UNKNOWN,
            },
            b'A' => match wmi.as_bytes()[2] {
                b'6' => "Zanella Hnos Y Cia Sa",
                _ => UNKNOWN,
            },
            _ => UNKNOWN,
        },
        b'9' => match wmi.as_bytes()[1] {
            b'3' => match wmi.as_bytes()[2] {
                b'V' => "International Truck And Engine Corporation",
                b'2' => "Harley-Davidson Do Brasil Ltda",
                b'M' => "International Truck And Engine Corporation",
                b'S' => "International Truck And Engine Corporation",
                _ => UNKNOWN,
            },
            b'4' => match wmi.as_bytes()[2] {
                b'M' => "Busscar Onibus S.A.",
                _ => UNKNOWN,
            },
            b'B' => match wmi.as_bytes()[2] {
                b'W' => "Volkswagen Group Of America, Inc.",
                b'V' => "Volvo Do Brasil Veiculos Ltda",
                b'F' => "Ford Motor Company Brasil Ltda.",
                _ => UNKNOWN,
            },
            b'7' => match wmi.as_bytes()[2] {
                b'N' => "Triumph Motorcycles Limited",
                _ => UNKNOWN,
            },
            b'C' => match wmi.as_bytes()[2] {
                b'2' => "Moto Honda Da Amazonia Ltda.",
                _ => UNKNOWN,
            },
            b'5' => match wmi.as_bytes()[2] {
                b'Z' => "Buell Motorcycle Company",
                _ => UNKNOWN,
            },
            b'U' => match wmi.as_bytes()[2] {
                b'H' => "Rtm Group Inc.",
                b'A' => "Deceleste Sa",
                _ => UNKNOWN,
            },
            b'D' => match wmi.as_bytes()[2] {
                b'B' => "Mercedes-Benz Truck Company Inc",
                _ => UNKNOWN,
            },
            _ => UNKNOWN,
        },
        b'Y' => match wmi.as_bytes()[1] {
            b'V' => match wmi.as_bytes()[2] {
                b'3' => "Volvo Car Corporation",
                b'1' => "Volvo Car Corporation",
                b'4' => "Volvo Car Corporation",
                _ => UNKNOWN,
            },
            b'S' => match wmi.as_bytes()[2] {
                b'3' => "Saab Cars North America, Inc.",
                b'M' => "Polestar Performance Ab",
                b'R' => "Polestar Performance Ab",
                _ => UNKNOWN,
            },
            b'K' => match wmi.as_bytes()[2] {
                b'1' => "Oy Saab Valmet Ab",
                _ => UNKNOWN,
            },
            b'Y' => match wmi.as_bytes()[2] {
                b'C' => "Th!Nk Nordic As",
                _ => UNKNOWN,
            },
            b'W' => match wmi.as_bytes()[2] {
                b'2' => "Cake 0 Emission Ab",
                _ => UNKNOWN,
            },
            b'C' => match wmi.as_bytes()[2] {
                b'1' => "American Honda Motor Co., Inc.",
                _ => UNKNOWN,
            },
            _ => UNKNOWN,
        },
        b'U' => match wmi.as_bytes()[1] {
            b'5' => match wmi.as_bytes()[2] {
                b'Y' => "Hyundai-Kia America Technical Center Inc (Hatci)",
                _ => UNKNOWN,
            },
            b'B' => match wmi.as_bytes()[2] {
                b'M' => "Torrot Electric Europa S.L.",
                _ => UNKNOWN,
            },
            b'C' => match wmi.as_bytes()[2] {
                b'5' => "Lacfamet",
                b'V' => "Volta Motor Company S.L.",
                _ => UNKNOWN,
            },
            b'H' => match wmi.as_bytes()[2] {
                b'5' => "Citycom Elektromobilfabrik A/S",
                _ => UNKNOWN,
            },
            _ => UNKNOWN,
        },
        b'K' => match wmi.as_bytes()[1] {
            b'L' => match wmi.as_bytes()[2] {
                b'2' => "General Motors Llc",
                b'1' => "General Motors Llc",
                b'A' => "Gm Daewoo Auto & Technology Company",
                b'5' => "Suzuki Motor Of America, Inc",
                _ => UNKNOWN,
            },
            b'M' => match wmi.as_bytes()[2] {
                b'H' => "Hyundai Motor Co",
                b'T' => "Hyundai Motor Co",
                b'Y' => "Daelim Motor Co., Ltd",
                b'4' => "Kr Motors Co., Ltd",
                b'1' => "Hyosung Motors & Machinery Inc",
                b'8' => "Hyundai Motor Co",
                b'U' => "Hyundai Motor Co",
                b'F' => "Hyundai Motor Co",
                _ => UNKNOWN,
            },
            b'P' => match wmi.as_bytes()[2] {
                b'H' => "Hyundai Motor Co",
                b'S' => "Ssangyong Motor Co. Ltd",
                _ => UNKNOWN,
            },
            b'N' => match wmi.as_bytes()[2] {
                b'A' => "Kia Corporation",
                b'J' => "Kia Motors (Ford Imports)",
                b'M' => "Renault Samsung Motors Co., Ltd",
                b'D' => "Kia Corporation",
                _ => UNKNOWN,
            },
            b'F' => match wmi.as_bytes()[2] {
                b'B' => "Freightliner  Corporation",
                _ => UNKNOWN,
            },
            _ => UNKNOWN,
        },
        b'Z' => match wmi.as_bytes()[1] {
            b'A' => match wmi.as_bytes()[2] {
                b'M' => "Maserati S.P.A.",
                b'R' => "Alfa Romeo S.P.A.",
                b'P' => "Piaggio & C.S.P.A.",
                b'C' => "Fca Italy S.P.A.",
                b'S' => "Alfa Romeo S.P.A.",
                _ => UNKNOWN,
            },
            b'C' => match wmi.as_bytes()[2] {
                b'2' => "Maserati S.P.A.",
                b'G' => "Mv Agusta Motor S.P.A.",
                b'H' => "Di Blasi Industriale Srl",
                _ => UNKNOWN,
            },
            b'F' => match wmi.as_bytes()[2] {
                b'R' => "Pininfarina",
                b'A' => "Fca Italy S.P.A.",
                b'F' => "Ferrari S.P.A.",
                b'B' => "Fca Italy S.P.A.",
                _ => UNKNOWN,
            },
            b'H' => match wmi.as_bytes()[2] {
                b'W' => "Automobili Lamborghini Spa",
                _ => UNKNOWN,
            },
            b'B' => match wmi.as_bytes()[2] {
                b'N' => "Benelli Q.J. Srl",
                b'0' => "Motor Bike Imports, Inc",
                b'2' => "Moto Meteora ",
                _ => UNKNOWN,
            },
            b'D' => match wmi.as_bytes()[2] {
                b'3' => "Betamotor S.P.A.",
                b'C' => "American Honda Motor Co., Inc.",
                b'4' => "Aprilia S.P.A.",
                b'M' => "Ducati Motor Holding S.P.A. ",
                _ => UNKNOWN,
            },
            b'N' => match wmi.as_bytes()[2] {
                b'N' => "Energica Motor Company Spa",
                b'0' => "Swm Motorcycles S.R.L.",
                b'6' => "Maserati S.P.A.",
                _ => UNKNOWN,
            },
            b'J' => match wmi.as_bytes()[2] {
                b'T' => "Mod Cycles Corp.",
                b'P' => "Piccoli Motori S.R.L.",
                b'M' => "Malaguti S.P.A.",
                _ => UNKNOWN,
            },
            b'G' => match wmi.as_bytes()[2] {
                b'U' => "Moto Guzzi S.P.A",
                b'Z' => "Oxygen S.P.A",
                _ => UNKNOWN,
            },
            b'L' => match wmi.as_bytes()[2] {
                b'V' => "Moto Laverda Spa",
                _ => UNKNOWN,
            },
            b'K' => match wmi.as_bytes()[2] {
                b'H' => "Husqvarna Motorcycles S.R.L (Formerly Known As Boxer S.R.L., Varese, Italy)",
                _ => UNKNOWN,
            },
            b'Z' => match wmi.as_bytes()[2] {
                b'1' => "Tomos D.O.O. Motoindustrija",
                _ => UNKNOWN,
            },
            b'P' => match wmi.as_bytes()[2] {
                b'B' => "Automobili Lamborghini Spa",
                _ => UNKNOWN,
            },
            b'S' => match wmi.as_bytes()[2] {
                b'G' => "Ferrari S.P.A.",
                _ => UNKNOWN,
            },
            _ => UNKNOWN,
        },
        b'X' => match wmi.as_bytes()[1] {
            b'Z' => match wmi.as_bytes()[2] {
                b'1' => "Nov Luxembourg S.A.",
                _ => UNKNOWN,
            },
            b'T' => match wmi.as_bytes()[2] {
                b'B' => "Classic Motorcycles & Sidecars, Inc.",
                _ => UNKNOWN,
            },
            b'8' => match wmi.as_bytes()[2] {
                b'J' => "Irbitski Mototsicletny Zavod",
                _ => UNKNOWN,
            },
            b'L' => match wmi.as_bytes()[2] {
                b'W' => "Terberg Benschop B.V.",
                _ => UNKNOWN,
            },
            _ => UNKNOWN,
        },
        b'6' => match wmi.as_bytes()[1] {
            b'G' => match wmi.as_bytes()[2] {
                b'1' => "General Motors Llc",
                b'2' => "General Motors Llc",
                _ => UNKNOWN,
            },
            b'M' => match wmi.as_bytes()[2] {
                b'M' => "Mitsubishi Motors Australia Ltd.",
                b'P' => "Ford Motor Co Of Australia Ltd.",
                b'D' => "Braaap Motorcycle Pty Ltd",
                _ => UNKNOWN,
            },
            _ => UNKNOWN,
        },
        b'M' => match wmi.as_bytes()[1] {
            b'L' => match wmi.as_bytes()[2] {
                b'3' => "Mitsubishi Motors Corporation (Mmc)",
                b'H' => "Thai Honda Co., Ltd.",
                b'P' => "Tiger Motor Co., Ltd.",
                b'W' => "Sco Motor Co., Ltd",
                b'5' => "Kawasaki Motors, Ltd",
                b'0' => "Ducati Motor (Thailand) Co., Ltd. ",
                _ => UNKNOWN,
            },
            b'N' => match wmi.as_bytes()[2] {
                b'3' => "Fca Us Llc",
                _ => UNKNOWN,
            },
            b'P' => match wmi.as_bytes()[2] {
                b'3' => "Fca Us Llc",
                _ => UNKNOWN,
            },
            b'H' => match wmi.as_bytes()[2] {
                b'3' => "Yamaha Motor Corporation",
                b'4' => "Kawasaki Motors, Ltd",
                _ => UNKNOWN,
            },
            b'D' => match wmi.as_bytes()[2] {
                b'2' => "Bajaj Auto Ltd",
                b'E' => "Kinetic Engineering Ltd.",
                _ => UNKNOWN,
            },
            b'E' => match wmi.as_bytes()[2] {
                b'3' => "Royal Enfield, A Unit Of Eicher Motors Ltd.",
                _ => UNKNOWN,
            },
            b'B' => match wmi.as_bytes()[2] {
                b'F' => "Royal Enfield, A Unit Of Eicher Motors Ltd.",
                _ => UNKNOWN,
            },
            b'C' => match wmi.as_bytes()[2] {
                b'V' => "Mahindra & Mahindra Limited",
                b'U' => "Mahindra & Mahindra Limited",
                _ => UNKNOWN,
            },
            b'A' => match wmi.as_bytes()[2] {
                b'J' => "Ford India Ltd",
                _ => UNKNOWN,
            },
            _ => UNKNOWN,
        },
        b'T' => match wmi.as_bytes()[1] {
            b'R' => match wmi.as_bytes()[2] {
                b'U' => "Audi Ag",
                _ => UNKNOWN,
            },
            b'M' => match wmi.as_bytes()[2] {
                b'C' => "Thompson Mfg. Company Wexford Ltd.",
                _ => UNKNOWN,
            },
            b'A' => match wmi.as_bytes()[2] {
                b'P' => "Polaris Industries Inc.",
                _ => UNKNOWN,
            },
            b'L' => match wmi.as_bytes()[2] {
                b'J' => "American Jawa Ltd ",
                b'F' => "Kuberg S.R.O",
                _ => UNKNOWN,
            },
            b'D' => match wmi.as_bytes()[2] {
                b'M' => "Quantya Sa",
                _ => UNKNOWN,
            },
            b'C' => match wmi.as_bytes()[2] {
                b'P' => "Peraves Ag",
                _ => UNKNOWN,
            },
            b'Y' => match wmi.as_bytes()[2] {
                b'B' => "Mitsubishi Fuso Truck Europe S.A.",
                _ => UNKNOWN,
            },
            _ => UNKNOWN,
        },
        b'R' => match wmi.as_bytes()[1] {
            b'K' => match wmi.as_bytes()[2] {
                b'R' => "Yamaha Motor Taiwan Co., Ltd.",
                b'1' => "E-Ton Power Tech Co., Ltd.",
                b'6' => "Suzuki Motor Of America, Inc",
                b'7' => "Suzuki Motor Of America, Inc",
                b'Z' => "Taiwan Helio Technology Co., Ltd.",
                b'C' => "Rhino Power Sport Industrial Co., Ltd",
                b'P' => "Aero Motorsports, Llc",
                _ => UNKNOWN,
            },
            b'F' => match wmi.as_bytes()[2] {
                b'4' => "Chyong Horng Enterprise Co., Ltd.",
                b'3' => "Aeon Motor Co., Ltd",
                b'L' => "Her Chee Industrial Co., Ltd.",
                b'8' => "Evt Technology Co., Ltd.",
                b'Z' => "E-Ton America, Llc.",
                b'T' => "Cpi Motor Co.",
                b'B' => "Kwang Yang Motor Co., Ltd (Kymco)",
                b'C' => "Taiwan Golden Bee Company",
                b'R' => "Standard Motor Corporation",
                b'G' => "Sanyang Motor Co., Ltd. (Sym)",
                _ => UNKNOWN,
            },
            b'G' => match wmi.as_bytes()[2] {
                b'S' => "Kwang Yang Motor Co., Ltd (Kymco)",
                b'1' => "Apex Motor Usa",
                _ => UNKNOWN,
            },
            b'L' => match wmi.as_bytes()[2] {
                b'8' => "Lifan-Vietnam Motor Co., Ltd.",
                b'H' => "Honda Vietnam Co., Ltd.",
                b'7' => "Gelimex",
                b'P' => "Vietnam Kwang Yang Motor Co., Ltd.",
                b'L' => "Vinfast Trading And Production Limited Liability Company",
                _ => UNKNOWN,
            },
            b'2' => match wmi.as_bytes()[2] {
                b'L' => "Hongdu Electric Vehicle Hongkong Co.,Limited",
                b'W' => "Smarda Industry & Trade Co., Limited",
                b'X' => "Hk Puviter International Co., Limited",
                b'F' => "Winmax Asia Limited",
                b'V' => "Dogebos Industrial Co., Limited",
                _ => UNKNOWN,
            },
            b'1' => match wmi.as_bytes()[2] {
                b'N' => "Niu Technologies Group Limited",
                b'2' => "Xinri E-Vehicle Hongkong Co., Limited",
                _ => UNKNOWN,
            },
            b'3' => match wmi.as_bytes()[2] {
                b'B' => "Munro Technology Co.,Limited",
                b'M' => "Mangosteen Technology Co., Limited",
                b'J' => "Denzel Motors Co.,Limited",
                b'6' => "Yongkang Changpao Industry And Trade Co., Ltd.",
                b'W' => "Hong Kong Runhorse Holding Co., Limited",
                b'8' => "King Hk International Trading Limited",
                _ => UNKNOWN,
            },
            b'4' => match wmi.as_bytes()[2] {
                b'N' => "Elyx Smart Technology Holdings (Hongkong) Limited",
                b'1' => "Wuxi Tenghui Electric Vehicle Hk Co.,Limited",
                b'5' => "Xl Holding Group (Hk) Co., Limited",
                b'C' => "Doufeng Vehicle Co., Limited",
                b'X' => "Futengda Vehicle(Hk) Limited",
                b'6' => "Wuxi Xiyao Intelligent Technology Co Ltd",
                _ => UNKNOWN,
            },
            b'5' => match wmi.as_bytes()[2] {
                b'6' => "Yongkang Liqian Industry And Trade Co., Limited",
                b'C' => "(Hong Kong) Sumec Co, Ltd",
                b'H' => "Hanbird Technology(Hongkong) Limited",
                _ => UNKNOWN,
            },
            b'P' => match wmi.as_bytes()[2] {
                b'G' => "Gck Industrial Usa",
                _ => UNKNOWN,
            },
            b'7' => match wmi.as_bytes()[2] {
                b'M' => "Cnreally Known Corporation Limited",
                b'5' => "Anchi Motorcycle Technology Limited",
                b'N' => "Dayi Intelligent Technology Co. Limited",
                b'4' => "Mking Technology (Hongkong) Co., Limited",
                b'E' => "Cnreally Known Corporation Limited",
                _ => UNKNOWN,
            },
            b'8' => match wmi.as_bytes()[2] {
                b'N' => "Heli Motorcycle Technology Limited",
                b'F' => "Skyblue Motors (Hk) Co., Limited",
                b'C' => "Wuxi Tenghui International Co., Limited",
                _ => UNKNOWN,
            },
            b'6' => match wmi.as_bytes()[2] {
                b'J' => "Newbot (Hk) Co., Limited",
                _ => UNKNOWN,
            },
            b'S' => match wmi.as_bytes()[2] {
                b'B' => "Freightliner  Corporation",
                _ => UNKNOWN,
            },
            _ => UNKNOWN,
        },
        b'A' => match wmi.as_bytes()[1] {
            b'2' => match wmi.as_bytes()[2] {
                b'B' => "Usa Motortoys, Llc",
                _ => UNKNOWN,
            },
            b'4' => match wmi.as_bytes()[2] {
                b'Z' => "Zero Motorcycles, Inc.",
                _ => UNKNOWN,
            },
            b'5' => match wmi.as_bytes()[2] {
                b'L' => "Activmo Auto Inc.",
                b'T' => "Jinhua Regard Manufacturing Company Usa",
                _ => UNKNOWN,
            },
            b'6' => match wmi.as_bytes()[2] {
                b'H' => "Hisun Motors Corp.,Usa",
                _ => UNKNOWN,
            },
            b'8' => match wmi.as_bytes()[2] {
                b'M' => "Massimo Motor Sports, Llc",
                _ => UNKNOWN,
            },
            b'D' => match wmi.as_bytes()[2] {
                b'M' => "General Motors Llc",
                _ => UNKNOWN,
            },
            b'F' => match wmi.as_bytes()[2] {
                b'V' => "Freightliner  Corporation",
                _ => UNKNOWN,
            },
            _ => UNKNOWN,
        },
        b'H' => match wmi.as_bytes()[1] {
            b'A' => match wmi.as_bytes()[2] {
                b'6' => "Jiangsu Niu Electric Technology Co., Ltd.",
                _ => UNKNOWN,
            },
            b'0' => match wmi.as_bytes()[2] {
                b'D' => "Taizhou Qianxin Vehicle Co,.Ltd.",
                _ => UNKNOWN,
            },
            b'Z' => match wmi.as_bytes()[2] {
                b'2' => "Taizhou Zhilong Technology Co.,Ltd",
                _ => UNKNOWN,
            },
            b'B' => match wmi.as_bytes()[2] {
                b'3' => "Hsu Dragon Technology Co., Ltd.",
                _ => UNKNOWN,
            },
            b'U' => match wmi.as_bytes()[2] {
                b'3' => "Chongqing Qiulong Technology Co., Ltd",
                _ => UNKNOWN,
            },
            b'L' => match wmi.as_bytes()[2] {
                b'3' => "Zhejiang Langxiang Industry Co.,Ltd.",
                b'4' => "Zhejiang Morini Vehicle Co.,Ltd.",
                _ => UNKNOWN,
            },
            b'D' => match wmi.as_bytes()[2] {
                b'1' => "Wuxi Dayang Electric Technology Co., Ltd.",
                _ => UNKNOWN,
            },
            _ => UNKNOWN,
        },
        _ => UNKNOWN,
    }
}