Welcome to mirror list, hosted at ThFree Co, Russian Federation.

vid_data.c « libwdi « source « driver - github.com/ClusterM/hakchi2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1240e1738612e9a5dde49cfb4bb9f17d1268e626 (plain)
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
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
/*
 * USB vendors, by VID
 * This file is autogenerated from http://www.linux-usb.org/usb.ids
 * See http://www.linux-usb.org/usb-ids.html to submit new VIDs or PIDs
 *
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 3 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 */

#include <stdlib.h>
#include "libwdi.h"

struct vendor_name {
	unsigned short vid;
	const char* name;
};

/*
 * http://www.linux-usb.org/usb.ids
 * Version: 2015.12.17
 */
static struct vendor_name usb_vendor[] = {
	{ 0x0001, "Fry's Electronics" },
	{ 0x0002, "Ingram" },
	{ 0x0003, "Club Mac" },
	{ 0x0004, "Nebraska Furniture Mart" },
	{ 0x0011, "Unknown" },
	{ 0x0053, "Planex" },
	{ 0x0079, "DragonRise Inc." },
	{ 0x0105, "Trust International B.V." },
	{ 0x0127, "IBP" },
	{ 0x0145, "Unknown" },
	{ 0x017c, "MLK" },
	{ 0x0200, "TP-Link" },
	{ 0x0204, "Chipsbank Microelectronics Co., Ltd" },
	{ 0x0218, "Hangzhou Worlde" },
	{ 0x02ad, "HUMAX Co., Ltd." },
	{ 0x0300, "MM300 eBook Reader" },
	{ 0x0324, "OCZ Technology Inc" },
	{ 0x0325, "OCZ Technology Inc" },
	{ 0x0386, "LTS" },
	{ 0x03d9, "Shenzhen Sinote Tech-Electron Co., Ltd" },
	{ 0x03da, "Bernd Walter Computer Technology" },
	{ 0x03e8, "EndPoints, Inc." },
	{ 0x03e9, "Thesys Microelectronics" },
	{ 0x03ea, "Data Broadcasting Corp." },
	{ 0x03eb, "Atmel Corp." },
	{ 0x03ec, "Iwatsu America, Inc." },
	{ 0x03ed, "Mitel Corp." },
	{ 0x03ee, "Mitsumi" },
	{ 0x03f0, "Hewlett-Packard" },
	{ 0x03f1, "Genoa Technology" },
	{ 0x03f2, "Oak Technology, Inc." },
	{ 0x03f3, "Adaptec, Inc." },
	{ 0x03f4, "Diebold, Inc." },
	{ 0x03f5, "Siemens Electromechanical" },
	{ 0x03f8, "Epson Imaging Technology Center" },
	{ 0x03f9, "KeyTronic Corp." },
	{ 0x03fb, "OPTi, Inc." },
	{ 0x03fc, "Elitegroup Computer Systems" },
	{ 0x03fd, "Xilinx, Inc." },
	{ 0x03fe, "Farallon Comunications" },
	{ 0x0400, "National Semiconductor Corp." },
	{ 0x0401, "National Registry, Inc." },
	{ 0x0402, "ALi Corp." },
	{ 0x0403, "Future Technology Devices International, Ltd" },
	{ 0x0404, "NCR Corp." },
	{ 0x0405, "Synopsys, Inc." },
	{ 0x0406, "Fujitsu-ICL Computers" },
	{ 0x0407, "Fujitsu Personal Systems, Inc." },
	{ 0x0408, "Quanta Computer, Inc." },
	{ 0x0409, "NEC Corp." },
	{ 0x040a, "Kodak Co." },
	{ 0x040b, "Weltrend Semiconductor" },
	{ 0x040c, "VTech Computers, Ltd" },
	{ 0x040d, "VIA Technologies, Inc." },
	{ 0x040e, "MCCI" },
	{ 0x040f, "Echo Speech Corp." },
	{ 0x0411, "BUFFALO INC. (formerly MelCo., Inc.)" },
	{ 0x0412, "Award Software International" },
	{ 0x0413, "Leadtek Research, Inc." },
	{ 0x0414, "Giga-Byte Technology Co., Ltd" },
	{ 0x0416, "Winbond Electronics Corp." },
	{ 0x0417, "Symbios Logic" },
	{ 0x0418, "AST Research" },
	{ 0x0419, "Samsung Info. Systems America, Inc." },
	{ 0x041a, "Phoenix Technologies, Ltd" },
	{ 0x041b, "d'TV" },
	{ 0x041d, "S3, Inc." },
	{ 0x041e, "Creative Technology, Ltd" },
	{ 0x041f, "LCS Telegraphics" },
	{ 0x0420, "Chips and Technologies" },
	{ 0x0421, "Nokia Mobile Phones" },
	{ 0x0422, "ADI Systems, Inc." },
	{ 0x0423, "Computer Access Technology Corp." },
	{ 0x0424, "Standard Microsystems Corp." },
	{ 0x0425, "Motorola Semiconductors HK, Ltd" },
	{ 0x0426, "Integrated Device Technology, Inc." },
	{ 0x0427, "Motorola Electronics Taiwan, Ltd" },
	{ 0x0428, "Advanced Gravis Computer Tech, Ltd" },
	{ 0x0429, "Cirrus Logic" },
	{ 0x042a, "Ericsson Austrian, AG" },
	{ 0x042b, "Intel Corp." },
	{ 0x042c, "Innovative Semiconductors, Inc." },
	{ 0x042d, "Micronics" },
	{ 0x042e, "Acer, Inc." },
	{ 0x042f, "Molex, Inc." },
	{ 0x0430, "Sun Microsystems, Inc." },
	{ 0x0431, "Itac Systems, Inc." },
	{ 0x0432, "Unisys Corp." },
	{ 0x0433, "Alps Electric, Inc." },
	{ 0x0434, "Samsung Info. Systems America, Inc." },
	{ 0x0435, "Hyundai Electronics America" },
	{ 0x0436, "Taugagreining HF" },
	{ 0x0437, "Framatome Connectors USA" },
	{ 0x0438, "Advanced Micro Devices, Inc." },
	{ 0x0439, "Voice Technologies Group" },
	{ 0x043d, "Lexmark International, Inc." },
	{ 0x043e, "LG Electronics USA, Inc." },
	{ 0x043f, "RadiSys Corp." },
	{ 0x0440, "Eizo Nanao Corp." },
	{ 0x0441, "Winbond Systems Lab." },
	{ 0x0442, "Ericsson, Inc." },
	{ 0x0443, "Gateway, Inc." },
	{ 0x0445, "Lucent Technologies, Inc." },
	{ 0x0446, "NMB Technologies Corp." },
	{ 0x0447, "Momentum Microsystems" },
	{ 0x044a, "Shamrock Tech. Co., Ltd" },
	{ 0x044b, "WSI" },
	{ 0x044c, "CCL/ITRI" },
	{ 0x044d, "Siemens Nixdorf AG" },
	{ 0x044e, "Alps Electric Co., Ltd" },
	{ 0x044f, "ThrustMaster, Inc." },
	{ 0x0450, "DFI, Inc." },
	{ 0x0451, "Texas Instruments, Inc." },
	{ 0x0452, "Mitsubishi Electronics America, Inc." },
	{ 0x0453, "CMD Technology" },
	{ 0x0454, "Vobis Microcomputer AG" },
	{ 0x0455, "Telematics International, Inc." },
	{ 0x0456, "Analog Devices, Inc." },
	{ 0x0457, "Silicon Integrated Systems Corp." },
	{ 0x0458, "KYE Systems Corp. (Mouse Systems)" },
	{ 0x0459, "Adobe Systems, Inc." },
	{ 0x045a, "SONICblue, Inc." },
	{ 0x045b, "Hitachi, Ltd" },
	{ 0x045d, "Nortel Networks, Ltd" },
	{ 0x045e, "Microsoft Corp." },
	{ 0x0460, "Ace Cad Enterprise Co., Ltd" },
	{ 0x0461, "Primax Electronics, Ltd" },
	{ 0x0463, "MGE UPS Systems" },
	{ 0x0464, "AMP/Tycoelectronics Corp." },
	{ 0x0467, "AT&T Paradyne" },
	{ 0x0468, "Wieson Technologies Co., Ltd" },
	{ 0x046a, "Cherry GmbH" },
	{ 0x046b, "American Megatrends, Inc." },
	{ 0x046c, "Toshiba Corp., Digital Media Equipment" },
	{ 0x046d, "Logitech, Inc." },
	{ 0x046e, "Behavior Tech. Computer Corp." },
	{ 0x046f, "Crystal Semiconductor" },
	{ 0x0471, "Philips (or NXP)" },
	{ 0x0472, "Chicony Electronics Co., Ltd" },
	{ 0x0473, "Sanyo Information Business Co., Ltd" },
	{ 0x0474, "Sanyo Electric Co., Ltd" },
	{ 0x0475, "Relisys/Teco Information System" },
	{ 0x0476, "AESP" },
	{ 0x0477, "Seagate Technology, Inc." },
	{ 0x0478, "Connectix Corp." },
	{ 0x0479, "Advanced Peripheral Laboratories" },
	{ 0x047a, "Semtech Corp." },
	{ 0x047b, "Silitek Corp." },
	{ 0x047c, "Dell Computer Corp." },
	{ 0x047d, "Kensington" },
	{ 0x047e, "Agere Systems, Inc. (Lucent)" },
	{ 0x047f, "Plantronics, Inc." },
	{ 0x0480, "Toshiba America Inc" },
	{ 0x0481, "Zenith Data Systems" },
	{ 0x0482, "Kyocera Corp." },
	{ 0x0483, "STMicroelectronics" },
	{ 0x0484, "Specialix" },
	{ 0x0485, "Nokia Monitors" },
	{ 0x0486, "ASUS Computers, Inc." },
	{ 0x0487, "Stewart Connector" },
	{ 0x0488, "Cirque Corp." },
	{ 0x0489, "Foxconn / Hon Hai" },
	{ 0x048a, "S-MOS Systems, Inc." },
	{ 0x048c, "Alps Electric Ireland, Ltd" },
	{ 0x048d, "Integrated Technology Express, Inc." },
	{ 0x048f, "Eicon Tech." },
	{ 0x0490, "United Microelectronics Corp." },
	{ 0x0491, "Capetronic" },
	{ 0x0492, "Samsung SemiConductor, Inc." },
	{ 0x0493, "MAG Technology Co., Ltd" },
	{ 0x0495, "ESS Technology, Inc." },
	{ 0x0496, "Micron Electronics" },
	{ 0x0497, "Smile International" },
	{ 0x0498, "Capetronic (Kaohsiung) Corp." },
	{ 0x0499, "Yamaha Corp." },
	{ 0x049a, "Gandalf Technologies, Ltd" },
	{ 0x049b, "Curtis Computer Products" },
	{ 0x049c, "Acer Advanced Labs, Inc." },
	{ 0x049d, "VLSI Technology" },
	{ 0x049f, "Compaq Computer Corp." },
	{ 0x04a0, "Digital Equipment Corp." },
	{ 0x04a1, "SystemSoft Corp." },
	{ 0x04a2, "FirePower Systems" },
	{ 0x04a3, "Trident Microsystems, Inc." },
	{ 0x04a4, "Hitachi, Ltd" },
	{ 0x04a5, "Acer Peripherals Inc. (now BenQ Corp.)" },
	{ 0x04a6, "Nokia Display Products" },
	{ 0x04a7, "Visioneer" },
	{ 0x04a8, "Multivideo Labs, Inc." },
	{ 0x04a9, "Canon, Inc." },
	{ 0x04aa, "DaeWoo Telecom, Ltd" },
	{ 0x04ab, "Chromatic Research" },
	{ 0x04ac, "Micro Audiometrics Corp." },
	{ 0x04ad, "Dooin Electronics" },
	{ 0x04af, "Winnov L.P." },
	{ 0x04b0, "Nikon Corp." },
	{ 0x04b1, "Pan International" },
	{ 0x04b3, "IBM Corp." },
	{ 0x04b4, "Cypress Semiconductor Corp." },
	{ 0x04b5, "ROHM LSI Systems USA, LLC" },
	{ 0x04b6, "Hint Corp." },
	{ 0x04b7, "Compal Electronics, Inc." },
	{ 0x04b8, "Seiko Epson Corp." },
	{ 0x04b9, "Rainbow Technologies, Inc." },
	{ 0x04ba, "Toucan Systems, Ltd" },
	{ 0x04bb, "I-O Data Device, Inc." },
	{ 0x04bd, "Toshiba Electronics Taiwan Corp." },
	{ 0x04be, "Telia Research AB" },
	{ 0x04bf, "TDK Corp." },
	{ 0x04c1, "U.S. Robotics (3Com)" },
	{ 0x04c2, "Methode Electronics Far East PTE, Ltd" },
	{ 0x04c3, "Maxi Switch, Inc." },
	{ 0x04c4, "Lockheed Martin Energy Research" },
	{ 0x04c5, "Fujitsu, Ltd" },
	{ 0x04c6, "Toshiba America Electronic Components" },
	{ 0x04c7, "Micro Macro Technologies" },
	{ 0x04c8, "Konica Corp." },
	{ 0x04ca, "Lite-On Technology Corp." },
	{ 0x04cb, "Fuji Photo Film Co., Ltd" },
	{ 0x04cc, "ST-Ericsson" },
	{ 0x04cd, "Tatung Co. Of America" },
	{ 0x04ce, "ScanLogic Corp." },
	{ 0x04cf, "Myson Century, Inc." },
	{ 0x04d0, "Digi International" },
	{ 0x04d1, "ITT Canon" },
	{ 0x04d2, "Altec Lansing Technologies" },
	{ 0x04d3, "VidUS, Inc." },
	{ 0x04d4, "LSI Logic, Inc." },
	{ 0x04d5, "Forte Technologies, Inc." },
	{ 0x04d6, "Mentor Graphics" },
	{ 0x04d7, "Oki Semiconductor" },
	{ 0x04d8, "Microchip Technology, Inc." },
	{ 0x04d9, "Holtek Semiconductor, Inc." },
	{ 0x04da, "Panasonic (Matsushita)" },
	{ 0x04db, "Hypertec Pty, Ltd" },
	{ 0x04dc, "Huan Hsin Holdings, Ltd" },
	{ 0x04dd, "Sharp Corp." },
	{ 0x04de, "MindShare, Inc." },
	{ 0x04df, "Interlink Electronics" },
	{ 0x04e1, "Iiyama North America, Inc." },
	{ 0x04e2, "Exar Corp." },
	{ 0x04e3, "Zilog, Inc." },
	{ 0x04e4, "ACC Microelectronics" },
	{ 0x04e5, "Promise Technology" },
	{ 0x04e6, "SCM Microsystems, Inc." },
	{ 0x04e7, "Elo TouchSystems" },
	{ 0x04e8, "Samsung Electronics Co., Ltd" },
	{ 0x04e9, "PC-Tel, Inc." },
	{ 0x04ea, "Brooktree Corp." },
	{ 0x04eb, "Northstar Systems, Inc." },
	{ 0x04ec, "Tokyo Electron Device, Ltd" },
	{ 0x04ed, "Annabooks" },
	{ 0x04ef, "Pacific Electronic International, Inc." },
	{ 0x04f0, "Daewoo Electronics Co., Ltd" },
	{ 0x04f1, "Victor Company of Japan, Ltd" },
	{ 0x04f2, "Chicony Electronics Co., Ltd" },
	{ 0x04f3, "Elan Microelectronics Corp." },
	{ 0x04f4, "Harting Elektronik, Inc." },
	{ 0x04f5, "Fujitsu-ICL Systems, Inc." },
	{ 0x04f6, "Norand Corp." },
	{ 0x04f7, "Newnex Technology Corp." },
	{ 0x04f8, "FuturePlus Systems" },
	{ 0x04f9, "Brother Industries, Ltd" },
	{ 0x04fa, "Dallas Semiconductor" },
	{ 0x04fb, "Biostar Microtech International Corp." },
	{ 0x04fc, "Sunplus Technology Co., Ltd" },
	{ 0x04fd, "Soliton Systems, K.K." },
	{ 0x04fe, "PFU, Ltd" },
	{ 0x04ff, "E-CMOS Corp." },
	{ 0x0500, "Siam United Hi-Tech" },
	{ 0x0501, "Fujikura DDK, Ltd" },
	{ 0x0502, "Acer, Inc." },
	{ 0x0503, "Hitachi America, Ltd" },
	{ 0x0504, "Hayes Microcomputer Products" },
	{ 0x0506, "3Com Corp." },
	{ 0x0507, "Hosiden Corp." },
	{ 0x0508, "Clarion Co., Ltd" },
	{ 0x0509, "Aztech Systems, Ltd" },
	{ 0x050a, "Cinch Connectors" },
	{ 0x050b, "Cable System International" },
	{ 0x050c, "InnoMedia, Inc." },
	{ 0x050d, "Belkin Components" },
	{ 0x050e, "Neon Technology, Inc." },
	{ 0x050f, "KC Technology, Inc." },
	{ 0x0510, "Sejin Electron, Inc." },
	{ 0x0511, "N'Able (DataBook) Technologies, Inc." },
	{ 0x0512, "Hualon Microelectronics Corp." },
	{ 0x0513, "digital-X, Inc." },
	{ 0x0514, "FCI Electronics" },
	{ 0x0515, "ACTC" },
	{ 0x0516, "Longwell Electronics" },
	{ 0x0517, "Butterfly Communications" },
	{ 0x0518, "EzKEY Corp." },
	{ 0x0519, "Star Micronics Co., Ltd" },
	{ 0x051a, "WYSE Technology" },
	{ 0x051b, "Silicon Graphics" },
	{ 0x051c, "Shuttle, Inc." },
	{ 0x051d, "American Power Conversion" },
	{ 0x051e, "Scientific Atlanta, Inc." },
	{ 0x051f, "IO Systems (Elite Electronics), Inc." },
	{ 0x0520, "Taiwan Semiconductor Manufacturing Co." },
	{ 0x0521, "Airborn Connectors" },
	{ 0x0522, "Advanced Connectek, Inc." },
	{ 0x0523, "ATEN GmbH" },
	{ 0x0524, "Sola Electronics" },
	{ 0x0525, "Netchip Technology, Inc." },
	{ 0x0526, "Temic MHS S.A." },
	{ 0x0527, "ALTRA" },
	{ 0x0528, "ATI Technologies, Inc." },
	{ 0x0529, "Aladdin Knowledge Systems" },
	{ 0x052a, "Crescent Heart Software" },
	{ 0x052b, "Tekom Technologies, Inc." },
	{ 0x052c, "Canon Information Systems, Inc." },
	{ 0x052d, "Avid Electronics Corp." },
	{ 0x052e, "Standard Microsystems Corp." },
	{ 0x052f, "Unicore Software, Inc." },
	{ 0x0530, "American Microsystems, Inc." },
	{ 0x0531, "Wacom Technology Corp." },
	{ 0x0532, "Systech Corp." },
	{ 0x0533, "Alcatel Mobile Phones" },
	{ 0x0534, "Motorola, Inc." },
	{ 0x0535, "LIH TZU Electric Co., Ltd" },
	{ 0x0536, "Hand Held Products (Welch Allyn, Inc.)" },
	{ 0x0537, "Inventec Corp." },
	{ 0x0538, "Caldera International, Inc. (SCO)" },
	{ 0x0539, "Shyh Shiun Terminals Co., Ltd" },
	{ 0x053a, "PrehKeyTec GmbH" },
	{ 0x053b, "Global Village Communication" },
	{ 0x053c, "Institut of Microelectronic & Mechatronic Systems" },
	{ 0x053d, "Silicon Architect" },
	{ 0x053e, "Mobility Electronics" },
	{ 0x053f, "Synopsys, Inc." },
	{ 0x0540, "UniAccess AB" },
	{ 0x0541, "Sirf Technology, Inc." },
	{ 0x0543, "ViewSonic Corp." },
	{ 0x0544, "Cristie Electronics, Ltd" },
	{ 0x0545, "Xirlink, Inc." },
	{ 0x0546, "Polaroid Corp." },
	{ 0x0547, "Anchor Chips, Inc." },
	{ 0x0548, "Tyan Computer Corp." },
	{ 0x0549, "Pixera Corp." },
	{ 0x054a, "Fujitsu Microelectronics, Inc." },
	{ 0x054b, "New Media Corp." },
	{ 0x054c, "Sony Corp." },
	{ 0x054d, "Try Corp." },
	{ 0x054e, "Proside Corp." },
	{ 0x054f, "WYSE Technology Taiwan" },
	{ 0x0550, "Fuji Xerox Co., Ltd" },
	{ 0x0551, "CompuTrend Systems, Inc." },
	{ 0x0552, "Philips Monitors" },
	{ 0x0553, "STMicroelectronics Imaging Division (VLSI Vision)" },
	{ 0x0554, "Dictaphone Corp." },
	{ 0x0555, "ANAM S&T Co., Ltd" },
	{ 0x0556, "Asahi Kasei Microsystems Co., Ltd" },
	{ 0x0557, "ATEN International Co., Ltd" },
	{ 0x0558, "Truevision, Inc." },
	{ 0x0559, "Cadence Design Systems, Inc." },
	{ 0x055a, "Kenwood USA" },
	{ 0x055b, "KnowledgeTek, Inc." },
	{ 0x055c, "Proton Electronic Ind." },
	{ 0x055d, "Samsung Electro-Mechanics Co." },
	{ 0x055e, "CTX Opto-Electronics Corp." },
	{ 0x055f, "Mustek Systems, Inc." },
	{ 0x0560, "Interface Corp." },
	{ 0x0561, "Oasis Design, Inc." },
	{ 0x0562, "Telex Communications, Inc." },
	{ 0x0563, "Immersion Corp." },
	{ 0x0564, "Kodak Digital Product Center, Japan Ltd. (formerly Chinon Industries Inc.)" },
	{ 0x0565, "Peracom Networks, Inc." },
	{ 0x0566, "Monterey International Corp." },
	{ 0x0567, "Xyratex International, Ltd" },
	{ 0x0568, "Quartz Ingenierie" },
	{ 0x0569, "SegaSoft" },
	{ 0x056a, "Wacom Co., Ltd" },
	{ 0x056b, "Decicon, Inc." },
	{ 0x056c, "eTEK Labs" },
	{ 0x056d, "EIZO Corp." },
	{ 0x056e, "Elecom Co., Ltd" },
	{ 0x056f, "Korea Data Systems Co., Ltd" },
	{ 0x0570, "Epson America" },
	{ 0x0571, "Interex, Inc." },
	{ 0x0572, "Conexant Systems (Rockwell), Inc." },
	{ 0x0573, "Zoran Co. Personal Media Division (Nogatech)" },
	{ 0x0574, "City University of Hong Kong" },
	{ 0x0575, "Philips Creative Display Solutions" },
	{ 0x0576, "BAFO/Quality Computer Accessories" },
	{ 0x0577, "ELSA" },
	{ 0x0578, "Intrinsix Corp." },
	{ 0x0579, "GVC Corp." },
	{ 0x057a, "Samsung Electronics America" },
	{ 0x057b, "Y-E Data, Inc." },
	{ 0x057c, "AVM GmbH" },
	{ 0x057d, "Shark Multimedia, Inc." },
	{ 0x057e, "Nintendo Co., Ltd" },
	{ 0x057f, "QuickShot, Ltd" },
	{ 0x0580, "Denron, Inc." },
	{ 0x0581, "Racal Data Group" },
	{ 0x0582, "Roland Corp." },
	{ 0x0583, "Padix Co., Ltd (Rockfire)" },
	{ 0x0584, "RATOC System, Inc." },
	{ 0x0585, "FlashPoint Technology, Inc." },
	{ 0x0586, "ZyXEL Communications Corp." },
	{ 0x0587, "America Kotobuki Electronics Industries, Inc." },
	{ 0x0588, "Sapien Design" },
	{ 0x0589, "Victron" },
	{ 0x058a, "Nohau Corp." },
	{ 0x058b, "Infineon Technologies" },
	{ 0x058c, "In Focus Systems" },
	{ 0x058d, "Micrel Semiconductor" },
	{ 0x058e, "Tripath Technology, Inc." },
	{ 0x058f, "Alcor Micro Corp." },
	{ 0x0590, "Omron Corp." },
	{ 0x0591, "Questra Consulting" },
	{ 0x0592, "Powerware Corp." },
	{ 0x0593, "Incite" },
	{ 0x0594, "Princeton Graphic Systems" },
	{ 0x0595, "Zoran Microelectronics, Ltd" },
	{ 0x0596, "MicroTouch Systems, Inc." },
	{ 0x0597, "Trisignal Communications" },
	{ 0x0598, "Niigata Canotec Co., Inc." },
	{ 0x0599, "Brilliance Semiconductor, Inc." },
	{ 0x059a, "Spectrum Signal Processing, Inc." },
	{ 0x059b, "Iomega Corp." },
	{ 0x059c, "A-Trend Technology Co., Ltd" },
	{ 0x059d, "Advanced Input Devices" },
	{ 0x059e, "Intelligent Instrumentation" },
	{ 0x059f, "LaCie, Ltd" },
	{ 0x05a0, "Vetronix Corp." },
	{ 0x05a1, "USC Corp." },
	{ 0x05a2, "Fuji Film Microdevices Co., Ltd" },
	{ 0x05a3, "ARC International" },
	{ 0x05a4, "Ortek Technology, Inc." },
	{ 0x05a5, "Sampo Technology Corp." },
	{ 0x05a6, "Cisco Systems, Inc." },
	{ 0x05a7, "Bose Corp." },
	{ 0x05a8, "Spacetec IMC Corp." },
	{ 0x05a9, "OmniVision Technologies, Inc." },
	{ 0x05aa, "Utilux South China, Ltd" },
	{ 0x05ab, "In-System Design" },
	{ 0x05ac, "Apple, Inc." },
	{ 0x05ad, "Y.C. Cable U.S.A., Inc." },
	{ 0x05ae, "Synopsys, Inc." },
	{ 0x05af, "Jing-Mold Enterprise Co., Ltd" },
	{ 0x05b0, "Fountain Technologies, Inc." },
	{ 0x05b1, "First International Computer, Inc." },
	{ 0x05b4, "LG Semicon Co., Ltd" },
	{ 0x05b5, "Dialogic Corp." },
	{ 0x05b6, "Proxima Corp." },
	{ 0x05b7, "Medianix Semiconductor, Inc." },
	{ 0x05b8, "Agiler, Inc." },
	{ 0x05b9, "Philips Research Laboratories" },
	{ 0x05ba, "DigitalPersona, Inc." },
	{ 0x05bb, "Grey Cell Systems" },
	{ 0x05bc, "3G Green Green Globe Co., Ltd" },
	{ 0x05bd, "RAFI GmbH & Co. KG" },
	{ 0x05be, "Tyco Electronics (Raychem)" },
	{ 0x05bf, "S & S Research" },
	{ 0x05c0, "Keil Software" },
	{ 0x05c1, "Kawasaki Microelectronics, Inc." },
	{ 0x05c2, "Media Phonics (Suisse) S.A." },
	{ 0x05c5, "Digi International, Inc." },
	{ 0x05c6, "Qualcomm, Inc." },
	{ 0x05c7, "Qtronix Corp." },
	{ 0x05c8, "Cheng Uei Precision Industry Co., Ltd (Foxlink)" },
	{ 0x05c9, "Semtech Corp." },
	{ 0x05ca, "Ricoh Co., Ltd" },
	{ 0x05cb, "PowerVision Technologies, Inc." },
	{ 0x05cc, "ELSA AG" },
	{ 0x05cd, "Silicom, Ltd" },
	{ 0x05ce, "sci-worx GmbH" },
	{ 0x05cf, "Sung Forn Co., Ltd" },
	{ 0x05d0, "GE Medical Systems Lunar" },
	{ 0x05d1, "Brainboxes, Ltd" },
	{ 0x05d2, "Wave Systems Corp." },
	{ 0x05d3, "Tohoku Ricoh Co., Ltd" },
	{ 0x05d5, "Super Gate Technology Co., Ltd" },
	{ 0x05d6, "Philips Semiconductors, CICT" },
	{ 0x05d7, "Thomas & Betts Corp." },
	{ 0x05d8, "Ultima Electronics Corp." },
	{ 0x05d9, "Axiohm Transaction Solutions" },
	{ 0x05da, "Microtek International, Inc." },
	{ 0x05db, "Sun Corp. (Suntac?)" },
	{ 0x05dc, "Lexar Media, Inc." },
	{ 0x05dd, "Delta Electronics, Inc." },
	{ 0x05df, "Silicon Vision, Inc." },
	{ 0x05e0, "Symbol Technologies" },
	{ 0x05e1, "Syntek Semiconductor Co., Ltd" },
	{ 0x05e2, "ElecVision, Inc." },
	{ 0x05e3, "Genesys Logic, Inc." },
	{ 0x05e4, "Red Wing Corp." },
	{ 0x05e5, "Fuji Electric Co., Ltd" },
	{ 0x05e6, "Keithley Instruments" },
	{ 0x05e8, "ICC, Inc." },
	{ 0x05e9, "Kawasaki LSI" },
	{ 0x05eb, "FFC, Ltd" },
	{ 0x05ec, "COM21, Inc." },
	{ 0x05ee, "Cytechinfo Inc." },
	{ 0x05ef, "AVB, Inc. [anko?]" },
	{ 0x05f0, "Canopus Co., Ltd" },
	{ 0x05f1, "Compass Communications" },
	{ 0x05f2, "Dexin Corp., Ltd" },
	{ 0x05f3, "PI Engineering, Inc." },
	{ 0x05f5, "Unixtar Technology, Inc." },
	{ 0x05f6, "AOC International" },
	{ 0x05f7, "RFC Distribution(s) PTE, Ltd" },
	{ 0x05f9, "PSC Scanning, Inc." },
	{ 0x05fa, "Siemens Telecommunications Systems, Ltd" },
	{ 0x05fc, "Harman" },
	{ 0x05fd, "InterAct, Inc." },
	{ 0x05fe, "Chic Technology Corp." },
	{ 0x05ff, "LeCroy Corp." },
	{ 0x0600, "Barco Display Systems" },
	{ 0x0601, "Jazz Hipster Corp." },
	{ 0x0602, "Vista Imaging, Inc." },
	{ 0x0603, "Novatek Microelectronics Corp." },
	{ 0x0604, "Jean Co., Ltd" },
	{ 0x0605, "Anchor C&C Co., Ltd" },
	{ 0x0606, "Royal Information Electronics Co., Ltd" },
	{ 0x0607, "Bridge Information Co., Ltd" },
	{ 0x0608, "Genrad Ads" },
	{ 0x0609, "SMK Manufacturing, Inc." },
	{ 0x060a, "Worthington Data Solutions, Inc." },
	{ 0x060b, "Solid Year" },
	{ 0x060c, "EEH Datalink GmbH" },
	{ 0x060d, "Auctor Corp." },
	{ 0x060e, "Transmonde Technologies, Inc." },
	{ 0x060f, "Joinsoon Electronics Mfg. Co., Ltd" },
	{ 0x0610, "Costar Electronics, Inc." },
	{ 0x0611, "Totoku Electric Co., Ltd" },
	{ 0x0613, "TransAct Technologies, Inc." },
	{ 0x0614, "Bio-Rad Laboratories" },
	{ 0x0615, "Quabbin Wire & Cable Co., Inc." },
	{ 0x0616, "Future Techno Designs PVT, Ltd" },
	{ 0x0617, "Swiss Federal Insitute of Technology" },
	{ 0x0618, "MacAlly" },
	{ 0x0619, "Seiko Instruments, Inc." },
	{ 0x061a, "Veridicom International, Inc." },
	{ 0x061b, "Promptus Communications, Inc." },
	{ 0x061c, "Act Labs, Ltd" },
	{ 0x061d, "Quatech, Inc." },
	{ 0x061e, "Nissei Electric Co." },
	{ 0x0620, "Alaris, Inc." },
	{ 0x0621, "ODU-Steckverbindungssysteme GmbH & Co. KG" },
	{ 0x0622, "Iotech, Inc." },
	{ 0x0623, "Littelfuse, Inc." },
	{ 0x0624, "Avocent Corp." },
	{ 0x0625, "TiMedia Technology Co., Ltd" },
	{ 0x0626, "Nippon Systems Development Co., Ltd" },
	{ 0x0627, "Adomax Technology Co., Ltd" },
	{ 0x0628, "Tasking Software, Inc." },
	{ 0x0629, "Zida Technologies, Ltd" },
	{ 0x062a, "Creative Labs" },
	{ 0x062b, "Greatlink Electronics Taiwan, Ltd" },
	{ 0x062c, "Institute for Information Industry" },
	{ 0x062d, "Taiwan Tai-Hao Enterprises Co., Ltd" },
	{ 0x062e, "Mainsuper Enterprises Co., Ltd" },
	{ 0x062f, "Sin Sheng Terminal & Machine, Inc." },
	{ 0x0631, "JUJO Electronics Corp." },
	{ 0x0633, "Cyrix Corp." },
	{ 0x0634, "Micron Technology, Inc." },
	{ 0x0635, "Methode Electronics, Inc." },
	{ 0x0636, "Sierra Imaging, Inc." },
	{ 0x0638, "Avision, Inc." },
	{ 0x0639, "Chrontel, Inc." },
	{ 0x063a, "Techwin Corp." },
	{ 0x063b, "Taugagreining HF" },
	{ 0x063c, "Yamaichi Electronics Co., Ltd (Sakura)" },
	{ 0x063d, "Fong Kai Industrial Co., Ltd" },
	{ 0x063e, "RealMedia Technology, Inc." },
	{ 0x063f, "New Technology Cable, Ltd" },
	{ 0x0640, "Hitex Development Tools" },
	{ 0x0641, "Woods Industries, Inc." },
	{ 0x0642, "VIA Medical Corp." },
	{ 0x0644, "TEAC Corp." },
	{ 0x0645, "Who? Vision Systems, Inc." },
	{ 0x0646, "UMAX" },
	{ 0x0647, "Acton Research Corp." },
	{ 0x0648, "Inside Out Networks" },
	{ 0x0649, "Weli Science Co., Ltd" },
	{ 0x064b, "Analog Devices, Inc. (White Mountain DSP)" },
	{ 0x064c, "Ji-Haw Industrial Co., Ltd" },
	{ 0x064d, "TriTech Microelectronics, Ltd" },
	{ 0x064e, "Suyin Corp." },
	{ 0x064f, "WIBU-Systems AG" },
	{ 0x0650, "Dynapro Systems" },
	{ 0x0651, "Likom Technology Sdn. Bhd." },
	{ 0x0652, "Stargate Solutions, Inc." },
	{ 0x0653, "CNF, Inc." },
	{ 0x0654, "Granite Microsystems, Inc." },
	{ 0x0655, "Space Shuttle Hi-Tech Co., Ltd" },
	{ 0x0656, "Glory Mark Electronic, Ltd" },
	{ 0x0657, "Tekcon Electronics Corp." },
	{ 0x0658, "Sigma Designs, Inc." },
	{ 0x0659, "Aethra" },
	{ 0x065a, "Optoelectronics Co., Ltd" },
	{ 0x065b, "Tracewell Systems" },
	{ 0x065e, "Silicon Graphics" },
	{ 0x065f, "Good Way Technology Co., Ltd & GWC technology Inc." },
	{ 0x0660, "TSAY-E (BVI) International, Inc." },
	{ 0x0661, "Hamamatsu Photonics K.K." },
	{ 0x0662, "Kansai Electric Co., Ltd" },
	{ 0x0663, "Topmax Electronic Co., Ltd" },
	{ 0x0664, "ET&T Technology Co., Ltd." },
	{ 0x0665, "Cypress Semiconductor" },
	{ 0x0667, "Aiwa Co., Ltd" },
	{ 0x0668, "WordWand" },
	{ 0x0669, "Oce' Printing Systems GmbH" },
	{ 0x066a, "Total Technologies, Ltd" },
	{ 0x066b, "Linksys, Inc." },
	{ 0x066d, "Entrega, Inc." },
	{ 0x066e, "Acer Semiconductor America, Inc." },
	{ 0x066f, "SigmaTel, Inc." },
	{ 0x0670, "Sequel Imaging" },
	{ 0x0672, "Labtec, Inc." },
	{ 0x0673, "HCL" },
	{ 0x0674, "Key Mouse Electronic Enterprise Co., Ltd" },
	{ 0x0675, "DrayTek Corp." },
	{ 0x0676, "Teles AG" },
	{ 0x0677, "Aiwa Co., Ltd" },
	{ 0x0678, "ACard Technology Corp." },
	{ 0x067b, "Prolific Technology, Inc." },
	{ 0x067c, "Efficient Networks, Inc." },
	{ 0x067d, "Hohner Corp." },
	{ 0x067e, "Intermec Technologies Corp." },
	{ 0x067f, "Virata, Ltd" },
	{ 0x0680, "Realtek Semiconductor Corp., CPP Div. (Avance Logic)" },
	{ 0x0681, "Siemens Information and Communication Products" },
	{ 0x0682, "Victor Company of Japan, Ltd" },
	{ 0x0684, "Actiontec Electronics, Inc." },
	{ 0x0685, "ZD Incorporated" },
	{ 0x0686, "Minolta Co., Ltd" },
	{ 0x068a, "Pertech, Inc." },
	{ 0x068b, "Potrans International, Inc." },
	{ 0x068e, "CH Products, Inc." },
	{ 0x0690, "Golden Bridge Electech, Inc." },
	{ 0x0693, "Hagiwara Sys-Com Co., Ltd" },
	{ 0x0694, "Lego Group" },
	{ 0x0698, "Chuntex (CTX)" },
	{ 0x0699, "Tektronix, Inc." },
	{ 0x069a, "Askey Computer Corp." },
	{ 0x069b, "Thomson, Inc." },
	{ 0x069d, "Hughes Network Systems (HNS)" },
	{ 0x069e, "Welcat Inc." },
	{ 0x069f, "Allied Data Technologies BV" },
	{ 0x06a2, "Topro Technology, Inc." },
	{ 0x06a3, "Saitek PLC" },
	{ 0x06a4, "Xiamen Doowell Electron Co., Ltd" },
	{ 0x06a5, "Divio" },
	{ 0x06a7, "MicroStore, Inc." },
	{ 0x06a8, "Topaz Systems, Inc." },
	{ 0x06a9, "Westell" },
	{ 0x06aa, "Sysgration, Ltd" },
	{ 0x06ac, "Fujitsu Laboratories of America, Inc." },
	{ 0x06ad, "Greatland Electronics Taiwan, Ltd" },
	{ 0x06ae, "Professional Multimedia Testing Centre" },
	{ 0x06af, "Harting, Inc. of North America" },
	{ 0x06b8, "Pixela Corp." },
	{ 0x06b9, "Alcatel Telecom" },
	{ 0x06ba, "Smooth Cord & Connector Co., Ltd" },
	{ 0x06bb, "EDA, Inc." },
	{ 0x06bc, "Oki Data Corp." },
	{ 0x06bd, "AGFA-Gevaert NV" },
	{ 0x06be, "AME Optimedia Technology Co., Ltd" },
	{ 0x06bf, "Leoco Corp." },
	{ 0x06c2, "Phidgets Inc. (formerly GLAB)" },
	{ 0x06c4, "Bizlink International Corp." },
	{ 0x06c5, "Hagenuk, GmbH" },
	{ 0x06c6, "Infowave Software, Inc." },
	{ 0x06c8, "SIIG, Inc." },
	{ 0x06c9, "Taxan (Europe), Ltd" },
	{ 0x06ca, "Newer Technology, Inc." },
	{ 0x06cb, "Synaptics, Inc." },
	{ 0x06cc, "Terayon Communication Systems" },
	{ 0x06cd, "Keyspan" },
	{ 0x06ce, "Contec" },
	{ 0x06cf, "SpheronVR AG" },
	{ 0x06d0, "LapLink, Inc." },
	{ 0x06d1, "Daewoo Electronics Co., Ltd" },
	{ 0x06d3, "Mitsubishi Electric Corp." },
	{ 0x06d4, "Cisco Systems" },
	{ 0x06d5, "Toshiba" },
	{ 0x06d6, "Aashima Technology B.V." },
	{ 0x06d7, "Network Computing Devices (NCD)" },
	{ 0x06d8, "Technical Marketing Research, Inc." },
	{ 0x06da, "Phoenixtec Power Co., Ltd" },
	{ 0x06db, "Paradyne" },
	{ 0x06dc, "Foxlink Image Technology Co., Ltd" },
	{ 0x06de, "Heisei Electronics Co., Ltd" },
	{ 0x06e0, "Multi-Tech Systems, Inc." },
	{ 0x06e1, "ADS Technologies, Inc." },
	{ 0x06e4, "Alcatel Microelectronics" },
	{ 0x06e6, "Tiger Jet Network, Inc." },
	{ 0x06ea, "Sirius Technologies" },
	{ 0x06eb, "PC Expert Tech. Co., Ltd" },
	{ 0x06ef, "I.A.C. Geometrische Ingenieurs B.V." },
	{ 0x06f0, "T.N.C Industrial Co., Ltd" },
	{ 0x06f1, "Opcode Systems, Inc." },
	{ 0x06f2, "Emine Technology Co." },
	{ 0x06f6, "Wintrend Technology Co., Ltd" },
	{ 0x06f7, "Wailly Technology Ltd" },
	{ 0x06f8, "Guillemot Corp." },
	{ 0x06f9, "ASYST electronic d.o.o." },
	{ 0x06fa, "HSD S.r.L" },
	{ 0x06fc, "Motorola Semiconductor Products Sector" },
	{ 0x06fd, "Boston Acoustics" },
	{ 0x06fe, "Gallant Computer, Inc." },
	{ 0x0701, "Supercomal Wire & Cable SDN. BHD." },
	{ 0x0703, "Bvtech Industry, Inc." },
	{ 0x0705, "NKK Corp." },
	{ 0x0706, "Ariel Corp." },
	{ 0x0707, "Standard Microsystems Corp." },
	{ 0x0708, "Putercom Co., Ltd" },
	{ 0x0709, "Silicon Systems, Ltd (SSL)" },
	{ 0x070a, "Oki Electric Industry Co., Ltd" },
	{ 0x070d, "Comoss Electronic Co., Ltd" },
	{ 0x070e, "Excel Cell Electronic Co., Ltd" },
	{ 0x0710, "Connect Tech, Inc." },
	{ 0x0711, "Magic Control Technology Corp." },
	{ 0x0713, "Interval Research Corp." },
	{ 0x0714, "NewMotion, Inc." },
	{ 0x0717, "ZNK Corp." },
	{ 0x0718, "Imation Corp." },
	{ 0x0719, "Tremon Enterprises Co., Ltd" },
	{ 0x071b, "Domain Technologies, Inc." },
	{ 0x071c, "Xionics Document Technologies, Inc." },
	{ 0x071d, "Eicon Networks Corp." },
	{ 0x071e, "Ariston Technologies" },
	{ 0x0723, "Centillium Communications Corp." },
	{ 0x0726, "Vanguard International Semiconductor-America" },
	{ 0x0729, "Amitm" },
	{ 0x072e, "Sunix Co., Ltd" },
	{ 0x072f, "Advanced Card Systems, Ltd" },
	{ 0x0731, "Susteen, Inc." },
	{ 0x0732, "Goldfull Electronics & Telecommunications Corp." },
	{ 0x0733, "ViewQuest Technologies, Inc." },
	{ 0x0734, "Lasat Communications A/S" },
	{ 0x0735, "Asuscom Network" },
	{ 0x0736, "Lorom Industrial Co., Ltd" },
	{ 0x0738, "Mad Catz, Inc." },
	{ 0x073a, "Chaplet Systems, Inc." },
	{ 0x073b, "Suncom Technologies" },
	{ 0x073c, "Industrial Electronic Engineers, Inc." },
	{ 0x073d, "Eutron S.p.a." },
	{ 0x073e, "NEC, Inc." },
	{ 0x0742, "Stollmann" },
	{ 0x0745, "Syntech Information Co., Ltd" },
	{ 0x0746, "Onkyo Corp." },
	{ 0x0747, "Labway Corp." },
	{ 0x0748, "Strong Man Enterprise Co., Ltd" },
	{ 0x0749, "EVer Electronics Corp." },
	{ 0x074a, "Ming Fortune Industry Co., Ltd" },
	{ 0x074b, "Polestar Tech. Corp." },
	{ 0x074c, "C-C-C Group PLC" },
	{ 0x074d, "Micronas GmbH" },
	{ 0x074e, "Digital Stream Corp." },
	{ 0x0755, "Aureal Semiconductor" },
	{ 0x0757, "Network Technologies, Inc." },
	{ 0x075b, "Sophisticated Circuits, Inc." },
	{ 0x0763, "Midiman" },
	{ 0x0764, "Cyber Power System, Inc." },
	{ 0x0765, "X-Rite, Inc." },
	{ 0x0766, "Jess-Link Products Co., Ltd" },
	{ 0x0767, "Tokheim Corp." },
	{ 0x0768, "Camtel Technology Corp." },
	{ 0x0769, "Surecom Technology Corp." },
	{ 0x076a, "Smart Technology Enablers, Inc." },
	{ 0x076b, "OmniKey AG" },
	{ 0x076c, "Partner Tech" },
	{ 0x076d, "Denso Corp." },
	{ 0x076e, "Kuan Tech Enterprise Co., Ltd" },
	{ 0x076f, "Jhen Vei Electronic Co., Ltd" },
	{ 0x0770, "Welch Allyn, Inc - Medical Division" },
	{ 0x0771, "Observator Instruments BV" },
	{ 0x0772, "Your data Our Care" },
	{ 0x0774, "AmTRAN Technology Co., Ltd" },
	{ 0x0775, "Longshine Electronics Corp." },
	{ 0x0776, "Inalways Corp." },
	{ 0x0777, "Comda Enterprise Corp." },
	{ 0x0778, "Volex, Inc." },
	{ 0x0779, "Fairchild Semiconductor" },
	{ 0x077a, "Sankyo Seiki Mfg. Co., Ltd" },
	{ 0x077b, "Linksys" },
	{ 0x077c, "Forward Electronics Co., Ltd" },
	{ 0x077d, "Griffin Technology" },
	{ 0x077f, "Well Excellent & Most Corp." },
	{ 0x0780, "Sagem Monetel GmbH" },
	{ 0x0781, "SanDisk Corp." },
	{ 0x0782, "Trackerball" },
	{ 0x0783, "C3PO" },
	{ 0x0784, "Vivitar, Inc." },
	{ 0x0785, "NTT-ME" },
	{ 0x0789, "Logitec Corp." },
	{ 0x078b, "Happ Controls, Inc." },
	{ 0x078c, "GTCO/CalComp" },
	{ 0x078e, "Brincom, Inc." },
	{ 0x0790, "Pro-Image Manufacturing Co., Ltd" },
	{ 0x0791, "Copartner Wire and Cable Mfg. Corp." },
	{ 0x0792, "Axis Communications AB" },
	{ 0x0793, "Wha Yu Industrial Co., Ltd" },
	{ 0x0794, "ABL Electronics Corp." },
	{ 0x0795, "RealChip, Inc." },
	{ 0x0796, "Certicom Corp." },
	{ 0x0797, "Grandtech Semiconductor Corp." },
	{ 0x0798, "Optelec" },
	{ 0x0799, "Altera" },
	{ 0x079b, "Sagem" },
	{ 0x079d, "Alfadata Computer Corp." },
	{ 0x07a1, "Digicom S.p.A." },
	{ 0x07a2, "National Technical Systems" },
	{ 0x07a3, "Onnto Corp." },
	{ 0x07a4, "Be, Inc." },
	{ 0x07a6, "ADMtek, Inc." },
	{ 0x07aa, "Corega K.K." },
	{ 0x07ab, "Freecom Technologies" },
	{ 0x07af, "Microtech" },
	{ 0x07b0, "Trust Technologies" },
	{ 0x07b1, "IMP, Inc." },
	{ 0x07b2, "Motorola BCS, Inc." },
	{ 0x07b3, "Plustek, Inc." },
	{ 0x07b4, "Olympus Optical Co., Ltd" },
	{ 0x07b5, "Mega World International, Ltd" },
	{ 0x07b6, "Marubun Corp." },
	{ 0x07b7, "TIME Interconnect, Ltd" },
	{ 0x07b8, "AboCom Systems Inc" },
	{ 0x07bc, "Canon Computer Systems, Inc." },
	{ 0x07bd, "Webgear, Inc." },
	{ 0x07be, "Veridicom" },
	{ 0x07c0, "Code Mercenaries Hard- und Software GmbH" },
	{ 0x07c1, "Keisokugiken" },
	{ 0x07c4, "Datafab Systems, Inc." },
	{ 0x07c5, "APG Cash Drawer" },
	{ 0x07c6, "ShareWave, Inc." },
	{ 0x07c7, "Powertech Industrial Co., Ltd" },
	{ 0x07c8, "B.U.G., Inc." },
	{ 0x07c9, "Allied Telesyn International" },
	{ 0x07ca, "AVerMedia Technologies, Inc." },
	{ 0x07cb, "Kingmax Technology, Inc." },
	{ 0x07cc, "Carry Computer Eng., Co., Ltd" },
	{ 0x07cd, "Elektor" },
	{ 0x07cf, "Casio Computer Co., Ltd" },
	{ 0x07d0, "Dazzle" },
	{ 0x07d1, "D-Link System" },
	{ 0x07d2, "Aptio Products, Inc." },
	{ 0x07d3, "Cyberdata Corp." },
	{ 0x07d5, "Radiant Systems" },
	{ 0x07d7, "GCC Technologies, Inc." },
	{ 0x07da, "Arasan Chip Systems" },
	{ 0x07de, "Diamond Multimedia" },
	{ 0x07df, "David Electronics Co., Ltd" },
	{ 0x07e1, "Ambient Technologies, Inc." },
	{ 0x07e2, "Elmeg GmbH & Co., Ltd" },
	{ 0x07e3, "Planex Communications, Inc." },
	{ 0x07e4, "Movado Enterprise Co., Ltd" },
	{ 0x07e5, "QPS, Inc." },
	{ 0x07e6, "Allied Cable Corp." },
	{ 0x07e7, "Mirvo Toys, Inc." },
	{ 0x07e8, "Labsystems" },
	{ 0x07ea, "Iwatsu Electric Co., Ltd" },
	{ 0x07eb, "Double-H Technology Co., Ltd" },
	{ 0x07ec, "Taiyo Electric Wire & Cable Co., Ltd" },
	{ 0x07ee, "Torex Retail (formerly Logware)" },
	{ 0x07ef, "STSN" },
	{ 0x07f2, "Microcomputer Applications, Inc." },
	{ 0x07f6, "Circuit Assembly Corp." },
	{ 0x07f7, "Century Corp." },
	{ 0x07f9, "Dotop Technology, Inc." },
	{ 0x07fa, "DrayTek Corp." },
	{ 0x07fd, "Mark of the Unicorn" },
	{ 0x07ff, "Unknown" },
	{ 0x0801, "MagTek" },
	{ 0x0802, "Mako Technologies, LLC" },
	{ 0x0803, "Zoom Telephonics, Inc." },
	{ 0x0809, "Genicom Technology, Inc." },
	{ 0x080a, "Evermuch Technology Co., Ltd" },
	{ 0x080b, "Cross Match Technologies" },
	{ 0x080c, "Datalogic S.p.A." },
	{ 0x080d, "Teco Image Systems Co., Ltd" },
	{ 0x0810, "Personal Communication Systems, Inc." },
	{ 0x0813, "Mattel, Inc." },
	{ 0x0819, "eLicenser" },
	{ 0x081a, "MG Logic" },
	{ 0x081b, "Indigita Corp." },
	{ 0x081c, "Mipsys" },
	{ 0x081e, "AlphaSmart, Inc." },
	{ 0x0822, "Reudo Corp." },
	{ 0x0825, "GC Protronics" },
	{ 0x0826, "Data Transit" },
	{ 0x0827, "BroadLogic, Inc." },
	{ 0x0828, "Sato Corp." },
	{ 0x0829, "DirecTV Broadband, Inc. (Telocity)" },
	{ 0x082d, "Handspring" },
	{ 0x0830, "Palm, Inc." },
	{ 0x0832, "Kouwell Electronics Corp." },
	{ 0x0833, "Sourcenext Corp." },
	{ 0x0835, "Action Star Enterprise Co., Ltd" },
	{ 0x0836, "TrekStor" },
	{ 0x0839, "Samsung Techwin Co., Ltd" },
	{ 0x083a, "Accton Technology Corp." },
	{ 0x083f, "Global Village" },
	{ 0x0840, "Argosy Research, Inc." },
	{ 0x0841, "Rioport.com, Inc." },
	{ 0x0844, "Welland Industrial Co., Ltd" },
	{ 0x0846, "NetGear, Inc." },
	{ 0x084d, "Minton Optic Industry Co., Inc." },
	{ 0x084e, "KB Gear" },
	{ 0x084f, "Empeg" },
	{ 0x0850, "Fast Point Technologies, Inc." },
	{ 0x0851, "Macronix International Co., Ltd" },
	{ 0x0852, "CSEM" },
	{ 0x0853, "Topre Corporation" },
	{ 0x0854, "ActiveWire, Inc." },
	{ 0x0856, "B&B Electronics" },
	{ 0x0858, "Hitachi Maxell, Ltd" },
	{ 0x0859, "Minolta Systems Laboratory, Inc." },
	{ 0x085a, "Xircom" },
	{ 0x085c, "ColorVision, Inc." },
	{ 0x0862, "Teletrol Systems, Inc." },
	{ 0x0863, "Filanet Corp." },
	{ 0x0864, "NetGear, Inc." },
	{ 0x0867, "Data Translation, Inc." },
	{ 0x086a, "Emagic Soft- und Hardware GmbH" },
	{ 0x086c, "DeTeWe - Deutsche Telephonwerke AG & Co." },
	{ 0x086e, "System TALKS, Inc." },
	{ 0x086f, "MEC IMEX, Inc." },
	{ 0x0870, "Metricom" },
	{ 0x0871, "SanDisk, Inc." },
	{ 0x0873, "Xpeed, Inc." },
	{ 0x0874, "A-Tec Subsystem, Inc." },
	{ 0x0879, "Comtrol Corp." },
	{ 0x087c, "Adesso/Kbtek America, Inc." },
	{ 0x087d, "Jaton Corp." },
	{ 0x087e, "Fujitsu Computer Products of America" },
	{ 0x087f, "QualCore Logic Inc." },
	{ 0x0880, "APT Technologies, Inc." },
	{ 0x0883, "Recording Industry Association of America (RIAA)" },
	{ 0x0885, "Boca Research, Inc." },
	{ 0x0886, "XAC Automation Corp." },
	{ 0x0887, "Hannstar Electronics Corp." },
	{ 0x088a, "TechTools" },
	{ 0x088b, "MassWorks, Inc." },
	{ 0x088c, "Swecoin AB" },
	{ 0x088e, "iLok" },
	{ 0x0892, "DioGraphy, Inc." },
	{ 0x0894, "TSI Incorporated" },
	{ 0x0897, "Lauterbach" },
	{ 0x089c, "United Technologies Research Cntr." },
	{ 0x089d, "Icron Technologies Corp." },
	{ 0x089e, "NST Co., Ltd" },
	{ 0x089f, "Primex Aerospace Co." },
	{ 0x08a5, "e9, Inc." },
	{ 0x08a6, "Toshiba TEC" },
	{ 0x08a8, "Andrea Electronics" },
	{ 0x08a9, "CWAV Inc." },
	{ 0x08ac, "Macraigor Systems LLC" },
	{ 0x08ae, "Macally (Mace Group, Inc.)" },
	{ 0x08b0, "Metrohm" },
	{ 0x08b4, "Sorenson Vision, Inc." },
	{ 0x08b7, "NATSU" },
	{ 0x08b8, "J. Gordon Electronic Design, Inc." },
	{ 0x08b9, "RadioShack Corp. (Tandy)" },
	{ 0x08bb, "Texas Instruments" },
	{ 0x08bd, "Citizen Watch Co., Ltd" },
	{ 0x08c3, "Precise Biometrics" },
	{ 0x08c4, "Proxim, Inc." },
	{ 0x08c7, "Key Nice Enterprise Co., Ltd" },
	{ 0x08c8, "2Wire, Inc." },
	{ 0x08c9, "Nippon Telegraph and Telephone Corp." },
	{ 0x08ca, "Aiptek International, Inc." },
	{ 0x08cd, "Jue Hsun Ind. Corp." },
	{ 0x08ce, "Long Well Electronics Corp." },
	{ 0x08cf, "Productivity Enhancement Products" },
	{ 0x08d1, "smartBridges, Inc." },
	{ 0x08d3, "Virtual Ink" },
	{ 0x08d4, "Fujitsu Siemens Computers" },
	{ 0x08d8, "IXXAT Automation GmbH" },
	{ 0x08d9, "Increment P Corp." },
	{ 0x08dd, "Billionton Systems, Inc." },
	{ 0x08de, "?" },
	{ 0x08df, "Spyrus, Inc." },
	{ 0x08e3, "Olitec, Inc." },
	{ 0x08e4, "Pioneer Corp." },
	{ 0x08e5, "Litronic" },
	{ 0x08e6, "Gemalto (was Gemplus)" },
	{ 0x08e7, "Pan-International Wire & Cable" },
	{ 0x08e8, "Integrated Memory Logic" },
	{ 0x08e9, "Extended Systems, Inc." },
	{ 0x08ea, "Ericsson, Inc., Blue Ridge Labs" },
	{ 0x08ec, "M-Systems Flash Disk Pioneers" },
	{ 0x08ed, "MediaTek Inc." },
	{ 0x08ee, "CCSI/Hesso" },
	{ 0x08f0, "Corex Technologies" },
	{ 0x08f1, "CTI Electronics Corp." },
	{ 0x08f2, "Gotop Information Inc." },
	{ 0x08f5, "SysTec Co., Ltd" },
	{ 0x08f6, "Logic 3 International, Ltd" },
	{ 0x08f7, "Vernier" },
	{ 0x08f8, "Keen Top International Enterprise Co., Ltd" },
	{ 0x08f9, "Wipro Technologies" },
	{ 0x08fa, "Caere" },
	{ 0x08fb, "Socket Communications" },
	{ 0x08fc, "Sicon Cable Technology Co., Ltd" },
	{ 0x08fd, "Digianswer A/S" },
	{ 0x08ff, "AuthenTec, Inc." },
	{ 0x0900, "Pinnacle Systems, Inc." },
	{ 0x0901, "VST Technologies" },
	{ 0x0906, "Faraday Technology Corp." },
	{ 0x0908, "Siemens AG" },
	{ 0x0909, "Audio-Technica Corp." },
	{ 0x090a, "Trumpion Microelectronics, Inc." },
	{ 0x090b, "Neurosmith" },
	{ 0x090c, "Silicon Motion, Inc. - Taiwan (formerly Feiya Technology Corp.)" },
	{ 0x090d, "Multiport Computer Vertriebs GmbH" },
	{ 0x090e, "Shining Technology, Inc." },
	{ 0x090f, "Fujitsu Devices, Inc." },
	{ 0x0910, "Alation Systems, Inc." },
	{ 0x0911, "Philips Speech Processing" },
	{ 0x0912, "Voquette, Inc." },
	{ 0x0915, "GlobeSpan, Inc." },
	{ 0x0917, "SmartDisk Corp." },
	{ 0x0919, "Tiger Electronics" },
	{ 0x091e, "Garmin International" },
	{ 0x0920, "Echelon Co." },
	{ 0x0921, "GoHubs, Inc." },
	{ 0x0922, "Dymo-CoStar Corp." },
	{ 0x0923, "IC Media Corp." },
	{ 0x0924, "Xerox" },
	{ 0x0925, "Lakeview Research" },
	{ 0x0927, "Summus, Ltd" },
	{ 0x0928, "PLX Technology, Inc. (formerly Oxford Semiconductor, Ltd)" },
	{ 0x0929, "American Biometric Co." },
	{ 0x092a, "Toshiba Information & Industrial Sys. And Services" },
	{ 0x092b, "Sena Technologies, Inc." },
	{ 0x092f, "Northern Embedded Science/CAVNEX" },
	{ 0x0930, "Toshiba Corp." },
	{ 0x0931, "Harmonic Data Systems, Ltd" },
	{ 0x0932, "Crescentec Corp." },
	{ 0x0933, "Quantum Corp." },
	{ 0x0934, "Spirent Communications" },
	{ 0x0936, "NuTesla" },
	{ 0x0939, "Lumberg, Inc." },
	{ 0x093a, "Pixart Imaging, Inc." },
	{ 0x093b, "Plextor Corp." },
	{ 0x093c, "Intrepid Control Systems, Inc." },
	{ 0x093d, "InnoSync, Inc." },
	{ 0x093e, "J.S.T. Mfg. Co., Ltd" },
	{ 0x093f, "Olympia Telecom Vertriebs GmbH" },
	{ 0x0940, "Japan Storage Battery Co., Ltd" },
	{ 0x0941, "Photobit Corp." },
	{ 0x0942, "i2Go.com, LLC" },
	{ 0x0943, "HCL Technologies India Private, Ltd" },
	{ 0x0944, "KORG, Inc." },
	{ 0x0945, "Pasco Scientific" },
	{ 0x0948, "Kronauer music in digital" },
	{ 0x094b, "Linkup Systems Corp." },
	{ 0x094d, "Cable Television Laboratories" },
	{ 0x094f, "Yano" },
	{ 0x0951, "Kingston Technology" },
	{ 0x0954, "RPM Systems Corp." },
	{ 0x0955, "NVidia Corp." },
	{ 0x0956, "BSquare Corp." },
	{ 0x0957, "Agilent Technologies, Inc." },
	{ 0x0958, "CompuLink Research, Inc." },
	{ 0x0959, "Cologne Chip AG" },
	{ 0x095a, "Portsmith" },
	{ 0x095b, "Medialogic Corp." },
	{ 0x095c, "K-Tec Electronics" },
	{ 0x095d, "Polycom, Inc." },
	{ 0x0967, "Acer NeWeb Corp." },
	{ 0x0968, "Catalyst Enterprises, Inc." },
	{ 0x096e, "Feitian Technologies, Inc." },
	{ 0x0971, "Gretag-Macbeth AG" },
	{ 0x0973, "Schlumberger" },
	{ 0x0974, "Datagraphix, a business unit of Anacomp" },
	{ 0x0975, "OL'E Communications, Inc." },
	{ 0x0976, "Adirondack Wire & Cable" },
	{ 0x0977, "Lightsurf Technologies" },
	{ 0x0978, "Beckhoff GmbH" },
	{ 0x0979, "Jeilin Technology Corp., Ltd" },
	{ 0x097a, "Minds At Work LLC" },
	{ 0x097b, "Knudsen Engineering, Ltd" },
	{ 0x097c, "Marunix Co., Ltd" },
	{ 0x097d, "Rosun Technologies, Inc." },
	{ 0x097e, "Biopac Systems Inc." },
	{ 0x097f, "Barun Electronics Co., Ltd" },
	{ 0x0981, "Oak Technology, Ltd" },
	{ 0x0984, "Apricorn" },
	{ 0x0985, "cab Produkttechnik GmbH & Co KG" },
	{ 0x0986, "Matsushita Electric Works, Ltd." },
	{ 0x098c, "Vitana Corp." },
	{ 0x098d, "INDesign" },
	{ 0x098e, "Integrated Intellectual Property, Inc." },
	{ 0x098f, "Kenwood TMI Corp." },
	{ 0x0993, "Gemstar eBook Group, Ltd" },
	{ 0x0996, "Integrated Telecom Express, Inc." },
	{ 0x099a, "Zippy Technology Corp." },
	{ 0x09a3, "PairGain Technologies" },
	{ 0x09a4, "Contech Research, Inc." },
	{ 0x09a5, "VCON Telecommunications" },
	{ 0x09a6, "Poinchips" },
	{ 0x09a7, "Data Transmission Network Corp." },
	{ 0x09a8, "Lin Shiung Enterprise Co., Ltd" },
	{ 0x09a9, "Smart Card Technologies Co., Ltd" },
	{ 0x09aa, "Intersil Corp." },
	{ 0x09ab, "Japan Cash Machine Co., Ltd." },
	{ 0x09ae, "Tripp Lite" },
	{ 0x09b2, "Franklin Electronic Publishers, Inc." },
	{ 0x09b3, "Altius Solutions, Inc." },
	{ 0x09b4, "MDS Telephone Systems" },
	{ 0x09b5, "Celltrix Technology Co., Ltd" },
	{ 0x09bc, "Grundig" },
	{ 0x09be, "MySmart.Com" },
	{ 0x09bf, "Auerswald GmbH & Co. KG" },
	{ 0x09c0, "Genpix Electronics, LLC" },
	{ 0x09c1, "Arris Interactive LLC" },
	{ 0x09c2, "Nisca Corp." },
	{ 0x09c3, "ActivCard, Inc." },
	{ 0x09c4, "ACTiSYS Corp." },
	{ 0x09c5, "Memory Corp." },
	{ 0x09ca, "BMC Messsysteme GmbH" },
	{ 0x09cc, "Workbit Corp." },
	{ 0x09cd, "Psion Dacom Home Networks, Ltd" },
	{ 0x09ce, "City Electronics, Ltd" },
	{ 0x09cf, "Electronics Testing Center, Taiwan" },
	{ 0x09d1, "NeoMagic, Inc." },
	{ 0x09d2, "Vreelin Engineering, Inc." },
	{ 0x09d3, "Com One" },
	{ 0x09d7, "Novatel Wireless" },
	{ 0x09d9, "KRF Tech, Ltd" },
	{ 0x09da, "A4Tech Co., Ltd." },
	{ 0x09db, "Measurement Computing Corp." },
	{ 0x09dc, "Aimex Corp." },
	{ 0x09dd, "Fellowes, Inc." },
	{ 0x09df, "Addonics Technologies Corp." },
	{ 0x09e1, "Intellon Corp." },
	{ 0x09e5, "Jo-Dan International, Inc." },
	{ 0x09e6, "Silutia, Inc." },
	{ 0x09e7, "Real 3D, Inc." },
	{ 0x09e8, "AKAI  Professional M.I. Corp." },
	{ 0x09e9, "Chen-Source, Inc." },
	{ 0x09eb, "IM Networks, Inc." },
	{ 0x09ef, "Xitel" },
	{ 0x09f3, "GoFlight, Inc." },
	{ 0x09f5, "AresCom" },
	{ 0x09f6, "RocketChips, Inc." },
	{ 0x09f7, "Edu-Science (H.K.), Ltd" },
	{ 0x09f8, "SoftConnex Technologies, Inc." },
	{ 0x09f9, "Bay Associates" },
	{ 0x09fa, "Mtek Vision" },
	{ 0x09fb, "Altera" },
	{ 0x09ff, "Gain Technology Corp." },
	{ 0x0a00, "Liquid Audio" },
	{ 0x0a01, "ViA, Inc." },
	{ 0x0a05, "Unknown Manufacturer" },
	{ 0x0a07, "Ontrak Control Systems Inc." },
	{ 0x0a0b, "Cybex Computer Products Co." },
	{ 0x0a0d, "Servergy, Inc" },
	{ 0x0a11, "Xentec, Inc." },
	{ 0x0a12, "Cambridge Silicon Radio, Ltd" },
	{ 0x0a13, "Telebyte, Inc." },
	{ 0x0a14, "Spacelabs Medical, Inc." },
	{ 0x0a15, "Scalar Corp." },
	{ 0x0a16, "Trek Technology (S) PTE, Ltd" },
	{ 0x0a17, "Pentax Corp." },
	{ 0x0a18, "Heidelberger Druckmaschinen AG" },
	{ 0x0a19, "Hua Geng Technologies, Inc." },
	{ 0x0a21, "Medtronic Physio Control Corp." },
	{ 0x0a22, "Century Semiconductor USA, Inc." },
	{ 0x0a27, "Datacard Group" },
	{ 0x0a2c, "AK-Modul-Bus Computer GmbH" },
	{ 0x0a34, "TG3 Electronics, Inc." },
	{ 0x0a35, "Radikal Technologies" },
	{ 0x0a39, "Gilat Satellite Networks, Ltd" },
	{ 0x0a3a, "PentaMedia Co., Ltd" },
	{ 0x0a3c, "NTT DoCoMo, Inc." },
	{ 0x0a3d, "Varo Vision" },
	{ 0x0a3f, "Swissonic AG" },
	{ 0x0a43, "Boca Systems, Inc." },
	{ 0x0a46, "Davicom Semiconductor, Inc." },
	{ 0x0a47, "Hirose Electric" },
	{ 0x0a48, "I/O Interconnect" },
	{ 0x0a4a, "Ploytec GmbH" },
	{ 0x0a4b, "Fujitsu Media Devices, Ltd" },
	{ 0x0a4c, "Computex Co., Ltd" },
	{ 0x0a4d, "Evolution Electronics, Ltd" },
	{ 0x0a4e, "Steinberg Soft-und Hardware GmbH" },
	{ 0x0a4f, "Litton Systems, Inc." },
	{ 0x0a50, "Mimaki Engineering Co., Ltd" },
	{ 0x0a51, "Sony Electronics, Inc." },
	{ 0x0a52, "Jebsee Electronics Co., Ltd" },
	{ 0x0a53, "Portable Peripheral Co., Ltd" },
	{ 0x0a5a, "Electronics For Imaging, Inc." },
	{ 0x0a5b, "EAsics NV" },
	{ 0x0a5c, "Broadcom Corp." },
	{ 0x0a5d, "Diatrend Corp." },
	{ 0x0a5f, "Zebra" },
	{ 0x0a62, "MPMan" },
	{ 0x0a66, "ClearCube Technology" },
	{ 0x0a67, "Medeli Electronics Co., Ltd" },
	{ 0x0a68, "Comaide Corp." },
	{ 0x0a69, "Chroma ate, Inc." },
	{ 0x0a6b, "Green House Co., Ltd" },
	{ 0x0a6c, "Integrated Circuit Systems, Inc." },
	{ 0x0a6d, "UPS Manufacturing" },
	{ 0x0a6e, "Benwin" },
	{ 0x0a6f, "Core Technology, Inc." },
	{ 0x0a70, "International Game Technology" },
	{ 0x0a71, "VIPColor Technologies USA, Inc." },
	{ 0x0a72, "Sanwa Denshi" },
	{ 0x0a73, "Mackie Designs" },
	{ 0x0a7d, "NSTL, Inc." },
	{ 0x0a7e, "Octagon Systems Corp." },
	{ 0x0a80, "Rexon Technology Corp., Ltd" },
	{ 0x0a81, "Chesen Electronics Corp." },
	{ 0x0a82, "Syscan" },
	{ 0x0a83, "NextComm, Inc." },
	{ 0x0a84, "Maui Innovative Peripherals" },
	{ 0x0a85, "Idexx Labs" },
	{ 0x0a86, "NITGen Co., Ltd" },
	{ 0x0a89, "Aktiv" },
	{ 0x0a8d, "Picturetel" },
	{ 0x0a8e, "Japan Aviation Electronics Industry, Ltd" },
	{ 0x0a90, "Candy Technology Co., Ltd" },
	{ 0x0a91, "Globlink Technology, Inc." },
	{ 0x0a92, "EGO SYStems, Inc." },
	{ 0x0a93, "C Technologies AB" },
	{ 0x0a94, "Intersense" },
	{ 0x0aa3, "Lava Computer Mfg., Inc." },
	{ 0x0aa4, "Develco Elektronik" },
	{ 0x0aa5, "First International Digital" },
	{ 0x0aa6, "Perception Digital, Ltd" },
	{ 0x0aa7, "Wincor Nixdorf International GmbH" },
	{ 0x0aa8, "TriGem Computer, Inc." },
	{ 0x0aa9, "Baromtec Co." },
	{ 0x0aaa, "Japan CBM Corp." },
	{ 0x0aab, "Vision Shape Europe SA" },
	{ 0x0aac, "iCompression, Inc." },
	{ 0x0aad, "Rohde & Schwarz GmbH & Co. KG" },
	{ 0x0aae, "NEC infrontia Corp. (Nitsuko)" },
	{ 0x0aaf, "Digitalway Co., Ltd" },
	{ 0x0ab0, "Arrow Strong Electronics Co., Ltd" },
	{ 0x0ab1, "FEIG ELECTRONIC GmbH" },
	{ 0x0aba, "Ellisys" },
	{ 0x0abe, "Stereo-Link" },
	{ 0x0abf, "Diolan" },
	{ 0x0ac3, "Sanyo Semiconductor Company Micro" },
	{ 0x0ac4, "Leco Corp." },
	{ 0x0ac5, "I & C Corp." },
	{ 0x0ac6, "Singing Electrons, Inc." },
	{ 0x0ac7, "Panwest Corp." },
	{ 0x0ac8, "Z-Star Microelectronics Corp." },
	{ 0x0ac9, "Micro Solutions, Inc." },
	{ 0x0aca, "OPEN Networks Ltd" },
	{ 0x0acc, "Koga Electronics Co." },
	{ 0x0acd, "ID Tech" },
	{ 0x0ace, "ZyDAS" },
	{ 0x0acf, "Intoto, Inc." },
	{ 0x0ad0, "Intellix Corp." },
	{ 0x0ad1, "Remotec Technology, Ltd" },
	{ 0x0ad2, "Service & Quality Technology Co., Ltd" },
	{ 0x0ada, "Data Encryption Systems Ltd." },
	{ 0x0ae3, "Allion Computer, Inc." },
	{ 0x0ae4, "Taito Corp." },
	{ 0x0ae7, "Neodym Systems, Inc." },
	{ 0x0ae8, "System Support Co., Ltd" },
	{ 0x0ae9, "North Shore Circuit Design L.L.P." },
	{ 0x0aea, "SciEssence, LLC" },
	{ 0x0aeb, "TTP Communications, Ltd" },
	{ 0x0aec, "Neodio Technologies Corp." },
	{ 0x0af0, "Option" },
	{ 0x0af6, "Silver I Co., Ltd" },
	{ 0x0af7, "B2C2, Inc." },
	{ 0x0af9, "Hama, Inc." },
	{ 0x0afa, "DMC Co., Ltd." },
	{ 0x0afc, "Zaptronix Ltd" },
	{ 0x0afd, "Tateno Dennou, Inc." },
	{ 0x0afe, "Cummins Engine Co." },
	{ 0x0aff, "Jump Zone Network Products, Inc." },
	{ 0x0b00, "INGENICO" },
	{ 0x0b05, "ASUSTek Computer, Inc." },
	{ 0x0b0b, "Datamax-O'Neil" },
	{ 0x0b0c, "Todos AB" },
	{ 0x0b0d, "ProjectLab" },
	{ 0x0b0e, "GN Netcom" },
	{ 0x0b0f, "AVID Technology" },
	{ 0x0b10, "Pcally" },
	{ 0x0b11, "I Tech Solutions Co., Ltd" },
	{ 0x0b1e, "Electronic Warfare Assoc., Inc. (EWA)" },
	{ 0x0b1f, "Insyde Software Corp." },
	{ 0x0b20, "TransDimension, Inc." },
	{ 0x0b21, "Yokogawa Electric Corp." },
	{ 0x0b22, "Japan System Development Co., Ltd" },
	{ 0x0b23, "Pan-Asia Electronics Co., Ltd" },
	{ 0x0b24, "Link Evolution Corp." },
	{ 0x0b27, "Ritek Corp." },
	{ 0x0b28, "Kenwood Corp." },
	{ 0x0b2c, "Village Center, Inc." },
	{ 0x0b30, "PNY Technologies, Inc." },
	{ 0x0b33, "Contour Design, Inc." },
	{ 0x0b37, "Hitachi ULSI Systems Co., Ltd" },
	{ 0x0b38, "Gear Head" },
	{ 0x0b39, "Omnidirectional Control Technology, Inc." },
	{ 0x0b3a, "IPaxess" },
	{ 0x0b3b, "Tekram Technology Co., Ltd" },
	{ 0x0b3c, "Olivetti Techcenter" },
	{ 0x0b3e, "Kikusui Electronics Corp." },
	{ 0x0b41, "Hal Corp." },
	{ 0x0b43, "Play.com, Inc." },
	{ 0x0b47, "Sportbug.com, Inc." },
	{ 0x0b48, "TechnoTrend AG" },
	{ 0x0b49, "ASCII Corp." },
	{ 0x0b4b, "Pine Corp. Ltd." },
	{ 0x0b4d, "Graphtec America, Inc." },
	{ 0x0b4e, "Musical Electronics, Ltd" },
	{ 0x0b50, "Dumpries Co., Ltd" },
	{ 0x0b51, "Comfort Keyboard Co." },
	{ 0x0b52, "Colorado MicroDisplay, Inc." },
	{ 0x0b54, "Sinbon Electronics Co., Ltd" },
	{ 0x0b56, "TYI Systems, Ltd" },
	{ 0x0b57, "Beijing HanwangTechnology Co., Ltd" },
	{ 0x0b59, "Lake Communications, Ltd" },
	{ 0x0b5a, "Corel Corp." },
	{ 0x0b5f, "Green Electronics Co., Ltd" },
	{ 0x0b60, "Nsine, Ltd" },
	{ 0x0b61, "NEC Viewtechnology, Ltd" },
	{ 0x0b62, "Orange Micro, Inc." },
	{ 0x0b63, "ADLink Technology, Inc." },
	{ 0x0b64, "Wonderful Wire Cable Co., Ltd" },
	{ 0x0b65, "Expert Magnetics Corp." },
	{ 0x0b66, "Cybiko Inc." },
	{ 0x0b67, "Fairbanks Scales" },
	{ 0x0b69, "CacheVision" },
	{ 0x0b6a, "Maxim Integrated Products" },
	{ 0x0b6f, "Nagano Japan Radio Co., Ltd" },
	{ 0x0b70, "PortalPlayer, Inc." },
	{ 0x0b71, "SHIN-EI Sangyo Co., Ltd" },
	{ 0x0b72, "Embedded Wireless Technology Co., Ltd" },
	{ 0x0b73, "Computone Corp." },
	{ 0x0b75, "Roland DG Corp." },
	{ 0x0b79, "Sunrise Telecom, Inc." },
	{ 0x0b7a, "Zeevo, Inc." },
	{ 0x0b7b, "Taiko Denki Co., Ltd" },
	{ 0x0b7c, "ITRAN Communications, Ltd" },
	{ 0x0b7d, "Astrodesign, Inc." },
	{ 0x0b81, "id3 Technologies" },
	{ 0x0b84, "Rextron Technology, Inc." },
	{ 0x0b85, "Elkat Electronics, Sdn., Bhd." },
	{ 0x0b86, "Exputer Systems, Inc." },
	{ 0x0b87, "Plus-One I & T, Inc." },
	{ 0x0b88, "Sigma Koki Co., Ltd, Technology Center" },
	{ 0x0b89, "Advanced Digital Broadcast, Ltd" },
	{ 0x0b8c, "SMART Technologies Inc." },
	{ 0x0b95, "ASIX Electronics Corp." },
	{ 0x0b96, "Sewon Telecom" },
	{ 0x0b97, "O2 Micro, Inc." },
	{ 0x0b98, "Playmates Toys, Inc." },
	{ 0x0b99, "Audio International, Inc." },
	{ 0x0b9b, "Dipl.-Ing. Stefan Kunde" },
	{ 0x0b9d, "Softprotec Co." },
	{ 0x0b9f, "Chippo Technologies" },
	{ 0x0baf, "U.S. Robotics" },
	{ 0x0bb0, "Concord Camera Corp." },
	{ 0x0bb1, "Infinilink Corp." },
	{ 0x0bb2, "Ambit Microsystems Corp." },
	{ 0x0bb3, "Ofuji Technology" },
	{ 0x0bb4, "HTC (High Tech Computer Corp.)" },
	{ 0x0bb5, "Murata Manufacturing Co., Ltd" },
	{ 0x0bb6, "Network Alchemy" },
	{ 0x0bb7, "Joytech Computer Co., Ltd" },
	{ 0x0bb8, "Hitachi Semiconductor and Devices Sales Co., Ltd" },
	{ 0x0bb9, "Eiger M&C Co., Ltd" },
	{ 0x0bba, "ZAccess Systems" },
	{ 0x0bbb, "General Meters Corp." },
	{ 0x0bbc, "Assistive Technology, Inc." },
	{ 0x0bbd, "System Connection, Inc." },
	{ 0x0bc0, "Knilink Technology, Inc." },
	{ 0x0bc1, "Fuw Yng Electronics Co., Ltd" },
	{ 0x0bc2, "Seagate RSS LLC" },
	{ 0x0bc3, "IPWireless, Inc." },
	{ 0x0bc4, "Microcube Corp." },
	{ 0x0bc5, "JCN Co., Ltd" },
	{ 0x0bc6, "ExWAY, Inc." },
	{ 0x0bc7, "X10 Wireless Technology, Inc." },
	{ 0x0bc8, "Telmax Communications" },
	{ 0x0bc9, "ECI Telecom, Ltd" },
	{ 0x0bca, "Startek Engineering, Inc." },
	{ 0x0bcb, "Perfect Technic Enterprise Co., Ltd" },
	{ 0x0bd7, "Andrew Pargeter & Associates" },
	{ 0x0bda, "Realtek Semiconductor Corp." },
	{ 0x0bdb, "Ericsson Business Mobile Networks BV" },
	{ 0x0bdc, "Y Media Corp." },
	{ 0x0bdd, "Orange PCS" },
	{ 0x0be2, "Kanda Tsushin Kogyo Co., Ltd" },
	{ 0x0be3, "TOYO Corp." },
	{ 0x0be4, "Elka International, Ltd" },
	{ 0x0be5, "DOME imaging systems, Inc." },
	{ 0x0be6, "Dong Guan Humen Wonderful Wire Cable Factory" },
	{ 0x0bed, "MEI" },
	{ 0x0bee, "LTK Industries, Ltd" },
	{ 0x0bef, "Way2Call Communications" },
	{ 0x0bf0, "Pace Micro Technology PLC" },
	{ 0x0bf1, "Intracom S.A." },
	{ 0x0bf2, "Konexx" },
	{ 0x0bf6, "Addonics Technologies, Inc." },
	{ 0x0bf7, "Sunny Giken, Inc." },
	{ 0x0bf8, "Fujitsu Siemens Computers" },
	{ 0x0bfd, "Kvaser AB" },
	{ 0x0c04, "MOTO Development Group, Inc." },
	{ 0x0c05, "Appian Graphics" },
	{ 0x0c06, "Hasbro Games, Inc." },
	{ 0x0c07, "Infinite Data Storage, Ltd" },
	{ 0x0c08, "Agate" },
	{ 0x0c09, "Comjet Information System" },
	{ 0x0c0a, "Highpoint Technologies, Inc." },
	{ 0x0c0b, "Dura Micro, Inc. (Acomdata)" },
	{ 0x0c12, "Zeroplus" },
	{ 0x0c15, "Iris Graphics" },
	{ 0x0c16, "Gyration, Inc." },
	{ 0x0c17, "Cyberboard A/S" },
	{ 0x0c18, "SynerTek Korea, Inc." },
	{ 0x0c19, "cyberPIXIE, Inc." },
	{ 0x0c1a, "Silicon Motion, Inc." },
	{ 0x0c1b, "MIPS Technologies" },
	{ 0x0c1c, "Hang Zhou Silan Electronics Co., Ltd" },
	{ 0x0c22, "Tally Printer Corp." },
	{ 0x0c23, "Lernout + Hauspie" },
	{ 0x0c24, "Taiyo Yuden" },
	{ 0x0c25, "Sampo Corp." },
	{ 0x0c26, "Prolific Technology Inc." },
	{ 0x0c27, "RFIDeas, Inc" },
	{ 0x0c2e, "Metrologic Instruments" },
	{ 0x0c35, "Eagletron, Inc." },
	{ 0x0c36, "E Ink Corp." },
	{ 0x0c37, "e.Digital" },
	{ 0x0c38, "Der An Electric Wire & Cable Co., Ltd" },
	{ 0x0c39, "IFR" },
	{ 0x0c3a, "Furui Precise Component (Kunshan) Co., Ltd" },
	{ 0x0c3b, "Komatsu, Ltd" },
	{ 0x0c3c, "Radius Co., Ltd" },
	{ 0x0c3d, "Innocom, Inc." },
	{ 0x0c3e, "Nextcell, Inc." },
	{ 0x0c44, "Motorola iDEN" },
	{ 0x0c45, "Microdia" },
	{ 0x0c46, "WaveRider Communications, Inc." },
	{ 0x0c4a, "ALGE-TIMING GmbH" },
	{ 0x0c4b, "Reiner SCT Kartensysteme GmbH" },
	{ 0x0c4c, "Needham's Electronics" },
	{ 0x0c52, "Sealevel Systems, Inc." },
	{ 0x0c53, "ViewPLUS, Inc." },
	{ 0x0c54, "Glory, Ltd" },
	{ 0x0c55, "Spectrum Digital, Inc." },
	{ 0x0c56, "Billion Bright, Ltd" },
	{ 0x0c57, "Imaginative Design Operation Co., Ltd" },
	{ 0x0c58, "Vidar Systems Corp." },
	{ 0x0c59, "Dong Guan Shinko Wire Co., Ltd" },
	{ 0x0c5a, "TRS International Mfg., Inc." },
	{ 0x0c5e, "Xytronix Research & Design" },
	{ 0x0c60, "Apogee Electronics Corp." },
	{ 0x0c62, "Chant Sincere Co., Ltd" },
	{ 0x0c63, "Toko, Inc." },
	{ 0x0c64, "Signality System Engineering Co., Ltd" },
	{ 0x0c65, "Eminence Enterprise Co., Ltd" },
	{ 0x0c66, "Rexon Electronics Corp." },
	{ 0x0c67, "Concept Telecom, Ltd" },
	{ 0x0c6a, "ACS" },
	{ 0x0c6c, "JETI Technische Instrumente GmbH" },
	{ 0x0c70, "MCT Elektronikladen" },
	{ 0x0c72, "PEAK System" },
	{ 0x0c74, "Optronic Laboratories Inc." },
	{ 0x0c76, "JMTek, LLC." },
	{ 0x0c77, "Sipix Group, Ltd" },
	{ 0x0c78, "Detto Corp." },
	{ 0x0c79, "NuConnex Technologies Pte., Ltd" },
	{ 0x0c7a, "Wing-Span Enterprise Co., Ltd" },
	{ 0x0c86, "NDA Technologies, Inc." },
	{ 0x0c88, "Kyocera Wireless Corp." },
	{ 0x0c89, "Honda Tsushin Kogyo Co., Ltd" },
	{ 0x0c8a, "Pathway Connectivity, Inc." },
	{ 0x0c8b, "Wavefly Corp." },
	{ 0x0c8c, "Coactive Networks" },
	{ 0x0c8d, "Tempo" },
	{ 0x0c8e, "Cesscom Co., Ltd" },
	{ 0x0c8f, "Applied Microsystems" },
	{ 0x0c94, "Cryptera" },
	{ 0x0c98, "Berkshire Products, Inc." },
	{ 0x0c99, "Innochips Co., Ltd" },
	{ 0x0c9a, "Hanwool Robotics Corp." },
	{ 0x0c9b, "Jobin Yvon, Inc." },
	{ 0x0c9d, "SemTek" },
	{ 0x0ca2, "Zyfer" },
	{ 0x0ca3, "Sega Corp." },
	{ 0x0ca4, "ST&T Instrument Corp." },
	{ 0x0ca5, "BAE Systems Canada, Inc." },
	{ 0x0ca6, "Castles Technology Co., Ltd" },
	{ 0x0ca7, "Information Systems Laboratories" },
	{ 0x0cad, "Motorola CGISS" },
	{ 0x0cae, "Ascom Business Systems, Ltd" },
	{ 0x0caf, "Buslink" },
	{ 0x0cb0, "Flying Pig Systems" },
	{ 0x0cb1, "Innovonics, Inc." },
	{ 0x0cb6, "Celestix Networks, Pte., Ltd" },
	{ 0x0cb7, "Singatron Enterprise Co., Ltd" },
	{ 0x0cb8, "Opticis Co., Ltd" },
	{ 0x0cba, "Trust Electronic (Shanghai) Co., Ltd" },
	{ 0x0cbb, "Shanghai Darong Electronics Co., Ltd" },
	{ 0x0cbc, "Palmax Technology Co., Ltd" },
	{ 0x0cbd, "Pentel Co., Ltd (Electronics Equipment Div.)" },
	{ 0x0cbe, "Keryx Technologies, Inc." },
	{ 0x0cbf, "Union Genius Computer Co., Ltd" },
	{ 0x0cc0, "Kuon Yi Industrial Corp." },
	{ 0x0cc1, "Given Imaging, Ltd" },
	{ 0x0cc2, "Timex Corp." },
	{ 0x0cc3, "Rimage Corp." },
	{ 0x0cc4, "emsys GmbH" },
	{ 0x0cc5, "Sendo" },
	{ 0x0cc6, "Intermagic Corp." },
	{ 0x0cc7, "Kontron Medical AG" },
	{ 0x0cc8, "Technotools Corp." },
	{ 0x0cc9, "BroadMAX Technologies, Inc." },
	{ 0x0cca, "Amphenol" },
	{ 0x0ccb, "SKNet Co., Ltd" },
	{ 0x0ccc, "Domex Technology Corp." },
	{ 0x0ccd, "TerraTec Electronic GmbH" },
	{ 0x0cd4, "Bang Olufsen" },
	{ 0x0cd5, "LabJack Corporation" },
	{ 0x0cd7, "NewChip S.r.l." },
	{ 0x0cd8, "JS Digitech, Inc." },
	{ 0x0cd9, "Hitachi Shin Din Cable, Ltd" },
	{ 0x0cde, "Z-Com" },
	{ 0x0ce5, "Validation Technologies International" },
	{ 0x0ce9, "Pico Technology" },
	{ 0x0cf1, "e-Conn Electronic Co., Ltd" },
	{ 0x0cf2, "ENE Technology, Inc." },
	{ 0x0cf3, "Atheros Communications, Inc." },
	{ 0x0cf4, "Fomtex Corp." },
	{ 0x0cf5, "Cellink Co., Ltd" },
	{ 0x0cf6, "Compucable Corp." },
	{ 0x0cf7, "ishoni Networks" },
	{ 0x0cf8, "Clarisys, Inc." },
	{ 0x0cf9, "Central System Research Co., Ltd" },
	{ 0x0cfa, "Inviso, Inc." },
	{ 0x0cfc, "Minolta-QMS, Inc." },
	{ 0x0cff, "SAFA MEDIA Co., Ltd." },
	{ 0x0d06, "telos EDV Systementwicklung GmbH" },
	{ 0x0d08, "UTStarcom" },
	{ 0x0d0b, "Contemporary Controls" },
	{ 0x0d0c, "Astron Electronics Co., Ltd" },
	{ 0x0d0d, "MKNet Corp." },
	{ 0x0d0e, "Hybrid Networks, Inc." },
	{ 0x0d0f, "Feng Shin Cable Co., Ltd" },
	{ 0x0d10, "Elastic Networks" },
	{ 0x0d11, "Maspro Denkoh Corp." },
	{ 0x0d12, "Hansol Electronics, Inc." },
	{ 0x0d13, "BMF Corp." },
	{ 0x0d14, "Array Comm, Inc." },
	{ 0x0d15, "OnStream b.v." },
	{ 0x0d16, "Hi-Touch Imaging Technologies Co., Ltd" },
	{ 0x0d17, "NALTEC, Inc." },
	{ 0x0d18, "coaXmedia" },
	{ 0x0d19, "Hank Connection Industrial Co., Ltd" },
	{ 0x0d28, "NXP" },
	{ 0x0d32, "Leo Hui Electric Wire & Cable Co., Ltd" },
	{ 0x0d33, "AirSpeak, Inc." },
	{ 0x0d34, "Rearden Steel Technologies" },
	{ 0x0d35, "Dah Kun Co., Ltd" },
	{ 0x0d3a, "Posiflex Technologies, Inc." },
	{ 0x0d3c, "Sri Cable Technology, Ltd" },
	{ 0x0d3d, "Tangtop Technology Co., Ltd" },
	{ 0x0d3e, "Fitcom, inc." },
	{ 0x0d3f, "MTS Systems Corp." },
	{ 0x0d40, "Ascor, Inc." },
	{ 0x0d41, "Ta Yun Terminals Industrial Co., Ltd" },
	{ 0x0d42, "Full Der Co., Ltd" },
	{ 0x0d46, "Kobil Systems GmbH" },
	{ 0x0d48, "Promethean Limited" },
	{ 0x0d49, "Maxtor" },
	{ 0x0d4a, "NF Corp." },
	{ 0x0d4b, "Grape Systems, Inc." },
	{ 0x0d4c, "Tedas AG" },
	{ 0x0d4d, "Coherent, Inc." },
	{ 0x0d4e, "Agere Systems Netherland BV" },
	{ 0x0d4f, "EADS Airbus France" },
	{ 0x0d50, "Cleware GmbH" },
	{ 0x0d51, "Volex (Asia) Pte., Ltd" },
	{ 0x0d53, "HMI Co., Ltd" },
	{ 0x0d54, "Holon Corp." },
	{ 0x0d55, "ASKA Technologies, Inc." },
	{ 0x0d56, "AVLAB Technology, Inc." },
	{ 0x0d57, "Solomon Microtech, Ltd" },
	{ 0x0d5c, "SMC Networks, Inc." },
	{ 0x0d5e, "Myacom, Ltd" },
	{ 0x0d5f, "CSI, Inc." },
	{ 0x0d60, "IVL Technologies, Ltd" },
	{ 0x0d61, "Meilu Electronics (Shenzhen) Co., Ltd" },
	{ 0x0d62, "Darfon Electronics Corp." },
	{ 0x0d63, "Fritz Gegauf AG" },
	{ 0x0d64, "DXG Technology Corp." },
	{ 0x0d65, "KMJP Co., Ltd" },
	{ 0x0d66, "TMT" },
	{ 0x0d67, "Advanet, Inc." },
	{ 0x0d68, "Super Link Electronics Co., Ltd" },
	{ 0x0d69, "NSI" },
	{ 0x0d6a, "Megapower International Corp." },
	{ 0x0d6b, "And-Or Logic" },
	{ 0x0d70, "Try Computer Co., Ltd" },
	{ 0x0d71, "Hirakawa Hewtech Corp." },
	{ 0x0d72, "Winmate Communication, Inc." },
	{ 0x0d73, "Hit's Communications, Inc." },
	{ 0x0d76, "MFP Korea, Inc." },
	{ 0x0d77, "Power Sentry/Newpoint" },
	{ 0x0d78, "Japan Distributor Corp." },
	{ 0x0d7a, "MARX Datentechnik GmbH" },
	{ 0x0d7b, "Wellco Technology Co., Ltd" },
	{ 0x0d7c, "Taiwan Line Tek Electronic Co., Ltd" },
	{ 0x0d7d, "Phison Electronics Corp." },
	{ 0x0d7e, "American Computer & Digital Components" },
	{ 0x0d7f, "Essential Reality LLC" },
	{ 0x0d80, "H.R. Silvine Electronics, Inc." },
	{ 0x0d81, "TechnoVision" },
	{ 0x0d83, "Think Outside, Inc." },
	{ 0x0d87, "Dolby Laboratories Inc." },
	{ 0x0d89, "Oz Software" },
	{ 0x0d8a, "King Jim Co., Ltd" },
	{ 0x0d8b, "Ascom Telecommunications, Ltd" },
	{ 0x0d8c, "C-Media Electronics, Inc." },
	{ 0x0d8d, "Promotion & Display Technology, Ltd" },
	{ 0x0d8e, "Global Sun Technology, Inc." },
	{ 0x0d8f, "Pitney Bowes" },
	{ 0x0d90, "Sure-Fire Electrical Corp." },
	{ 0x0d96, "Skanhex Technology, Inc." },
	{ 0x0d97, "Santa Barbara Instrument Group" },
	{ 0x0d98, "Mars Semiconductor Corp." },
	{ 0x0d99, "Trazer Technologies, Inc." },
	{ 0x0d9a, "RTX Telecom AS" },
	{ 0x0d9b, "Tat Shing Electrical Co." },
	{ 0x0d9c, "Chee Chen Hi-Technology Co., Ltd" },
	{ 0x0d9d, "Sanwa Supply, Inc." },
	{ 0x0d9e, "Avaya" },
	{ 0x0d9f, "Powercom Co., Ltd" },
	{ 0x0da0, "Danger Research" },
	{ 0x0da1, "Suzhou Peter's Precise Industrial Co., Ltd" },
	{ 0x0da2, "Land Instruments International, Ltd" },
	{ 0x0da3, "Nippon Electro-Sensory Devices Corp." },
	{ 0x0da4, "Polar Electro Oy" },
	{ 0x0da7, "IOGear, Inc." },
	{ 0x0da8, "softDSP Co., Ltd" },
	{ 0x0dab, "Cubig Group" },
	{ 0x0dad, "Westover Scientific" },
	{ 0x0db0, "Micro Star International" },
	{ 0x0db1, "Wen Te Electronics Co., Ltd" },
	{ 0x0db2, "Shian Hwi Plug Parts, Plastic Factory" },
	{ 0x0db3, "Tekram Technology Co., Ltd" },
	{ 0x0db4, "Chung Fu Chen Yeh Enterprise Corp." },
	{ 0x0db5, "Access IS" },
	{ 0x0db7, "ELCON Systemtechnik" },
	{ 0x0dba, "Digidesign" },
	{ 0x0dbc, "A&D Medical" },
	{ 0x0dbe, "Jiuh Shiuh Precision Industry Co., Ltd" },
	{ 0x0dbf, "Jess-Link International" },
	{ 0x0dc0, "G7 Solutions (formerly Great Notions)" },
	{ 0x0dc1, "Tamagawa Seiki Co., Ltd" },
	{ 0x0dc3, "Athena Smartcard Solutions, Inc." },
	{ 0x0dc4, "Macpower Peripherals, Ltd" },
	{ 0x0dc5, "SDK Co., Ltd" },
	{ 0x0dc6, "Precision Squared Technology Corp." },
	{ 0x0dc7, "First Cable Line, Inc." },
	{ 0x0dcd, "NetworkFab Corp." },
	{ 0x0dd0, "Access Solutions" },
	{ 0x0dd1, "Contek Electronics Co., Ltd" },
	{ 0x0dd2, "Power Quotient International Co., Ltd" },
	{ 0x0dd3, "MediaQ" },
	{ 0x0dd4, "Custom Engineering SPA" },
	{ 0x0dd5, "California Micro Devices" },
	{ 0x0dd7, "Kocom Co., Ltd" },
	{ 0x0dd8, "Netac Technology Co., Ltd" },
	{ 0x0dd9, "HighSpeed Surfing" },
	{ 0x0dda, "Integrated Circuit Solution, Inc." },
	{ 0x0ddb, "Tamarack, Inc." },
	{ 0x0ddd, "Datelink Technology Co., Ltd" },
	{ 0x0dde, "Ubicom, Inc." },
	{ 0x0de0, "BD Consumer Healthcare" },
	{ 0x0de7, "USBmicro" },
	{ 0x0dea, "UTECH Electronic (D.G.) Co., Ltd." },
	{ 0x0ded, "Novasonics" },
	{ 0x0dee, "Lifetime Memory Products" },
	{ 0x0def, "Full Rise Electronic Co., Ltd" },
	{ 0x0df4, "NET&SYS" },
	{ 0x0df6, "Sitecom Europe B.V." },
	{ 0x0df7, "Mobile Action Technology, Inc." },
	{ 0x0dfa, "Toyo Communication Equipment Co., Ltd" },
	{ 0x0dfc, "GeneralTouch Technology Co., Ltd" },
	{ 0x0e03, "Nippon Systemware Co., Ltd" },
	{ 0x0e08, "Winbest Technology Co., Ltd" },
	{ 0x0e0b, "Amigo Technology Inc." },
	{ 0x0e0c, "Gesytec" },
	{ 0x0e0d, "PicoQuant GmbH" },
	{ 0x0e0f, "VMware, Inc." },
	{ 0x0e16, "JMTek, LLC" },
	{ 0x0e17, "Walex Electronic, Ltd" },
	{ 0x0e1a, "Unisys" },
	{ 0x0e1b, "Crewave" },
	{ 0x0e20, "Pegasus Technologies Ltd." },
	{ 0x0e21, "Cowon Systems, Inc." },
	{ 0x0e22, "Symbian Ltd." },
	{ 0x0e23, "Liou Yuane Enterprise Co., Ltd" },
	{ 0x0e25, "VinChip Systems, Inc." },
	{ 0x0e26, "J-Phone East Co., Ltd" },
	{ 0x0e30, "HeartMath LLC" },
	{ 0x0e34, "Micro Computer Control Corp." },
	{ 0x0e35, "3Pea Technologies, Inc." },
	{ 0x0e36, "TiePie engineering" },
	{ 0x0e38, "Stratitec, Inc." },
	{ 0x0e39, "Smart Modular Technologies, Inc." },
	{ 0x0e3a, "Neostar Technology Co., Ltd" },
	{ 0x0e3b, "Mansella, Ltd" },
	{ 0x0e41, "Line6, Inc." },
	{ 0x0e44, "Sun-Riseful Technology Co., Ltd." },
	{ 0x0e48, "Julia Corp., Ltd" },
	{ 0x0e4a, "Shenzhen Bao Hing Electric Wire & Cable Mfr. Co." },
	{ 0x0e4c, "Radica Games, Ltd" },
	{ 0x0e50, "TechnoData Interware" },
	{ 0x0e55, "Speed Dragon Multimedia, Ltd" },
	{ 0x0e56, "Kingston Technology Company, Inc." },
	{ 0x0e5a, "Active Co., Ltd" },
	{ 0x0e5b, "Union Power Information Industrial Co., Ltd" },
	{ 0x0e5c, "Bitland Information Technology Co., Ltd" },
	{ 0x0e5d, "Neltron Industrial Co., Ltd" },
	{ 0x0e5e, "Conwise Technology Co., Ltd." },
	{ 0x0e66, "Hawking Technologies" },
	{ 0x0e67, "Fossil, Inc." },
	{ 0x0e6a, "Megawin Technology Co., Ltd" },
	{ 0x0e6f, "Logic3" },
	{ 0x0e70, "Tokyo Electronic Industry Co., Ltd" },
	{ 0x0e72, "Hsi-Chin Electronics Co., Ltd" },
	{ 0x0e75, "TVS Electronics, Ltd" },
	{ 0x0e79, "Archos, Inc." },
	{ 0x0e7b, "On-Tech Industry Co., Ltd" },
	{ 0x0e7e, "Gmate, Inc." },
	{ 0x0e82, "Ching Tai Electric Wire & Cable Co., Ltd" },
	{ 0x0e83, "Shin An Wire & Cable Co." },
	{ 0x0e8c, "Well Force Electronic Co., Ltd" },
	{ 0x0e8d, "MediaTek Inc." },
	{ 0x0e8f, "GreenAsia Inc." },
	{ 0x0e90, "WiebeTech, LLC" },
	{ 0x0e91, "VTech Engineering Canada, Ltd" },
	{ 0x0e92, "C's Glory Enterprise Co., Ltd" },
	{ 0x0e93, "eM Technics Co., Ltd" },
	{ 0x0e95, "Future Technology Co., Ltd" },
	{ 0x0e96, "Aplux Communications, Ltd" },
	{ 0x0e97, "Fingerworks, Inc." },
	{ 0x0e98, "Advanced Analogic Technologies, Inc." },
	{ 0x0e99, "Parallel Dice Co., Ltd" },
	{ 0x0e9a, "TA HSING Industries, Ltd" },
	{ 0x0e9b, "ADTEC Corp." },
	{ 0x0e9c, "Streamzap, Inc." },
	{ 0x0e9f, "Tamura Corp." },
	{ 0x0ea0, "Ours Technology, Inc." },
	{ 0x0ea6, "Nihon Computer Co., Ltd" },
	{ 0x0ea7, "MSL Enterprises Corp." },
	{ 0x0ea8, "CenDyne, Inc." },
	{ 0x0ead, "Humax Co., Ltd" },
	{ 0x0eb0, "NovaTech" },
	{ 0x0eb1, "WIS Technologies, Inc." },
	{ 0x0eb2, "Y-S Electronic Co., Ltd" },
	{ 0x0eb3, "Saint Technology Corp." },
	{ 0x0eb7, "Endor AG" },
	{ 0x0eb8, "Mettler Toledo" },
	{ 0x0ebb, "Thermo Fisher Scientific" },
	{ 0x0ebe, "VWeb Corp." },
	{ 0x0ebf, "Omega Technology of Taiwan, Inc." },
	{ 0x0ec0, "LHI Technology (China) Co., Ltd" },
	{ 0x0ec1, "Abit Computer Corp." },
	{ 0x0ec2, "Sweetray Industrial, Ltd" },
	{ 0x0ec3, "Axell Co., Ltd" },
	{ 0x0ec4, "Ballracing Developments, Ltd" },
	{ 0x0ec5, "GT Information System Co., Ltd" },
	{ 0x0ec6, "InnoVISION Multimedia, Ltd" },
	{ 0x0ec7, "Theta Link Corp." },
	{ 0x0ecd, "Lite-On IT Corp." },
	{ 0x0ece, "TaiSol Electronics Co., Ltd" },
	{ 0x0ecf, "Phogenix Imaging, LLC" },
	{ 0x0ed1, "WinMaxGroup" },
	{ 0x0ed2, "Kyoto Micro Computer Co., Ltd" },
	{ 0x0ed3, "Wing-Tech Enterprise Co., Ltd" },
	{ 0x0ed5, "Fiberbyte" },
	{ 0x0eda, "Noriake Itron Corp." },
	{ 0x0edf, "e-MDT Co., Ltd" },
	{ 0x0ee0, "Shima Seiki Mfg., Ltd" },
	{ 0x0ee1, "Sarotech Co., Ltd" },
	{ 0x0ee2, "AMI Semiconductor, Inc." },
	{ 0x0ee3, "ComTrue Technology Corp." },
	{ 0x0ee4, "Sunrich Technology, Ltd" },
	{ 0x0eee, "Digital Stream Technology, Inc." },
	{ 0x0eef, "D-WAV Scientific Co., Ltd" },
	{ 0x0ef0, "Hitachi Cable, Ltd" },
	{ 0x0ef1, "Aichi Micro Intelligent Corp." },
	{ 0x0ef2, "I/O Magic Corp." },
	{ 0x0ef3, "Lynn Products, Inc." },
	{ 0x0ef4, "DSI Datotech" },
	{ 0x0ef5, "PointChips" },
	{ 0x0ef6, "Yield Microelectronics Corp." },
	{ 0x0ef7, "SM Tech Co., Ltd (Tulip)" },
	{ 0x0efd, "Oasis Semiconductor" },
	{ 0x0efe, "Wem Technology, Inc." },
	{ 0x0f03, "Unitek UPS Systems" },
	{ 0x0f06, "Visual Frontier Enterprise Co., Ltd" },
	{ 0x0f08, "CSL Wire & Plug (Shen Zhen) Co." },
	{ 0x0f0c, "CAS Corp." },
	{ 0x0f0d, "Hori Co., Ltd" },
	{ 0x0f0e, "Energy Full Corp." },
	{ 0x0f11, "LD Didactic GmbH" },
	{ 0x0f12, "Mars Engineering Corp." },
	{ 0x0f13, "Acetek Technology Co., Ltd" },
	{ 0x0f14, "Ingenico" },
	{ 0x0f18, "Finger Lakes Instrumentation" },
	{ 0x0f19, "Oracom Co., Ltd" },
	{ 0x0f1b, "Onset Computer Corp." },
	{ 0x0f1c, "Funai Electric Co., Ltd" },
	{ 0x0f1d, "Iwill Corp." },
	{ 0x0f21, "IOI Technology Corp." },
	{ 0x0f22, "Senior Industries, Inc." },
	{ 0x0f23, "Leader Tech Manufacturer Co., Ltd" },
	{ 0x0f24, "Flex-P Industries, Snd., Bhd." },
	{ 0x0f2d, "ViPower, Inc." },
	{ 0x0f2e, "Geniality Maple Technology Co., Ltd" },
	{ 0x0f2f, "Priva Design Services" },
	{ 0x0f30, "Jess Technology Co., Ltd" },
	{ 0x0f31, "Chrysalis Development" },
	{ 0x0f32, "YFC-BonEagle Electric Co., Ltd" },
	{ 0x0f37, "Kokuyo Co., Ltd" },
	{ 0x0f38, "Nien-Yi Industrial Corp." },
	{ 0x0f39, "TG3 Electronics" },
	{ 0x0f3d, "Airprime, Incorporated" },
	{ 0x0f41, "RDC Semiconductor Co., Ltd" },
	{ 0x0f42, "Nital Consulting Services, Inc." },
	{ 0x0f44, "Polhemus" },
	{ 0x0f4b, "St. John Technology Co., Ltd" },
	{ 0x0f4c, "WorldWide Cable Opto Corp." },
	{ 0x0f4d, "Microtune, Inc." },
	{ 0x0f4e, "Freedom Scientific" },
	{ 0x0f52, "Wing Key Electrical Co., Ltd" },
	{ 0x0f53, "Dongguan White Horse Cable Factory, Ltd" },
	{ 0x0f54, "Kawai Musical Instruments Mfg. Co., Ltd" },
	{ 0x0f55, "AmbiCom, Inc." },
	{ 0x0f5c, "Prairiecomm, Inc." },
	{ 0x0f5d, "NewAge International, LLC" },
	{ 0x0f5f, "Key Technology Corp." },
	{ 0x0f60, "NTK, Ltd" },
	{ 0x0f61, "Varian, Inc." },
	{ 0x0f62, "Acrox Technologies Co., Ltd" },
	{ 0x0f63, "LeapFrog Enterprises" },
	{ 0x0f68, "Kobe Steel, Ltd" },
	{ 0x0f69, "Dionex Corp." },
	{ 0x0f6a, "Vibren Technologies, Inc." },
	{ 0x0f6e, "INTELLIGENT SYSTEMS" },
	{ 0x0f73, "DFI" },
	{ 0x0f78, "Guntermann & Drunck GmbH" },
	{ 0x0f7c, "DQ Technology, Inc." },
	{ 0x0f7d, "NetBotz, Inc." },
	{ 0x0f7e, "Fluke Corp." },
	{ 0x0f88, "VTech Holdings, Ltd" },
	{ 0x0f8b, "Yazaki Corp." },
	{ 0x0f8c, "Young Generation International Corp." },
	{ 0x0f8d, "Uniwill Computer Corp." },
	{ 0x0f8e, "Kingnet Technology Co., Ltd" },
	{ 0x0f8f, "Soma Networks" },
	{ 0x0f97, "CviLux Corp." },
	{ 0x0f98, "CyberBank Corp." },
	{ 0x0f9c, "Hyun Won, Inc." },
	{ 0x0f9e, "Lucent Technologies" },
	{ 0x0fa3, "Starconn Electronic Co., Ltd" },
	{ 0x0fa4, "ATL Technology" },
	{ 0x0fa5, "Sotec Co., Ltd" },
	{ 0x0fa7, "Epox Computer Co., Ltd" },
	{ 0x0fa8, "Logic Controls, Inc." },
	{ 0x0faf, "Winpoint Electronic Corp." },
	{ 0x0fb0, "Haurtian Wire & Cable Co., Ltd" },
	{ 0x0fb1, "Inclose Design, Inc." },
	{ 0x0fb2, "Juan-Chern Industrial Co., Ltd" },
	{ 0x0fb6, "Heber Ltd" },
	{ 0x0fb8, "Wistron Corp." },
	{ 0x0fb9, "AACom Corp." },
	{ 0x0fba, "San Shing Electronics Co., Ltd" },
	{ 0x0fbb, "Bitwise Systems, Inc." },
	{ 0x0fc1, "Mitac Internatinal Corp." },
	{ 0x0fc2, "Plug and Jack Industrial, Inc." },
	{ 0x0fc5, "Delcom Engineering" },
	{ 0x0fc6, "Dataplus Supplies, Inc." },
	{ 0x0fca, "Research In Motion, Ltd." },
	{ 0x0fce, "Sony Ericsson Mobile Communications AB" },
	{ 0x0fcf, "Dynastream Innovations, Inc." },
	{ 0x0fd0, "Tulip Computers B.V." },
	{ 0x0fd1, "Giant Electronics Ltd." },
	{ 0x0fd2, "Seac Banche" },
	{ 0x0fd4, "Tenovis GmbH & Co., KG" },
	{ 0x0fd5, "Direct Access Technology, Inc." },
	{ 0x0fd9, "Elgato Systems GmbH" },
	{ 0x0fda, "Quantec Networks GmbH" },
	{ 0x0fdc, "Micro Plus" },
	{ 0x0fde, "Oregon Scientific" },
	{ 0x0fe0, "Osterhout Design Group" },
	{ 0x0fe4, "IN-Tech Electronics, Ltd" },
	{ 0x0fe5, "Greenconn (U.S.A.), Inc." },
	{ 0x0fe6, "Kontron (Industrial Computer Source / ICS Advent)" },
	{ 0x0fe9, "DVICO" },
	{ 0x0fea, "United Computer Accessories" },
	{ 0x0feb, "CRS Electronic Co., Ltd" },
	{ 0x0fec, "UMC Electronics Co., Ltd" },
	{ 0x0fed, "Access Co., Ltd" },
	{ 0x0fee, "Xsido Corp." },
	{ 0x0fef, "MJ Research, Inc." },
	{ 0x0ff6, "Core Valley Co., Ltd" },
	{ 0x0ff7, "CHI SHING Computer Accessories Co., Ltd" },
	{ 0x0ffc, "Clavia DMI AB" },
	{ 0x0ffd, "EarlySense" },
	{ 0x0fff, "Aopen, Inc." },
	{ 0x1000, "Speed Tech Corp." },
	{ 0x1001, "Ritronics Components (S) Pte., Ltd" },
	{ 0x1003, "Sigma Corp." },
	{ 0x1004, "LG Electronics, Inc." },
	{ 0x1005, "Apacer Technology, Inc." },
	{ 0x1006, "iRiver, Ltd." },
	{ 0x1009, "Emuzed, Inc." },
	{ 0x100a, "AV Chaseway, Ltd" },
	{ 0x100b, "Chou Chin Industrial Co., Ltd" },
	{ 0x100d, "Netopia, Inc." },
	{ 0x1010, "Fukuda Denshi Co., Ltd" },
	{ 0x1011, "Mobile Media Tech." },
	{ 0x1012, "SDKM Fibres, Wires & Cables Berhad" },
	{ 0x1013, "TST-Touchless Sensor Technology AG" },
	{ 0x1014, "Densitron Technologies PLC" },
	{ 0x1015, "Softronics Pty., Ltd" },
	{ 0x1016, "Xiamen Hung's Enterprise Co., Ltd" },
	{ 0x1017, "Speedy Industrial Supplies, Pte., Ltd" },
	{ 0x1019, "Elitegroup Computer Systems (ECS)" },
	{ 0x1020, "Labtec" },
	{ 0x1022, "Shinko Shoji Co., Ltd" },
	{ 0x1025, "Hyper-Paltek" },
	{ 0x1026, "Newly Corp." },
	{ 0x1027, "Time Domain" },
	{ 0x1028, "Inovys Corp." },
	{ 0x1029, "Atlantic Coast Telesys" },
	{ 0x102a, "Ramos Technology Co., Ltd" },
	{ 0x102b, "Infotronic America, Inc." },
	{ 0x102c, "Etoms Electronics Corp." },
	{ 0x102d, "Winic Corp." },
	{ 0x1031, "Comax Technology, Inc." },
	{ 0x1032, "C-One Technology Corp." },
	{ 0x1033, "Nucam Corp." },
	{ 0x1038, "SteelSeries ApS" },
	{ 0x1039, "devolo AG" },
	{ 0x103a, "PSA" },
	{ 0x103d, "Stanton" },
	{ 0x1043, "iCreate Technologies Corp." },
	{ 0x1044, "Chu Yuen Enterprise Co., Ltd" },
	{ 0x1046, "Winbond Electronics Corp. [hex]" },
	{ 0x1048, "Targus Group International" },
	{ 0x104b, "Mylex / Buslogic" },
	{ 0x104c, "AMCO TEC International, Inc." },
	{ 0x104d, "Newport Corporation" },
	{ 0x104f, "WB Electronics" },
	{ 0x1050, "Yubico.com" },
	{ 0x1053, "Immanuel Electronics Co., Ltd" },
	{ 0x1054, "BMS International Beheer N.V." },
	{ 0x1055, "Complex Micro Interconnection Co., Ltd" },
	{ 0x1056, "Hsin Chen Ent Co., Ltd" },
	{ 0x1057, "ON Semiconductor" },
	{ 0x1058, "Western Digital Technologies, Inc." },
	{ 0x1059, "Giesecke & Devrient GmbH" },
	{ 0x105b, "Foxconn International, Inc." },
	{ 0x105c, "Hong Ji Electric Wire & Cable (Dongguan) Co., Ltd" },
	{ 0x105d, "Delkin Devices, Inc." },
	{ 0x105e, "Valence Semiconductor Design, Ltd" },
	{ 0x105f, "Chin Shong Enterprise Co., Ltd" },
	{ 0x1060, "Easthome Industrial Co., Ltd" },
	{ 0x1063, "Motorola Electronics Taiwan, Ltd [hex]" },
	{ 0x1065, "CCYU Technology" },
	{ 0x106a, "Loyal Legend, Ltd" },
	{ 0x106c, "Curitel Communications, Inc." },
	{ 0x106d, "San Chieh Manufacturing, Ltd" },
	{ 0x106e, "ConectL" },
	{ 0x106f, "Money Controls" },
	{ 0x1076, "GCT Semiconductor, Inc." },
	{ 0x107b, "Gateway, Inc." },
	{ 0x107d, "Arlec Australia, Ltd" },
	{ 0x107e, "Midoriya Electric Co., Ltd" },
	{ 0x107f, "KidzMouse, Inc." },
	{ 0x1082, "Shin-Etsukaken Co., Ltd" },
	{ 0x1083, "Canon Electronics, Inc." },
	{ 0x1084, "Pantech Co., Ltd" },
	{ 0x108a, "Chloride Power Protection" },
	{ 0x108b, "Grand-tek Technology Co., Ltd" },
	{ 0x108c, "Robert Bosch GmbH" },
	{ 0x108e, "Lotes Co., Ltd." },
	{ 0x1099, "Surface Optics Corp." },
	{ 0x109a, "DATASOFT Systems GmbH" },
	{ 0x109b, "Hisense" },
	{ 0x109f, "eSOL Co., Ltd" },
	{ 0x10a0, "Hirotech, Inc." },
	{ 0x10a3, "Mitsubishi Materials Corp." },
	{ 0x10a9, "SK Teletech Co., Ltd" },
	{ 0x10aa, "Cables To Go" },
	{ 0x10ab, "USI Co., Ltd" },
	{ 0x10ac, "Honeywell, Inc." },
	{ 0x10ae, "Princeton Technology Corp." },
	{ 0x10af, "Liebert Corp." },
	{ 0x10b5, "Comodo (PLX?)" },
	{ 0x10b8, "DiBcom" },
	{ 0x10bb, "TM Technology, Inc." },
	{ 0x10bc, "Dinging Technology Co., Ltd" },
	{ 0x10bd, "TMT Technology, Inc." },
	{ 0x10bf, "SmartHome" },
	{ 0x10c3, "Universal Laser Systems, Inc." },
	{ 0x10c4, "Cygnal Integrated Products, Inc." },
	{ 0x10c5, "Sanei Electric, Inc." },
	{ 0x10c6, "Intec, Inc." },
	{ 0x10cb, "Eratech" },
	{ 0x10cc, "GBM Connector Co., Ltd" },
	{ 0x10cd, "Kycon, Inc." },
	{ 0x10ce, "Silicon Labs" },
	{ 0x10cf, "Velleman Components, Inc." },
	{ 0x10d1, "Hottinger Baldwin Measurement" },
	{ 0x10d2, "RayComposer - R. Adams" },
	{ 0x10d4, "Man Boon Manufactory, Ltd" },
	{ 0x10d5, "Uni Class Technology Co., Ltd" },
	{ 0x10d6, "Actions Semiconductor Co., Ltd" },
	{ 0x10de, "Authenex, Inc." },
	{ 0x10df, "In-Win Development, Inc." },
	{ 0x10e0, "Post-Op Video, Inc." },
	{ 0x10e1, "CablePlus, Ltd" },
	{ 0x10e2, "Nada Electronics, Ltd" },
	{ 0x10ec, "Vast Technologies, Inc." },
	{ 0x10f0, "Nexio Co., Ltd" },
	{ 0x10f1, "Importek" },
	{ 0x10f5, "Turtle Beach" },
	{ 0x10fb, "Pictos Technologies, Inc." },
	{ 0x10fd, "Anubis Electronics, Ltd" },
	{ 0x10fe, "Thrane & Thrane" },
	{ 0x1100, "VirTouch, Ltd" },
	{ 0x1101, "EasyPass Industrial Co., Ltd" },
	{ 0x1108, "Brightcom Technologies, Ltd" },
	{ 0x110a, "Moxa Technologies Co., Ltd." },
	{ 0x1110, "Analog Devices Canada, Ltd (Allied Telesyn)" },
	{ 0x1111, "Pandora International Ltd." },
	{ 0x1112, "YM ELECTRIC CO., Ltd" },
	{ 0x1113, "Medion AG" },
	{ 0x111e, "VSO Electric Co., Ltd" },
	{ 0x112a, "RedRat" },
	{ 0x112e, "Master Hill Electric Wire and Cable Co., Ltd" },
	{ 0x112f, "Cellon International, Inc." },
	{ 0x1130, "Tenx Technology, Inc." },
	{ 0x1131, "Integrated System Solution Corp." },
	{ 0x1132, "Toshiba Corp., Digital Media Equipment [hex]" },
	{ 0x1136, "CTS Electronincs" },
	{ 0x113c, "Arin Tech Co., Ltd" },
	{ 0x113d, "Mapower Electronics Co., Ltd" },
	{ 0x1141, "V One Multimedia, Pte., Ltd" },
	{ 0x1142, "CyberScan Technologies, Inc." },
	{ 0x1145, "Japan Radio Company" },
	{ 0x1146, "Shimane SANYO Electric Co., Ltd." },
	{ 0x1147, "Ever Great Electric Wire and Cable Co., Ltd" },
	{ 0x114b, "Sphairon Access Systems GmbH" },
	{ 0x114c, "Tinius Olsen Testing Machine Co., Inc." },
	{ 0x114d, "Alpha Imaging Technology Corp." },
	{ 0x114f, "Wavecom" },
	{ 0x115b, "Salix Technology Co., Ltd." },
	{ 0x1162, "Secugen Corp." },
	{ 0x1163, "DeLorme Publishing, Inc." },
	{ 0x1164, "YUAN High-Tech Development Co., Ltd" },
	{ 0x1165, "Telson Electronics Co., Ltd" },
	{ 0x1166, "Bantam Interactive Technologies" },
	{ 0x1167, "Salient Systems Corp." },
	{ 0x1168, "BizConn International Corp." },
	{ 0x116e, "Gigastorage Corp." },
	{ 0x116f, "Silicon 10 Technology Corp." },
	{ 0x1175, "Shengyih Steel Mold Co., Ltd" },
	{ 0x117d, "Santa Electronic, Inc." },
	{ 0x117e, "JNC, Inc." },
	{ 0x1182, "Venture Corp., Ltd" },
	{ 0x1183, "Compaq Computer Corp. [hex] (Digital Dream ?)" },
	{ 0x1184, "Kyocera Elco Corp." },
	{ 0x1188, "Bloomberg L.P." },
	{ 0x1189, "Acer Communications & Multimedia" },
	{ 0x118f, "You Yang Technology Co., Ltd" },
	{ 0x1190, "Tripace" },
	{ 0x1191, "Loyalty Founder Enterprise Co., Ltd" },
	{ 0x1196, "Yankee Robotics, LLC" },
	{ 0x1197, "Technoimagia Co., Ltd" },
	{ 0x1198, "StarShine Technology Corp." },
	{ 0x1199, "Sierra Wireless, Inc." },
	{ 0x119a, "ZHAN QI Technology Co., Ltd" },
	{ 0x119b, "ruwido austria GmbH" },
	{ 0x11a0, "Chipcon AS" },
	{ 0x11a3, "Technovas Co., Ltd" },
	{ 0x11aa, "GlobalMedia Group, LLC" },
	{ 0x11ab, "Exito Electronics Co., Ltd" },
	{ 0x11ac, "Nike" },
	{ 0x11b0, "ATECH FLASH TECHNOLOGY" },
	{ 0x11be, "R&D International NV" },
	{ 0x11c5, "Inmax" },
	{ 0x11ca, "VeriFone Inc" },
	{ 0x11db, "Topfield Co., Ltd." },
	{ 0x11e6, "K.I. Technology Co. Ltd." },
	{ 0x11f5, "Siemens AG" },
	{ 0x11f6, "Prolific" },
	{ 0x11f7, "Alcatel (?)" },
	{ 0x1203, "TSC Auto ID Technology Co., Ltd" },
	{ 0x1209, "InterBiometrics" },
	{ 0x120e, "Hudson Soft Co., Ltd" },
	{ 0x120f, "Magellan" },
	{ 0x1210, "DigiTech" },
	{ 0x121e, "Jungsoft Co., Ltd" },
	{ 0x1221, "Unknown manufacturer" },
	{ 0x1223, "SKYCABLE ENTERPRISE. CO., LTD." },
	{ 0x1228, "Datapaq Limited" },
	{ 0x1230, "Chipidea-Microelectronica, S.A." },
	{ 0x1233, "Denver Electronics" },
	{ 0x1234, "Brain Actuated Technologies" },
	{ 0x1235, "Focusrite-Novation" },
	{ 0x1241, "Belkin" },
	{ 0x124a, "AirVast" },
	{ 0x124b, "Nyko (Honey Bee)" },
	{ 0x124c, "MXI - Memory Experts International, Inc." },
	{ 0x125c, "Apogee Inc." },
	{ 0x125f, "A-DATA Technology Co., Ltd." },
	{ 0x1260, "Standard Microsystems Corp." },
	{ 0x1264, "Covidien Energy-based Devices" },
	{ 0x1266, "Pirelli Broadband Solutions" },
	{ 0x1267, "Logic3 / SpectraVideo plc" },
	{ 0x126c, "Aristocrat Technologies" },
	{ 0x126d, "Bel Stewart" },
	{ 0x126e, "Strobe Data, Inc." },
	{ 0x126f, "TwinMOS" },
	{ 0x1274, "Ensoniq" },
	{ 0x1275, "Xaxero Marine Software Engineering, Ltd." },
	{ 0x1278, "Starlight Xpress" },
	{ 0x1283, "zebris Medical GmbH" },
	{ 0x1286, "Marvell Semiconductor, Inc." },
	{ 0x1291, "Qualcomm Flarion Technologies, Inc. / Leadtek Research, Inc." },
	{ 0x1292, "Innomedia" },
	{ 0x1293, "Belkin Components [hex]" },
	{ 0x1294, "RISO KAGAKU CORP." },
	{ 0x129b, "CyberTAN Technology" },
	{ 0x12a7, "Trendchip Technologies Corp." },
	{ 0x12ab, "Honey Bee Electronic International Ltd." },
	{ 0x12b8, "Zhejiang Xinya Electronic Technology Co., Ltd." },
	{ 0x12b9, "E28" },
	{ 0x12ba, "Licensed by Sony Computer Entertainment America" },
	{ 0x12bd, "Gembird" },
	{ 0x12c4, "Autocue Group Ltd" },
	{ 0x12cf, "DEXIN" },
	{ 0x12d1, "Huawei Technologies Co., Ltd." },
	{ 0x12d2, "LINE TECH INDUSTRIAL CO., LTD." },
	{ 0x12d6, "EMS Dr. Thomas Wuensche" },
	{ 0x12d7, "BETTER WIRE FACTORY CO., LTD." },
	{ 0x12d8, "Araneus Information Systems Oy" },
	{ 0x12e6, "Waldorf Music GmbH" },
	{ 0x12ef, "Tapwave, Inc." },
	{ 0x12f5, "Dynamic System Electronics Corp." },
	{ 0x12f7, "Memorex Products, Inc." },
	{ 0x12fd, "AIN Comm. Technology Co., Ltd" },
	{ 0x12ff, "Fascinating Electronics, Inc." },
	{ 0x1307, "Transcend Information, Inc." },
	{ 0x1308, "Shuttle, Inc." },
	{ 0x1310, "Roper" },
	{ 0x1312, "ICS Electronics" },
	{ 0x1313, "ThorLabs" },
	{ 0x131d, "Natural Point" },
	{ 0x132a, "Envara Inc." },
	{ 0x132b, "Konica Minolta" },
	{ 0x133e, "Kemper Digital GmbH" },
	{ 0x1342, "Mobility" },
	{ 0x1343, "Citizen Systems" },
	{ 0x1345, "Sino Lite Technology Corp." },
	{ 0x1347, "Moravian Instruments" },
	{ 0x1348, "Katsuragawa Electric Co., Ltd." },
	{ 0x134c, "PanJit International Inc." },
	{ 0x134e, "Digby's Bitpile, Inc. DBA D Bit" },
	{ 0x1357, "P&E Microcomputer Systems" },
	{ 0x135f, "Control Development Inc." },
	{ 0x1366, "SEGGER" },
	{ 0x136b, "STEC" },
	{ 0x136e, "Andor Technology Ltd." },
	{ 0x1370, "Swissbit" },
	{ 0x1371, "CNet Technology Inc." },
	{ 0x1376, "Vimtron Electronics Co., Ltd." },
	{ 0x137b, "SCAPS GmbH" },
	{ 0x1385, "Netgear, Inc" },
	{ 0x138a, "Validity Sensors, Inc." },
	{ 0x138e, "Jungo LTD" },
	{ 0x1390, "TOMTOM B.V." },
	{ 0x1391, "IdealTEK, Inc." },
	{ 0x1395, "Sennheiser Communications" },
	{ 0x1397, "BEHRINGER International GmbH" },
	{ 0x1398, "Q-tec" },
	{ 0x13ad, "Baltech" },
	{ 0x13b0, "PerkinElmer Optoelectronics" },
	{ 0x13b1, "Linksys" },
	{ 0x13b2, "Alesis" },
	{ 0x13b3, "Nippon Dics Co., Ltd." },
	{ 0x13ba, "PCPlay" },
	{ 0x13be, "Ricoh Printing Systems, Ltd." },
	{ 0x13ca, "JyeTai Precision Industrial Co., Ltd." },
	{ 0x13cf, "Wisair Ltd." },
	{ 0x13d0, "Techsan Electronics Co., Ltd." },
	{ 0x13d1, "A-Max Technology Macao Commercial Offshore Co. Ltd." },
	{ 0x13d2, "Shark Multimedia" },
	{ 0x13d3, "IMC Networks" },
	{ 0x13d7, "Guidance Software, Inc." },
	{ 0x13dc, "ALEREON, INC." },
	{ 0x13dd, "i.Tech Dynamic Limited" },
	{ 0x13e1, "Kaibo Wire & Cable (Shenzhen) Co., Ltd." },
	{ 0x13e5, "Rane" },
	{ 0x13e6, "TechnoScope Co., Ltd." },
	{ 0x13ea, "Hengstler" },
	{ 0x13ec, "Zydacron" },
	{ 0x13ee, "MosArt" },
	{ 0x13fd, "Initio Corporation" },
	{ 0x13fe, "Kingston Technology Company Inc." },
	{ 0x1400, "Axxion Group Corp." },
	{ 0x1402, "Bowe Bell & Howell" },
	{ 0x1403, "Sitronix" },
	{ 0x1409, "IDS Imaging Development Systems GmbH" },
	{ 0x140e, "Telechips, Inc." },
	{ 0x1410, "Novatel Wireless" },
	{ 0x1415, "Nam Tai E&E Products Ltd. or OmniVision Technologies, Inc." },
	{ 0x1419, "ABILITY ENTERPRISE CO., LTD." },
	{ 0x1421, "Sensor Technology" },
	{ 0x1429, "Vega Technologies Industrial (Austria) Co." },
	{ 0x142a, "Thales E-Transactions" },
	{ 0x142b, "Arbiter Systems, Inc." },
	{ 0x1430, "RedOctane" },
	{ 0x1431, "Pertech Resources, Inc." },
	{ 0x1435, "Wistron NeWeb" },
	{ 0x1436, "Denali Software, Inc." },
	{ 0x143c, "Altek Corporation" },
	{ 0x1443, "Digilent" },
	{ 0x1446, "X.J.GROUP" },
	{ 0x1453, "Radio Shack" },
	{ 0x1456, "Extending Wire & Cable Co., Ltd." },
	{ 0x1457, "First International Computer, Inc." },
	{ 0x145f, "Trust" },
	{ 0x1460, "Tatung Co." },
	{ 0x1461, "Staccato Communications" },
	{ 0x1462, "Micro Star International" },
	{ 0x1472, "Huawei-3Com" },
	{ 0x147a, "Formosa Industrial Computing, Inc." },
	{ 0x147e, "Upek" },
	{ 0x147f, "Hama GmbH & Co., KG" },
	{ 0x1482, "Vaillant" },
	{ 0x1484, "Elsa AG [hex]" },
	{ 0x1485, "Silicom" },
	{ 0x1487, "DSP Group, Ltd." },
	{ 0x148e, "EVATRONIX SA" },
	{ 0x148f, "Ralink Technology, Corp." },
	{ 0x1491, "Futronic Technology Co. Ltd." },
	{ 0x1493, "Suunto" },
	{ 0x1497, "Panstrong Company Ltd." },
	{ 0x1498, "Microtek International Inc." },
	{ 0x149a, "Imagination Technologies" },
	{ 0x14aa, "WideView Technology Inc." },
	{ 0x14ad, "CTK Corporation" },
	{ 0x14ae, "Printronix Inc." },
	{ 0x14af, "ATP Electronics Inc." },
	{ 0x14b0, "StarTech.com Ltd." },
	{ 0x14b2, "Ralink Technology, Corp." },
	{ 0x14c0, "Rockwell Automation, Inc." },
	{ 0x14c2, "Gemlight Computer, Ltd" },
	{ 0x14c8, "Zytronic" },
	{ 0x14cd, "Super Top" },
	{ 0x14d8, "JAMER INDUSTRIES CO., LTD." },
	{ 0x14dd, "Raritan Computer, Inc." },
	{ 0x14e0, "WiNRADiO Communications" },
	{ 0x14e1, "Dialogue Technology Corp." },
	{ 0x14e5, "SAIN Information & Communications Co., Ltd." },
	{ 0x14ea, "Planex Communications" },
	{ 0x14ed, "Shure Inc." },
	{ 0x14f7, "TechniSat Digital GmbH" },
	{ 0x1500, "Ellisys" },
	{ 0x1501, "Pine-Tum Enterprise Co., Ltd." },
	{ 0x1509, "First International Computer, Inc." },
	{ 0x1513, "medMobile" },
	{ 0x1514, "Actel" },
	{ 0x1516, "CompUSA" },
	{ 0x1518, "Cheshire Engineering Corp." },
	{ 0x1519, "Comneon" },
	{ 0x1520, "Bitwire Corp." },
	{ 0x1524, "ENE Technology Inc" },
	{ 0x1527, "Silicon Portals" },
	{ 0x1529, "UBIQUAM Co., Ltd." },
	{ 0x152a, "Thesycon Systemsoftware & Consulting GmbH" },
	{ 0x152b, "MIR Srl" },
	{ 0x152d, "JMicron Technology Corp. / JMicron USA Technology Corp." },
	{ 0x152e, "LG (HLDS)" },
	{ 0x1532, "Razer USA, Ltd" },
	{ 0x153b, "TerraTec Electronic GmbH" },
	{ 0x1546, "U-Blox AG" },
	{ 0x1547, "SG Intec Ltd & Co KG" },
	{ 0x154a, "Celectronic GmbH" },
	{ 0x154b, "PNY" },
	{ 0x154d, "ConnectCounty Holdings Berhad" },
	{ 0x154e, "D&M Holdings, Inc. (Denon/Marantz)" },
	{ 0x154f, "SNBC CO., Ltd" },
	{ 0x1554, "Prolink Microsystems Corp." },
	{ 0x1557, "OQO" },
	{ 0x1568, "Sunf Pu Technology Co., Ltd" },
	{ 0x156f, "Quantum Corporation" },
	{ 0x1570, "ALLTOP TECHNOLOGY CO., LTD." },
	{ 0x157b, "Ketron SRL" },
	{ 0x157e, "TRENDnet" },
	{ 0x1582, "Fiberline" },
	{ 0x1587, "SMA Technologie AG" },
	{ 0x158d, "Oakley Inc." },
	{ 0x158e, "JDS Uniphase Corporation (JDSU)" },
	{ 0x1598, "Kunshan Guoji Electronics Co., Ltd." },
	{ 0x15a2, "Freescale Semiconductor, Inc." },
	{ 0x15a4, "Afatech Technologies, Inc." },
	{ 0x15a8, "Teams Power Limited" },
	{ 0x15a9, "Gemtek" },
	{ 0x15aa, "Gearway Electronics (Dong Guan) Co., Ltd." },
	{ 0x15ad, "VMware Inc." },
	{ 0x15ba, "Olimex Ltd." },
	{ 0x15c0, "XL Imaging" },
	{ 0x15c2, "SoundGraph Inc." },
	{ 0x15c5, "Advance Multimedia Internet Technology Inc. (AMIT)" },
	{ 0x15c6, "Laboratoires MXM" },
	{ 0x15c8, "KTF Technologies" },
	{ 0x15c9, "D-Box Technologies" },
	{ 0x15ca, "Textech International Ltd." },
	{ 0x15d5, "Coulomb Electronics Ltd." },
	{ 0x15d9, "Trust International B.V." },
	{ 0x15dc, "Hynix Semiconductor Inc." },
	{ 0x15e0, "Seong Ji Industrial Co., Ltd." },
	{ 0x15e1, "RSA" },
	{ 0x15e4, "Numark" },
	{ 0x15e8, "SohoWare" },
	{ 0x15e9, "Pacific Digital Corp." },
	{ 0x15ec, "Belcarra Technologies Corp." },
	{ 0x15f4, "HanfTek" },
	{ 0x1604, "Tascam" },
	{ 0x1606, "Umax" },
	{ 0x1608, "Inside Out Networks [hex]" },
	{ 0x160a, "VIA Technologies, Inc." },
	{ 0x160e, "INRO" },
	{ 0x1614, "Amoi Electronics" },
	{ 0x1617, "Sony Corp." },
	{ 0x1619, "L & K Precision Technology Co., Ltd." },
	{ 0x1621, "Wionics Research" },
	{ 0x1628, "Stonestreet One, Inc." },
	{ 0x162a, "Airgo Networks Inc." },
	{ 0x162f, "WiQuest Communications, Inc." },
	{ 0x1630, "2Wire, Inc." },
	{ 0x1631, "Good Way Technology" },
	{ 0x1645, "Entrega [hex]" },
	{ 0x1649, "SofTec Microsystems" },
	{ 0x164a, "ChipX" },
	{ 0x164c, "Matrix Vision GmbH" },
	{ 0x1657, "Struck Innovative Systeme GmbH" },
	{ 0x165b, "Frontier Design Group" },
	{ 0x165c, "Kondo Kagaku" },
	{ 0x1660, "Creatix Polymedia GmbH" },
	{ 0x1667, "GIGA-TMS INC." },
	{ 0x1668, "Actiontec Electronics, Inc. [hex]" },
	{ 0x1669, "PiKRON Ltd. [hex]" },
	{ 0x166a, "Clipsal" },
	{ 0x1677, "China Huada Integrated Circuit Design (Group) Co., Ltd. (CIDC Group)" },
	{ 0x1679, "Total Phase" },
	{ 0x1680, "Golden Bridge Electech Inc." },
	{ 0x1681, "Prevo Technologies, Inc." },
	{ 0x1682, "Maxwise Production Enterprise Ltd." },
	{ 0x1684, "Godspeed Computer Corp." },
	{ 0x1685, "Delock" },
	{ 0x1686, "ZOOM Corporation" },
	{ 0x1687, "Kingmax Digital Inc." },
	{ 0x1688, "Saab AB" },
	{ 0x1689, "Razer USA, Ltd" },
	{ 0x168c, "Atheros Communications" },
	{ 0x1690, "Askey Computer Corp. [hex]" },
	{ 0x1696, "Hitachi Video and Information System, Inc." },
	{ 0x1697, "VTec Test, Inc." },
	{ 0x16a5, "Shenzhen Zhengerya Cable Co., Ltd." },
	{ 0x16a6, "Unigraf" },
	{ 0x16ab, "Global Sun Technology" },
	{ 0x16ac, "Dongguan ChingLung Wire & Cable Co., Ltd." },
	{ 0x16b4, "iStation" },
	{ 0x16b5, "Persentec, Inc." },
	{ 0x16c0, "Van Ooijen Technische Informatica" },
	{ 0x16ca, "Wireless Cables, Inc." },
	{ 0x16cc, "silex technology, Inc." },
	{ 0x16d0, "MCS" },
	{ 0x16d1, "Suprema Inc." },
	{ 0x16d3, "Frontline Test Equipment, Inc." },
	{ 0x16d5, "AnyDATA Corporation" },
	{ 0x16d6, "JABLOCOM s.r.o." },
	{ 0x16d8, "CMOTECH Co., Ltd." },
	{ 0x16dc, "Wiener, Plein & Baus" },
	{ 0x16df, "King Billion Electronics Co., Ltd." },
	{ 0x16f0, "GN ReSound A/S" },
	{ 0x16f5, "Futurelogic Inc." },
	{ 0x1706, "BlueView Technologies, Inc." },
	{ 0x1707, "ARTIMI" },
	{ 0x170b, "Swissonic" },
	{ 0x170d, "Avnera" },
	{ 0x1711, "Leica Microsystems" },
	{ 0x1724, "Meyer Instruments (MIS)" },
	{ 0x1725, "Vitesse Semiconductor" },
	{ 0x1726, "Axesstel, Inc." },
	{ 0x172f, "Waltop International Corp." },
	{ 0x1733, "Cellink Technology Co., Ltd" },
	{ 0x1736, "CANON IMAGING SYSTEM TECHNOLOGIES INC." },
	{ 0x1737, "Linksys" },
	{ 0x173d, "QSENN" },
	{ 0x1740, "Senao" },
	{ 0x1743, "General Atomics" },
	{ 0x1748, "MQP Electronics" },
	{ 0x174c, "ASMedia Technology Inc." },
	{ 0x174f, "Syntek" },
	{ 0x1753, "GERTEC Telecomunicacoes Ltda." },
	{ 0x1756, "ENENSYS Technologies" },
	{ 0x1759, "LucidPort Technology, Inc." },
	{ 0x1761, "ASUSTek Computer, Inc. (wrong ID)" },
	{ 0x1772, "System Level Solutions, Inc." },
	{ 0x1776, "Arowana" },
	{ 0x177f, "Sweex" },
	{ 0x1781, "Multiple Vendors" },
	{ 0x1782, "Spreadtrum Communications Inc." },
	{ 0x1784, "TopSeed Technology Corp." },
	{ 0x1787, "ATI AIB" },
	{ 0x1788, "ShenZhen Litkconn Technology Co., Ltd." },
	{ 0x1796, "Printrex, Inc." },
	{ 0x1797, "JALCO CO., LTD." },
	{ 0x1799, "Thales Norway A/S" },
	{ 0x179d, "Ricavision International, Inc." },
	{ 0x17a0, "Samson Technologies Corp." },
	{ 0x17a4, "Concept2" },
	{ 0x17a5, "Advanced Connection Technology Inc." },
	{ 0x17a7, "MICOMSOFT CO., LTD." },
	{ 0x17a8, "Kamstrup A/S" },
	{ 0x17b3, "Grey Innovation" },
	{ 0x17b5, "Lunatone" },
	{ 0x17ba, "SAURIS GmbH" },
	{ 0x17c3, "Singim International Corp." },
	{ 0x17cc, "Native Instruments" },
	{ 0x17cf, "Hip Hing Cable & Plug Mfy. Ltd." },
	{ 0x17d0, "Sanford L.P." },
	{ 0x17d3, "Korea Techtron Co., Ltd." },
	{ 0x17e9, "DisplayLink" },
	{ 0x17eb, "Cornice, Inc." },
	{ 0x17ef, "Lenovo" },
	{ 0x17f4, "WaveSense" },
	{ 0x17f5, "K.K. Rocky" },
	{ 0x17f6, "Unicomp, Inc" },
	{ 0x1809, "Advantech" },
	{ 0x1822, "Twinhan" },
	{ 0x1831, "Gwo Jinn Industries Co., Ltd." },
	{ 0x1832, "Huizhou Shenghua Industrial Co., Ltd." },
	{ 0x183d, "VIVOphone" },
	{ 0x1843, "Vaisala" },
	{ 0x1849, "ASRock Incorporation" },
	{ 0x1852, "GYROCOM C&C Co., LTD" },
	{ 0x1854, "Memory Devices Ltd." },
	{ 0x185b, "Compro" },
	{ 0x1861, "Tech Technology Industrial Company" },
	{ 0x1862, "Teridian Semiconductor Corp." },
	{ 0x1870, "Nexio Co., Ltd" },
	{ 0x1871, "Aveo Technology Corp." },
	{ 0x1873, "Navilock" },
	{ 0x187c, "Alienware Corporation" },
	{ 0x187f, "Siano Mobile Silicon" },
	{ 0x1892, "Vast Technologies, Inc." },
	{ 0x1894, "Topseed" },
	{ 0x1897, "Evertop Wire Cable Co." },
	{ 0x189f, "3Shape A/S" },
	{ 0x18a4, "CSSN" },
	{ 0x18a5, "Verbatim, Ltd" },
	{ 0x18b1, "Petalynx" },
	{ 0x18b4, "e3C Technologies" },
	{ 0x18b6, "Mikkon Technology Limited" },
	{ 0x18b7, "Zotek Electronic Co., Ltd." },
	{ 0x18c5, "AMIT Technology, Inc." },
	{ 0x18cd, "Ecamm" },
	{ 0x18d1, "Google Inc." },
	{ 0x18d5, "Starline International Group Limited" },
	{ 0x18d9, "Kaba" },
	{ 0x18dc, "LKC Technologies, Inc." },
	{ 0x18dd, "Planon System Solutions Inc." },
	{ 0x18e3, "Fitipower Integrated Technology Inc" },
	{ 0x18e8, "Qcom" },
	{ 0x18ea, "Matrox Graphics, Inc." },
	{ 0x18ec, "Arkmicro Technologies Inc." },
	{ 0x18fd, "FineArch Inc." },
	{ 0x1908, "GEMBIRD" },
	{ 0x190d, "Motorola GSG" },
	{ 0x1914, "Alco Digital Devices Limited" },
	{ 0x1915, "Nordic Semiconductor ASA" },
	{ 0x1923, "FitLinxx" },
	{ 0x1926, "NextWindow" },
	{ 0x192f, "Avago Technologies, Pte." },
	{ 0x1930, "Shenzhen Xianhe Technology Co., Ltd." },
	{ 0x1931, "Ningbo Broad Telecommunication Co., Ltd." },
	{ 0x1934, "Feature Integration Technology Inc. (Fintek)" },
	{ 0x1941, "Dream Link" },
	{ 0x1943, "Sensoray Co., Inc." },
	{ 0x1949, "Lab126, Inc." },
	{ 0x194f, "PreSonus Audio Electronics, Inc." },
	{ 0x1951, "Hyperstone AG" },
	{ 0x1953, "Ironkey Inc." },
	{ 0x1954, "Radiient Technologies" },
	{ 0x195d, "Itron Technology iONE" },
	{ 0x1965, "Uniden Corporation" },
	{ 0x1967, "CASIO HITACHI Mobile Communications Co., Ltd." },
	{ 0x196b, "Wispro Technology Inc." },
	{ 0x1970, "Dane-Elec Corp. USA" },
	{ 0x1975, "Dongguan Guneetal Wire & Cable Co., Ltd." },
	{ 0x1976, "Chipsbrand Microelectronics (HK) Co., Ltd." },
	{ 0x1977, "T-Logic" },
	{ 0x197d, "Leuze electronic" },
	{ 0x1989, "Nuconn Technology Corp." },
	{ 0x198f, "Beceem Communications Inc." },
	{ 0x1990, "Acron Precision Industrial Co., Ltd." },
	{ 0x1995, "Trillium Technology Pty. Ltd." },
	{ 0x1996, "PixeLINK" },
	{ 0x199b, "MicroStrain, Inc." },
	{ 0x199e, "The Imaging Source Europe GmbH" },
	{ 0x199f, "Benica Corporation" },
	{ 0x19a8, "Biforst Technology Inc." },
	{ 0x19ab, "Bodelin" },
	{ 0x19af, "S Life" },
	{ 0x19b2, "Batronix" },
	{ 0x19b4, "Celestron" },
	{ 0x19b5, "B & W Group" },
	{ 0x19b6, "Infotech Logistic, LLC" },
	{ 0x19b9, "Data Robotics" },
	{ 0x19c2, "Futuba" },
	{ 0x19ca, "Mindtribe" },
	{ 0x19cf, "Parrot SA" },
	{ 0x19d2, "ZTE WCDMA Technologies MSM" },
	{ 0x19db, "KFI Printers" },
	{ 0x19e1, "WeiDuan Electronic Accessory (S.Z.) Co., Ltd." },
	{ 0x19e8, "Industrial Technology Research Institute" },
	{ 0x19ef, "Pak Heng Technology (Shenzhen) Co., Ltd." },
	{ 0x19f7, "RODE Microphones" },
	{ 0x19fa, "Gampaq Co.Ltd" },
	{ 0x19ff, "Dynex" },
	{ 0x1a08, "Bellwood International, Inc." },
	{ 0x1a0a, "USB-IF non-workshop" },
	{ 0x1a12, "KES Co., Ltd." },
	{ 0x1a1d, "Veho" },
	{ 0x1a25, "Amphenol East Asia Ltd." },
	{ 0x1a2a, "Seagate Branded Solutions" },
	{ 0x1a2c, "China Resource Semico Co., Ltd" },
	{ 0x1a32, "Quanta Microsystems, Inc." },
	{ 0x1a34, "ACRUX" },
	{ 0x1a36, "Biwin Technology Ltd." },
	{ 0x1a40, "Terminus Technology Inc." },
	{ 0x1a41, "Action Electronics Co., Ltd." },
	{ 0x1a44, "VASCO Data Security International" },
	{ 0x1a4a, "Silicon Image" },
	{ 0x1a4b, "SafeBoot International B.V." },
	{ 0x1a5a, "Tandberg Data" },
	{ 0x1a61, "Abbott Diabetes Care" },
	{ 0x1a6a, "Spansion Inc." },
	{ 0x1a6d, "SamYoung Electronics Co., Ltd" },
	{ 0x1a6e, "Global Unichip Corp." },
	{ 0x1a6f, "Sagem Orga GmbH" },
	{ 0x1a72, "Physik Instrumente" },
	{ 0x1a79, "Bayer Health Care LLC" },
	{ 0x1a7b, "Lumberg Connect  GmbH & Co. KG" },
	{ 0x1a7c, "Evoluent" },
	{ 0x1a81, "Holtek Semiconductor, Inc." },
	{ 0x1a86, "QinHeng Electronics" },
	{ 0x1a89, "Dynalith Systems Co., Ltd." },
	{ 0x1a8b, "SGS Taiwan Ltd." },
	{ 0x1a8d, "BandRich, Inc." },
	{ 0x1a98, "Leica Camera AG" },
	{ 0x1aa4, "Data Drive Thru, Inc." },
	{ 0x1aa5, "UBeacon Technologies, Inc." },
	{ 0x1aa6, "eFortune Technology Corp." },
	{ 0x1aad, "KeeTouch" },
	{ 0x1ab1, "Rigol Technologies" },
	{ 0x1acb, "Salcomp Plc" },
	{ 0x1acc, "Midiplus Co, Ltd." },
	{ 0x1ad1, "Desay Wire Co., Ltd." },
	{ 0x1ad4, "APS" },
	{ 0x1adb, "SEL C662 Serial Cable" },
	{ 0x1ae4, "ic-design Reinhard Gottinger GmbH" },
	{ 0x1ae7, "X-TENSIONS" },
	{ 0x1aed, "High Top Precision Electronic Co., Ltd." },
	{ 0x1aef, "Conntech Electronic (Suzhou) Corporation" },
	{ 0x1af1, "Connect One Ltd." },
	{ 0x1afe, "A. Eberle GmbH & Co. KG" },
	{ 0x1b04, "Meilhaus Electronic GmbH" },
	{ 0x1b0e, "BLUTRONICS S.r.l." },
	{ 0x1b1c, "Corsair" },
	{ 0x1b20, "MStar Semiconductor, Inc." },
	{ 0x1b22, "WiLinx Corp." },
	{ 0x1b26, "Cellex Power Products, Inc." },
	{ 0x1b27, "Current Electronics Inc." },
	{ 0x1b28, "NAVIsis Inc." },
	{ 0x1b32, "Ugobe Life Forms, Inc." },
	{ 0x1b36, "ViXS Systems, Inc." },
	{ 0x1b3b, "iPassion Technology Inc." },
	{ 0x1b3f, "Generalplus Technology Inc." },
	{ 0x1b47, "Energizer Holdings, Inc." },
	{ 0x1b48, "Plastron Precision Co., Ltd." },
	{ 0x1b52, "ARH Inc." },
	{ 0x1b59, "K.S. Terminals Inc." },
	{ 0x1b5a, "Chao Zhou Kai Yuan Electric Co., Ltd." },
	{ 0x1b65, "The Hong Kong Standards and Testing Centre Ltd." },
	{ 0x1b71, "Fushicai" },
	{ 0x1b72, "ATERGI TECHNOLOGY CO., LTD." },
	{ 0x1b73, "Fresco Logic" },
	{ 0x1b75, "Ovislink Corp." },
	{ 0x1b76, "Legend Silicon Corp." },
	{ 0x1b80, "Afatech" },
	{ 0x1b86, "Dongguan Guanshang Electronics Co., Ltd." },
	{ 0x1b88, "ShenMing Electron (Dong Guan) Co., Ltd." },
	{ 0x1b8c, "Altium Limited" },
	{ 0x1b8d, "e-MOVE Technology Co., Ltd." },
	{ 0x1b8e, "Amlogic, Inc." },
	{ 0x1b8f, "MA LABS, Inc." },
	{ 0x1b96, "N-Trig" },
	{ 0x1b98, "YMax Communications Corp." },
	{ 0x1b99, "Shenzhen Yuanchuan Electronic" },
	{ 0x1ba1, "JINQ CHERN ENTERPRISE CO., LTD." },
	{ 0x1ba2, "Lite Metals & Plastic (Shenzhen) Co., Ltd." },
	{ 0x1ba4, "Ember Corporation" },
	{ 0x1ba6, "Abilis Systems" },
	{ 0x1ba8, "China Telecommunication Technology Labs" },
	{ 0x1bad, "Harmonix Music" },
	{ 0x1bae, "Vuzix Corporation" },
	{ 0x1bbb, "T & A Mobile Phones" },
	{ 0x1bc4, "Ford Motor Co." },
	{ 0x1bc5, "AVIXE Technology (China) Ltd." },
	{ 0x1bc7, "Telit Wireless Solutions" },
	{ 0x1bce, "Contac Cable Industrial Limited" },
	{ 0x1bcf, "Sunplus Innovation Technology Inc." },
	{ 0x1bd0, "Hangzhou Riyue Electronic Co., Ltd." },
	{ 0x1bd5, "BG Systems, Inc." },
	{ 0x1bde, "P-TWO INDUSTRIES, INC." },
	{ 0x1bef, "Shenzhen Tongyuan Network-Communication Cables Co., Ltd" },
	{ 0x1bf0, "RealVision Inc." },
	{ 0x1bf5, "Extranet Systems Inc." },
	{ 0x1bf6, "Orient Semiconductor Electronics, Ltd." },
	{ 0x1bfd, "TouchPack" },
	{ 0x1c02, "Kreton Corporation" },
	{ 0x1c04, "QNAP System Inc." },
	{ 0x1c0c, "Ionics EMS, Inc." },
	{ 0x1c0d, "Relm Wireless" },
	{ 0x1c10, "Lanterra Industrial Co., Ltd." },
	{ 0x1c13, "ALECTRONIC LIMITED" },
	{ 0x1c1a, "Datel Electronics Ltd." },
	{ 0x1c1b, "Volkswagen of America, Inc." },
	{ 0x1c1f, "Goldvish S.A." },
	{ 0x1c20, "Fuji Electric Device Technology Co., Ltd." },
	{ 0x1c21, "ADDMM LLC" },
	{ 0x1c22, "ZHONGSHAN CHIANG YU ELECTRIC CO., LTD." },
	{ 0x1c26, "Shanghai Haiying Electronics Co., Ltd." },
	{ 0x1c27, "HuiYang D & S Cable Co., Ltd." },
	{ 0x1c29, "Elster GmbH" },
	{ 0x1c31, "LS Cable Ltd." },
	{ 0x1c34, "SpringCard" },
	{ 0x1c37, "Authorizer Technologies, Inc." },
	{ 0x1c3d, "NONIN MEDICAL INC." },
	{ 0x1c3e, "Wep Peripherals" },
	{ 0x1c40, "EZPrototypes" },
	{ 0x1c49, "Cherng Weei Technology Corp." },
	{ 0x1c4f, "SiGma Micro" },
	{ 0x1c6b, "Philips & Lite-ON Digital Solutions Corporation" },
	{ 0x1c6c, "Skydigital Inc." },
	{ 0x1c73, "AMT" },
	{ 0x1c77, "Kaetat Industrial Co., Ltd." },
	{ 0x1c78, "Datascope Corp." },
	{ 0x1c79, "Unigen Corporation" },
	{ 0x1c7a, "LighTuning Technology Inc." },
	{ 0x1c7b, "LUXSHARE PRECISION INDUSTRY (SHENZHEN) CO., LTD." },
	{ 0x1c83, "Schomaecker GmbH" },
	{ 0x1c87, "2N TELEKOMUNIKACE a.s." },
	{ 0x1c88, "Somagic, Inc." },
	{ 0x1c89, "HONGKONG WEIDIDA ELECTRON LIMITED" },
	{ 0x1c8e, "ASTRON INTERNATIONAL CORP." },
	{ 0x1c98, "ALPINE ELECTRONICS, INC." },
	{ 0x1c9e, "OMEGA TECHNOLOGY" },
	{ 0x1ca0, "ACCARIO Inc." },
	{ 0x1ca1, "Symwave" },
	{ 0x1cac, "Kinstone" },
	{ 0x1cb3, "Aces Electronic Co., Ltd." },
	{ 0x1cb4, "OPEX CORPORATION" },
	{ 0x1cb6, "IdeaCom Technology Inc." },
	{ 0x1cbe, "Luminary Micro Inc." },
	{ 0x1cbf, "FORTAT SKYMARK INDUSTRIAL COMPANY" },
	{ 0x1cc0, "PlantSense" },
	{ 0x1cca, "NextWave Broadband Inc." },
	{ 0x1ccd, "Bodatong Technology (Shenzhen) Co., Ltd." },
	{ 0x1cd4, "adp corporation" },
	{ 0x1cd5, "Firecomms Ltd." },
	{ 0x1cd6, "Antonio Precise Products Manufactory Ltd." },
	{ 0x1cde, "Telecommunications Technology Association (TTA)" },
	{ 0x1cdf, "WonTen Technology Co., Ltd." },
	{ 0x1ce0, "EDIMAX TECHNOLOGY CO., LTD." },
	{ 0x1ce1, "Amphenol KAE" },
	{ 0x1cf1, "Dresden Elektronik" },
	{ 0x1cfc, "ANDES TECHNOLOGY CORPORATION" },
	{ 0x1cfd, "Flextronics Digital Design Japan, LTD." },
	{ 0x1d03, "iCON" },
	{ 0x1d07, "Solid-Motion" },
	{ 0x1d08, "NINGBO HENTEK DRAGON ELECTRONICS CO., LTD." },
	{ 0x1d09, "TechFaith Wireless Technology Limited" },
	{ 0x1d0a, "Johnson Controls, Inc. The Automotive Business Unit" },
	{ 0x1d0b, "HAN HUA CABLE & WIRE TECHNOLOGY (J.X.) CO., LTD." },
	{ 0x1d0f, "Sonix Technology Co., Ltd." },
	{ 0x1d14, "ALPHA-SAT TECHNOLOGY LIMITED" },
	{ 0x1d17, "C-Thru Music Ltd." },
	{ 0x1d19, "Dexatek Technology Ltd." },
	{ 0x1d1f, "Diostech Co., Ltd." },
	{ 0x1d20, "SAMTACK INC." },
	{ 0x1d27, "ASUS" },
	{ 0x1d34, "Dream Cheeky" },
	{ 0x1d45, "Touch" },
	{ 0x1d4d, "PEGATRON CORPORATION" },
	{ 0x1d50, "OpenMoko, Inc." },
	{ 0x1d57, "Xenta" },
	{ 0x1d5b, "Smartronix, Inc." },
	{ 0x1d6b, "Linux Foundation" },
	{ 0x1d90, "Citizen" },
	{ 0x1de1, "Actions Microelectronics Co." },
	{ 0x1e0e, "Qualcomm / Option" },
	{ 0x1e10, "Point Grey Research, Inc." },
	{ 0x1e17, "Mirion Technologies Dosimetry Services Division" },
	{ 0x1e1d, "Lumension Security" },
	{ 0x1e1f, "INVIA" },
	{ 0x1e29, "Festo AG & Co. KG" },
	{ 0x1e3d, "Chipsbank Microelectronics Co., Ltd" },
	{ 0x1e41, "Cleverscope" },
	{ 0x1e4e, "Cubeternet" },
	{ 0x1e54, "TypeMatrix" },
	{ 0x1e68, "TrekStor GmbH & Co. KG" },
	{ 0x1e71, "NZXT" },
	{ 0x1e74, "Coby Electronics Corporation" },
	{ 0x1e7d, "ROCCAT" },
	{ 0x1ebb, "NuCORE Technology, Inc." },
	{ 0x1eda, "AirTies Wireless Networks" },
	{ 0x1edb, "Blackmagic design" },
	{ 0x1ee8, "ONDA COMMUNICATION S.p.a." },
	{ 0x1ef6, "EADS Deutschland GmbH" },
	{ 0x1f28, "Cal-Comp" },
	{ 0x1f3a, "Onda (unverified)" },
	{ 0x1f44, "The Neat Company" },
	{ 0x1f48, "H-TRONIC GmbH" },
	{ 0x1f4d, "G-Tek Electronics Group" },
	{ 0x1f6f, "Aliph" },
	{ 0x1f75, "Innostor Technology Corporation" },
	{ 0x1f82, "TANDBERG" },
	{ 0x1f84, "Alere, Inc." },
	{ 0x1f87, "Stantum" },
	{ 0x1f9b, "Ubiquiti Networks, Inc." },
	{ 0x1fab, "Samsung Opto-Electroncs Co., Ltd." },
	{ 0x1fbd, "Delphin Technology AG" },
	{ 0x1fc9, "NXP Semiconductors" },
	{ 0x1fde, "ILX Lightwave Corporation" },
	{ 0x1fe7, "Vertex Wireless Co., Ltd." },
	{ 0x1ff7, "CVT Electronics.Co.,Ltd" },
	{ 0x1fff, "Ideofy Inc." },
	{ 0x2001, "D-Link Corp." },
	{ 0x2002, "DAP Technologies" },
	{ 0x2003, "detectomat" },
	{ 0x200c, "Reloop" },
	{ 0x2013, "PCTV Systems" },
	{ 0x2019, "PLANEX" },
	{ 0x203d, "Encore Electronics Inc." },
	{ 0x2040, "Hauppauge" },
	{ 0x2047, "Texas Instruments" },
	{ 0x2058, "Nano River Technology" },
	{ 0x2077, "Taicang T&W Electronics Co. Ltd" },
	{ 0x2080, "Barnes & Noble" },
	{ 0x2086, "SIMPASS" },
	{ 0x2087, "Cando" },
	{ 0x20a0, "Clay Logic" },
	{ 0x20b1, "XMOS Ltd" },
	{ 0x20b3, "Hanvon" },
	{ 0x20b7, "Qi Hardware" },
	{ 0x20ce, "Minicircuits" },
	{ 0x20df, "Simtec Electronics" },
	{ 0x20f1, "NET New Electronic Technology GmbH" },
	{ 0x20f4, "TRENDnet" },
	{ 0x20f7, "XIMEA" },
	{ 0x2100, "RT Systems" },
	{ 0x2101, "ActionStar" },
	{ 0x2109, "VIA Labs, Inc." },
	{ 0x2113, "Softkinetic" },
	{ 0x2149, "Advanced Silicon S.A." },
	{ 0x2162, "Creative (?)" },
	{ 0x2184, "GW Instek" },
	{ 0x21a1, "Emotiv Systems Pty. Ltd." },
	{ 0x21d6, "Agecodagis SARL" },
	{ 0x2222, "MacAlly" },
	{ 0x2227, "SAMWOO Enterprise" },
	{ 0x2232, "Silicon Motion" },
	{ 0x2233, "RadioShack Corporation" },
	{ 0x2237, "Kobo Inc." },
	{ 0x225d, "Morpho" },
	{ 0x228d, "8D Technologies inc." },
	{ 0x22a6, "Pie Digital, Inc." },
	{ 0x22b8, "Motorola PCS" },
	{ 0x22b9, "eTurboTouch Technology, Inc." },
	{ 0x22ba, "Technology Innovation Holdings, Ltd" },
	{ 0x2304, "Pinnacle Systems, Inc." },
	{ 0x2318, "Shining Technologies, Inc. [hex]" },
	{ 0x2341, "Arduino SA" },
	{ 0x2373, "Pumatronix Ltda" },
	{ 0x2375, "Digit@lway, Inc." },
	{ 0x2406, "SANHO Digital Electronics Co., Ltd." },
	{ 0x2443, "Aessent Technology Ltd" },
	{ 0x2478, "Tripp-Lite" },
	{ 0x248a, "Maxxter" },
	{ 0x249c, "M2Tech s.r.l." },
	{ 0x24e1, "Paratronic" },
	{ 0x2632, "TwinMOS" },
	{ 0x2639, "Xsens" },
	{ 0x2650, "Electronics For Imaging, Inc. [hex]" },
	{ 0x2659, "Sundtek" },
	{ 0x2676, "Basler AG" },
	{ 0x2730, "Citizen" },
	{ 0x2735, "DigitalWay" },
	{ 0x2770, "NHJ, Ltd" },
	{ 0x27b8, "ThingM" },
	{ 0x2821, "ASUSTek Computer Inc." },
	{ 0x2899, "Toptronic Industrial Co., Ltd" },
	{ 0x289b, "Dracal/Raphnet technologies" },
	{ 0x2931, "Jolla Oy" },
	{ 0x2a03, "dog hunter AG" },
	{ 0x2a37, "RTD Embedded Technologies, Inc." },
	{ 0x2a45, "Meizu Corp." },
	{ 0x2c02, "Planex Communications" },
	{ 0x2c1a, "Dolphin Peripherals" },
	{ 0x2fb2, "Fujitsu, Ltd" },
	{ 0x3125, "Eagletron" },
	{ 0x3136, "Navini Networks" },
	{ 0x3176, "Whanam Electronics Co., Ltd" },
	{ 0x3195, "Link Instruments" },
	{ 0x3275, "VidzMedia Pte Ltd" },
	{ 0x3333, "InLine" },
	{ 0x3334, "AEI" },
	{ 0x3340, "Yakumo" },
	{ 0x3344, "Leaguer Microelectronics (LME)" },
	{ 0x3504, "Micro Star" },
	{ 0x3538, "Power Quotient International Co., Ltd" },
	{ 0x3579, "DIVA" },
	{ 0x357d, "Sharkoon" },
	{ 0x3636, "InVibro" },
	{ 0x3838, "WEM" },
	{ 0x3923, "National Instruments Corp." },
	{ 0x40bb, "I-O Data" },
	{ 0x4101, "i-rocks" },
	{ 0x4102, "iRiver, Ltd." },
	{ 0x413c, "Dell Computer Corp." },
	{ 0x4146, "USBest Technology" },
	{ 0x4168, "Targus" },
	{ 0x4242, "USB Design by Example" },
	{ 0x4255, "GoPro" },
	{ 0x4317, "Broadcom Corp." },
	{ 0x4348, "WinChipHead" },
	{ 0x4572, "Shuttle, Inc." },
	{ 0x4586, "Panram" },
	{ 0x4670, "EMS Production" },
	{ 0x4752, "Miditech" },
	{ 0x4757, "GW Instek" },
	{ 0x4766, "Aceeca" },
	{ 0x4855, "Memorex" },
	{ 0x4971, "SimpleTech" },
	{ 0x4d46, "Musical Fidelity" },
	{ 0x5032, "Grandtec" },
	{ 0x5041, "Linksys (?)" },
	{ 0x50c2, "Averatec (?)" },
	{ 0x5173, "Sweex" },
	{ 0x5219, "I-Tetra" },
	{ 0x5345, "Owon" },
	{ 0x534c, "SatoshiLabs" },
	{ 0x5354, "Meyer Instruments (MIS)" },
	{ 0x544d, "Transmeta Corp." },
	{ 0x5543, "UC-Logic Technology Corp." },
	{ 0x5555, "Epiphan Systems Inc." },
	{ 0x55aa, "OnSpec Electronic, Inc." },
	{ 0x5654, "Gotview" },
	{ 0x5656, "Uni-Trend Group Limited" },
	{ 0x595a, "IRTOUCHSYSTEMS Co. Ltd." },
	{ 0x5986, "Acer, Inc" },
	{ 0x59e3, "Nonolith Labs" },
	{ 0x5a57, "Zinwell" },
	{ 0x6000, "Beholder International Ltd." },
	{ 0x601a, "Ingenic Semiconductor Ltd." },
	{ 0x6189, "Sitecom" },
	{ 0x6244, "LightingSoft AG" },
	{ 0x6253, "TwinHan Technology Co., Ltd" },
	{ 0x636c, "CoreLogic, Inc." },
	{ 0x6472, "Unknown (Sony?)" },
	{ 0x6547, "Arkmicro Technologies Inc." },
	{ 0x6615, "IRTOUCHSYSTEMS Co. Ltd." },
	{ 0x6666, "Prototype product Vendor ID" },
	{ 0x6677, "WiseGroup, Ltd." },
	{ 0x6891, "3Com" },
	{ 0x695c, "Opera1" },
	{ 0x6993, "Yealink Network Technology Co., Ltd." },
	{ 0x6a75, "Shanghai Jujo Electronics Co., Ltd" },
	{ 0x7104, "CME (Central Music Co.)" },
	{ 0x726c, "StackFoundry LLC" },
	{ 0x734c, "TBS Technologies China" },
	{ 0x7373, "Beijing STONE Technology Co. Ltd." },
	{ 0x7392, "Edimax Technology Co., Ltd" },
	{ 0x8086, "Intel Corp." },
	{ 0x8087, "Intel Corp." },
	{ 0x80ee, "VirtualBox" },
	{ 0x8282, "Keio" },
	{ 0x8341, "EGO Systems, Inc." },
	{ 0x8564, "Transcend Information, Inc." },
	{ 0x8644, "Intenso GmbG" },
	{ 0x8e06, "CH Products, Inc." },
	{ 0x9016, "Sitecom" },
	{ 0x9022, "TeVii Technology Ltd." },
	{ 0x9148, "GeoLab, Ltd" },
	{ 0x9710, "MosChip Semiconductor" },
	{ 0x9849, "Bestmedia CD Recordable GmbH & Co. KG" },
	{ 0x9999, "Odeon" },
	{ 0x99fa, "Grandtec" },
	{ 0x9ac4, "J. Westhues" },
	{ 0x9e88, "Marvell Semiconductor, Inc." },
	{ 0xa128, "AnMo Electronics Corp. / Dino-Lite (?)" },
	{ 0xa168, "AnMo Electronics Corporation" },
	{ 0xa600, "Asix" },
	{ 0xa727, "3Com" },
	{ 0xaaaa, "MXT" },
	{ 0xabcd, "Unknown" },
	{ 0xb58e, "Blue Microphones" },
	{ 0xc216, "Card Device Expert Co., LTD" },
	{ 0xc251, "Keil Software, Inc." },
	{ 0xcace, "CACE Technologies Inc." },
	{ 0xcd12, "SMART TECHNOLOGY INDUSTRIAL LTD." },
	{ 0xd208, "Ultimarc" },
	{ 0xd209, "Ultimarc" },
	{ 0xd904, "LogiLink" },
	{ 0xe4e4, "Xorcom Ltd." },
	{ 0xeb03, "MakingThings" },
	{ 0xeb1a, "eMPIA Technology, Inc." },
	{ 0xeb2a, "KWorld" },
	{ 0xef18, "SMART TECHNOLOGY INDUSTRIAL LTD." },
	{ 0xf003, "Hewlett Packard" },
	{ 0xf182, "Leap Motion" },
	{ 0xf4ec, "Atten Electronics / Siglent Technologies" },
	{ 0xf4ed, "Shenzhen Siglent Co., Ltd." },
	{ 0xf766, "Hama" },
	{ 0xfc08, "Conrad Electronic SE" },
	{ 0xffee, "FNK Tech" },
};

const char* LIBWDI_API wdi_get_vendor_name(unsigned short vid)
{
	int i;

	for(i=0; i<sizeof(usb_vendor)/sizeof(usb_vendor[0]); i++) {
		if (usb_vendor[i].vid == vid) {
			return usb_vendor[i].name;
		}
	}
	return NULL;
}