> ## Documentation Index
> Fetch the complete documentation index at: https://docs.context.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# NAICS

> Classify brands using the 2022 NAICS taxonomy via the /web/naics endpoint

NAICS classification is available through a dedicated endpoint: [`GET /web/naics`](/api-reference/industry-classification/retrieve-naics-code-for-any-brand). Codes follow the **2022 NAICS** taxonomy published by the US Census Bureau.

## NAICS code structure

NAICS codes are hierarchical. Each digit narrows the classification:

| Level             | Digits | Example                                                  |
| ----------------- | ------ | -------------------------------------------------------- |
| Sector            | 2      | `54` — Professional, Scientific, and Technical Services  |
| Subsector         | 3      | `541` — Professional, Scientific, and Technical Services |
| Industry Group    | 4      | `5415` — Computer Systems Design and Related Services    |
| NAICS Industry    | 5      | `54151` — Computer Systems Design and Related Services   |
| National Industry | 6      | `541511` — Custom Computer Programming Services          |

Three sectors span multiple 2-digit prefixes: **Manufacturing** (`31-33`), **Retail Trade** (`44-45`), and **Transportation and Warehousing** (`48-49`).

The `/web/naics` endpoint returns **6-digit national industry codes** — the most specific level.

## Sectors

There are 20 sector groupings in the 2022 NAICS taxonomy:

| Code  | Sector                                                                   |
| ----- | ------------------------------------------------------------------------ |
| 11    | Agriculture, Forestry, Fishing and Hunting                               |
| 21    | Mining, Quarrying, and Oil and Gas Extraction                            |
| 22    | Utilities                                                                |
| 23    | Construction                                                             |
| 31-33 | Manufacturing                                                            |
| 42    | Wholesale Trade                                                          |
| 44-45 | Retail Trade                                                             |
| 48-49 | Transportation and Warehousing                                           |
| 51    | Information                                                              |
| 52    | Finance and Insurance                                                    |
| 53    | Real Estate and Rental and Leasing                                       |
| 54    | Professional, Scientific, and Technical Services                         |
| 55    | Management of Companies and Enterprises                                  |
| 56    | Administrative and Support and Waste Management and Remediation Services |
| 61    | Educational Services                                                     |
| 62    | Health Care and Social Assistance                                        |
| 71    | Arts, Entertainment, and Recreation                                      |
| 72    | Accommodation and Food Services                                          |
| 81    | Other Services (except Public Administration)                            |
| 92    | Public Administration                                                    |

## Request

| Parameter    | Type    | Required | Default | Notes                                                                                                                   |
| ------------ | ------- | -------- | ------- | ----------------------------------------------------------------------------------------------------------------------- |
| `input`      | string  | Yes      | —       | A brand domain or title. If a valid domain is provided, it's used directly; otherwise we search for the brand by title. |
| `minResults` | integer | No       | `1`     | Minimum number of NAICS codes to return. Range: 1–10.                                                                   |
| `maxResults` | integer | No       | `5`     | Maximum number of NAICS codes to return. Range: 1–10.                                                                   |
| `timeoutMS`  | integer | No       | —       | Optional request timeout (1,000–300,000 ms). Returns 408 if exceeded.                                                   |

## Response shape

```json theme={null}
{
  "status": "ok",
  "domain": "stripe.com",
  "type": "naics",
  "codes": [
    {
      "code": "522320",
      "name": "Financial Transactions Processing, Reserve, and Clearinghouse Activities",
      "confidence": "high"
    },
    {
      "code": "541511",
      "name": "Custom Computer Programming Services",
      "confidence": "medium"
    }
  ]
}
```

Each entry includes:

* **`code`** — the NAICS code (string).
* **`name`** — the official NAICS title for that code.
* **`confidence`** — `high`, `medium`, or `low`. Indicates how well the code matches the company.

<Tip>
  Use `minResults` / `maxResults` to control how aggressive the classification is. If you only want the strongest match, set both to `1`. For richer classification across diversified businesses, raise `maxResults` and filter by `confidence === "high"` downstream.
</Tip>

## Example

```typescript theme={null}
import ContextDev from "context.dev";

const client = new ContextDev({ apiKey: process.env.CONTEXT_DEV_API_KEY });

const { codes } = await client.industry.retrieveNaics({
  input: "stripe.com",
  minResults: 1,
  maxResults: 5,
});

const highConfidence = codes.filter(c => c.confidence === "high");
```

