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
|
/*
*
* BlueZ - Bluetooth protocol stack for Linux
*
* Copyright (C) 2000-2001 Qualcomm Incorporated
* Copyright (C) 2002-2003 Maxim Krasnyansky <maxk@qualcomm.com>
* Copyright (C) 2002-2010 Marcel Holtmann <marcel@holtmann.org>
*
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <stdio.h>
#include <errno.h>
#include <ctype.h>
#include <stdarg.h>
#include <stdlib.h>
#include <string.h>
#include <sys/socket.h>
#include "bluetooth.h"
#include "hci.h"
void baswap(bdaddr_t *dst, const bdaddr_t *src)
{
register unsigned char *d = (unsigned char *) dst;
register const unsigned char *s = (const unsigned char *) src;
register int i;
for (i = 0; i < 6; i++)
d[i] = s[5-i];
}
char *batostr(const bdaddr_t *ba)
{
char *str = bt_malloc(18);
if (!str)
return NULL;
sprintf(str, "%2.2X:%2.2X:%2.2X:%2.2X:%2.2X:%2.2X",
ba->b[0], ba->b[1], ba->b[2],
ba->b[3], ba->b[4], ba->b[5]);
return str;
}
bdaddr_t *strtoba(const char *str)
{
bdaddr_t b;
bdaddr_t *ba = bt_malloc(sizeof(*ba));
if (ba) {
str2ba(str, &b);
baswap(ba, &b);
}
return ba;
}
int ba2str(const bdaddr_t *ba, char *str)
{
return sprintf(str, "%2.2X:%2.2X:%2.2X:%2.2X:%2.2X:%2.2X",
ba->b[5], ba->b[4], ba->b[3], ba->b[2], ba->b[1], ba->b[0]);
}
int str2ba(const char *str, bdaddr_t *ba)
{
int i;
if (bachk(str) < 0) {
memset(ba, 0, sizeof(*ba));
return -1;
}
for (i = 5; i >= 0; i--, str += 3)
ba->b[i] = strtol(str, NULL, 16);
return 0;
}
int ba2oui(const bdaddr_t *ba, char *str)
{
return sprintf(str, "%2.2X-%2.2X-%2.2X", ba->b[5], ba->b[4], ba->b[3]);
}
int bachk(const char *str)
{
if (!str)
return -1;
if (strlen(str) != 17)
return -1;
while (*str) {
if (!isxdigit(*str++))
return -1;
if (!isxdigit(*str++))
return -1;
if (*str == 0)
break;
if (*str++ != ':')
return -1;
}
return 0;
}
int baprintf(const char *format, ...)
{
va_list ap;
int len;
va_start(ap, format);
len = vprintf(format, ap);
va_end(ap);
return len;
}
int bafprintf(FILE *stream, const char *format, ...)
{
va_list ap;
int len;
va_start(ap, format);
len = vfprintf(stream, format, ap);
va_end(ap);
return len;
}
int basprintf(char *str, const char *format, ...)
{
va_list ap;
int len;
va_start(ap, format);
len = vsnprintf(str, (~0U) >> 1, format, ap);
va_end(ap);
return len;
}
int basnprintf(char *str, size_t size, const char *format, ...)
{
va_list ap;
int len;
va_start(ap, format);
len = vsnprintf(str, size, format, ap);
va_end(ap);
return len;
}
void *bt_malloc(size_t size)
{
return malloc(size);
}
void bt_free(void *ptr)
{
free(ptr);
}
/* Bluetooth error codes to Unix errno mapping */
int bt_error(uint16_t code)
{
switch (code) {
case 0:
return 0;
case HCI_UNKNOWN_COMMAND:
return EBADRQC;
case HCI_NO_CONNECTION:
return ENOTCONN;
case HCI_HARDWARE_FAILURE:
return EIO;
case HCI_PAGE_TIMEOUT:
return EHOSTDOWN;
case HCI_AUTHENTICATION_FAILURE:
return EACCES;
case HCI_PIN_OR_KEY_MISSING:
return EINVAL;
case HCI_MEMORY_FULL:
return ENOMEM;
case HCI_CONNECTION_TIMEOUT:
return ETIMEDOUT;
case HCI_MAX_NUMBER_OF_CONNECTIONS:
case HCI_MAX_NUMBER_OF_SCO_CONNECTIONS:
return EMLINK;
case HCI_ACL_CONNECTION_EXISTS:
return EALREADY;
case HCI_COMMAND_DISALLOWED:
case HCI_TRANSACTION_COLLISION:
case HCI_ROLE_SWITCH_PENDING:
return EBUSY;
case HCI_REJECTED_LIMITED_RESOURCES:
case HCI_REJECTED_PERSONAL:
case HCI_QOS_REJECTED:
return ECONNREFUSED;
case HCI_HOST_TIMEOUT:
return ETIMEDOUT;
case HCI_UNSUPPORTED_FEATURE:
case HCI_QOS_NOT_SUPPORTED:
case HCI_PAIRING_NOT_SUPPORTED:
case HCI_CLASSIFICATION_NOT_SUPPORTED:
case HCI_UNSUPPORTED_LMP_PARAMETER_VALUE:
case HCI_PARAMETER_OUT_OF_RANGE:
case HCI_QOS_UNACCEPTABLE_PARAMETER:
return EOPNOTSUPP;
case HCI_INVALID_PARAMETERS:
case HCI_SLOT_VIOLATION:
return EINVAL;
case HCI_OE_USER_ENDED_CONNECTION:
case HCI_OE_LOW_RESOURCES:
case HCI_OE_POWER_OFF:
return ECONNRESET;
case HCI_CONNECTION_TERMINATED:
return ECONNABORTED;
case HCI_REPEATED_ATTEMPTS:
return ELOOP;
case HCI_REJECTED_SECURITY:
case HCI_PAIRING_NOT_ALLOWED:
case HCI_INSUFFICIENT_SECURITY:
return EACCES;
case HCI_UNSUPPORTED_REMOTE_FEATURE:
return EPROTONOSUPPORT;
case HCI_SCO_OFFSET_REJECTED:
return ECONNREFUSED;
case HCI_UNKNOWN_LMP_PDU:
case HCI_INVALID_LMP_PARAMETERS:
case HCI_LMP_ERROR_TRANSACTION_COLLISION:
case HCI_LMP_PDU_NOT_ALLOWED:
case HCI_ENCRYPTION_MODE_NOT_ACCEPTED:
return EPROTO;
default:
return ENOSYS;
}
}
const char *bt_compidtostr(int compid)
{
switch (compid) {
case 0:
return "Ericsson Technology Licensing";
case 1:
return "Nokia Mobile Phones";
case 2:
return "Intel Corp.";
case 3:
return "IBM Corp.";
case 4:
return "Toshiba Corp.";
case 5:
return "3Com";
case 6:
return "Microsoft";
case 7:
return "Lucent";
case 8:
return "Motorola";
case 9:
return "Infineon Technologies AG";
case 10:
return "Cambridge Silicon Radio";
case 11:
return "Silicon Wave";
case 12:
return "Digianswer A/S";
case 13:
return "Texas Instruments Inc.";
case 14:
return "Ceva, Inc. (formerly Parthus Technologies, Inc.)";
case 15:
return "Broadcom Corporation";
case 16:
return "Mitel Semiconductor";
case 17:
return "Widcomm, Inc";
case 18:
return "Zeevo, Inc.";
case 19:
return "Atmel Corporation";
case 20:
return "Mitsubishi Electric Corporation";
case 21:
return "RTX Telecom A/S";
case 22:
return "KC Technology Inc.";
case 23:
return "NewLogic";
case 24:
return "Transilica, Inc.";
case 25:
return "Rohde & Schwarz GmbH & Co. KG";
case 26:
return "TTPCom Limited";
case 27:
return "Signia Technologies, Inc.";
case 28:
return "Conexant Systems Inc.";
case 29:
return "Qualcomm";
case 30:
return "Inventel";
case 31:
return "AVM Berlin";
case 32:
return "BandSpeed, Inc.";
case 33:
return "Mansella Ltd";
case 34:
return "NEC Corporation";
case 35:
return "WavePlus Technology Co., Ltd.";
case 36:
return "Alcatel";
case 37:
return "NXP Semiconductors (formerly Philips Semiconductors)";
case 38:
return "C Technologies";
case 39:
return "Open Interface";
case 40:
return "R F Micro Devices";
case 41:
return "Hitachi Ltd";
case 42:
return "Symbol Technologies, Inc.";
case 43:
return "Tenovis";
case 44:
return "Macronix International Co. Ltd.";
case 45:
return "GCT Semiconductor";
case 46:
return "Norwood Systems";
case 47:
return "MewTel Technology Inc.";
case 48:
return "ST Microelectronics";
case 49:
return "Synopsys, Inc.";
case 50:
return "Red-M (Communications) Ltd";
case 51:
return "Commil Ltd";
case 52:
return "Computer Access Technology Corporation (CATC)";
case 53:
return "Eclipse (HQ Espana) S.L.";
case 54:
return "Renesas Electronics Corporation";
case 55:
return "Mobilian Corporation";
case 56:
return "Terax";
case 57:
return "Integrated System Solution Corp.";
case 58:
return "Matsushita Electric Industrial Co., Ltd.";
case 59:
return "Gennum Corporation";
case 60:
return "BlackBerry Limited (formerly Research In Motion)";
case 61:
return "IPextreme, Inc.";
case 62:
return "Systems and Chips, Inc.";
case 63:
return "Bluetooth SIG, Inc.";
case 64:
return "Seiko Epson Corporation";
case 65:
return "Integrated Silicon Solution Taiwan, Inc.";
case 66:
return "CONWISE Technology Corporation Ltd";
case 67:
return "PARROT SA";
case 68:
return "Socket Mobile";
case 69:
return "Atheros Communications, Inc.";
case 70:
return "MediaTek, Inc.";
case 71:
return "Bluegiga";
case 72:
return "Marvell Technology Group Ltd.";
case 73:
return "3DSP Corporation";
case 74:
return "Accel Semiconductor Ltd.";
case 75:
return "Continental Automotive Systems";
case 76:
return "Apple, Inc.";
case 77:
return "Staccato Communications, Inc.";
case 78:
return "Avago Technologies";
case 79:
return "APT Licensing Ltd.";
case 80:
return "SiRF Technology";
case 81:
return "Tzero Technologies, Inc.";
case 82:
return "J&M Corporation";
case 83:
return "Free2move AB";
case 84:
return "3DiJoy Corporation";
case 85:
return "Plantronics, Inc.";
case 86:
return "Sony Ericsson Mobile Communications";
case 87:
return "Harman International Industries, Inc.";
case 88:
return "Vizio, Inc.";
case 89:
return "Nordic Semiconductor ASA";
case 90:
return "EM Microelectronic-Marin SA";
case 91:
return "Ralink Technology Corporation";
case 92:
return "Belkin International, Inc.";
case 93:
return "Realtek Semiconductor Corporation";
case 94:
return "Stonestreet One, LLC";
case 95:
return "Wicentric, Inc.";
case 96:
return "RivieraWaves S.A.S";
case 97:
return "RDA Microelectronics";
case 98:
return "Gibson Guitars";
case 99:
return "MiCommand Inc.";
case 100:
return "Band XI International, LLC";
case 101:
return "Hewlett-Packard Company";
case 102:
return "9Solutions Oy";
case 103:
return "GN Netcom A/S";
case 104:
return "General Motors";
case 105:
return "A&D Engineering, Inc.";
case 106:
return "MindTree Ltd.";
case 107:
return "Polar Electro OY";
case 108:
return "Beautiful Enterprise Co., Ltd.";
case 109:
return "BriarTek, Inc.";
case 110:
return "Summit Data Communications, Inc.";
case 111:
return "Sound ID";
case 112:
return "Monster, LLC";
case 113:
return "connectBlue AB";
case 114:
return "ShangHai Super Smart Electronics Co. Ltd.";
case 115:
return "Group Sense Ltd.";
case 116:
return "Zomm, LLC";
case 117:
return "Samsung Electronics Co. Ltd.";
case 118:
return "Creative Technology Ltd.";
case 119:
return "Laird Technologies";
case 120:
return "Nike, Inc.";
case 121:
return "lesswire AG";
case 122:
return "MStar Semiconductor, Inc.";
case 123:
return "Hanlynn Technologies";
case 124:
return "A & R Cambridge";
case 125:
return "Seers Technology Co. Ltd";
case 126:
return "Sports Tracking Technologies Ltd.";
case 127:
return "Autonet Mobile";
case 128:
return "DeLorme Publishing Company, Inc.";
case 129:
return "WuXi Vimicro";
case 130:
return "Sennheiser Communications A/S";
case 131:
return "TimeKeeping Systems, Inc.";
case 132:
return "Ludus Helsinki Ltd.";
case 133:
return "BlueRadios, Inc.";
case 134:
return "equinox AG";
case 135:
return "Garmin International, Inc.";
case 136:
return "Ecotest";
case 137:
return "GN ReSound A/S";
case 138:
return "Jawbone";
case 139:
return "Topcon Positioning Systems, LLC";
case 140:
return "Gimbal Inc. (formerly Qualcomm Labs, Inc. and Qualcomm Retail Solutions, Inc.)";
case 141:
return "Zscan Software";
case 142:
return "Quintic Corp.";
case 143:
return "Telit Wireless Solutions GmbH (Formerly Stollman E+V GmbH)";
case 144:
return "Funai Electric Co., Ltd.";
case 145:
return "Advanced PANMOBIL Systems GmbH & Co. KG";
case 146:
return "ThinkOptics, Inc.";
case 147:
return "Universal Electronics, Inc.";
case 148:
return "Airoha Technology Corp.";
case 149:
return "NEC Lighting, Ltd.";
case 150:
return "ODM Technology, Inc.";
case 151:
return "ConnecteDevice Ltd.";
case 152:
return "zer01.tv GmbH";
case 153:
return "i.Tech Dynamic Global Distribution Ltd.";
case 154:
return "Alpwise";
case 155:
return "Jiangsu Toppower Automotive Electronics Co., Ltd.";
case 156:
return "Colorfy, Inc.";
case 157:
return "Geoforce Inc.";
case 158:
return "Bose Corporation";
case 159:
return "Suunto Oy";
case 160:
return "Kensington Computer Products Group";
case 161:
return "SR-Medizinelektronik";
case 162:
return "Vertu Corporation Limited";
case 163:
return "Meta Watch Ltd.";
case 164:
return "LINAK A/S";
case 165:
return "OTL Dynamics LLC";
case 166:
return "Panda Ocean Inc.";
case 167:
return "Visteon Corporation";
case 168:
return "ARP Devices Limited";
case 169:
return "Magneti Marelli S.p.A";
case 170:
return "CAEN RFID srl";
case 171:
return "Ingenieur-Systemgruppe Zahn GmbH";
case 172:
return "Green Throttle Games";
case 173:
return "Peter Systemtechnik GmbH";
case 174:
return "Omegawave Oy";
case 175:
return "Cinetix";
case 176:
return "Passif Semiconductor Corp";
case 177:
return "Saris Cycling Group, Inc";
case 178:
return "Bekey A/S";
case 179:
return "Clarinox Technologies Pty. Ltd.";
case 180:
return "BDE Technology Co., Ltd.";
case 181:
return "Swirl Networks";
case 182:
return "Meso international";
case 183:
return "TreLab Ltd";
case 184:
return "Qualcomm Innovation Center, Inc. (QuIC)";
case 185:
return "Johnson Controls, Inc.";
case 186:
return "Starkey Laboratories Inc.";
case 187:
return "S-Power Electronics Limited";
case 188:
return "Ace Sensor Inc";
case 189:
return "Aplix Corporation";
case 190:
return "AAMP of America";
case 191:
return "Stalmart Technology Limited";
case 192:
return "AMICCOM Electronics Corporation";
case 193:
return "Shenzhen Excelsecu Data Technology Co.,Ltd";
case 194:
return "Geneq Inc.";
case 195:
return "adidas AG";
case 196:
return "LG Electronics";
case 197:
return "Onset Computer Corporation";
case 198:
return "Selfly BV";
case 199:
return "Quuppa Oy.";
case 200:
return "GeLo Inc";
case 201:
return "Evluma";
case 202:
return "MC10";
case 203:
return "Binauric SE";
case 204:
return "Beats Electronics";
case 205:
return "Microchip Technology Inc.";
case 206:
return "Elgato Systems GmbH";
case 207:
return "ARCHOS SA";
case 208:
return "Dexcom, Inc.";
case 209:
return "Polar Electro Europe B.V.";
case 210:
return "Dialog Semiconductor B.V.";
case 211:
return "Taixingbang Technology (HK) Co,. LTD.";
case 212:
return "Kawantech";
case 213:
return "Austco Communication Systems";
case 214:
return "Timex Group USA, Inc.";
case 215:
return "Qualcomm Technologies, Inc.";
case 216:
return "Qualcomm Connected Experiences, Inc.";
case 217:
return "Voyetra Turtle Beach";
case 218:
return "txtr GmbH";
case 219:
return "Biosentronics";
case 220:
return "Procter & Gamble";
case 221:
return "Hosiden Corporation";
case 222:
return "Muzik LLC";
case 223:
return "Misfit Wearables Corp";
case 224:
return "Google";
case 225:
return "Danlers Ltd";
case 226:
return "Semilink Inc";
case 227:
return "inMusic Brands, Inc";
case 228:
return "L.S. Research Inc.";
case 229:
return "Eden Software Consultants Ltd.";
case 230:
return "Freshtemp";
case 231:
return "KS Technologies";
case 232:
return "ACTS Technologies";
case 233:
return "Vtrack Systems";
case 234:
return "Nielsen-Kellerman Company";
case 235:
return "Server Technology, Inc.";
case 236:
return "BioResearch Associates";
case 237:
return "Jolly Logic, LLC";
case 238:
return "Above Average Outcomes, Inc.";
case 239:
return "Bitsplitters GmbH";
case 240:
return "PayPal, Inc.";
case 241:
return "Witron Technology Limited";
case 242:
return "Aether Things Inc. (formerly Morse Project Inc.)";
case 243:
return "Kent Displays Inc.";
case 244:
return "Nautilus Inc.";
case 245:
return "Smartifier Oy";
case 246:
return "Elcometer Limited";
case 247:
return "VSN Technologies Inc.";
case 248:
return "AceUni Corp., Ltd.";
case 249:
return "StickNFind";
case 250:
return "Crystal Code AB";
case 251:
return "KOUKAAM a.s.";
case 252:
return "Delphi Corporation";
case 253:
return "ValenceTech Limited";
case 254:
return "Reserved";
case 255:
return "Typo Products, LLC";
case 256:
return "TomTom International BV";
case 257:
return "Fugoo, Inc";
case 258:
return "Keiser Corporation";
case 259:
return "Bang & Olufsen A/S";
case 260:
return "PLUS Locations Systems Pty Ltd";
case 261:
return "Ubiquitous Computing Technology Corporation";
case 262:
return "Innovative Yachtter Solutions";
case 263:
return "William Demant Holding A/S";
case 264:
return "Chicony Electronics Co., Ltd.";
case 265:
return "Atus BV";
case 266:
return "Codegate Ltd.";
case 267:
return "ERi, Inc.";
case 268:
return "Transducers Direct, LLC";
case 269:
return "Fujitsu Ten Limited";
case 270:
return "Audi AG";
case 271:
return "HiSilicon Technologies Co., Ltd.";
case 272:
return "Nippon Seiki Co., Ltd.";
case 273:
return "Steelseries ApS";
case 274:
return "Visybl Inc.";
case 275:
return "Openbrain Technologies, Co., Ltd.";
case 276:
return "Xensr";
case 277:
return "e.solutions";
case 278:
return "1OAK Technologies";
case 279:
return "Wimoto Technologies Inc";
case 280:
return "Radius Networks, Inc.";
case 281:
return "Wize Technology Co., Ltd.";
case 282:
return "Qualcomm Labs, Inc.";
case 283:
return "Aruba Networks";
case 284:
return "Baidu";
case 285:
return "Arendi AG";
case 286:
return "Skoda Auto a.s.";
case 287:
return "Volkswagen AG";
case 288:
return "Porsche AG";
case 289:
return "Sino Wealth Electronic Ltd.";
case 290:
return "AirTurn, Inc.";
case 291:
return "Kinsa, Inc.";
case 292:
return "HID Global";
case 293:
return "SEAT es";
case 294:
return "Promethean Ltd.";
case 295:
return "Salutica Allied Solutions";
case 296:
return "GPSI Group Pty Ltd";
case 297:
return "Nimble Devices Oy";
case 298:
return "Changzhou Yongse Infotech Co., Ltd";
case 299:
return "SportIQ";
case 300:
return "TEMEC Instruments B.V.";
case 301:
return "Sony Corporation";
case 302:
return "ASSA ABLOY";
case 303:
return "Clarion Co., Ltd.";
case 304:
return "Warehouse Innovations";
case 305:
return "Cypress Semiconductor Corporation";
case 306:
return "MADS Inc";
case 307:
return "Blue Maestro Limited";
case 308:
return "Resolution Products, Inc.";
case 309:
return "Airewear LLC";
case 310:
return "Seed Labs, Inc. (formerly ETC sp. z.o.o.)";
case 311:
return "Prestigio Plaza Ltd.";
case 312:
return "NTEO Inc.";
case 313:
return "Focus Systems Corporation";
case 314:
return "Tencent Holdings Limited";
case 315:
return "Allegion";
case 316:
return "Murata Manufacuring Co., Ltd.";
case 317:
return "WirelessWERX";
case 318:
return "Nod, Inc.";
case 319:
return "B&B Manufacturing Company";
case 320:
return "Alpine Electronics (China) Co., Ltd";
case 321:
return "FedEx Services";
case 322:
return "Grape Systems Inc.";
case 323:
return "Bkon Connect";
case 324:
return "Lintech GmbH";
case 325:
return "Novatel Wireless";
case 326:
return "Ciright";
case 327:
return "Mighty Cast, Inc.";
case 328:
return "Ambimat Electronics";
case 329:
return "Perytons Ltd.";
case 330:
return "Tivoli Audio, LLC";
case 331:
return "Master Lock";
case 332:
return "Mesh-Net Ltd";
case 333:
return "Huizhou Desay SV Automotive CO., LTD.";
case 334:
return "Tangerine, Inc.";
case 335:
return "B&W Group Ltd.";
case 336:
return "Pioneer Corporation";
case 337:
return "OnBeep";
case 338:
return "Vernier Software & Technology";
case 339:
return "ROL Ergo";
case 340:
return "Pebble Technology";
case 341:
return "NETATMO";
case 342:
return "Accumulate AB";
case 343:
return "Anhui Huami Information Technology Co., Ltd.";
case 344:
return "Inmite s.r.o.";
case 345:
return "ChefSteps, Inc.";
case 346:
return "micas AG";
case 347:
return "Biomedical Research Ltd.";
case 348:
return "Pitius Tec S.L.";
case 349:
return "Estimote, Inc.";
case 350:
return "Unikey Technologies, Inc.";
case 351:
return "Timer Cap Co.";
case 352:
return "AwoX";
case 353:
return "yikes";
case 354:
return "MADSGlobal NZ Ltd.";
case 355:
return "PCH International";
case 356:
return "Qingdao Yeelink Information Technology Co., Ltd.";
case 357:
return "Milwaukee Tool (formerly Milwaukee Electric Tools)";
case 358:
return "MISHIK Pte Ltd";
case 359:
return "Bayer HealthCare";
case 360:
return "Spicebox LLC";
case 361:
return "emberlight";
case 362:
return "Cooper-Atkins Corporation";
case 363:
return "Qblinks";
case 364:
return "MYSPHERA";
case 365:
return "LifeScan Inc";
case 366:
return "Volantic AB";
case 367:
return "Podo Labs, Inc";
case 368:
return "F. Hoffmann-La Roche AG";
case 369:
return "Amazon Fulfillment Service";
case 370:
return "Connovate Technology Private Limited";
case 371:
return "Kocomojo, LLC";
case 372:
return "Everykey LLC";
case 373:
return "Dynamic Controls";
case 374:
return "SentriLock";
case 375:
return "I-SYST inc.";
case 376:
return "CASIO COMPUTER CO., LTD.";
case 377:
return "LAPIS Semiconductor Co., Ltd.";
case 378:
return "Telemonitor, Inc.";
case 379:
return "taskit GmbH";
case 380:
return "Daimler AG";
case 381:
return "BatAndCat";
case 382:
return "BluDotz Ltd";
case 383:
return "XTel ApS";
case 384:
return "Gigaset Communications GmbH";
case 385:
return "Gecko Health Innovations, Inc.";
case 386:
return "HOP Ubiquitous";
case 387:
return "To Be Assigned";
case 388:
return "Nectar";
case 389:
return "bel'apps LLC";
case 390:
return "CORE Lighting Ltd";
case 391:
return "Seraphim Sense Ltd";
case 392:
return "Unico RBC";
case 393:
return "Physical Enterprises Inc.";
case 394:
return "Able Trend Technology Limited";
case 395:
return "Konica Minolta, Inc.";
case 396:
return "Wilo SE";
case 397:
return "Extron Design Services";
case 398:
return "Fitbit, Inc.";
case 399:
return "Fireflies Systems";
case 400:
return "Intelletto Technologies Inc.";
case 401:
return "FDK CORPORATION";
case 402:
return "Cloudleaf, Inc";
case 403:
return "Maveric Automation LLC";
case 404:
return "Acoustic Stream Corporation";
case 405:
return "Zuli";
case 406:
return "Paxton Access Ltd";
case 407:
return "WiSilica Inc";
case 408:
return "VENGIT Korlátolt Felelősségű Társaság";
case 409:
return "SALTO SYSTEMS S.L.";
case 410:
return "TRON Forum (formerly T-Engine Forum)";
case 411:
return "CUBETECH s.r.o.";
case 412:
return "Cokiya Incorporated";
case 413:
return "CVS Health";
case 414:
return "Ceruus";
case 415:
return "Strainstall Ltd";
case 416:
return "Channel Enterprises (HK) Ltd.";
case 417:
return "FIAMM";
case 418:
return "GIGALANE.CO.,LTD";
case 419:
return "EROAD";
case 420:
return "Mine Safety Appliances";
case 421:
return "Icon Health and Fitness";
case 422:
return "Asandoo GmbH";
case 423:
return "ENERGOUS CORPORATION";
case 424:
return "Taobao";
case 425:
return "Canon Inc.";
case 426:
return "Geophysical Technology Inc.";
case 427:
return "Facebook, Inc.";
case 428:
return "Nipro Diagnostics, Inc.";
case 429:
return "FlightSafety International";
case 430:
return "Earlens Corporation";
case 431:
return "Sunrise Micro Devices, Inc.";
case 432:
return "Star Micronics Co., Ltd.";
case 433:
return "Netizens Sp. z o.o.";
case 434:
return "Nymi Inc.";
case 435:
return "Nytec, Inc.";
case 436:
return "Trineo Sp. z o.o.";
case 437:
return "Nest Labs Inc.";
case 438:
return "LM Technologies Ltd";
case 439:
return "General Electric Company";
case 440:
return "i+D3 S.L.";
case 441:
return "HANA Micron";
case 442:
return "Stages Cycling LLC";
case 443:
return "Cochlear Bone Anchored Solutions AB";
case 444:
return "SenionLab AB";
case 445:
return "Syszone Co., Ltd";
case 446:
return "Pulsate Mobile Ltd.";
case 447:
return "Hong Kong HunterSun Electronic Limited";
case 448:
return "pironex GmbH";
case 449:
return "BRADATECH Corp.";
case 450:
return "Transenergooil AG";
case 451:
return "Bunch";
case 452:
return "DME Microelectronics";
case 453:
return "Bitcraze AB";
case 454:
return "HASWARE Inc.";
case 455:
return "Abiogenix Inc.";
case 456:
return "Poly-Control ApS";
case 457:
return "Avi-on";
case 458:
return "Laerdal Medical AS";
case 459:
return "Fetch My Pet";
case 460:
return "Sam Labs Ltd.";
case 461:
return "Chengdu Synwing Technology Ltd";
case 462:
return "HOUWA SYSTEM DESIGN, k.k.";
case 463:
return "BSH";
case 464:
return "Primus Inter Pares Ltd";
case 465:
return "August";
case 466:
return "Gill Electronics";
case 467:
return "Sky Wave Design";
case 468:
return "Newlab S.r.l.";
case 469:
return "ELAD srl";
case 470:
return "G-wearables inc.";
case 471:
return "Squadrone Systems Inc.";
case 472:
return "Code Corporation";
case 473:
return "Savant Systems LLC";
case 474:
return "Logitech International SA";
case 475:
return "Innblue Consulting";
case 476:
return "iParking Ltd.";
case 477:
return "Koninklijke Philips Electronics N.V.";
case 478:
return "Minelab Electronics Pty Limited";
case 479:
return "Bison Group Ltd.";
case 480:
return "Widex A/S";
case 481:
return "Jolla Ltd";
case 482:
return "Lectronix, Inc.";
case 483:
return "Caterpillar Inc";
case 484:
return "Freedom Innovations";
case 485:
return "Dynamic Devices Ltd";
case 486:
return "Technology Solutions (UK) Ltd";
case 487:
return "IPS Group Inc.";
case 488:
return "STIR";
case 489:
return "Sano, Inc";
case 490:
return "Advanced Application Design, Inc.";
case 491:
return "AutoMap LLC";
case 492:
return "Spreadtrum Communications Shanghai Ltd";
case 493:
return "CuteCircuit LTD";
case 494:
return "Valeo Service";
case 495:
return "Fullpower Technologies, Inc.";
case 496:
return "KloudNation";
case 497:
return "Zebra Technologies Corporation";
case 498:
return "Itron, Inc.";
case 499:
return "The University of Tokyo";
case 500:
return "UTC Fire and Security";
case 501:
return "Cool Webthings Limited";
case 502:
return "DJO Global";
case 503:
return "Gelliner Limited";
case 504:
return "Anyka (Guangzhou) Microelectronics Technology Co, LTD";
case 505:
return "Medtronic, Inc.";
case 506:
return "Gozio, Inc.";
case 507:
return "Form Lifting, LLC";
case 508:
return "Wahoo Fitness, LLC";
case 509:
return "Kontakt Micro-Location Sp. z o.o.";
case 510:
return "Radio System Corporation";
case 511:
return "Freescale Semiconductor, Inc.";
case 512:
return "Verifone Systems PTe Ltd. Taiwan Branch";
case 513:
return "AR Timing";
case 514:
return "Rigado LLC";
case 515:
return "Kemppi Oy";
case 516:
return "Tapcentive Inc.";
case 517:
return "Smartbotics Inc.";
case 518:
return "Otter Products, LLC";
case 519:
return "STEMP Inc.";
case 520:
return "LumiGeek LLC";
case 521:
return "InvisionHeart Inc.";
case 522:
return "Macnica Inc.";
case 523:
return "Jaguar Land Rover Limited";
case 524:
return "CoroWare Technologies, Inc";
case 525:
return "Simplo Technology Co., LTD";
case 526:
return "Omron Healthcare Co., LTD";
case 527:
return "Comodule GMBH";
case 528:
return "ikeGPS";
case 529:
return "Telink Semiconductor Co. Ltd";
case 530:
return "Interplan Co., Ltd";
case 531:
return "Wyler AG";
case 532:
return "IK Multimedia Production srl";
case 533:
return "Lukoton Experience Oy";
case 534:
return "MTI Ltd";
case 535:
return "Tech4home, Lda";
case 536:
return "Hiotech AB";
case 537:
return "DOTT Limited";
case 538:
return "Blue Speck Labs, LLC";
case 539:
return "Cisco Systems Inc";
case 540:
return "Mobicomm Inc";
case 541:
return "Edamic";
case 542:
return "Goodnet Ltd";
case 543:
return "Luster Leaf Products Inc";
case 544:
return "Manus Machina BV";
case 545:
return "Mobiquity Networks Inc";
case 546:
return "Praxis Dynamics";
case 547:
return "Philip Morris Products S.A.";
case 548:
return "Comarch SA";
case 549:
return "Nestlé Nespresso S.A.";
case 550:
return "Merlinia A/S";
case 551:
return "LifeBEAM Technologies";
case 552:
return "Twocanoes Labs, LLC";
case 553:
return "Muoverti Limited";
case 554:
return "Stamer Musikanlagen GMBH";
case 555:
return "Tesla Motors";
case 556:
return "Pharynks Corporation";
case 557:
return "Lupine";
case 558:
return "Siemens AG";
case 559:
return "Huami (Shanghai) Culture Communication CO., LTD";
case 560:
return "Foster Electric Company, Ltd";
case 561:
return "ETA SA";
case 562:
return "x-Senso Solutions Kft";
case 563:
return "Shenzhen SuLong Communication Ltd";
case 564:
return "FengFan (BeiJing) Technology Co, Ltd";
case 565:
return "Qrio Inc";
case 566:
return "Pitpatpet Ltd";
case 567:
return "MSHeli s.r.l.";
case 568:
return "Trakm8 Ltd";
case 569:
return "JIN CO, Ltd";
case 570:
return "Alatech Technology";
case 571:
return "Beijing CarePulse Electronic Technology Co, Ltd";
case 572:
return "Awarepoint";
case 573:
return "ViCentra B.V.";
case 574:
return "Raven Industries";
case 575:
return "WaveWare Technologies";
case 576:
return "Argenox Technologies";
case 577:
return "Bragi GmbH";
case 578:
return "16Lab Inc";
case 579:
return "Masimo Corp";
case 580:
return "Iotera Inc.";
case 581:
return "Endress+Hauser";
case 582:
return "ACKme Networks, Inc.";
case 583:
return "FiftyThree Inc.";
case 584:
return "Parker Hannifin Corp";
case 585:
return "Transcranial Ltd";
case 586:
return "Uwatec AG";
case 587:
return "Orlan LLC";
case 588:
return "Blue Clover Devices";
case 589:
return "M-Way Solutions GmbH";
case 590:
return "Microtronics Engineering GmbH";
case 591:
return "Schneider Schreibgeräte GmbH";
case 592:
return "Sapphire Circuits LLC";
case 593:
return "Lumo Bodytech Inc.";
case 594:
return "UKC Technosolution";
case 595:
return "Xicato Inc.";
case 596:
return "Playbrush";
case 597:
return "Dai Nippon Printing Co., Ltd.";
case 598:
return "G24 Power Limited";
case 599:
return "AdBabble Local Commerce Inc.";
case 600:
return "Devialet SA";
case 601:
return "ALTYOR";
case 602:
return "University of Applied Sciences Valais/Haute Ecole Valaisanne";
case 603:
return "Five Interactive, LLC dba Zendo";
case 604:
return "NetEase (Hangzhou) Network co.Ltd.";
case 605:
return "Lexmark International Inc.";
case 606:
return "Fluke Corporation";
case 607:
return "Yardarm Technologies";
case 608:
return "SensaRx";
case 609:
return "SECVRE GmbH";
case 610:
return "Glacial Ridge Technologies";
case 611:
return "Identiv, Inc.";
case 612:
return "DDS, Inc.";
case 613:
return "SMK Corporation";
case 614:
return "Schawbel Technologies LLC";
case 615:
return "XMI Systems SA";
case 616:
return "Cerevo";
case 617:
return "Torrox GmbH & Co KG";
case 618:
return "Gemalto";
case 619:
return "DEKA Research & Development Corp.";
case 620:
return "Domster Tadeusz Szydlowski";
case 621:
return "Technogym SPA";
case 622:
return "FLEURBAEY BVBA";
case 623:
return "Aptcode Solutions";
case 624:
return "LSI ADL Technology";
case 625:
return "Animas Corp";
case 626:
return "Alps Electric Co., Ltd.";
case 627:
return "OCEASOFT";
case 628:
return "Motsai Research";
case 629:
return "Geotab";
case 630:
return "E.G.O. Elektro-Gerätebau GmbH";
case 631:
return "bewhere inc";
case 632:
return "Johnson Outdoors Inc";
case 633:
return "steute Schaltgerate GmbH & Co. KG";
case 634:
return "Ekomini inc.";
case 635:
return "DEFA AS";
case 636:
return "Aseptika Ltd";
case 637:
return "HUAWEI Technologies Co., Ltd. ( 华为技术有限公司 )";
case 638:
return "HabitAware, LLC";
case 639:
return "ruwido austria gmbh";
case 640:
return "ITEC corporation";
case 641:
return "StoneL";
case 642:
return "Sonova AG";
case 643:
return "Maven Machines, Inc.";
case 644:
return "Synapse Electronics";
case 645:
return "Standard Innovation Inc.";
case 646:
return "RF Code, Inc.";
case 647:
return "Wally Ventures S.L.";
case 648:
return "Willowbank Electronics Ltd";
case 649:
return "SK Telecom";
case 650:
return "Jetro AS";
case 651:
return "Code Gears LTD";
case 652:
return "NANOLINK APS";
case 653:
return "IF, LLC";
case 654:
return "RF Digital Corp";
case 655:
return "Church & Dwight Co., Inc";
case 656:
return "Multibit Oy";
case 657:
return "CliniCloud Inc";
case 658:
return "SwiftSensors";
case 659:
return "Blue Bite";
case 660:
return "ELIAS GmbH";
case 661:
return "Sivantos GmbH";
case 662:
return "Petzl";
case 663:
return "storm power ltd";
case 664:
return "EISST Ltd";
case 665:
return "Inexess Technology Simma KG";
case 666:
return "Currant, Inc.";
case 667:
return "C2 Development, Inc.";
case 668:
return "Blue Sky Scientific, LLC";
case 669:
return "ALOTTAZS LABS, LLC";
case 670:
return "Kupson spol. s r.o.";
case 671:
return "Areus Engineering GmbH";
case 672:
return "Impossible Camera GmbH";
case 673:
return "InventureTrack Systems";
case 674:
return "LockedUp";
case 675:
return "Itude";
case 676:
return "Pacific Lock Company";
case 677:
return "Tendyron Corporation ( 天地融科技股份有限公司 )";
case 678:
return "Robert Bosch GmbH";
case 679:
return "Illuxtron international B.V.";
case 680:
return "miSport Ltd.";
case 681:
return "Chargelib";
case 682:
return "Doppler Lab";
case 683:
return "BBPOS Limited";
case 684:
return "RTB Elektronik GmbH & Co. KG";
case 685:
return "Rx Networks, Inc.";
case 686:
return "WeatherFlow, Inc.";
case 687:
return "Technicolor USA Inc.";
case 688:
return "Bestechnic(Shanghai),Ltd";
case 689:
return "Raden Inc";
case 690:
return "JouZen Oy";
case 691:
return "CLABER S.P.A.";
case 692:
return "Hyginex, Inc.";
case 693:
return "HANSHIN ELECTRIC RAILWAY CO.,LTD.";
case 694:
return "Schneider Electric";
case 695:
return "Oort Technologies LLC";
case 696:
return "Chrono Therapeutics";
case 697:
return "Rinnai Corporation";
case 698:
return "Swissprime Technologies AG";
case 699:
return "Koha.,Co.Ltd";
case 700:
return "Genevac Ltd";
case 701:
return "Chemtronics";
case 702:
return "Seguro Technology Sp. z o.o.";
case 703:
return "Redbird Flight Simulations";
case 704:
return "Dash Robotics";
case 705:
return "LINE Corporation";
case 706:
return "Guillemot Corporation";
case 707:
return "Techtronic Power Tools Technology Limited";
case 708:
return "Wilson Sporting Goods";
case 709:
return "Lenovo (Singapore) Pte Ltd. ( 联想(新加坡) )";
case 710:
return "Ayatan Sensors";
case 711:
return "Electronics Tomorrow Limited";
case 712:
return "VASCO Data Security International, Inc.";
case 713:
return "PayRange Inc.";
case 714:
return "ABOV Semiconductor";
case 715:
return "AINA-Wireless Inc.";
case 716:
return "Eijkelkamp Soil & Water";
case 717:
return "BMA ergonomics b.v.";
case 718:
return "Teva Branded Pharmaceutical Products R&D, Inc.";
case 719:
return "Anima";
case 720:
return "3M";
case 721:
return "Empatica Srl";
case 722:
return "Afero, Inc.";
case 723:
return "Powercast Corporation";
case 724:
return "Secuyou ApS";
case 725:
return "OMRON Corporation";
case 726:
return "Send Solutions";
case 727:
return "NIPPON SYSTEMWARE CO.,LTD.";
case 728:
return "Neosfar";
case 729:
return "Fliegl Agrartechnik GmbH";
case 730:
return "Gilvader";
case 731:
return "Digi International Inc (R)";
case 732:
return "DeWalch Technologies, Inc.";
case 733:
return "Flint Rehabilitation Devices, LLC";
case 734:
return "Samsung SDS Co., Ltd.";
case 735:
return "Blur Product Development";
case 736:
return "University of Michigan";
case 737:
return "Victron Energy BV";
case 738:
return "NTT docomo";
case 739:
return "Carmanah Technologies Corp.";
case 740:
return "Bytestorm Ltd.";
case 741:
return "Espressif Incorporated ( 乐鑫信息科技(上海)有限公司 )";
case 742:
return "Unwire";
case 743:
return "Connected Yard, Inc.";
case 744:
return "American Music Environments";
case 745:
return "Sensogram Technologies, Inc.";
case 746:
return "Fujitsu Limited";
case 747:
return "Ardic Technology";
case 748:
return "Delta Systems, Inc";
case 749:
return "HTC Corporation";
case 750:
return "Citizen Holdings Co., Ltd.";
case 751:
return "SMART-INNOVATION.inc";
case 752:
return "Blackrat Software";
case 753:
return "The Idea Cave, LLC";
case 754:
return "GoPro, Inc.";
case 755:
return "AuthAir, Inc";
case 756:
return "Vensi, Inc.";
case 757:
return "Indagem Tech LLC";
case 758:
return "Intemo Technologies";
case 759:
return "DreamVisions co., Ltd.";
case 760:
return "Runteq Oy Ltd";
case 761:
return "IMAGINATION TECHNOLOGIES LTD";
case 762:
return "CoSTAR Technologies";
case 763:
return "Clarius Mobile Health Corp.";
case 764:
return "Shanghai Frequen Microelectronics Co., Ltd.";
case 765:
return "Uwanna, Inc.";
case 766:
return "Lierda Science & Technology Group Co., Ltd.";
case 767:
return "Silicon Laboratories";
case 768:
return "World Moto Inc.";
case 769:
return "Giatec Scientific Inc.";
case 770:
return "Loop Devices, Inc";
case 771:
return "IACA electronique";
case 772:
return "Martians Inc";
case 773:
return "Swipp ApS";
case 774:
return "Life Laboratory Inc.";
case 775:
return "FUJI INDUSTRIAL CO.,LTD.";
case 776:
return "Surefire, LLC";
case 777:
return "Dolby Labs";
case 778:
return "Ellisys";
case 779:
return "Magnitude Lighting Converters";
case 780:
return "Hilti AG";
case 781:
return "Devdata S.r.l.";
case 782:
return "Deviceworx";
case 783:
return "Shortcut Labs";
case 784:
return "SGL Italia S.r.l.";
case 785:
return "PEEQ DATA";
case 786:
return "Ducere Technologies Pvt Ltd";
case 787:
return "DiveNav, Inc.";
case 788:
return "RIIG AI Sp. z o.o.";
case 789:
return "Thermo Fisher Scientific";
case 790:
return "AG Measurematics Pvt. Ltd.";
case 791:
return "CHUO Electronics CO., LTD.";
case 792:
return "Aspenta International";
case 793:
return "Eugster Frismag AG";
case 794:
return "Amber wireless GmbH";
case 795:
return "HQ Inc";
case 796:
return "Lab Sensor Solutions";
case 797:
return "Enterlab ApS";
case 798:
return "Eyefi, Inc.";
case 799:
return "MetaSystem S.p.A";
case 800:
return "SONO ELECTRONICS. CO., LTD";
case 801:
return "Jewelbots";
case 802:
return "Compumedics Limited";
case 803:
return "Rotor Bike Components";
case 804:
return "Astro, Inc.";
case 805:
return "Amotus Solutions";
case 806:
return "Healthwear Technologies (Changzhou)Ltd";
case 807:
return "Essex Electronics";
case 808:
return "Grundfos A/S";
case 809:
return "Eargo, Inc.";
case 810:
return "Electronic Design Lab";
case 811:
return "ESYLUX";
case 812:
return "NIPPON SMT.CO.,Ltd";
case 813:
return "BM innovations GmbH";
case 814:
return "indoormap";
case 815:
return "OttoQ Inc";
case 816:
return "North Pole Engineering";
case 817:
return "3flares Technologies Inc.";
case 818:
return "Electrocompaniet A.S.";
case 819:
return "Mul-T-Lock";
case 820:
return "Corentium AS";
case 821:
return "Enlighted Inc";
case 822:
return "GISTIC";
case 823:
return "AJP2 Holdings, LLC";
case 824:
return "COBI GmbH";
case 825:
return "Blue Sky Scientific, LLC";
case 826:
return "Appception, Inc.";
case 827:
return "Courtney Thorne Limited";
case 828:
return "Virtuosys";
case 829:
return "TPV Technology Limited";
case 830:
return "Monitra SA";
case 831:
return "Automation Components, Inc.";
case 832:
return "Letsense s.r.l.";
case 833:
return "Etesian Technologies LLC";
case 834:
return "GERTEC BRASIL LTDA.";
case 835:
return "Drekker Development Pty. Ltd.";
case 836:
return "Whirl Inc";
case 837:
return "Locus Positioning";
case 838:
return "Acuity Brands Lighting, Inc";
case 839:
return "Prevent Biometrics";
case 840:
return "Arioneo";
case 841:
return "VersaMe";
case 842:
return "Vaddio";
case 843:
return "Libratone A/S";
case 844:
return "HM Electronics, Inc.";
case 845:
return "TASER International, Inc.";
case 846:
return "Safe Trust Inc.";
case 847:
return "Heartland Payment Systems";
case 848:
return "Bitstrata Systems Inc.";
case 849:
return "Pieps GmbH";
case 850:
return "iRiding(Xiamen)Technology Co.,Ltd.";
case 851:
return "Alpha Audiotronics, Inc.";
case 852:
return "TOPPAN FORMS CO.,LTD.";
case 853:
return "Sigma Designs, Inc.";
case 854:
return "Spectrum Brands, Inc.";
case 855:
return "Polymap Wireless";
case 856:
return "MagniWare Ltd.";
case 857:
return "Novotec Medical GmbH";
case 858:
return "Medicom Innovation Partner a/s";
case 859:
return "Matrix Inc.";
case 860:
return "Eaton Corporation";
case 861:
return "KYS";
case 862:
return "Naya Health, Inc.";
case 863:
return "Acromag";
case 864:
return "Insulet Corporation";
case 865:
return "Wellinks Inc.";
case 866:
return "ON Semiconductor";
case 867:
return "FREELAP SA";
case 868:
return "Favero Electronics Srl";
case 869:
return "BioMech Sensor LLC";
case 870:
return "BOLTT Sports technologies Private limited";
case 871:
return "Saphe International";
case 872:
return "Metormote AB";
case 873:
return "littleBits";
case 874:
return "SetPoint Medical";
case 875:
return "BRControls Products BV";
case 876:
return "Zipcar";
case 877:
return "AirBolt Pty Ltd";
case 878:
return "KeepTruckin Inc";
case 879:
return "Motiv, Inc.";
case 880:
return "Wazombi Labs OÜ";
case 881:
return "ORBCOMM";
case 882:
return "Nixie Labs, Inc.";
case 883:
return "AppNearMe Ltd";
case 884:
return "Holman Industries";
case 885:
return "Expain AS";
case 886:
return "Electronic Temperature Instruments Ltd";
case 887:
return "Plejd AB";
case 888:
return "Propeller Health";
case 889:
return "Shenzhen iMCO Electronic Technology Co.,Ltd";
case 890:
return "Algoria";
case 891:
return "Apption Labs Inc.";
case 892:
return "Cronologics Corporation";
case 893:
return "MICRODIA Ltd.";
case 894:
return "lulabytes S.L.";
case 895:
return "Nestec S.A.";
case 896:
return "LLC \"MEGA-F service\"";
case 897:
return "Sharp Corporation";
case 898:
return "Precision Outcomes Ltd";
case 899:
return "Kronos Incorporated";
case 900:
return "OCOSMOS Co., Ltd.";
case 901:
return "Embedded Electronic Solutions Ltd. dba e2Solutions";
case 902:
return "Aterica Inc.";
case 903:
return "BluStor PMC, Inc.";
case 904:
return "Kapsch TrafficCom AB";
case 905:
return "ActiveBlu Corporation";
case 906:
return "Kohler Mira Limited";
case 907:
return "Noke";
case 908:
return "Appion Inc.";
case 909:
return "Resmed Ltd";
case 910:
return "Crownstone B.V.";
case 911:
return "Xiaomi Inc.";
case 912:
return "INFOTECH s.r.o.";
case 913:
return "Thingsquare AB";
case 914:
return "T&D";
case 915:
return "LAVAZZA S.p.A.";
case 916:
return "Netclearance Systems, Inc.";
case 917:
return "SDATAWAY";
case 918:
return "BLOKS GmbH";
case 919:
return "LEGO System A/S";
case 920:
return "Thetatronics Ltd";
case 921:
return "Nikon Corporation";
case 922:
return "NeST";
case 923:
return "South Silicon Valley Microelectronics";
case 924:
return "ALE International";
case 925:
return "CareView Communications, Inc.";
case 926:
return "SchoolBoard Limited";
case 927:
return "Molex Corporation";
case 928:
return "IVT Wireless Limited";
case 929:
return "Alpine Labs LLC";
case 930:
return "Candura Instruments";
case 931:
return "SmartMovt Technology Co., Ltd";
case 932:
return "Token Zero Ltd";
case 933:
return "ACE CAD Enterprise Co., Ltd. (ACECAD)";
case 934:
return "Medela, Inc";
case 935:
return "AeroScout";
case 936:
return "Esrille Inc.";
case 937:
return "THINKERLY SRL";
case 938:
return "Exon Sp. z o.o.";
case 939:
return "Meizu Technology Co., Ltd.";
case 940:
return "Smablo LTD";
case 941:
return "XiQ";
case 942:
return "Allswell Inc.";
case 943:
return "Comm-N-Sense Corp DBA Verigo";
case 944:
return "VIBRADORM GmbH";
case 945:
return "Otodata Wireless Network Inc.";
case 946:
return "Propagation Systems Limited";
case 947:
return "Midwest Instruments & Controls";
case 948:
return "Alpha Nodus, inc.";
case 949:
return "petPOMM, Inc";
case 950:
return "Mattel";
case 951:
return "Airbly Inc.";
case 952:
return "A-Safe Limited";
case 953:
return "FREDERIQUE CONSTANT SA";
case 954:
return "Maxscend Microelectronics Company Limited";
case 955:
return "Abbott Diabetes Care";
case 956:
return "ASB Bank Ltd";
case 957:
return "amadas";
case 958:
return "Applied Science, Inc.";
case 959:
return "iLumi Solutions Inc.";
case 960:
return "Arch Systems Inc.";
case 961:
return "Ember Technologies, Inc.";
case 962:
return "Snapchat Inc";
case 963:
return "Casambi Technologies Oy";
case 964:
return "Pico Technology Inc.";
case 965:
return "St. Jude Medical, Inc.";
case 966:
return "Intricon";
case 967:
return "Structural Health Systems, Inc.";
case 968:
return "Avvel International";
case 969:
return "Gallagher Group";
case 970:
return "In2things Automation Pvt. Ltd.";
case 971:
return "SYSDEV Srl";
case 972:
return "Vonkil Technologies Ltd";
case 973:
return "Wynd Technologies, Inc.";
case 974:
return "CONTRINEX S.A.";
case 975:
return "MIRA, Inc.";
case 976:
return "Watteam Ltd";
case 977:
return "Density Inc.";
case 978:
return "IOT Pot India Private Limited";
case 979:
return "Sigma Connectivity AB";
case 980:
return "PEG PEREGO SPA";
case 981:
return "Wyzelink Systems Inc.";
case 982:
return "Yota Devices LTD";
case 983:
return "FINSECUR";
case 984:
return "Zen-Me Labs Ltd";
case 985:
return "3IWare Co., Ltd.";
case 986:
return "EnOcean GmbH";
case 987:
return "Instabeat, Inc";
case 988:
return "Nima Labs";
case 989:
return "Andreas Stihl AG & Co. KG";
case 990:
return "Nathan Rhoades LLC";
case 991:
return "Grob Technologies, LLC";
case 992:
return "Actions (Zhuhai) Technology Co., Limited";
case 993:
return "SPD Development Company Ltd";
case 994:
return "Sensoan Oy";
case 995:
return "Qualcomm Life Inc";
case 996:
return "Chip-ing AG";
case 997:
return "ffly4u";
case 998:
return "IoT Instruments Oy";
case 999:
return "TRUE Fitness Technology";
case 1000:
return "Reiner Kartengeraete GmbH & Co. KG.";
case 1001:
return "SHENZHEN LEMONJOY TECHNOLOGY CO., LTD.";
case 1002:
return "Hello Inc.";
case 1003:
return "Evollve Inc.";
case 1004:
return "Jigowatts Inc.";
case 1005:
return "BASIC MICRO.COM,INC.";
case 1006:
return "CUBE TECHNOLOGIES";
case 1007:
return "foolography GmbH";
case 1008:
return "CLINK";
case 1009:
return "Hestan Smart Cooking Inc.";
case 1010:
return "WindowMaster A/S";
case 1011:
return "Flowscape AB";
case 1012:
return "PAL Technologies Ltd";
case 1013:
return "WHERE, Inc.";
case 1014:
return "Iton Technology Corp.";
case 1015:
return "Owl Labs Inc.";
case 1016:
return "Rockford Corp.";
case 1017:
return "Becon Technologies Co.,Ltd.";
case 1018:
return "Vyassoft Technologies Inc";
case 1019:
return "Nox Medical";
case 1020:
return "Kimberly-Clark";
case 1021:
return "Trimble Navigation Ltd.";
case 1022:
return "Littelfuse";
case 1023:
return "Withings";
case 1024:
return "i-developer IT Beratung UG";
case 1025:
return "リレーションズ株式会社";
case 1026:
return "Sears Holdings Corporation";
case 1027:
return "Gantner Electronic GmbH";
case 1028:
return "Authomate Inc";
case 1029:
return "Vertex International, Inc.";
case 1030:
return "Airtago";
case 1031:
return "Swiss Audio SA";
case 1032:
return "ToGetHome Inc.";
case 1033:
return "AXIS";
case 1034:
return "Openmatics";
case 1035:
return "Jana Care Inc.";
case 1036:
return "Senix Corporation";
case 1037:
return "NorthStar Battery Company, LLC";
case 65535:
return "internal use";
default:
return "not assigned";
}
}
|