File size: 110,066 Bytes
7c294a0 | 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 | {
"model_name": "url_iab_gte_modernbert",
"onnx_path": "multi_head_classifier.onnx",
"categories": [
"iabaudience_names",
"iabcontent_names"
],
"label_mappings": {
"category_labels": {
"iabcontent_names": [
"3-D Graphics",
"Action Video Games",
"Action-Adventure Video Games",
"Action/Adventure",
"Adoption and Fostering",
"Adult & Explicit Sexual Content",
"Adult Album Alternative",
"Adult Contemporary Music",
"Adult Education",
"Adult Video Games",
"Adventure Travel",
"Adventure Video Games",
"Advertising Industry",
"Africa Travel",
"Agnosticism",
"Agriculture",
"Air Travel",
"Album-oriented Rock",
"Alcoholic Beverages",
"Allergies",
"Alternative Medicine",
"Alternative Music",
"Alternative Rock",
"American Football",
"Amusement and Theme Parks",
"Angel Investment",
"Animation & Anime",
"Anniversary",
"Antiquing and Antiques",
"Antivirus Software",
"Apartments",
"Apparel Industry",
"Apprenticeships",
"Arms & Ammunition",
"Art and Photography",
"Artificial Intelligence",
"Arts and Crafts",
"Asia Travel",
"Astrology",
"Atheism",
"Attractions",
"Audio Production",
"Augmented Reality",
"Australia and Oceania Travel",
"Australian Rules Football",
"Auto Body Styles",
"Auto Buying and Selling",
"Auto Infotainment Technologies",
"Auto Insurance",
"Auto Navigation Systems",
"Auto Parts",
"Auto Racing",
"Auto Recalls",
"Auto Rentals",
"Auto Repair",
"Auto Safety",
"Auto Safety Technologies",
"Auto Shows",
"Auto Technology",
"Auto Type",
"Automotive",
"Automotive Industry",
"Aviation Industry",
"Awards Shows",
"Baby Shower",
"Bachelor Party",
"Bachelorette Party",
"Badminton",
"Bankruptcy",
"Barbecues and Grilling",
"Bars & Restaurants",
"Baseball",
"Basketball",
"Bath and Shower",
"Beach Travel",
"Beach Volleyball",
"Beadwork",
"Beauty",
"Bed & Breakfasts",
"Beekeeping",
"Bereavement",
"Biographies",
"Biological Sciences",
"Biotech and Biomedical Industry",
"Birds",
"Birdwatching",
"Birth",
"Birth Control",
"Birthday",
"Blood Disorders",
"Blues",
"Board Games and Puzzles",
"Body Art",
"Bodybuilding",
"Bone and Joint Conditions",
"Books and Literature",
"Bowling",
"Boxing",
"Brain and Nervous System Disorders",
"Browsers",
"Buddhism",
"Budget Cars",
"Budget Travel",
"Business",
"Business Accounting & Finance",
"Business Administration",
"Business Banking & Finance",
"Business Expos & Conferences",
"Business I.T.",
"Business Loans",
"Business Operations",
"Business Travel",
"Business Utilities",
"Business and Finance",
"Cameras and Camcorders",
"Camping",
"Cancer",
"Candle and Soap Making",
"Canoeing and Kayaking",
"Car Culture",
"Card Games",
"Career Advice",
"Career Planning",
"Careers",
"Casino and Gambling Video Games",
"Casinos & Gambling",
"Casual Games",
"Cats",
"Celebrity Deaths",
"Celebrity Families",
"Celebrity Homes",
"Celebrity Pregnancy",
"Celebrity Relationships",
"Celebrity Scandal",
"Celebrity Style",
"Certified Pre-Owned Cars",
"Cheerleading",
"Chemistry",
"Children's Clothing",
"Children's Games and Toys",
"Children's Health",
"Children's Music",
"Christianity",
"Cigars",
"Civic affairs",
"Civil Engineering Industry",
"Classic Cars",
"Classic Hits",
"Classic Rock",
"Classical Music",
"Climbing",
"Cloud Computing",
"Cold and Flu",
"Collecting",
"College Baseball",
"College Basketball",
"College Education",
"College Football",
"College Planning",
"College Radio",
"College Sports",
"Comedy",
"Comedy (Music and Audio)",
"Comic Books",
"Comics and Graphic Novels",
"Commercial Trucks",
"Commodities",
"Communication",
"Computer Animation",
"Computer Networking",
"Computer Peripherals",
"Computing",
"Concept Cars",
"Console Games",
"Construction Industry",
"Consumer Banking",
"Consumer Electronics",
"Consumer Issues",
"Contemporary Hits/Pop/Top 40",
"Content Production",
"Convertible",
"Cooking",
"Cosmetic Medical Services",
"Costume",
"Country Music",
"Coupe",
"Coupons and Discounts",
"Credit Cards",
"Cricket",
"Crime",
"Crime & Harmful Acts to Individuals, Society & Human Right Violations",
"Crossover",
"Cruises",
"Currencies",
"Cycling",
"Dance",
"Dance and Electronic Music",
"Darts",
"Dash Cam Videos",
"Data Storage and Warehousing",
"Databases",
"Dating",
"Day Trips",
"Daycare and Pre-School",
"Death, Injury, or Military Conflict",
"Debated Sensitive Social Issues",
"Debt Factoring & Invoice Discounting",
"Defense Industry",
"Dental Health",
"Deodorant and Antiperspirant",
"Design",
"Designer Clothing",
"Desktop Publishing",
"Desktops",
"Desserts and Baking",
"Developmental Sites",
"Diabetes",
"Digestive Disorders",
"Digital Arts",
"Digital Audio",
"Dining Out",
"Disabled Sports",
"Disasters",
"Diseases and Conditions",
"Diving",
"Divorce",
"Documentary",
"Dogs",
"Drama",
"Drawing and Sketching",
"Driverless Cars",
"Ear, Nose and Throat Conditions",
"Early Childhood Education",
"Economy",
"Education",
"Education industry",
"Educational Assessment",
"Educational Video Games",
"Eldercare",
"Elections",
"Email",
"Endocrine and Metabolic Diseases",
"Entertainment",
"Entertainment Industry",
"Environment",
"Environmental Services Industry",
"Equine Sports",
"Europe Travel",
"Events",
"Executive Leadership & Management",
"Exercise and Fitness Video Games",
"Extreme Sports",
"Eye and Vision Conditions",
"Factual",
"Family Travel",
"Family Video Games",
"Family and Relationships",
"Family/Children",
"Fan Conventions",
"Fantasy",
"Fantasy Sports",
"Fashion Trends",
"Fiction",
"Field Hockey",
"Figure Skating",
"Financial Assistance",
"Financial Crisis",
"Financial Industry",
"Financial Planning",
"Financial Reform",
"Financial Regulation",
"Fine Art",
"Fine Art Photography",
"First Aid",
"Fish and Aquariums",
"Fishing Sports",
"Fitness and Exercise",
"Flower Shopping",
"Food & Drink",
"Food Allergies",
"Food Industry",
"Food Movements",
"Foot Health",
"Freelance Writing",
"Frugal Living",
"Funeral",
"Games and Puzzles",
"Gardening",
"Gas and Electric",
"Gasoline Prices",
"Genealogy and Ancestry",
"Genetics",
"Genres",
"Geography",
"Geology",
"Gifts and Greetings Cards",
"Golf",
"Gospel Music",
"Government Business",
"Government Support and Welfare",
"Graduation",
"Graphics Software",
"Green Solutions",
"Green Vehicles",
"Grocery Shopping",
"Gymnastics",
"Hair Care",
"Hard Rock",
"Hatchback",
"Hate Speech and Acts of Aggression",
"Health Insurance",
"Healthcare Industry",
"Healthy Cooking and Eating",
"Healthy Living",
"Heart and Cardiovascular Diseases",
"Hedge Funds",
"Herbs and Supplements",
"High Fashion",
"Hinduism",
"Hip Hop Music",
"Historic Site and Landmark Tours",
"History",
"Hobbies & Interests",
"Holiday",
"Holiday Shopping",
"Holidays",
"Holistic Health",
"Home & Garden",
"Home Appliances",
"Home Entertaining",
"Home Entertainment Systems",
"Home Financing",
"Home Improvement",
"Home Insurance",
"Home Security",
"Home Utilities",
"Homeschooling",
"Homework and Study",
"Honeymoons and Getaways",
"Hormonal Disorders",
"Horror",
"Horror Video Games",
"Horse Racing",
"Hospitality Industry",
"Hotel Properties",
"Hotels and Motels",
"Household Supplies",
"Houses",
"Housing Market",
"Human Resources",
"Humor and Satire",
"Hunting and Shooting",
"IT and Internet Support",
"Ice Hockey",
"Illegal Drugs, Tobacco, eCigarettes, Vaping, Alcohol",
"Indoor Environmental Quality",
"Industrial Property",
"Industries",
"Infectious Diseases",
"Infertility",
"Information Services Industry",
"Information and Network Security",
"Injuries",
"Inline Skating",
"Inspirational/New Age Music",
"Insurance",
"Interest Rates",
"Interior Decorating",
"Internet",
"Internet Safety",
"Internet Service Providers",
"Internet for Beginners",
"Internet of Things",
"Islam",
"Jazz",
"Jewelry Making",
"Job Fairs",
"Job Market",
"Job Search",
"Judaism",
"Lacrosse",
"Land and Farms",
"Landscaping",
"Language Learning",
"Laptops",
"Large Animals",
"Large Business",
"Law",
"Legal Services Industry",
"Life Insurance",
"Lifestyle",
"Logistics",
"Logistics and Transportation Industry",
"Lotteries and Scratchcards",
"Lung and Respiratory Health",
"Luxury Cars",
"MMOs",
"Magic and Illusion",
"Makeup and Accessories",
"Malls & Shopping Centers",
"Management Consulting Industry",
"Manufacturing Industry",
"Maps & Navigation",
"Marketing and Advertising",
"Marriage and Civil Unions",
"Martial Arts",
"Mechanical and Industrial Engineering Industry",
"Media Industry",
"Medical Health",
"Medical Tests",
"Men's Accessories",
"Men's Business Wear",
"Men's Casual Wear",
"Men's Clothing",
"Men's Fashion",
"Men's Formal Wear",
"Men's Health",
"Men's Jewelry and Watches",
"Men's Outerwear",
"Men's Shoes and Footwear",
"Men's Sportswear",
"Men's Underwear and Sleepwear",
"Menopause",
"Mental Health",
"Mergers and Acquisitions",
"Metals Industry",
"Microcar",
"Minivan",
"Mobile Games",
"Model Toys",
"Modern Art",
"Motor Insurance",
"Motorcycle Sports",
"Motorcycles",
"Movies",
"Museums & Galleries",
"Music",
"Music Video",
"Music and Party Video Games",
"Musical Instruments",
"Musicals",
"Mutual Funds",
"Mystery",
"Nail Care",
"National & Civic Holidays",
"Natural and Organic Beauty",
"Nature",
"Needlework",
"Nightclubs",
"Non-Alcoholic Beverages",
"Non-Profit Organizations",
"North America Travel",
"Nutrition",
"Obscenity and Profanity",
"Off-Road Vehicles",
"Office Property",
"Oldies/Adult Standards",
"Olympic Sports",
"Online Education",
"Online Piracy",
"Opera",
"Operating Systems",
"Options",
"Oral care",
"Outdoor Attractions",
"Outdoor Decorating",
"PC Games",
"Paintball",
"Painting",
"Paranormal Phenomena",
"Parenting",
"Parenting Babies and Toddlers",
"Parenting Children Aged 4-11",
"Parenting Teens",
"Parks",
"Participant Sports",
"Party Supplies and Decorations",
"Performance Cars",
"Perfume and Fragrance",
"Personal Care",
"Personal Celebrations & Life Events",
"Personal Debt",
"Personal Finance",
"Personal Investing",
"Personal Loans",
"Personal Taxes",
"Pet Adoptions",
"Pet Insurance",
"Pet Supplies",
"Pets",
"Pharmaceutical Drugs",
"Pharmaceutical Industry",
"Phone Services",
"Photo Editing Software",
"Photography",
"Physical Therapy",
"Physics",
"Pickup Trucks",
"Poetry",
"Poker and Professional Gambling",
"Polar Travel",
"Political Issues & Policy",
"Politics",
"Pop Culture",
"Postgraduate Education",
"Power and Energy Industry",
"Pregnancy",
"Primary Education",
"Private Equity",
"Private School",
"Productivity",
"Professional School",
"Programming Languages",
"Prom",
"Public Radio",
"Publishing Industry",
"Puzzle Video Games",
"R&B/Soul/Funk",
"Racing Video Games",
"Radio Control",
"Rail Travel",
"Real Estate",
"Real Estate Buying and Selling",
"Real Estate Industry",
"Real Estate Renting and Leasing",
"Reality TV",
"Recalls",
"Reggae",
"Religion & Spirituality",
"Religious (Music and Audio)",
"Remodeling & Construction",
"Remote Working",
"Reproductive Health",
"Reptiles",
"Resume Writing and Advice",
"Retail Industry",
"Retail Property",
"Retirement Planning",
"Road Trips",
"Road-Side Assistance",
"Robotics",
"Rock Music",
"Rodeo",
"Role-Playing Video Games",
"Roleplaying Games",
"Romance",
"Rowing",
"Rugby",
"Rugby League",
"Rugby Union",
"Running and Jogging",
"SUV",
"Sailing",
"Sale & Lease Back",
"Sales",
"Sales and Promotions",
"Sci-fi and Fantasy",
"Science",
"Science Fiction",
"Scooters",
"Scrapbooking",
"Screenwriting",
"Scuba Diving",
"Search",
"Secondary Education",
"Sedan",
"Senior Health",
"Sensitive Topics",
"Sexual Conditions",
"Sexual Health",
"Shareware and Freeware",
"Shaving",
"Shopping",
"Sikhism",
"Simulation Video Games",
"Single Life",
"Skateboarding",
"Skiing",
"Skin Care",
"Skin and Dermatology",
"Sleep Disorders",
"Small and Medium-sized Business",
"Smart Home",
"Smartphones",
"Smoking Cessation",
"Snooker/Pool/Billiards",
"Snowboarding",
"Soap Opera",
"Soccer",
"Social Networking",
"Soft AC Music",
"Soft Rock",
"Softball",
"Software and Applications",
"Songwriters/Folk",
"Soundtracks, TV and Showtunes",
"South America Travel",
"Space and Astronomy",
"Spam or Harmful Content",
"Spas",
"Special Education",
"Special Interest (Indie/Art House)",
"Special Needs Kids",
"Spirituality",
"Sports",
"Sports Equipment",
"Sports Radio",
"Sports Video Games",
"Squash",
"Stamps and Coins",
"Standardized Testing",
"Startups",
"Station Wagon",
"Stocks and Bonds",
"Strategy Video Games",
"Street Style",
"Student Financial Aid",
"Student Loans",
"Style & Fashion",
"Substance Abuse",
"Summer Olympic Sports",
"Surfing and Bodyboarding",
"Surgery",
"Swimming",
"Table Tennis",
"Tablets and E-readers",
"Talk Radio",
"Talk Show",
"Technology & Computing",
"Technology Industry",
"Telecommunications Industry",
"Television",
"Tennis",
"Terrorism",
"Theater",
"Theater Venues",
"Thriller",
"Thyroid Disorders",
"Track and Field",
"Travel",
"Travel Accessories",
"Travel Insurance",
"Travel Locations",
"Travel Preparation and Advice",
"Travel Type",
"True Crime",
"Undergraduate Education",
"Urban AC Music",
"Urban Contemporary Music",
"Vacation Properties",
"Vaccines",
"Van",
"Variety (Music and Audio)",
"Vegan Diets",
"Vegetarian Diets",
"Venture Capital",
"Veterinary Medicine",
"Video Game Genres",
"Video Gaming",
"Video Production",
"Video Software",
"Virtual Reality",
"Vocational Training",
"Volleyball",
"Walking",
"War and Conflicts",
"Water Polo",
"Water Services",
"Waterskiing and Wakeboarding",
"Wearable Technology",
"Weather",
"Web Conferencing",
"Web Design and HTML",
"Web Development",
"Web Hosting",
"Wedding",
"Weight Loss",
"Weightlifting",
"Wellness",
"Western",
"Winter Olympic Sports",
"Women's Accessories",
"Women's Business Wear",
"Women's Casual Wear",
"Women's Clothing",
"Women's Fashion",
"Women's Formal Wear",
"Women's Glasses",
"Women's Handbags and Wallets",
"Women's Hats and Scarves",
"Women's Health",
"Women's Intimates and Sleepwear",
"Women's Jewelry and Watches",
"Women's Outerwear",
"Women's Shoes and Footwear",
"Women's Sportswear",
"Woodworking",
"Workshops and Classes",
"World Cuisines",
"World/International Music",
"Wrestling",
"Young Adult",
"Zoos & Aquariums",
"eSports"
],
"iabaudience_names": [
"$0",
"$1,000,000+",
"$1,000-$1,499",
"$1,500-$1,999",
"$1-$499",
"$10,000-$14,999",
"$100000 - $149999",
"$2,000-$3,000",
"$200,000-$249,999",
"$250,000+",
"$250,000-$500,000",
"$500,000-$1,000,000",
"$500,000-$599,999",
"$500-$999",
"$900,000-$999,999",
"*Country Extension",
"*Language Extension",
"*Region / State Extension",
"*Zip or postal code Extension",
"1 Adult",
"1 Child",
"1 person",
"1 year",
"1-3 Years",
"10 years",
"100K-199.9K People",
"14 years",
"15 years",
"2 Adults",
"2 Child",
"2 people",
"2 years",
"20K-49.9K People",
"2K-4.9K People",
"3 people",
"3 years",
"3+ Adults",
"3+ Child",
"3-D Graphics",
"4 people",
"4 years",
"5 people",
"5 years",
"50K-99.9K People",
"5K-9.9K People",
"6 years",
"6+ People",
"75+",
"9 years",
"Academic Interests",
"Adult Album Alternative",
"Adults (no children)",
"Adventure Video Games",
"Age Range",
"Air Purifiers",
"Anniversary",
"Apps",
"Artificial Intelligence",
"Attorneys",
"Auctions",
"Audio",
"Auto Buying and Selling",
"Auto Towing and Repair",
"Auto and Vehicles Apps",
"Automobile Fluids/Antifreeze",
"Automobile Waxes/Polishes",
"Baby Food",
"Baby Safety Products",
"Baby and Toddler Furniture",
"Back to School Supplies",
"Bedroom Furniture and Accessories",
"Beds and Accessories",
"Beverages",
"Birds",
"Birdwatching",
"Births",
"Blades",
"Blank Audio/Video Media",
"Blenders",
"Blogs/Forums/Social Networks",
"Board Games and Puzzles",
"Books Apps",
"Bowling",
"Breakfast Meats",
"Breath Fresheners",
"Browsers",
"Business Apps",
"Business I.T.",
"Business Loans",
"Business Utilities",
"Cabinets and Storage",
"Cameras",
"Cameras and Photo",
"Card Games",
"Career Advice",
"Career Improvement and Advice",
"Career Planning",
"Casual Games",
"Cell Phone Stores",
"Children's Literature",
"Cleaning Tools/Mops/Brooms",
"Climbing",
"Climbing Equipment",
"Clothing",
"Co-Habiting",
"Coffee Filters",
"Collecting",
"Components",
"Computer Animation",
"Computers",
"Computing",
"Conferences/Events/Seminars",
"Construction",
"Content Production",
"Counseling",
"Creams/Creamers",
"Credit Cards",
"Credit and Debt Repair/Credit Reporting",
"Cricket",
"Critical Thinking",
"Crossover",
"Currencies",
"Day Trips",
"Debt Factoring & Invoice Discounting",
"Defense Industry",
"Demographic",
"Demographic | Age Range",
"Demographic | Age Range | 18-20 |",
"Demographic | Age Range | 21-24 |",
"Demographic | Age Range | 25-29 |",
"Demographic | Age Range | 30-34 |",
"Demographic | Age Range | 35-39 |",
"Demographic | Age Range | 40-44 |",
"Demographic | Age Range | 45-49 |",
"Demographic | Age Range | 50-54 |",
"Demographic | Age Range | 55-59 |",
"Demographic | Age Range | 60-64 |",
"Demographic | Age Range | 65-69 |",
"Demographic | Age Range | 70-74 |",
"Demographic | Age Range | 75+ |",
"Demographic | Education & Occupation",
"Demographic | Education & Occupation | College Education |",
"Demographic | Education & Occupation | Director/Managerial |",
"Demographic | Education & Occupation | Education (Highest Level) |",
"Demographic | Education & Occupation | Employed |",
"Demographic | Education & Occupation | Employment Role |",
"Demographic | Education & Occupation | Employment Sector / Industry |",
"Demographic | Education & Occupation | Employment Status |",
"Demographic | Education & Occupation | Full-Time |",
"Demographic | Education & Occupation | Homemaker / Domestic Work |",
"Demographic | Education & Occupation | Office Worker |",
"Demographic | Education & Occupation | Part-Time Worker |",
"Demographic | Education & Occupation | Part-Time |",
"Demographic | Education & Occupation | Postgraduate Education |",
"Demographic | Education & Occupation | Primary Education |",
"Demographic | Education & Occupation | Professional School |",
"Demographic | Education & Occupation | Professional |",
"Demographic | Education & Occupation | Public Sector |",
"Demographic | Education & Occupation | Retired |",
"Demographic | Education & Occupation | Secondary Education |",
"Demographic | Education & Occupation | Self Employed |",
"Demographic | Education & Occupation | Self-Employed |",
"Demographic | Education & Occupation | Shop Worker |",
"Demographic | Education & Occupation | Skilled/Manual Work |",
"Demographic | Education & Occupation | Student |",
"Demographic | Education & Occupation | Undergraduate Education |",
"Demographic | Education & Occupation | Unemployed / Job Seeker |",
"Demographic | Education & Occupation | Unemployed |",
"Demographic | Education & Occupation | Work from Home |",
"Demographic | Gender",
"Demographic | Gender | Female |",
"Demographic | Gender | Male |",
"Demographic | Gender | Unknown Gender |",
"Demographic | Household Data",
"Demographic | Household Data | $1,000-$1,499 |",
"Demographic | Household Data | $1,500-$1,999 |",
"Demographic | Household Data | $1-$499 |",
"Demographic | Household Data | $10,000-$14,999 |",
"Demographic | Household Data | $15,000-$19,999 |",
"Demographic | Household Data | $150,000-$174,999 |",
"Demographic | Household Data | $175,000-$199,999 |",
"Demographic | Household Data | $2,000-$3,000 |",
"Demographic | Household Data | $200,000-$299,999 |",
"Demographic | Household Data | $250,000+ |",
"Demographic | Household Data | $300,000-$399,999 |",
"Demographic | Household Data | $400,000-$499,999 |",
"Demographic | Household Data | $500-$999 |",
"Demographic | Household Data | $600,000-$699,999 |",
"Demographic | Household Data | $700,000-$799,999 |",
"Demographic | Household Data | *City Extension |",
"Demographic | Household Data | *Metro / DMA Extension |",
"Demographic | Household Data | *Region / State Extension |",
"Demographic | Household Data | *Zip or postal code Extension |",
"Demographic | Household Data | 0 Child |",
"Demographic | Household Data | 1 Adult |",
"Demographic | Household Data | 1-3 Years |",
"Demographic | Household Data | 10 years |",
"Demographic | Household Data | 100K-199.9K People |",
"Demographic | Household Data | 10K-19.9K People |",
"Demographic | Household Data | 12 years |",
"Demographic | Household Data | 13 years |",
"Demographic | Household Data | 14 years |",
"Demographic | Household Data | 15 years |",
"Demographic | Household Data | 2 Adults |",
"Demographic | Household Data | 2 Child |",
"Demographic | Household Data | 200K-2M People |",
"Demographic | Household Data | 20K-49.9K People |",
"Demographic | Household Data | 2K-4.9K People |",
"Demographic | Household Data | 3 people |",
"Demographic | Household Data | 3+ Adults |",
"Demographic | Household Data | 3+ Child |",
"Demographic | Household Data | 4 people |",
"Demographic | Household Data | 4 years |",
"Demographic | Household Data | 4-6 Years |",
"Demographic | Household Data | 5 people |",
"Demographic | Household Data | 50K-99.9K People |",
"Demographic | Household Data | 5K-9.9K People |",
"Demographic | Household Data | 6 years |",
"Demographic | Household Data | 6+ People |",
"Demographic | Household Data | 7+ Years |",
"Demographic | Household Data | 8 years |",
"Demographic | Household Data | 9 years |",
"Demographic | Household Data | Adults (no children) |",
"Demographic | Household Data | Empty Nest (Adults, Children left home) |",
"Demographic | Household Data | First Time Homeowner |",
"Demographic | Household Data | Grandparents with Children |",
"Demographic | Household Data | Grandparents, Parents and Children |",
"Demographic | Household Data | Home Location |",
"Demographic | Household Data | Home Owners |",
"Demographic | Household Data | Household Income (USD) |",
"Demographic | Household Data | Length of Residence |",
"Demographic | Household Data | Less Than 1 Year |",
"Demographic | Household Data | Less than $10,000 |",
"Demographic | Household Data | Life Stage |",
"Demographic | Household Data | Multi Generation Household |",
"Demographic | Household Data | Multiple Family |",
"Demographic | Household Data | Number of Adults |",
"Demographic | Household Data | Number of Children |",
"Demographic | Household Data | Other |",
"Demographic | Household Data | Owner |",
"Demographic | Household Data | Ownership |",
"Demographic | Household Data | Parents with Children |",
"Demographic | Household Data | Property Type |",
"Demographic | Household Data | Renter |",
"Demographic | Household Data | Renters |",
"Demographic | Household Data | Rural |",
"Demographic | Household Data | Single Family |",
"Demographic | Household Data | Urbanization |",
"Demographic | Language",
"Demographic | Language | *Language Extension |",
"Demographic | Language | Other |",
"Demographic | Marital Status",
"Demographic | Marital Status | Co-Habiting |",
"Demographic | Marital Status | Married |",
"Demographic | Marital Status | Single |",
"Demographic | Personal Finance",
"Demographic | Personal Finance | $10,000-$14,999 |",
"Demographic | Personal Finance | $100000 - $149999 |",
"Demographic | Personal Finance | $15,000-$19,999 |",
"Demographic | Personal Finance | $150,000-$174,999 |",
"Demographic | Personal Finance | $175,000-$199,999 |",
"Demographic | Personal Finance | $200,000-$249,999 |",
"Demographic | Personal Finance | $20000 - $39999 |",
"Demographic | Personal Finance | $250,000+ |",
"Demographic | Personal Finance | $250,000-$500,000 |",
"Demographic | Personal Finance | $40000 - $49999 |",
"Demographic | Personal Finance | $500,000-$1,000,000 |",
"Demographic | Personal Finance | $50000 - $74999 |",
"Demographic | Personal Finance | $75000 - $99999 |",
"Demographic | Personal Finance | High Net Worth |",
"Demographic | Personal Finance | Income (USD) |",
"Demographic | Personal Finance | Less than $10,000 |",
"Demographic | Personal Finance | Low Net Worth |",
"Demographic | Personal Finance | Personal Level Affluence (USD) |",
"Demographic | Personal Finance | Personal Level Affluence Band |",
"Demographic | Personal Finance | Super High Net Worth |",
"Desktops",
"Digital Arts",
"Dinners",
"Dinners/Entrees",
"Dip/Dip Mixes",
"Dips",
"Diving",
"Domain Services",
"Drawing and Sketching",
"Drink Mixes",
"Economics",
"Economy",
"Education",
"Education Apps",
"Educational Video Games",
"Elections",
"Email",
"Employment Role",
"Employment Sector / Industry",
"Employment Status",
"Entertainment Apps",
"Entertainment Centers and TV Stands",
"Environmental Science and Sustainability",
"Ethnic",
"Experiences and Events",
"Eye",
"Fabric Softener",
"Fantasy Sports",
"Fashion Events",
"Fashion Trends",
"Female",
"Finance Apps",
"Fitness and Exercise",
"Flowers",
"Footwear",
"Fragrances - Women's",
"Freelance Writing",
"Games Apps",
"Games and Puzzles",
"Gardening",
"Gender",
"Gift Cards and Coupons",
"Gift Certificates",
"Gifts and Holiday Items",
"Gloves",
"Government",
"Green Solutions",
"Greeting Cards",
"Gymnastics",
"Hair Appliances",
"Hair Coloring",
"Hair Growth Products",
"Hair Salons",
"Handbags and Wallets",
"Hardware Accessories",
"Hardware Pumps",
"Headphones",
"Heating/Ventilation/Air Conditioning",
"History",
"Holiday and Ethnic Items",
"Home Phone Services",
"Homemaker / Domestic Work",
"Household Income (USD)",
"Household/Plastics/Storage",
"IT and Internet Support",
"Income (USD)",
"Industrials",
"Industries",
"Inline Skating",
"Inline and Roller Skating Equipment",
"Inspirational/New Age Music",
"Interest",
"Interest Rates",
"Interest | Academic Interests",
"Interest | Academic Interests | Animals and Veterinary Science |",
"Interest | Academic Interests | Arts and Humanities |",
"Interest | Academic Interests | Bioinformatics |",
"Interest | Academic Interests | Biology |",
"Interest | Academic Interests | Chemistry |",
"Interest | Academic Interests | Clinical Science |",
"Interest | Academic Interests | Counseling |",
"Interest | Academic Interests | Critical Thinking |",
"Interest | Academic Interests | Economics |",
"Interest | Academic Interests | Education |",
"Interest | Academic Interests | Electrical Engineering |",
"Interest | Academic Interests | Environmental Science and Sustainability |",
"Interest | Academic Interests | Genetics |",
"Interest | Academic Interests | Geography |",
"Interest | Academic Interests | Geology |",
"Interest | Academic Interests | Governance and Society |",
"Interest | Academic Interests | History |",
"Interest | Academic Interests | International Relations |",
"Interest | Academic Interests | Language Learning |",
"Interest | Academic Interests | Law |",
"Interest | Academic Interests | Life Sciences |",
"Interest | Academic Interests | Mechanical Engineering |",
"Interest | Academic Interests | Medicine and Healthcare |",
"Interest | Academic Interests | Music and Art |",
"Interest | Academic Interests | Nutrition |",
"Interest | Academic Interests | Philosophy |",
"Interest | Academic Interests | Physical Science and Engineering |",
"Interest | Academic Interests | Physics |",
"Interest | Academic Interests | Psychology |",
"Interest | Academic Interests | Research Methods |",
"Interest | Academic Interests | Research Paper Writing |",
"Interest | Academic Interests | Social Sciences |",
"Interest | Academic Interests | Space and Astronomy |",
"Interest | Academic Interests | Statistics |",
"Interest | Automotive",
"Interest | Automotive | Auto Buying and Selling |",
"Interest | Automotive | Auto Shows |",
"Interest | Automotive | Auto Technology |",
"Interest | Automotive | Budget Cars |",
"Interest | Automotive | Car Culture |",
"Interest | Automotive | Classic Cars |",
"Interest | Automotive | Concept Cars |",
"Interest | Automotive | Dash Cam Videos |",
"Interest | Automotive | Driverless Cars |",
"Interest | Automotive | Green Vehicles |",
"Interest | Automotive | Luxury Cars |",
"Interest | Automotive | Motorcycles |",
"Interest | Automotive | Performance Cars |",
"Interest | Automotive | Scooters |",
"Interest | Books and Literature",
"Interest | Books and Literature | Art and Photography Books |",
"Interest | Books and Literature | Biographies |",
"Interest | Books and Literature | Children's Literature |",
"Interest | Books and Literature | Comics and Graphic Novels |",
"Interest | Books and Literature | Cookbooks |",
"Interest | Books and Literature | Fiction |",
"Interest | Books and Literature | Poetry |",
"Interest | Books and Literature | Travel Books |",
"Interest | Books and Literature | Young Adult Literature |",
"Interest | Business and Finance",
"Interest | Business and Finance | Advertising Industry |",
"Interest | Business and Finance | Agriculture |",
"Interest | Business and Finance | Angel Investment |",
"Interest | Business and Finance | Apparel Industry |",
"Interest | Business and Finance | Automotive Industry |",
"Interest | Business and Finance | Aviation Industry |",
"Interest | Business and Finance | Bankruptcy |",
"Interest | Business and Finance | Biotech and Biomedical Industry |",
"Interest | Business and Finance | Business Accounting & Finance |",
"Interest | Business and Finance | Business Administration |",
"Interest | Business and Finance | Business Banking & Finance |",
"Interest | Business and Finance | Business I.T. |",
"Interest | Business and Finance | Business Loans |",
"Interest | Business and Finance | Business Operations |",
"Interest | Business and Finance | Business Utilities |",
"Interest | Business and Finance | Business |",
"Interest | Business and Finance | Civil Engineering Industry |",
"Interest | Business and Finance | Commodities |",
"Interest | Business and Finance | Construction Industry |",
"Interest | Business and Finance | Consumer Issues |",
"Interest | Business and Finance | Currencies |",
"Interest | Business and Finance | Debt Factoring & Invoice Discounting |",
"Interest | Business and Finance | Defense Industry |",
"Interest | Business and Finance | Economy |",
"Interest | Business and Finance | Education industry |",
"Interest | Business and Finance | Entertainment Industry |",
"Interest | Business and Finance | Environmental Services Industry |",
"Interest | Business and Finance | Executive Leadership & Management |",
"Interest | Business and Finance | Financial Crisis |",
"Interest | Business and Finance | Financial Industry |",
"Interest | Business and Finance | Financial Reform |",
"Interest | Business and Finance | Financial Regulation |",
"Interest | Business and Finance | Food Industry |",
"Interest | Business and Finance | Gasoline Prices |",
"Interest | Business and Finance | Government Business |",
"Interest | Business and Finance | Green Solutions |",
"Interest | Business and Finance | Healthcare Industry |",
"Interest | Business and Finance | Hospitality Industry |",
"Interest | Business and Finance | Housing Market |",
"Interest | Business and Finance | Human Resources |",
"Interest | Business and Finance | Industries |",
"Interest | Business and Finance | Information Services Industry |",
"Interest | Business and Finance | Interest Rates |",
"Interest | Business and Finance | Job Market |",
"Interest | Business and Finance | Large Business |",
"Interest | Business and Finance | Legal Services Industry |",
"Interest | Business and Finance | Logistics and Transportation Industry |",
"Interest | Business and Finance | Logistics |",
"Interest | Business and Finance | Management Consulting Industry |",
"Interest | Business and Finance | Manufacturing Industry |",
"Interest | Business and Finance | Marketing and Advertising |",
"Interest | Business and Finance | Mechanical and Industrial Engineering Industry |",
"Interest | Business and Finance | Media Industry |",
"Interest | Business and Finance | Mergers and Acquisitions |",
"Interest | Business and Finance | Metals Industry |",
"Interest | Business and Finance | Non-Profit Organizations |",
"Interest | Business and Finance | Pharmaceutical Industry |",
"Interest | Business and Finance | Power and Energy Industry |",
"Interest | Business and Finance | Private Equity |",
"Interest | Business and Finance | Publishing Industry |",
"Interest | Business and Finance | Real Estate Industry |",
"Interest | Business and Finance | Retail Industry |",
"Interest | Business and Finance | Sale & Lease Back |",
"Interest | Business and Finance | Sales |",
"Interest | Business and Finance | Small and Medium-sized Business |",
"Interest | Business and Finance | Startups |",
"Interest | Business and Finance | Technology Industry |",
"Interest | Business and Finance | Telecommunications Industry |",
"Interest | Business and Finance | Venture Capital |",
"Interest | Careers",
"Interest | Careers | Apprenticeships |",
"Interest | Careers | Career Advice |",
"Interest | Careers | Career Planning |",
"Interest | Careers | Remote Working |",
"Interest | Careers | Vocational Training |",
"Interest | Education",
"Interest | Education | Adult Education |",
"Interest | Education | Language Learning |",
"Interest | Education | Online Education |",
"Interest | Family and Relationships",
"Interest | Family and Relationships | Daycare and Pre-School |",
"Interest | Family and Relationships | Internet Safety |",
"Interest | Family and Relationships | Parenting Babies and Toddlers |",
"Interest | Family and Relationships | Parenting Children Aged 4-11 |",
"Interest | Family and Relationships | Parenting Teens |",
"Interest | Family and Relationships | Parenting |",
"Interest | Fine Art | Costume |",
"Interest | Fine Art | Dance |",
"Interest | Fine Art | Design |",
"Interest | Fine Art | Digital Arts |",
"Interest | Fine Art | Fine Art Photography |",
"Interest | Fine Art | Modern Art |",
"Interest | Fine Art | Opera |",
"Interest | Fine Art | Theater |",
"Interest | Food & Drink",
"Interest | Food & Drink | Alcoholic Beverages |",
"Interest | Food & Drink | Barbecues and Grilling |",
"Interest | Food & Drink | Cooking |",
"Interest | Food & Drink | Desserts and Baking |",
"Interest | Food & Drink | Dining Out |",
"Interest | Food & Drink | Food Allergies |",
"Interest | Food & Drink | Food Movements |",
"Interest | Food & Drink | Healthy Cooking and Eating |",
"Interest | Food & Drink | Non-Alcoholic Beverages |",
"Interest | Food & Drink | Vegan Diets |",
"Interest | Food & Drink | Vegetarian Diets |",
"Interest | Food & Drink | World Cuisines |",
"Interest | Health and Medical Services",
"Interest | Health and Medical Services | Alternative and Natural Medicine |",
"Interest | Health and Medical Services | Chiropractors |",
"Interest | Health and Medical Services | Clinical Research |",
"Interest | Health and Medical Services | Cosmetic Medical Services |",
"Interest | Health and Medical Services | Dental Care |",
"Interest | Health and Medical Services | Drugstores and Pharmacies |",
"Interest | Health and Medical Services | Elder Care |",
"Interest | Health and Medical Services | Hair Loss Treatments |",
"Interest | Health and Medical Services | Health & Pharma |",
"Interest | Health and Medical Services | Health Care and Physicians |",
"Interest | Health and Medical Services | Health Services |",
"Interest | Health and Medical Services | Hospitals |",
"Interest | Health and Medical Services | Massage Therapists |",
"Interest | Health and Medical Services | Medical Services |",
"Interest | Health and Medical Services | Physical Therapists |",
"Interest | Health and Medical Services | Skin Care Treatments |",
"Interest | Health and Medical Services | Smoking Cessation |",
"Interest | Health and Medical Services | Vaccines |",
"Interest | Health and Medical Services | Vision Care |",
"Interest | Healthy Living",
"Interest | Healthy Living | Alternative Medicine |",
"Interest | Healthy Living | Children's Health |",
"Interest | Healthy Living | Fitness and Exercise |",
"Interest | Healthy Living | Herbs and Supplements |",
"Interest | Healthy Living | Holistic Health |",
"Interest | Healthy Living | Men's Health |",
"Interest | Healthy Living | Nutrition |",
"Interest | Healthy Living | Participant Sports |",
"Interest | Healthy Living | Physical Therapy |",
"Interest | Healthy Living | Running and Jogging |",
"Interest | Healthy Living | Senior Health |",
"Interest | Healthy Living | Smoking Cessation |",
"Interest | Healthy Living | Weight Loss |",
"Interest | Healthy Living | Wellness |",
"Interest | Healthy Living | Women's Health |",
"Interest | Hobbies & Interests",
"Interest | Hobbies & Interests | Antiquing and Antiques |",
"Interest | Hobbies & Interests | Arts and Crafts |",
"Interest | Hobbies & Interests | Audio Production |",
"Interest | Hobbies & Interests | Beadwork |",
"Interest | Hobbies & Interests | Beekeeping |",
"Interest | Hobbies & Interests | Birdwatching |",
"Interest | Hobbies & Interests | Board Games and Puzzles |",
"Interest | Hobbies & Interests | Candle and Soap Making |",
"Interest | Hobbies & Interests | Card Games |",
"Interest | Hobbies & Interests | Cigars |",
"Interest | Hobbies & Interests | Collecting |",
"Interest | Hobbies & Interests | Comic Books |",
"Interest | Hobbies & Interests | Content Production |",
"Interest | Hobbies & Interests | Drawing and Sketching |",
"Interest | Hobbies & Interests | Freelance Writing |",
"Interest | Hobbies & Interests | Games and Puzzles |",
"Interest | Hobbies & Interests | Genealogy and Ancestry |",
"Interest | Hobbies & Interests | Jewelry Making |",
"Interest | Hobbies & Interests | Magic and Illusion |",
"Interest | Hobbies & Interests | Model Toys |",
"Interest | Hobbies & Interests | Musical Instruments |",
"Interest | Hobbies & Interests | Needlework |",
"Interest | Hobbies & Interests | Painting |",
"Interest | Hobbies & Interests | Paranormal Phenomena |",
"Interest | Hobbies & Interests | Photography |",
"Interest | Hobbies & Interests | Radio Control |",
"Interest | Hobbies & Interests | Roleplaying Games |",
"Interest | Hobbies & Interests | Sci-fi and Fantasy |",
"Interest | Hobbies & Interests | Scrapbooking |",
"Interest | Hobbies & Interests | Screenwriting |",
"Interest | Hobbies & Interests | Stamps and Coins |",
"Interest | Hobbies & Interests | Video Production |",
"Interest | Hobbies & Interests | Woodworking |",
"Interest | Hobbies & Interests | Workshops and Classes |",
"Interest | Home & Garden",
"Interest | Home & Garden | Gardening |",
"Interest | Home & Garden | Home Entertaining |",
"Interest | Home & Garden | Home Improvement |",
"Interest | Home & Garden | Interior Decorating |",
"Interest | Home & Garden | Landscaping |",
"Interest | Home & Garden | Outdoor Decorating |",
"Interest | Home & Garden | Remodeling & Construction |",
"Interest | Home & Garden | Smart Home |",
"Interest | Medical Health",
"Interest | Movies",
"Interest | Movies | Action and Adventure Movies |",
"Interest | Movies | Animation Movies |",
"Interest | Movies | Comedy Movies |",
"Interest | Movies | Crime and Mystery Movies |",
"Interest | Movies | Documentary Movies |",
"Interest | Movies | Drama Movies |",
"Interest | Movies | Family and Children Movies |",
"Interest | Movies | Fantasy Movies |",
"Interest | Movies | Horror Movies |",
"Interest | Movies | Indie and Arthouse Movies |",
"Interest | Movies | Romance Movies |",
"Interest | Movies | Science Fiction Movies |",
"Interest | Movies | World Movies |",
"Interest | Music and Audio",
"Interest | Music and Audio | Adult Album Alternative |",
"Interest | Music and Audio | Adult Contemporary Music |",
"Interest | Music and Audio | Album-oriented Rock |",
"Interest | Music and Audio | Alternative Music |",
"Interest | Music and Audio | Alternative Rock |",
"Interest | Music and Audio | Blues |",
"Interest | Music and Audio | Business News Radio |",
"Interest | Music and Audio | Children's Music |",
"Interest | Music and Audio | Classic Hits |",
"Interest | Music and Audio | Classic Rock |",
"Interest | Music and Audio | Classical Music |",
"Interest | Music and Audio | College Radio |",
"Interest | Music and Audio | Comedy (Music and Audio) |",
"Interest | Music and Audio | Contemporary Hits/Pop/Top 40 |",
"Interest | Music and Audio | Country Music |",
"Interest | Music and Audio | Dance and Electronic Music |",
"Interest | Music and Audio | Educational Radio |",
"Interest | Music and Audio | Gospel Music |",
"Interest | Music and Audio | Hard Rock |",
"Interest | Music and Audio | Hip Hop Music |",
"Interest | Music and Audio | Inspirational/New Age Music |",
"Interest | Music and Audio | Jazz |",
"Interest | Music and Audio | News Radio |",
"Interest | Music and Audio | News/Talk Radio |",
"Interest | Music and Audio | Oldies/Adult Standards |",
"Interest | Music and Audio | Public Radio |",
"Interest | Music and Audio | R&B/Soul/Funk |",
"Interest | Music and Audio | Reggae |",
"Interest | Music and Audio | Religious (Music and Audio) |",
"Interest | Music and Audio | Rock Music |",
"Interest | Music and Audio | Soft AC Music |",
"Interest | Music and Audio | Soft Rock |",
"Interest | Music and Audio | Songwriters/Folk |",
"Interest | Music and Audio | Soundtracks, TV and Showtunes |",
"Interest | Music and Audio | Sports Radio |",
"Interest | Music and Audio | Talk Radio |",
"Interest | Music and Audio | Urban AC Music |",
"Interest | Music and Audio | Urban Contemporary Music |",
"Interest | Music and Audio | Variety (Music and Audio) |",
"Interest | Music and Audio | World/International Music |",
"Interest | News and Politics",
"Interest | News and Politics | Crime |",
"Interest | News and Politics | Disasters |",
"Interest | News and Politics | Elections |",
"Interest | News and Politics | International News |",
"Interest | News and Politics | Law |",
"Interest | News and Politics | Local News |",
"Interest | News and Politics | National News |",
"Interest | News and Politics | Political Issues |",
"Interest | News and Politics | Politics |",
"Interest | News and Politics | War and Conflicts |",
"Interest | News and Politics | Weather |",
"Interest | Personal Finance",
"Interest | Personal Finance | Frugal Living |",
"Interest | Personal Finance | Insurance |",
"Interest | Personal Finance | Personal Debt |",
"Interest | Personal Finance | Personal Investing |",
"Interest | Personal Finance | Personal Taxes |",
"Interest | Personal Finance | Retirement Planning |",
"Interest | Pets",
"Interest | Pets | Birds |",
"Interest | Pets | Cats |",
"Interest | Pets | Dogs |",
"Interest | Pets | Fish and Aquariums |",
"Interest | Pets | Horses and Equine |",
"Interest | Pets | Large Animals |",
"Interest | Pets | Pet Adoptions |",
"Interest | Pets | Reptiles |",
"Interest | Pharmaceuticals, Conditions, and Symptoms",
"Interest | Pharmaceuticals, Conditions, and Symptoms | Health & Pharma |",
"Interest | Pop Culture",
"Interest | Pop Culture | Humor and Satire |",
"Interest | Real Estate",
"Interest | Real Estate | Apartments |",
"Interest | Real Estate | Developmental Sites |",
"Interest | Real Estate | Hotel Properties |",
"Interest | Real Estate | Houses |",
"Interest | Real Estate | Industrial Property |",
"Interest | Real Estate | Land and Farms |",
"Interest | Real Estate | Office Property |",
"Interest | Real Estate | Real Estate Buying and Selling |",
"Interest | Real Estate | Real Estate Renting and Leasing |",
"Interest | Real Estate | Retail Property |",
"Interest | Real Estate | Vacation Properties |",
"Interest | Shopping",
"Interest | Sports",
"Interest | Sports | American Football |",
"Interest | Sports | Australian Rules Football |",
"Interest | Sports | Auto Racing |",
"Interest | Sports | Badminton |",
"Interest | Sports | Baseball |",
"Interest | Sports | Basketball |",
"Interest | Sports | Beach Volleyball |",
"Interest | Sports | Bodybuilding |",
"Interest | Sports | Bowling |",
"Interest | Sports | Boxing |",
"Interest | Sports | Canoeing and Kayaking |",
"Interest | Sports | Cheerleading |",
"Interest | Sports | Climbing |",
"Interest | Sports | College Baseball |",
"Interest | Sports | College Basketball |",
"Interest | Sports | College Football |",
"Interest | Sports | College Sports |",
"Interest | Sports | Cricket |",
"Interest | Sports | Cycling |",
"Interest | Sports | Darts |",
"Interest | Sports | Disabled Sports |",
"Interest | Sports | Diving |",
"Interest | Sports | Equine Sports |",
"Interest | Sports | Extreme Sports |",
"Interest | Sports | Fantasy Sports |",
"Interest | Sports | Field Hockey |",
"Interest | Sports | Figure Skating |",
"Interest | Sports | Fishing Sports |",
"Interest | Sports | Golf |",
"Interest | Sports | Gymnastics |",
"Interest | Sports | Horse Racing |",
"Interest | Sports | Hunting and Shooting |",
"Interest | Sports | Ice Hockey |",
"Interest | Sports | Inline Skating |",
"Interest | Sports | Lacrosse |",
"Interest | Sports | Martial Arts |",
"Interest | Sports | Motorcycle Sports |",
"Interest | Sports | Olympic Sports |",
"Interest | Sports | Paintball |",
"Interest | Sports | Poker and Professional Gambling |",
"Interest | Sports | Rodeo |",
"Interest | Sports | Rowing |",
"Interest | Sports | Rugby League |",
"Interest | Sports | Rugby Union |",
"Interest | Sports | Rugby |",
"Interest | Sports | Sailing |",
"Interest | Sports | Scuba Diving |",
"Interest | Sports | Skateboarding |",
"Interest | Sports | Skiing |",
"Interest | Sports | Snooker/Pool/Billiards |",
"Interest | Sports | Snowboarding |",
"Interest | Sports | Soccer |",
"Interest | Sports | Softball |",
"Interest | Sports | Sports Equipment |",
"Interest | Sports | Summer Olympic Sports |",
"Interest | Sports | Surfing and Bodyboarding |",
"Interest | Sports | Swimming |",
"Interest | Sports | Table Tennis |",
"Interest | Sports | Tennis |",
"Interest | Sports | Track and Field |",
"Interest | Sports | Volleyball |",
"Interest | Sports | Walking |",
"Interest | Sports | Water Polo |",
"Interest | Sports | Waterskiing and Wakeboarding |",
"Interest | Sports | Weightlifting |",
"Interest | Sports | Winter Olympic Sports |",
"Interest | Sports | Wrestling |",
"Interest | Style & Fashion",
"Interest | Style & Fashion | Beauty |",
"Interest | Style & Fashion | Body Art |",
"Interest | Style & Fashion | Children's Clothing |",
"Interest | Style & Fashion | Designer Clothing |",
"Interest | Style & Fashion | Fashion Trends |",
"Interest | Style & Fashion | High Fashion |",
"Interest | Style & Fashion | Men's Fashion |",
"Interest | Style & Fashion | Personal Care |",
"Interest | Style & Fashion | Street Style |",
"Interest | Style & Fashion | Women's Fashion |",
"Interest | Technology & Computing",
"Interest | Technology & Computing | Artificial Intelligence |",
"Interest | Technology & Computing | Augmented Reality |",
"Interest | Technology & Computing | Cloud Computing |",
"Interest | Technology & Computing | Computing |",
"Interest | Technology & Computing | Consumer Electronics |",
"Interest | Technology & Computing | Email |",
"Interest | Technology & Computing | IT and Internet Support |",
"Interest | Technology & Computing | Internet for Beginners |",
"Interest | Technology & Computing | Internet of Things |",
"Interest | Technology & Computing | Internet |",
"Interest | Technology & Computing | Programming Languages |",
"Interest | Technology & Computing | Robotics |",
"Interest | Technology & Computing | Search |",
"Interest | Technology & Computing | Social Networking |",
"Interest | Technology & Computing | Virtual Reality |",
"Interest | Technology & Computing | Web Design and HTML |",
"Interest | Technology & Computing | Web Development |",
"Interest | Technology & Computing | Web Hosting |",
"Interest | Television",
"Interest | Television | Animation TV |",
"Interest | Television | Children's TV |",
"Interest | Television | Comedy TV |",
"Interest | Television | Drama TV |",
"Interest | Television | Factual TV |",
"Interest | Television | Holiday TV |",
"Interest | Television | Music TV |",
"Interest | Television | Reality TV |",
"Interest | Television | Science Fiction TV |",
"Interest | Television | Soap Opera TV |",
"Interest | Television | Special Interest TV |",
"Interest | Television | Sports TV |",
"Interest | Travel",
"Interest | Travel | Adventure Travel |",
"Interest | Travel | Africa Travel |",
"Interest | Travel | Asia Travel |",
"Interest | Travel | Australia and Oceania Travel |",
"Interest | Travel | Beach Travel |",
"Interest | Travel | Camping |",
"Interest | Travel | Day Trips |",
"Interest | Travel | Europe Travel |",
"Interest | Travel | Family Travel |",
"Interest | Travel | North America Travel |",
"Interest | Travel | Polar Travel |",
"Interest | Travel | Road Trips |",
"Interest | Travel | South America Travel |",
"Interest | Video Gaming",
"Interest | Video Gaming | Action Video Games |",
"Interest | Video Gaming | Action-Adventure Video Games |",
"Interest | Video Gaming | Adventure Video Games |",
"Interest | Video Gaming | Casual Games |",
"Interest | Video Gaming | Console Games |",
"Interest | Video Gaming | Educational Video Games |",
"Interest | Video Gaming | Exercise and Fitness Video Games |",
"Interest | Video Gaming | MMOs |",
"Interest | Video Gaming | Mobile Games |",
"Interest | Video Gaming | Music and Party Video Games |",
"Interest | Video Gaming | PC Games |",
"Interest | Video Gaming | Puzzle Video Games |",
"Interest | Video Gaming | Role-Playing Video Games |",
"Interest | Video Gaming | Simulation Video Games |",
"Interest | Video Gaming | Sports Video Games |",
"Interest | Video Gaming | Strategy Video Games |",
"Interest | Video Gaming | Video Game Genres |",
"Interest | Video Gaming | eSports |",
"Internet Safety",
"Internet for Beginners",
"Jewelry Making",
"Job Market",
"Juices/Drinks",
"Kids Activities",
"Language",
"Language Learning",
"Laptops",
"Laundry",
"Laundry Care",
"Law",
"Length of Residence",
"Less than $10,000",
"Life Events",
"Lifestyle Apps",
"Lighting",
"Liquid Drink Enhancers",
"Lunches",
"Machinery",
"Magazine and Newspapers Apps",
"Management Consulting Industry",
"Manufacturing",
"Marital Status",
"Married",
"Matches",
"Meals",
"Media",
"Media Industry",
"Medical Apps",
"Messaging Software",
"Metals Industry",
"Mid Net Worth",
"Mobile Phone Plans",
"Multi Task Sheets",
"Music Apps",
"Music and Audio",
"Music and Video Streaming Services",
"Needlework",
"Networking",
"New Vehicles",
"News Apps",
"News Radio",
"News/Talk Radio",
"Number of Adults",
"Number of Individuals",
"Nutrition",
"Office Products",
"Office Worker",
"Office/School Supplies",
"Oil, Gas and Consumable Fuels",
"Oldies/Adult Standards",
"Online Education",
"Online Entertainment",
"Other Frozen",
"Other Gender",
"Outdoor Games Equipment",
"Over 2M+ People",
"Owner",
"Ownership",
"Parenting Teens",
"Participant Sports",
"Personal Cleansing",
"Personal Finance",
"Personal Investing",
"Personal Level Affluence (USD)",
"Pet Breeders",
"Pet Grooming",
"Pet Services",
"Pet Sitting",
"Pet Treats",
"Pets",
"Photo and Video Apps",
"Playing Cards",
"Poetry",
"Poker and Professional Gambling",
"Printers/Copiers/Scanners/Fax",
"Productivity Apps",
"Programming Languages",
"Public Relations and Strategic Communication",
"Purchase Intent*",
"Purchase Intent* | Apps | Auto and Vehicles Apps |",
"Purchase Intent* | Apps | Business Apps |",
"Purchase Intent* | Apps | Food and Drink Apps |",
"Purchase Intent* | Apps | Games Apps |",
"Purchase Intent* | Apps | Health and Fitness Apps |",
"Purchase Intent* | Apps | Lifestyle Apps |",
"Purchase Intent* | Apps | Magazine and Newspapers Apps |",
"Purchase Intent* | Apps | Navigation Apps |",
"Purchase Intent* | Apps | News Apps |",
"Purchase Intent* | Apps | Productivity Apps |",
"Purchase Intent* | Apps | Shopping Apps |",
"Purchase Intent* | Apps | Social Networking Apps |",
"Purchase Intent* | Apps | Sports Apps |",
"Purchase Intent* | Apps | Travel Apps |",
"Purchase Intent* | Apps | Weather Apps |",
"Purchase Intent* | Arts and Entertainment",
"Purchase Intent* | Arts and Entertainment | Aviation Shows |",
"Purchase Intent* | Arts and Entertainment | Blogs/Forums/Social Networks |",
"Purchase Intent* | Arts and Entertainment | Cinemas and Movie Events |",
"Purchase Intent* | Arts and Entertainment | Comedy Events |",
"Purchase Intent* | Arts and Entertainment | Concerts |",
"Purchase Intent* | Arts and Entertainment | Culture and Fine Arts |",
"Purchase Intent* | Arts and Entertainment | Exhibitions |",
"Purchase Intent* | Arts and Entertainment | Experiences and Events |",
"Purchase Intent* | Arts and Entertainment | Fairs and Farmer's Markets |",
"Purchase Intent* | Arts and Entertainment | Fan Conventions |",
"Purchase Intent* | Arts and Entertainment | Fantasy Sports |",
"Purchase Intent* | Arts and Entertainment | Fashion Events |",
"Purchase Intent* | Arts and Entertainment | Museums and Galleries |",
"Purchase Intent* | Arts and Entertainment | Music and Video Streaming Services |",
"Purchase Intent* | Arts and Entertainment | Nightclubs |",
"Purchase Intent* | Arts and Entertainment | Online Entertainment |",
"Purchase Intent* | Arts and Entertainment | Parks and Wildlife |",
"Purchase Intent* | Arts and Entertainment | Radio and Podcasts |",
"Purchase Intent* | Arts and Entertainment | Sporting Events |",
"Purchase Intent* | Arts and Entertainment | Theatre and Musicals |",
"Purchase Intent* | Arts and Entertainment | Theme and Amusement Parks |",
"Purchase Intent* | Arts and Entertainment | Ticket Services |",
"Purchase Intent* | Arts and Entertainment | Zoos and Aquariums |",
"Purchase Intent* | Automotive Ownership",
"Purchase Intent* | Automotive Ownership | Budget Cars |",
"Purchase Intent* | Automotive Ownership | Classic Cars |",
"Purchase Intent* | Automotive Ownership | Commercial Trucks |",
"Purchase Intent* | Automotive Ownership | Concept Cars |",
"Purchase Intent* | Automotive Ownership | Crossover |",
"Purchase Intent* | Automotive Ownership | Driverless Cars |",
"Purchase Intent* | Automotive Ownership | Green Vehicles |",
"Purchase Intent* | Automotive Ownership | Luxury Cars |",
"Purchase Intent* | Automotive Ownership | Minivan |",
"Purchase Intent* | Automotive Ownership | Motorbikes |",
"Purchase Intent* | Automotive Ownership | New Vehicles |",
"Purchase Intent* | Automotive Ownership | Off-Road Vehicles |",
"Purchase Intent* | Automotive Ownership | Other Vehicles |",
"Purchase Intent* | Automotive Ownership | Performance Cars |",
"Purchase Intent* | Automotive Ownership | Pickup Trucks |",
"Purchase Intent* | Automotive Ownership | Pre-Owned Vehicles |",
"Purchase Intent* | Automotive Ownership | SUV |",
"Purchase Intent* | Automotive Ownership | Sedan |",
"Purchase Intent* | Automotive Ownership | Station Wagon |",
"Purchase Intent* | Automotive Ownership | Van |",
"Purchase Intent* | Automotive Products",
"Purchase Intent* | Automotive Products | Automotive Care Products |",
"Purchase Intent* | Automotive Products | Automotive Parts and Accessories |",
"Purchase Intent* | Automotive Products | Automotive Tires |",
"Purchase Intent* | Automotive Products | Car Alarms |",
"Purchase Intent* | Automotive Products | Car Amplifiers |",
"Purchase Intent* | Automotive Products | Car Navigation Equipment |",
"Purchase Intent* | Automotive Products | Car Seats |",
"Purchase Intent* | Automotive Products | Car Speakers |",
"Purchase Intent* | Automotive Services",
"Purchase Intent* | Automotive Services | Auto Towing and Repair |",
"Purchase Intent* | Beauty Services",
"Purchase Intent* | Beauty Services | Beauty Salons and Tanning |",
"Purchase Intent* | Beauty Services | Hair Salons |",
"Purchase Intent* | Beauty Services | Nail Salons |",
"Purchase Intent* | Beauty Services | Piercing and Tattooing |",
"Purchase Intent* | Beauty Services | Spas |",
"Purchase Intent* | Business and Industrial",
"Purchase Intent* | Business and Industrial | Advertising and Marketing |",
"Purchase Intent* | Business and Industrial | Aerospace and Defense |",
"Purchase Intent* | Business and Industrial | Auctions |",
"Purchase Intent* | Business and Industrial | Business Telecom Services |",
"Purchase Intent* | Business and Industrial | Cell Phone Stores |",
"Purchase Intent* | Business and Industrial | Conferences/Events/Seminars |",
"Purchase Intent* | Business and Industrial | Construction and Engineering |",
"Purchase Intent* | Business and Industrial | Department Stores |",
"Purchase Intent* | Business and Industrial | Electric Power Industry |",
"Purchase Intent* | Business and Industrial | Energy Industry |",
"Purchase Intent* | Business and Industrial | Energy Services |",
"Purchase Intent* | Business and Industrial | Factory Outlet Stores |",
"Purchase Intent* | Business and Industrial | Forestry and Logging |",
"Purchase Intent* | Business and Industrial | Government |",
"Purchase Intent* | Business and Industrial | Grocery Stores and Supermarkets |",
"Purchase Intent* | Business and Industrial | Home Internet Services |",
"Purchase Intent* | Business and Industrial | Home Phone Services |",
"Purchase Intent* | Business and Industrial | Home Television Services |",
"Purchase Intent* | Business and Industrial | Human Resources |",
"Purchase Intent* | Business and Industrial | Industrials |",
"Purchase Intent* | Business and Industrial | Laundry and Dry Cleaning Services |",
"Purchase Intent* | Business and Industrial | Law Enforcement |",
"Purchase Intent* | Business and Industrial | Manufacturing |",
"Purchase Intent* | Business and Industrial | Material Handling |",
"Purchase Intent* | Business and Industrial | Medical and Biotechnology |",
"Purchase Intent* | Business and Industrial | Mining and Quarrying |",
"Purchase Intent* | Business and Industrial | Mobile Phone Plans |",
"Purchase Intent* | Business and Industrial | Music Stores |",
"Purchase Intent* | Business and Industrial | Oil, Gas and Consumable Fuels |",
"Purchase Intent* | Business and Industrial | Photographers |",
"Purchase Intent* | Business and Industrial | Printing/Fax/WiFi Services |",
"Purchase Intent* | Business and Industrial | Public Relations and Strategic Communication |",
"Purchase Intent* | Business and Industrial | Shopping Malls |",
"Purchase Intent* | Business and Industrial | Small Business |",
"Purchase Intent* | Business and Industrial | Specialty Stores |",
"Purchase Intent* | Business and Industrial | Telecom Services |",
"Purchase Intent* | Business and Industrial | Trading Companies and Distributors |",
"Purchase Intent* | Business and Industrial | Transportation |",
"Purchase Intent* | Business and Industrial | Waste Disposal and Recycling |",
"Purchase Intent* | Clothing and Accessories",
"Purchase Intent* | Clothing and Accessories | Children's Clothing |",
"Purchase Intent* | Clothing and Accessories | Clothing Accessories |",
"Purchase Intent* | Clothing and Accessories | Costumes and Accessories |",
"Purchase Intent* | Clothing and Accessories | Footwear Accessories |",
"Purchase Intent* | Clothing and Accessories | Footwear |",
"Purchase Intent* | Clothing and Accessories | Jewelry and Watches |",
"Purchase Intent* | Clothing and Accessories | Maternity Clothing |",
"Purchase Intent* | Clothing and Accessories | Men's Clothing |",
"Purchase Intent* | Clothing and Accessories | Sportswear |",
"Purchase Intent* | Clothing and Accessories | Underwear and Lingerie |",
"Purchase Intent* | Clothing and Accessories | Wedding Dresses/Bridal Wear/Tuxedos |",
"Purchase Intent* | Clothing and Accessories | Women's Clothing |",
"Purchase Intent* | Collectables and Antiques",
"Purchase Intent* | Collectables and Antiques | Antiques |",
"Purchase Intent* | Collectables and Antiques | Coins and Paper Money |",
"Purchase Intent* | Collectables and Antiques | Collectibles |",
"Purchase Intent* | Collectables and Antiques | Entertainment Memorabilia |",
"Purchase Intent* | Collectables and Antiques | Sports Memorabilia and Trading Cards |",
"Purchase Intent* | Collectables and Antiques | Stamps |",
"Purchase Intent* | Consumer Electronics | Arcade Equipment |",
"Purchase Intent* | Consumer Electronics | Audio |",
"Purchase Intent* | Consumer Electronics | Blu-Ray Disc Players |",
"Purchase Intent* | Consumer Electronics | CD Players |",
"Purchase Intent* | Consumer Electronics | Camcorders |",
"Purchase Intent* | Consumer Electronics | Camera and Photo Accessories |",
"Purchase Intent* | Consumer Electronics | Cameras and Photo |",
"Purchase Intent* | Consumer Electronics | Cameras |",
"Purchase Intent* | Consumer Electronics | Circuit Boards and Components |",
"Purchase Intent* | Consumer Electronics | Communications Electronics |",
"Purchase Intent* | Consumer Electronics | Components |",
"Purchase Intent* | Consumer Electronics | Computers |",
"Purchase Intent* | Consumer Electronics | Desktops |",
"Purchase Intent* | Consumer Electronics | E-Readers |",
"Purchase Intent* | Consumer Electronics | Electronics Accessories |",
"Purchase Intent* | Consumer Electronics | Headphones |",
"Purchase Intent* | Consumer Electronics | Home Theater Systems |",
"Purchase Intent* | Consumer Electronics | Laptops |",
"Purchase Intent* | Consumer Electronics | Marine Electronics |",
"Purchase Intent* | Consumer Electronics | Mobile Phone Plans |",
"Purchase Intent* | Consumer Electronics | Mobile Phones and Accessories |",
"Purchase Intent* | Consumer Electronics | Networking |",
"Purchase Intent* | Consumer Electronics | Printers/Copiers/Scanners/Fax |",
"Purchase Intent* | Consumer Electronics | Security Devices |",
"Purchase Intent* | Consumer Electronics | Tablets |",
"Purchase Intent* | Consumer Electronics | Televisions |",
"Purchase Intent* | Consumer Electronics | Video Game Console Accessories |",
"Purchase Intent* | Consumer Electronics | Video Games and Consoles |",
"Purchase Intent* | Consumer Electronics | Video |",
"Purchase Intent* | Consumer Packaged Goods | Air Conditioners |",
"Purchase Intent* | Consumer Packaged Goods | Air Fresheners |",
"Purchase Intent* | Consumer Packaged Goods | Air Purifiers |",
"Purchase Intent* | Consumer Packaged Goods | Asian food |",
"Purchase Intent* | Consumer Packaged Goods | Automobile Fluids/Antifreeze |",
"Purchase Intent* | Consumer Packaged Goods | Automobile Waxes/Polishes |",
"Purchase Intent* | Consumer Packaged Goods | Automotive |",
"Purchase Intent* | Consumer Packaged Goods | Baby Bath and Potty Products |",
"Purchase Intent* | Consumer Packaged Goods | Baby Bouncers and Rockers |",
"Purchase Intent* | Consumer Packaged Goods | Baby Carriers |",
"Purchase Intent* | Consumer Packaged Goods | Baby Food |",
"Purchase Intent* | Consumer Packaged Goods | Baby Gift Sets |",
"Purchase Intent* | Consumer Packaged Goods | Baby Safety Products |",
"Purchase Intent* | Consumer Packaged Goods | Baby Toys and Activity Equipment |",
"Purchase Intent* | Consumer Packaged Goods | Baby and Toddler Products |",
"Purchase Intent* | Consumer Packaged Goods | Back to School Supplies |",
"Purchase Intent* | Consumer Packaged Goods | Bakery Snacks |",
"Purchase Intent* | Consumer Packaged Goods | Bakery |",
"Purchase Intent* | Consumer Packaged Goods | Baking Needs |",
"Purchase Intent* | Consumer Packaged Goods | Baking Nuts |",
"Purchase Intent* | Consumer Packaged Goods | Baking |",
"Purchase Intent* | Consumer Packaged Goods | Barbeque Sauce |",
"Purchase Intent* | Consumer Packaged Goods | Barbeque |",
"Purchase Intent* | Consumer Packaged Goods | Bath/Body Scrubbers/Massagers |",
"Purchase Intent* | Consumer Packaged Goods | Bathroom Accessories |",
"Purchase Intent* | Consumer Packaged Goods | Beauty |",
"Purchase Intent* | Consumer Packaged Goods | Bedroom Furniture and Accessories |",
"Purchase Intent* | Consumer Packaged Goods | Beverages |",
"Purchase Intent* | Consumer Packaged Goods | Books and Audio Books |",
"Purchase Intent* | Consumer Packaged Goods | Bottled Water |",
"Purchase Intent* | Consumer Packaged Goods | Bottles |",
"Purchase Intent* | Consumer Packaged Goods | Breadmakers |",
"Purchase Intent* | Consumer Packaged Goods | Breakfast Food |",
"Purchase Intent* | Consumer Packaged Goods | Breakfast |",
"Purchase Intent* | Consumer Packaged Goods | CDs and Vinyl Records |",
"Purchase Intent* | Consumer Packaged Goods | Candles |",
"Purchase Intent* | Consumer Packaged Goods | Candy |",
"Purchase Intent* | Consumer Packaged Goods | Canned/Bottled Fruit |",
"Purchase Intent* | Consumer Packaged Goods | Carbonated Soft Drinks |",
"Purchase Intent* | Consumer Packaged Goods | Carpets and Rugs |",
"Purchase Intent* | Consumer Packaged Goods | Cat/Dog Litter |",
"Purchase Intent* | Consumer Packaged Goods | Charcoal Lighter Fluids |",
"Purchase Intent* | Consumer Packaged Goods | Children's Art Supplies |",
"Purchase Intent* | Consumer Packaged Goods | Chocolate Candy |",
"Purchase Intent* | Consumer Packaged Goods | Cleaning Tools/Mops/Brooms |",
"Purchase Intent* | Consumer Packaged Goods | Cocktail Mixes |",
"Purchase Intent* | Consumer Packaged Goods | Coffee & Tea |",
"Purchase Intent* | Consumer Packaged Goods | Coffee Creamer |",
"Purchase Intent* | Consumer Packaged Goods | Coffee Filters |",
"Purchase Intent* | Consumer Packaged Goods | Coffee Grinders |",
"Purchase Intent* | Consumer Packaged Goods | Coffee Makers |",
"Purchase Intent* | Consumer Packaged Goods | Coffee |",
"Purchase Intent* | Consumer Packaged Goods | Condiments & Sauces |",
"Purchase Intent* | Consumer Packaged Goods | Cookies & Crackers |",
"Purchase Intent* | Consumer Packaged Goods | Cookies |",
"Purchase Intent* | Consumer Packaged Goods | Cosmetics Accessories |",
"Purchase Intent* | Consumer Packaged Goods | Cosmetics |",
"Purchase Intent* | Consumer Packaged Goods | Cosmetics-Nail |",
"Purchase Intent* | Consumer Packaged Goods | Cream Cheese/Cr Spread |",
"Purchase Intent* | Consumer Packaged Goods | Culinary |",
"Purchase Intent* | Consumer Packaged Goods | DVDs |",
"Purchase Intent* | Consumer Packaged Goods | Dairy |",
"Purchase Intent* | Consumer Packaged Goods | Dehumidifiers |",
"Purchase Intent* | Consumer Packaged Goods | Dessert Toppings |",
"Purchase Intent* | Consumer Packaged Goods | Desserts |",
"Purchase Intent* | Consumer Packaged Goods | Diapers |",
"Purchase Intent* | Consumer Packaged Goods | Dinners |",
"Purchase Intent* | Consumer Packaged Goods | Dishwashers |",
"Purchase Intent* | Consumer Packaged Goods | Disposable Tableware |",
"Purchase Intent* | Consumer Packaged Goods | Drinkware |",
"Purchase Intent* | Consumer Packaged Goods | Dry Packaged Dinner Mixes |",
"Purchase Intent* | Consumer Packaged Goods | Electric Shaver Groomer |",
"Purchase Intent* | Consumer Packaged Goods | Electronics/Photography |",
"Purchase Intent* | Consumer Packaged Goods | Energy Drinks |",
"Purchase Intent* | Consumer Packaged Goods | Espresso Machines |",
"Purchase Intent* | Consumer Packaged Goods | Ethnic |",
"Purchase Intent* | Consumer Packaged Goods | Eye |",
"Purchase Intent* | Consumer Packaged Goods | Fans |",
"Purchase Intent* | Consumer Packaged Goods | Firelog/Firestarter/Firewood |",
"Purchase Intent* | Consumer Packaged Goods | Fireplaces |",
"Purchase Intent* | Consumer Packaged Goods | Flashlights |",
"Purchase Intent* | Consumer Packaged Goods | Food & Trash Bags |",
"Purchase Intent* | Consumer Packaged Goods | Food Processors |",
"Purchase Intent* | Consumer Packaged Goods | Fragrance |",
"Purchase Intent* | Consumer Packaged Goods | Fragrances - Women's |",
"Purchase Intent* | Consumer Packaged Goods | Fresh Bread & Rolls |",
"Purchase Intent* | Consumer Packaged Goods | Frozen Beverages |",
"Purchase Intent* | Consumer Packaged Goods | Frozen Desserts |",
"Purchase Intent* | Consumer Packaged Goods | Frozen Meals |",
"Purchase Intent* | Consumer Packaged Goods | Frozen Meat/Poultry/Seafood |",
"Purchase Intent* | Consumer Packaged Goods | Frozen Snacks |",
"Purchase Intent* | Consumer Packaged Goods | Frt & Veg Preservative/Pectin |",
"Purchase Intent* | Consumer Packaged Goods | Fruit |",
"Purchase Intent* | Consumer Packaged Goods | Games |",
"Purchase Intent* | Consumer Packaged Goods | General Food |",
"Purchase Intent* | Consumer Packaged Goods | General Merchandise |",
"Purchase Intent* | Consumer Packaged Goods | Grooming Supplies |",
"Purchase Intent* | Consumer Packaged Goods | Hair Accessories |",
"Purchase Intent* | Consumer Packaged Goods | Hair Appliances |",
"Purchase Intent* | Consumer Packaged Goods | Hair Care |",
"Purchase Intent* | Consumer Packaged Goods | Hair Coloring |",
"Purchase Intent* | Consumer Packaged Goods | Hair Conditioner |",
"Purchase Intent* | Consumer Packaged Goods | Hair Growth Products |",
"Purchase Intent* | Consumer Packaged Goods | Heaters |",
"Purchase Intent* | Consumer Packaged Goods | Home Care |",
"Purchase Intent* | Consumer Packaged Goods | Home Decor |",
"Purchase Intent* | Consumer Packaged Goods | Home Permanent/Relaxer Kits |",
"Purchase Intent* | Consumer Packaged Goods | Home and Garden Products |",
"Purchase Intent* | Consumer Packaged Goods | Household Appliances |",
"Purchase Intent* | Consumer Packaged Goods | Household Cleaner Cloths |",
"Purchase Intent* | Consumer Packaged Goods | Household Cleaner |",
"Purchase Intent* | Consumer Packaged Goods | Household Cleaning |",
"Purchase Intent* | Consumer Packaged Goods | Household Plastics |",
"Purchase Intent* | Consumer Packaged Goods | Household/Plastics/Storage |",
"Purchase Intent* | Consumer Packaged Goods | Housewares |",
"Purchase Intent* | Consumer Packaged Goods | Humidifiers |",
"Purchase Intent* | Consumer Packaged Goods | Ice Cream Cones/Mixes |",
"Purchase Intent* | Consumer Packaged Goods | Ice Cream Makers |",
"Purchase Intent* | Consumer Packaged Goods | Ice Cream/Sherbet |",
"Purchase Intent* | Consumer Packaged Goods | Kitchen Storage |",
"Purchase Intent* | Consumer Packaged Goods | Kitchen and Dining Products |",
"Purchase Intent* | Consumer Packaged Goods | Laundry Care |",
"Purchase Intent* | Consumer Packaged Goods | Laundry |",
"Purchase Intent* | Consumer Packaged Goods | Lawn and Garden Products |",
"Purchase Intent* | Consumer Packaged Goods | Lighters |",
"Purchase Intent* | Consumer Packaged Goods | Lighting |",
"Purchase Intent* | Consumer Packaged Goods | Linens and Bedding |",
"Purchase Intent* | Consumer Packaged Goods | Liquid Drink Enhancers |",
"Purchase Intent* | Consumer Packaged Goods | Luggage and Bags |",
"Purchase Intent* | Consumer Packaged Goods | Luncheon Meats |",
"Purchase Intent* | Consumer Packaged Goods | Magazines and Newspapers |",
"Purchase Intent* | Consumer Packaged Goods | Matzoh Food |",
"Purchase Intent* | Consumer Packaged Goods | Meals |",
"Purchase Intent* | Consumer Packaged Goods | Meat |",
"Purchase Intent* | Consumer Packaged Goods | Media |",
"Purchase Intent* | Consumer Packaged Goods | Mexican Foods |",
"Purchase Intent* | Consumer Packaged Goods | Mexican Sauce |",
"Purchase Intent* | Consumer Packaged Goods | Microwave Ovens |",
"Purchase Intent* | Consumer Packaged Goods | Milk |",
"Purchase Intent* | Consumer Packaged Goods | Miscellaneous General Merch |",
"Purchase Intent* | Consumer Packaged Goods | Mixers |",
"Purchase Intent* | Consumer Packaged Goods | Motor Oil |",
"Purchase Intent* | Consumer Packaged Goods | Natural Cheese |",
"Purchase Intent* | Consumer Packaged Goods | Non-Chocolate Candy |",
"Purchase Intent* | Consumer Packaged Goods | Non-Fruit Drinks |",
"Purchase Intent* | Consumer Packaged Goods | Novelties |",
"Purchase Intent* | Consumer Packaged Goods | Nursing and Feeding Products |",
"Purchase Intent* | Consumer Packaged Goods | Nut Butter |",
"Purchase Intent* | Consumer Packaged Goods | Office Products |",
"Purchase Intent* | Consumer Packaged Goods | Office/School Supplies |",
"Purchase Intent* | Consumer Packaged Goods | Other Breakfast Foods |",
"Purchase Intent* | Consumer Packaged Goods | Other Condiments |",
"Purchase Intent* | Consumer Packaged Goods | Other Food |",
"Purchase Intent* | Consumer Packaged Goods | Other Grooming Supplies |",
"Purchase Intent* | Consumer Packaged Goods | Other Refrigerated |",
"Purchase Intent* | Consumer Packaged Goods | Other Snacks |",
"Purchase Intent* | Consumer Packaged Goods | Outdoor Insect/Rodent Control Chem |",
"Purchase Intent* | Consumer Packaged Goods | Outdoor Play Equipment |",
"Purchase Intent* | Consumer Packaged Goods | Outdoor/Lawn Fertilizer/Weed Killer |",
"Purchase Intent* | Consumer Packaged Goods | Personal Cleansing |",
"Purchase Intent* | Consumer Packaged Goods | Pest Control |",
"Purchase Intent* | Consumer Packaged Goods | Pet Care |",
"Purchase Intent* | Consumer Packaged Goods | Pet Food |",
"Purchase Intent* | Consumer Packaged Goods | Pet Supplies |",
"Purchase Intent* | Consumer Packaged Goods | Photography Supplies |",
"Purchase Intent* | Consumer Packaged Goods | Pizza Products |",
"Purchase Intent* | Consumer Packaged Goods | Pizza |",
"Purchase Intent* | Consumer Packaged Goods | Plain Vegetables |",
"Purchase Intent* | Consumer Packaged Goods | Plants |",
"Purchase Intent* | Consumer Packaged Goods | Pool/Spa Chemicals |",
"Purchase Intent* | Consumer Packaged Goods | Popcorn/Popcorn Oil |",
"Purchase Intent* | Consumer Packaged Goods | Poultry |",
"Purchase Intent* | Consumer Packaged Goods | Powdered Milk |",
"Purchase Intent* | Consumer Packaged Goods | Processed Cheese |",
"Purchase Intent* | Consumer Packaged Goods | Processed Poultry |",
"Purchase Intent* | Consumer Packaged Goods | Refrigerated Beverages |",
"Purchase Intent* | Consumer Packaged Goods | Refrigerated Condiments |",
"Purchase Intent* | Consumer Packaged Goods | Refrigerated Desserts |",
"Purchase Intent* | Consumer Packaged Goods | Refrigerated Meals |",
"Purchase Intent* | Consumer Packaged Goods | Refrigerated |",
"Purchase Intent* | Consumer Packaged Goods | Refrigerators |",
"Purchase Intent* | Consumer Packaged Goods | Religious Items |",
"Purchase Intent* | Consumer Packaged Goods | Seafood |",
"Purchase Intent* | Consumer Packaged Goods | Shaving Lotion/Men's Fragrance |",
"Purchase Intent* | Consumer Packaged Goods | Shoe Polish & Accessories |",
"Purchase Intent* | Consumer Packaged Goods | Skin Care |",
"Purchase Intent* | Consumer Packaged Goods | Snack Nuts/Seeds/Corn Nuts |",
"Purchase Intent* | Consumer Packaged Goods | Snacks |",
"Purchase Intent* | Consumer Packaged Goods | Socks |",
"Purchase Intent* | Consumer Packaged Goods | Spices/Seasonings |",
"Purchase Intent* | Consumer Packaged Goods | Sports Drinks |",
"Purchase Intent* | Consumer Packaged Goods | Sports/Energy Drinks |",
"Purchase Intent* | Consumer Packaged Goods | Storage |",
"Purchase Intent* | Consumer Packaged Goods | Strollers and Joggers |",
"Purchase Intent* | Consumer Packaged Goods | Sugar Substitutes |",
"Purchase Intent* | Consumer Packaged Goods | Tea - Bags/loose |",
"Purchase Intent* | Consumer Packaged Goods | Tea - Instant Tea Mixes |",
"Purchase Intent* | Consumer Packaged Goods | Tea Kettles |",
"Purchase Intent* | Consumer Packaged Goods | Tea/Coffee - Ready-to-Drink |",
"Purchase Intent* | Consumer Packaged Goods | Tea/Coffee |",
"Purchase Intent* | Consumer Packaged Goods | Toys and Games |",
"Purchase Intent* | Consumer Packaged Goods | Toys |",
"Purchase Intent* | Consumer Packaged Goods | Vegetables |",
"Purchase Intent* | Consumer Packaged Goods | Washers and Dryers |",
"Purchase Intent* | Consumer Packaged Goods | Water Softeners/Treatment |",
"Purchase Intent* | Consumer Packaged Goods | Water Treatment |",
"Purchase Intent* | Consumer Packaged Goods | Water |",
"Purchase Intent* | Consumer Packaged Goods | Writing Instruments |",
"Purchase Intent* | Consumer Packaged Goods | Yogurt |",
"Purchase Intent* | Education and Careers",
"Purchase Intent* | Education and Careers | Adult Education |",
"Purchase Intent* | Education and Careers | Career Improvement and Advice |",
"Purchase Intent* | Education and Careers | Colleges and Universities |",
"Purchase Intent* | Education and Careers | Employment Agencies |",
"Purchase Intent* | Education and Careers | Language Learning |",
"Purchase Intent* | Education and Careers | Online Education |",
"Purchase Intent* | Education and Careers | Study Skills |",
"Purchase Intent* | Education and Careers | Teaching Resources |",
"Purchase Intent* | Family and Parenting",
"Purchase Intent* | Family and Parenting | Childcare |",
"Purchase Intent* | Family and Parenting | Day Care Centers |",
"Purchase Intent* | Family and Parenting | Genealogy and Family Trees |",
"Purchase Intent* | Family and Parenting | Kids Activities |",
"Purchase Intent* | Family and Parenting | Nanny Services |",
"Purchase Intent* | Finance and Insurance | Auto Insurance |",
"Purchase Intent* | Finance and Insurance | Banking |",
"Purchase Intent* | Finance and Insurance | Credit and Debt Repair/Credit Reporting |",
"Purchase Intent* | Finance and Insurance | Home Insurance |",
"Purchase Intent* | Finance and Insurance | Insurance |",
"Purchase Intent* | Finance and Insurance | Medical Insurance |",
"Purchase Intent* | Finance and Insurance | Retirement Planning |",
"Purchase Intent* | Finance and Insurance | Student Financial Aid |",
"Purchase Intent* | Finance and Insurance | Tax Preparation Services |",
"Purchase Intent* | Food and Beverage Services",
"Purchase Intent* | Food and Beverage Services | Bakeries |",
"Purchase Intent* | Food and Beverage Services | Bars |",
"Purchase Intent* | Food and Beverage Services | Catering |",
"Purchase Intent* | Food and Beverage Services | Fast Food |",
"Purchase Intent* | Food and Beverage Services | Food Delivery Services |",
"Purchase Intent* | Food and Beverage Services | Restaurants |",
"Purchase Intent* | Furniture | BBQ/Grills/Outdoor Dining |",
"Purchase Intent* | Furniture | Baby and Toddler Furniture |",
"Purchase Intent* | Furniture | Beds and Accessories |",
"Purchase Intent* | Furniture | Cabinets and Storage |",
"Purchase Intent* | Furniture | Chairs |",
"Purchase Intent* | Furniture | Entertainment Centers and TV Stands |",
"Purchase Intent* | Furniture | Furniture Sets |",
"Purchase Intent* | Furniture | Outdoor Furniture |",
"Purchase Intent* | Gifts and Holiday Items",
"Purchase Intent* | Gifts and Holiday Items | Flowers |",
"Purchase Intent* | Gifts and Holiday Items | Gift Baskets |",
"Purchase Intent* | Gifts and Holiday Items | Gift Cards and Coupons |",
"Purchase Intent* | Gifts and Holiday Items | Gift Certificates |",
"Purchase Intent* | Gifts and Holiday Items | Greeting Cards |",
"Purchase Intent* | Gifts and Holiday Items | Holiday and Ethnic Items |",
"Purchase Intent* | Gifts and Holiday Items | Party Goods |",
"Purchase Intent* | Hardware Supplies | Agriculture and Farming Equipment |",
"Purchase Intent* | Hardware Supplies | Electrical Equipment |",
"Purchase Intent* | Hardware Supplies | Fuel Containers and Tanks |",
"Purchase Intent* | Hardware Supplies | Hardware Pumps |",
"Purchase Intent* | Hardware Supplies | Heating/Ventilation/Air Conditioning |",
"Purchase Intent* | Hardware Supplies | Plumbing Supplies |",
"Purchase Intent* | Hardware Supplies | Tools |",
"Purchase Intent* | Hardware Supplies | Work Safety Protective Gear |",
"Purchase Intent* | Health and Medical Services",
"Purchase Intent* | Health and Medical Services | Alternative and Natural Medicine |",
"Purchase Intent* | Health and Medical Services | Chiropractors |",
"Purchase Intent* | Health and Medical Services | Clinical Research |",
"Purchase Intent* | Health and Medical Services | Cosmetic Medical Services |",
"Purchase Intent* | Health and Medical Services | Dental Care |",
"Purchase Intent* | Health and Medical Services | Drugstores and Pharmacies |",
"Purchase Intent* | Health and Medical Services | Elder Care |",
"Purchase Intent* | Health and Medical Services | Hair Loss Treatments |",
"Purchase Intent* | Health and Medical Services | Health Care and Physicians |",
"Purchase Intent* | Health and Medical Services | Hospitals |",
"Purchase Intent* | Health and Medical Services | Massage Therapists |",
"Purchase Intent* | Health and Medical Services | Physical Therapists |",
"Purchase Intent* | Health and Medical Services | Skin Care Treatments |",
"Purchase Intent* | Health and Medical Services | Smoking Cessation |",
"Purchase Intent* | Health and Medical Services | Vaccines |",
"Purchase Intent* | Health and Medical Services | Vision Care |",
"Purchase Intent* | Hobbies and Interests",
"Purchase Intent* | Hobbies and Interests | Arts and Crafts |",
"Purchase Intent* | Hobbies and Interests | Musical Instruments and Accessories |",
"Purchase Intent* | Hobbies and Interests | Psychics and Astrology |",
"Purchase Intent* | Home and Garden Services | Appliance Repair |",
"Purchase Intent* | Home and Garden Services | Business and Home Security Services |",
"Purchase Intent* | Home and Garden Services | Emergency Preparedness |",
"Purchase Intent* | Home and Garden Services | Flood, Fire and Gas Safety |",
"Purchase Intent* | Home and Garden Services | Gas and Electric Services |",
"Purchase Intent* | Home and Garden Services | Home Improvement and Repair |",
"Purchase Intent* | Home and Garden Services | Housekeeping Services |",
"Purchase Intent* | Home and Garden Services | Landscaping Services |",
"Purchase Intent* | Home and Garden Services | Lawn and Garden Services |",
"Purchase Intent* | Home and Garden Services | Pest Exterminators |",
"Purchase Intent* | Home and Garden Services | Plumbers |",
"Purchase Intent* | Home and Garden Services | Pool and Spa Installation and Maintenance |",
"Purchase Intent* | Home and Garden Services | Remodeling and Construction |",
"Purchase Intent* | Home and Garden Services | Water Services |",
"Purchase Intent* | Legal Services",
"Purchase Intent* | Legal Services | Attorneys |",
"Purchase Intent* | Legal Services | Bail Bonds |",
"Purchase Intent* | Life Events | Anniversary |",
"Purchase Intent* | Life Events | Baby Showers |",
"Purchase Intent* | Life Events | Bachelor and Bachelorette Parties |",
"Purchase Intent* | Life Events | Birthdays |",
"Purchase Intent* | Life Events | Births |",
"Purchase Intent* | Life Events | Funeral Supplies and Services |",
"Purchase Intent* | Life Events | Graduations |",
"Purchase Intent* | Life Events | Proms |",
"Purchase Intent* | Life Events | Wedding Services and Supplies |",
"Purchase Intent* | Logistics and Delivery",
"Purchase Intent* | Logistics and Delivery | Shipping Services |",
"Purchase Intent* | Logistics and Delivery | Storage Facilities |",
"Purchase Intent* | Non-Profits | Charities and Donations |",
"Purchase Intent* | Non-Profits | Civic Organizations |",
"Purchase Intent* | Non-Profits | Military Organizations |",
"Purchase Intent* | Non-Profits | NGOs |",
"Purchase Intent* | Office Equipment and Supplies",
"Purchase Intent* | Office Equipment and Supplies | Office Furniture |",
"Purchase Intent* | Office Equipment and Supplies | Stationery |",
"Purchase Intent* | Pet Services",
"Purchase Intent* | Pet Services | Pet Breeders |",
"Purchase Intent* | Pet Services | Pet Grooming |",
"Purchase Intent* | Pet Services | Pet Sitting |",
"Purchase Intent* | Pet Services | Pet Stores |",
"Purchase Intent* | Pet Services | Veterinary Services |",
"Purchase Intent* | Pharmaceuticals, Conditions, and Symptoms",
"Purchase Intent* | Real Estate | Commercial Real Estate |",
"Purchase Intent* | Real Estate | Real Estate Rentals |",
"Purchase Intent* | Real Estate | Real Estate Sales |",
"Purchase Intent* | Real Estate | Real Estate Services For Owners |",
"Purchase Intent* | Real Estate | Residential Real Estate |",
"Purchase Intent* | Recreation and Fitness Activities | Dance Studios |",
"Purchase Intent* | Recreation and Fitness Activities | Gyms and Health Clubs |",
"Purchase Intent* | Recreation and Fitness Activities | Participant Sports Leagues |",
"Purchase Intent* | Recreation and Fitness Activities | Personal Trainers |",
"Purchase Intent* | Recreation and Fitness Activities | Self Defense and Martial Arts Classes |",
"Purchase Intent* | Recreation and Fitness Activities | Swimming Facilities |",
"Purchase Intent* | Recreation and Fitness Activities | Yoga Studios |",
"Purchase Intent* | Software | Antivirus Software |",
"Purchase Intent* | Software | Computer Animation |",
"Purchase Intent* | Software | Digital Audio |",
"Purchase Intent* | Software | Digital Goods and Currency |",
"Purchase Intent* | Software | Gaming Software |",
"Purchase Intent* | Software | Graphics Software |",
"Purchase Intent* | Software | Messaging Software |",
"Purchase Intent* | Software | Photo Editing Software |",
"Purchase Intent* | Software | Productivity Software |",
"Purchase Intent* | Software | Shareware and Freeware |",
"Purchase Intent* | Sporting Goods",
"Purchase Intent* | Sporting Goods | Athletics Equipment |",
"Purchase Intent* | Sporting Goods | Baseball and Softball Equipment |",
"Purchase Intent* | Sporting Goods | Basketball Equipment |",
"Purchase Intent* | Sporting Goods | Bicycles and Cycling Equipment |",
"Purchase Intent* | Sporting Goods | Boating and Water Sports Equipment |",
"Purchase Intent* | Sporting Goods | Boxing and Martial Arts Equipment |",
"Purchase Intent* | Sporting Goods | Camping and Hiking Equipment |",
"Purchase Intent* | Sporting Goods | Climbing Equipment |",
"Purchase Intent* | Sporting Goods | Equestrian Equipment |",
"Purchase Intent* | Sporting Goods | Exercise and Fitness Equipment |",
"Purchase Intent* | Sporting Goods | Figure Skating and Hockey Equipment |",
"Purchase Intent* | Sporting Goods | Fishing Equipment |",
"Purchase Intent* | Sporting Goods | Football Equipment |",
"Purchase Intent* | Sporting Goods | General Purpose Athletic Equipment |",
"Purchase Intent* | Sporting Goods | Golf Equipment |",
"Purchase Intent* | Sporting Goods | Gymnastics Equipment |",
"Purchase Intent* | Sporting Goods | Hang Gliding and Skydiving Equipment |",
"Purchase Intent* | Sporting Goods | Hunting and Shooting Equipment |",
"Purchase Intent* | Sporting Goods | Indoor Games Equipment |",
"Purchase Intent* | Sporting Goods | Inline and Roller Skating Equipment |",
"Purchase Intent* | Sporting Goods | Outdoor Games Equipment |",
"Purchase Intent* | Sporting Goods | Outdoor Recreation Equipment |",
"Purchase Intent* | Sporting Goods | Skateboards and Accessories |",
"Purchase Intent* | Sporting Goods | Soccer Equipment |",
"Purchase Intent* | Sporting Goods | Tennis Equipment |",
"Purchase Intent* | Sporting Goods | Volleyball Equipment |",
"Purchase Intent* | Sporting Goods | Water Polo Equipment |",
"Purchase Intent* | Sporting Goods | Winter Sports Equipment |",
"Purchase Intent* | Sporting Goods | Wrestling Equipment |",
"Purchase Intent* | Travel and Tourism",
"Purchase Intent* | Travel and Tourism | Adventure Travel |",
"Purchase Intent* | Travel and Tourism | Air Travel |",
"Purchase Intent* | Travel and Tourism | Auto Rental |",
"Purchase Intent* | Travel and Tourism | Beach Travel |",
"Purchase Intent* | Travel and Tourism | Bed and Breakfasts |",
"Purchase Intent* | Travel and Tourism | Budget Travel |",
"Purchase Intent* | Travel and Tourism | Business Travel |",
"Purchase Intent* | Travel and Tourism | Camping |",
"Purchase Intent* | Travel and Tourism | Coach Travel |",
"Purchase Intent* | Travel and Tourism | Cruise Travel |",
"Purchase Intent* | Travel and Tourism | Family Travel |",
"Purchase Intent* | Travel and Tourism | Ferry Travel |",
"Purchase Intent* | Travel and Tourism | Honeymoons and Getaways |",
"Purchase Intent* | Travel and Tourism | Hotels and Resorts |",
"Purchase Intent* | Travel and Tourism | Motels |",
"Purchase Intent* | Travel and Tourism | Passenger Transportation |",
"Purchase Intent* | Travel and Tourism | Rail Travel |",
"Purchase Intent* | Travel and Tourism | Ride-sharing Services |",
"Purchase Intent* | Travel and Tourism | Road Trips |",
"Purchase Intent* | Travel and Tourism | Sightseeing Tours and Activities |",
"Purchase Intent* | Travel and Tourism | Spas |",
"Purchase Intent* | Travel and Tourism | Taxi Services |",
"Purchase Intent* | Travel and Tourism | Timeshares |",
"Purchase Intent* | Travel and Tourism | Travel Agents and Online Travel Services |",
"Purchase Intent* | Travel and Tourism | Travel Insurance |",
"Puzzles",
"Reference Apps",
"Religious Items",
"Research Paper Writing",
"Restaurants",
"Sailing",
"Sales",
"Screenwriting",
"Search",
"Self Employed",
"Shareware and Freeware",
"Shelving",
"Shipping Services",
"Shop Worker",
"Shopping",
"Shopping Apps",
"Shortening & Oil",
"Sightseeing Tours and Activities",
"Signage",
"Skiing",
"Skilled/Manual Work",
"Skin Care",
"Skin Care Treatments",
"Snacks",
"Snowboarding",
"Social Networking",
"Social Networking Apps",
"Soft AC Music",
"Software",
"Soups/Sides/Other",
"Sporting Events",
"Sports",
"Sports Apps",
"Sports Video Games",
"Storage Facilities",
"Strategy Video Games",
"Student",
"Study Skills",
"Stuffing Mixes",
"Swimming",
"Tables",
"Talk Radio",
"Teaching Resources",
"Technology Industry",
"Tights",
"Tools",
"Toys",
"Transportation",
"Travel",
"Travel Agents and Online Travel Services",
"Travel Apps",
"Unemployed / Job Seeker",
"Utilities Apps",
"Vegetables",
"Video",
"Video Game Console Accessories",
"Video Production",
"Video Software",
"Walking",
"Water Filter/Devices",
"Water Softeners/Treatment",
"Weather",
"Weather Apps",
"Web Conferencing",
"Web Development",
"Web Hosting",
"Web Hosting and Cloud Computing",
"Web Services",
"Weight Loss",
"Workshops and Classes",
"Writing Instruments",
"Young Adult Literature"
]
},
"category_counts": {
"iabcontent_names": 704,
"iabaudience_names": 1567
}
},
"model_config": {
"base_model": "Alibaba-NLP/gte-modernbert-base",
"max_seq_length": 64,
"tokenizer": "local",
"inputs": [
"input_ids",
"attention_mask"
]
},
"inference_config": {
"head_thresholds": {
"iabcontent_names": 0.6,
"iabaudience_names": 0.5
},
"threshold": 0.6
}
} |