For the official taxonomy, see the [US Census NAICS reference](https://www.census.gov/naics/).

## Full list of 6-digit NAICS codes

All **1,012** national-industry (6-digit) codes returned by the API. Use the copy button on either code block to grab the entire list in one click — CSV for spreadsheets, JSON for programmatic use.

<Accordion title="View all 1,012 NAICS codes (click to expand)">
  <CodeGroup>
    ```csv NAICS.csv theme={null}
    code,name
    111110,Soybean Farming
    111120,Oilseed (except Soybean) Farming
    111130,Dry Pea and Bean Farming
    111140,Wheat Farming
    111150,Corn Farming
    111160,Rice Farming
    111191,Oilseed and Grain Combination Farming
    111199,All Other Grain Farming
    111211,Potato Farming
    111219,Other Vegetable (except Potato) and Melon Farming
    111310,Orange Groves
    111320,Citrus (except Orange) Groves
    111331,Apple Orchards
    111332,Grape Vineyards
    111333,Strawberry Farming
    111334,Berry (except Strawberry) Farming
    111335,Tree Nut Farming
    111336,Fruit and Tree Nut Combination Farming
    111339,Other Noncitrus Fruit Farming
    111411,Mushroom Production
    111419,Other Food Crops Grown Under Cover
    111421,Nursery and Tree Production
    111422,Floriculture Production
    111910,Tobacco Farming
    111920,Cotton Farming
    111930,Sugarcane Farming
    111940,Hay Farming
    111991,Sugar Beet Farming
    111992,Peanut Farming
    111998,All Other Miscellaneous Crop Farming
    112111,Beef Cattle Ranching and Farming
    112112,Cattle Feedlots
    112120,Dairy Cattle and Milk Production
    112130,Dual-Purpose Cattle Ranching and Farming
    112210,Hog and Pig Farming
    112310,Chicken Egg Production
    112320,Broilers and Other Meat Type Chicken Production
    112330,Turkey Production
    112340,Poultry Hatcheries
    112390,Other Poultry Production
    112410,Sheep Farming
    112420,Goat Farming
    112511,Finfish Farming and Fish Hatcheries
    112512,Shellfish Farming
    112519,Other Aquaculture
    112910,Apiculture
    112920,Horses and Other Equine Production
    112930,Fur-Bearing Animal and Rabbit Production
    112990,All Other Animal Production
    113110,Timber Tract Operations
    113210,Forest Nurseries and Gathering of Forest Products
    113310,Logging
    114111,Finfish Fishing
    114112,Shellfish Fishing
    114119,Other Marine Fishing
    114210,Hunting and Trapping
    115111,Cotton Ginning
    115112,Soil Preparation
    115113,Crop Harvesting
    115114,Postharvest Crop Activities (except Cotton Ginning)
    115115,Farm Labor Contractors and Crew Leaders
    115116,Farm Management Services
    115210,Support Activities for Animal Production
    115310,Support Activities for Forestry
    211120,Crude Petroleum Extraction
    211130,Natural Gas Extraction
    212114,Surface Coal Mining
    212115,Underground Coal Mining
    212210,Iron Ore Mining
    212220,Gold Ore and Silver Ore Mining
    212230,Copper
    212290,Other Metal Ore Mining
    212311,Dimension Stone Mining and Quarrying
    212312,Crushed and Broken Limestone Mining and Quarrying
    212313,Crushed and Broken Granite Mining and Quarrying
    212319,Other Crushed and Broken Stone Mining and Quarrying
    212321,Construction Sand and Gravel Mining
    212322,Industrial Sand Mining
    212323,Kaolin
    212390,Other Nonmetallic Mineral Mining and Quarrying
    213111,Drilling Oil and Gas Wells
    213112,Support Activities for Oil and Gas Operations
    213113,Support Activities for Coal Mining
    213114,Support Activities for Metal Mining
    213115,Support Activities for Nonmetallic Minerals (except Fuels) Mining
    221111,Hydroelectric Power Generation
    221112,Fossil Fuel Electric Power Generation
    221113,Nuclear Electric Power Generation
    221114,Solar Electric Power Generation
    221115,Wind Electric Power Generation
    221116,Geothermal Electric Power Generation
    221117,Biomass Electric Power Generation
    221118,Other Electric Power Generation
    221121,Electric Bulk Power Transmission and Control
    221122,Electric Power Distribution
    221210,Natural Gas Distribution
    221310,Water Supply and Irrigation Systems
    221320,Sewage Treatment Facilities
    221330,Steam and Air-Conditioning Supply
    236115,New Single-Family Housing Construction (except For-Sale Builders)
    236116,New Multifamily Housing Construction (except For-Sale Builders)
    236117,New Housing For-Sale Builders
    236118,Residential Remodelers
    236210,Industrial Building Construction
    236220,Commercial and Institutional Building Construction
    237110,Water and Sewer Line and Related Structures Construction
    237120,Oil and Gas Pipeline and Related Structures Construction
    237130,Power and Communication Line and Related Structures Construction
    237210,Land Subdivision
    237310,Highway
    237990,Other Heavy and Civil Engineering Construction
    238110,Poured Concrete Foundation and Structure Contractors
    238120,Structural Steel and Precast Concrete Contractors
    238130,Framing Contractors
    238140,Masonry Contractors
    238150,Glass and Glazing Contractors
    238160,Roofing Contractors
    238170,Siding Contractors
    238190,Other Foundation
    238210,Electrical Contractors and Other Wiring Installation Contractors
    238220,Plumbing
    238290,Other Building Equipment Contractors
    238310,Drywall and Insulation Contractors
    238320,Painting and Wall Covering Contractors
    238330,Flooring Contractors
    238340,Tile and Terrazzo Contractors
    238350,Finish Carpentry Contractors
    238390,Other Building Finishing Contractors
    238910,Site Preparation Contractors
    238990,All Other Specialty Trade Contractors
    311111,Dog and Cat Food Manufacturing
    311119,Other Animal Food Manufacturing
    311211,Flour Milling
    311212,Rice Milling
    311213,Malt Manufacturing
    311221,Wet Corn Milling and Starch Manufacturing
    311224,Soybean and Other Oilseed Processing
    311225,Fats and Oils Refining and Blending
    311230,Breakfast Cereal Manufacturing
    311313,Beet Sugar Manufacturing
    311314,Cane Sugar Manufacturing
    311340,Nonchocolate Confectionery Manufacturing
    311351,Chocolate and Confectionery Manufacturing from Cacao Beans
    311352,Confectionery Manufacturing from Purchased Chocolate
    311411,Frozen Fruit
    311412,Frozen Specialty Food Manufacturing
    311421,Fruit and Vegetable Canning
    311422,Specialty Canning
    311423,Dried and Dehydrated Food Manufacturing
    311511,Fluid Milk Manufacturing
    311512,Creamery Butter Manufacturing
    311513,Cheese Manufacturing
    311514,Dry
    311520,Ice Cream and Frozen Dessert Manufacturing
    311611,Animal (except Poultry) Slaughtering
    311612,Meat Processed from Carcasses
    311613,Rendering and Meat Byproduct Processing
    311615,Poultry Processing
    311710,Seafood Product Preparation and Packaging
    311811,Retail Bakeries
    311812,Commercial Bakeries
    311813,Frozen Cakes
    311821,Cookie and Cracker Manufacturing
    311824,Dry Pasta
    311830,Tortilla Manufacturing
    311911,Roasted Nuts and Peanut Butter Manufacturing
    311919,Other Snack Food Manufacturing
    311920,Coffee and Tea Manufacturing
    311930,Flavoring Syrup and Concentrate Manufacturing
    311941,Mayonnaise
    311942,Spice and Extract Manufacturing
    311991,Perishable Prepared Food Manufacturing
    311999,All Other Miscellaneous Food Manufacturing
    312111,Soft Drink Manufacturing
    312112,Bottled Water Manufacturing
    312113,Ice Manufacturing
    312120,Breweries
    312130,Wineries
    312140,Distilleries
    312230,Tobacco Manufacturing
    313110,Fiber
    313210,Broadwoven Fabric Mills
    313220,Narrow Fabric Mills and Schiffli Machine Embroidery
    313230,Nonwoven Fabric Mills
    313240,Knit Fabric Mills
    313310,Textile and Fabric Finishing Mills
    313320,Fabric Coating Mills
    314110,Carpet and Rug Mills
    314120,Curtain and Linen Mills
    314910,Textile Bag and Canvas Mills
    314994,Rope
    314999,All Other Miscellaneous Textile Product Mills
    315120,Apparel Knitting Mills
    315210,Cut and Sew Apparel Contractors
    315250,Cut and Sew Apparel Manufacturing (except Contractors)
    315990,Apparel Accessories and Other Apparel Manufacturing
    316110,Leather and Hide Tanning and Finishing
    316210,Footwear Manufacturing
    316990,Other Leather and Allied Product Manufacturing
    321113,Sawmills
    321114,Wood Preservation
    321211,Hardwood Veneer and Plywood Manufacturing
    321212,Softwood Veneer and Plywood Manufacturing
    321215,Engineered Wood Member Manufacturing
    321219,Reconstituted Wood Product Manufacturing
    321911,Wood Window and Door Manufacturing
    321912,Cut Stock
    321918,Other Millwork (including Flooring)
    321920,Wood Container and Pallet Manufacturing
    321991,Manufactured Home (Mobile Home) Manufacturing
    321992,Prefabricated Wood Building Manufacturing
    321999,All Other Miscellaneous Wood Product Manufacturing
    322110,Pulp Mills
    322120,Paper Mills
    322130,Paperboard Mills
    322211,Corrugated and Solid Fiber Box Manufacturing
    322212,Folding Paperboard Box Manufacturing
    322219,Other Paperboard Container Manufacturing
    322220,Paper Bag and Coated and Treated Paper Manufacturing
    322230,Stationery Product Manufacturing
    322291,Sanitary Paper Product Manufacturing
    322299,All Other Converted Paper Product Manufacturing
    323111,Commercial Printing (except Screen and Books)
    323113,Commercial Screen Printing
    323117,Books Printing
    323120,Support Activities for Printing
    324110,Petroleum Refineries
    324121,Asphalt Paving Mixture and Block Manufacturing
    324122,Asphalt Shingle and Coating Materials Manufacturing
    324191,Petroleum Lubricating Oil and Grease Manufacturing
    324199,All Other Petroleum and Coal Products Manufacturing
    325110,Petrochemical Manufacturing
    325120,Industrial Gas Manufacturing
    325130,Synthetic Dye and Pigment Manufacturing
    325180,Other Basic Inorganic Chemical Manufacturing
    325193,Ethyl Alcohol Manufacturing
    325194,Cyclic Crude
    325199,All Other Basic Organic Chemical Manufacturing
    325211,Plastics Material and Resin Manufacturing
    325212,Synthetic Rubber Manufacturing
    325220,Artificial and Synthetic Fibers and Filaments Manufacturing
    325311,Nitrogenous Fertilizer Manufacturing
    325312,Phosphatic Fertilizer Manufacturing
    325314,Fertilizer (Mixing Only) Manufacturing
    325315,Compost Manufacturing
    325320,Pesticide and Other Agricultural Chemical Manufacturing
    325411,Medicinal and Botanical Manufacturing
    325412,Pharmaceutical Preparation Manufacturing
    325413,In-Vitro Diagnostic Substance Manufacturing
    325414,Biological Product (except Diagnostic) Manufacturing
    325510,Paint and Coating Manufacturing
    325520,Adhesive Manufacturing
    325611,Soap and Other Detergent Manufacturing
    325612,Polish and Other Sanitation Good Manufacturing
    325613,Surface Active Agent Manufacturing
    325620,Toilet Preparation Manufacturing
    325910,Printing Ink Manufacturing
    325920,Explosives Manufacturing
    325991,Custom Compounding of Purchased Resins
    325992,Photographic Film
    325998,All Other Miscellaneous Chemical Product and Preparation Manufacturing
    326111,Plastics Bag and Pouch Manufacturing
    326112,Plastics Packaging Film and Sheet (including Laminated) Manufacturing
    326113,Unlaminated Plastics Film and Sheet (except Packaging) Manufacturing
    326121,Unlaminated Plastics Profile Shape Manufacturing
    326122,Plastics Pipe and Pipe Fitting Manufacturing
    326130,Laminated Plastics Plate
    326140,Polystyrene Foam Product Manufacturing
    326150,Urethane and Other Foam Product (except Polystyrene) Manufacturing
    326160,Plastics Bottle Manufacturing
    326191,Plastics Plumbing Fixture Manufacturing
    326199,All Other Plastics Product Manufacturing
    326211,Tire Manufacturing (except Retreading)
    326212,Tire Retreading
    326220,Rubber and Plastics Hoses and Belting Manufacturing
    326291,Rubber Product Manufacturing for Mechanical Use
    326299,All Other Rubber Product Manufacturing
    327110,Pottery
    327120,Clay Building Material and Refractories Manufacturing
    327211,Flat Glass Manufacturing
    327212,Other Pressed and Blown Glass and Glassware Manufacturing
    327213,Glass Container Manufacturing
    327215,Glass Product Manufacturing Made of Purchased Glass
    327310,Cement Manufacturing
    327320,Ready-Mix Concrete Manufacturing
    327331,Concrete Block and Brick Manufacturing
    327332,Concrete Pipe Manufacturing
    327390,Other Concrete Product Manufacturing
    327410,Lime Manufacturing
    327420,Gypsum Product Manufacturing
    327910,Abrasive Product Manufacturing
    327991,Cut Stone and Stone Product Manufacturing
    327992,Ground or Treated Mineral and Earth Manufacturing
    327993,Mineral Wool Manufacturing
    327999,All Other Miscellaneous Nonmetallic Mineral Product Manufacturing
    331110,Iron and Steel Mills and Ferroalloy Manufacturing
    331210,Iron and Steel Pipe and Tube Manufacturing from Purchased Steel
    331221,Rolled Steel Shape Manufacturing
    331222,Steel Wire Drawing
    331313,Alumina Refining and Primary Aluminum Production
    331314,Secondary Smelting and Alloying of Aluminum
    331315,Aluminum Sheet
    331318,Other Aluminum Rolling
    331410,Nonferrous Metal (except Aluminum) Smelting and Refining
    331420,Copper Rolling
    331491,Nonferrous Metal (except Copper and Aluminum) Rolling
    331492,Secondary Smelting
    331511,Iron Foundries
    331512,Steel Investment Foundries
    331513,Steel Foundries (except Investment)
    331523,Nonferrous Metal Die-Casting Foundries
    331524,Aluminum Foundries (except Die-Casting)
    331529,Other Nonferrous Metal Foundries (except Die-Casting)
    332111,Iron and Steel Forging
    332112,Nonferrous Forging
    332114,Custom Roll Forming
    332117,Powder Metallurgy Part Manufacturing
    332119,Metal Crown
    332215,Metal Kitchen Cookware
    332216,Saw Blade and Handtool Manufacturing
    332311,Prefabricated Metal Building and Component Manufacturing
    332312,Fabricated Structural Metal Manufacturing
    332313,Plate Work Manufacturing
    332321,Metal Window and Door Manufacturing
    332322,Sheet Metal Work Manufacturing
    332323,Ornamental and Architectural Metal Work Manufacturing
    332410,Power Boiler and Heat Exchanger Manufacturing
    332420,Metal Tank (Heavy Gauge) Manufacturing
    332431,Metal Can Manufacturing
    332439,Other Metal Container Manufacturing
    332510,Hardware Manufacturing
    332613,Spring Manufacturing
    332618,Other Fabricated Wire Product Manufacturing
    332710,Machine Shops
    332721,Precision Turned Product Manufacturing
    332722,Bolt
    332811,Metal Heat Treating
    332812,Metal Coating
    332813,Electroplating
    332911,Industrial Valve Manufacturing
    332912,Fluid Power Valve and Hose Fitting Manufacturing
    332913,Plumbing Fixture Fitting and Trim Manufacturing
    332919,Other Metal Valve and Pipe Fitting Manufacturing
    332991,Ball and Roller Bearing Manufacturing
    332992,Small Arms Ammunition Manufacturing
    332993,Ammunition (except Small Arms) Manufacturing
    332994,Small Arms
    332996,Fabricated Pipe and Pipe Fitting Manufacturing
    332999,All Other Miscellaneous Fabricated Metal Product Manufacturing
    333111,Farm Machinery and Equipment Manufacturing
    333112,Lawn and Garden Tractor and Home Lawn and Garden Equipment Manufacturing
    333120,Construction Machinery Manufacturing
    333131,Mining Machinery and Equipment Manufacturing
    333132,Oil and Gas Field Machinery and Equipment Manufacturing
    333241,Food Product Machinery Manufacturing
    333242,Semiconductor Machinery Manufacturing
    333243,Sawmill
    333248,All Other Industrial Machinery Manufacturing
    333310,Commercial and Service Industry Machinery Manufacturing
    333413,Industrial and Commercial Fan and Blower and Air Purification Equipment Manufacturing
    333414,Heating Equipment (except Warm Air Furnaces) Manufacturing
    333415,Air-Conditioning and Warm Air Heating Equipment and Commercial and Industrial Refrigeration Equipment Manufacturing
    333511,Industrial Mold Manufacturing
    333514,Special Die and Tool
    333515,Cutting Tool and Machine Tool Accessory Manufacturing
    333517,Machine Tool Manufacturing
    333519,Rolling Mill and Other Metalworking Machinery Manufacturing
    333611,Turbine and Turbine Generator Set Units Manufacturing
    333612,Speed Changer
    333613,Mechanical Power Transmission Equipment Manufacturing
    333618,Other Engine Equipment Manufacturing
    333912,Air and Gas Compressor Manufacturing
    333914,Measuring
    333921,Elevator and Moving Stairway Manufacturing
    333922,Conveyor and Conveying Equipment Manufacturing
    333923,Overhead Traveling Crane
    333924,Industrial Truck
    333991,Power-Driven Handtool Manufacturing
    333992,Welding and Soldering Equipment Manufacturing
    333993,Packaging Machinery Manufacturing
    333994,Industrial Process Furnace and Oven Manufacturing
    333995,Fluid Power Cylinder and Actuator Manufacturing
    333996,Fluid Power Pump and Motor Manufacturing
    333998,All Other Miscellaneous General Purpose Machinery Manufacturing
    334111,Electronic Computer Manufacturing
    334112,Computer Storage Device Manufacturing
    334118,Computer Terminal and Other Computer Peripheral Equipment Manufacturing
    334210,Telephone Apparatus Manufacturing
    334220,Radio and Television Broadcasting and Wireless Communications Equipment Manufacturing
    334290,Other Communications Equipment Manufacturing
    334310,Audio and Video Equipment Manufacturing
    334412,Bare Printed Circuit Board Manufacturing
    334413,Semiconductor and Related Device Manufacturing
    334416,Capacitor
    334417,Electronic Connector Manufacturing
    334418,Printed Circuit Assembly (Electronic Assembly) Manufacturing
    334419,Other Electronic Component Manufacturing
    334510,Electromedical and Electrotherapeutic Apparatus Manufacturing
    334511,Search
    334512,Automatic Environmental Control Manufacturing for Residential
    334513,Instruments and Related Products Manufacturing for Measuring
    334514,Totalizing Fluid Meter and Counting Device Manufacturing
    334515,Instrument Manufacturing for Measuring and Testing Electricity and Electrical Signals
    334516,Analytical Laboratory Instrument Manufacturing
    334517,Irradiation Apparatus Manufacturing
    334519,Other Measuring and Controlling Device Manufacturing
    334610,Manufacturing and Reproducing Magnetic and Optical Media
    335131,Residential Electric Lighting Fixture Manufacturing
    335132,Commercial
    335139,Electric Lamp Bulb and Other Lighting Equipment Manufacturing
    335210,Small Electrical Appliance Manufacturing
    335220,Major Household Appliance Manufacturing
    335311,Power
    335312,Motor and Generator Manufacturing
    335313,Switchgear and Switchboard Apparatus Manufacturing
    335314,Relay and Industrial Control Manufacturing
    335910,Battery Manufacturing
    335921,Fiber Optic Cable Manufacturing
    335929,Other Communication and Energy Wire Manufacturing
    335931,Current-Carrying Wiring Device Manufacturing
    335932,Noncurrent-Carrying Wiring Device Manufacturing
    335991,Carbon and Graphite Product Manufacturing
    335999,All Other Miscellaneous Electrical Equipment and Component Manufacturing
    336110,Automobile and Light Duty Motor Vehicle Manufacturing
    336120,Heavy Duty Truck Manufacturing
    336211,Motor Vehicle Body Manufacturing
    336212,Truck Trailer Manufacturing
    336213,Motor Home Manufacturing
    336214,Travel Trailer and Camper Manufacturing
    336310,Motor Vehicle Gasoline Engine and Engine Parts Manufacturing
    336320,Motor Vehicle Electrical and Electronic Equipment Manufacturing
    336330,Motor Vehicle Steering and Suspension Components (except Spring) Manufacturing
    336340,Motor Vehicle Brake System Manufacturing
    336350,Motor Vehicle Transmission and Power Train Parts Manufacturing
    336360,Motor Vehicle Seating and Interior Trim Manufacturing
    336370,Motor Vehicle Metal Stamping
    336390,Other Motor Vehicle Parts Manufacturing
    336411,Aircraft Manufacturing
    336412,Aircraft Engine and Engine Parts Manufacturing
    336413,Other Aircraft Parts and Auxiliary Equipment Manufacturing
    336414,Guided Missile and Space Vehicle Manufacturing
    336415,Guided Missile and Space Vehicle Propulsion Unit and Propulsion Unit Parts Manufacturing
    336419,Other Guided Missile and Space Vehicle Parts and Auxiliary Equipment Manufacturing
    336510,Railroad Rolling Stock Manufacturing
    336611,Ship Building and Repairing
    336612,Boat Building
    336991,Motorcycle
    336992,Military Armored Vehicle
    336999,All Other Transportation Equipment Manufacturing
    337110,Wood Kitchen Cabinet and Countertop Manufacturing
    337121,Upholstered Household Furniture Manufacturing
    337122,Nonupholstered Wood Household Furniture Manufacturing
    337126,Household Furniture (except Wood and Upholstered) Manufacturing
    337127,Institutional Furniture Manufacturing
    337211,Wood Office Furniture Manufacturing
    337212,Custom Architectural Woodwork and Millwork Manufacturing
    337214,Office Furniture (except Wood) Manufacturing
    337215,Showcase
    337910,Mattress Manufacturing
    337920,Blind and Shade Manufacturing
    339112,Surgical and Medical Instrument Manufacturing
    339113,Surgical Appliance and Supplies Manufacturing
    339114,Dental Equipment and Supplies Manufacturing
    339115,Ophthalmic Goods Manufacturing
    339116,Dental Laboratories
    339910,Jewelry and Silverware Manufacturing
    339920,Sporting and Athletic Goods Manufacturing
    339930,Doll
    339940,Office Supplies (except Paper) Manufacturing
    339950,Sign Manufacturing
    339991,Gasket
    339992,Musical Instrument Manufacturing
    339993,Fastener
    339994,Broom
    339995,Burial Casket Manufacturing
    339999,All Other Miscellaneous Manufacturing
    423110,Automobile and Other Motor Vehicle Merchant Wholesalers
    423120,Motor Vehicle Supplies and New Parts Merchant Wholesalers
    423130,Tire and Tube Merchant Wholesalers
    423140,Motor Vehicle Parts (Used) Merchant Wholesalers
    423210,Furniture Merchant Wholesalers
    423220,Home Furnishing Merchant Wholesalers
    423310,Lumber
    423320,Brick
    423330,Roofing
    423390,Other Construction Material Merchant Wholesalers
    423410,Photographic Equipment and Supplies Merchant Wholesalers
    423420,Office Equipment Merchant Wholesalers
    423430,Computer and Computer Peripheral Equipment and Software Merchant Wholesalers
    423440,Other Commercial Equipment Merchant Wholesalers
    423450,Medical
    423460,Ophthalmic Goods Merchant Wholesalers
    423490,Other Professional Equipment and Supplies Merchant Wholesalers
    423510,Metal Service Centers and Other Metal Merchant Wholesalers
    423520,Coal and Other Mineral and Ore Merchant Wholesalers
    423610,Electrical Apparatus and Equipment
    423620,Household Appliances
    423690,Other Electronic Parts and Equipment Merchant Wholesalers
    423710,Hardware Merchant Wholesalers
    423720,Plumbing and Heating Equipment and Supplies (Hydronics) Merchant Wholesalers
    423730,Warm Air Heating and Air-Conditioning Equipment and Supplies Merchant Wholesalers
    423740,Refrigeration Equipment and Supplies Merchant Wholesalers
    423810,Construction and Mining (except Oil Well) Machinery and Equipment Merchant Wholesalers
    423820,Farm and Garden Machinery and Equipment Merchant Wholesalers
    423830,Industrial Machinery and Equipment Merchant Wholesalers
    423840,Industrial Supplies Merchant Wholesalers
    423850,Service Establishment Equipment and Supplies Merchant Wholesalers
    423860,Transportation Equipment and Supplies (except Motor Vehicle) Merchant Wholesalers
    423910,Sporting and Recreational Goods and Supplies Merchant Wholesalers
    423920,Toy and Hobby Goods and Supplies Merchant Wholesalers
    423930,Recyclable Material Merchant Wholesalers
    423940,Jewelry
    423990,Other Miscellaneous Durable Goods Merchant Wholesalers
    424110,Printing and Writing Paper Merchant Wholesalers
    424120,Stationery and Office Supplies Merchant Wholesalers
    424130,Industrial and Personal Service Paper Merchant Wholesalers
    424210,Drugs and Druggists' Sundries Merchant Wholesalers
    424310,Piece Goods
    424340,Footwear Merchant Wholesalers
    424350,Clothing and Clothing Accessories Merchant Wholesalers
    424410,General Line Grocery Merchant Wholesalers
    424420,Packaged Frozen Food Merchant Wholesalers
    424430,Dairy Product (except Dried or Canned) Merchant Wholesalers
    424440,Poultry and Poultry Product Merchant Wholesalers
    424450,Confectionery Merchant Wholesalers
    424460,Fish and Seafood Merchant Wholesalers
    424470,Meat and Meat Product Merchant Wholesalers
    424480,Fresh Fruit and Vegetable Merchant Wholesalers
    424490,Other Grocery and Related Products Merchant Wholesalers
    424510,Grain and Field Bean Merchant Wholesalers
    424520,Livestock Merchant Wholesalers
    424590,Other Farm Product Raw Material Merchant Wholesalers
    424610,Plastics Materials and Basic Forms and Shapes Merchant Wholesalers
    424690,Other Chemical and Allied Products Merchant Wholesalers
    424710,Petroleum Bulk Stations and Terminals
    424720,Petroleum and Petroleum Products Merchant Wholesalers (except Bulk Stations and Terminals)
    424810,Beer and Ale Merchant Wholesalers
    424820,Wine and Distilled Alcoholic Beverage Merchant Wholesalers
    424910,Farm Supplies Merchant Wholesalers
    424920,Book
    424930,Flower
    424940,Tobacco Product and Electronic Cigarette Merchant Wholesalers
    424950,Paint
    424990,Other Miscellaneous Nondurable Goods Merchant Wholesalers
    425120,Wholesale Trade Agents and Brokers
    441110,New Car Dealers
    441120,Used Car Dealers
    441210,Recreational Vehicle Dealers
    441222,Boat Dealers
    441227,Motorcycle
    441330,Automotive Parts and Accessories Retailers
    441340,Tire Dealers
    444110,Home Centers
    444120,Paint and Wallpaper Retailers
    444140,Hardware Retailers
    444180,Other Building Material Dealers
    444230,Outdoor Power Equipment Retailers
    444240,Nursery
    445110,Supermarkets and Other Grocery Retailers (except Convenience Retailers)
    445131,Convenience Retailers
    445132,Vending Machine Operators
    445230,Fruit and Vegetable Retailers
    445240,Meat Retailers
    445250,Fish and Seafood Retailers
    445291,Baked Goods Retailers
    445292,Confectionery and Nut Retailers
    445298,All Other Specialty Food Retailers
    445320,Beer
    449110,Furniture Retailers
    449121,Floor Covering Retailers
    449122,Window Treatment Retailers
    449129,All Other Home Furnishings Retailers
    449210,Electronics and Appliance Retailers
    455110,Department Stores
    455211,Warehouse Clubs and Supercenters
    455219,All Other General Merchandise Retailers
    456110,Pharmacies and Drug Retailers
    456120,Cosmetics
    456130,Optical Goods Retailers
    456191,Food (Health) Supplement Retailers
    456199,All Other Health and Personal Care Retailers
    457110,Gasoline Stations with Convenience Stores
    457120,Other Gasoline Stations
    457210,Fuel Dealers
    458110,Clothing and Clothing Accessories Retailers
    458210,Shoe Retailers
    458310,Jewelry Retailers
    458320,Luggage and Leather Goods Retailers
    459110,Sporting Goods Retailers
    459120,Hobby
    459130,Sewing
    459140,Musical Instrument and Supplies Retailers
    459210,Book Retailers and News Dealers
    459310,Florists
    459410,Office Supplies and Stationery Retailers
    459420,Gift
    459510,Used Merchandise Retailers
    459910,Pet and Pet Supplies Retailers
    459920,Art Dealers
    459930,Manufactured (Mobile) Home Dealers
    459991,Tobacco
    459999,All Other Miscellaneous Retailers
    481111,Scheduled Passenger Air Transportation
    481112,Scheduled Freight Air Transportation
    481211,Nonscheduled Chartered Passenger Air Transportation
    481212,Nonscheduled Chartered Freight Air Transportation
    481219,Other Nonscheduled Air Transportation
    482111,Line-Haul Railroads
    482112,Short Line Railroads
    483111,Deep Sea Freight Transportation
    483112,Deep Sea Passenger Transportation
    483113,Coastal and Great Lakes Freight Transportation
    483114,Coastal and Great Lakes Passenger Transportation
    483211,Inland Water Freight Transportation
    483212,Inland Water Passenger Transportation
    484110,General Freight Trucking
    484121,General Freight Trucking
    484122,General Freight Trucking
    484210,Used Household and Office Goods Moving
    484220,Specialized Freight (except Used Goods) Trucking
    484230,Specialized Freight (except Used Goods) Trucking
    485111,Mixed Mode Transit Systems
    485112,Commuter Rail Systems
    485113,Bus and Other Motor Vehicle Transit Systems
    485119,Other Urban Transit Systems
    485210,Interurban and Rural Bus Transportation
    485310,Taxi and Ridesharing Services
    485320,Limousine Service
    485410,School and Employee Bus Transportation
    485510,Charter Bus Industry
    485991,Special Needs Transportation
    485999,All Other Transit and Ground Passenger Transportation
    486110,Pipeline Transportation of Crude Oil
    486210,Pipeline Transportation of Natural Gas
    486910,Pipeline Transportation of Refined Petroleum Products
    486990,All Other Pipeline Transportation
    487110,Scenic and Sightseeing Transportation
    487210,Scenic and Sightseeing Transportation
    487990,Scenic and Sightseeing Transportation
    488111,Air Traffic Control
    488119,Other Airport Operations
    488190,Other Support Activities for Air Transportation
    488210,Support Activities for Rail Transportation
    488310,Port and Harbor Operations
    488320,Marine Cargo Handling
    488330,Navigational Services to Shipping
    488390,Other Support Activities for Water Transportation
    488410,Motor Vehicle Towing
    488490,Other Support Activities for Road Transportation
    488510,Freight Transportation Arrangement
    488991,Packing and Crating
    488999,All Other Support Activities for Transportation
    491110,Postal Service
    492110,Couriers and Express Delivery Services
    492210,Local Messengers and Local Delivery
    493110,General Warehousing and Storage
    493120,Refrigerated Warehousing and Storage
    493130,Farm Product Warehousing and Storage
    493190,Other Warehousing and Storage
    512110,Motion Picture and Video Production
    512120,Motion Picture and Video Distribution
    512131,Motion Picture Theaters (except Drive-Ins)
    512132,Drive-In Motion Picture Theaters
    512191,Teleproduction and Other Postproduction Services
    512199,Other Motion Picture and Video Industries
    512230,Music Publishers
    512240,Sound Recording Studios
    512250,Record Production and Distribution
    512290,Other Sound Recording Industries
    513110,Newspaper Publishers
    513120,Periodical Publishers
    513130,Book Publishers
    513140,Directory and Mailing List Publishers
    513191,Greeting Card Publishers
    513199,All Other Publishers
    513210,Software Publishers
    516110,Radio Broadcasting Stations
    516120,Television Broadcasting Stations
    516210,Media Streaming Distribution Services
    517111,Wired Telecommunications Carriers
    517112,Wireless Telecommunications Carriers (except Satellite)
    517121,Telecommunications Resellers
    517122,Agents for Wireless Telecommunications Services
    517410,Satellite Telecommunications
    517810,All Other Telecommunications
    518210,Computing Infrastructure Providers
    519210,Libraries and Archives
    519290,Web Search Portals and All Other Information Services
    521110,Monetary Authorities-Central Bank
    522110,Commercial Banking
    522130,Credit Unions
    522180,Savings Institutions and Other Depository Credit Intermediation
    522210,Credit Card Issuing
    522220,Sales Financing
    522291,Consumer Lending
    522292,Real Estate Credit
    522299,International
    522310,Mortgage and Nonmortgage Loan Brokers
    522320,Financial Transactions Processing
    522390,Other Activities Related to Credit Intermediation
    523150,Investment Banking and Securities Intermediation
    523160,Commodity Contracts Intermediation
    523210,Securities and Commodity Exchanges
    523910,Miscellaneous Intermediation
    523940,Portfolio Management and Investment Advice
    523991,Trust
    523999,Miscellaneous Financial Investment Activities
    524113,Direct Life Insurance Carriers
    524114,Direct Health and Medical Insurance Carriers
    524126,Direct Property and Casualty Insurance Carriers
    524127,Direct Title Insurance Carriers
    524128,Other Direct Insurance (except Life
    524130,Reinsurance Carriers
    524210,Insurance Agencies and Brokerages
    524291,Claims Adjusting
    524292,Pharmacy Benefit Management and Other Third Party Administration of Insurance and Pension Funds
    524298,All Other Insurance Related Activities
    525110,Pension Funds
    525120,Health and Welfare Funds
    525190,Other Insurance Funds
    525910,Open-End Investment Funds
    525920,Trusts
    525990,Other Financial Vehicles
    531110,Lessors of Residential Buildings and Dwellings
    531120,Lessors of Nonresidential Buildings (except Miniwarehouses)
    531130,Lessors of Miniwarehouses and Self-Storage Units
    531190,Lessors of Other Real Estate Property
    531210,Offices of Real Estate Agents and Brokers
    531311,Residential Property Managers
    531312,Nonresidential Property Managers
    531320,Offices of Real Estate Appraisers
    531390,Other Activities Related to Real Estate
    532111,Passenger Car Rental
    532112,Passenger Car Leasing
    532120,Truck
    532210,Consumer Electronics and Appliances Rental
    532281,Formal Wear and Costume Rental
    532282,Video Tape and Disc Rental
    532283,Home Health Equipment Rental
    532284,Recreational Goods Rental
    532289,All Other Consumer Goods Rental
    532310,General Rental Centers
    532411,Commercial Air
    532412,Construction
    532420,Office Machinery and Equipment Rental and Leasing
    532490,Other Commercial and Industrial Machinery and Equipment Rental and Leasing
    533110,Lessors of Nonfinancial Intangible Assets (except Copyrighted Works)
    541110,Offices of Lawyers
    541120,Offices of Notaries
    541191,Title Abstract and Settlement Offices
    541199,All Other Legal Services
    541211,Offices of Certified Public Accountants
    541213,Tax Preparation Services
    541214,Payroll Services
    541219,Other Accounting Services
    541310,Architectural Services
    541320,Landscape Architectural Services
    541330,Engineering Services
    541340,Drafting Services
    541350,Building Inspection Services
    541360,Geophysical Surveying and Mapping Services
    541370,Surveying and Mapping (except Geophysical) Services
    541380,Testing Laboratories and Services
    541410,Interior Design Services
    541420,Industrial Design Services
    541430,Graphic Design Services
    541490,Other Specialized Design Services
    541511,Custom Computer Programming Services
    541512,Computer Systems Design Services
    541513,Computer Facilities Management Services
    541519,Other Computer Related Services
    541611,Administrative Management and General Management Consulting Services
    541612,Human Resources Consulting Services
    541613,Marketing Consulting Services
    541614,Process
    541618,Other Management Consulting Services
    541620,Environmental Consulting Services
    541690,Other Scientific and Technical Consulting Services
    541713,Research and Development in Nanotechnology
    541714,Research and Development in Biotechnology (except Nanobiotechnology)
    541715,Research and Development in the Physical
    541720,Research and Development in the Social Sciences and Humanities
    541810,Advertising Agencies
    541820,Public Relations Agencies
    541830,Media Buying Agencies
    541840,Media Representatives
    541850,Indoor and Outdoor Display Advertising
    541860,Direct Mail Advertising
    541870,Advertising Material Distribution Services
    541890,Other Services Related to Advertising
    541910,Marketing Research and Public Opinion Polling
    541921,Photography Studios
    541922,Commercial Photography
    541930,Translation and Interpretation Services
    541940,Veterinary Services
    541990,All Other Professional
    551111,Offices of Bank Holding Companies
    551112,Offices of Other Holding Companies
    551114,Corporate
    561110,Office Administrative Services
    561210,Facilities Support Services
    561311,Employment Placement Agencies
    561312,Executive Search Services
    561320,Temporary Help Services
    561330,Professional Employer Organizations
    561410,Document Preparation Services
    561421,Telephone Answering Services
    561422,Telemarketing Bureaus and Other Contact Centers
    561431,Private Mail Centers
    561439,Other Business Service Centers (including Copy Shops)
    561440,Collection Agencies
    561450,Credit Bureaus
    561491,Repossession Services
    561492,Court Reporting and Stenotype Services
    561499,All Other Business Support Services
    561510,Travel Agencies
    561520,Tour Operators
    561591,Convention and Visitors Bureaus
    561599,All Other Travel Arrangement and Reservation Services
    561611,Investigation and Personal Background Check Services
    561612,Security Guards and Patrol Services
    561613,Armored Car Services
    561621,Security Systems Services (except Locksmiths)
    561622,Locksmiths
    561710,Exterminating and Pest Control Services
    561720,Janitorial Services
    561730,Landscaping Services
    561740,Carpet and Upholstery Cleaning Services
    561790,Other Services to Buildings and Dwellings
    561910,Packaging and Labeling Services
    561920,Convention and Trade Show Organizers
    561990,All Other Support Services
    562111,Solid Waste Collection
    562112,Hazardous Waste Collection
    562119,Other Waste Collection
    562211,Hazardous Waste Treatment and Disposal
    562212,Solid Waste Landfill
    562213,Solid Waste Combustors and Incinerators
    562219,Other Nonhazardous Waste Treatment and Disposal
    562910,Remediation Services
    562920,Materials Recovery Facilities
    562991,Septic Tank and Related Services
    562998,All Other Miscellaneous Waste Management Services
    611110,Elementary and Secondary Schools
    611210,Junior Colleges
    611310,Colleges
    611410,Business and Secretarial Schools
    611420,Computer Training
    611430,Professional and Management Development Training
    611511,Cosmetology and Barber Schools
    611512,Flight Training
    611513,Apprenticeship Training
    611519,Other Technical and Trade Schools
    611610,Fine Arts Schools
    611620,Sports and Recreation Instruction
    611630,Language Schools
    611691,Exam Preparation and Tutoring
    611692,Automobile Driving Schools
    611699,All Other Miscellaneous Schools and Instruction
    611710,Educational Support Services
    621111,Offices of Physicians (except Mental Health Specialists)
    621112,Offices of Physicians
    621210,Offices of Dentists
    621310,Offices of Chiropractors
    621320,Offices of Optometrists
    621330,Offices of Mental Health Practitioners (except Physicians)
    621340,Offices of Physical
    621391,Offices of Podiatrists
    621399,Offices of All Other Miscellaneous Health Practitioners
    621410,Family Planning Centers
    621420,Outpatient Mental Health and Substance Abuse Centers
    621491,HMO Medical Centers
    621492,Kidney Dialysis Centers
    621493,Freestanding Ambulatory Surgical and Emergency Centers
    621498,All Other Outpatient Care Centers
    621511,Medical Laboratories
    621512,Diagnostic Imaging Centers
    621610,Home Health Care Services
    621910,Ambulance Services
    621991,Blood and Organ Banks
    621999,All Other Miscellaneous Ambulatory Health Care Services
    622110,General Medical and Surgical Hospitals
    622210,Psychiatric and Substance Abuse Hospitals
    622310,Specialty (except Psychiatric and Substance Abuse) Hospitals
    623110,Nursing Care Facilities (Skilled Nursing Facilities)
    623210,Residential Intellectual and Developmental Disability Facilities
    623220,Residential Mental Health and Substance Abuse Facilities
    623311,Continuing Care Retirement Communities
    623312,Assisted Living Facilities for the Elderly
    623990,Other Residential Care Facilities
    624110,Child and Youth Services
    624120,Services for the Elderly and Persons with Disabilities
    624190,Other Individual and Family Services
    624210,Community Food Services
    624221,Temporary Shelters
    624229,Other Community Housing Services
    624230,Emergency and Other Relief Services
    624310,Vocational Rehabilitation Services
    624410,Child Care Services
    711110,Theater Companies and Dinner Theaters
    711120,Dance Companies
    711130,Musical Groups and Artists
    711190,Other Performing Arts Companies
    711211,Sports Teams and Clubs
    711212,Racetracks
    711219,Other Spectator Sports
    711310,Promoters of Performing Arts
    711320,Promoters of Performing Arts
    711410,Agents and Managers for Artists
    711510,Independent Artists
    712110,Museums
    712120,Historical Sites
    712130,Zoos and Botanical Gardens
    712190,Nature Parks and Other Similar Institutions
    713110,Amusement and Theme Parks
    713120,Amusement Arcades
    713210,Casinos (except Casino Hotels)
    713290,Other Gambling Industries
    713910,Golf Courses and Country Clubs
    713920,Skiing Facilities
    713930,Marinas
    713940,Fitness and Recreational Sports Centers
    713950,Bowling Centers
    713990,All Other Amusement and Recreation Industries
    721110,Hotels (except Casino Hotels) and Motels
    721120,Casino Hotels
    721191,Bed-and-Breakfast Inns
    721199,All Other Traveler Accommodation
    721211,RV (Recreational Vehicle) Parks and Campgrounds
    721214,Recreational and Vacation Camps (except Campgrounds)
    721310,Rooming and Boarding Houses
    722310,Food Service Contractors
    722320,Caterers
    722330,Mobile Food Services
    722410,Drinking Places (Alcoholic Beverages)
    722511,Full-Service Restaurants
    722513,Limited-Service Restaurants
    722514,Cafeterias
    722515,Snack and Nonalcoholic Beverage Bars
    811111,General Automotive Repair
    811114,Specialized Automotive Repair
    811121,Automotive Body
    811122,Automotive Glass Replacement Shops
    811191,Automotive Oil Change and Lubrication Shops
    811192,Car Washes
    811198,All Other Automotive Repair and Maintenance
    811210,Electronic and Precision Equipment Repair and Maintenance
    811310,Commercial and Industrial Machinery and Equipment (except Automotive and Electronic) Repair and Maintenance
    811411,Home and Garden Equipment Repair and Maintenance
    811412,Appliance Repair and Maintenance
    811420,Reupholstery and Furniture Repair
    811430,Footwear and Leather Goods Repair
    811490,Other Personal and Household Goods Repair and Maintenance
    812111,Barber Shops
    812112,Beauty Salons
    812113,Nail Salons
    812191,Diet and Weight Reducing Centers
    812199,Other Personal Care Services
    812210,Funeral Homes and Funeral Services
    812220,Cemeteries and Crematories
    812310,Coin-Operated Laundries and Drycleaners
    812320,Drycleaning and Laundry Services (except Coin-Operated)
    812331,Linen Supply
    812332,Industrial Launderers
    812910,Pet Care (except Veterinary) Services
    812921,Photofinishing Laboratories (except One-Hour)
    812922,One-Hour Photofinishing
    812930,Parking Lots and Garages
    812990,All Other Personal Services
    813110,Religious Organizations
    813211,Grantmaking Foundations
    813212,Voluntary Health Organizations
    813219,Other Grantmaking and Giving Services
    813311,Human Rights Organizations
    813312,Environment
    813319,Other Social Advocacy Organizations
    813410,Civic and Social Organizations
    813910,Business Associations
    813920,Professional Organizations
    813930,Labor Unions and Similar Labor Organizations
    813940,Political Organizations
    813990,Other Similar Organizations (except Business
    814110,Private Households
    921110,Executive Offices
    921120,Legislative Bodies
    921130,Public Finance Activities
    921140,Executive and Legislative Offices
    921150,American Indian and Alaska Native Tribal Governments
    921190,Other General Government Support
    922110,Courts
    922120,Police Protection
    922130,Legal Counsel and Prosecution
    922140,Correctional Institutions
    922150,Parole Offices and Probation Offices
    922160,Fire Protection
    922190,Other Justice
    923110,Administration of Education Programs
    923120,Administration of Public Health Programs
    923130,Administration of Human Resource Programs (except Education
    923140,Administration of Veterans' Affairs
    924110,Administration of Air and Water Resource and Solid Waste Management Programs
    924120,Administration of Conservation Programs
    925110,Administration of Housing Programs
    925120,Administration of Urban Planning and Community and Rural Development
    926110,Administration of General Economic Programs
    926120,Regulation and Administration of Transportation Programs
    926130,Regulation and Administration of Communications
    926140,Regulation of Agricultural Marketing and Commodities
    926150,Regulation
    927110,Space Research and Technology
    928110,National Security
    928120,International Affairs
    ```

    ```json NAICS.json theme={null}
    [
      {"code": "111110", "name": "Soybean Farming"},
      {"code": "111120", "name": "Oilseed (except Soybean) Farming"},
      {"code": "111130", "name": "Dry Pea and Bean Farming"},
      {"code": "111140", "name": "Wheat Farming"},
      {"code": "111150", "name": "Corn Farming"},
      {"code": "111160", "name": "Rice Farming"},
      {"code": "111191", "name": "Oilseed and Grain Combination Farming"},
      {"code": "111199", "name": "All Other Grain Farming"},
      {"code": "111211", "name": "Potato Farming"},
      {"code": "111219", "name": "Other Vegetable (except Potato) and Melon Farming"},
      {"code": "111310", "name": "Orange Groves"},
      {"code": "111320", "name": "Citrus (except Orange) Groves"},
      {"code": "111331", "name": "Apple Orchards"},
      {"code": "111332", "name": "Grape Vineyards"},
      {"code": "111333", "name": "Strawberry Farming"},
      {"code": "111334", "name": "Berry (except Strawberry) Farming"},
      {"code": "111335", "name": "Tree Nut Farming"},
      {"code": "111336", "name": "Fruit and Tree Nut Combination Farming"},
      {"code": "111339", "name": "Other Noncitrus Fruit Farming"},
      {"code": "111411", "name": "Mushroom Production"},
      {"code": "111419", "name": "Other Food Crops Grown Under Cover"},
      {"code": "111421", "name": "Nursery and Tree Production"},
      {"code": "111422", "name": "Floriculture Production"},
      {"code": "111910", "name": "Tobacco Farming"},
      {"code": "111920", "name": "Cotton Farming"},
      {"code": "111930", "name": "Sugarcane Farming"},
      {"code": "111940", "name": "Hay Farming"},
      {"code": "111991", "name": "Sugar Beet Farming"},
      {"code": "111992", "name": "Peanut Farming"},
      {"code": "111998", "name": "All Other Miscellaneous Crop Farming"},
      {"code": "112111", "name": "Beef Cattle Ranching and Farming"},
      {"code": "112112", "name": "Cattle Feedlots"},
      {"code": "112120", "name": "Dairy Cattle and Milk Production"},
      {"code": "112130", "name": "Dual-Purpose Cattle Ranching and Farming"},
      {"code": "112210", "name": "Hog and Pig Farming"},
      {"code": "112310", "name": "Chicken Egg Production"},
      {"code": "112320", "name": "Broilers and Other Meat Type Chicken Production"},
      {"code": "112330", "name": "Turkey Production"},
      {"code": "112340", "name": "Poultry Hatcheries"},
      {"code": "112390", "name": "Other Poultry Production"},
      {"code": "112410", "name": "Sheep Farming"},
      {"code": "112420", "name": "Goat Farming"},
      {"code": "112511", "name": "Finfish Farming and Fish Hatcheries"},
      {"code": "112512", "name": "Shellfish Farming"},
      {"code": "112519", "name": "Other Aquaculture"},
      {"code": "112910", "name": "Apiculture"},
      {"code": "112920", "name": "Horses and Other Equine Production"},
      {"code": "112930", "name": "Fur-Bearing Animal and Rabbit Production"},
      {"code": "112990", "name": "All Other Animal Production"},
      {"code": "113110", "name": "Timber Tract Operations"},
      {"code": "113210", "name": "Forest Nurseries and Gathering of Forest Products"},
      {"code": "113310", "name": "Logging"},
      {"code": "114111", "name": "Finfish Fishing"},
      {"code": "114112", "name": "Shellfish Fishing"},
      {"code": "114119", "name": "Other Marine Fishing"},
      {"code": "114210", "name": "Hunting and Trapping"},
      {"code": "115111", "name": "Cotton Ginning"},
      {"code": "115112", "name": "Soil Preparation"},
      {"code": "115113", "name": "Crop Harvesting"},
      {"code": "115114", "name": "Postharvest Crop Activities (except Cotton Ginning)"},
      {"code": "115115", "name": "Farm Labor Contractors and Crew Leaders"},
      {"code": "115116", "name": "Farm Management Services"},
      {"code": "115210", "name": "Support Activities for Animal Production"},
      {"code": "115310", "name": "Support Activities for Forestry"},
      {"code": "211120", "name": "Crude Petroleum Extraction"},
      {"code": "211130", "name": "Natural Gas Extraction"},
      {"code": "212114", "name": "Surface Coal Mining"},
      {"code": "212115", "name": "Underground Coal Mining"},
      {"code": "212210", "name": "Iron Ore Mining"},
      {"code": "212220", "name": "Gold Ore and Silver Ore Mining"},
      {"code": "212230", "name": "Copper"},
      {"code": "212290", "name": "Other Metal Ore Mining"},
      {"code": "212311", "name": "Dimension Stone Mining and Quarrying"},
      {"code": "212312", "name": "Crushed and Broken Limestone Mining and Quarrying"},
      {"code": "212313", "name": "Crushed and Broken Granite Mining and Quarrying"},
      {"code": "212319", "name": "Other Crushed and Broken Stone Mining and Quarrying"},
      {"code": "212321", "name": "Construction Sand and Gravel Mining"},
      {"code": "212322", "name": "Industrial Sand Mining"},
      {"code": "212323", "name": "Kaolin"},
      {"code": "212390", "name": "Other Nonmetallic Mineral Mining and Quarrying"},
      {"code": "213111", "name": "Drilling Oil and Gas Wells"},
      {"code": "213112", "name": "Support Activities for Oil and Gas Operations"},
      {"code": "213113", "name": "Support Activities for Coal Mining"},
      {"code": "213114", "name": "Support Activities for Metal Mining"},
      {"code": "213115", "name": "Support Activities for Nonmetallic Minerals (except Fuels) Mining"},
      {"code": "221111", "name": "Hydroelectric Power Generation"},
      {"code": "221112", "name": "Fossil Fuel Electric Power Generation"},
      {"code": "221113", "name": "Nuclear Electric Power Generation"},
      {"code": "221114", "name": "Solar Electric Power Generation"},
      {"code": "221115", "name": "Wind Electric Power Generation"},
      {"code": "221116", "name": "Geothermal Electric Power Generation"},
      {"code": "221117", "name": "Biomass Electric Power Generation"},
      {"code": "221118", "name": "Other Electric Power Generation"},
      {"code": "221121", "name": "Electric Bulk Power Transmission and Control"},
      {"code": "221122", "name": "Electric Power Distribution"},
      {"code": "221210", "name": "Natural Gas Distribution"},
      {"code": "221310", "name": "Water Supply and Irrigation Systems"},
      {"code": "221320", "name": "Sewage Treatment Facilities"},
      {"code": "221330", "name": "Steam and Air-Conditioning Supply"},
      {"code": "236115", "name": "New Single-Family Housing Construction (except For-Sale Builders)"},
      {"code": "236116", "name": "New Multifamily Housing Construction (except For-Sale Builders)"},
      {"code": "236117", "name": "New Housing For-Sale Builders"},
      {"code": "236118", "name": "Residential Remodelers"},
      {"code": "236210", "name": "Industrial Building Construction"},
      {"code": "236220", "name": "Commercial and Institutional Building Construction"},
      {"code": "237110", "name": "Water and Sewer Line and Related Structures Construction"},
      {"code": "237120", "name": "Oil and Gas Pipeline and Related Structures Construction"},
      {"code": "237130", "name": "Power and Communication Line and Related Structures Construction"},
      {"code": "237210", "name": "Land Subdivision"},
      {"code": "237310", "name": "Highway"},
      {"code": "237990", "name": "Other Heavy and Civil Engineering Construction"},
      {"code": "238110", "name": "Poured Concrete Foundation and Structure Contractors"},
      {"code": "238120", "name": "Structural Steel and Precast Concrete Contractors"},
      {"code": "238130", "name": "Framing Contractors"},
      {"code": "238140", "name": "Masonry Contractors"},
      {"code": "238150", "name": "Glass and Glazing Contractors"},
      {"code": "238160", "name": "Roofing Contractors"},
      {"code": "238170", "name": "Siding Contractors"},
      {"code": "238190", "name": "Other Foundation"},
      {"code": "238210", "name": "Electrical Contractors and Other Wiring Installation Contractors"},
      {"code": "238220", "name": "Plumbing"},
      {"code": "238290", "name": "Other Building Equipment Contractors"},
      {"code": "238310", "name": "Drywall and Insulation Contractors"},
      {"code": "238320", "name": "Painting and Wall Covering Contractors"},
      {"code": "238330", "name": "Flooring Contractors"},
      {"code": "238340", "name": "Tile and Terrazzo Contractors"},
      {"code": "238350", "name": "Finish Carpentry Contractors"},
      {"code": "238390", "name": "Other Building Finishing Contractors"},
      {"code": "238910", "name": "Site Preparation Contractors"},
      {"code": "238990", "name": "All Other Specialty Trade Contractors"},
      {"code": "311111", "name": "Dog and Cat Food Manufacturing"},
      {"code": "311119", "name": "Other Animal Food Manufacturing"},
      {"code": "311211", "name": "Flour Milling"},
      {"code": "311212", "name": "Rice Milling"},
      {"code": "311213", "name": "Malt Manufacturing"},
      {"code": "311221", "name": "Wet Corn Milling and Starch Manufacturing"},
      {"code": "311224", "name": "Soybean and Other Oilseed Processing"},
      {"code": "311225", "name": "Fats and Oils Refining and Blending"},
      {"code": "311230", "name": "Breakfast Cereal Manufacturing"},
      {"code": "311313", "name": "Beet Sugar Manufacturing"},
      {"code": "311314", "name": "Cane Sugar Manufacturing"},
      {"code": "311340", "name": "Nonchocolate Confectionery Manufacturing"},
      {"code": "311351", "name": "Chocolate and Confectionery Manufacturing from Cacao Beans"},
      {"code": "311352", "name": "Confectionery Manufacturing from Purchased Chocolate"},
      {"code": "311411", "name": "Frozen Fruit"},
      {"code": "311412", "name": "Frozen Specialty Food Manufacturing"},
      {"code": "311421", "name": "Fruit and Vegetable Canning"},
      {"code": "311422", "name": "Specialty Canning"},
      {"code": "311423", "name": "Dried and Dehydrated Food Manufacturing"},
      {"code": "311511", "name": "Fluid Milk Manufacturing"},
      {"code": "311512", "name": "Creamery Butter Manufacturing"},
      {"code": "311513", "name": "Cheese Manufacturing"},
      {"code": "311514", "name": "Dry"},
      {"code": "311520", "name": "Ice Cream and Frozen Dessert Manufacturing"},
      {"code": "311611", "name": "Animal (except Poultry) Slaughtering"},
      {"code": "311612", "name": "Meat Processed from Carcasses"},
      {"code": "311613", "name": "Rendering and Meat Byproduct Processing"},
      {"code": "311615", "name": "Poultry Processing"},
      {"code": "311710", "name": "Seafood Product Preparation and Packaging"},
      {"code": "311811", "name": "Retail Bakeries"},
      {"code": "311812", "name": "Commercial Bakeries"},
      {"code": "311813", "name": "Frozen Cakes"},
      {"code": "311821", "name": "Cookie and Cracker Manufacturing"},
      {"code": "311824", "name": "Dry Pasta"},
      {"code": "311830", "name": "Tortilla Manufacturing"},
      {"code": "311911", "name": "Roasted Nuts and Peanut Butter Manufacturing"},
      {"code": "311919", "name": "Other Snack Food Manufacturing"},
      {"code": "311920", "name": "Coffee and Tea Manufacturing"},
      {"code": "311930", "name": "Flavoring Syrup and Concentrate Manufacturing"},
      {"code": "311941", "name": "Mayonnaise"},
      {"code": "311942", "name": "Spice and Extract Manufacturing"},
      {"code": "311991", "name": "Perishable Prepared Food Manufacturing"},
      {"code": "311999", "name": "All Other Miscellaneous Food Manufacturing"},
      {"code": "312111", "name": "Soft Drink Manufacturing"},
      {"code": "312112", "name": "Bottled Water Manufacturing"},
      {"code": "312113", "name": "Ice Manufacturing"},
      {"code": "312120", "name": "Breweries"},
      {"code": "312130", "name": "Wineries"},
      {"code": "312140", "name": "Distilleries"},
      {"code": "312230", "name": "Tobacco Manufacturing"},
      {"code": "313110", "name": "Fiber"},
      {"code": "313210", "name": "Broadwoven Fabric Mills"},
      {"code": "313220", "name": "Narrow Fabric Mills and Schiffli Machine Embroidery"},
      {"code": "313230", "name": "Nonwoven Fabric Mills"},
      {"code": "313240", "name": "Knit Fabric Mills"},
      {"code": "313310", "name": "Textile and Fabric Finishing Mills"},
      {"code": "313320", "name": "Fabric Coating Mills"},
      {"code": "314110", "name": "Carpet and Rug Mills"},
      {"code": "314120", "name": "Curtain and Linen Mills"},
      {"code": "314910", "name": "Textile Bag and Canvas Mills"},
      {"code": "314994", "name": "Rope"},
      {"code": "314999", "name": "All Other Miscellaneous Textile Product Mills"},
      {"code": "315120", "name": "Apparel Knitting Mills"},
      {"code": "315210", "name": "Cut and Sew Apparel Contractors"},
      {"code": "315250", "name": "Cut and Sew Apparel Manufacturing (except Contractors)"},
      {"code": "315990", "name": "Apparel Accessories and Other Apparel Manufacturing"},
      {"code": "316110", "name": "Leather and Hide Tanning and Finishing"},
      {"code": "316210", "name": "Footwear Manufacturing"},
      {"code": "316990", "name": "Other Leather and Allied Product Manufacturing"},
      {"code": "321113", "name": "Sawmills"},
      {"code": "321114", "name": "Wood Preservation"},
      {"code": "321211", "name": "Hardwood Veneer and Plywood Manufacturing"},
      {"code": "321212", "name": "Softwood Veneer and Plywood Manufacturing"},
      {"code": "321215", "name": "Engineered Wood Member Manufacturing"},
      {"code": "321219", "name": "Reconstituted Wood Product Manufacturing"},
      {"code": "321911", "name": "Wood Window and Door Manufacturing"},
      {"code": "321912", "name": "Cut Stock"},
      {"code": "321918", "name": "Other Millwork (including Flooring)"},
      {"code": "321920", "name": "Wood Container and Pallet Manufacturing"},
      {"code": "321991", "name": "Manufactured Home (Mobile Home) Manufacturing"},
      {"code": "321992", "name": "Prefabricated Wood Building Manufacturing"},
      {"code": "321999", "name": "All Other Miscellaneous Wood Product Manufacturing"},
      {"code": "322110", "name": "Pulp Mills"},
      {"code": "322120", "name": "Paper Mills"},
      {"code": "322130", "name": "Paperboard Mills"},
      {"code": "322211", "name": "Corrugated and Solid Fiber Box Manufacturing"},
      {"code": "322212", "name": "Folding Paperboard Box Manufacturing"},
      {"code": "322219", "name": "Other Paperboard Container Manufacturing"},
      {"code": "322220", "name": "Paper Bag and Coated and Treated Paper Manufacturing"},
      {"code": "322230", "name": "Stationery Product Manufacturing"},
      {"code": "322291", "name": "Sanitary Paper Product Manufacturing"},
      {"code": "322299", "name": "All Other Converted Paper Product Manufacturing"},
      {"code": "323111", "name": "Commercial Printing (except Screen and Books)"},
      {"code": "323113", "name": "Commercial Screen Printing"},
      {"code": "323117", "name": "Books Printing"},
      {"code": "323120", "name": "Support Activities for Printing"},
      {"code": "324110", "name": "Petroleum Refineries"},
      {"code": "324121", "name": "Asphalt Paving Mixture and Block Manufacturing"},
      {"code": "324122", "name": "Asphalt Shingle and Coating Materials Manufacturing"},
      {"code": "324191", "name": "Petroleum Lubricating Oil and Grease Manufacturing"},
      {"code": "324199", "name": "All Other Petroleum and Coal Products Manufacturing"},
      {"code": "325110", "name": "Petrochemical Manufacturing"},
      {"code": "325120", "name": "Industrial Gas Manufacturing"},
      {"code": "325130", "name": "Synthetic Dye and Pigment Manufacturing"},
      {"code": "325180", "name": "Other Basic Inorganic Chemical Manufacturing"},
      {"code": "325193", "name": "Ethyl Alcohol Manufacturing"},
      {"code": "325194", "name": "Cyclic Crude"},
      {"code": "325199", "name": "All Other Basic Organic Chemical Manufacturing"},
      {"code": "325211", "name": "Plastics Material and Resin Manufacturing"},
      {"code": "325212", "name": "Synthetic Rubber Manufacturing"},
      {"code": "325220", "name": "Artificial and Synthetic Fibers and Filaments Manufacturing"},
      {"code": "325311", "name": "Nitrogenous Fertilizer Manufacturing"},
      {"code": "325312", "name": "Phosphatic Fertilizer Manufacturing"},
      {"code": "325314", "name": "Fertilizer (Mixing Only) Manufacturing"},
      {"code": "325315", "name": "Compost Manufacturing"},
      {"code": "325320", "name": "Pesticide and Other Agricultural Chemical Manufacturing"},
      {"code": "325411", "name": "Medicinal and Botanical Manufacturing"},
      {"code": "325412", "name": "Pharmaceutical Preparation Manufacturing"},
      {"code": "325413", "name": "In-Vitro Diagnostic Substance Manufacturing"},
      {"code": "325414", "name": "Biological Product (except Diagnostic) Manufacturing"},
      {"code": "325510", "name": "Paint and Coating Manufacturing"},
      {"code": "325520", "name": "Adhesive Manufacturing"},
      {"code": "325611", "name": "Soap and Other Detergent Manufacturing"},
      {"code": "325612", "name": "Polish and Other Sanitation Good Manufacturing"},
      {"code": "325613", "name": "Surface Active Agent Manufacturing"},
      {"code": "325620", "name": "Toilet Preparation Manufacturing"},
      {"code": "325910", "name": "Printing Ink Manufacturing"},
      {"code": "325920", "name": "Explosives Manufacturing"},
      {"code": "325991", "name": "Custom Compounding of Purchased Resins"},
      {"code": "325992", "name": "Photographic Film"},
      {"code": "325998", "name": "All Other Miscellaneous Chemical Product and Preparation Manufacturing"},
      {"code": "326111", "name": "Plastics Bag and Pouch Manufacturing"},
      {"code": "326112", "name": "Plastics Packaging Film and Sheet (including Laminated) Manufacturing"},
      {"code": "326113", "name": "Unlaminated Plastics Film and Sheet (except Packaging) Manufacturing"},
      {"code": "326121", "name": "Unlaminated Plastics Profile Shape Manufacturing"},
      {"code": "326122", "name": "Plastics Pipe and Pipe Fitting Manufacturing"},
      {"code": "326130", "name": "Laminated Plastics Plate"},
      {"code": "326140", "name": "Polystyrene Foam Product Manufacturing"},
      {"code": "326150", "name": "Urethane and Other Foam Product (except Polystyrene) Manufacturing"},
      {"code": "326160", "name": "Plastics Bottle Manufacturing"},
      {"code": "326191", "name": "Plastics Plumbing Fixture Manufacturing"},
      {"code": "326199", "name": "All Other Plastics Product Manufacturing"},
      {"code": "326211", "name": "Tire Manufacturing (except Retreading)"},
      {"code": "326212", "name": "Tire Retreading"},
      {"code": "326220", "name": "Rubber and Plastics Hoses and Belting Manufacturing"},
      {"code": "326291", "name": "Rubber Product Manufacturing for Mechanical Use"},
      {"code": "326299", "name": "All Other Rubber Product Manufacturing"},
      {"code": "327110", "name": "Pottery"},
      {"code": "327120", "name": "Clay Building Material and Refractories Manufacturing"},
      {"code": "327211", "name": "Flat Glass Manufacturing"},
      {"code": "327212", "name": "Other Pressed and Blown Glass and Glassware Manufacturing"},
      {"code": "327213", "name": "Glass Container Manufacturing"},
      {"code": "327215", "name": "Glass Product Manufacturing Made of Purchased Glass"},
      {"code": "327310", "name": "Cement Manufacturing"},
      {"code": "327320", "name": "Ready-Mix Concrete Manufacturing"},
      {"code": "327331", "name": "Concrete Block and Brick Manufacturing"},
      {"code": "327332", "name": "Concrete Pipe Manufacturing"},
      {"code": "327390", "name": "Other Concrete Product Manufacturing"},
      {"code": "327410", "name": "Lime Manufacturing"},
      {"code": "327420", "name": "Gypsum Product Manufacturing"},
      {"code": "327910", "name": "Abrasive Product Manufacturing"},
      {"code": "327991", "name": "Cut Stone and Stone Product Manufacturing"},
      {"code": "327992", "name": "Ground or Treated Mineral and Earth Manufacturing"},
      {"code": "327993", "name": "Mineral Wool Manufacturing"},
      {"code": "327999", "name": "All Other Miscellaneous Nonmetallic Mineral Product Manufacturing"},
      {"code": "331110", "name": "Iron and Steel Mills and Ferroalloy Manufacturing"},
      {"code": "331210", "name": "Iron and Steel Pipe and Tube Manufacturing from Purchased Steel"},
      {"code": "331221", "name": "Rolled Steel Shape Manufacturing"},
      {"code": "331222", "name": "Steel Wire Drawing"},
      {"code": "331313", "name": "Alumina Refining and Primary Aluminum Production"},
      {"code": "331314", "name": "Secondary Smelting and Alloying of Aluminum"},
      {"code": "331315", "name": "Aluminum Sheet"},
      {"code": "331318", "name": "Other Aluminum Rolling"},
      {"code": "331410", "name": "Nonferrous Metal (except Aluminum) Smelting and Refining"},
      {"code": "331420", "name": "Copper Rolling"},
      {"code": "331491", "name": "Nonferrous Metal (except Copper and Aluminum) Rolling"},
      {"code": "331492", "name": "Secondary Smelting"},
      {"code": "331511", "name": "Iron Foundries"},
      {"code": "331512", "name": "Steel Investment Foundries"},
      {"code": "331513", "name": "Steel Foundries (except Investment)"},
      {"code": "331523", "name": "Nonferrous Metal Die-Casting Foundries"},
      {"code": "331524", "name": "Aluminum Foundries (except Die-Casting)"},
      {"code": "331529", "name": "Other Nonferrous Metal Foundries (except Die-Casting)"},
      {"code": "332111", "name": "Iron and Steel Forging"},
      {"code": "332112", "name": "Nonferrous Forging"},
      {"code": "332114", "name": "Custom Roll Forming"},
      {"code": "332117", "name": "Powder Metallurgy Part Manufacturing"},
      {"code": "332119", "name": "Metal Crown"},
      {"code": "332215", "name": "Metal Kitchen Cookware"},
      {"code": "332216", "name": "Saw Blade and Handtool Manufacturing"},
      {"code": "332311", "name": "Prefabricated Metal Building and Component Manufacturing"},
      {"code": "332312", "name": "Fabricated Structural Metal Manufacturing"},
      {"code": "332313", "name": "Plate Work Manufacturing"},
      {"code": "332321", "name": "Metal Window and Door Manufacturing"},
      {"code": "332322", "name": "Sheet Metal Work Manufacturing"},
      {"code": "332323", "name": "Ornamental and Architectural Metal Work Manufacturing"},
      {"code": "332410", "name": "Power Boiler and Heat Exchanger Manufacturing"},
      {"code": "332420", "name": "Metal Tank (Heavy Gauge) Manufacturing"},
      {"code": "332431", "name": "Metal Can Manufacturing"},
      {"code": "332439", "name": "Other Metal Container Manufacturing"},
      {"code": "332510", "name": "Hardware Manufacturing"},
      {"code": "332613", "name": "Spring Manufacturing"},
      {"code": "332618", "name": "Other Fabricated Wire Product Manufacturing"},
      {"code": "332710", "name": "Machine Shops"},
      {"code": "332721", "name": "Precision Turned Product Manufacturing"},
      {"code": "332722", "name": "Bolt"},
      {"code": "332811", "name": "Metal Heat Treating"},
      {"code": "332812", "name": "Metal Coating"},
      {"code": "332813", "name": "Electroplating"},
      {"code": "332911", "name": "Industrial Valve Manufacturing"},
      {"code": "332912", "name": "Fluid Power Valve and Hose Fitting Manufacturing"},
      {"code": "332913", "name": "Plumbing Fixture Fitting and Trim Manufacturing"},
      {"code": "332919", "name": "Other Metal Valve and Pipe Fitting Manufacturing"},
      {"code": "332991", "name": "Ball and Roller Bearing Manufacturing"},
      {"code": "332992", "name": "Small Arms Ammunition Manufacturing"},
      {"code": "332993", "name": "Ammunition (except Small Arms) Manufacturing"},
      {"code": "332994", "name": "Small Arms"},
      {"code": "332996", "name": "Fabricated Pipe and Pipe Fitting Manufacturing"},
      {"code": "332999", "name": "All Other Miscellaneous Fabricated Metal Product Manufacturing"},
      {"code": "333111", "name": "Farm Machinery and Equipment Manufacturing"},
      {"code": "333112", "name": "Lawn and Garden Tractor and Home Lawn and Garden Equipment Manufacturing"},
      {"code": "333120", "name": "Construction Machinery Manufacturing"},
      {"code": "333131", "name": "Mining Machinery and Equipment Manufacturing"},
      {"code": "333132", "name": "Oil and Gas Field Machinery and Equipment Manufacturing"},
      {"code": "333241", "name": "Food Product Machinery Manufacturing"},
      {"code": "333242", "name": "Semiconductor Machinery Manufacturing"},
      {"code": "333243", "name": "Sawmill"},
      {"code": "333248", "name": "All Other Industrial Machinery Manufacturing"},
      {"code": "333310", "name": "Commercial and Service Industry Machinery Manufacturing"},
      {"code": "333413", "name": "Industrial and Commercial Fan and Blower and Air Purification Equipment Manufacturing"},
      {"code": "333414", "name": "Heating Equipment (except Warm Air Furnaces) Manufacturing"},
      {"code": "333415", "name": "Air-Conditioning and Warm Air Heating Equipment and Commercial and Industrial Refrigeration Equipment Manufacturing"},
      {"code": "333511", "name": "Industrial Mold Manufacturing"},
      {"code": "333514", "name": "Special Die and Tool"},
      {"code": "333515", "name": "Cutting Tool and Machine Tool Accessory Manufacturing"},
      {"code": "333517", "name": "Machine Tool Manufacturing"},
      {"code": "333519", "name": "Rolling Mill and Other Metalworking Machinery Manufacturing"},
      {"code": "333611", "name": "Turbine and Turbine Generator Set Units Manufacturing"},
      {"code": "333612", "name": "Speed Changer"},
      {"code": "333613", "name": "Mechanical Power Transmission Equipment Manufacturing"},
      {"code": "333618", "name": "Other Engine Equipment Manufacturing"},
      {"code": "333912", "name": "Air and Gas Compressor Manufacturing"},
      {"code": "333914", "name": "Measuring"},
      {"code": "333921", "name": "Elevator and Moving Stairway Manufacturing"},
      {"code": "333922", "name": "Conveyor and Conveying Equipment Manufacturing"},
      {"code": "333923", "name": "Overhead Traveling Crane"},
      {"code": "333924", "name": "Industrial Truck"},
      {"code": "333991", "name": "Power-Driven Handtool Manufacturing"},
      {"code": "333992", "name": "Welding and Soldering Equipment Manufacturing"},
      {"code": "333993", "name": "Packaging Machinery Manufacturing"},
      {"code": "333994", "name": "Industrial Process Furnace and Oven Manufacturing"},
      {"code": "333995", "name": "Fluid Power Cylinder and Actuator Manufacturing"},
      {"code": "333996", "name": "Fluid Power Pump and Motor Manufacturing"},
      {"code": "333998", "name": "All Other Miscellaneous General Purpose Machinery Manufacturing"},
      {"code": "334111", "name": "Electronic Computer Manufacturing"},
      {"code": "334112", "name": "Computer Storage Device Manufacturing"},
      {"code": "334118", "name": "Computer Terminal and Other Computer Peripheral Equipment Manufacturing"},
      {"code": "334210", "name": "Telephone Apparatus Manufacturing"},
      {"code": "334220", "name": "Radio and Television Broadcasting and Wireless Communications Equipment Manufacturing"},
      {"code": "334290", "name": "Other Communications Equipment Manufacturing"},
      {"code": "334310", "name": "Audio and Video Equipment Manufacturing"},
      {"code": "334412", "name": "Bare Printed Circuit Board Manufacturing"},
      {"code": "334413", "name": "Semiconductor and Related Device Manufacturing"},
      {"code": "334416", "name": "Capacitor"},
      {"code": "334417", "name": "Electronic Connector Manufacturing"},
      {"code": "334418", "name": "Printed Circuit Assembly (Electronic Assembly) Manufacturing"},
      {"code": "334419", "name": "Other Electronic Component Manufacturing"},
      {"code": "334510", "name": "Electromedical and Electrotherapeutic Apparatus Manufacturing"},
      {"code": "334511", "name": "Search"},
      {"code": "334512", "name": "Automatic Environmental Control Manufacturing for Residential"},
      {"code": "334513", "name": "Instruments and Related Products Manufacturing for Measuring"},
      {"code": "334514", "name": "Totalizing Fluid Meter and Counting Device Manufacturing"},
      {"code": "334515", "name": "Instrument Manufacturing for Measuring and Testing Electricity and Electrical Signals"},
      {"code": "334516", "name": "Analytical Laboratory Instrument Manufacturing"},
      {"code": "334517", "name": "Irradiation Apparatus Manufacturing"},
      {"code": "334519", "name": "Other Measuring and Controlling Device Manufacturing"},
      {"code": "334610", "name": "Manufacturing and Reproducing Magnetic and Optical Media"},
      {"code": "335131", "name": "Residential Electric Lighting Fixture Manufacturing"},
      {"code": "335132", "name": "Commercial"},
      {"code": "335139", "name": "Electric Lamp Bulb and Other Lighting Equipment Manufacturing"},
      {"code": "335210", "name": "Small Electrical Appliance Manufacturing"},
      {"code": "335220", "name": "Major Household Appliance Manufacturing"},
      {"code": "335311", "name": "Power"},
      {"code": "335312", "name": "Motor and Generator Manufacturing"},
      {"code": "335313", "name": "Switchgear and Switchboard Apparatus Manufacturing"},
      {"code": "335314", "name": "Relay and Industrial Control Manufacturing"},
      {"code": "335910", "name": "Battery Manufacturing"},
      {"code": "335921", "name": "Fiber Optic Cable Manufacturing"},
      {"code": "335929", "name": "Other Communication and Energy Wire Manufacturing"},
      {"code": "335931", "name": "Current-Carrying Wiring Device Manufacturing"},
      {"code": "335932", "name": "Noncurrent-Carrying Wiring Device Manufacturing"},
      {"code": "335991", "name": "Carbon and Graphite Product Manufacturing"},
      {"code": "335999", "name": "All Other Miscellaneous Electrical Equipment and Component Manufacturing"},
      {"code": "336110", "name": "Automobile and Light Duty Motor Vehicle Manufacturing"},
      {"code": "336120", "name": "Heavy Duty Truck Manufacturing"},
      {"code": "336211", "name": "Motor Vehicle Body Manufacturing"},
      {"code": "336212", "name": "Truck Trailer Manufacturing"},
      {"code": "336213", "name": "Motor Home Manufacturing"},
      {"code": "336214", "name": "Travel Trailer and Camper Manufacturing"},
      {"code": "336310", "name": "Motor Vehicle Gasoline Engine and Engine Parts Manufacturing"},
      {"code": "336320", "name": "Motor Vehicle Electrical and Electronic Equipment Manufacturing"},
      {"code": "336330", "name": "Motor Vehicle Steering and Suspension Components (except Spring) Manufacturing"},
      {"code": "336340", "name": "Motor Vehicle Brake System Manufacturing"},
      {"code": "336350", "name": "Motor Vehicle Transmission and Power Train Parts Manufacturing"},
      {"code": "336360", "name": "Motor Vehicle Seating and Interior Trim Manufacturing"},
      {"code": "336370", "name": "Motor Vehicle Metal Stamping"},
      {"code": "336390", "name": "Other Motor Vehicle Parts Manufacturing"},
      {"code": "336411", "name": "Aircraft Manufacturing"},
      {"code": "336412", "name": "Aircraft Engine and Engine Parts Manufacturing"},
      {"code": "336413", "name": "Other Aircraft Parts and Auxiliary Equipment Manufacturing"},
      {"code": "336414", "name": "Guided Missile and Space Vehicle Manufacturing"},
      {"code": "336415", "name": "Guided Missile and Space Vehicle Propulsion Unit and Propulsion Unit Parts Manufacturing"},
      {"code": "336419", "name": "Other Guided Missile and Space Vehicle Parts and Auxiliary Equipment Manufacturing"},
      {"code": "336510", "name": "Railroad Rolling Stock Manufacturing"},
      {"code": "336611", "name": "Ship Building and Repairing"},
      {"code": "336612", "name": "Boat Building"},
      {"code": "336991", "name": "Motorcycle"},
      {"code": "336992", "name": "Military Armored Vehicle"},
      {"code": "336999", "name": "All Other Transportation Equipment Manufacturing"},
      {"code": "337110", "name": "Wood Kitchen Cabinet and Countertop Manufacturing"},
      {"code": "337121", "name": "Upholstered Household Furniture Manufacturing"},
      {"code": "337122", "name": "Nonupholstered Wood Household Furniture Manufacturing"},
      {"code": "337126", "name": "Household Furniture (except Wood and Upholstered) Manufacturing"},
      {"code": "337127", "name": "Institutional Furniture Manufacturing"},
      {"code": "337211", "name": "Wood Office Furniture Manufacturing"},
      {"code": "337212", "name": "Custom Architectural Woodwork and Millwork Manufacturing"},
      {"code": "337214", "name": "Office Furniture (except Wood) Manufacturing"},
      {"code": "337215", "name": "Showcase"},
      {"code": "337910", "name": "Mattress Manufacturing"},
      {"code": "337920", "name": "Blind and Shade Manufacturing"},
      {"code": "339112", "name": "Surgical and Medical Instrument Manufacturing"},
      {"code": "339113", "name": "Surgical Appliance and Supplies Manufacturing"},
      {"code": "339114", "name": "Dental Equipment and Supplies Manufacturing"},
      {"code": "339115", "name": "Ophthalmic Goods Manufacturing"},
      {"code": "339116", "name": "Dental Laboratories"},
      {"code": "339910", "name": "Jewelry and Silverware Manufacturing"},
      {"code": "339920", "name": "Sporting and Athletic Goods Manufacturing"},
      {"code": "339930", "name": "Doll"},
      {"code": "339940", "name": "Office Supplies (except Paper) Manufacturing"},
      {"code": "339950", "name": "Sign Manufacturing"},
      {"code": "339991", "name": "Gasket"},
      {"code": "339992", "name": "Musical Instrument Manufacturing"},
      {"code": "339993", "name": "Fastener"},
      {"code": "339994", "name": "Broom"},
      {"code": "339995", "name": "Burial Casket Manufacturing"},
      {"code": "339999", "name": "All Other Miscellaneous Manufacturing"},
      {"code": "423110", "name": "Automobile and Other Motor Vehicle Merchant Wholesalers"},
      {"code": "423120", "name": "Motor Vehicle Supplies and New Parts Merchant Wholesalers"},
      {"code": "423130", "name": "Tire and Tube Merchant Wholesalers"},
      {"code": "423140", "name": "Motor Vehicle Parts (Used) Merchant Wholesalers"},
      {"code": "423210", "name": "Furniture Merchant Wholesalers"},
      {"code": "423220", "name": "Home Furnishing Merchant Wholesalers"},
      {"code": "423310", "name": "Lumber"},
      {"code": "423320", "name": "Brick"},
      {"code": "423330", "name": "Roofing"},
      {"code": "423390", "name": "Other Construction Material Merchant Wholesalers"},
      {"code": "423410", "name": "Photographic Equipment and Supplies Merchant Wholesalers"},
      {"code": "423420", "name": "Office Equipment Merchant Wholesalers"},
      {"code": "423430", "name": "Computer and Computer Peripheral Equipment and Software Merchant Wholesalers"},
      {"code": "423440", "name": "Other Commercial Equipment Merchant Wholesalers"},
      {"code": "423450", "name": "Medical"},
      {"code": "423460", "name": "Ophthalmic Goods Merchant Wholesalers"},
      {"code": "423490", "name": "Other Professional Equipment and Supplies Merchant Wholesalers"},
      {"code": "423510", "name": "Metal Service Centers and Other Metal Merchant Wholesalers"},
      {"code": "423520", "name": "Coal and Other Mineral and Ore Merchant Wholesalers"},
      {"code": "423610", "name": "Electrical Apparatus and Equipment"},
      {"code": "423620", "name": "Household Appliances"},
      {"code": "423690", "name": "Other Electronic Parts and Equipment Merchant Wholesalers"},
      {"code": "423710", "name": "Hardware Merchant Wholesalers"},
      {"code": "423720", "name": "Plumbing and Heating Equipment and Supplies (Hydronics) Merchant Wholesalers"},
      {"code": "423730", "name": "Warm Air Heating and Air-Conditioning Equipment and Supplies Merchant Wholesalers"},
      {"code": "423740", "name": "Refrigeration Equipment and Supplies Merchant Wholesalers"},
      {"code": "423810", "name": "Construction and Mining (except Oil Well) Machinery and Equipment Merchant Wholesalers"},
      {"code": "423820", "name": "Farm and Garden Machinery and Equipment Merchant Wholesalers"},
      {"code": "423830", "name": "Industrial Machinery and Equipment Merchant Wholesalers"},
      {"code": "423840", "name": "Industrial Supplies Merchant Wholesalers"},
      {"code": "423850", "name": "Service Establishment Equipment and Supplies Merchant Wholesalers"},
      {"code": "423860", "name": "Transportation Equipment and Supplies (except Motor Vehicle) Merchant Wholesalers"},
      {"code": "423910", "name": "Sporting and Recreational Goods and Supplies Merchant Wholesalers"},
      {"code": "423920", "name": "Toy and Hobby Goods and Supplies Merchant Wholesalers"},
      {"code": "423930", "name": "Recyclable Material Merchant Wholesalers"},
      {"code": "423940", "name": "Jewelry"},
      {"code": "423990", "name": "Other Miscellaneous Durable Goods Merchant Wholesalers"},
      {"code": "424110", "name": "Printing and Writing Paper Merchant Wholesalers"},
      {"code": "424120", "name": "Stationery and Office Supplies Merchant Wholesalers"},
      {"code": "424130", "name": "Industrial and Personal Service Paper Merchant Wholesalers"},
      {"code": "424210", "name": "Drugs and Druggists' Sundries Merchant Wholesalers"},
      {"code": "424310", "name": "Piece Goods"},
      {"code": "424340", "name": "Footwear Merchant Wholesalers"},
      {"code": "424350", "name": "Clothing and Clothing Accessories Merchant Wholesalers"},
      {"code": "424410", "name": "General Line Grocery Merchant Wholesalers"},
      {"code": "424420", "name": "Packaged Frozen Food Merchant Wholesalers"},
      {"code": "424430", "name": "Dairy Product (except Dried or Canned) Merchant Wholesalers"},
      {"code": "424440", "name": "Poultry and Poultry Product Merchant Wholesalers"},
      {"code": "424450", "name": "Confectionery Merchant Wholesalers"},
      {"code": "424460", "name": "Fish and Seafood Merchant Wholesalers"},
      {"code": "424470", "name": "Meat and Meat Product Merchant Wholesalers"},
      {"code": "424480", "name": "Fresh Fruit and Vegetable Merchant Wholesalers"},
      {"code": "424490", "name": "Other Grocery and Related Products Merchant Wholesalers"},
      {"code": "424510", "name": "Grain and Field Bean Merchant Wholesalers"},
      {"code": "424520", "name": "Livestock Merchant Wholesalers"},
      {"code": "424590", "name": "Other Farm Product Raw Material Merchant Wholesalers"},
      {"code": "424610", "name": "Plastics Materials and Basic Forms and Shapes Merchant Wholesalers"},
      {"code": "424690", "name": "Other Chemical and Allied Products Merchant Wholesalers"},
      {"code": "424710", "name": "Petroleum Bulk Stations and Terminals"},
      {"code": "424720", "name": "Petroleum and Petroleum Products Merchant Wholesalers (except Bulk Stations and Terminals)"},
      {"code": "424810", "name": "Beer and Ale Merchant Wholesalers"},
      {"code": "424820", "name": "Wine and Distilled Alcoholic Beverage Merchant Wholesalers"},
      {"code": "424910", "name": "Farm Supplies Merchant Wholesalers"},
      {"code": "424920", "name": "Book"},
      {"code": "424930", "name": "Flower"},
      {"code": "424940", "name": "Tobacco Product and Electronic Cigarette Merchant Wholesalers"},
      {"code": "424950", "name": "Paint"},
      {"code": "424990", "name": "Other Miscellaneous Nondurable Goods Merchant Wholesalers"},
      {"code": "425120", "name": "Wholesale Trade Agents and Brokers"},
      {"code": "441110", "name": "New Car Dealers"},
      {"code": "441120", "name": "Used Car Dealers"},
      {"code": "441210", "name": "Recreational Vehicle Dealers"},
      {"code": "441222", "name": "Boat Dealers"},
      {"code": "441227", "name": "Motorcycle"},
      {"code": "441330", "name": "Automotive Parts and Accessories Retailers"},
      {"code": "441340", "name": "Tire Dealers"},
      {"code": "444110", "name": "Home Centers"},
      {"code": "444120", "name": "Paint and Wallpaper Retailers"},
      {"code": "444140", "name": "Hardware Retailers"},
      {"code": "444180", "name": "Other Building Material Dealers"},
      {"code": "444230", "name": "Outdoor Power Equipment Retailers"},
      {"code": "444240", "name": "Nursery"},
      {"code": "445110", "name": "Supermarkets and Other Grocery Retailers (except Convenience Retailers)"},
      {"code": "445131", "name": "Convenience Retailers"},
      {"code": "445132", "name": "Vending Machine Operators"},
      {"code": "445230", "name": "Fruit and Vegetable Retailers"},
      {"code": "445240", "name": "Meat Retailers"},
      {"code": "445250", "name": "Fish and Seafood Retailers"},
      {"code": "445291", "name": "Baked Goods Retailers"},
      {"code": "445292", "name": "Confectionery and Nut Retailers"},
      {"code": "445298", "name": "All Other Specialty Food Retailers"},
      {"code": "445320", "name": "Beer"},
      {"code": "449110", "name": "Furniture Retailers"},
      {"code": "449121", "name": "Floor Covering Retailers"},
      {"code": "449122", "name": "Window Treatment Retailers"},
      {"code": "449129", "name": "All Other Home Furnishings Retailers"},
      {"code": "449210", "name": "Electronics and Appliance Retailers"},
      {"code": "455110", "name": "Department Stores"},
      {"code": "455211", "name": "Warehouse Clubs and Supercenters"},
      {"code": "455219", "name": "All Other General Merchandise Retailers"},
      {"code": "456110", "name": "Pharmacies and Drug Retailers"},
      {"code": "456120", "name": "Cosmetics"},
      {"code": "456130", "name": "Optical Goods Retailers"},
      {"code": "456191", "name": "Food (Health) Supplement Retailers"},
      {"code": "456199", "name": "All Other Health and Personal Care Retailers"},
      {"code": "457110", "name": "Gasoline Stations with Convenience Stores"},
      {"code": "457120", "name": "Other Gasoline Stations"},
      {"code": "457210", "name": "Fuel Dealers"},
      {"code": "458110", "name": "Clothing and Clothing Accessories Retailers"},
      {"code": "458210", "name": "Shoe Retailers"},
      {"code": "458310", "name": "Jewelry Retailers"},
      {"code": "458320", "name": "Luggage and Leather Goods Retailers"},
      {"code": "459110", "name": "Sporting Goods Retailers"},
      {"code": "459120", "name": "Hobby"},
      {"code": "459130", "name": "Sewing"},
      {"code": "459140", "name": "Musical Instrument and Supplies Retailers"},
      {"code": "459210", "name": "Book Retailers and News Dealers"},
      {"code": "459310", "name": "Florists"},
      {"code": "459410", "name": "Office Supplies and Stationery Retailers"},
      {"code": "459420", "name": "Gift"},
      {"code": "459510", "name": "Used Merchandise Retailers"},
      {"code": "459910", "name": "Pet and Pet Supplies Retailers"},
      {"code": "459920", "name": "Art Dealers"},
      {"code": "459930", "name": "Manufactured (Mobile) Home Dealers"},
      {"code": "459991", "name": "Tobacco"},
      {"code": "459999", "name": "All Other Miscellaneous Retailers"},
      {"code": "481111", "name": "Scheduled Passenger Air Transportation"},
      {"code": "481112", "name": "Scheduled Freight Air Transportation"},
      {"code": "481211", "name": "Nonscheduled Chartered Passenger Air Transportation"},
      {"code": "481212", "name": "Nonscheduled Chartered Freight Air Transportation"},
      {"code": "481219", "name": "Other Nonscheduled Air Transportation"},
      {"code": "482111", "name": "Line-Haul Railroads"},
      {"code": "482112", "name": "Short Line Railroads"},
      {"code": "483111", "name": "Deep Sea Freight Transportation"},
      {"code": "483112", "name": "Deep Sea Passenger Transportation"},
      {"code": "483113", "name": "Coastal and Great Lakes Freight Transportation"},
      {"code": "483114", "name": "Coastal and Great Lakes Passenger Transportation"},
      {"code": "483211", "name": "Inland Water Freight Transportation"},
      {"code": "483212", "name": "Inland Water Passenger Transportation"},
      {"code": "484110", "name": "General Freight Trucking"},
      {"code": "484121", "name": "General Freight Trucking"},
      {"code": "484122", "name": "General Freight Trucking"},
      {"code": "484210", "name": "Used Household and Office Goods Moving"},
      {"code": "484220", "name": "Specialized Freight (except Used Goods) Trucking"},
      {"code": "484230", "name": "Specialized Freight (except Used Goods) Trucking"},
      {"code": "485111", "name": "Mixed Mode Transit Systems"},
      {"code": "485112", "name": "Commuter Rail Systems"},
      {"code": "485113", "name": "Bus and Other Motor Vehicle Transit Systems"},
      {"code": "485119", "name": "Other Urban Transit Systems"},
      {"code": "485210", "name": "Interurban and Rural Bus Transportation"},
      {"code": "485310", "name": "Taxi and Ridesharing Services"},
      {"code": "485320", "name": "Limousine Service"},
      {"code": "485410", "name": "School and Employee Bus Transportation"},
      {"code": "485510", "name": "Charter Bus Industry"},
      {"code": "485991", "name": "Special Needs Transportation"},
      {"code": "485999", "name": "All Other Transit and Ground Passenger Transportation"},
      {"code": "486110", "name": "Pipeline Transportation of Crude Oil"},
      {"code": "486210", "name": "Pipeline Transportation of Natural Gas"},
      {"code": "486910", "name": "Pipeline Transportation of Refined Petroleum Products"},
      {"code": "486990", "name": "All Other Pipeline Transportation"},
      {"code": "487110", "name": "Scenic and Sightseeing Transportation"},
      {"code": "487210", "name": "Scenic and Sightseeing Transportation"},
      {"code": "487990", "name": "Scenic and Sightseeing Transportation"},
      {"code": "488111", "name": "Air Traffic Control"},
      {"code": "488119", "name": "Other Airport Operations"},
      {"code": "488190", "name": "Other Support Activities for Air Transportation"},
      {"code": "488210", "name": "Support Activities for Rail Transportation"},
      {"code": "488310", "name": "Port and Harbor Operations"},
      {"code": "488320", "name": "Marine Cargo Handling"},
      {"code": "488330", "name": "Navigational Services to Shipping"},
      {"code": "488390", "name": "Other Support Activities for Water Transportation"},
      {"code": "488410", "name": "Motor Vehicle Towing"},
      {"code": "488490", "name": "Other Support Activities for Road Transportation"},
      {"code": "488510", "name": "Freight Transportation Arrangement"},
      {"code": "488991", "name": "Packing and Crating"},
      {"code": "488999", "name": "All Other Support Activities for Transportation"},
      {"code": "491110", "name": "Postal Service"},
      {"code": "492110", "name": "Couriers and Express Delivery Services"},
      {"code": "492210", "name": "Local Messengers and Local Delivery"},
      {"code": "493110", "name": "General Warehousing and Storage"},
      {"code": "493120", "name": "Refrigerated Warehousing and Storage"},
      {"code": "493130", "name": "Farm Product Warehousing and Storage"},
      {"code": "493190", "name": "Other Warehousing and Storage"},
      {"code": "512110", "name": "Motion Picture and Video Production"},
      {"code": "512120", "name": "Motion Picture and Video Distribution"},
      {"code": "512131", "name": "Motion Picture Theaters (except Drive-Ins)"},
      {"code": "512132", "name": "Drive-In Motion Picture Theaters"},
      {"code": "512191", "name": "Teleproduction and Other Postproduction Services"},
      {"code": "512199", "name": "Other Motion Picture and Video Industries"},
      {"code": "512230", "name": "Music Publishers"},
      {"code": "512240", "name": "Sound Recording Studios"},
      {"code": "512250", "name": "Record Production and Distribution"},
      {"code": "512290", "name": "Other Sound Recording Industries"},
      {"code": "513110", "name": "Newspaper Publishers"},
      {"code": "513120", "name": "Periodical Publishers"},
      {"code": "513130", "name": "Book Publishers"},
      {"code": "513140", "name": "Directory and Mailing List Publishers"},
      {"code": "513191", "name": "Greeting Card Publishers"},
      {"code": "513199", "name": "All Other Publishers"},
      {"code": "513210", "name": "Software Publishers"},
      {"code": "516110", "name": "Radio Broadcasting Stations"},
      {"code": "516120", "name": "Television Broadcasting Stations"},
      {"code": "516210", "name": "Media Streaming Distribution Services"},
      {"code": "517111", "name": "Wired Telecommunications Carriers"},
      {"code": "517112", "name": "Wireless Telecommunications Carriers (except Satellite)"},
      {"code": "517121", "name": "Telecommunications Resellers"},
      {"code": "517122", "name": "Agents for Wireless Telecommunications Services"},
      {"code": "517410", "name": "Satellite Telecommunications"},
      {"code": "517810", "name": "All Other Telecommunications"},
      {"code": "518210", "name": "Computing Infrastructure Providers"},
      {"code": "519210", "name": "Libraries and Archives"},
      {"code": "519290", "name": "Web Search Portals and All Other Information Services"},
      {"code": "521110", "name": "Monetary Authorities-Central Bank"},
      {"code": "522110", "name": "Commercial Banking"},
      {"code": "522130", "name": "Credit Unions"},
      {"code": "522180", "name": "Savings Institutions and Other Depository Credit Intermediation"},
      {"code": "522210", "name": "Credit Card Issuing"},
      {"code": "522220", "name": "Sales Financing"},
      {"code": "522291", "name": "Consumer Lending"},
      {"code": "522292", "name": "Real Estate Credit"},
      {"code": "522299", "name": "International"},
      {"code": "522310", "name": "Mortgage and Nonmortgage Loan Brokers"},
      {"code": "522320", "name": "Financial Transactions Processing"},
      {"code": "522390", "name": "Other Activities Related to Credit Intermediation"},
      {"code": "523150", "name": "Investment Banking and Securities Intermediation"},
      {"code": "523160", "name": "Commodity Contracts Intermediation"},
      {"code": "523210", "name": "Securities and Commodity Exchanges"},
      {"code": "523910", "name": "Miscellaneous Intermediation"},
      {"code": "523940", "name": "Portfolio Management and Investment Advice"},
      {"code": "523991", "name": "Trust"},
      {"code": "523999", "name": "Miscellaneous Financial Investment Activities"},
      {"code": "524113", "name": "Direct Life Insurance Carriers"},
      {"code": "524114", "name": "Direct Health and Medical Insurance Carriers"},
      {"code": "524126", "name": "Direct Property and Casualty Insurance Carriers"},
      {"code": "524127", "name": "Direct Title Insurance Carriers"},
      {"code": "524128", "name": "Other Direct Insurance (except Life"},
      {"code": "524130", "name": "Reinsurance Carriers"},
      {"code": "524210", "name": "Insurance Agencies and Brokerages"},
      {"code": "524291", "name": "Claims Adjusting"},
      {"code": "524292", "name": "Pharmacy Benefit Management and Other Third Party Administration of Insurance and Pension Funds"},
      {"code": "524298", "name": "All Other Insurance Related Activities"},
      {"code": "525110", "name": "Pension Funds"},
      {"code": "525120", "name": "Health and Welfare Funds"},
      {"code": "525190", "name": "Other Insurance Funds"},
      {"code": "525910", "name": "Open-End Investment Funds"},
      {"code": "525920", "name": "Trusts"},
      {"code": "525990", "name": "Other Financial Vehicles"},
      {"code": "531110", "name": "Lessors of Residential Buildings and Dwellings"},
      {"code": "531120", "name": "Lessors of Nonresidential Buildings (except Miniwarehouses)"},
      {"code": "531130", "name": "Lessors of Miniwarehouses and Self-Storage Units"},
      {"code": "531190", "name": "Lessors of Other Real Estate Property"},
      {"code": "531210", "name": "Offices of Real Estate Agents and Brokers"},
      {"code": "531311", "name": "Residential Property Managers"},
      {"code": "531312", "name": "Nonresidential Property Managers"},
      {"code": "531320", "name": "Offices of Real Estate Appraisers"},
      {"code": "531390", "name": "Other Activities Related to Real Estate"},
      {"code": "532111", "name": "Passenger Car Rental"},
      {"code": "532112", "name": "Passenger Car Leasing"},
      {"code": "532120", "name": "Truck"},
      {"code": "532210", "name": "Consumer Electronics and Appliances Rental"},
      {"code": "532281", "name": "Formal Wear and Costume Rental"},
      {"code": "532282", "name": "Video Tape and Disc Rental"},
      {"code": "532283", "name": "Home Health Equipment Rental"},
      {"code": "532284", "name": "Recreational Goods Rental"},
      {"code": "532289", "name": "All Other Consumer Goods Rental"},
      {"code": "532310", "name": "General Rental Centers"},
      {"code": "532411", "name": "Commercial Air"},
      {"code": "532412", "name": "Construction"},
      {"code": "532420", "name": "Office Machinery and Equipment Rental and Leasing"},
      {"code": "532490", "name": "Other Commercial and Industrial Machinery and Equipment Rental and Leasing"},
      {"code": "533110", "name": "Lessors of Nonfinancial Intangible Assets (except Copyrighted Works)"},
      {"code": "541110", "name": "Offices of Lawyers"},
      {"code": "541120", "name": "Offices of Notaries"},
      {"code": "541191", "name": "Title Abstract and Settlement Offices"},
      {"code": "541199", "name": "All Other Legal Services"},
      {"code": "541211", "name": "Offices of Certified Public Accountants"},
      {"code": "541213", "name": "Tax Preparation Services"},
      {"code": "541214", "name": "Payroll Services"},
      {"code": "541219", "name": "Other Accounting Services"},
      {"code": "541310", "name": "Architectural Services"},
      {"code": "541320", "name": "Landscape Architectural Services"},
      {"code": "541330", "name": "Engineering Services"},
      {"code": "541340", "name": "Drafting Services"},
      {"code": "541350", "name": "Building Inspection Services"},
      {"code": "541360", "name": "Geophysical Surveying and Mapping Services"},
      {"code": "541370", "name": "Surveying and Mapping (except Geophysical) Services"},
      {"code": "541380", "name": "Testing Laboratories and Services"},
      {"code": "541410", "name": "Interior Design Services"},
      {"code": "541420", "name": "Industrial Design Services"},
      {"code": "541430", "name": "Graphic Design Services"},
      {"code": "541490", "name": "Other Specialized Design Services"},
      {"code": "541511", "name": "Custom Computer Programming Services"},
      {"code": "541512", "name": "Computer Systems Design Services"},
      {"code": "541513", "name": "Computer Facilities Management Services"},
      {"code": "541519", "name": "Other Computer Related Services"},
      {"code": "541611", "name": "Administrative Management and General Management Consulting Services"},
      {"code": "541612", "name": "Human Resources Consulting Services"},
      {"code": "541613", "name": "Marketing Consulting Services"},
      {"code": "541614", "name": "Process"},
      {"code": "541618", "name": "Other Management Consulting Services"},
      {"code": "541620", "name": "Environmental Consulting Services"},
      {"code": "541690", "name": "Other Scientific and Technical Consulting Services"},
      {"code": "541713", "name": "Research and Development in Nanotechnology"},
      {"code": "541714", "name": "Research and Development in Biotechnology (except Nanobiotechnology)"},
      {"code": "541715", "name": "Research and Development in the Physical"},
      {"code": "541720", "name": "Research and Development in the Social Sciences and Humanities"},
      {"code": "541810", "name": "Advertising Agencies"},
      {"code": "541820", "name": "Public Relations Agencies"},
      {"code": "541830", "name": "Media Buying Agencies"},
      {"code": "541840", "name": "Media Representatives"},
      {"code": "541850", "name": "Indoor and Outdoor Display Advertising"},
      {"code": "541860", "name": "Direct Mail Advertising"},
      {"code": "541870", "name": "Advertising Material Distribution Services"},
      {"code": "541890", "name": "Other Services Related to Advertising"},
      {"code": "541910", "name": "Marketing Research and Public Opinion Polling"},
      {"code": "541921", "name": "Photography Studios"},
      {"code": "541922", "name": "Commercial Photography"},
      {"code": "541930", "name": "Translation and Interpretation Services"},
      {"code": "541940", "name": "Veterinary Services"},
      {"code": "541990", "name": "All Other Professional"},
      {"code": "551111", "name": "Offices of Bank Holding Companies"},
      {"code": "551112", "name": "Offices of Other Holding Companies"},
      {"code": "551114", "name": "Corporate"},
      {"code": "561110", "name": "Office Administrative Services"},
      {"code": "561210", "name": "Facilities Support Services"},
      {"code": "561311", "name": "Employment Placement Agencies"},
      {"code": "561312", "name": "Executive Search Services"},
      {"code": "561320", "name": "Temporary Help Services"},
      {"code": "561330", "name": "Professional Employer Organizations"},
      {"code": "561410", "name": "Document Preparation Services"},
      {"code": "561421", "name": "Telephone Answering Services"},
      {"code": "561422", "name": "Telemarketing Bureaus and Other Contact Centers"},
      {"code": "561431", "name": "Private Mail Centers"},
      {"code": "561439", "name": "Other Business Service Centers (including Copy Shops)"},
      {"code": "561440", "name": "Collection Agencies"},
      {"code": "561450", "name": "Credit Bureaus"},
      {"code": "561491", "name": "Repossession Services"},
      {"code": "561492", "name": "Court Reporting and Stenotype Services"},
      {"code": "561499", "name": "All Other Business Support Services"},
      {"code": "561510", "name": "Travel Agencies"},
      {"code": "561520", "name": "Tour Operators"},
      {"code": "561591", "name": "Convention and Visitors Bureaus"},
      {"code": "561599", "name": "All Other Travel Arrangement and Reservation Services"},
      {"code": "561611", "name": "Investigation and Personal Background Check Services"},
      {"code": "561612", "name": "Security Guards and Patrol Services"},
      {"code": "561613", "name": "Armored Car Services"},
      {"code": "561621", "name": "Security Systems Services (except Locksmiths)"},
      {"code": "561622", "name": "Locksmiths"},
      {"code": "561710", "name": "Exterminating and Pest Control Services"},
      {"code": "561720", "name": "Janitorial Services"},
      {"code": "561730", "name": "Landscaping Services"},
      {"code": "561740", "name": "Carpet and Upholstery Cleaning Services"},
      {"code": "561790", "name": "Other Services to Buildings and Dwellings"},
      {"code": "561910", "name": "Packaging and Labeling Services"},
      {"code": "561920", "name": "Convention and Trade Show Organizers"},
      {"code": "561990", "name": "All Other Support Services"},
      {"code": "562111", "name": "Solid Waste Collection"},
      {"code": "562112", "name": "Hazardous Waste Collection"},
      {"code": "562119", "name": "Other Waste Collection"},
      {"code": "562211", "name": "Hazardous Waste Treatment and Disposal"},
      {"code": "562212", "name": "Solid Waste Landfill"},
      {"code": "562213", "name": "Solid Waste Combustors and Incinerators"},
      {"code": "562219", "name": "Other Nonhazardous Waste Treatment and Disposal"},
      {"code": "562910", "name": "Remediation Services"},
      {"code": "562920", "name": "Materials Recovery Facilities"},
      {"code": "562991", "name": "Septic Tank and Related Services"},
      {"code": "562998", "name": "All Other Miscellaneous Waste Management Services"},
      {"code": "611110", "name": "Elementary and Secondary Schools"},
      {"code": "611210", "name": "Junior Colleges"},
      {"code": "611310", "name": "Colleges"},
      {"code": "611410", "name": "Business and Secretarial Schools"},
      {"code": "611420", "name": "Computer Training"},
      {"code": "611430", "name": "Professional and Management Development Training"},
      {"code": "611511", "name": "Cosmetology and Barber Schools"},
      {"code": "611512", "name": "Flight Training"},
      {"code": "611513", "name": "Apprenticeship Training"},
      {"code": "611519", "name": "Other Technical and Trade Schools"},
      {"code": "611610", "name": "Fine Arts Schools"},
      {"code": "611620", "name": "Sports and Recreation Instruction"},
      {"code": "611630", "name": "Language Schools"},
      {"code": "611691", "name": "Exam Preparation and Tutoring"},
      {"code": "611692", "name": "Automobile Driving Schools"},
      {"code": "611699", "name": "All Other Miscellaneous Schools and Instruction"},
      {"code": "611710", "name": "Educational Support Services"},
      {"code": "621111", "name": "Offices of Physicians (except Mental Health Specialists)"},
      {"code": "621112", "name": "Offices of Physicians"},
      {"code": "621210", "name": "Offices of Dentists"},
      {"code": "621310", "name": "Offices of Chiropractors"},
      {"code": "621320", "name": "Offices of Optometrists"},
      {"code": "621330", "name": "Offices of Mental Health Practitioners (except Physicians)"},
      {"code": "621340", "name": "Offices of Physical"},
      {"code": "621391", "name": "Offices of Podiatrists"},
      {"code": "621399", "name": "Offices of All Other Miscellaneous Health Practitioners"},
      {"code": "621410", "name": "Family Planning Centers"},
      {"code": "621420", "name": "Outpatient Mental Health and Substance Abuse Centers"},
      {"code": "621491", "name": "HMO Medical Centers"},
      {"code": "621492", "name": "Kidney Dialysis Centers"},
      {"code": "621493", "name": "Freestanding Ambulatory Surgical and Emergency Centers"},
      {"code": "621498", "name": "All Other Outpatient Care Centers"},
      {"code": "621511", "name": "Medical Laboratories"},
      {"code": "621512", "name": "Diagnostic Imaging Centers"},
      {"code": "621610", "name": "Home Health Care Services"},
      {"code": "621910", "name": "Ambulance Services"},
      {"code": "621991", "name": "Blood and Organ Banks"},
      {"code": "621999", "name": "All Other Miscellaneous Ambulatory Health Care Services"},
      {"code": "622110", "name": "General Medical and Surgical Hospitals"},
      {"code": "622210", "name": "Psychiatric and Substance Abuse Hospitals"},
      {"code": "622310", "name": "Specialty (except Psychiatric and Substance Abuse) Hospitals"},
      {"code": "623110", "name": "Nursing Care Facilities (Skilled Nursing Facilities)"},
      {"code": "623210", "name": "Residential Intellectual and Developmental Disability Facilities"},
      {"code": "623220", "name": "Residential Mental Health and Substance Abuse Facilities"},
      {"code": "623311", "name": "Continuing Care Retirement Communities"},
      {"code": "623312", "name": "Assisted Living Facilities for the Elderly"},
      {"code": "623990", "name": "Other Residential Care Facilities"},
      {"code": "624110", "name": "Child and Youth Services"},
      {"code": "624120", "name": "Services for the Elderly and Persons with Disabilities"},
      {"code": "624190", "name": "Other Individual and Family Services"},
      {"code": "624210", "name": "Community Food Services"},
      {"code": "624221", "name": "Temporary Shelters"},
      {"code": "624229", "name": "Other Community Housing Services"},
      {"code": "624230", "name": "Emergency and Other Relief Services"},
      {"code": "624310", "name": "Vocational Rehabilitation Services"},
      {"code": "624410", "name": "Child Care Services"},
      {"code": "711110", "name": "Theater Companies and Dinner Theaters"},
      {"code": "711120", "name": "Dance Companies"},
      {"code": "711130", "name": "Musical Groups and Artists"},
      {"code": "711190", "name": "Other Performing Arts Companies"},
      {"code": "711211", "name": "Sports Teams and Clubs"},
      {"code": "711212", "name": "Racetracks"},
      {"code": "711219", "name": "Other Spectator Sports"},
      {"code": "711310", "name": "Promoters of Performing Arts"},
      {"code": "711320", "name": "Promoters of Performing Arts"},
      {"code": "711410", "name": "Agents and Managers for Artists"},
      {"code": "711510", "name": "Independent Artists"},
      {"code": "712110", "name": "Museums"},
      {"code": "712120", "name": "Historical Sites"},
      {"code": "712130", "name": "Zoos and Botanical Gardens"},
      {"code": "712190", "name": "Nature Parks and Other Similar Institutions"},
      {"code": "713110", "name": "Amusement and Theme Parks"},
      {"code": "713120", "name": "Amusement Arcades"},
      {"code": "713210", "name": "Casinos (except Casino Hotels)"},
      {"code": "713290", "name": "Other Gambling Industries"},
      {"code": "713910", "name": "Golf Courses and Country Clubs"},
      {"code": "713920", "name": "Skiing Facilities"},
      {"code": "713930", "name": "Marinas"},
      {"code": "713940", "name": "Fitness and Recreational Sports Centers"},
      {"code": "713950", "name": "Bowling Centers"},
      {"code": "713990", "name": "All Other Amusement and Recreation Industries"},
      {"code": "721110", "name": "Hotels (except Casino Hotels) and Motels"},
      {"code": "721120", "name": "Casino Hotels"},
      {"code": "721191", "name": "Bed-and-Breakfast Inns"},
      {"code": "721199", "name": "All Other Traveler Accommodation"},
      {"code": "721211", "name": "RV (Recreational Vehicle) Parks and Campgrounds"},
      {"code": "721214", "name": "Recreational and Vacation Camps (except Campgrounds)"},
      {"code": "721310", "name": "Rooming and Boarding Houses"},
      {"code": "722310", "name": "Food Service Contractors"},
      {"code": "722320", "name": "Caterers"},
      {"code": "722330", "name": "Mobile Food Services"},
      {"code": "722410", "name": "Drinking Places (Alcoholic Beverages)"},
      {"code": "722511", "name": "Full-Service Restaurants"},
      {"code": "722513", "name": "Limited-Service Restaurants"},
      {"code": "722514", "name": "Cafeterias"},
      {"code": "722515", "name": "Snack and Nonalcoholic Beverage Bars"},
      {"code": "811111", "name": "General Automotive Repair"},
      {"code": "811114", "name": "Specialized Automotive Repair"},
      {"code": "811121", "name": "Automotive Body"},
      {"code": "811122", "name": "Automotive Glass Replacement Shops"},
      {"code": "811191", "name": "Automotive Oil Change and Lubrication Shops"},
      {"code": "811192", "name": "Car Washes"},
      {"code": "811198", "name": "All Other Automotive Repair and Maintenance"},
      {"code": "811210", "name": "Electronic and Precision Equipment Repair and Maintenance"},
      {"code": "811310", "name": "Commercial and Industrial Machinery and Equipment (except Automotive and Electronic) Repair and Maintenance"},
      {"code": "811411", "name": "Home and Garden Equipment Repair and Maintenance"},
      {"code": "811412", "name": "Appliance Repair and Maintenance"},
      {"code": "811420", "name": "Reupholstery and Furniture Repair"},
      {"code": "811430", "name": "Footwear and Leather Goods Repair"},
      {"code": "811490", "name": "Other Personal and Household Goods Repair and Maintenance"},
      {"code": "812111", "name": "Barber Shops"},
      {"code": "812112", "name": "Beauty Salons"},
      {"code": "812113", "name": "Nail Salons"},
      {"code": "812191", "name": "Diet and Weight Reducing Centers"},
      {"code": "812199", "name": "Other Personal Care Services"},
      {"code": "812210", "name": "Funeral Homes and Funeral Services"},
      {"code": "812220", "name": "Cemeteries and Crematories"},
      {"code": "812310", "name": "Coin-Operated Laundries and Drycleaners"},
      {"code": "812320", "name": "Drycleaning and Laundry Services (except Coin-Operated)"},
      {"code": "812331", "name": "Linen Supply"},
      {"code": "812332", "name": "Industrial Launderers"},
      {"code": "812910", "name": "Pet Care (except Veterinary) Services"},
      {"code": "812921", "name": "Photofinishing Laboratories (except One-Hour)"},
      {"code": "812922", "name": "One-Hour Photofinishing"},
      {"code": "812930", "name": "Parking Lots and Garages"},
      {"code": "812990", "name": "All Other Personal Services"},
      {"code": "813110", "name": "Religious Organizations"},
      {"code": "813211", "name": "Grantmaking Foundations"},
      {"code": "813212", "name": "Voluntary Health Organizations"},
      {"code": "813219", "name": "Other Grantmaking and Giving Services"},
      {"code": "813311", "name": "Human Rights Organizations"},
      {"code": "813312", "name": "Environment"},
      {"code": "813319", "name": "Other Social Advocacy Organizations"},
      {"code": "813410", "name": "Civic and Social Organizations"},
      {"code": "813910", "name": "Business Associations"},
      {"code": "813920", "name": "Professional Organizations"},
      {"code": "813930", "name": "Labor Unions and Similar Labor Organizations"},
      {"code": "813940", "name": "Political Organizations"},
      {"code": "813990", "name": "Other Similar Organizations (except Business"},
      {"code": "814110", "name": "Private Households"},
      {"code": "921110", "name": "Executive Offices"},
      {"code": "921120", "name": "Legislative Bodies"},
      {"code": "921130", "name": "Public Finance Activities"},
      {"code": "921140", "name": "Executive and Legislative Offices"},
      {"code": "921150", "name": "American Indian and Alaska Native Tribal Governments"},
      {"code": "921190", "name": "Other General Government Support"},
      {"code": "922110", "name": "Courts"},
      {"code": "922120", "name": "Police Protection"},
      {"code": "922130", "name": "Legal Counsel and Prosecution"},
      {"code": "922140", "name": "Correctional Institutions"},
      {"code": "922150", "name": "Parole Offices and Probation Offices"},
      {"code": "922160", "name": "Fire Protection"},
      {"code": "922190", "name": "Other Justice"},
      {"code": "923110", "name": "Administration of Education Programs"},
      {"code": "923120", "name": "Administration of Public Health Programs"},
      {"code": "923130", "name": "Administration of Human Resource Programs (except Education"},
      {"code": "923140", "name": "Administration of Veterans' Affairs"},
      {"code": "924110", "name": "Administration of Air and Water Resource and Solid Waste Management Programs"},
      {"code": "924120", "name": "Administration of Conservation Programs"},
      {"code": "925110", "name": "Administration of Housing Programs"},
      {"code": "925120", "name": "Administration of Urban Planning and Community and Rural Development"},
      {"code": "926110", "name": "Administration of General Economic Programs"},
      {"code": "926120", "name": "Regulation and Administration of Transportation Programs"},
      {"code": "926130", "name": "Regulation and Administration of Communications"},
      {"code": "926140", "name": "Regulation of Agricultural Marketing and Commodities"},
      {"code": "926150", "name": "Regulation"},
      {"code": "927110", "name": "Space Research and Technology"},
      {"code": "928110", "name": "National Security"},
      {"code": "928120", "name": "International Affairs"}
    ]
    ```
  </CodeGroup>
</Accordion>
