From 30468f1aa170c047cfb45bf1f13148c00cb441c6 Mon Sep 17 00:00:00 2001 From: Giray Songul Date: Fri, 24 Jul 2026 13:03:55 +0200 Subject: [PATCH 1/6] Add a problem-first root README indexing all examples The repo had no root README. This one groups every example by the problem it solves, labels what each needs to run (zero-setup first), and gives a copy-paste quick start. Part of TOW-2417 (clean and fine-tune example apps). Co-Authored-By: Claude Fable 5 --- README.md | 82 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 82 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..8d7191b --- /dev/null +++ b/README.md @@ -0,0 +1,82 @@ +# Tower Examples + +Working example apps for [Tower](https://tower.dev), each built around a common data problem. Every example is a complete Tower app — a few Python files plus a `Towerfile` — that you can clone, deploy, and run in minutes, then adapt to your own stack. + +## Quick start + +Install the [Tower CLI](https://docs.tower.dev/getting-started/installation), sign in, and run the first example — it needs no secrets and no setup: + +```bash +git clone https://github.com/tower/tower-examples.git +cd tower-examples/01-hello-world +tower login +tower deploy +tower run +``` + +Then pick the example below that matches the problem you're actually trying to solve. + +## Find your problem + +### Start here — runs with zero setup + +| Example | The problem it solves | What you need | +|---|---|---| +| [01-hello-world](./01-hello-world) | See the whole Tower workflow — deploy, run, parameters, logs — in two minutes | Nothing | +| [15-interactive-marimo-notebook](./15-interactive-marimo-notebook) | Serve an interactive Python notebook as a running app, no infra to host | Nothing | + +### Load files into a warehouse + +| Example | The problem it solves | What you need | +|---|---|---| +| [02-dlthub-s3-to-snowflake](./02-dlthub-s3-to-snowflake) | CSVs land in S3 and need to end up in Snowflake, incrementally and reliably (dlt) | Snowflake credentials — the source bucket is public | +| [03-dlthub-s3-to-motherduck](./03-dlthub-s3-to-motherduck) | Same S3 ingestion problem, targeting MotherDuck (dlt) | MotherDuck token — the source bucket is public | +| [16-sling-data](./16-sling-data) | Replicate local/JSON data into Snowflake with a declarative YAML config (Sling) | Snowflake connection secret | + +### Build a lakehouse on Apache Iceberg + +These examples form a small end-to-end lakehouse: ingest → analyze → query → maintain. They share one prerequisite: an Iceberg catalog named `default` in your Tower account ([how to set one up](https://docs.tower.dev)). + +| Example | The problem it solves | What you need | +|---|---|---| +| [05-write-ticker-data-to-iceberg](./05-write-ticker-data-to-iceberg) | Pull data from an external API on a schedule and land it in an Iceberg table (demo data: stock prices) | Iceberg catalog — no API keys | +| [06-analyze-ticker-data-in-iceberg](./06-analyze-ticker-data-in-iceberg) | Run LLM-assisted analysis over data already in your lakehouse | Iceberg catalog + inference secrets | +| [09-run-duckdb-queries-on-iceberg](./09-run-duckdb-queries-on-iceberg) | Query Iceberg tables with plain SQL from DuckDB | Iceberg REST catalog credentials | +| [11-trim-ticker-table](./11-trim-ticker-table) | Enforce a retention window by deleting old rows from an Iceberg table | Iceberg catalog with data (run 05 first) | +| [17-list-catalog-tables](./17-list-catalog-tables) | Inspect what namespaces and tables exist in a catalog | Iceberg catalog | +| [18-read-table-rows](./18-read-table-rows) | Peek at the first rows of any Iceberg table | Iceberg catalog with data | + +### Orchestrate many runs + +| Example | The problem it solves | What you need | +|---|---|---| +| [08-fan-out-ticker-runs](./08-fan-out-ticker-runs) | Fan one job out into parallel runs and wait for them all (Tower `run`/`wait`) | Example 05 deployed | + +### Put LLMs and agents to work on your data + +| Example | The problem it solves | What you need | +|---|---|---| +| [07-deepseek-summarize-github](./07-deepseek-summarize-github) | Feed operational data (GitHub issues) to an LLM and get an actionable recommendation back | Iceberg catalog + inference secrets | +| [13-ticker-update-agent](./13-ticker-update-agent) | Deploy an AI agent that answers questions from — and maintains — business data in your lakehouse | Iceberg catalog + `OPENAI_API_KEY` | + +### Run dbt in production + +| Example | The problem it solves | What you need | +|---|---|---| +| [14-dbt-core-ecommerce-analytics](./14-dbt-core-ecommerce-analytics) | Run a real dbt Core project (seed → build) as a deployable, schedulable app | `DBT_PROFILE_YAML` secret with your warehouse profile | + +## How every example works + +Each directory is a self-contained Tower app: + +- **`Towerfile`** — declares the app: name, entrypoint script, source files, and runtime parameters. +- **A Python script** — ordinary Python; no framework to learn. +- **`pyproject.toml`** — dependencies, installed automatically at run time. + +The workflow is always the same: `tower deploy` from the example's directory, then `tower run` (add `--local` to execute on your machine while still using Tower secrets and catalogs). Set secrets with `tower secrets create`; each example's README lists exactly which ones it needs. + +## Learn more + +- [Tower documentation](https://docs.tower.dev) — concepts, CLI reference, guides +- [Tower Control](https://control.tower.dev) — describe an app in natural language and let the agent build and deploy it +- [tower.dev](https://tower.dev) — what Tower is and who it's for From 4b14a65a39751958b6938b047827be7a34250e2d Mon Sep 17 00:00:00 2001 From: Giray Songul Date: Fri, 24 Jul 2026 13:04:30 +0200 Subject: [PATCH 2/6] Fill in the empty READMEs for 09 and 16; fix README casing in 15 09 and 16 shipped with zero-byte READMEs. Both now open with the problem, list the exact secrets needed, and show how to run. 15's readme.md is renamed for consistency with every other example. Part of TOW-2417 (clean and fine-tune example apps). Co-Authored-By: Claude Fable 5 --- 09-run-duckdb-queries-on-iceberg/README.md | 32 +++++++++++++++++++ .../{readme.md => README.md} | 0 16-sling-data/README.md | 26 +++++++++++++++ 3 files changed, 58 insertions(+) rename 15-interactive-marimo-notebook/{readme.md => README.md} (100%) diff --git a/09-run-duckdb-queries-on-iceberg/README.md b/09-run-duckdb-queries-on-iceberg/README.md index e69de29..bd1e7b9 100644 --- a/09-run-duckdb-queries-on-iceberg/README.md +++ b/09-run-duckdb-queries-on-iceberg/README.md @@ -0,0 +1,32 @@ +# Query Iceberg Tables with DuckDB + +You have data in an Iceberg lakehouse and just want to run SQL on it — without standing up a query engine. This app connects DuckDB to a Tower Iceberg catalog and runs a query against the `daily_ticker_data` table (populated by [05-write-ticker-data-to-iceberg](../05-write-ticker-data-to-iceberg)). + +## What It Does + +1. Loads DuckDB's `iceberg` and `httpfs` extensions +2. Creates a DuckDB `SECRET` from your Iceberg REST catalog credentials +3. Attaches the catalog as a database and runs a plain `SELECT` against it + +Swap the query at the bottom of [main.py](./main.py) for your own SQL. + +## What You Need + +- A Tower Iceberg catalog containing data (run example 05 first) +- Three Tower secrets with your Iceberg REST catalog credentials: + +```bash +tower secrets create --name=IRC_CLIENT_ID --value="[YOUR_CLIENT_ID]" +tower secrets create --name=IRC_CLIENT_SECRET --value="[YOUR_CLIENT_SECRET]" +tower secrets create --name=IRC_ENDPOINT --value="[YOUR_CATALOG_ENDPOINT]" +``` + +## Run It + +```bash +cd 09-run-duckdb-queries-on-iceberg +tower deploy +tower run +``` + +Add `--local` to `tower run` to execute on your machine while still reading secrets from Tower. diff --git a/15-interactive-marimo-notebook/readme.md b/15-interactive-marimo-notebook/README.md similarity index 100% rename from 15-interactive-marimo-notebook/readme.md rename to 15-interactive-marimo-notebook/README.md diff --git a/16-sling-data/README.md b/16-sling-data/README.md index e69de29..68b3106 100644 --- a/16-sling-data/README.md +++ b/16-sling-data/README.md @@ -0,0 +1,26 @@ +# Replicate Data into Snowflake with Sling + +You need to move data into a warehouse without writing pipeline code. This app uses [Sling](https://slingdata.io/) to replicate a local JSON file into a Snowflake table from a declarative YAML config — the Python is just a thin runner. + +## What It Does + +1. Reads the replication config from [sling.yaml](./sling.yaml) (source: the bundled [data/input.json](./data/input.json); target: `PUBLIC.SLING_JSON_TOWER_DEMO`) +2. Runs the replication in `full-refresh` mode + +Point `sling.yaml` at your own sources and targets — Sling supports databases, object stores, and files. + +## What You Need + +A Tower secret named `SNOWFLAKE_URL` with your Snowflake connection string, in [Sling's URL format](https://docs.slingdata.io/connections/database-connections/snowflake): + +```bash +tower secrets create --name=SNOWFLAKE_URL --value="snowflake://user:password@account/database?schema=PUBLIC&warehouse=COMPUTE_WH" +``` + +## Run It + +```bash +cd 16-sling-data +tower deploy +tower run +``` From d8422cfc97412e82277a4790568ef870d10f0279 Mon Sep 17 00:00:00 2001 From: Giray Songul Date: Fri, 24 Jul 2026 13:05:01 +0200 Subject: [PATCH 3/6] Lead the ticker examples' READMEs with the problem they solve MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 05, 06, 08, 11, and 13 opened with feature descriptions ("demonstrates how to…"). Their titles and intros now state the generic problem first and frame the ticker data as the demo dataset. Directory and app names are unchanged so existing links from the Tower app keep working. Part of TOW-2417 (clean and fine-tune example apps). Co-Authored-By: Claude Fable 5 --- 05-write-ticker-data-to-iceberg/README.md | 4 ++-- 06-analyze-ticker-data-in-iceberg/README.md | 4 ++-- 08-fan-out-ticker-runs/README.md | 4 ++-- 11-trim-ticker-table/README.md | 4 ++-- 13-ticker-update-agent/README.md | 4 ++-- 5 files changed, 10 insertions(+), 10 deletions(-) diff --git a/05-write-ticker-data-to-iceberg/README.md b/05-write-ticker-data-to-iceberg/README.md index f1bf11a..d67e7ef 100644 --- a/05-write-ticker-data-to-iceberg/README.md +++ b/05-write-ticker-data-to-iceberg/README.md @@ -1,6 +1,6 @@ -# Write Ticker Data to Iceberg +# Ingest API Data into an Iceberg Table -This example demonstrates how to acquire data from an external data source and store it in Iceberg. It downloads stock ticker data from Yahoo Finance and writes it to an Iceberg table using Tower. +You need to pull data from an external API on a schedule and land it in your lakehouse — idempotently, so re-runs never create duplicates. This app solves that problem end to end, using stock prices from Yahoo Finance as the demo dataset: it downloads daily ticker data and upserts it into an Iceberg table on Tower. ## Overview diff --git a/06-analyze-ticker-data-in-iceberg/README.md b/06-analyze-ticker-data-in-iceberg/README.md index 5b91eab..824b3ca 100644 --- a/06-analyze-ticker-data-in-iceberg/README.md +++ b/06-analyze-ticker-data-in-iceberg/README.md @@ -1,6 +1,6 @@ -# Analyze Ticker Data in Iceberg +# Analyze Lakehouse Data with an LLM -This app demonstrates how to use statistical and AI inference analytics on data stored in Iceberg. It uses the Deepseek R1 LLM to generate buy/sell/hold recommendations based on trends in stock prices and trading volume. The data is read from the `daily_ticker_data` Iceberg table, which is populated by the [05-write-ticker-data-to-iceberg](../05-write-ticker-data-to-iceberg) example. +You have data accumulating in your lakehouse and want an LLM to reason over it — without exporting it anywhere. This app runs statistical and AI analysis directly on an Iceberg table: it uses the Deepseek R1 LLM to generate buy/sell/hold recommendations from trends in stock prices and trading volume. The data is read from the `daily_ticker_data` Iceberg table, which is populated by the [05-write-ticker-data-to-iceberg](../05-write-ticker-data-to-iceberg) example. ## Overview diff --git a/08-fan-out-ticker-runs/README.md b/08-fan-out-ticker-runs/README.md index 074f070..341173e 100644 --- a/08-fan-out-ticker-runs/README.md +++ b/08-fan-out-ticker-runs/README.md @@ -1,6 +1,6 @@ -# Fan out the downloads of ticker data +# Fan One Job Out into Parallel Runs -This app will download data for multiple tickers by running parallel runs of the "write-ticker-data-to-iceberg" app. It demonstrates Tower's `run` and `wait` orchestration capabilities. +You have a job that needs to run once per item — per ticker, per tenant, per file — and running them sequentially is too slow. This app shows Tower's `run` and `wait` orchestration: it downloads data for multiple stock tickers by launching parallel runs of the "write-ticker-data-to-iceberg" app and waiting for them all to finish. # Schedule diff --git a/11-trim-ticker-table/README.md b/11-trim-ticker-table/README.md index b779fc0..a703164 100644 --- a/11-trim-ticker-table/README.md +++ b/11-trim-ticker-table/README.md @@ -1,6 +1,6 @@ -# Trim Ticker Table +# Enforce a Retention Window on an Iceberg Table -This app demonstates deletes from an Iceberg table. It shows how to delete old data from an Iceberg table using Tower. +Tables grow forever unless something deletes the old rows — and storage bills grow with them. This app shows how to delete data from an Iceberg table with Tower: it keeps a rolling window of recent ticker data and drops everything older. ## Overview diff --git a/13-ticker-update-agent/README.md b/13-ticker-update-agent/README.md index 184e5ad..3fc2c3d 100644 --- a/13-ticker-update-agent/README.md +++ b/13-ticker-update-agent/README.md @@ -1,6 +1,6 @@ -# Ticker Update Agent +# Deploy an AI Agent over Your Business Data -This example demonstrates how to deploy and operate a data agent that uses business data for decision making. It creates an AI data agent that answers stock price questions and maintains a cache of prices in an Iceberg table. +You want an AI agent that answers questions from your business data — and keeps that data fresh itself. This app deploys a data agent on Tower that answers stock price questions from an Iceberg table, and when the answer isn't there, fetches it from the source and caches it for next time. ## Overview From 7d52a840c56bdbf5b07446fc3f04be7379d37291 Mon Sep 17 00:00:00 2001 From: Giray Songul Date: Fri, 24 Jul 2026 13:05:12 +0200 Subject: [PATCH 4/6] Remove the WIP data-pond stub and unreferenced root data files MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 04-dlthub-data-pond was a README-only placeholder marked work in progress with no code. The root data/ directory (fedres CSVs, ticker JSON snapshots, japan-trade-stats) and root .dlt/config.toml are not referenced by any example — the dlt examples read from the public s3://mango-public-data bucket and carry their own .dlt configs. Part of TOW-2417 (clean and fine-tune example apps). Co-Authored-By: Claude Fable 5 --- .dlt/config.toml | 6 - 04-dlthub-data-pond/README.md | 3 - data/fedres/FRB_G17.csv | 1171 ----------------------- data/fedres/FRB_G17.csv.manualchange | 1171 ----------------------- data/fedres/FRB_G17_last10.csv.template | 1171 ----------------------- data/fedres/FRB_G17_last7.csv.template | 1171 ----------------------- data/japan-trade-stats/.gitignore | 4 - data/ticker-data/2025-03-18.json | 31 - data/ticker-data/2025-03-19.json | 31 - data/ticker-data/2025-03-20.json | 31 - data/ticker-data/2025-03-21.json | 31 - data/ticker-data/2025-03-22.json | 31 - data/ticker-data/2025-03-23.json | 31 - data/ticker-data/2025-03-24.json | 31 - data/ticker-data/2025-03-25.json | 31 - data/ticker-data/2025-03-26.json | 31 - data/ticker-data/2025-03-27.json | 31 - data/ticker-data/2025-03-28.json | 31 - data/ticker-data/2025-03-29.json | 31 - data/ticker-data/2025-03-30.json | 31 - data/ticker-data/2025-03-31.json | 31 - data/ticker-data/2025-04-01.json | 31 - data/ticker-data/2025-04-02.json | 31 - data/ticker-data/2025-04-03.json | 31 - data/ticker-data/2025-04-04.json | 31 - data/ticker-data/2025-04-05.json | 31 - data/ticker-data/2025-04-06.json | 31 - data/ticker-data/2025-04-07.json | 31 - data/ticker-data/2025-04-08.json | 31 - data/ticker-data/2025-04-09.json | 31 - data/ticker-data/2025-04-10.json | 31 - data/ticker-data/2025-04-11.json | 31 - data/ticker-data/2025-04-12.json | 31 - data/ticker-data/2025-04-13.json | 31 - data/ticker-data/2025-04-14.json | 31 - data/ticker-data/2025-04-15.json | 31 - data/ticker-data/2025-04-16.json | 31 - data/ticker-data/aapl.json | 181 ---- 38 files changed, 5808 deletions(-) delete mode 100644 .dlt/config.toml delete mode 100644 04-dlthub-data-pond/README.md delete mode 100644 data/fedres/FRB_G17.csv delete mode 100644 data/fedres/FRB_G17.csv.manualchange delete mode 100644 data/fedres/FRB_G17_last10.csv.template delete mode 100644 data/fedres/FRB_G17_last7.csv.template delete mode 100644 data/japan-trade-stats/.gitignore delete mode 100644 data/ticker-data/2025-03-18.json delete mode 100644 data/ticker-data/2025-03-19.json delete mode 100644 data/ticker-data/2025-03-20.json delete mode 100644 data/ticker-data/2025-03-21.json delete mode 100644 data/ticker-data/2025-03-22.json delete mode 100644 data/ticker-data/2025-03-23.json delete mode 100644 data/ticker-data/2025-03-24.json delete mode 100644 data/ticker-data/2025-03-25.json delete mode 100644 data/ticker-data/2025-03-26.json delete mode 100644 data/ticker-data/2025-03-27.json delete mode 100644 data/ticker-data/2025-03-28.json delete mode 100644 data/ticker-data/2025-03-29.json delete mode 100644 data/ticker-data/2025-03-30.json delete mode 100644 data/ticker-data/2025-03-31.json delete mode 100644 data/ticker-data/2025-04-01.json delete mode 100644 data/ticker-data/2025-04-02.json delete mode 100644 data/ticker-data/2025-04-03.json delete mode 100644 data/ticker-data/2025-04-04.json delete mode 100644 data/ticker-data/2025-04-05.json delete mode 100644 data/ticker-data/2025-04-06.json delete mode 100644 data/ticker-data/2025-04-07.json delete mode 100644 data/ticker-data/2025-04-08.json delete mode 100644 data/ticker-data/2025-04-09.json delete mode 100644 data/ticker-data/2025-04-10.json delete mode 100644 data/ticker-data/2025-04-11.json delete mode 100644 data/ticker-data/2025-04-12.json delete mode 100644 data/ticker-data/2025-04-13.json delete mode 100644 data/ticker-data/2025-04-14.json delete mode 100644 data/ticker-data/2025-04-15.json delete mode 100644 data/ticker-data/2025-04-16.json delete mode 100644 data/ticker-data/aapl.json diff --git a/.dlt/config.toml b/.dlt/config.toml deleted file mode 100644 index 1c54e29..0000000 --- a/.dlt/config.toml +++ /dev/null @@ -1,6 +0,0 @@ -[runtime] -log_level="WARNING" # the system log level of dlt -dlthub_telemetry = false - -[normalize.data_writer] -disable_compression=true # make jsonl files more easily readable diff --git a/04-dlthub-data-pond/README.md b/04-dlthub-data-pond/README.md deleted file mode 100644 index 13208cc..0000000 --- a/04-dlthub-data-pond/README.md +++ /dev/null @@ -1,3 +0,0 @@ -# dltHub Data Pond Demo - -> **⚠️ Work in Progress**: This example is being reworked to align with the new data transformation library that dltHub is building. Check back later for updates. diff --git a/data/fedres/FRB_G17.csv b/data/fedres/FRB_G17.csv deleted file mode 100644 index 3686851..0000000 --- a/data/fedres/FRB_G17.csv +++ /dev/null @@ -1,1171 +0,0 @@ -"Description:","Unit:","Multiplier:","Currency:","Unique Identifier:","Series Name:",2023-12,2024-01,2024-02,2024-03,2024-04,2024-05,2024-06 -"Total index; s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.B50001.S,IP.B50001.S,102.6309,101.4830,102.6045,102.4062,102.4329,103.3282,103.9941 -"Total index; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.B50001.N,IP.B50001.N,102.2236,101.7062,102.6262,102.5993,101.4902,102.2359,105.2923 -"Manufacturing (SIC); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.B00004.S,IP.B00004.S,99.2357,97.9454,99.1743,99.3670,98.8643,99.8693,100.2590 -"Manufacturing (SIC); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.B00004.N,IP.B00004.N,98.0445,96.2967,99.2403,100.1158,99.5889,99.8969,101.6729 -"Manufacturing (NAICS); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.GMF.S,IP.GMF.S,99.8251,98.4489,99.7005,99.9020,99.3826,100.3992,100.7795 -"Manufacturing (NAICS); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.GMF.N,IP.GMF.N,98.6186,96.8817,99.9161,100.8433,100.2284,100.5069,102.2007 -"Durable manufacturing (NAICS); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.GMFD.S,IP.GMFD.S,100.6129,99.3683,100.7439,100.8861,100.4327,101.1225,101.1192 -"Durable manufacturing (NAICS); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.GMFD.N,IP.GMFD.N,99.1088,97.9337,101.5887,102.6128,101.6599,101.1258,102.5422 -"Wood product (NAICS = 321); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G321.S,IP.G321.S,93.2139,92.1930,92.8369,93.6653,92.3425,94.2914,94.6032 -"Wood product (NAICS = 321); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G321.N,IP.G321.N,88.2029,89.8186,92.1736,95.1662,95.3889,95.6365,97.8190 -"Nonmetallic mineral product (NAICS = 327); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G327.S,IP.G327.S,103.8036,100.4795,101.4939,99.7777,99.5641,98.9867,100.2250 -"Nonmetallic mineral product (NAICS = 327); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G327.N,IP.G327.N,100.9280,93.3512,94.6525,96.2743,99.4853,100.3381,104.1092 -"Primary metal (NAICS = 331); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G331.S,IP.G331.S,94.8505,92.8565,93.2205,93.7604,92.1179,95.4749,94.5628 -"Primary metal (NAICS = 331); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G331.N,IP.G331.N,93.2892,91.6827,95.6155,93.7303,94.3983,96.0340,95.8882 -"Fabricated metal product (NAICS = 332); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G332.S,IP.G332.S,98.6583,99.4417,100.0425,99.5941,98.9094,99.9123,98.6243 -"Fabricated metal product (NAICS = 332); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G332.N,IP.G332.N,99.1399,98.5154,99.9246,99.9667,99.0548,99.6685,99.1889 -"Machinery (NAICS = 333); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G333.S,IP.G333.S,98.8167,98.0658,100.0264,98.5349,98.0574,98.8230,98.1326 -"Machinery (NAICS = 333); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G333.N,IP.G333.N,97.7220,101.8090,104.3224,102.5335,102.8769,99.2894,99.4388 -"Computer and electronic product (NAICS = 334); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G334.S,IP.G334.S,115.7863,116.6199,116.4492,116.7753,117.0948,118.2858,117.6896 -"Computer and electronic product (NAICS = 334); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G334.N,IP.G334.N,118.4356,114.4948,113.9228,117.8183,114.8016,117.0175,119.8798 -"Electrical equipment, appliance, and component (NAICS = 335); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G335.S,IP.G335.S,103.6602,103.4266,102.6318,104.1364,102.7319,103.8411,105.4065 -"Electrical equipment, appliance, and component (NAICS = 335); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G335.N,IP.G335.N,102.8962,102.2922,103.3451,104.5090,104.2792,103.9385,105.7604 -"Motor vehicles and parts (NAICS = 3361-3); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G3361T3.S,IP.G3361T3.S,108.6938,102.2729,108.1759,110.5541,109.8425,109.8267,111.5909 -"Motor vehicles and parts (NAICS = 3361-3); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G3361T3.N,IP.G3361T3.N,99.5311,96.6322,113.4217,117.5704,112.6249,109.9166,113.5699 -"Aerospace and miscellaneous transportation eq. (NAICS = 3364-9); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G3364T9.S,IP.G3364T9.S,88.6273,88.9819,88.1772,88.6743,90.1022,90.6879,91.8321 -"Aerospace and miscellaneous transportation eq. (NAICS = 3364-9); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G3364T9.N,IP.G3364T9.N,89.2474,88.8736,88.1679,89.9398,90.0525,90.0491,92.2101 -"Furniture and related product (NAICS = 337); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G337.S,IP.G337.S,77.4047,76.6185,77.6496,76.9191,77.7549,76.1665,77.2765 -"Furniture and related product (NAICS = 337); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G337.N,IP.G337.N,78.1041,75.0103,77.2986,76.5700,77.1625,76.3503,78.2004 -"Miscellaneous (NAICS = 339); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G339.S,IP.G339.S,107.7731,107.1942,109.2186,109.1388,107.8046,106.4554,104.6150 -"Miscellaneous (NAICS = 339); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G339.N,IP.G339.N,108.8593,105.9249,108.8590,108.9161,107.0353,105.8339,105.5009 -"Nondurable manufacturing (NAICS); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.GMFN.S,IP.GMFN.S,99.0714,97.5605,98.6864,98.9484,98.3613,99.7130,100.4869 -"Nondurable manufacturing (NAICS); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.GMFN.N,IP.GMFN.N,98.1646,95.8547,98.2578,99.0865,98.8168,99.9274,101.9064 -"Food, beverage, and tobacco (NAICS = 311,2); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G311A2.S,IP.G311A2.S,100.1352,99.0501,99.4265,99.2723,98.8816,99.6826,100.1311 -"Food, beverage, and tobacco (NAICS = 311,2); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G311A2.N,IP.G311A2.N,97.5040,97.0196,99.7313,100.0718,99.6885,98.6197,101.6420 -"Textiles and products (NAICS = 313,4); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G313A4.S,IP.G313A4.S,77.4111,77.4221,78.7346,78.7028,78.1825,80.0926,81.2789 -"Textiles and products (NAICS = 313,4); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G313A4.N,IP.G313A4.N,75.4446,74.9165,77.2366,78.7356,79.7710,79.3250,82.7497 -"Apparel and leather goods (NAICS = 315,6); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G315A6.S,IP.G315A6.S,82.6296,82.3297,81.4656,80.1753,81.3547,81.1666,82.3744 -"Apparel and leather goods (NAICS = 315,6); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G315A6.N,IP.G315A6.N,82.9259,80.5140,81.4274,80.5094,82.6447,81.7672,83.0804 -"Paper (NAICS = 322); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G322.S,IP.G322.S,86.0626,85.7918,87.2291,86.9501,87.0085,87.4494,88.7263 -"Paper (NAICS = 322); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G322.N,IP.G322.N,84.9091,85.2558,88.0746,86.8161,88.1064,87.5554,89.5423 -"Printing and related support activities (NAICS = 323); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G323.S,IP.G323.S,80.6152,81.7001,82.9267,83.7230,84.6393,84.2501,86.4347 -"Printing and related support activities (NAICS = 323); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G323.N,IP.G323.N,81.7096,80.8683,82.2883,84.1352,84.8432,84.6990,86.6551 -"Petroleum and coal products (NAICS = 324); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G324.S,IP.G324.S,93.6831,91.6278,92.6833,94.5957,90.9141,94.1743,94.6060 -"Petroleum and coal products (NAICS = 324); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G324.N,IP.G324.N,91.5253,85.6341,87.5035,92.4119,91.4842,97.2351,98.8667 -"Chemical (NAICS = 325); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G325.S,IP.G325.S,103.7028,101.2194,103.2941,103.4676,103.1915,105.2738,106.5475 -"Chemical (NAICS = 325); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G325.N,IP.G325.N,104.6321,100.8440,103.3398,103.8071,103.2021,105.9461,107.0945 -"Plastics and rubber products (NAICS = 326); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G326.S,IP.G326.S,103.3795,101.9374,102.3816,102.6582,102.8501,102.8190,102.3809 -"Plastics and rubber products (NAICS = 326); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G326.N,IP.G326.N,103.1052,100.9760,102.7743,102.5520,102.6132,102.4892,103.6658 -"Other manufacturing; s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.GMFO.S,IP.GMFO.S,78.0214,79.9650,80.3449,80.2102,80.3324,80.9101,81.6567 -"Other manufacturing; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.GMFO.N,IP.GMFO.N,77.5252,75.3476,74.8914,73.8298,76.6126,78.0335,82.9219 -"Mining (NAICS = 21); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G21.S,IP.G21.S,120.4936,115.3018,120.2070,119.5705,119.7955,118.9654,119.2994 -"Mining (NAICS = 21); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G21.N,IP.G21.N,119.7234,112.7542,117.5279,118.5917,119.7665,119.6233,120.0676 -"Electric and gas utilities (NAICS = 2211,2); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G2211A2.S,IP.G2211A2.S,103.0754,107.4735,103.5652,101.0304,104.6688,106.6891,109.7084 -"Electric and gas utilities (NAICS = 2211,2); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G2211A2.N,IP.G2211A2.N,108.6596,124.2325,106.1255,98.3226,90.4537,95.3565,110.5702 -"Electric power generation, transmission, and distribution (NAICS = 2211); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G2211.S,IP.G2211.S,103.0898,107.1461,103.7609,101.7041,104.7089,107.3317,110.5250 -"Electric power generation, transmission, and distribution (NAICS = 2211); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G2211.N,IP.G2211.N,101.2066,111.6849,98.8483,93.5716,89.9546,99.0826,117.7453 -"Natural gas distribution (NAICS = 2212); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G2212.S,IP.G2212.S,102.1671,108.9203,101.3612,95.4612,103.5897,101.2707,103.0105 -"Natural gas distribution (NAICS = 2212); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G2212.N,IP.G2212.N,162.1837,214.0887,158.2215,132.2257,93.5295,67.5181,57.2905 -"Crude processing (capacity); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.B5610C.S,IP.B5610C.S,112.8320,108.0293,111.7128,111.7643,111.3414,111.6440,112.4325 -"Crude processing (capacity); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.B5610C.N,IP.B5610C.N,113.0633,107.5907,111.5472,112.0354,111.3376,111.5287,112.3570 -"Primary & semifinished processing (capacity); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.B562A3C.S,IP.B562A3C.S,98.2895,98.4249,98.5650,98.1058,98.4383,99.6991,100.5960 -"Primary & semifinished processing (capacity); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.B562A3C.N,IP.B562A3C.N,98.4724,100.2318,98.1333,97.5728,95.9172,97.5912,102.4009 -"Finished processing (capacity); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.B5640C.S,IP.B5640C.S,102.7718,101.5830,102.8331,102.8664,102.6949,103.3715,103.6736 -"Finished processing (capacity); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.B5640C.N,IP.B5640C.N,101.3062,100.0194,103.5288,103.9702,103.4019,103.1761,104.9224 -"Durable manufacturing (NAICS); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.GMFD.S,IP.GMFD.S,100.6129,99.3683,100.7439,100.8861,100.4327,101.1225,101.1192 -"Durable manufacturing (NAICS); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.GMFD.N,IP.GMFD.N,99.1088,97.9337,101.5887,102.6128,101.6599,101.1258,102.5422 -"Motor vehicles and parts (NAICS = 3361-3); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3361T3.S,IP.G3361T3.S,108.6938,102.2729,108.1759,110.5541,109.8425,109.8267,111.5909 -"Motor vehicles and parts (NAICS = 3361-3); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3361T3.N,IP.G3361T3.N,99.5311,96.6322,113.4217,117.5704,112.6249,109.9166,113.5699 -"Aerospace and miscellaneous transportation eq. (NAICS = 3364-9); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3364T9.S,IP.G3364T9.S,88.6273,88.9819,88.1772,88.6743,90.1022,90.6879,91.8321 -"Aerospace and miscellaneous transportation eq. (NAICS = 3364-9); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3364T9.N,IP.G3364T9.N,89.2474,88.8736,88.1679,89.9398,90.0525,90.0491,92.2101 -"Wood product (NAICS = 321); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G321.S,IP.G321.S,93.2139,92.1930,92.8369,93.6653,92.3425,94.2914,94.6032 -"Wood product (NAICS = 321); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G321.N,IP.G321.N,88.2029,89.8186,92.1736,95.1662,95.3889,95.6365,97.8190 -"Sawmills and wood preservation (NAICS = 3211); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3211.S,IP.N3211.S,93.7120,91.7064,89.9187,94.0300,,, -"Sawmills and wood preservation (NAICS = 3211); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3211.N,IP.N3211.N,82.6377,90.6493,91.4074,96.4661,,, -"Plywood and misc. wood products (NAICS = 3212,9); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3212A9.S,IP.G3212A9.S,92.9947,92.3745,94.0040,93.5060,92.5245,92.9320,94.6569 -"Plywood and misc. wood products (NAICS = 3212,9); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3212A9.N,IP.G3212A9.N,90.4790,89.4891,92.4927,94.6496,94.1117,95.0546,98.0713 -"Veneer, plywood, and engineered wood product (NAICS = 3212); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3212.S,IP.G3212.S,76.8058,75.1116,75.7129,76.8666,77.3218,75.8708,77.6306 -"Veneer, plywood, and engineered wood product (NAICS = 3212); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3212.N,IP.G3212.N,71.9607,70.8643,74.5119,79.6901,77.7714,78.8490,82.7802 -"Veneer and plywood (NAICS = 321211,2); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G321211A2.S,IP.G321211A2.S,71.8618,71.0205,70.4815,70.2448,70.3106,70.2583,70.0880 -"Veneer and plywood (NAICS = 321211,2); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G321211A2.N,IP.G321211A2.N,68.2146,60.8753,71.3193,79.9889,66.4908,73.9070,78.0255 -"Reconstituted wood product (NAICS = 321219); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G321219.S,IP.G321219.S,66.0355,63.6222,67.0139,67.0443,68.0540,65.2271,67.1385 -"Reconstituted wood product (NAICS = 321219); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G321219.N,IP.G321219.N,56.7792,63.1326,67.6741,70.0067,72.0068,67.3429,72.6526 -"Other wood product (NAICS = 3219); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3219.S,IP.G3219.S,101.9141,101.9074,104.1192,102.6731,100.8654,102.3513,104.0457 -"Other wood product (NAICS = 3219); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3219.N,IP.G3219.N,100.6996,99.7737,102.3962,102.8039,103.0677,103.9268,106.3895 -"Millwork (NAICS = 32191); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G32191.S,IP.G32191.S,98.9865,100.1104,100.6424,96.9936,95.5801,97.7137,99.8040 -"Millwork (NAICS = 32191); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G32191.N,IP.G32191.N,98.2957,97.5386,98.1125,96.4487,97.2465,98.6089,101.4664 -"Wood container and pallet (NAICS = 32192); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N32192.S,IP.N32192.S,101.7580,99.8046,106.8831,110.3839,105.3692,108.2042,110.1426 -"Wood container and pallet (NAICS = 32192); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N32192.N,IP.N32192.N,102.7280,98.8263,107.3574,111.3661,106.1263,109.3732,110.5188 -"All other wood product (NAICS = 32199); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G32199.S,IP.G32199.S,107.4439,106.5105,108.8575,108.5392,107.9755,107.3801,108.1589 -"All other wood product (NAICS = 32199); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G32199.N,IP.G32199.N,103.7645,104.4281,107.2228,109.3411,112.0090,110.4259,112.9258 -"Manufactured home (mobile home) (NAICS = 321991); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N321991.S,IP.N321991.S,81.7631,74.9864,86.4634,83.5164,84.3233,85.6156, -"Manufactured home (mobile home) (NAICS = 321991); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N321991.N,IP.N321991.N,66.3619,70.9988,87.0983,87.1126,89.1092,89.0354, -"Nonmetallic mineral product (NAICS = 327); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G327.S,IP.G327.S,103.8036,100.4795,101.4939,99.7777,99.5641,98.9867,100.2250 -"Nonmetallic mineral product (NAICS = 327); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G327.N,IP.G327.N,100.9280,93.3512,94.6525,96.2743,99.4853,100.3381,104.1092 -"Clay, lime, gypsum, and misc. nonmetallic mineral products (NAICS = 3271,4,9); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3271A4A9.S,IP.G3271A4A9.S,114.5343,114.6827,114.1996,113.3835,115.1072,115.3377,117.1126 -"Clay, lime, gypsum, and misc. nonmetallic mineral products (NAICS = 3271,4,9); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3271A4A9.N,IP.G3271A4A9.N,113.9404,113.0230,111.5629,112.1427,115.0851,114.4770,117.7469 -"Clay and misc. nonmetallic mineral products (NAICS = 3271,9); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3271A9.S,IP.G3271A9.S,116.7029,116.9555,116.5003,115.5821,117.4398,117.6097,119.4779 -"Clay and misc. nonmetallic mineral products (NAICS = 3271,9); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3271A9.N,IP.G3271A9.N,116.8762,116.0423,113.5312,113.7562,115.9942,116.9643,120.5551 -"Clay product and refractory (NAICS = 3271); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3271.S,IP.G3271.S,93.4482,91.3225,92.6277,92.2547,93.6254,92.4035,90.4598 -"Clay product and refractory (NAICS = 3271); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3271.N,IP.G3271.N,93.5249,89.3617,91.0639,92.8454,93.4096,93.4260,92.3269 -"Pottery, ceramics, and plumbing fixture (NAICS = 32711); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G32711.S,IP.G32711.S,103.6532,100.8823,101.2876,101.6310,101.2762,101.6830,98.8527 -"Pottery, ceramics, and plumbing fixture (NAICS = 32711); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G32711.N,IP.G32711.N,107.0697,101.2337,99.6617,103.0177,100.2036,102.7670,99.1463 -"Clay building material and refractories (NAICS = 32712); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G32712.S,IP.G32712.S,88.8598,87.0309,88.7570,88.0504,90.2249,88.2450,86.7095 -"Clay building material and refractories (NAICS = 32712); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G32712.N,IP.G32712.N,87.3922,84.0003,87.2294,88.2820,90.4172,89.2510,89.3199 -"Other nonmetallic mineral product (NAICS = 3279); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3279.S,IP.G3279.S,124.5091,125.5320,124.5074,123.4111,125.4306,126.0470,129.1395 -"Other nonmetallic mineral product (NAICS = 3279); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3279.N,IP.G3279.N,124.7155,124.9579,121.0794,120.8035,123.5859,124.8646,129.9665 -"Lime and gypsum product (NAICS = 3274); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3274.S,IP.G3274.S,104.4735,104.1661,103.5641,103.1962,104.3292,104.8203,106.1814 -"Lime and gypsum product (NAICS = 3274); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3274.N,IP.G3274.N,100.5218,99.2443,102.3729,104.4922,110.4737,103.0347,104.8981 -"Glass and glass product (NAICS = 3272); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3272.S,IP.G3272.S,85.3495,80.1186,81.3768,81.8129,82.3925,82.5977,82.3666 -"Glass and glass product (NAICS = 3272); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3272.N,IP.G3272.N,83.3279,78.8313,81.0216,81.9804,81.6416,82.5687,83.4334 -"Glass container (NAICS = 327213); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G327213.S,IP.G327213.S,68.4713,69.0509,69.3390,69.3544,69.0598,68.7680,68.4993 -"Glass container (NAICS = 327213); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G327213.N,IP.G327213.N,53.8953,68.3921,72.5768,71.8745,69.3466,71.0938,70.4077 -"Cement and concrete product (NAICS = 3273); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3273.S,IP.G3273.S,104.4260,99.3371,101.3478,98.0813,96.1365,94.6501,96.1066 -"Cement and concrete product (NAICS = 3273); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3273.N,IP.G3273.N,99.5485,85.7830,88.7386,91.4041,96.2904,98.1805,103.5291 -"Cement (NAICS = 32731); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N32731.S,IP.N32731.S,92.4447,80.6341,95.2082,90.4533,90.8194,, -"Cement (NAICS = 32731); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N32731.N,IP.N32731.N,75.0199,58.3897,76.5615,84.1068,95.6975,, -"Concrete and product (NAICS = 32732-9); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N32732T9.S,IP.N32732T9.S,106.8418,103.0707,102.6080,99.6338,97.2310,95.8582,97.2520 -"Concrete and product (NAICS = 32732-9); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N32732T9.N,IP.N32732T9.N,104.2939,91.1016,91.0577,92.7574,96.3125,98.7020,102.9644 -"Primary metal (NAICS = 331); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G331.S,IP.G331.S,94.8505,92.8565,93.2205,93.7604,92.1179,95.4749,94.5628 -"Primary metal (NAICS = 331); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G331.N,IP.G331.N,93.2892,91.6827,95.6155,93.7303,94.3983,96.0340,95.8882 -"Iron and steel products (NAICS = 3311,2); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3311A2.S,IP.G3311A2.S,96.0143,93.1535,93.8792,93.6837,91.8449,92.7975,93.3767 -"Iron and steel products (NAICS = 3311,2); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3311A2.N,IP.G3311A2.N,92.1218,92.9788,96.0507,93.1446,95.0598,93.8230,95.7319 -"Pig iron (NAICS = 3311,2pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3311A2Q.S,IP.G3311A2Q.S,86.1023,75.2389,75.6885,75.5386,75.2389,74.4898,73.8938 -"Pig iron (NAICS = 3311,2pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3311A2Q.N,IP.G3311A2Q.N,85.0710,80.6743,80.2084,74.7509,73.1651,72.7011,74.1001 -"Raw steel (NAICS = 3311,2pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3311A2R.S,IP.N3311A2R.S,94.2842,88.8716,92.8086,92.7557,89.3393,92.8673, -"Raw steel (NAICS = 3311,2pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3311A2R.N,IP.N3311A2R.N,90.7653,89.4265,94.0586,91.5444,92.0334,93.4113, -"Coke and products (NAICS = 3311,2pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3311A2F.S,IP.G3311A2F.S,93.7298,92.3673,92.2978,93.4378,95.8706,97.5142,98.3422 -"Coke and products (NAICS = 3311,2pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3311A2F.N,IP.G3311A2F.N,94.1193,92.9636,93.1448,94.6220,97.0222,97.8890,97.2888 -"Construction steel (NAICS = 3311,2pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3311A2B.S,IP.N3311A2B.S,109.5612,110.4311,121.7283,131.0932,123.7749,127.8535, -"Construction steel (NAICS = 3311,2pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3311A2B.N,IP.N3311A2B.N,106.3409,107.6414,121.3489,127.2263,124.9273,128.5170, -"Consumer durable steel (NAICS = 3311,2pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3311A2C.S,IP.N3311A2C.S,149.2249,141.0341,113.7689,106.2006,101.0267,106.7291, -"Consumer durable steel (NAICS = 3311,2pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3311A2C.N,IP.N3311A2C.N,143.0245,142.5954,117.0236,104.8769,109.2608,106.9776, -"Can and closure steel (NAICS = 3311,2pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3311A2D.S,IP.N3311A2D.S,60.3658,45.1533,43.4492,43.4689,48.2056,45.4838, -"Can and closure steel (NAICS = 3311,2pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3311A2D.N,IP.N3311A2D.N,59.3255,41.5409,42.4961,39.5983,47.1194,45.1257, -"Equipment steel (NAICS = 3311,2pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3311A2E.S,IP.N3311A2E.S,68.9558,64.3482,69.2853,77.2556,80.9336,78.2410, -"Equipment steel (NAICS = 3311,2pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3311A2E.N,IP.N3311A2E.N,67.6811,62.6200,68.7321,80.2813,80.9901,80.2885, -"Miscellaneous steel (NAICS = 3311,2pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3311A2Z.S,IP.N3311A2Z.S,79.4834,79.0772,85.1410,83.2469,83.3357,82.0574, -"Miscellaneous steel (NAICS = 3311,2pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3311A2Z.N,IP.N3311A2Z.N,75.1653,78.5716,88.0309,83.7129,86.7868,83.7793, -"Alumina and aluminum production and processing (NAICS = 3313); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3313.S,IP.G3313.S,93.5412,90.7023,90.6208,94.0361,91.1266,100.7626,96.6235 -"Alumina and aluminum production and processing (NAICS = 3313); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3313.N,IP.G3313.N,88.4605,85.3607,97.5657,92.6983,94.1657,102.5081,99.9613 -"Primary aluminum production (NAICS = 331313pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N331313P.S,IP.N331313P.S,97.0563,89.9001,77.1507,79.3415,78.7246,78.8977,78.8351 -"Primary aluminum production (NAICS = 331313pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N331313P.N,IP.N331313P.N,97.3633,90.9160,78.0854,80.1527,80.3455,79.7731,79.0906 -"Secondary smelting and alloying of aluminum (NAICS = 331314); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N331314.S,IP.N331314.S,108.6576,96.1229,97.5939,106.2655,101.9837,, -"Secondary smelting and alloying of aluminum (NAICS = 331314); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N331314.N,IP.N331314.N,103.5739,99.2144,108.0600,104.1221,102.8028,, -"Misc. aluminum materials (NAICS = 331315,8pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N331315A8M.S,IP.N331315A8M.S,94.1199,94.4975,96.1166,97.8135,94.1886,105.4912, -"Misc. aluminum materials (NAICS = 331315,8pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N331315A8M.N,IP.N331315A8M.N,91.9763,86.3234,101.9195,95.6711,97.0695,107.8030, -"Aluminum extruded product (NAICS = 331318pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N331318E.S,IP.N331318E.S,83.6388,80.0878,77.5877,82.0424,80.7798,95.5000, -"Aluminum extruded product (NAICS = 331318pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N331318E.N,IP.N331318E.N,71.9481,74.8905,86.0565,82.3486,85.5008,98.2916, -"Nonferrous metal (except aluminum) production and processing (NAICS = 3314); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3314.S,IP.G3314.S,110.4087,109.0725,107.9436,108.5632,106.5898,111.5138,110.6747 -"Nonferrous metal (except aluminum) production and processing (NAICS = 3314); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3314.N,IP.G3314.N,114.0894,107.6485,109.6406,109.9362,108.1427,111.6074,109.0374 -"Nonferrous metal (except aluminum) smelting and refining (NAICS = 33141); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G33141.S,IP.G33141.S,139.9248,138.0765,129.5499,135.9594,129.1964,138.8850,137.9864 -"Nonferrous metal (except aluminum) smelting and refining (NAICS = 33141); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G33141.N,IP.G33141.N,154.7910,135.4524,137.3127,144.7369,134.3199,139.5613,131.4867 -"Primary smelting and refining of copper (NAICS = 33141pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G33141C.S,IP.G33141C.S,149.3591,144.0141,143.5117,135.5183,150.0829,164.4720,165.0150 -"Primary smelting and refining of copper (NAICS = 33141pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G33141C.N,IP.G33141C.N,143.2712,152.8208,159.4668,143.7572,144.6283,155.3765,156.4766 -"Primary smelting and refining of nonferrous metal (except copper and aluminum) (NAICS = 33141pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N33141N.S,IP.N33141N.S,133.4803,132.7305,122.0468,132.4995,119.7611,, -"Primary smelting and refining of nonferrous metal (except copper and aluminum) (NAICS = 33141pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N33141N.N,IP.N33141N.N,154.5713,126.9648,127.3530,141.3950,127.9636,, -"Foundries (NAICS = 3315); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3315.S,IP.G3315.S,78.8641,78.8845,80.4787,80.7028,80.8295,83.8840,81.4529 -"Foundries (NAICS = 3315); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3315.N,IP.G3315.N,79.7068,78.5301,81.0919,81.2981,81.2453,83.0250,82.4917 -"Fabricated metal product (NAICS = 332); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G332.S,IP.G332.S,98.6583,99.4417,100.0425,99.5941,98.9094,99.9123,98.6243 -"Fabricated metal product (NAICS = 332); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G332.N,IP.G332.N,99.1399,98.5154,99.9246,99.9667,99.0548,99.6685,99.1889 -"Forging and stamping (NAICS = 3321); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3321.S,IP.N3321.S,80.0285,80.3966,80.5044,80.5386,80.2186,81.8598,80.4796 -"Forging and stamping (NAICS = 3321); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3321.N,IP.N3321.N,79.7142,80.3283,82.1637,81.6264,82.3469,82.9709,81.5477 -"Cutlery and handtool (NAICS = 3322); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3322.S,IP.N3322.S,98.6961,100.6302,100.9195,101.9076,99.9994,103.0830,99.7858 -"Cutlery and handtool (NAICS = 3322); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3322.N,IP.N3322.N,99.7077,98.9005,102.9028,102.2291,101.2365,103.3700,100.9472 -"Architectural and structural metals (NAICS = 3323); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3323.S,IP.N3323.S,99.9107,101.5489,103.9408,102.9094,102.1486,103.9870,102.2810 -"Architectural and structural metals (NAICS = 3323); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3323.N,IP.N3323.N,101.2298,100.2059,103.3615,102.4998,101.4679,103.5379,103.2203 -"Hardware (NAICS = 3325); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3325.S,IP.G3325.S,90.6693,92.3537,93.1342,90.2106,90.7978,91.8996,89.0671 -"Hardware (NAICS = 3325); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3325.N,IP.G3325.N,90.6495,95.1372,95.7570,90.6341,92.3116,89.7883,88.5581 -"Spring and wire product (NAICS = 3326); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3326.S,IP.N3326.S,88.9849,90.6628,91.6463,88.7449,88.8093,89.3951,86.5339 -"Spring and wire product (NAICS = 3326); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3326.N,IP.N3326.N,90.5256,91.2567,93.0278,90.4956,89.2899,87.6971,85.4034 -"Machine shops; turned product; and screw, nut, and bolt (NAICS = 3327); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3327.S,IP.G3327.S,97.6548,97.1790,96.3053,96.6031,96.2747,95.9285,95.5085 -"Machine shops; turned product; and screw, nut, and bolt (NAICS = 3327); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3327.N,IP.G3327.N,97.7623,96.1825,97.0611,97.9488,97.3185,95.8850,96.1062 -"Coating, engraving, heat treating, and allied activities (NAICS = 3328); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3328.S,IP.N3328.S,105.3149,107.1655,104.7612,104.1537,105.7353,105.2714,103.1270 -"Coating, engraving, heat treating, and allied activities (NAICS = 3328); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3328.N,IP.N3328.N,105.5254,104.5392,104.4078,106.3905,107.6392,106.0463,103.9429 -"Other fabricated metal product (NAICS = 3329); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3329.S,IP.G3329.S,107.2420,107.9965,108.0521,108.7297,108.1761,109.9612,109.0035 -"Other fabricated metal product (NAICS = 3329); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3329.N,IP.G3329.N,108.3894,107.4777,108.2658,108.4968,107.8477,109.3125,108.7785 -"Ball and roller bearing (NAICS = 332991); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G332991.S,IP.G332991.S,78.7158,80.2202,82.0280,81.8428,80.2736,81.9198,79.3759 -"Ball and roller bearing (NAICS = 332991); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G332991.N,IP.G332991.N,79.0588,79.4998,82.3437,81.9372,81.1243,81.8004,80.3489 -"Machinery (NAICS = 333); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G333.S,IP.G333.S,98.8167,98.0658,100.0264,98.5349,98.0574,98.8230,98.1326 -"Machinery (NAICS = 333); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G333.N,IP.G333.N,97.7220,101.8090,104.3224,102.5335,102.8769,99.2894,99.4388 -"Agriculture, construction, and mining machinery (NAICS = 3331); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3331.S,IP.G3331.S,114.8840,115.0997,120.1469,116.0792,116.6036,116.1739,113.4981 -"Agriculture, construction, and mining machinery (NAICS = 3331); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3331.N,IP.G3331.N,116.4559,115.5568,122.4988,117.3813,116.5969,115.2713,113.8519 -"Agricultural implement (NAICS = 33311); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G33311.S,IP.G33311.S,138.3931,139.6842,146.0100,139.6469,140.9650,139.7440,136.6554 -"Agricultural implement (NAICS = 33311); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G33311.N,IP.G33311.N,140.5912,140.2947,148.6609,141.2883,141.3457,139.2994,137.6325 -"Farm machinery and equipment (NAICS = 333111); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G333111.S,IP.G333111.S,147.2634,148.6849,155.4600,148.7760,150.4481,148.8094,145.4513 -"Farm machinery and equipment (NAICS = 333111); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G333111.N,IP.G333111.N,149.2037,148.7204,157.5459,149.7491,149.8358,148.0171,146.6206 -"Construction machinery (NAICS = 33312); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G33312.S,IP.G33312.S,105.1333,103.8610,109.3753,106.5136,107.3230,107.9438,105.5961 -"Construction machinery (NAICS = 33312); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G33312.N,IP.G33312.N,105.9787,104.5227,111.7673,108.2490,106.9824,106.2662,105.1415 -"Mining and oil and gas field machinery (NAICS = 33313); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N33313.S,IP.N33313.S,86.1664,87.0329,88.4659,86.8917,85.1212,84.3033,81.8026 -"Mining and oil and gas field machinery (NAICS = 33313); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N33313.N,IP.N33313.N,88.0725,86.9449,90.3509,86.8073,85.1275,84.1165,82.6090 -"Industrial machinery (NAICS = 3332); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3332.S,IP.G3332.S,96.9778,95.9702,94.9924,93.3887,94.7094,96.1716,93.5323 -"Industrial machinery (NAICS = 3332); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3332.N,IP.G3332.N,98.8851,96.5657,95.2243,93.2224,94.3913,95.8721,93.1973 -"Commercial and service industry machinery and other general purpose machinery (NAICS = 3333,9); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3333A9.S,IP.G3333A9.S,105.5002,104.5398,105.1237,104.5766,102.1775,104.0908,102.4161 -"Commercial and service industry machinery and other general purpose machinery (NAICS = 3333,9); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3333A9.N,IP.G3333A9.N,106.2820,103.0682,104.5343,104.8694,102.6226,103.1136,102.5384 -"HVAC, metalworking, and power transmission machinery (NAICS = 3334-6); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3334T6.S,IP.G3334T6.S,83.7316,82.7559,85.2687,84.2337,84.6238,84.6843,86.5334 -"HVAC, metalworking, and power transmission machinery (NAICS = 3334-6); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3334T6.N,IP.G3334T6.N,78.5098,94.3051,96.5993,94.5239,97.7769,87.6119,90.0707 -"Ventilation, heating, air-conditioning, and commercial refrigeration equipment (NAICS = 3334); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3334.S,IP.G3334.S,78.1299,78.7155,84.7074,80.9728,80.0098,79.3298,79.2204 -"Ventilation, heating, air-conditioning, and commercial refrigeration equipment (NAICS = 3334); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3334.N,IP.G3334.N,64.4224,107.4624,109.8572,101.2383,110.1061,86.1904,87.3084 -"Metalworking machinery (NAICS = 3335); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3335.S,IP.G3335.S,90.2727,89.1914,90.5562,92.2209,90.3316,91.7486,94.9994 -"Metalworking machinery (NAICS = 3335); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3335.N,IP.G3335.N,90.8350,88.5502,91.2916,93.5479,90.8140,91.4043,94.9536 -"Engine, turbine, and power transmission equipment (NAICS = 3336); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3336.S,IP.G3336.S,85.6970,82.4372,80.7172,81.2147,85.9303,85.8139,89.3373 -"Engine, turbine, and power transmission equipment (NAICS = 3336); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3336.N,IP.G3336.N,87.5909,80.2380,81.9489,85.5901,86.1204,86.5431,90.0183 -"Computer and electronic product (NAICS = 334); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G334.S,IP.G334.S,115.7863,116.6199,116.4492,116.7753,117.0948,118.2858,117.6896 -"Computer and electronic product (NAICS = 334); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G334.N,IP.G334.N,118.4356,114.4948,113.9228,117.8183,114.8016,117.0175,119.8798 -"Computer and peripheral equipment (NAICS = 3341); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3341.S,IP.G3341.S,157.5085,155.6951,155.9799,159.8630,158.7809,160.4618,156.5274 -"Computer and peripheral equipment (NAICS = 3341); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3341.N,IP.G3341.N,161.4626,149.9214,149.6390,157.2326,157.5490,162.1041,163.5334 -"Communications equipment (NAICS = 3342); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3342.S,IP.G3342.S,191.0098,192.2924,193.2007,194.1901,194.8760,195.3634,195.4042 -"Communications equipment (NAICS = 3342); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3342.N,IP.G3342.N,203.6896,192.4745,184.0599,185.7100,187.1163,192.9377,193.9317 -"Audio and video equipment (NAICS = 3343); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3343.S,IP.G3343.S,140.9688,146.4268,141.7835,143.3802,138.4816,136.3386,130.4287 -"Audio and video equipment (NAICS = 3343); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3343.N,IP.G3343.N,145.4332,140.8664,139.6892,143.8701,137.7896,135.6119,133.1300 -"Semiconductor and other electronic component (NAICS = 3344); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3344.S,IP.G3344.S,134.3801,134.7368,133.7948,134.2706,136.2200,140.0520,140.9565 -"Semiconductor and other electronic component (NAICS = 3344); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3344.N,IP.G3344.N,138.9290,128.1862,125.5020,139.8558,130.1079,136.0587,146.1375 -"Navigational, measuring, electromedical, and control instruments (NAICS = 3345); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3345.S,IP.G3345.S,94.7469,95.7357,95.8264,95.7981,95.6444,95.9044,95.0131 -"Navigational, measuring, electromedical, and control instruments (NAICS = 3345); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3345.N,IP.G3345.N,95.5262,95.3995,96.3249,96.1399,95.2393,95.6131,96.0285 -"Electrical equipment, appliance, and component (NAICS = 335); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G335.S,IP.G335.S,103.6602,103.4266,102.6318,104.1364,102.7319,103.8411,105.4065 -"Electrical equipment, appliance, and component (NAICS = 335); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G335.N,IP.G335.N,102.8962,102.2922,103.3451,104.5090,104.2792,103.9385,105.7604 -"Household appliance (NAICS = 3352); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3352.S,IP.G3352.S,102.5221,98.7767,97.6573,100.3790,97.5381,97.4884,100.7146 -"Household appliance (NAICS = 3352); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3352.N,IP.G3352.N,89.3498,99.4229,105.1894,106.3417,106.3976,101.2877,99.5625 -"Small electrical appliance (NAICS = 33521); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G33521.S,IP.G33521.S,96.2166,91.2646,82.1884,81.3431,77.3576,79.1065,82.3945 -"Small electrical appliance (NAICS = 33521); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G33521.N,IP.G33521.N,99.5803,89.4409,81.9769,79.9508,78.6308,80.0488,84.0453 -"Major appliance (NAICS = 33522); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G33522.S,IP.G33522.S,103.8225,100.2806,100.5446,103.8911,101.2422,100.8821,104.1053 -"Major appliance (NAICS = 33522); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G33522.N,IP.G33522.N,87.7223,101.3609,109.4529,111.1618,111.4570,105.2039,102.4860 -"Electrical equipment except appliances (NAICS = 3351,3,9); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G335@2.S,IP.G335@2.S,103.8687,104.3744,103.6480,104.8962,103.7943,105.1470,106.3626 -"Electrical equipment except appliances (NAICS = 3351,3,9); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G335@2.N,IP.G335@2.N,105.7155,102.8685,102.9310,104.0971,103.8074,104.4682,107.0342 -"Electric lighting equipment (NAICS = 3351); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3351.S,IP.G3351.S,88.6056,85.5967,77.5510,77.6378,73.4245,74.6228,77.9669 -"Electric lighting equipment (NAICS = 3351); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3351.N,IP.G3351.N,92.8176,82.3821,75.8573,75.0673,72.3702,75.0224,79.2639 -"Electrical equipment (NAICS = 3353); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3353.S,IP.G3353.S,114.3974,116.1461,115.6075,117.5800,117.3168,119.7847,122.9486 -"Electrical equipment (NAICS = 3353); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3353.N,IP.G3353.N,116.7703,115.7457,115.6454,117.4471,116.8090,118.2194,123.6024 -"Other electrical equipment and component (NAICS = 3359); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3359.S,IP.G3359.S,100.9068,101.4262,102.5091,103.5328,102.6197,103.1776,102.3427 -"Other electrical equipment and component (NAICS = 3359); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3359.N,IP.G3359.N,101.7385,99.5349,101.4827,102.7037,103.3216,102.8823,102.8666 -"Battery (NAICS = 33591); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G33591.S,IP.G33591.S,110.3979,109.1663,110.7632,113.8685,108.9586,111.8120,112.6237 -"Battery (NAICS = 33591); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G33591.N,IP.G33591.N,107.3471,108.0490,110.7165,111.5613,110.6689,109.2370,111.8295 -"Communication and energy wire and cable (NAICS = 33592); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N33592.S,IP.N33592.S,104.9757,105.6314,106.0665,106.9130,106.0809,106.2000,104.2165 -"Communication and energy wire and cable (NAICS = 33592); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N33592.N,IP.N33592.N,106.6924,105.2535,106.4946,107.4450,106.4692,106.2761,105.9239 -"Other electrical equipment (NAICS = 33593,9); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G33593T9.S,IP.G33593T9.S,97.5438,98.4458,99.5723,100.1441,100.1655,100.2877,99.3559 -"Other electrical equipment (NAICS = 33593,9); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G33593T9.N,IP.G33593T9.N,99.1486,96.0541,98.0127,99.3936,100.7837,100.5180,99.9653 -"Transportation equipment (NAICS = 336); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G336.S,IP.G336.S,99.6526,96.0280,99.1667,100.7635,100.9237,101.1514,102.6498 -"Transportation equipment (NAICS = 336); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G336.N,IP.G336.N,94.5357,92.6862,102.2324,105.3818,102.5311,100.9435,103.9607 -"Motor vehicle (NAICS = 3361); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3361.S,IP.G3361.S,121.0761,111.1536,120.3955,124.2570,122.3939,121.9182,125.1315 -"Motor vehicle (NAICS = 3361); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3361.N,IP.G3361.N,105.6736,105.0566,129.7317,131.7730,127.8348,122.9496,129.8374 -"Automobile and light duty motor vehicle (NAICS = 33611); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G33611.S,IP.G33611.S,121.8832,112.1900,120.6410,123.8952,123.2740,123.4750,127.1382 -"Automobile and light duty motor vehicle (NAICS = 33611); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G33611.N,IP.G33611.N,105.9825,106.1416,130.5656,131.6249,128.5786,124.4680,131.7824 -"Automobile (NAICS = 336111); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G336111.S,IP.G336111.S,103.4095,87.2764,92.2779,94.0581,91.3681,100.9092,97.3401 -"Automobile (NAICS = 336111); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G336111.N,IP.G336111.N,89.4399,82.8261,100.8902,98.6499,96.6084,99.5602,100.2287 -"Light truck and utility vehicle (NAICS = 336112); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G336112.S,IP.G336112.S,127.1860,119.2295,128.6396,132.3028,132.2433,129.9042,135.5418 -"Light truck and utility vehicle (NAICS = 336112); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G336112.N,IP.G336112.N,110.7249,112.7371,138.9506,140.9132,137.5861,131.5407,140.6824 -"Heavy duty truck (NAICS = 33612); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G33612.S,IP.G33612.S,110.9995,97.6326,118.4227,131.1042,111.2894,101.0431,97.8098 -"Heavy duty truck (NAICS = 33612); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G33612.N,IP.G33612.N,102.5872,90.7416,119.3676,135.6229,118.7535,102.6245,103.4468 -"Motor vehicle body and trailer (NAICS = 3362); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3362.S,IP.G3362.S,92.6426,83.7167,87.1026,89.1780,89.7042,89.9859,88.3980 -"Motor vehicle body and trailer (NAICS = 3362); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3362.N,IP.G3362.N,81.6565,77.5955,92.4406,97.6275,97.3164,93.9712,91.0919 -"Truck trailer (NAICS = 336212); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G336212.S,IP.G336212.S,108.3480,91.4171,93.1657,94.3899,94.9588,91.5666,90.6269 -"Truck trailer (NAICS = 336212); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G336212.N,IP.G336212.N,90.8585,79.3831,98.3076,104.8397,100.2016,94.0781,96.1558 -"Motor home (NAICS = 336213); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N336213.S,IP.N336213.S,76.2516,63.4626,66.8176,67.4097,64.7343,59.5140, -"Motor home (NAICS = 336213); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N336213.N,IP.N336213.N,60.5591,63.3552,78.2374,67.9887,71.5132,61.0906, -"Travel trailer and camper (NAICS = 336214); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G336214.S,IP.G336214.S,72.6868,64.0495,69.6632,74.7730,75.9907,76.8120,75.2556 -"Travel trailer and camper (NAICS = 336214); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G336214.N,IP.G336214.N,57.0417,57.7333,78.5307,89.8643,91.2896,86.2063,78.9659 -"Motor vehicle parts (NAICS = 3363); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3363.S,IP.G3363.S,100.6156,98.2762,101.5592,102.5639,102.6565,103.0120,104.2306 -"Motor vehicle parts (NAICS = 3363); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3363.N,IP.G3363.N,98.0086,93.2002,102.8141,108.7272,101.6194,101.1862,103.3977 -"Aerospace product and parts (NAICS = 3364); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3364.S,IP.G3364.S,85.4152,86.3435,85.0513,85.2586,86.5462,86.9917,87.7016 -"Aerospace product and parts (NAICS = 3364); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3364.N,IP.G3364.N,86.5250,86.5277,85.0764,85.6254,86.1277,86.1483,88.0518 -"Aircraft and parts (NAICS = 336411-3); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G336411T3.S,IP.G336411T3.S,80.1432,80.8965,79.7851,79.8628,81.1784,81.5153,82.3074 -"Aircraft and parts (NAICS = 336411-3); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G336411T3.N,IP.G336411T3.N,81.2649,81.1634,79.8410,80.3112,80.8310,80.8044,82.5566 -"Railroad eq., ships and boats, and other transportation equipment (NAICS = 3365-9); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3365T9.S,IP.G3365T9.S,102.7172,101.2566,101.9717,103.4144,105.3516,106.4094,108.9867 -"Railroad eq., ships and boats, and other transportation equipment (NAICS = 3365-9); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3365T9.N,IP.G3365T9.N,101.8072,100.2182,101.8553,107.5959,106.4745,106.3945,109.4684 -"Railroad rolling stock (NAICS = 3365); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3365.S,IP.N3365.S,72.5390,73.4990,71.3690,74.6082,73.9520,76.8643,77.1708 -"Railroad rolling stock (NAICS = 3365); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3365.N,IP.N3365.N,74.1965,72.0565,70.3591,74.6859,72.3399,76.2212,76.5919 -"Ship and boat building (NAICS = 3366); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3366.S,IP.G3366.S,110.5958,107.3760,109.8243,110.2414,113.1321,113.3455,117.1244 -"Ship and boat building (NAICS = 3366); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3366.N,IP.G3366.N,108.0342,105.8012,110.3791,117.1662,115.9900,114.2886,118.7609 -"Other transportation equipment (NAICS = 3369); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3369.S,IP.N3369.S,99.5901,101.1325,99.1015,102.1328,103.0766,105.2623,106.0724 -"Other transportation equipment (NAICS = 3369); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3369.N,IP.N3369.N,101.2726,101.4971,97.7016,101.6531,101.2735,103.1578,104.1921 -"Furniture and related product (NAICS = 337); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G337.S,IP.G337.S,77.4047,76.6185,77.6496,76.9191,77.7549,76.1665,77.2765 -"Furniture and related product (NAICS = 337); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G337.N,IP.G337.N,78.1041,75.0103,77.2986,76.5700,77.1625,76.3503,78.2004 -"Household and institutional furniture and kitchen cabinet (NAICS = 3371); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3371.S,IP.N3371.S,80.8813,80.9516,80.9568,81.2040,82.2729,80.3470,81.2856 -"Household and institutional furniture and kitchen cabinet (NAICS = 3371); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3371.N,IP.N3371.N,81.7522,79.8155,81.2783,81.3144,81.7458,79.8137,82.1802 -"Office and other furniture (NAICS = 3372,9); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3372A9.S,IP.G3372A9.S,73.8739,72.2316,74.2869,72.5811,73.1838,71.9331,73.2124 -"Office and other furniture (NAICS = 3372,9); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3372A9.N,IP.G3372A9.N,74.4289,70.1788,73.2909,71.7994,72.5522,72.8557,74.1908 -"Miscellaneous (NAICS = 339); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G339.S,IP.G339.S,107.7731,107.1942,109.2186,109.1388,107.8046,106.4554,104.6150 -"Miscellaneous (NAICS = 339); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G339.N,IP.G339.N,108.8593,105.9249,108.8590,108.9161,107.0353,105.8339,105.5009 -"Medical equipment and supplies (NAICS = 3391); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3391.S,IP.N3391.S,112.3850,111.4496,113.3818,112.5022,111.9962,109.6834,108.4580 -"Medical equipment and supplies (NAICS = 3391); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3391.N,IP.N3391.N,113.3710,110.9114,113.8339,112.3501,111.0873,108.9367,109.6067 -"Logging (NAICS = 1133); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N1133.S,IP.N1133.S,87.5426,83.3198,89.2743,87.6519,86.4875,86.7503,89.3528 -"Logging (NAICS = 1133); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N1133.N,IP.N1133.N,88.0603,80.1955,89.0513,84.7984,79.0087,80.4493,89.1433 -"Nondurable manufacturing (NAICS); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.GMFN.S,IP.GMFN.S,99.0714,97.5605,98.6864,98.9484,98.3613,99.7130,100.4869 -"Nondurable manufacturing (NAICS); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.GMFN.N,IP.GMFN.N,98.1646,95.8547,98.2578,99.0865,98.8168,99.9274,101.9064 -"Food (NAICS = 311); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G311.S,IP.G311.S,102.3941,101.5505,102.0525,101.3760,101.6162,102.2527,101.9508 -"Food (NAICS = 311); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G311.N,IP.G311.N,101.9844,100.0786,101.6374,101.2198,101.2898,100.3346,101.7457 -"Animal food (NAICS = 3111); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3111.S,IP.G3111.S,101.7800,99.0899,99.7917,99.5075,97.2671,100.5833,100.9837 -"Animal food (NAICS = 3111); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3111.N,IP.G3111.N,103.5003,100.2434,99.7430,98.6694,95.5867,98.1916,98.8333 -"Grain and oilseed milling (NAICS = 3112); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3112.S,IP.G3112.S,103.3433,104.3258,104.8079,105.1645,101.6606,104.8507,106.6409 -"Grain and oilseed milling (NAICS = 3112); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3112.N,IP.G3112.N,102.1280,104.3575,105.1983,108.4496,103.1783,104.3964,106.2580 -"Sugar and confectionery product (NAICS = 3113); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3113.S,IP.G3113.S,95.9359,94.9336,98.6816,103.7956,104.7722,103.9562,102.0912 -"Sugar and confectionery product (NAICS = 3113); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3113.N,IP.G3113.N,106.7814,98.3062,98.6840,104.4577,101.4421,94.9681,92.7800 -"Fruit and vegetable preserving and specialty food (NAICS = 3114); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3114.S,IP.G3114.S,97.2930,96.3162,95.7610,95.1384,95.5544,96.0994,93.5105 -"Fruit and vegetable preserving and specialty food (NAICS = 3114); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3114.N,IP.G3114.N,93.0244,89.6264,90.7924,90.3708,89.9645,90.8337,91.4143 -"Dairy product (NAICS = 3115); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3115.S,IP.G3115.S,104.5344,102.7279,103.4948,104.7383,104.6330,104.0681,104.7188 -"Dairy product (NAICS = 3115); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3115.N,IP.G3115.N,101.8144,101.7884,105.9982,109.4971,109.0732,107.7400,107.3675 -"Dairy product (except frozen) (NAICS = 31151); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G31151.S,IP.G31151.S,104.1426,102.9675,103.0249,103.5357,104.2221,103.2448,103.9160 -"Dairy product (except frozen) (NAICS = 31151); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G31151.N,IP.G31151.N,103.9731,103.8637,105.7168,107.8653,107.9482,106.5225,105.2524 -"Fluid milk (NAICS = 311511); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N311511.S,IP.N311511.S,101.0533,100.5461,100.5633,100.6242,100.2729,100.1186, -"Fluid milk (NAICS = 311511); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N311511.N,IP.N311511.N,99.1829,100.4219,102.2230,103.3344,103.4941,103.1189, -"Creamery butter (NAICS = 311512); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N311512.S,IP.N311512.S,135.8804,129.8590,129.8816,139.1409,141.0015,135.7342, -"Creamery butter (NAICS = 311512); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N311512.N,IP.N311512.N,144.3635,152.3467,150.7775,157.3262,152.0685,143.7947, -"Cheese (NAICS = 311513); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N311513.S,IP.N311513.S,117.7970,117.3960,118.1385,116.9394,119.8840,118.9070, -"Cheese (NAICS = 311513); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N311513.N,IP.N311513.N,118.3825,117.7480,119.5205,120.0702,120.5161,119.0705, -"Dry, condensed, and evaporated dairy product (NAICS = 311514); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N311514.S,IP.N311514.S,80.7622,77.5596,76.4596,79.6484,78.1082,76.2226, -"Dry, condensed, and evaporated dairy product (NAICS = 311514); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N311514.N,IP.N311514.N,81.4812,78.6303,81.2050,87.5500,87.6019,85.2423, -"Ice cream and frozen dessert (NAICS = 31152); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N31152.S,IP.N31152.S,108.7509,101.6273,108.3644,115.7833,109.0090,111.9161, -"Ice cream and frozen dessert (NAICS = 31152); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N31152.N,IP.N31152.N,85.2839,85.9573,110.0548,124.9787,120.2752,119.7022, -"Animal slaughtering and processing (NAICS = 3116); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3116.S,IP.G3116.S,105.2476,102.4321,104.7345,101.1409,103.9684,104.2103,104.4577 -"Animal slaughtering and processing (NAICS = 3116); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3116.N,IP.G3116.N,102.9822,102.5013,105.7240,100.7841,104.8599,101.1264,105.9759 -"Animal (except poultry) slaughtering and meat processing (NAICS = 311611-3); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G311611T3.S,IP.G311611T3.S,103.3502,99.9645,102.6566,97.9375,100.7367,102.0635,101.5532 -"Animal (except poultry) slaughtering and meat processing (NAICS = 311611-3); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G311611T3.N,IP.G311611T3.N,101.8713,100.1694,103.9241,98.1707,102.5125,98.4310,102.8873 -"Beef (NAICS = 311611-3pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N311611T3B.S,IP.N311611T3B.S,99.1194,94.5717,96.9997,92.7253,96.7456,98.0983, -"Beef (NAICS = 311611-3pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N311611T3B.N,IP.N311611T3B.N,95.4518,93.4259,96.5625,91.9802,98.3101,95.3208, -"Pork (NAICS = 311611-3pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N311611T3P.S,IP.N311611T3P.S,109.6918,108.5669,111.6761,106.0323,106.7749,107.9147, -"Pork (NAICS = 311611-3pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N311611T3P.N,IP.N311611T3P.N,112.2376,111.3930,116.1175,107.8512,108.7718,102.6805, -"Miscellaneous meats (NAICS = 311611-3pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N311611T3Z.S,IP.N311611T3Z.S,107.2552,102.6234,106.9418,108.7037,99.2592,105.4566, -"Miscellaneous meats (NAICS = 311611-3pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N311611T3Z.N,IP.N311611T3Z.N,109.2816,98.4168,107.7839,118.1836,105.7100,101.7865, -"Poultry processing (NAICS = 311615); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N311615.S,IP.N311615.S,108.3517,106.9229,108.2776,107.3689,110.2275,107.9459, -"Poultry processing (NAICS = 311615); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N311615.N,IP.N311615.N,104.1637,106.5795,108.5045,105.5396,108.9398,106.0637, -"Bakeries and tortilla (NAICS = 3118); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N3118.S,IP.N3118.S,101.0344,103.7942,102.1239,103.7211,104.9416,105.7465,105.2282 -"Bakeries and tortilla (NAICS = 3118); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N3118.N,IP.N3118.N,103.0034,101.8965,100.8666,102.9699,104.0109,105.6630,105.6703 -"Other food (NAICS = 3119); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3119.S,IP.G3119.S,106.5055,106.4951,106.0153,104.3537,103.2464,103.2505,103.0303 -"Other food (NAICS = 3119); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3119.N,IP.G3119.N,108.1916,104.4216,104.9168,103.7446,103.5290,102.4270,102.3290 -"Coffee and tea (NAICS = 31192); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G31192.S,IP.G31192.S,90.1387,89.6428,88.8687,87.7688,86.8354,87.4810,86.8254 -"Coffee and tea (NAICS = 31192); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G31192.N,IP.G31192.N,91.0868,87.8803,88.2453,87.0639,86.7355,86.2796,86.3011 -"Beverage and tobacco product (NAICS = 312); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G312.S,IP.G312.S,93.2632,91.4354,91.4268,92.8709,90.5536,91.8558,94.5864 -"Beverage and tobacco product (NAICS = 312); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G312.N,IP.G312.N,83.7937,87.6752,93.9222,96.5813,94.8145,93.3997,101.3200 -"Beverage (NAICS = 3121); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3121.S,IP.G3121.S,113.7171,113.4946,114.3885,112.8939,109.4528,112.5546,116.0244 -"Beverage (NAICS = 3121); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3121.N,IP.G3121.N,111.5285,107.3045,112.2567,115.7640,112.8899,115.6979,124.4643 -"Soft drink and ice (NAICS = 31211); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N31211.S,IP.N31211.S,110.6344,114.7744,111.1636,110.4002,109.0131,110.9807,114.5711 -"Soft drink and ice (NAICS = 31211); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N31211.N,IP.N31211.N,107.6201,111.8950,109.2876,109.3165,109.6882,112.5146,114.8396 -"Breweries (NAICS = 31212); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N31212.S,IP.N31212.S,89.7050,91.8520,93.7760,88.8757,84.6345,, -"Breweries (NAICS = 31212); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N31212.N,IP.N31212.N,83.7136,82.5960,88.0542,94.4182,88.3926,, -"Tobacco (NAICS = 3122); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3122.S,IP.G3122.S,69.5613,66.2369,65.3546,69.5551,68.4133,67.9573,69.8620 -"Tobacco (NAICS = 3122); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3122.N,IP.G3122.N,53.2504,64.8829,72.1105,73.8366,73.2039,67.8854,74.6160 -"Textile mills (NAICS = 313); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G313.S,IP.G313.S,72.5925,73.0454,74.0214,76.9060,76.3428,78.3665,79.9612 -"Textile mills (NAICS = 313); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G313.N,IP.G313.N,73.0555,71.0228,73.7573,77.1206,77.7431,78.2431,80.6937 -"Fiber, yarn, and thread mills (NAICS = 3131); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3131.S,IP.G3131.S,59.8151,61.0101,62.2490,64.4614,64.1622,65.7986,67.4858 -"Fiber, yarn, and thread mills (NAICS = 3131); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3131.N,IP.G3131.N,59.9134,59.0129,62.4119,64.8188,65.3557,66.0566,68.4658 -"Fabric mills (NAICS = 3132); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3132.S,IP.G3132.S,74.5208,74.4154,75.1271,78.3858,77.2233,78.7139,79.9319 -"Fabric mills (NAICS = 3132); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3132.N,IP.G3132.N,74.9531,72.9710,74.7896,78.9322,78.8032,78.3683,80.2695 -"Textile and fabric finishing and fabric coating mills (NAICS = 3133); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3133.S,IP.G3133.S,78.3662,79.3848,80.6952,83.3449,83.7626,87.1198,89.3913 -"Textile and fabric finishing and fabric coating mills (NAICS = 3133); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3133.N,IP.G3133.N,79.1475,76.1938,80.2592,82.8013,84.9593,87.1457,90.7106 -"Textile product mills (NAICS = 314); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G314.S,IP.G314.S,82.6406,82.1403,83.8353,80.4480,79.9789,81.7514,82.4672 -"Textile product mills (NAICS = 314); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G314.N,IP.G314.N,77.8788,79.0936,80.9259,80.2741,81.7791,80.2525,84.7754 -"Textile furnishings mills (NAICS = 3141); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3141.S,IP.G3141.S,72.0278,71.8457,72.0898,70.6164,69.8184,70.0890,70.0173 -"Textile furnishings mills (NAICS = 3141); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3141.N,IP.G3141.N,61.5608,67.2340,68.0754,69.9546,73.6428,67.6915,74.9281 -"Carpet and rug mills (NAICS = 31411); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G31411.S,IP.G31411.S,66.5049,66.2099,65.9013,65.5804,65.1994,64.7932,64.4440 -"Carpet and rug mills (NAICS = 31411); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G31411.N,IP.G31411.N,49.0666,60.6475,61.0319,64.9381,71.8725,61.8729,71.4225 -"Other textile product mills (NAICS = 3149); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3149.S,IP.G3149.S,95.1441,94.2753,97.6483,92.0444,91.9526,95.4603,97.0847 -"Other textile product mills (NAICS = 3149); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3149.N,IP.G3149.N,96.9485,93.0331,96.0129,92.4465,91.4463,95.0002,96.4227 -"Apparel (NAICS = 315); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G315.S,IP.G315.S,71.5072,70.8494,69.8198,67.8076,70.8577,70.2740,70.2445 -"Apparel (NAICS = 315); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G315.N,IP.G315.N,73.0594,68.8599,70.3959,68.1509,70.8462,70.0446,70.9867 -"Leather and allied product (NAICS = 316); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G316.S,IP.G316.S,108.5784,109.0770,108.5728,108.8828,105.8903,106.5847,110.5751 -"Leather and allied product (NAICS = 316); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G316.N,IP.G316.N,106.0653,107.6296,107.1599,109.2017,110.1111,109.0523,111.2125 -"Paper (NAICS = 322); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G322.S,IP.G322.S,86.0626,85.7918,87.2291,86.9501,87.0085,87.4494,88.7263 -"Paper (NAICS = 322); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G322.N,IP.G322.N,84.9091,85.2558,88.0746,86.8161,88.1064,87.5554,89.5423 -"Pulp, paper, and paperboard mills (NAICS = 3221); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3221.S,IP.G3221.S,79.0307,79.1446,81.0285,80.7161,80.6770,81.2239,82.9788 -"Pulp, paper, and paperboard mills (NAICS = 3221); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3221.N,IP.G3221.N,78.9417,79.6063,82.1329,80.6197,80.7349,81.9794,83.0669 -"Pulp mills (NAICS = 32211); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N32211.S,IP.N32211.S,101.5701,97.3614,102.1338,103.1109,101.2794,103.7713, -"Pulp mills (NAICS = 32211); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N32211.N,IP.N32211.N,103.0111,97.1498,102.3577,102.1450,101.0635,103.9135, -"Paper mills (NAICS = 32212); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32212.S,IP.G32212.S,70.7616,72.2085,74.0901,73.2211,72.4824,73.0018,75.0326 -"Paper mills (NAICS = 32212); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32212.N,IP.G32212.N,70.2351,73.8229,75.6845,73.1720,72.2608,72.7088,74.3637 -"Paper (except newsprint) mills (NAICS = 322121); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N322121.S,IP.N322121.S,71.0936,72.5608,74.4328,73.5570,,, -"Paper (except newsprint) mills (NAICS = 322121); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N322121.N,IP.N322121.N,70.5680,74.1946,76.0455,73.5066,,, -"Paperboard mills (NAICS = 32213); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N32213.S,IP.N32213.S,85.2816,84.5134,85.9200,86.0625,,, -"Paperboard mills (NAICS = 32213); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N32213.N,IP.N32213.N,85.4015,83.6378,86.5177,85.9912,,, -"Converted paper product (NAICS = 3222); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3222.S,IP.G3222.S,92.9537,92.3171,93.3350,93.0868,93.2375,93.5798,94.4113 -"Converted paper product (NAICS = 3222); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3222.N,IP.G3222.N,90.7892,90.8352,93.9383,92.9172,95.3202,93.0761,95.9151 -"Paperboard container (NAICS = 32221); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N32221.S,IP.N32221.S,90.2240,89.3539,88.9307,88.3676,,, -"Paperboard container (NAICS = 32221); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N32221.N,IP.N32221.N,85.4579,86.0230,89.4149,87.9996,,, -"Paper bag and coated and treated paper (NAICS = 32222); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32222.S,IP.G32222.S,75.2639,74.9466,78.1868,78.8151,77.9104,78.3834,80.6881 -"Paper bag and coated and treated paper (NAICS = 32222); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32222.N,IP.G32222.N,76.8306,75.3836,77.6467,79.1960,79.7485,77.7045,79.8834 -"Other converted paper products (NAICS = 32223,9); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32223A9.S,IP.G32223A9.S,113.9808,113.5653,115.8493,115.5677,116.0925,116.3931,117.9884 -"Other converted paper products (NAICS = 32223,9); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32223A9.N,IP.G32223A9.N,114.1881,114.3197,117.5356,115.3235,116.0257,114.8409,117.9408 -"Printing and related support activities (NAICS = 323); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G323.S,IP.G323.S,80.6152,81.7001,82.9267,83.7230,84.6393,84.2501,86.4347 -"Printing and related support activities (NAICS = 323); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G323.N,IP.G323.N,81.7096,80.8683,82.2883,84.1352,84.8432,84.6990,86.6551 -"Petroleum and coal products (NAICS = 324); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G324.S,IP.G324.S,93.6831,91.6278,92.6833,94.5957,90.9141,94.1743,94.6060 -"Petroleum and coal products (NAICS = 324); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G324.N,IP.G324.N,91.5253,85.6341,87.5035,92.4119,91.4842,97.2351,98.8667 -"Petroleum refineries (NAICS = 32411); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32411.S,IP.G32411.S,91.6079,89.7451,89.7137,91.4056,89.6949,91.4227,91.9591 -"Petroleum refineries (NAICS = 32411); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32411.N,IP.G32411.N,90.5224,85.1323,85.9726,90.2425,90.1529,94.2200,95.7252 -"Aviation fuel and kerosene (NAICS = 32411pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N32411A.S,IP.N32411A.S,103.0353,100.3351,99.7556,105.9787,100.0694,, -"Aviation fuel and kerosene (NAICS = 32411pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N32411A.N,IP.N32411A.N,108.2892,100.1357,96.7606,103.2666,102.8103,, -"Distillate fuel oil (NAICS = 32411pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N32411D.S,IP.N32411D.S,85.3984,80.2481,75.4167,81.9498,81.9978,, -"Distillate fuel oil (NAICS = 32411pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N32411D.N,IP.N32411D.N,87.9612,77.8968,72.3459,79.1624,80.1297,, -"Automotive gasoline (NAICS = 32411pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N32411G.S,IP.N32411G.S,89.6922,89.0564,88.6420,87.7905,88.9051,, -"Automotive gasoline (NAICS = 32411pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N32411G.N,IP.N32411G.N,87.8497,82.9331,85.9517,87.2468,89.2704,, -"Residual fuel oil (NAICS = 32411pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N32411R.S,IP.N32411R.S,134.0203,131.8255,168.0856,161.7377,124.8656,, -"Residual fuel oil (NAICS = 32411pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N32411R.N,IP.N32411R.N,122.6852,136.7002,170.0004,173.2495,126.1911,, -"Other refinery output (NAICS = 32411pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32411X.S,IP.G32411X.S,89.4936,91.4090,95.0380,93.9191,89.3998,93.5827,93.9080 -"Other refinery output (NAICS = 32411pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32411X.N,IP.G32411X.N,80.2521,81.4801,83.1233,92.1440,94.0746,103.5141,105.4052 -"Paving, roofing, and other petroleum and coal products (NAICS = 32412,9); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N32412A9.S,IP.N32412A9.S,96.7964,93.8568,100.8153,103.7696,89.6537,100.9464,100.7763 -"Paving, roofing, and other petroleum and coal products (NAICS = 32412,9); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N32412A9.N,IP.N32412A9.N,89.1690,81.0073,88.3950,96.3870,90.9631,105.3672,107.5451 -"Chemical (NAICS = 325); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G325.S,IP.G325.S,103.7028,101.2194,103.2941,103.4676,103.1915,105.2738,106.5475 -"Chemical (NAICS = 325); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G325.N,IP.G325.N,104.6321,100.8440,103.3398,103.8071,103.2021,105.9461,107.0945 -"Basic chemical (NAICS = 3251); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3251.S,IP.G3251.S,93.1675,88.5576,89.8663,90.8069,89.4059,91.6582,93.1072 -"Basic chemical (NAICS = 3251); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3251.N,IP.G3251.N,92.5453,88.8861,89.8007,90.8835,89.2049,91.6257,93.8174 -"Organic chemicals (NAICS = 32511,9); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32511A9.S,IP.G32511A9.S,90.6436,82.4260,85.8102,86.5807,83.9013,86.9409,88.7376 -"Organic chemicals (NAICS = 32511,9); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32511A9.N,IP.G32511A9.N,89.3082,82.4587,86.1940,87.1486,84.1403,87.6088,89.7025 -"Basic inorganic chemicals (NAICS = 32512-8); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32512T8.S,IP.G32512T8.S,99.4865,102.7386,99.5111,100.8327,102.2214,102.7667,103.4652 -"Basic inorganic chemicals (NAICS = 32512-8); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32512T8.N,IP.G32512T8.N,100.4198,103.7108,98.4587,99.8312,101.0507,101.1962,103.6209 -"Industrial gas (NAICS = 32512); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32512.S,IP.G32512.S,129.0645,134.3097,129.3739,130.8883,132.8146,133.4129,134.6440 -"Industrial gas (NAICS = 32512); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32512.N,IP.G32512.N,130.1226,136.3767,127.2100,129.7651,131.6943,132.0410,135.2757 -"Synthetic dye and pigment (NAICS = 32513); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32513.S,IP.G32513.S,80.5834,83.5243,80.4495,81.6093,82.2257,83.2020,83.6556 -"Synthetic dye and pigment (NAICS = 32513); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32513.N,IP.G32513.N,81.1934,83.2983,78.2204,79.5248,80.2514,81.2870,83.6321 -"Other basic inorganic chemical (NAICS = 32518pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32518.S,IP.G32518.S,92.4497,95.0561,92.3998,93.6870,95.0118,95.4746,96.0195 -"Other basic inorganic chemical (NAICS = 32518pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32518.N,IP.G32518.N,93.3931,95.8289,91.9279,92.8903,93.9370,93.8685,96.0281 -"Alkalies and chlorine (NAICS = 32518pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N32518C.S,IP.N32518C.S,65.9928,67.2990,68.1073,68.3580,,, -"Alkalies and chlorine (NAICS = 32518pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N32518C.N,IP.N32518C.N,67.9301,68.1741,69.4996,68.2233,,, -"Resin, synthetic rubber, and artificial and synthetic fibers and filaments (NAICS = 3252); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3252.S,IP.G3252.S,89.5133,83.9435,90.1893,88.6064,86.3644,88.4947,89.4666 -"Resin, synthetic rubber, and artificial and synthetic fibers and filaments (NAICS = 3252); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3252.N,IP.G3252.N,88.3308,84.4577,92.7149,89.4164,87.9617,89.4127,90.3121 -"Resin and synthetic rubber (NAICS = 32521); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32521.S,IP.G32521.S,91.7851,85.8100,92.5832,90.7180,88.6049,90.9179,91.9761 -"Resin and synthetic rubber (NAICS = 32521); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32521.N,IP.G32521.N,90.5369,86.4437,95.1932,91.5570,90.4055,91.9067,92.8296 -"Plastics material and resin (NAICS = 325211); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N325211.S,IP.N325211.S,93.1821,86.7985,94.1521,92.0074,90.1193,92.5490, -"Plastics material and resin (NAICS = 325211); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N325211.N,IP.N325211.N,91.7806,87.3241,96.8413,92.9029,92.0374,93.5657, -"Synthetic rubber (NAICS = 325212); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G325212.S,IP.G325212.S,78.5314,76.9481,77.4767,78.6345,74.0247,75.1237,75.2534 -"Synthetic rubber (NAICS = 325212); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G325212.N,IP.G325212.N,78.2928,78.1658,78.5878,78.2090,73.9269,75.1544,76.8827 -"Artificial and synthetic fibers and filaments (NAICS = 32522); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32522.S,IP.G32522.S,63.3516,62.0212,62.8166,64.0619,60.6713,60.9378,61.0356 -"Artificial and synthetic fibers and filaments (NAICS = 32522); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32522.N,IP.G32522.N,62.8939,61.3557,64.4266,64.5701,60.2414,61.1397,61.7701 -"Pesticide, fertilizer, and other agricultural chemical (NAICS = 3253); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3253.S,IP.G3253.S,115.2019,101.3228,107.0535,112.8798,110.9841,113.2523,115.5004 -"Pesticide, fertilizer, and other agricultural chemical (NAICS = 3253); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3253.N,IP.G3253.N,119.5023,100.6903,107.7220,113.8120,112.6902,112.9997,112.8435 -"Pharmaceutical and medicine (NAICS = 3254); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3254.S,IP.G3254.S,117.7927,117.1797,118.1188,117.7509,118.4538,120.4456,121.9280 -"Pharmaceutical and medicine (NAICS = 3254); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3254.N,IP.G3254.N,120.2844,116.8980,117.2428,118.0091,118.2074,122.1618,122.5191 -"Chemicals except pharmaceuticals and medicines (NAICS = 3251-3,5-9); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G325@4.S,IP.G325@4.S,95.2341,91.7514,94.4316,94.9010,94.0875,96.2063,97.3564 -"Chemicals except pharmaceuticals and medicines (NAICS = 3251-3,5-9); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G325@4.N,IP.G325@4.N,95.3122,91.3341,94.9876,95.2876,94.2441,96.3011,97.8818 -"Paints, soaps and toiletries, and other chemical products (NAICS = 3255-9); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3255T9.S,IP.G3255T9.S,96.5469,97.4580,99.6953,99.3505,100.0704,102.0059,102.6535 -"Paints, soaps and toiletries, and other chemical products (NAICS = 3255-9); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3255T9.N,IP.G3255T9.N,97.1516,95.7950,100.1745,99.8413,99.7484,102.0003,103.5095 -"Paints and other chemical products (NAICS = 3255,9); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3255A9.S,IP.G3255A9.S,95.1046,94.0333,96.2188,95.7330,95.7129,96.1650,96.5759 -"Paints and other chemical products (NAICS = 3255,9); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3255A9.N,IP.G3255A9.N,94.9744,91.6245,96.9733,96.5839,94.5653,95.2674,96.5791 -"Paint, coating, and adhesive (NAICS = 3255); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3255.S,IP.G3255.S,98.0897,99.4305,98.4738,98.7256,96.7554,98.1931,97.2372 -"Paint, coating, and adhesive (NAICS = 3255); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3255.N,IP.G3255.N,97.8644,94.9550,99.4850,100.8417,94.4444,96.2277,95.9615 -"Paint and coating (NAICS = 32551); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32551.S,IP.G32551.S,92.3566,93.7437,92.9596,93.0666,91.2909,92.5610,91.7705 -"Paint and coating (NAICS = 32551); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32551.N,IP.G32551.N,91.7087,89.4200,93.8520,95.5717,89.6559,90.7806,90.4079 -"Soap, cleaning compound, and toilet preparation (NAICS = 3256); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3256.S,IP.G3256.S,97.9749,100.8620,103.1506,102.9466,104.4048,107.8209,108.7046 -"Soap, cleaning compound, and toilet preparation (NAICS = 3256); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3256.N,IP.G3256.N,99.3121,99.9436,103.3556,103.0786,104.9083,108.7077,110.4139 -"Plastics and rubber products (NAICS = 326); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G326.S,IP.G326.S,103.3795,101.9374,102.3816,102.6582,102.8501,102.8190,102.3809 -"Plastics and rubber products (NAICS = 326); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G326.N,IP.G326.N,103.1052,100.9760,102.7743,102.5520,102.6132,102.4892,103.6658 -"Plastics product (NAICS = 3261); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3261.S,IP.G3261.S,103.5135,102.3672,102.8550,103.1322,104.5813,105.1234,103.9642 -"Plastics product (NAICS = 3261); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3261.N,IP.G3261.N,104.3366,101.0774,102.7231,102.7420,103.8641,104.5999,105.1952 -"Rubber product (NAICS = 3262); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3262.S,IP.G3262.S,102.5944,100.0040,100.2772,100.5506,95.8577,93.6016,95.9614 -"Rubber product (NAICS = 3262); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3262.N,IP.G3262.N,98.0260,100.3030,102.6903,101.5310,97.4706,94.0088,97.4370 -"Tire (NAICS = 32621); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32621.S,IP.G32621.S,91.9196,85.1142,89.6098,92.0026,85.8227,81.9292,84.1600 -"Tire (NAICS = 32621); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32621.N,IP.G32621.N,78.5829,84.8195,95.1237,93.8506,89.6368,83.6269,85.7435 -"Rubber products ex. tires (NAICS = 32622,9); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32622A9.S,IP.G32622A9.S,112.1704,113.3173,109.8506,108.2502,104.8629,104.0462,106.5240 -"Rubber products ex. tires (NAICS = 32622,9); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32622A9.N,IP.G32622A9.N,115.3844,114.1576,109.5485,108.4876,104.5549,103.3283,107.9159 -"Newspaper, periodical, book, and directory publishers (NAICS = 5111); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G5111.S,IP.G5111.S,77.2478,79.7251,79.6239,79.6175,79.8510,80.4561,81.0429 -"Newspaper, periodical, book, and directory publishers (NAICS = 5111); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G5111.N,IP.G5111.N,76.6410,74.9542,73.6930,72.9069,76.4316,77.8512,82.4123 -"Newspaper publishers (NAICS = 51111); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G51111.S,IP.G51111.S,64.3866,64.0496,64.5973,64.2465,64.7434,65.9902,66.3209 -"Newspaper publishers (NAICS = 51111); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G51111.N,IP.G51111.N,65.2744,60.5873,64.3176,63.8198,66.4889,64.2614,66.7601 -"Periodical, book, and other publishers (NAICS = 51112-9); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G51112T9.S,IP.G51112T9.S,83.0227,86.8261,86.4165,86.5744,86.6808,86.9753,87.6820 -"Periodical, book, and other publishers (NAICS = 51112-9); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G51112T9.N,IP.G51112T9.N,81.6829,81.4253,77.7982,76.8786,80.7940,83.9514,89.4770 -"Oil and gas extraction (NAICS = 211); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G211.S,IP.G211.S,143.9227,137.9326,143.9932,143.1369,144.9711,144.8582,145.7318 -"Oil and gas extraction (NAICS = 211); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G211.N,IP.G211.N,144.6316,136.8332,143.3069,144.0340,144.8920,144.4877,145.3832 -"Crude oil (NAICS = 21112); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G21112.S,IP.G21112.S,140.6870,134.6855,140.4091,139.8282,141.9462,141.7838,142.8000 -"Crude oil (NAICS = 21112); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G21112.N,IP.G21112.N,141.7658,134.1673,140.0344,140.8225,141.5898,141.0966,142.2105 -"Natural gas and natural gas liquids (NAICS = 21113); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G21113.S,IP.G21113.S,155.0432,149.3003,156.7852,154.6685,155.1593,155.2713,155.4986 -"Natural gas and natural gas liquids (NAICS = 21113); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G21113.N,IP.G21113.N,153.5697,145.0683,154.2146,154.6362,155.8840,155.8880,155.8026 -"Natural gas (NAICS = 211130pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N21113G.S,IP.N21113G.S,143.6470,141.0580,144.9173,140.7789,139.7256,139.0715, -"Natural gas (NAICS = 211130pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N21113G.N,IP.N21113G.N,144.6965,140.1587,144.1957,140.5277,139.4517,139.1454, -"Natural gas liquid extraction (NAICS = 211130pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G21113PQ.S,IP.G21113PQ.S,179.4579,169.2077,182.0164,182.5550,185.2323,186.4408,184.3959 -"Natural gas liquid extraction (NAICS = 211130pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G21113PQ.N,IP.G21113PQ.N,175.0047,160.7383,177.3337,183.3941,187.9637,188.4095,186.6786 -"Mining (except oil and gas) (NAICS = 212); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G212.S,IP.G212.S,89.2716,81.8113,87.6794,87.0261,85.4135,83.0807,82.5551 -"Mining (except oil and gas) (NAICS = 212); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G212.N,IP.G212.N,84.1367,73.5043,77.7145,80.2741,84.8616,86.9282,87.8469 -"Coal mining (NAICS = 2121); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N2121.S,IP.N2121.S,76.6694,65.5570,70.5587,67.3768,59.9654,58.1664, -"Coal mining (NAICS = 2121); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N2121.N,IP.N2121.N,72.0173,67.1017,72.5792,66.7407,59.1518,58.1476, -"Metal ore mining (NAICS = 2122); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G2122.S,IP.G2122.S,83.7036,80.0100,81.5039,85.3070,83.3853,85.7923,85.4200 -"Metal ore mining (NAICS = 2122); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G2122.N,IP.G2122.N,86.0247,78.8418,80.9139,83.0864,82.2221,83.9674,85.5262 -"Iron ore mining (NAICS = 21221); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N21221.S,IP.N21221.S,84.1878,79.4679,81.4975,82.8675,85.8517,, -"Iron ore mining (NAICS = 21221); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N21221.N,IP.N21221.N,82.9698,72.4303,82.0689,83.6123,82.0636,, -"Gold ore and silver ore mining (NAICS = 21222); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G21222.S,IP.G21222.S,76.6912,68.3977,69.7203,72.0471,66.2337,68.8477,67.8872 -"Gold ore and silver ore mining (NAICS = 21222); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G21222.N,IP.G21222.N,82.2409,65.7734,65.9077,67.4178,66.3653,67.1177,66.8997 -"Copper, nickel, lead, and zinc mining (NAICS = 21223); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G21223.S,IP.G21223.S,93.6936,97.3377,100.3345,103.3689,103.9078,110.4848,110.5641 -"Copper, nickel, lead, and zinc mining (NAICS = 21223); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G21223.N,IP.G21223.N,94.5470,96.0270,100.2494,100.1508,102.4905,108.3542,112.5027 -"Nonmetallic mineral mining and quarrying (NAICS = 2123); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G2123.S,IP.G2123.S,105.2962,97.4169,108.0620,105.4236,109.0170,101.8115,101.6875 -"Nonmetallic mineral mining and quarrying (NAICS = 2123); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G2123.N,IP.G2123.N,93.0419,74.3919,79.5295,89.5655,109.5872,114.5796,116.4060 -"Support activities for mining (NAICS = 213); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G213.S,IP.G213.S,85.3053,84.8145,85.3462,85.3693,82.8031,81.4380,81.0790 -"Support activities for mining (NAICS = 213); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G213.N,IP.G213.N,85.4866,84.7525,85.2112,85.6777,84.1560,82.4159,80.9981 -"Drilling oil and gas wells (NAICS = 213111); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N213111.S,IP.N213111.S,109.2864,108.5309,108.0537,109.0561,105.2515,103.1317,103.7599 -"Drilling oil and gas wells (NAICS = 213111); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N213111.N,IP.N213111.N,109.9743,109.2214,109.5304,110.4254,107.4412,105.2789,103.6925 -"Electric power generation, transmission, and distribution (NAICS = 2211); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G2211.S,IP.G2211.S,103.0898,107.1461,103.7609,101.7041,104.7089,107.3317,110.5250 -"Electric power generation, transmission, and distribution (NAICS = 2211); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G2211.N,IP.G2211.N,101.2066,111.6849,98.8483,93.5716,89.9546,99.0826,117.7453 -"Electric power generation (NAICS = 22111); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G22111.S,IP.G22111.S,98.9901,103.3522,97.7650,98.4352,99.6607,103.7196,106.2091 -"Electric power generation (NAICS = 22111); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G22111.N,IP.G22111.N,98.0803,107.7184,95.7973,89.3164,86.4735,96.3606,114.2565 -"Hydroelectric, renewables, and other (NAICS = 221111,4-8); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G221111A4T8.S,IP.G221111A4T8.S,112.6240,109.6300,115.2812,123.8130,117.9461,120.0422,122.2623 -"Hydroelectric, renewables, and other (NAICS = 221111,4-8); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G221111A4T8.N,IP.G221111A4T8.N,108.3226,110.0120,124.5381,133.9980,134.7407,134.8214,129.3416 -"Hydroelectric power generation (NAICS = 221111); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N221111.S,IP.N221111.S,78.0110,77.5688,79.7367,88.3849,72.4545,, -"Hydroelectric power generation (NAICS = 221111); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N221111.N,IP.N221111.N,75.4514,83.4347,82.2351,90.6045,78.0954,, -"Renewables and other electric power generation (NAICS = 221114-8); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N221114T8.S,IP.N221114T8.S,174.2953,166.8187,178.6077,187.0396,198.6373,, -"Renewables and other electric power generation (NAICS = 221114-8); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N221114T8.N,IP.N221114T8.N,165.6375,156.3604,198.2935,209.6567,233.4904,, -"Fossil Fuel electric power generation (NAICS = 221112); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N221112.S,IP.N221112.S,98.2142,107.4179,94.4270,94.6163,97.0638,, -"Fossil Fuel electric power generation (NAICS = 221112); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N221112.N,IP.N221112.N,94.5014,111.0357,87.0671,78.3951,76.6101,, -"Nuclear electric power generation (NAICS = 221113); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N221113.S,IP.N221113.S,95.4494,93.8789,97.3676,96.0530,97.6709,, -"Nuclear electric power generation (NAICS = 221113); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N221113.N,IP.N221113.N,100.7802,101.0464,100.9851,92.6591,86.6499,, -"Electric power transmission, control, and distribution (NAICS = 22112); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G22112.S,IP.G22112.S,107.1899,110.9361,109.7760,104.9649,109.7668,110.9364,114.8401 -"Electric power transmission, control, and distribution (NAICS = 22112); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G22112.N,IP.G22112.N,104.3245,115.6466,101.8909,97.8320,93.4346,101.7917,121.2216 -"Commercial and other electricity sales (NAICS = 22112pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N22112C.S,IP.N22112C.S,112.6972,114.6189,115.0567,112.0986,114.4704,, -"Commercial and other electricity sales (NAICS = 22112pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N22112C.N,IP.N22112C.N,106.9470,111.8967,104.4008,105.5620,102.7594,, -"Industrial electricity sales (NAICS = 22112pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N22112M.S,IP.N22112M.S,103.8477,103.6465,105.0161,103.4009,101.8927,, -"Industrial electricity sales (NAICS = 22112pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N22112M.N,IP.N22112M.N,100.4903,100.8512,94.9895,100.4915,98.8213,, -"Residential electricity sales (NAICS = 22112pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N22112R.S,IP.N22112R.S,103.9299,110.6711,107.2430,99.7047,108.8928,, -"Residential electricity sales (NAICS = 22112pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N22112R.N,IP.N22112R.N,103.6250,124.3297,102.4621,90.5009,83.7656,, -"Natural gas distribution (NAICS = 2212); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G2212.S,IP.G2212.S,102.1671,108.9203,101.3612,95.4612,103.5897,101.2707,103.0105 -"Natural gas distribution (NAICS = 2212); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G2212.N,IP.G2212.N,162.1837,214.0887,158.2215,132.2257,93.5295,67.5181,57.2905 -"Commercial and other gas sales (NAICS = 2212pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N2212C.S,IP.N2212C.S,99.5326,105.4065,99.5938,95.9512,103.1327,, -"Commercial and other gas sales (NAICS = 2212pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N2212C.N,IP.N2212C.N,156.6901,203.0207,157.5580,131.3311,93.7564,, -"Industrial gas sales (NAICS = 2212pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N2212M.S,IP.N2212M.S,127.5925,129.4736,128.0802,127.6923,125.1041,, -"Industrial gas sales (NAICS = 2212pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N2212M.N,IP.N2212M.N,128.8417,137.5133,116.9748,118.8402,112.2794,, -"Residential gas sales (NAICS = 2212pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N2212R.S,IP.N2212R.S,99.6106,105.0623,96.2082,88.1785,98.3665,, -"Residential gas sales (NAICS = 2212pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N2212R.N,IP.N2212R.N,178.3137,249.8753,175.6795,138.4656,86.2586,, -"Gas transmission (NAICS = 2212pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N2212T.S,IP.N2212T.S,113.0457,124.8008,116.8141,112.1551,119.4593,, -"Gas transmission (NAICS = 2212pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N2212T.N,IP.N2212T.N,140.1528,163.4670,131.2772,123.4959,105.8774,, -"Total index; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B50001.S,IP.B50001.S,102.6309,101.4830,102.6045,102.4062,102.4329,103.3282,103.9941 -"Total index; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B50001.N,IP.B50001.N,102.2236,101.7062,102.6262,102.5993,101.4902,102.2359,105.2923 -"Final products and nonindustrial supplies; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B50030.S,IP.B50030.S,100.6803,99.9017,100.8232,100.5126,100.6561,101.3293,101.9718 -"Final products and nonindustrial supplies; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B50030.N,IP.B50030.N,100.3725,100.7226,101.3042,101.0958,99.8947,100.1414,103.1257 -"Final products; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B50002.S,IP.B50002.S,100.8413,100.0648,100.7468,100.3951,100.7962,101.3132,102.0032 -"Final products; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B50002.N,IP.B50002.N,100.5933,102.0322,102.6175,101.8388,100.3291,99.8517,102.8496 -"Consumer goods; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51000.S,IP.B51000.S,101.9747,101.2513,101.6808,101.1120,101.8322,102.4944,103.5572 -"Consumer goods; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51000.N,IP.B51000.N,101.5831,104.4359,104.0835,102.7986,101.0657,100.5342,104.4690 -"Durable consumer goods; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51100.S,IP.B51100.S,107.7707,103.9426,107.5455,108.0906,106.9541,106.7452,107.3222 -"Durable consumer goods; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51100.N,IP.B51100.N,100.5741,104.8046,113.6753,113.3477,113.0399,108.3890,109.9373 -"Automotive products; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51110.S,IP.B51110.S,112.0907,104.8385,110.0006,112.1848,111.0590,110.8468,112.7473 -"Automotive products; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51110.N,IP.B51110.N,100.3880,100.8566,116.4182,118.2077,115.6900,112.2694,116.1163 -"Autos and trucks, consumer; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51111.S,IP.B51111.S,126.6275,116.0501,124.3375,127.2141,126.0671,125.8376,128.9697 -"Autos and trucks, consumer; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51111.N,IP.B51111.N,110.0969,109.7845,134.5588,135.1317,131.4899,126.8211,133.6635 -"Auto parts and allied goods; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51112.S,IP.B51112.S,94.8447,91.4220,92.9968,94.3799,93.2853,93.0942,93.5842 -"Auto parts and allied goods; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51112.N,IP.B51112.N,88.7193,90.0659,95.1241,98.2723,97.0399,95.0504,95.4963 -"Other durable goods; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51120.S,IP.B51120.S,102.6815,102.8338,104.6267,103.2755,102.1277,101.9228,100.9767 -"Other durable goods; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51120.N,IP.B51120.N,100.7190,109.3213,110.4346,107.6624,109.9000,103.8407,102.7542 -"Computers, video and audio equipment; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51121.S,IP.B51121.S,192.7338,195.2381,193.8571,197.1932,194.9004,195.0707,190.5418 -"Computers, video and audio equipment; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51121.N,IP.B51121.N,199.2207,191.4013,189.3015,195.3100,192.4121,194.4401,193.8387 -"Appliances, furniture, and carpeting; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51122.S,IP.B51122.S,84.8087,85.0559,87.8087,82.9371,82.3495,81.1405,80.5824 -"Appliances, furniture, and carpeting; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51122.N,IP.B51122.N,77.4647,104.1827,103.7806,94.7114,101.9478,86.2742,83.4605 -"Household appliances; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B511221.S,IP.B511221.S,100.2174,101.0448,107.8373,96.2327,94.1648,93.1690,91.1053 -"Household appliances; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B511221.N,IP.B511221.N,82.9086,152.0274,149.6650,127.0683,144.2848,107.7911,96.9479 -"Carpeting and furniture; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B511222.S,IP.B511222.S,76.1105,75.9698,76.0198,75.6882,76.1182,74.7288,75.2240 -"Carpeting and furniture; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B511222.N,IP.B511222.N,74.9366,74.3765,75.2637,75.0655,75.7117,73.8966,76.5661 -"Miscellaneous durable goods; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51123.S,IP.B51123.S,107.6313,107.6009,108.8441,109.7124,108.2688,108.7431,107.7278 -"Miscellaneous durable goods; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51123.N,IP.B51123.N,108.8164,105.9633,108.2176,109.3416,108.3759,108.6585,108.7634 -"Nondurable consumer goods; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51200.S,IP.B51200.S,100.3649,100.4788,100.0527,99.1839,100.4041,101.3008,102.4939 -"Nondurable consumer goods; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51200.N,IP.B51200.N,101.8100,104.2921,101.4634,99.9218,97.8067,98.3827,102.9574 -"Nondurable nonenergy consumer goods; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51210.S,IP.B51210.S,100.6022,100.0839,100.6316,100.4611,100.3581,101.4294,102.0994 -"Nondurable nonenergy consumer goods; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51210.N,IP.B51210.N,99.2392,98.1368,100.2269,100.6554,100.5496,101.1259,103.6046 -"Foods and tobacco; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51211.S,IP.B51211.S,98.6339,97.6164,97.8803,97.7748,97.4971,98.1736,98.5943 -"Foods and tobacco; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51211.N,IP.B51211.N,95.3633,95.0269,97.9651,98.5301,98.1741,97.1253,100.5209 -"Clothing; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51212.S,IP.B51212.S,80.7178,80.3786,79.4785,78.0097,79.4976,79.1583,80.1146 -"Clothing; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51212.N,IP.B51212.N,81.2662,78.5111,79.6323,78.2406,80.5372,79.6319,80.8472 -"Chemical products; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51213.S,IP.B51213.S,109.6907,109.8055,111.0003,110.8330,111.0573,113.4507,114.8013 -"Chemical products; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51213.N,IP.B51213.N,111.9979,109.2712,110.2588,110.9180,110.9315,115.0940,115.6373 -"Paper products; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51214.S,IP.B51214.S,76.5657,78.1981,78.2504,78.1462,78.0835,78.1199,78.5759 -"Paper products; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51214.N,IP.B51214.N,75.9691,75.7380,74.3410,73.4532,75.2136,76.3364,79.4321 -"Miscellaneous nondurable goods; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51215.S,IP.B51215.S,108.7783,107.8629,109.9803,108.5503,108.0982,106.7295,105.9846 -"Miscellaneous nondurable goods; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51215.N,IP.B51215.N,109.7796,107.1144,110.0266,108.3902,107.2217,105.9554,106.7754 -"Consumer energy products; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51220.S,IP.B51220.S,98.9571,100.9100,97.6432,94.7345,99.8368,100.2118,102.9451 -"Consumer energy products; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51220.N,IP.B51220.N,108.8658,121.8230,104.5638,97.2228,89.1731,89.7455,100.5454 -"Fuels; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51221.S,IP.B51221.S,90.9881,88.6128,86.8945,88.6463,89.3855,90.5906,90.4134 -"Fuels; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51221.N,IP.B51221.N,90.6884,83.8184,83.9808,87.2813,88.8904,92.5459,93.3931 -"Residential utilities; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51222.S,IP.B51222.S,102.2363,108.6225,103.9055,96.2975,105.6641,105.1637,110.7548 -"Residential utilities; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51222.N,IP.B51222.N,121.4742,154.4973,119.9891,101.9494,84.2966,81.6328,102.1004 -"Equipment, total; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B52000.S,IP.B52000.S,98.6921,97.7837,99.0768,99.2449,98.8813,99.0521,98.8502 -"Equipment, total; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B52000.N,IP.B52000.N,98.7999,96.8520,99.6920,100.1238,99.1411,98.7906,99.5578 -"Business equipment; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B52100.S,IP.B52100.S,94.5220,93.4242,94.9085,94.9989,94.5363,94.7847,94.3673 -"Business equipment; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B52100.N,IP.B52100.N,94.4117,92.3131,95.5535,95.8679,94.8035,94.4878,95.2117 -"Transit equipment; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B52110.S,IP.B52110.S,74.0382,70.8503,73.2296,74.9394,74.3856,73.8543,74.7700 -"Transit equipment; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B52110.N,IP.B52110.N,70.4515,68.6469,75.3953,77.5723,76.0065,74.0063,76.1775 -"Business vehicles; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.G3361E.S,IP.G3361E.S,106.8848,98.6611,110.5134,117.0367,113.2433,112.1045,115.5544 -"Business vehicles; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.G3361E.N,IP.G3361E.N,94.4308,92.9934,117.5472,123.5389,118.7825,113.2879,120.3383 -"Business light vehicles; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.G33611E.S,IP.G33611E.S,104.9705,98.3949,107.3959,111.9632,113.1839,114.8913,120.4060 -"Business light vehicles; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.G33611E.N,IP.G33611E.N,91.3319,93.1404,116.2806,119.0405,118.0873,115.9418,124.8940 -"Automobile, business (NAICS = 336111pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.G336111B.S,IP.G336111B.S,104.6510,88.0546,92.7546,94.1740,91.1056,100.2079,96.3323 -"Automobile, business (NAICS = 336111pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.G336111B.N,IP.G336111B.N,90.5419,83.5907,101.4430,98.8022,96.3609,98.8991,99.2219 -"Light trucks, business (NAICS = 336112pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.G336112B.S,IP.G336112B.S,105.2612,100.8294,110.7741,116.0266,118.1680,118.3003,125.8295 -"Light trucks, business (NAICS = 336112pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.G336112B.N,IP.G336112B.N,91.6948,95.3982,119.7275,123.6546,123.0186,119.8651,130.6830 -"Information processing and related equipment; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B52120.S,IP.B52120.S,109.1165,109.9744,110.0958,110.3401,110.3274,110.7059,109.6499 -"Information processing and related equipment; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B52120.N,IP.B52120.N,111.2487,109.3486,109.3501,109.7942,109.2625,110.4005,110.9655 -"Industrial and other equipment; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B52130.S,IP.B52130.S,100.9827,100.2333,101.7519,101.0295,100.4595,101.0377,100.1897 -"Industrial and other equipment; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B52130.N,IP.B52130.N,101.7997,99.4665,102.1368,101.5376,100.5227,100.5307,100.6380 -"Industrial equipment; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B52131.S,IP.B52131.S,96.4480,95.5179,96.4597,96.3762,95.3119,96.9895,96.1632 -"Industrial equipment; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B52131.N,IP.B52131.N,97.6075,94.9143,96.7016,96.9484,95.4882,96.2990,96.1441 -"Other equipment; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B52132.S,IP.B52132.S,108.0761,107.6243,110.0822,108.3154,108.5583,107.3288,106.4481 -"Other equipment; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B52132.N,IP.B52132.N,108.3330,106.5966,110.7044,108.7199,108.4397,107.1284,107.6666 -"Oil and gas well drilling and manufactured homes; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B52200.S,IP.B52200.S,105.4839,103.9667,105.0076,105.5060,102.2974,100.6166,101.2643 -"Oil and gas well drilling and manufactured homes; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B52200.N,IP.B52200.N,103.9596,103.8926,106.2004,106.9798,104.6400,102.7519,102.3776 -"Defense and space equipment; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B52300.S,IP.B52300.S,116.9270,117.4471,117.6230,118.1252,119.5015,119.9222,120.7068 -"Defense and space equipment; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B52300.N,IP.B52300.N,118.9874,117.2914,117.7905,118.7780,118.8707,118.9309,120.3760 -"Nonindustrial supplies; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B54000.S,IP.B54000.S,100.3182,99.5342,101.0482,100.8391,100.3448,101.4054,101.9303 -"Nonindustrial supplies; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B54000.N,IP.B54000.N,99.8536,97.5177,98.0902,99.2909,98.8525,100.8911,103.8425 -"Construction supplies; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B54100.S,IP.B54100.S,100.2618,98.7984,101.2536,101.0960,99.5957,100.4590,100.3628 -"Construction supplies; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B54100.N,IP.B54100.N,97.7216,92.6783,95.8730,98.3842,99.9071,102.2846,104.2387 -"Business supplies; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B54200.S,IP.B54200.S,100.4124,99.9613,101.0136,100.7791,100.7806,101.9392,102.7717 -"Business supplies; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B54200.N,IP.B54200.N,100.9689,99.9610,99.2440,99.7999,98.3935,100.2660,103.7129 -"Non-energy business supplies; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B54210.S,IP.B54210.S,97.6655,96.8118,98.0314,98.3986,98.0557,98.8056,99.3993 -"Non-energy business supplies; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B54210.N,IP.B54210.N,97.9106,94.5389,96.4344,97.6025,97.5717,98.2743,100.6140 -"Commercial energy products; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B54220.S,IP.B54220.S,108.6969,109.4885,110.0225,107.9304,108.9961,111.4155,112.9848 -"Commercial energy products; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B54220.N,IP.B54220.N,110.2574,116.5546,107.7595,106.4197,100.7554,106.2502,113.1238 -"Materials; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53000.S,IP.B53000.S,104.9382,103.3250,104.6974,104.6410,104.5206,105.6938,106.3884 -"Materials; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53000.N,IP.B53000.N,104.3908,102.7789,104.1240,104.3257,103.3341,104.7053,107.8476 -"Materials ex. energy materials; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.Z53010.S,IP.Z53010.S,97.2561,95.6708,96.9326,97.1470,96.7634,98.0956,98.5185 -"Materials ex. energy materials; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.Z53010.N,IP.Z53010.N,96.3456,94.0134,96.7183,97.9180,97.3779,98.0487,99.6418 -"Durable goods materials; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53100.S,IP.B53100.S,98.0376,96.7920,97.5035,97.8498,97.8064,99.0445,98.9495 -"Durable goods materials; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53100.N,IP.B53100.N,97.1392,94.5466,97.2583,99.0256,98.2331,98.6744,100.1566 -"Consumer parts; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53110.S,IP.B53110.S,95.3559,92.8427,93.5150,93.7686,93.6949,94.2934,95.1442 -"Consumer parts; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53110.N,IP.B53110.N,91.0597,91.3832,97.0556,99.6307,95.8073,93.0071,94.7235 -"Equipment parts; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53120.S,IP.B53120.S,104.1075,104.0436,103.6884,104.2998,105.0604,106.8218,107.5024 -"Equipment parts; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53120.N,IP.B53120.N,105.8155,102.2123,102.3360,105.9161,103.9851,105.6706,108.7656 -"Computer and other board assemblies and parts; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53121.S,IP.B53121.S,152.2900,150.0998,148.1118,142.5836,144.5694,147.8604,145.5147 -"Computer and other board assemblies and parts; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53121.N,IP.B53121.N,154.2557,135.1843,141.0818,161.9471,142.0944,148.2772,165.4045 -"Semiconductors, printed circuit boards, and other; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53122.S,IP.B53122.S,132.1905,132.7999,132.0858,133.4604,135.4477,139.2990,140.6715 -"Semiconductors, printed circuit boards, and other; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53122.N,IP.B53122.N,137.1211,127.2350,123.4031,137.2408,128.7578,134.6884,144.0146 -"Other equipment parts; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53123.S,IP.B53123.S,96.6002,96.4841,96.2324,96.8652,97.3896,98.7548,99.3896 -"Other equipment parts; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53123.N,IP.B53123.N,97.7494,95.5889,96.1898,97.6655,97.2384,98.1195,99.8423 -"Other durable materials; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53130.S,IP.B53130.S,95.9921,94.6169,95.8351,96.0887,95.6824,96.8867,96.1219 -"Other durable materials; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53130.N,IP.B53130.N,95.0098,91.9294,94.8653,95.5240,96.2567,97.1851,97.8409 -"Basic metals; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53131.S,IP.B53131.S,88.1843,86.0478,87.7725,88.9597,87.6790,90.7516,89.6951 -"Basic metals; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53131.N,IP.B53131.N,87.9991,84.7599,89.5643,88.5736,88.7674,90.6357,90.5993 -"Miscellaneous durable materials; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53132.S,IP.B53132.S,99.8962,98.8943,99.8641,99.6579,99.6826,99.9653,99.3443 -"Miscellaneous durable materials; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53132.N,IP.B53132.N,98.5313,95.5266,97.5444,99.0166,100.0157,100.4806,101.4790 -"Nondurable goods materials; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53200.S,IP.B53200.S,96.0914,93.9718,96.1003,96.1068,95.1854,96.6675,97.9127 -"Nondurable goods materials; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53200.N,IP.B53200.N,95.1634,93.2389,95.9349,96.2398,96.0983,97.1334,98.9040 -"Textile materials; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53210.S,IP.B53210.S,74.9471,75.3019,76.5021,78.5623,78.0466,80.2188,81.8208 -"Textile materials; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53210.N,IP.B53210.N,75.5275,73.3237,76.0973,78.7936,79.2571,80.0531,82.4132 -"Paper materials; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53220.S,IP.B53220.S,81.2098,81.4090,83.3259,83.2793,83.3580,83.7115,85.5635 -"Paper materials; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53220.N,IP.B53220.N,81.4734,81.6618,84.0050,83.2738,83.5500,84.1198,85.5794 -"Chemical materials; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53230.S,IP.B53230.S,98.7164,94.6445,97.4684,97.7739,96.3906,99.0899,100.4067 -"Chemical materials; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53230.N,IP.B53230.N,97.5897,93.6454,96.9044,97.8521,97.2493,100.1076,101.8081 -"Other nondurable materials; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53240.S,IP.B53240.S,102.0019,101.5981,102.7736,102.0670,101.3247,101.2971,102.0390 -"Other nondurable materials; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53240.N,IP.B53240.N,100.5670,100.9058,102.8302,102.3486,102.6819,100.9298,102.9147 -"Containers; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53241.S,IP.B53241.S,94.3842,94.8010,96.2503,94.6431,93.6277,92.8559,93.5503 -"Containers; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53241.N,IP.B53241.N,89.3341,92.1357,94.5048,94.2951,94.7945,93.2281,96.2760 -"Miscellaneous nondurable materials; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53242.S,IP.B53242.S,105.6958,104.8738,105.9075,105.6617,105.0601,105.4118,106.1766 -"Miscellaneous nondurable materials; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53242.N,IP.B53242.N,106.0916,105.1729,106.8664,106.2471,106.4950,104.6518,106.0911 -"Energy materials; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53300.S,IP.B53300.S,117.3003,115.6644,117.2171,116.6641,117.0272,117.8927,119.0693 -"Energy materials; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53300.N,IP.B53300.N,117.4410,117.1950,116.0047,114.3675,112.5655,115.1911,121.0948 -"Primary energy; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53310.S,IP.B53310.S,119.5512,115.1931,119.6403,119.0604,119.3140,119.1342,120.0434 -"Primary energy; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53310.N,IP.B53310.N,120.4745,115.9506,120.3948,119.6139,118.5922,119.0534,120.4164 -"Converted fuel; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53320.S,IP.B53320.S,110.6347,115.1723,110.1274,109.6428,110.2531,113.5202,115.3024 -"Converted fuel; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53320.N,IP.B53320.N,109.1510,118.5684,104.5967,101.0237,97.4508,105.0422,121.4146 -"Total index; s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.B50001.S,IP.B50001.S,102.6309,101.4830,102.6045,102.4062,102.4329,103.3282,103.9941 -"Total index; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.B50001.N,IP.B50001.N,102.2236,101.7062,102.6262,102.5993,101.4902,102.2359,105.2923 -"Energy, total; s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.B50089.S,IP.B50089.S,112.0471,111.5251,111.8107,110.5842,112.0163,112.8708,114.4305 -"Energy, total; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.B50089.N,IP.B50089.N,114.6528,118.1561,112.4787,109.6214,105.9536,108.3165,115.2671 -"Consumer energy products; s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.B51220.S,IP.B51220.S,98.9571,100.9100,97.6432,94.7345,99.8368,100.2118,102.9451 -"Consumer energy products; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.B51220.N,IP.B51220.N,108.8658,121.8230,104.5638,97.2228,89.1731,89.7455,100.5454 -"Commercial energy products; s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.B54220.S,IP.B54220.S,108.6969,109.4885,110.0225,107.9304,108.9961,111.4155,112.9848 -"Commercial energy products; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.B54220.N,IP.B54220.N,110.2574,116.5546,107.7595,106.4197,100.7554,106.2502,113.1238 -"Drilling oil and gas wells (NAICS = 213111); s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.N213111.S,IP.N213111.S,109.2864,108.5309,108.0537,109.0561,105.2515,103.1317,103.7599 -"Drilling oil and gas wells (NAICS = 213111); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.N213111.N,IP.N213111.N,109.9743,109.2214,109.5304,110.4254,107.4412,105.2789,103.6925 -"Converted fuel; s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.B53320.S,IP.B53320.S,110.6347,115.1723,110.1274,109.6428,110.2531,113.5202,115.3024 -"Converted fuel; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.B53320.N,IP.B53320.N,109.1510,118.5684,104.5967,101.0237,97.4508,105.0422,121.4146 -"Primary energy; s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.B53310.S,IP.B53310.S,119.5512,115.1931,119.6403,119.0604,119.3140,119.1342,120.0434 -"Primary energy; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.B53310.N,IP.B53310.N,120.4745,115.9506,120.3948,119.6139,118.5922,119.0534,120.4164 -"Non-energy, total; s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X5001E.S,IP.X5001E.S,99.1707,97.8265,99.2125,99.3468,98.9189,99.8238,100.1970 -"Non-energy, total; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X5001E.N,IP.X5001E.N,97.8274,96.0215,99.0588,99.9437,99.6646,99.8844,101.6673 -"Computers, communications eq., and semiconductors (NAICS = 3341,3342,3344); s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.HITEK2.S,IP.HITEK2.S,147.8423,148.1202,147.6236,148.5688,149.9856,153.0475,153.2815 -"Computers, communications eq., and semiconductors (NAICS = 3341,3342,3344); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.HITEK2.N,IP.HITEK2.N,153.8011,142.7947,139.3671,150.9302,144.1060,149.9389,157.6243 -"Computer and peripheral equipment (NAICS = 3341); s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.G3341.S,IP.G3341.S,157.5085,155.6951,155.9799,159.8630,158.7809,160.4618,156.5274 -"Computer and peripheral equipment (NAICS = 3341); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.G3341.N,IP.G3341.N,161.4626,149.9214,149.6390,157.2326,157.5490,162.1041,163.5334 -"Communications equipment (NAICS = 3342); s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.G3342.S,IP.G3342.S,191.0098,192.2924,193.2007,194.1901,194.8760,195.3634,195.4042 -"Communications equipment (NAICS = 3342); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.G3342.N,IP.G3342.N,203.6896,192.4745,184.0599,185.7100,187.1163,192.9377,193.9317 -"Semiconductor and other electronic component (NAICS = 3344); s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.G3344.S,IP.G3344.S,134.3801,134.7368,133.7948,134.2706,136.2200,140.0520,140.9565 -"Semiconductor and other electronic component (NAICS = 3344); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.G3344.N,IP.G3344.N,138.9290,128.1862,125.5020,139.8558,130.1079,136.0587,146.1375 -"Non-energy ex. computers, communications eq., and semiconductors; s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X5EHTK.S,IP.X5EHTK.S,97.9551,96.5856,98.0014,98.1205,97.6607,98.5236,98.8980 -"Non-energy ex. computers, communications eq., and semiconductors; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X5EHTK.N,IP.X5EHTK.N,96.4820,94.8506,97.9960,98.6835,98.5240,98.6416,100.3122 -"Motor vehicles and parts (NAICS = 3361-3); s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.G3361T3.S,IP.G3361T3.S,108.6938,102.2729,108.1759,110.5541,109.8425,109.8267,111.5909 -"Motor vehicles and parts (NAICS = 3361-3); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.G3361T3.N,IP.G3361T3.N,99.5311,96.6322,113.4217,117.5704,112.6249,109.9166,113.5699 -"Motor vehicle (NAICS = 3361); s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.G3361.S,IP.G3361.S,121.0761,111.1536,120.3955,124.2570,122.3939,121.9182,125.1315 -"Motor vehicle (NAICS = 3361); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.G3361.N,IP.G3361.N,105.6736,105.0566,129.7317,131.7730,127.8348,122.9496,129.8374 -"Motor vehicle parts (NAICS = 3363); s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.G3363.S,IP.G3363.S,100.6156,98.2762,101.5592,102.5639,102.6565,103.0120,104.2306 -"Motor vehicle parts (NAICS = 3363); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.G3363.N,IP.G3363.N,98.0086,93.2002,102.8141,108.7272,101.6194,101.1862,103.3977 -"Non-energy ex. motor vehicles & pts., computers, communications eq., and semiconductors; s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X50EHV.S,IP.X50EHV.S,97.1347,96.1560,97.2249,97.1695,96.7291,97.6599,97.9272 -"Non-energy ex. motor vehicles & pts., computers, communications eq., and semiconductors; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X50EHV.N,IP.X50EHV.N,96.2593,94.7253,96.8209,97.2424,97.4507,97.7853,99.3038 -"Consumer goods ex. hi-tech, motor vehicles & pts., and energy; s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X51HVE.S,IP.X51HVE.S,100.4935,99.9493,100.7029,100.4119,100.0774,100.9261,101.4162 -"Consumer goods ex. hi-tech, motor vehicles & pts., and energy; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X51HVE.N,IP.X51HVE.N,98.8014,99.1875,101.2140,101.3157,101.4221,100.9761,103.0103 -"Business equipment ex. hi-tech and motor vehicles and parts; s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X52HTV.S,IP.X52HTV.S,90.1047,89.8151,90.5139,90.0462,89.7951,90.1422,89.5053 -"Business equipment ex. hi-tech and motor vehicles and parts; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X52HTV.N,IP.X52HTV.N,90.9537,89.3040,90.8550,90.5058,89.7001,89.6842,89.9399 -"Construction supplies ex. hi-tech; s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X5410H.S,IP.X5410H.S,100.0813,98.6161,101.0709,100.9121,99.4106,100.2736,100.1773 -"Construction supplies ex. hi-tech; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X5410H.N,IP.X5410H.N,97.5291,92.4965,95.7013,98.2116,99.7329,102.1051,104.0593 -"Business supplies ex. energy, motor vehicles & parts, and selected high-tech industries; s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X5421T.S,IP.X5421T.S,96.1014,95.1940,96.4952,96.8475,96.4303,97.0669,97.6556 -"Business supplies ex. energy, motor vehicles & parts, and selected high-tech industries; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X5421T.N,IP.X5421T.N,96.1716,93.0437,95.1270,95.8600,96.1495,96.6537,98.7432 -"Materials ex. energy, motor vehicles & pts., computers, communications eq., and semiconductors; s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X53EHV.S,IP.X53EHV.S,95.4008,93.8833,94.9808,95.1112,94.6264,95.9365,96.2732 -"Materials ex. energy, motor vehicles & pts., computers, communications eq., and semiconductors; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X53EHV.N,IP.X53EHV.N,94.5128,92.7404,94.8839,95.2490,95.5757,96.1727,97.4356 -"Total ex. computers, communications eq., and semiconductors; s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X50HTK.S,IP.X50HTK.S,101.7794,100.6142,101.7556,101.5420,101.5496,102.4133,103.0836 -"Total ex. computers, communications eq., and semiconductors; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X50HTK.N,IP.X50HTK.N,101.2846,100.9138,101.8918,101.7054,100.6772,101.3517,104.3382 -"Manufacturing ex. computers, communications eq., and semiconductors; s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X4HTK2.S,IP.X4HTK2.S,98.0453,96.7313,97.9868,98.1655,97.6306,98.5960,98.9871 -"Manufacturing ex. computers, communications eq., and semiconductors; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X4HTK2.N,IP.X4HTK2.N,96.7301,95.1534,98.2007,98.8836,98.4699,98.6794,100.3455 -"Durable mfg. ex. computers, communications eq., and semiconductors; s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X5HTK2.S,IP.X5HTK2.S,98.1802,96.8749,98.3296,98.4341,97.9128,98.5105,98.5098 -"Durable mfg. ex. computers, communications eq., and semiconductors; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X5HTK2.N,IP.X5HTK2.N,96.4125,95.5779,99.4907,100.1009,99.3470,98.5944,99.8064 -"Total ex. motor vehicles and parts; s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X50001.S,IP.X50001.S,102.3363,101.4873,102.3381,101.9937,102.0622,103.0094,103.6137 -"Total ex. motor vehicles and parts; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X50001.N,IP.X50001.N,102.4286,102.0456,102.0697,101.8073,100.9138,101.8541,104.8786 -"Manufacturing ex. motor vehicles and parts; s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.XXX001.S,IP.XXX001.S,98.5645,97.6541,98.5370,98.5678,98.0805,99.1613,99.4494 -"Manufacturing ex. motor vehicles and parts; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.XXX001.N,IP.XXX001.N,97.9659,96.3025,98.2258,98.8603,98.6589,99.1893,100.8275 -"Durable manufacturing ex. motor vehicles & parts; s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X005MV.S,IP.X005MV.S,99.2658,98.8478,99.5106,99.2815,98.8664,99.6687,99.3918 -"Durable manufacturing ex. motor vehicles & parts; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X005MV.N,IP.X005MV.N,99.0152,98.0865,99.6447,100.1391,99.8066,99.6323,100.7241 -"Total ex. selected high-tech. and motor vehicles & pts.; s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X5VHT2.S,IP.X5VHT2.S,101.4319,100.5684,101.4368,101.0745,101.1234,102.0378,102.6459 -"Total ex. selected high-tech. and motor vehicles & pts.; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X5VHT2.N,IP.X5VHT2.N,101.4380,101.2117,101.2862,100.8522,100.0469,100.9144,103.8644 -"Manufacturing ex. hi-tech and motor vehicles & pts.; s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X4HTMV.S,IP.X4HTMV.S,97.2688,96.3388,97.2449,97.2582,96.7365,97.7758,98.0639 -"Manufacturing ex. hi-tech and motor vehicles & pts.; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X4HTMV.N,IP.X4HTMV.N,96.5463,95.0682,97.0870,97.5107,97.4360,97.8639,99.3818 -"Non-energy materials for finished goods producers; s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.B53810.S,IP.B53810.S,96.2884,95.4977,95.9556,96.3880,96.7060,97.8536,98.8429 -"Non-energy materials for finished goods producers; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.B53810.N,IP.B53810.N,95.7471,94.1583,96.5910,99.0272,96.9776,96.9774,99.3076 -"Non-energy materials for intermediate goods producers; s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.B53820.S,IP.B53820.S,97.9410,95.9300,97.6220,97.7207,96.9627,98.3955,98.5174 -"Non-energy materials for intermediate goods producers; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.B53820.N,IP.B53820.N,96.8323,94.1002,96.9547,97.4977,97.7613,98.7910,99.9938 -"Finished processing--gross value; s.a. IP","Index:_2017_100","1","NA",G17/IP_GROSS_VALUE_STAGE_OF_PROCESS_GROUPS/IP.TB56400.S,IP.TB56400.S,104.7276,102.7174,104.6373,104.6724,104.3663,104.9895,105.3362 -"Finished processing--gross value; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_GROSS_VALUE_STAGE_OF_PROCESS_GROUPS/IP.TB56400.N,IP.TB56400.N,101.8115,100.7285,106.0146,106.1676,105.6616,104.8709,107.0005 -"Semifinished processing--gross value; s.a. IP","Index:_2017_100","1","NA",G17/IP_GROSS_VALUE_STAGE_OF_PROCESS_GROUPS/IP.TB56300.S,IP.TB56300.S,100.3432,100.4750,101.4038,100.5604,101.0513,101.9587,103.1270 -"Semifinished processing--gross value; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_GROSS_VALUE_STAGE_OF_PROCESS_GROUPS/IP.TB56300.N,IP.TB56300.N,99.0692,99.8533,99.2756,100.1190,98.2340,99.9667,105.3745 -"Primary processing--gross value; s.a. IP","Index:_2017_100","1","NA",G17/IP_GROSS_VALUE_STAGE_OF_PROCESS_GROUPS/IP.TB56200.S,IP.TB56200.S,95.3582,95.0545,94.5017,94.7440,94.3741,96.1919,96.9368 -"Primary processing--gross value; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_GROSS_VALUE_STAGE_OF_PROCESS_GROUPS/IP.TB56200.N,IP.TB56200.N,97.1371,98.8302,96.0449,94.9865,92.7215,94.4396,97.7695 -"Crude processing--gross value; s.a. IP","Index:_2017_100","1","NA",G17/IP_GROSS_VALUE_STAGE_OF_PROCESS_GROUPS/IP.TB56100.S,IP.TB56100.S,107.2760,102.4171,105.7440,106.1230,105.1722,106.0357,106.9514 -"Crude processing--gross value; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_GROSS_VALUE_STAGE_OF_PROCESS_GROUPS/IP.TB56100.N,IP.TB56100.N,107.6120,101.9410,105.7173,106.3584,105.1326,105.9727,106.9650 -"Total motor vehicle assemblies; s.a.","Number","1000000","NA",G17/MVA/MVA.TOTASS.S,MVA.TOTASS.S,11.0043,10.1696,11.0895,11.5132,11.1467,11.1248,11.6341 -"Total motor vehicle assemblies; n.s.a.","Number","1000000","NA",G17/MVA/MVA.TOTASS.N,MVA.TOTASS.N,9.2178,10.1081,11.4608,11.5979,11.7845,11.8580,10.9494 -"Auto assemblies; s.a.","Number","1000000","NA",G17/MVA/MVA.AUTOAS.S,MVA.AUTOAS.S,1.7315,1.4788,1.5828,1.6639,1.4686,1.6250,1.6016 -"Auto assemblies; n.s.a.","Number","1000000","NA",G17/MVA/MVA.AUTOAS.N,MVA.AUTOAS.N,1.4426,1.4728,1.6431,1.5992,1.6053,1.7111,1.5361 -"Truck assemblies; s.a.","Number","1000000","NA",G17/MVA/MVA.TRUCKS.S,MVA.TRUCKS.S,9.2728,8.6909,9.5067,9.8492,9.6781,9.4997,10.0325 -"Truck assemblies; n.s.a.","Number","1000000","NA",G17/MVA/MVA.TRUCKS.N,MVA.TRUCKS.N,7.7752,8.6352,9.8177,9.9987,10.1792,10.1469,9.4133 -"Light truck assemblies; s.a.","Number","1000000","NA",G17/MVA/MVA.LTTRCK.S,MVA.LTTRCK.S,8.9261,8.3867,9.1370,9.4448,9.3334,9.1886,9.7313 -"Light truck assemblies; n.s.a.","Number","1000000","NA",G17/MVA/MVA.LTTRCK.N,MVA.LTTRCK.N,7.4673,8.3364,9.4588,9.5972,9.8092,9.8148,9.1223 -"Heavy and medium truck assemblies; s.a.","Number","1000000","NA",G17/MVA/MVA.HMTRCK.S,MVA.HMTRCK.S,0.3467,0.3042,0.3697,0.4045,0.3447,0.3111,0.3012 -"Heavy and medium truck assemblies; n.s.a.","Number","1000000","NA",G17/MVA/MVA.HMTRCK.N,MVA.HMTRCK.N,0.3080,0.2989,0.3589,0.4015,0.3700,0.3322,0.2910 -"Autos and light truck assemblies; s.a.","Number","1000000","NA",G17/MVA/MVA.AUTLTT.S,MVA.AUTLTT.S,10.6576,9.8654,10.7198,11.1087,10.8020,10.8136,11.3329 -"Autos and light truck assemblies; n.s.a.","Number","1000000","NA",G17/MVA/MVA.AUTLTT.N,MVA.AUTLTT.N,8.9099,9.8092,11.1019,11.1964,11.4145,11.5258,10.6584 -"Diffusion index of industrial production, one month earlier; s.a. DIFF","Percentage","1","NA",G17/DIFF/DIFF.DIFFUSION_1.S,DIFF.DIFFUSION_1.S,49.1582,38.3838,61.2795,58.0808,44.6128,64.3098, -"Diffusion index of industrial production, three months earlier; s.a. DIFF","Percentage","1","NA",G17/DIFF/DIFF.DIFFUSION_3.S,DIFF.DIFFUSION_3.S,48.8215,41.0774,51.5152,54.8822,58.7542,58.2492, -"Diffusion index of industrial production, six months earlier; s.a. DIFF","Percentage","1","NA",G17/DIFF/DIFF.DIFFUSION_6.S,DIFF.DIFFUSION_6.S,47.8114,35.6902,49.8316,49.8316,47.1380,54.2088, -"Total index; s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.B50001.S,CAP.B50001.S,131.3400,131.4640,131.5817,131.6950,131.8059,131.9192,132.0387 -"Manufacturing (SIC); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.B00004.S,CAP.B00004.S,127.9617,128.0940,128.2274,128.3620,128.4973,128.6346,128.7744 -"Manufacturing (NAICS); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.GMF.S,CAP.GMF.S,128.7252,128.8715,129.0188,129.1672,129.3164,129.4674,129.6210 -"Durable manufacturing (NAICS); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.GMFD.S,CAP.GMFD.S,132.1061,132.2620,132.4268,132.5999,132.7796,132.9653,133.1561 -"Wood product (NAICS = 321); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G321.S,CAP.G321.S,123.4772,123.5555,123.6292,123.6987,123.7640,123.8254,123.8833 -"Nonmetallic mineral product (NAICS = 327); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G327.S,CAP.G327.S,128.8548,128.8405,128.8162,128.7828,128.7413,128.6929,128.6386 -"Primary metal (NAICS = 331); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G331.S,CAP.G331.S,133.3878,133.4384,133.5270,133.6527,133.8129,134.0026,134.2174 -"Fabricated metal product (NAICS = 332); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G332.S,CAP.G332.S,129.5421,129.5411,129.5346,129.5228,129.5063,129.4857,129.4620 -"Machinery (NAICS = 333); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G333.S,CAP.G333.S,121.2030,121.2418,121.2975,121.3685,121.4522,121.5457,121.6462 -"Computer and electronic product (NAICS = 334); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G334.S,CAP.G334.S,153.2125,153.9360,154.6851,155.4581,156.2498,157.0595,157.8853 -"Electrical equipment, appliance, and component (NAICS = 335); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G335.S,CAP.G335.S,129.6564,129.7616,129.8753,129.9964,130.1234,130.2547,130.3890 -"Motor vehicles and parts (NAICS = 3361-3); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G3361T3.S,CAP.G3361T3.S,146.5469,146.7671,146.9929,147.2258,147.4658,147.7166,147.9805 -"Aerospace and miscellaneous transportation eq. (NAICS = 3364-9); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G3364T9.S,CAP.G3364T9.S,126.3523,126.3681,126.3870,126.4081,126.4303,126.4520,126.4720 -"Furniture and related product (NAICS = 337); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G337.S,CAP.G337.S,112.1643,111.9127,111.6424,111.3555,111.0553,110.7437,110.4227 -"Miscellaneous (NAICS = 339); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G339.S,CAP.G339.S,133.1759,133.7933,134.4238,135.0667,135.7185,136.3806,137.0527 -"Nondurable manufacturing (NAICS); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.GMFN.S,CAP.GMFN.S,125.3661,125.5105,125.6484,125.7807,125.9079,126.0326,126.1567 -"Food, beverage, and tobacco (NAICS = 311,2); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G311A2.S,CAP.G311A2.S,124.5484,124.5199,124.4892,124.4572,124.4247,124.3923,124.3607 -"Textiles and products (NAICS = 313,4); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G313A4.S,CAP.G313A4.S,115.4985,115.1883,114.8766,114.5632,114.2491,113.9320,113.6108 -"Apparel and leather goods (NAICS = 315,6); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G315A6.S,CAP.G315A6.S,128.1375,128.1182,128.0677,127.9879,127.8815,127.7523,127.6034 -"Paper (NAICS = 322); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G322.S,CAP.G322.S,105.6613,105.6021,105.5513,105.5082,105.4721,105.4414,105.4147 -"Printing and related support activities (NAICS = 323); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G323.S,CAP.G323.S,111.8182,111.8880,111.9665,112.0529,112.1457,112.2439,112.3467 -"Petroleum and coal products (NAICS = 324); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G324.S,CAP.G324.S,102.7416,102.8437,102.9095,102.9412,102.9417,102.9157,102.8674 -"Chemical (NAICS = 325); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G325.S,CAP.G325.S,136.2928,136.6570,137.0260,137.3992,137.7746,138.1538,138.5371 -"Plastics and rubber products (NAICS = 326); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G326.S,CAP.G326.S,134.3243,134.7517,135.1619,135.5547,135.9294,136.2902,136.6401 -"Other manufacturing; s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.GMFO.S,CAP.GMFO.S,100.5249,100.1289,99.7367,99.3484,98.9651,98.5841,98.2040 -"Mining (NAICS = 21); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G21.S,CAP.G21.S,134.2614,134.2058,134.1197,134.0079,133.8768,133.7382,133.6014 -"Electric and gas utilities (NAICS = 2211,2); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G2211A2.S,CAP.G2211A2.S,146.0951,146.5040,146.9153,147.3298,147.7467,148.1697,148.6013 -"Computers, communications eq., and semiconductors (NAICS = 3341,3342,3344); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.HITEK2.S,CAP.HITEK2.S,184.4333,186.1752,187.9470,189.7460,191.5621,193.3988,195.2566 -"Computer and peripheral equipment (NAICS = 3341); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G3341.S,CAP.G3341.S,207.9181,208.3291,208.7017,209.0385,209.3418,209.6198,209.8787 -"Communications equipment (NAICS = 3342); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G3342.S,CAP.G3342.S,254.0119,256.4305,258.8734,261.3387,263.8157,266.3171,268.8485 -"Total ex. computers, communications eq., and semiconductors; s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.X50HTK.S,CAP.X50HTK.S,130.3355,130.4368,130.5314,130.6214,130.7088,130.7984,130.8942 -"Manufacturing ex. computers, communications eq., and semiconductors; s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.X4HTK2.S,CAP.X4HTK2.S,126.5597,126.6626,126.7663,126.8708,126.9759,127.0827,127.1918 -"Crude processing (capacity); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.B5610C.S,CAP.B5610C.S,128.8364,128.7944,128.7324,128.6544,128.5656,128.4749,128.3895 -"Primary & semifinished processing (capacity); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.B562A3C.S,CAP.B562A3C.S,128.5539,128.7188,128.8821,129.0443,129.2054,129.3673,129.5312 -"Finished processing (capacity); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.B5640C.S,CAP.B5640C.S,134.7039,134.8945,135.0886,135.2858,135.4853,135.6883,135.8954 -"Iron and steel products (NAICS = 3311,2); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G3311A2.S,CAP.G3311A2.S,130.6377,130.7534,130.8819,131.0235,131.1773,131.3421,131.5162 -"Transportation equipment (NAICS = 336); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G336.S,CAP.G336.S,137.1414,137.2712,137.4056,137.5447,137.6884,137.8382,137.9950 -"Automobile and light duty motor vehicle (NAICS = 33611); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G33611.S,CAP.G33611.S,164.9598,165.2365,165.5300,165.8428,166.1760,166.5340,166.9197 -"Food (NAICS = 311); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G311.S,CAP.G311.S,120.5215,120.4686,120.4148,120.3598,120.3039,120.2469,120.1890 -"Beverage and tobacco product (NAICS = 312); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G312.S,CAP.G312.S,137.1571,137.2245,137.2903,137.3566,137.4247,137.4942,137.5657 -"Textile mills (NAICS = 313); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G313.S,CAP.G313.S,113.1528,112.7046,112.2521,111.7958,111.3379,110.8765,110.4110 -"Textile product mills (NAICS = 314); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G314.S,CAP.G314.S,117.6380,117.4624,117.2850,117.1058,116.9256,116.7439,116.5605 -"Apparel (NAICS = 315); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G315.S,CAP.G315.S,120.3936,120.1604,119.9208,119.6754,119.4261,119.1726,118.9154 -"Leather and allied product (NAICS = 316); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G316.S,CAP.G316.S,147.5852,147.9977,148.3140,148.5415,148.6886,148.7726,148.8074 -"Plastics material and resin (NAICS = 325211); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.N325211.S,CAP.N325211.S,111.0182,111.1692,111.3509,111.5620,111.7994,112.0592,112.3377 -"Synthetic rubber (NAICS = 325212); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G325212.S,CAP.G325212.S,148.4654,148.3795,148.2894,148.1952,148.0977,147.9972,147.8939 -"Artificial and synthetic fibers and filaments (NAICS = 32522); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G32522.S,CAP.G32522.S,81.2370,80.6514,80.0697,79.4899,78.9129,78.3381,77.7652 -"Oil and gas extraction (NAICS = 211); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G211.S,CAP.G211.S,147.4789,147.9092,148.3009,148.6578,148.9831,149.2870,149.5770 -"Mining (except oil and gas) (NAICS = 212); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G212.S,CAP.G212.S,124.8299,124.8116,124.8195,124.8509,124.9017,124.9640,125.0313 -"Coal mining (NAICS = 2121); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.N2121.S,CAP.N2121.S,105.2927,105.0149,104.7695,104.5556,104.3715,104.2107,104.0681 -"Metal ore mining (NAICS = 2122); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G2122.S,CAP.G2122.S,150.4960,150.7247,151.0086,151.3429,151.7196,152.1242,152.5449 -"Nonmetallic mineral mining and quarrying (NAICS = 2123); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G2123.S,CAP.G2123.S,118.6562,118.5997,118.5286,118.4436,118.3460,118.2378,118.1206 -"Support activities for mining (NAICS = 213); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G213.S,CAP.G213.S,106.9914,105.9700,104.9326,103.8812,102.8228,101.7562,100.6833 -"Electric power generation, transmission, and distribution (NAICS = 2211); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G2211.S,CAP.G2211.S,146.5681,147.0439,147.5266,148.0152,148.5072,149.0041,149.5065 -"Natural gas distribution (NAICS = 2212); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G2212.S,CAP.G2212.S,138.5246,138.5541,138.5812,138.6060,138.6287,138.6499,138.6699 -"Manufacturing ex. hi-tech and motor vehicles & pts.; s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.X4HTMV.S,CAP.X4HTMV.S,125.0892,125.1859,125.2830,125.3807,125.4785,125.5772,125.6773 -"Total index; s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.B50001.S,CAPUTL.B50001.S,78.1414,77.1945,77.9778,77.7601,77.7150,78.3268,78.7603 -"Manufacturing (SIC); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.B00004.S,CAPUTL.B00004.S,77.5511,76.4637,77.3425,77.4115,76.9388,77.6380,77.8564 -"Manufacturing (NAICS); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.GMF.S,CAPUTL.GMF.S,77.5490,76.3931,77.2760,77.3431,76.8523,77.5478,77.7494 -"Durable manufacturing (NAICS); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.GMFD.S,CAPUTL.GMFD.S,76.1607,75.1299,76.0751,76.0831,75.6386,76.0518,75.9403 -"Wood product (NAICS = 321); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G321.S,CAPUTL.G321.S,75.4908,74.6167,75.0931,75.7205,74.6118,76.1486,76.3647 -"Nonmetallic mineral product (NAICS = 327); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G327.S,CAPUTL.G327.S,80.5586,77.9875,78.7897,77.4775,77.3366,76.9170,77.9121 -"Primary metal (NAICS = 331); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G331.S,CAPUTL.G331.S,71.1088,69.5875,69.8140,70.1523,68.8408,71.2486,70.4550 -"Fabricated metal product (NAICS = 332); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G332.S,CAPUTL.G332.S,76.1592,76.7645,77.2322,76.8931,76.3742,77.1609,76.1801 -"Machinery (NAICS = 333); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G333.S,CAPUTL.G333.S,81.5299,80.8845,82.4637,81.1866,80.7374,81.3052,80.6705 -"Computer and electronic product (NAICS = 334); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G334.S,CAPUTL.G334.S,75.5723,75.7587,75.2815,75.1169,74.9408,75.3127,74.5412 -"Electrical equipment, appliance, and component (NAICS = 335); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G335.S,CAPUTL.G335.S,79.9499,79.7051,79.0233,80.1072,78.9496,79.7216,80.8400 -"Motor vehicles and parts (NAICS = 3361-3); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G3361T3.S,CAPUTL.G3361T3.S,74.1699,69.6838,73.5926,75.0915,74.4868,74.3496,75.4092 -"Aerospace and miscellaneous transportation eq. (NAICS = 3364-9); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G3364T9.S,CAPUTL.G3364T9.S,70.1430,70.4149,69.7676,70.1492,71.2663,71.7172,72.6106 -"Furniture and related product (NAICS = 337); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G337.S,CAPUTL.G337.S,69.0101,68.4628,69.5521,69.0752,70.0145,68.7773,69.9824 -"Miscellaneous (NAICS = 339); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G339.S,CAPUTL.G339.S,80.9254,80.1192,81.2495,80.8036,79.4325,78.0576,76.3320 -"Nondurable manufacturing (NAICS); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.GMFN.S,CAPUTL.GMFN.S,79.0257,77.7309,78.5417,78.6674,78.1216,79.1168,79.6525 -"Food, beverage, and tobacco (NAICS = 311,2); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G311A2.S,CAPUTL.G311A2.S,80.3986,79.5456,79.8675,79.7642,79.4710,80.1356,80.5166 -"Textiles and products (NAICS = 313,4); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G313A4.S,CAPUTL.G313A4.S,67.0235,67.2135,68.5384,68.6982,68.4316,70.2985,71.5415 -"Apparel and leather goods (NAICS = 315,6); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G315A6.S,CAPUTL.G315A6.S,64.4851,64.2607,63.6114,62.6429,63.6173,63.5344,64.5550 -"Paper (NAICS = 322); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G322.S,CAPUTL.G322.S,81.4513,81.2406,82.6414,82.4107,82.4943,82.9364,84.1688 -"Printing and related support activities (NAICS = 323); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G323.S,CAPUTL.G323.S,72.0950,73.0195,74.0638,74.7174,75.4727,75.0598,76.9357 -"Petroleum and coal products (NAICS = 324); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G324.S,CAPUTL.G324.S,91.1833,89.0942,90.0629,91.8930,88.3161,91.5063,91.9689 -"Chemical (NAICS = 325); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G325.S,CAPUTL.G325.S,76.0882,74.0682,75.3828,75.3044,74.8988,76.2004,76.9090 -"Plastics and rubber products (NAICS = 326); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G326.S,CAPUTL.G326.S,76.9626,75.6483,75.7474,75.7319,75.6643,75.4412,74.9274 -"Other manufacturing; s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.GMFO.S,CAPUTL.GMFO.S,77.6139,79.8621,80.5570,80.7362,81.1725,82.0721,83.1501 -"Mining (NAICS = 21); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G21.S,CAPUTL.G21.S,89.7455,85.9142,89.6267,89.2264,89.4819,88.9540,89.2950 -"Electric and gas utilities (NAICS = 2211,2); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G2211A2.S,CAPUTL.G2211A2.S,70.5536,73.3587,70.4931,68.5743,70.8435,72.0047,73.8274 -"Computers, communications eq., and semiconductors (NAICS = 3341,3342,3344); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.HITEK2.S,CAPUTL.HITEK2.S,80.1603,79.5596,78.5453,78.2988,78.2961,79.1357,78.5026 -"Computer and peripheral equipment (NAICS = 3341); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G3341.S,CAPUTL.G3341.S,75.7551,74.7352,74.7382,76.4754,75.8477,76.5490,74.5799 -"Communications equipment (NAICS = 3342); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G3342.S,CAPUTL.G3342.S,75.1972,74.9881,74.6314,74.3059,73.8682,73.3575,72.6819 -"Total ex. computers, communications eq., and semiconductors; s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.X50HTK.S,CAPUTL.X50HTK.S,78.0903,77.1364,77.9548,77.7376,77.6915,78.2986,78.7534 -"Manufacturing ex. computers, communications eq., and semiconductors; s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.X4HTK2.S,CAPUTL.X4HTK2.S,77.4696,76.3693,77.2972,77.3744,76.8891,77.5841,77.8251 -"Crude processing (capacity); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.B5610C.S,CAPUTL.B5610C.S,87.5777,83.8773,86.7791,86.8717,86.6028,86.8994,87.5714 -"Primary & semifinished processing (capacity); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.B562A3C.S,CAPUTL.B562A3C.S,76.4578,76.4650,76.4769,76.0249,76.1875,77.0667,77.6616 -"Finished processing (capacity); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.B5640C.S,CAPUTL.B5640C.S,76.2946,75.3055,76.1227,76.0363,75.7978,76.1831,76.2893 -"Iron and steel products (NAICS = 3311,2); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G3311A2.S,CAPUTL.G3311A2.S,73.4967,71.2436,71.7282,71.5015,70.0158,70.6533,71.0002 -"Transportation equipment (NAICS = 336); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G336.S,CAPUTL.G336.S,72.6641,69.9550,72.1708,73.2587,73.2986,73.3842,74.3866 -"Automobile and light duty motor vehicle (NAICS = 33611); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G33611.S,CAPUTL.G33611.S,73.8866,67.8966,72.8817,74.7064,74.1828,74.1440,76.1673 -"Food (NAICS = 311); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G311.S,CAPUTL.G311.S,84.9592,84.2962,84.7508,84.2275,84.4663,85.0356,84.8254 -"Beverage and tobacco product (NAICS = 312); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G312.S,CAPUTL.G312.S,67.9973,66.6320,66.5938,67.6130,65.8932,66.8070,68.7573 -"Textile mills (NAICS = 313); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G313.S,CAPUTL.G313.S,64.1544,64.8113,65.9421,68.7916,68.5685,70.6791,72.4214 -"Textile product mills (NAICS = 314); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G314.S,CAPUTL.G314.S,70.2499,69.9290,71.4800,68.6968,68.4015,70.0263,70.7506 -"Apparel (NAICS = 315); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G315.S,CAPUTL.G315.S,59.3945,58.9624,58.2216,56.6596,59.3319,58.9682,59.0710 -"Leather and allied product (NAICS = 316); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G316.S,CAPUTL.G316.S,73.5700,73.7018,73.2047,73.3013,71.2161,71.6427,74.3075 -"Plastics material and resin (NAICS = 325211); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.N325211.S,CAPUTL.N325211.S,83.9341,78.0779,84.5545,82.4720,80.6081,82.5893, -"Synthetic rubber (NAICS = 325212); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G325212.S,CAPUTL.G325212.S,52.8954,51.8590,52.2469,53.0614,49.9837,50.7602,50.8834 -"Artificial and synthetic fibers and filaments (NAICS = 32522); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G32522.S,CAPUTL.G32522.S,77.9836,76.9003,78.4523,80.5912,76.8840,77.7881,78.4870 -"Oil and gas extraction (NAICS = 211); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G211.S,CAPUTL.G211.S,97.5887,93.2550,97.0953,96.2862,97.3070,97.0333,97.4293 -"Mining (except oil and gas) (NAICS = 212); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G212.S,CAPUTL.G212.S,71.5145,65.5478,70.2449,69.7040,68.3845,66.4837,66.0275 -"Coal mining (NAICS = 2121); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.N2121.S,CAPUTL.N2121.S,72.8155,62.4264,67.3465,64.4412,57.4538,55.8162, -"Metal ore mining (NAICS = 2122); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G2122.S,CAPUTL.G2122.S,55.6185,53.0835,53.9730,56.3667,54.9601,56.3962,55.9966 -"Nonmetallic mineral mining and quarrying (NAICS = 2123); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G2123.S,CAPUTL.G2123.S,88.7406,82.1392,91.1695,89.0074,92.1171,86.1074,86.0879 -"Support activities for mining (NAICS = 213); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G213.S,CAPUTL.G213.S,79.7310,80.0364,81.3343,82.1798,80.5299,80.0324,80.5288 -"Electric power generation, transmission, and distribution (NAICS = 2211); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G2211.S,CAPUTL.G2211.S,70.3358,72.8668,70.3337,68.7119,70.5077,72.0327,73.9266 -"Natural gas distribution (NAICS = 2212); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G2212.S,CAPUTL.G2212.S,73.7538,78.6121,73.1421,68.8723,74.7245,73.0406,74.2847 -"Manufacturing ex. hi-tech and motor vehicles & pts.; s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.X4HTMV.S,CAPUTL.X4HTMV.S,77.7595,76.9566,77.6201,77.5703,77.0941,77.8611,78.0283 -"Final products and nonindustrial supplies--gross value; s.a. GVIP","Currency:_Base_2012","1e+09","USD",G17/GVIP/GVIP.T50030.S,GVIP.T50030.S,3990.5007,3942.2917,3983.9230,3976.7548,3981.8338,4014.6174,4043.5625 -"Final products--gross value; s.a. GVIP","Currency:_Base_2012","1e+09","USD",G17/GVIP/GVIP.T50002.S,GVIP.T50002.S,2981.5060,2940.3476,2967.3285,2961.4564,2974.1197,2991.5829,3014.2088 -"Consumer goods--gross value; s.a. GVIP","Currency:_Base_2012","1e+09","USD",G17/GVIP/GVIP.T51000.S,GVIP.T51000.S,2197.9398,2168.7720,2180.9802,2171.8302,2188.3914,2204.2398,2227.5510 -"Durable consumer goods--gross value; s.a. GVIP","Currency:_Base_2012","1e+09","USD",G17/GVIP/GVIP.T51100.S,GVIP.T51100.S,580.7503,551.6553,574.3983,579.4876,573.7042,574.8704,579.0605 -"Automotive products--gross value; s.a. GVIP","Currency:_Base_2012","1e+09","USD",G17/GVIP/GVIP.T51110.S,GVIP.T51110.S,424.5557,394.0180,414.5127,422.7417,418.6795,420.4739,426.5437 -"Other durable goods--gross value; s.a. GVIP","Currency:_Base_2012","1e+09","USD",G17/GVIP/GVIP.T51120.S,GVIP.T51120.S,157.9036,158.0808,160.8967,158.3646,156.6481,156.1503,154.6935 -"Nondurable consumer goods--gross value; s.a. GVIP","Currency:_Base_2012","1e+09","USD",G17/GVIP/GVIP.T51200.S,GVIP.T51200.S,1619.8480,1617.6958,1609.0328,1595.4935,1616.8987,1631.3156,1650.2799 -"Equipment, total--gross value; s.a. GVIP","Currency:_Base_2012","1e+09","USD",G17/GVIP/GVIP.T52000.S,GVIP.T52000.S,788.6803,776.5206,791.9772,795.6414,791.1769,792.5820,791.4066 -"Business equipment and defense and space equipment--gross value; s.a. GVIP","Currency:_Base_2012","1e+09","USD",G17/GVIP/GVIP.T521A3.S,GVIP.T521A3.S,764.7849,753.1045,768.0911,771.7245,767.9788,769.7522,768.4010 -"Business equipment--gross value; s.a. GVIP","Currency:_Base_2012","1e+09","USD",G17/GVIP/GVIP.T52100.S,GVIP.T52100.S,625.5576,613.5226,628.1761,631.1609,626.0599,627.2776,625.1692 -"Defense and space equipment--gross value; s.a. GVIP","Currency:_Base_2012","1e+09","USD",G17/GVIP/GVIP.T52300.S,GVIP.T52300.S,139.3475,140.1570,140.0483,140.6949,142.4326,143.0326,143.9807 -"Nonindustrial supplies--gross value; s.a. GVIP","Currency:_Base_2012","1e+09","USD",G17/GVIP/GVIP.T54000.S,GVIP.T54000.S,1009.4112,1002.2122,1016.7541,1015.4436,1008.0906,1023.2357,1029.5825 -"Construction supplies--gross value; s.a. GVIP","Currency:_Base_2012","1e+09","USD",G17/GVIP/GVIP.T54100.S,GVIP.T54100.S,277.3935,274.1426,280.3562,280.5292,275.1259,278.7577,278.5442 -"Business supplies--gross value; s.a. GVIP","Currency:_Base_2012","1e+09","USD",G17/GVIP/GVIP.T54200.S,GVIP.T54200.S,732.6449,728.8971,736.8723,735.2996,733.9137,745.5267,752.4291 -"Commercial energy products--gross value; s.a. GVIP","Currency:_Base_2012","1e+09","USD",G17/GVIP/GVIP.T54220.S,GVIP.T54220.S,261.3458,263.0556,264.9510,261.6858,262.9290,270.2698,274.4536 -"Total index; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B50001.S,RIW.B50001.S,100.0000,100.0000,100.0000,100.0000,100.0000,100.0000,100.0000 -"Final products and nonindustrial supplies; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B50030.S,RIW.B50030.S,54.8160,54.9742,54.8418,54.7454,54.7752,54.6297,54.5917 -"Consumer goods; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B51000.S,RIW.B51000.S,27.8693,27.9707,27.7692,27.6540,27.8295,27.7537,27.8508 -"Durable consumer goods; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B51100.S,RIW.B51100.S,6.2560,6.0988,6.2384,6.2779,6.2060,6.1360,6.1241 -"Automotive products; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B51110.S,RIW.B51110.S,3.4978,3.3036,3.4233,3.4928,3.4517,3.4101,3.4403 -"Computers, video and audio equipment; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B51121.S,RIW.B51121.S,0.1479,0.1507,0.1472,0.1492,0.1466,0.1446,0.1395 -"Appliances, furniture, and carpeting; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B51122.S,RIW.B51122.S,0.9086,0.9248,0.9482,0.9000,0.8960,0.8777,0.8687 -"Miscellaneous durable goods; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B51123.S,RIW.B51123.S,1.7017,1.7197,1.7197,1.7359,1.7117,1.7035,1.6757 -"Nondurable consumer goods; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B51200.S,RIW.B51200.S,21.6133,21.8719,21.5308,21.3761,21.6235,21.6178,21.7267 -"Nondurable nonenergy consumer goods; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B51210.S,RIW.B51210.S,16.1538,16.2588,16.1746,16.1852,16.1709,16.2082,16.2118 -"Foods and tobacco; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B51211.S,RIW.B51211.S,9.7589,9.7759,9.7029,9.7199,9.6985,9.6896,9.6750 -"Clothing; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B51212.S,RIW.B51212.S,0.1577,0.1590,0.1557,0.1533,0.1564,0.1546,0.1555 -"Chemical products; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B51213.S,RIW.B51213.S,5.0766,5.1362,5.1319,5.1308,5.1364,5.1983,5.2208 -"Paper products; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B51214.S,RIW.B51214.S,0.7588,0.7848,0.7778,0.7792,0.7794,0.7740,0.7742 -"Consumer energy products; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B51220.S,RIW.B51220.S,5.4595,5.6132,5.3562,5.1909,5.4526,5.4096,5.5149 -"Business equipment; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B52100.S,RIW.B52100.S,8.7796,8.7760,8.8177,8.8432,8.7976,8.7442,8.6469 -"Transit equipment; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B52110.S,RIW.B52110.S,1.8016,1.7420,1.7792,1.8226,1.8070,1.7769,1.7849 -"Information processing and related equipment; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B52120.S,RIW.B52120.S,1.7926,1.8256,1.8061,1.8121,1.8099,1.7989,1.7675 -"Industrial and other equipment; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B52130.S,RIW.B52130.S,5.1854,5.2084,5.2324,5.2085,5.1807,5.1685,5.0945 -"Defense and space equipment; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B52300.S,RIW.B52300.S,1.7921,1.8188,1.7999,1.8094,1.8283,1.8172,1.8139 -"Construction supplies; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B54100.S,RIW.B54100.S,5.1744,5.1569,5.2274,5.2292,5.1504,5.1499,5.1135 -"Business supplies; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B54200.S,RIW.B54200.S,10.5602,10.6150,10.5927,10.5720,10.5527,10.5647,10.5677 -"Materials; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B53000.S,RIW.B53000.S,45.1840,45.0258,45.1582,45.2546,45.2248,45.3703,45.4083 -"Materials ex. energy materials; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.Z53010.S,RIW.Z53010.S,27.3844,27.2124,27.2398,27.3232,27.1783,27.2844,27.2035 -"Durable goods materials; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B53100.S,RIW.B53100.S,16.8595,16.8285,16.7620,16.8495,16.8326,16.8933,16.7642 -"Consumer parts; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B53110.S,RIW.B53110.S,3.0113,2.9627,2.9495,2.9613,2.9564,2.9476,2.9531 -"Equipment parts; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B53120.S,RIW.B53120.S,4.6347,4.6829,4.6145,4.6492,4.6801,4.7158,4.7112 -"Other durable materials; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B53130.S,RIW.B53130.S,9.2135,9.1829,9.1980,9.2390,9.1960,9.2300,9.0999 -"Nondurable goods materials; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B53200.S,RIW.B53200.S,10.5249,10.3838,10.4778,10.4737,10.3457,10.3910,10.4394 -"Textile materials; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B53210.S,RIW.B53210.S,0.2854,0.2893,0.2901,0.2978,0.2951,0.3000,0.3034 -"Paper materials; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B53220.S,RIW.B53220.S,1.4754,1.4913,1.5052,1.5028,1.4993,1.4882,1.5082 -"Chemical materials; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B53230.S,RIW.B53230.S,5.4290,5.2520,5.3379,5.3532,5.2643,5.3529,5.3815 -"Energy materials; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B53300.S,RIW.B53300.S,17.7996,17.8135,17.9184,17.9314,18.0465,18.0860,18.2047 -"Manufacturing (SIC); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B00004.S,RIW.B00004.S,75.3076,75.0948,75.1303,75.3463,74.8702,74.9007,74.6525 -"Manufacturing (NAICS); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.GMF.S,RIW.GMF.S,73.7811,73.5123,73.5576,73.7730,73.2949,73.3278,73.0765 -"Durable manufacturing (NAICS); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.GMFD.S,RIW.GMFD.S,37.5185,37.4594,37.5482,37.6582,37.4629,37.3777,37.1160 -"Wood product (NAICS = 321); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G321.S,RIW.G321.S,1.6051,1.6035,1.5951,1.6104,1.5853,1.6026,1.5966 -"Nonmetallic mineral product (NAICS = 327); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G327.S,RIW.G327.S,2.3382,2.2916,2.2920,2.2602,2.2574,2.2274,2.2432 -"Primary metal (NAICS = 331); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G331.S,RIW.G331.S,2.7275,2.6936,2.6678,2.6818,2.6274,2.6930,2.6465 -"Fabricated metal product (NAICS = 332); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G332.S,RIW.G332.S,6.0826,6.1997,6.1683,6.1520,6.1075,6.1156,5.9996 -"Machinery (NAICS = 333); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G333.S,RIW.G333.S,5.6038,5.6318,5.6896,5.6223,5.6003,5.6017,5.5329 -"Computer and electronic product (NAICS = 334); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G334.S,RIW.G334.S,4.4888,4.5670,4.5051,4.5211,4.5266,4.5274,4.4653 -"Electrical equipment, appliance, and component (NAICS = 335); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G335.S,RIW.G335.S,2.1316,2.1508,2.1108,2.1457,2.1161,2.1204,2.1394 -"Motor vehicles and parts (NAICS = 3361-3); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3361T3.S,RIW.G3361T3.S,5.6896,5.4078,5.6508,5.7795,5.7341,5.6771,5.7227 -"Aerospace and miscellaneous transportation eq. (NAICS = 3364-9); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3364T9.S,RIW.G3364T9.S,3.1992,3.2443,3.1758,3.1960,3.2425,3.2313,3.2447 -"Furniture and related product (NAICS = 337); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G337.S,RIW.G337.S,0.9700,0.9703,0.9718,0.9638,0.9732,0.9443,0.9514 -"Miscellaneous (NAICS = 339); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G339.S,RIW.G339.S,2.6822,2.6991,2.7210,2.7254,2.6925,2.6368,2.5739 -"Nondurable manufacturing (NAICS); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.GMFN.S,RIW.GMFN.S,36.2625,36.0530,36.0094,36.1149,35.8320,35.9501,35.9605 -"Food, beverage, and tobacco (NAICS = 311,2); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G311A2.S,RIW.G311A2.S,12.1905,12.1951,12.1075,12.1131,12.0635,12.0566,12.0332 -"Textiles and products (NAICS = 313,4); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G313A4.S,RIW.G313A4.S,0.5119,0.5172,0.5195,0.5197,0.5154,0.5228,0.5265 -"Apparel and leather goods (NAICS = 315,6); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G315A6.S,RIW.G315A6.S,0.1772,0.1789,0.1754,0.1732,0.1760,0.1744,0.1760 -"Paper (NAICS = 322); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G322.S,RIW.G322.S,2.2188,2.2295,2.2348,2.2246,2.2182,2.2029,2.2156 -"Printing and related support activities (NAICS = 323); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G323.S,RIW.G323.S,1.2720,1.3061,1.3135,1.3311,1.3477,1.3323,1.3603 -"Petroleum and coal products (NAICS = 324); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G324.S,RIW.G324.S,4.0470,3.9813,3.9617,4.0295,3.8504,3.9325,3.9188 -"Chemical (NAICS = 325); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G325.S,RIW.G325.S,12.0708,11.8864,11.9686,11.9831,11.9194,12.0261,12.0705 -"Plastics and rubber products (NAICS = 326); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G326.S,RIW.G326.S,3.7742,3.7585,3.7284,3.7405,3.7413,3.7026,3.6596 -"Other manufacturing; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.GMFO.S,RIW.GMFO.S,1.5265,1.5825,1.5727,1.5732,1.5753,1.5729,1.5760 -"Mining (NAICS = 21); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G21.S,RIW.G21.S,13.9107,13.5432,14.0472,14.0815,14.1864,14.0474,14.0683 -"Electric and gas utilities (NAICS = 2211,2); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G2211A2.S,RIW.G2211A2.S,10.7817,11.3620,10.8225,10.5722,10.9435,11.0519,11.2792 -"Electric power generation, transmission, and distribution (NAICS = 2211); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G2211.S,RIW.G2211.S,9.4433,9.9280,9.5110,9.3424,9.6178,9.7753,9.9962 -"Natural gas distribution (NAICS = 2212); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G2212.S,RIW.G2212.S,1.3384,1.4339,1.3116,1.2298,1.3257,1.2766,1.2830 -"Energy, total; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B50089.S,RIW.B50089.S,26.6368,26.8522,26.6671,26.4661,26.8425,26.8534,27.0928 -"Commercial energy products; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B54220.S,RIW.B54220.S,2.8003,2.8470,2.8240,2.7702,2.7912,2.8227,2.8392 -"Drilling oil and gas wells (NAICS = 213111); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N213111.S,RIW.N213111.S,0.5774,0.5786,0.5685,0.5736,0.5522,0.5352,0.5340 -"Converted fuel; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B53320.S,RIW.B53320.S,5.1716,5.4433,5.1463,5.1321,5.1588,5.2654,5.3149 -"Primary energy; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B53310.S,RIW.B53310.S,12.6280,12.3702,12.7722,12.7993,12.8877,12.8205,12.8898 -"Non-energy, total; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.X5001E.S,RIW.X5001E.S,73.3632,73.1478,73.3329,73.5339,73.1575,73.1466,72.9072 -"Computers, communications eq., and semiconductors (NAICS = 3341,3342,3344); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.HITEK2.S,RIW.HITEK2.S,1.9716,1.9897,1.9537,1.9620,1.9722,1.9869,1.9665 -"Computer and peripheral equipment (NAICS = 3341); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3341.S,RIW.G3341.S,0.2334,0.2320,0.2286,0.2334,0.2303,0.2294,0.2210 -"Communications equipment (NAICS = 3342); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3342.S,RIW.G3342.S,0.4384,0.4433,0.4375,0.4377,0.4361,0.4304,0.4246 -"Non-energy ex. computers, communications eq., and semiconductors; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.X5EHTK.S,RIW.X5EHTK.S,71.3917,71.1581,71.3792,71.5718,71.1853,71.1597,70.9408 -"Motor vehicle (NAICS = 3361); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3361.S,RIW.G3361.S,2.7739,2.5709,2.7494,2.8382,2.7900,2.7503,2.7986 -"Motor vehicle parts (NAICS = 3363); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3363.S,RIW.G3363.S,2.3550,2.3247,2.3745,2.4010,2.4008,2.3867,2.3968 -"Non-energy ex. motor vehicles & pts., computers, communications eq., and semiconductors; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.X50EHV.S,RIW.X50EHV.S,65.7021,65.7503,65.7284,65.7923,65.4512,65.4826,65.2181 -"Consumer goods ex. hi-tech, motor vehicles & pts., and energy; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.X51HVE.S,RIW.X51HVE.S,19.3697,19.4907,19.4308,19.4197,19.3575,19.3596,19.3307 -"Business equipment ex. hi-tech and motor vehicles and parts; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.X52HTV.S,RIW.X52HTV.S,7.4489,7.5129,7.4922,7.4718,7.4526,7.4204,7.3219 -"Construction supplies ex. hi-tech; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.X5410H.S,RIW.X5410H.S,5.1637,5.1460,5.2167,5.2185,5.1397,5.1393,5.1031 -"Business supplies ex. energy, motor vehicles & parts, and selected high-tech industries; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.X5421T.S,RIW.X5421T.S,7.3648,7.3678,7.3767,7.4078,7.3640,7.3384,7.3273 -"Materials ex. energy, motor vehicles & pts., computers, communications eq., and semiconductors; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.X53EHV.S,RIW.X53EHV.S,24.5474,24.4039,24.3933,24.4485,24.2920,24.3897,24.3025 -"Total ex. computers, communications eq., and semiconductors; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.X50HTK.S,RIW.X50HTK.S,98.0284,98.0103,98.0463,98.0380,98.0278,98.0131,98.0335 -"Manufacturing ex. computers, communications eq., and semiconductors; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.X4HTK2.S,RIW.X4HTK2.S,73.3361,73.1051,73.1766,73.3842,72.8980,72.9138,72.6861 -"Durable mfg. ex. computers, communications eq., and semiconductors; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.X5HTK2.S,RIW.X5HTK2.S,35.6830,35.6006,35.7333,35.8327,35.6255,35.5247,35.2866 -"Total ex. motor vehicles and parts; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.X50001.S,RIW.X50001.S,94.3104,94.5922,94.3492,94.2205,94.2659,94.3229,94.2773 -"Manufacturing ex. motor vehicles and parts; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.XXX001.S,RIW.XXX001.S,69.6180,69.6870,69.4794,69.5667,69.1361,69.2236,68.9299 -"Durable manufacturing ex. motor vehicles & parts; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.X005MV.S,RIW.X005MV.S,31.9650,32.1825,32.0362,32.0152,31.8636,31.8346,31.5303 -"Total ex. selected high-tech. and motor vehicles & pts.; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.X5VHT2.S,RIW.X5VHT2.S,92.3389,92.6024,92.3955,92.2584,92.2937,92.3360,92.3109 -"Manufacturing ex. hi-tech and motor vehicles & pts.; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.X4HTMV.S,RIW.X4HTMV.S,67.6465,67.6972,67.5258,67.6047,67.1639,67.2367,66.9634 -"Non-energy materials for finished goods producers; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B53810.S,RIW.B53810.S,9.4068,9.4262,9.3592,9.4110,9.4309,9.4515,9.4759 -"Non-energy materials for intermediate goods producers; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B53820.S,RIW.B53820.S,17.9776,17.7861,17.8806,17.9121,17.7474,17.8328,17.7276 -"Oil and gas extraction (NAICS = 211); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G211.S,RIW.G211.S,9.7023,9.4813,9.8678,9.9058,10.1084,10.0904,10.1559 -"Crude oil (NAICS = 21112); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G21112.S,RIW.G21112.S,7.9094,7.6896,7.9608,7.9754,8.1268,8.0796,8.0954 -"Natural gas and natural gas liquids (NAICS = 21113); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G21113.S,RIW.G21113.S,1.7929,1.7918,1.9070,1.9304,1.9816,2.0107,2.0605 -"Natural gas (NAICS = 211130pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N21113G.S,RIW.N21113G.S,0.9208,0.9477,0.9960,1.0018,1.0262,1.0441, -"Natural gas liquid extraction (NAICS = 211130pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G21113PQ.S,RIW.G21113PQ.S,0.8721,0.8441,0.9110,0.9286,0.9554,0.9666,0.9633 -"Mining (except oil and gas) (NAICS = 212); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G212.S,RIW.G212.S,2.2021,2.0487,2.1797,2.1756,2.1424,2.0737,2.0524 -"Coal mining (NAICS = 2121); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N2121.S,RIW.N2121.S,0.5750,0.4999,0.5349,0.5145,0.4601,0.4448, -"Metal ore mining (NAICS = 2122); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G2122.S,RIW.G2122.S,0.6861,0.6670,0.6759,0.7126,0.7001,0.7181,0.7136 -"Iron ore mining (NAICS = 21221); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N21221.S,RIW.N21221.S,0.0584,0.0554,0.0559,0.0566,0.0583,, -"Gold ore and silver ore mining (NAICS = 21222); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G21222.S,RIW.G21222.S,0.2142,0.1959,0.2001,0.2100,0.1955,0.2041,0.2019 -"Copper, nickel, lead, and zinc mining (NAICS = 21223); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G21223.S,RIW.G21223.S,0.2777,0.2944,0.3028,0.3153,0.3197,0.3399,0.3405 -"Nonmetallic mineral mining and quarrying (NAICS = 2123); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G2123.S,RIW.G2123.S,0.9410,0.8818,0.9689,0.9485,0.9822,0.9108,0.9044 -"Support activities for mining (NAICS = 213); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G213.S,RIW.G213.S,2.0063,2.0132,1.9997,2.0001,1.9356,1.8834,1.8600 -"Electric power generation (NAICS = 22111); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G22111.S,RIW.G22111.S,4.5563,4.8128,4.5045,4.5460,4.6031,4.7510,4.8321 -"Hydroelectric, renewables, and other (NAICS = 221111,4-8); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G221111A4T8.S,RIW.G221111A4T8.S,0.5969,0.5878,0.6116,0.6584,0.6273,0.6332,0.6405 -"Hydroelectric power generation (NAICS = 221111); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N221111.S,RIW.N221111.S,0.2615,0.2631,0.2676,0.2973,0.2438,, -"Renewables and other electric power generation (NAICS = 221114-8); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N221114T8.S,RIW.N221114T8.S,0.3353,0.3247,0.3440,0.3611,0.3835,, -"Fossil Fuel electric power generation (NAICS = 221112); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N221112.S,RIW.N221112.S,2.5579,2.8304,2.4618,2.4725,2.5367,, -"Nuclear electric power generation (NAICS = 221113); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N221113.S,RIW.N221113.S,1.4015,1.3946,1.4311,1.4151,1.4391,, -"Electric power transmission, control, and distribution (NAICS = 22112); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G22112.S,RIW.G22112.S,4.8870,5.1152,5.0064,4.7964,5.0146,5.0243,5.1641 -"Commercial and other electricity sales (NAICS = 22112pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N22112C.S,RIW.N22112C.S,1.9047,1.9584,1.9436,1.8966,1.9354,, -"Industrial electricity sales (NAICS = 22112pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N22112M.S,RIW.N22112M.S,0.8252,0.8330,0.8349,0.8238,0.8117,, -"Residential electricity sales (NAICS = 22112pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N22112R.S,RIW.N22112R.S,2.1571,2.3238,2.2279,2.0760,2.2675,, -"Commercial and other gas sales (NAICS = 2212pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N2212C.S,RIW.N2212C.S,0.2339,0.2488,0.2310,0.2215,0.2364,, -"Industrial gas sales (NAICS = 2212pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N2212M.S,RIW.N2212M.S,0.0813,0.0829,0.0805,0.0799,0.0777,, -"Residential gas sales (NAICS = 2212pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N2212R.S,RIW.N2212R.S,0.6686,0.7083,0.6372,0.5811,0.6436,, -"Gas transmission (NAICS = 2212pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N2212T.S,RIW.N2212T.S,0.3546,0.3939,0.3629,0.3473,0.3680,, -"Food (NAICS = 311); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G311.S,RIW.G311.S,9.4026,9.4265,9.3655,9.3178,9.3340,9.3074,9.2174 -"Animal food (NAICS = 3111); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3111.S,RIW.G3111.S,0.6918,0.6769,0.6701,0.6653,0.6461,0.6582,0.6536 -"Grain and oilseed milling (NAICS = 3112); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3112.S,RIW.G3112.S,0.6628,0.6710,0.6610,0.6588,0.6311,0.6396,0.6423 -"Sugar and confectionery product (NAICS = 3113); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3113.S,RIW.G3113.S,0.4589,0.4627,0.4791,0.5087,0.5171,0.5122,0.5025 -"Fruit and vegetable preserving and specialty food (NAICS = 3114); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3114.S,RIW.G3114.S,1.0314,1.0323,1.0148,1.0098,1.0137,1.0103,0.9769 -"Dairy product (NAICS = 3115); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3115.S,RIW.G3115.S,1.1038,1.0980,1.0950,1.1114,1.1110,1.0964,1.0967 -"Dairy product (except frozen) (NAICS = 31151); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G31151.S,RIW.G31151.S,0.9817,0.9826,0.9734,0.9811,0.9884,0.9716,0.9722 -"Fluid milk (NAICS = 311511); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N311511.S,RIW.N311511.S,0.3740,0.3764,0.3724,0.3734,0.3720,0.3683, -"Creamery butter (NAICS = 311512); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N311512.S,RIW.N311512.S,0.0362,0.0356,0.0358,0.0390,0.0402,0.0390, -"Cheese (NAICS = 311513); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N311513.S,RIW.N311513.S,0.4156,0.4180,0.4151,0.4107,0.4200,0.4120, -"Dry, condensed, and evaporated dairy product (NAICS = 311514); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N311514.S,RIW.N311514.S,0.1559,0.1527,0.1502,0.1580,0.1562,0.1524, -"Ice cream and frozen dessert (NAICS = 31152); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N31152.S,RIW.N31152.S,0.1221,0.1154,0.1217,0.1303,0.1226,0.1248, -"Animal slaughtering and processing (NAICS = 3116); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3116.S,RIW.G3116.S,2.3067,2.2751,2.3054,2.2351,2.3017,2.2917,2.2856 -"Animal (except poultry) slaughtering and meat processing (NAICS = 311611-3); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G311611T3.S,RIW.G311611T3.S,1.5987,1.5647,1.5902,1.5208,1.5648,1.5726,1.5553 -"Beef (NAICS = 311611-3pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N311611T3B.S,RIW.N311611T3B.S,0.9969,0.9634,0.9789,0.9390,0.9810,0.9876, -"Pork (NAICS = 311611-3pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N311611T3P.S,RIW.N311611T3P.S,0.5878,0.5878,0.5974,0.5678,0.5710,0.5716, -"Miscellaneous meats (NAICS = 311611-3pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N311611T3Z.S,RIW.N311611T3Z.S,0.0140,0.0135,0.0139,0.0141,0.0128,0.0134, -"Poultry processing (NAICS = 311615); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N311615.S,RIW.N311615.S,0.7081,0.7104,0.7152,0.7143,0.7369,0.7191, -"Bakeries and tortilla (NAICS = 3118); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N3118.S,RIW.N3118.S,1.2375,1.2840,1.2479,1.2682,1.2811,1.2781,1.2622 -"Other food (NAICS = 3119); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3119.S,RIW.G3119.S,1.8166,1.8360,1.8067,1.7808,1.7605,1.7444,1.7286 -"Coffee and tea (NAICS = 31192); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G31192.S,RIW.G31192.S,0.1304,0.1311,0.1285,0.1271,0.1257,0.1255,0.1237 -"Beverage and tobacco product (NAICS = 312); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G312.S,RIW.G312.S,2.7879,2.7686,2.7421,2.7954,2.7295,2.7492,2.8159 -"Beverage (NAICS = 3121); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3121.S,RIW.G3121.S,1.7148,1.7275,1.7188,1.6963,1.6410,1.6697,1.7063 -"Soft drink and ice (NAICS = 31211); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N31211.S,RIW.N31211.S,0.5587,0.5863,0.5617,0.5591,0.5520,0.5572,0.5718 -"Breweries (NAICS = 31212); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N31212.S,RIW.N31212.S,0.4411,0.4559,0.4595,0.4356,0.4139,, -"Tobacco (NAICS = 3122); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3122.S,RIW.G3122.S,1.0731,1.0411,1.0233,1.0990,1.0885,1.0795,1.1095 -"Textile mills (NAICS = 313); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G313.S,RIW.G313.S,0.2580,0.2619,0.2618,0.2718,0.2691,0.2731,0.2763 -"Fiber, yarn, and thread mills (NAICS = 3131); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3131.S,RIW.G3131.S,0.0414,0.0427,0.0430,0.0446,0.0444,0.0451,0.0460 -"Fabric mills (NAICS = 3132); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3132.S,RIW.G3132.S,0.1411,0.1420,0.1413,0.1473,0.1446,0.1457,0.1466 -"Textile and fabric finishing and fabric coating mills (NAICS = 3133); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3133.S,RIW.G3133.S,0.0756,0.0772,0.0774,0.0799,0.0801,0.0823,0.0838 -"Textile product mills (NAICS = 314); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G314.S,RIW.G314.S,0.2539,0.2553,0.2577,0.2478,0.2463,0.2497,0.2502 -"Textile furnishings mills (NAICS = 3141); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3141.S,RIW.G3141.S,0.1183,0.1194,0.1185,0.1162,0.1149,0.1143,0.1134 -"Carpet and rug mills (NAICS = 31411); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G31411.S,RIW.G31411.S,0.0741,0.0746,0.0734,0.0732,0.0727,0.0716,0.0707 -"Other textile product mills (NAICS = 3149); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3149.S,RIW.G3149.S,0.1356,0.1359,0.1393,0.1316,0.1314,0.1353,0.1368 -"Apparel (NAICS = 315); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G315.S,RIW.G315.S,0.1057,0.1060,0.1035,0.1009,0.1055,0.1039,0.1032 -"Leather and allied product (NAICS = 316); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G316.S,RIW.G316.S,0.0716,0.0729,0.0719,0.0724,0.0705,0.0705,0.0728 -"Sawmills and wood preservation (NAICS = 3211); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N3211.S,RIW.N3211.S,0.4666,0.4601,0.4446,0.4641,,, -"Plywood and misc. wood products (NAICS = 3212,9); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3212A9.S,RIW.G3212A9.S,1.1385,1.1434,1.1505,1.1463,1.1337,1.1285,1.1422 -"Veneer, plywood, and engineered wood product (NAICS = 3212); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3212.S,RIW.G3212.S,0.3418,0.3392,0.3394,0.3464,0.3495,0.3411,0.3480 -"Veneer and plywood (NAICS = 321211,2); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G321211A2.S,RIW.G321211A2.S,0.0907,0.0906,0.0888,0.0886,0.0885,0.0876,0.0868 -"Reconstituted wood product (NAICS = 321219); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G321219.S,RIW.G321219.S,0.1108,0.1092,0.1151,0.1166,0.1197,0.1149,0.1187 -"Other wood product (NAICS = 3219); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3219.S,RIW.G3219.S,0.7966,0.8042,0.8112,0.7999,0.7842,0.7873,0.7942 -"Millwork (NAICS = 32191); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G32191.S,RIW.G32191.S,0.4178,0.4273,0.4248,0.4101,0.4040,0.4094,0.4157 -"Wood container and pallet (NAICS = 32192); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N32192.S,RIW.N32192.S,0.1433,0.1407,0.1476,0.1512,0.1428,0.1439,0.1444 -"All other wood product (NAICS = 32199); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G32199.S,RIW.G32199.S,0.2356,0.2362,0.2388,0.2386,0.2373,0.2340,0.2342 -"Manufactured home (mobile home) (NAICS = 321991); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N321991.S,RIW.N321991.S,0.0630,0.0583,0.0663,0.0640,0.0645,0.0648, -"Pulp, paper, and paperboard mills (NAICS = 3221); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3221.S,RIW.G3221.S,0.9910,0.9993,1.0076,1.0014,0.9963,0.9900,1.0018 -"Pulp mills (NAICS = 32211); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N32211.S,RIW.N32211.S,0.0897,0.0865,0.0892,0.0898,0.0877,0.0886, -"Paper mills (NAICS = 32212); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G32212.S,RIW.G32212.S,0.4503,0.4628,0.4678,0.4613,0.4547,0.4521,0.4603 -"Paper (except newsprint) mills (NAICS = 322121); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N322121.S,RIW.N322121.S,0.4478,0.4604,0.4652,0.4588,,, -"Paperboard mills (NAICS = 32213); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N32213.S,RIW.N32213.S,0.4511,0.4501,0.4506,0.4503,,, -"Converted paper product (NAICS = 3222); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3222.S,RIW.G3222.S,1.2278,1.2302,1.2271,1.2233,1.2219,1.2128,1.2138 -"Paperboard container (NAICS = 32221); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N32221.S,RIW.N32221.S,0.6367,0.6361,0.6246,0.6202,,, -"Paper bag and coated and treated paper (NAICS = 32222); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G32222.S,RIW.G32222.S,0.1992,0.2002,0.2061,0.2076,0.2047,0.2037,0.2080 -"Other converted paper products (NAICS = 32223,9); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G32223A9.S,RIW.G32223A9.S,0.3918,0.3939,0.3965,0.3954,0.3962,0.3929,0.3951 -"Petroleum refineries (NAICS = 32411); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G32411.S,RIW.G32411.S,3.3996,3.3469,3.2883,3.3356,3.2515,3.2645,3.2564 -"Aviation fuel and kerosene (NAICS = 32411pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N32411A.S,RIW.N32411A.S,0.3764,0.3684,0.3601,0.3810,0.3575,, -"Distillate fuel oil (NAICS = 32411pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N32411D.S,RIW.N32411D.S,0.8807,0.8325,0.7698,0.8338,0.8296,, -"Automotive gasoline (NAICS = 32411pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N32411G.S,RIW.N32411G.S,1.6125,1.6091,1.5743,1.5524,1.5618,, -"Residual fuel oil (NAICS = 32411pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N32411R.S,RIW.N32411R.S,0.1605,0.1583,0.1979,0.1892,0.1448,, -"Other refinery output (NAICS = 32411pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G32411X.S,RIW.G32411X.S,0.3695,0.3786,0.3861,0.3791,0.3577,0.3681,0.3655 -"Paving, roofing, and other petroleum and coal products (NAICS = 32412,9); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N32412A9.S,RIW.N32412A9.S,0.6474,0.6344,0.6734,0.6940,0.5989,0.6680,0.6624 -"Basic chemical (NAICS = 3251); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3251.S,RIW.G3251.S,3.0268,2.8892,2.8793,2.8943,2.8286,2.8545,2.8677 -"Organic chemicals (NAICS = 32511,9); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G32511A9.S,RIW.G32511A9.S,2.0164,1.8415,1.8828,1.8900,1.8182,1.8549,1.8726 -"Basic inorganic chemicals (NAICS = 32512-8); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G32512T8.S,RIW.G32512T8.S,1.0105,1.0477,0.9965,1.0043,1.0104,0.9996,0.9950 -"Industrial gas (NAICS = 32512); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G32512.S,RIW.G32512.S,0.3086,0.3245,0.3089,0.3129,0.3172,0.3156,0.3164 -"Synthetic dye and pigment (NAICS = 32513); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G32513.S,RIW.G32513.S,0.0845,0.0878,0.0829,0.0836,0.0834,0.0829,0.0823 -"Other basic inorganic chemical (NAICS = 32518pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G32518.S,RIW.G32518.S,0.6174,0.6354,0.6046,0.6079,0.6098,0.6011,0.5964 -"Alkalies and chlorine (NAICS = 32518pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N32518C.S,RIW.N32518C.S,0.0949,0.0966,0.0955,0.0949,,, -"Resin, synthetic rubber, and artificial and synthetic fibers and filaments (NAICS = 3252); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3252.S,RIW.G3252.S,0.9948,0.9437,1.0031,0.9876,0.9626,0.9780,0.9826 -"Resin and synthetic rubber (NAICS = 32521); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G32521.S,RIW.G32521.S,0.9299,0.8791,0.9379,0.9206,0.8988,0.9141,0.9187 -"Plastics material and resin (NAICS = 325211); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N325211.S,RIW.N325211.S,0.8644,0.8137,0.8724,0.8536,0.8353,0.8499, -"Synthetic rubber (NAICS = 325212); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G325212.S,RIW.G325212.S,0.0656,0.0654,0.0655,0.0670,0.0634,0.0642,0.0642 -"Artificial and synthetic fibers and filaments (NAICS = 32522); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G32522.S,RIW.G32522.S,0.0649,0.0646,0.0651,0.0670,0.0638,0.0639,0.0640 -"Pesticide, fertilizer, and other agricultural chemical (NAICS = 3253); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3253.S,RIW.G3253.S,0.6330,0.5614,0.5850,0.6164,0.6043,0.6097,0.6169 -"Pharmaceutical and medicine (NAICS = 3254); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3254.S,RIW.G3254.S,4.8575,4.8865,4.8714,4.8652,4.8925,4.9313,4.9568 -"Chemicals except pharmaceuticals and medicines (NAICS = 3251-3,5-9); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G325@4.S,RIW.G325@4.S,7.2133,6.9999,7.0972,7.1179,7.0269,7.0948,7.1136 -"Paints, soaps and toiletries, and other chemical products (NAICS = 3255-9); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3255T9.S,RIW.G3255T9.S,2.5586,2.6056,2.6299,2.6195,2.6313,2.6525,2.6465 -"Paints and other chemical products (NAICS = 3255,9); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3255A9.S,RIW.G3255A9.S,1.2583,1.2553,1.2676,1.2608,1.2574,1.2496,1.2447 -"Paint, coating, and adhesive (NAICS = 3255); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3255.S,RIW.G3255.S,0.7039,0.7197,0.7032,0.7045,0.6885,0.6909,0.6787 -"Paint and coating (NAICS = 32551); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G32551.S,RIW.G32551.S,0.4419,0.4524,0.4425,0.4427,0.4330,0.4340,0.4269 -"Soap, cleaning compound, and toilet preparation (NAICS = 3256); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3256.S,RIW.G3256.S,1.3003,1.3503,1.3623,1.3587,1.3739,1.4030,1.4018 -"Plastics product (NAICS = 3261); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3261.S,RIW.G3261.S,3.0086,3.0042,2.9809,2.9901,3.0266,3.0113,2.9557 -"Rubber product (NAICS = 3262); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3262.S,RIW.G3262.S,0.7656,0.7542,0.7474,0.7504,0.7146,0.6912,0.7040 -"Tire (NAICS = 32621); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G32621.S,RIW.G32621.S,0.3223,0.3013,0.3132,0.3217,0.2995,0.2829,0.2885 -"Rubber products ex. tires (NAICS = 32622,9); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G32622A9.S,RIW.G32622A9.S,0.4433,0.4529,0.4342,0.4287,0.4151,0.4083,0.4154 -"Clay, lime, gypsum, and misc. nonmetallic mineral products (NAICS = 3271,4,9); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3271A4A9.S,RIW.G3271A4A9.S,0.8737,0.8857,0.8733,0.8697,0.8837,0.8787,0.8875 -"Clay and misc. nonmetallic mineral products (NAICS = 3271,9); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3271A9.S,RIW.G3271A9.S,0.7251,0.7354,0.7251,0.7213,0.7332,0.7284,0.7357 -"Clay product and refractory (NAICS = 3271); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3271.S,RIW.G3271.S,0.1417,0.1399,0.1401,0.1397,0.1415,0.1383,0.1343 -"Pottery, ceramics, and plumbing fixture (NAICS = 32711); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G32711.S,RIW.G32711.S,0.0499,0.0490,0.0486,0.0487,0.0485,0.0482,0.0465 -"Clay building material and refractories (NAICS = 32712); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G32712.S,RIW.G32712.S,0.0918,0.0909,0.0916,0.0909,0.0930,0.0901,0.0879 -"Other nonmetallic mineral product (NAICS = 3279); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3279.S,RIW.G3279.S,0.5834,0.5956,0.5849,0.5816,0.5917,0.5902,0.6014 -"Lime and gypsum product (NAICS = 3274); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3274.S,RIW.G3274.S,0.1486,0.1503,0.1482,0.1484,0.1505,0.1503,0.1518 -"Glass and glass product (NAICS = 3272); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3272.S,RIW.G3272.S,0.3696,0.3503,0.3514,0.3534,0.3553,0.3526,0.3489 -"Glass container (NAICS = 327213); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G327213.S,RIW.G327213.S,0.0692,0.0704,0.0697,0.0697,0.0692,0.0681,0.0673 -"Cement and concrete product (NAICS = 3273); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3273.S,RIW.G3273.S,1.0949,1.0555,1.0673,1.0371,1.0184,0.9961,1.0068 -"Cement (NAICS = 32731); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N32731.S,RIW.N32731.S,0.1591,0.1409,0.1652,0.1579,0.1591,, -"Concrete and product (NAICS = 32732-9); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N32732T9.S,RIW.N32732T9.S,0.9358,0.9146,0.9021,0.8792,0.8593,0.8413,0.8493 -"Iron and steel products (NAICS = 3311,2); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3311A2.S,RIW.G3311A2.S,1.2865,1.2524,1.2386,1.2287,1.1946,1.1870,1.1795 -"Pig iron (NAICS = 3311,2pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3311A2Q.S,RIW.G3311A2Q.S,0.0696,0.0610,0.0601,0.0596,0.0588,0.0572,0.0560 -"Raw steel (NAICS = 3311,2pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N3311A2R.S,RIW.N3311A2R.S,0.0785,0.0742,0.0761,0.0756,0.0722,0.0738, -"Coke and products (NAICS = 3311,2pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3311A2F.S,RIW.G3311A2F.S,0.0187,0.0185,0.0181,0.0182,0.0185,0.0185,0.0184 -"Construction steel (NAICS = 3311,2pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N3311A2B.S,RIW.N3311A2B.S,0.2257,0.2283,0.2469,0.2644,0.2476,0.2516, -"Consumer durable steel (NAICS = 3311,2pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N3311A2C.S,RIW.N3311A2C.S,0.3247,0.3080,0.2439,0.2263,0.2136,0.2219, -"Can and closure steel (NAICS = 3311,2pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N3311A2D.S,RIW.N3311A2D.S,0.0095,0.0072,0.0068,0.0067,0.0074,0.0069, -"Equipment steel (NAICS = 3311,2pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N3311A2E.S,RIW.N3311A2E.S,0.0563,0.0526,0.0556,0.0616,0.0640,0.0608, -"Miscellaneous steel (NAICS = 3311,2pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N3311A2Z.S,RIW.N3311A2Z.S,0.5035,0.5026,0.5311,0.5162,0.5125,0.4963, -"Alumina and aluminum production and processing (NAICS = 3313); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3313.S,RIW.G3313.S,0.3580,0.3503,0.3454,0.3584,0.3465,0.3790,0.3608 -"Primary aluminum production (NAICS = 331313pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N331313P.S,RIW.N331313P.S,0.0124,0.0116,0.0098,0.0101,0.0099,0.0098,0.0097 -"Secondary smelting and alloying of aluminum (NAICS = 331314); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N331314.S,RIW.N331314.S,0.0585,0.0520,0.0519,0.0563,0.0537,, -"Misc. aluminum materials (NAICS = 331315,8pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N331315A8M.S,RIW.N331315A8M.S,0.1922,0.1951,0.1962,0.2000,0.1925,0.2137, -"Aluminum extruded product (NAICS = 331318pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N331318E.S,RIW.N331318E.S,0.0893,0.0861,0.0822,0.0868,0.0852,0.0995, -"Nonferrous metal (except aluminum) production and processing (NAICS = 3314); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3314.S,RIW.G3314.S,0.6814,0.6848,0.6742,0.6833,0.6746,0.7036,0.6978 -"Nonferrous metal (except aluminum) smelting and refining (NAICS = 33141); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G33141.S,RIW.G33141.S,0.1858,0.1859,0.1730,0.1824,0.1736,0.1855,0.1836 -"Primary smelting and refining of copper (NAICS = 33141pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G33141C.S,RIW.G33141C.S,0.0468,0.0452,0.0443,0.0416,0.0457,0.0492,0.0487 -"Primary smelting and refining of nonferrous metal (except copper and aluminum) (NAICS = 33141pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N33141N.S,RIW.N33141N.S,0.1390,0.1407,0.1287,0.1408,0.1280,, -"Foundries (NAICS = 3315); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3315.S,RIW.G3315.S,0.4016,0.4061,0.4096,0.4113,0.4117,0.4234,0.4084 -"Forging and stamping (NAICS = 3321); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N3321.S,RIW.N3321.S,0.3527,0.3588,0.3558,0.3571,0.3561,0.3607,0.3528 -"Cutlery and handtool (NAICS = 3322); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N3322.S,RIW.N3322.S,0.1601,0.1649,0.1634,0.1651,0.1618,0.1651,0.1585 -"Architectural and structural metals (NAICS = 3323); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N3323.S,RIW.N3323.S,1.7801,1.8304,1.8536,1.8393,1.8258,1.8431,1.8036 -"Hardware (NAICS = 3325); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3325.S,RIW.G3325.S,0.1378,0.1416,0.1409,0.1364,0.1370,0.1371,0.1318 -"Spring and wire product (NAICS = 3326); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N3326.S,RIW.N3326.S,0.1762,0.1808,0.1800,0.1739,0.1732,0.1721,0.1652 -"Machine shops; turned product; and screw, nut, and bolt (NAICS = 3327); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3327.S,RIW.G3327.S,1.1477,1.1529,1.1279,1.1315,1.1253,1.1095,1.0955 -"Coating, engraving, heat treating, and allied activities (NAICS = 3328); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N3328.S,RIW.N3328.S,0.4767,0.4914,0.4758,0.4747,0.4826,0.4771,0.4649 -"Other fabricated metal product (NAICS = 3329); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3329.S,RIW.G3329.S,1.3398,1.3655,1.3523,1.3644,1.3581,1.3695,1.3495 -"Ball and roller bearing (NAICS = 332991); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G332991.S,RIW.G332991.S,0.0898,0.0927,0.0939,0.0940,0.0924,0.0936,0.0902 -"Agriculture, construction, and mining machinery (NAICS = 3331); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3331.S,RIW.G3331.S,1.2277,1.2436,1.2835,1.2421,1.2470,1.2313,1.1949 -"Agricultural implement (NAICS = 33311); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G33311.S,RIW.G33311.S,0.6201,0.6326,0.6536,0.6259,0.6312,0.6199,0.6021 -"Farm machinery and equipment (NAICS = 333111); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G333111.S,RIW.G333111.S,0.5418,0.5529,0.5714,0.5475,0.5531,0.5420,0.5262 -"Construction machinery (NAICS = 33312); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G33312.S,RIW.G33312.S,0.4329,0.4321,0.4496,0.4383,0.4410,0.4393,0.4266 -"Mining and oil and gas field machinery (NAICS = 33313); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N33313.S,RIW.N33313.S,0.1747,0.1790,0.1804,0.1780,0.1748,0.1720,0.1662 -"Industrial machinery (NAICS = 3332); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3332.S,RIW.G3332.S,0.5536,0.5547,0.5436,0.5360,0.5441,0.5483,0.5304 -"Commercial and service industry machinery and other general purpose machinery (NAICS = 3333,9); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3333A9.S,RIW.G3333A9.S,2.1196,2.1263,2.1170,2.1123,2.0654,2.0880,2.0431 -"HVAC, metalworking, and power transmission machinery (NAICS = 3334-6); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3334T6.S,RIW.G3334T6.S,1.7028,1.7072,1.7455,1.7319,1.7438,1.7341,1.7646 -"Ventilation, heating, air-conditioning, and commercial refrigeration equipment (NAICS = 3334); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3334.S,RIW.G3334.S,0.6938,0.7108,0.7610,0.7318,0.7260,0.7165,0.7141 -"Metalworking machinery (NAICS = 3335); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3335.S,RIW.G3335.S,0.5118,0.5122,0.5151,0.5264,0.5162,0.5205,0.5360 -"Engine, turbine, and power transmission equipment (NAICS = 3336); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3336.S,RIW.G3336.S,0.4972,0.4842,0.4694,0.4737,0.5016,0.4971,0.5145 -"Audio and video equipment (NAICS = 3343); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3343.S,RIW.G3343.S,0.0561,0.0589,0.0564,0.0572,0.0552,0.0539,0.0512 -"Semiconductor and other electronic component (NAICS = 3344); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3344.S,RIW.G3344.S,1.2997,1.3145,1.2875,1.2910,1.3058,1.3271,1.3209 -"Navigational, measuring, electromedical, and control instruments (NAICS = 3345); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3345.S,RIW.G3345.S,2.4394,2.4954,2.4729,2.4794,2.4773,2.4650,2.4268 -"Household appliance (NAICS = 3352); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3352.S,RIW.G3352.S,0.3667,0.3572,0.3492,0.3596,0.3493,0.3460,0.3551 -"Small electrical appliance (NAICS = 33521); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G33521.S,RIW.G33521.S,0.0511,0.0489,0.0434,0.0429,0.0407,0.0411,0.0424 -"Major appliance (NAICS = 33522); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G33522.S,RIW.G33522.S,0.3156,0.3083,0.3058,0.3167,0.3086,0.3049,0.3127 -"Electrical equipment except appliances (NAICS = 3351,3,9); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G335@2.S,RIW.G335@2.S,1.7650,1.7936,1.7615,1.7861,1.7669,1.7744,1.7842 -"Electric lighting equipment (NAICS = 3351); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3351.S,RIW.G3351.S,0.1987,0.1940,0.1738,0.1742,0.1646,0.1657,0.1719 -"Electrical equipment (NAICS = 3353); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3353.S,RIW.G3353.S,0.7180,0.7392,0.7296,0.7454,0.7455,0.7566,0.7736 -"Other electrical equipment and component (NAICS = 3359); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3359.S,RIW.G3359.S,0.8482,0.8604,0.8582,0.8665,0.8568,0.8521,0.8388 -"Battery (NAICS = 33591); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G33591.S,RIW.G33591.S,0.1481,0.1478,0.1480,0.1522,0.1453,0.1475,0.1474 -"Communication and energy wire and cable (NAICS = 33592); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N33592.S,RIW.N33592.S,0.1519,0.1543,0.1530,0.1543,0.1527,0.1513,0.1475 -"Other electrical equipment (NAICS = 33593,9); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G33593T9.S,RIW.G33593T9.S,0.5482,0.5582,0.5571,0.5601,0.5587,0.5533,0.5439 -"Transportation equipment (NAICS = 336); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G336.S,RIW.G336.S,8.8887,8.6521,8.8267,8.9755,8.9767,8.9084,8.9673 -"Automobile and light duty motor vehicle (NAICS = 33611); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G33611.S,RIW.G33611.S,2.6095,2.4248,2.5744,2.6443,2.6257,2.6026,2.6568 -"Automobile (NAICS = 336111); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G336111.S,RIW.G336111.S,0.4739,0.4035,0.4209,0.4288,0.4154,0.4537,0.4336 -"Light truck and utility vehicle (NAICS = 336112); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G336112.S,RIW.G336112.S,2.1356,2.0214,2.1535,2.2156,2.2103,2.1489,2.2233 -"Heavy duty truck (NAICS = 33612); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G33612.S,RIW.G33612.S,0.1644,0.1461,0.1750,0.1938,0.1643,0.1477,0.1417 -"Motor vehicle body and trailer (NAICS = 3362); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3362.S,RIW.G3362.S,0.5606,0.5122,0.5270,0.5404,0.5433,0.5401,0.5273 -"Truck trailer (NAICS = 336212); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G336212.S,RIW.G336212.S,0.1360,0.1158,0.1165,0.1181,0.1185,0.1131,0.1111 -"Motor home (NAICS = 336213); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N336213.S,RIW.N336213.S,0.0383,0.0323,0.0336,0.0340,0.0327,0.0298, -"Travel trailer and camper (NAICS = 336214); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G336214.S,RIW.G336214.S,0.1651,0.1469,0.1577,0.1692,0.1715,0.1715,0.1668 -"Aerospace product and parts (NAICS = 3364); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3364.S,RIW.G3364.S,2.3235,2.3721,2.3079,2.3149,2.3460,2.3345,2.3333 -"Aircraft and parts (NAICS = 336411-3); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G336411T3.S,RIW.G336411T3.S,2.0407,2.0816,2.0290,2.0333,2.0647,2.0537,2.0569 -"Railroad eq., ships and boats, and other transportation equipment (NAICS = 3365-9); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3365T9.S,RIW.G3365T9.S,0.8756,0.8721,0.8679,0.8811,0.8965,0.8968,0.9114 -"Railroad rolling stock (NAICS = 3365); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N3365.S,RIW.N3365.S,0.0788,0.0808,0.0776,0.0813,0.0806,0.0830,0.0829 -"Ship and boat building (NAICS = 3366); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3366.S,RIW.G3366.S,0.5792,0.5688,0.5755,0.5788,0.5939,0.5899,0.6054 -"Other transportation equipment (NAICS = 3369); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N3369.S,RIW.N3369.S,0.2176,0.2225,0.2148,0.2209,0.2220,0.2239,0.2232 -"Household and institutional furniture and kitchen cabinet (NAICS = 3371); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N3371.S,RIW.N3371.S,0.5070,0.5125,0.5063,0.5082,0.5141,0.4970,0.4991 -"Office and other furniture (NAICS = 3372,9); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3372A9.S,RIW.G3372A9.S,0.4630,0.4577,0.4655,0.4556,0.4592,0.4473,0.4523 -"Medical equipment and supplies (NAICS = 3391); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N3391.S,RIW.N3391.S,1.6712,1.6763,1.6869,1.6773,1.6696,1.6212,1.5917 -"Logging (NAICS = 1133); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N1133.S,RIW.N1133.S,0.1361,0.1310,0.1388,0.1366,0.1347,0.1340,0.1370 -"Newspaper, periodical, book, and directory publishers (NAICS = 5111); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G5111.S,RIW.G5111.S,1.3905,1.4515,1.4339,1.4367,1.4406,1.4389,1.4390 -"Newspaper publishers (NAICS = 51111); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G51111.S,RIW.G51111.S,0.3743,0.3773,0.3770,0.3763,0.3797,0.3842,0.3839 -"Periodical, book, and other publishers (NAICS = 51112-9); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G51112T9.S,RIW.G51112T9.S,1.0162,1.0742,1.0569,1.0604,1.0608,1.0547,1.0551 -"Crude processing (capacity); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B5610C.S,RIW.B5610C.S,17.8583,17.3436,17.7914,17.8860,17.8663,17.8119,17.8752 -"Primary & semifinished processing (capacity); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B562A3C.S,RIW.B562A3C.S,45.7196,46.2593,45.7784,45.6122,45.7132,45.8563,45.9431 -"Finished processing (capacity); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B5640C.S,RIW.B5640C.S,36.4221,36.3971,36.4302,36.5018,36.4205,36.3317,36.1817 -"Final products; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B50002.S,RIW.B50002.S,39.0814,39.2023,39.0216,38.9442,39.0721,38.9151,38.9105 -"Autos and trucks, consumer; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B51111.S,RIW.B51111.S,2.1094,1.9517,2.0647,2.1130,2.0899,2.0645,2.0978 -"Auto parts and allied goods; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B51112.S,RIW.B51112.S,1.3884,1.3519,1.3585,1.3798,1.3618,1.3457,1.3425 -"Other durable goods; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B51120.S,RIW.B51120.S,2.7582,2.7952,2.8151,2.7851,2.7543,2.7258,2.6838 -"Household appliances; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B511221.S,RIW.B511221.S,0.4283,0.4405,0.4694,0.4229,0.4169,0.4119,0.4033 -"Carpeting and furniture; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B511222.S,RIW.B511222.S,0.4803,0.4843,0.4788,0.4771,0.4791,0.4658,0.4654 -"Miscellaneous nondurable goods; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B51215.S,RIW.B51215.S,0.4017,0.4029,0.4064,0.4019,0.4002,0.3917,0.3863 -"Fuels; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B51221.S,RIW.B51221.S,2.6338,2.5811,2.4912,2.5338,2.5415,2.5408,2.5178 -"Residential utilities; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B51222.S,RIW.B51222.S,2.8257,3.0321,2.8651,2.6571,2.9111,2.8687,2.9971 -"Equipment, total; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B52000.S,RIW.B52000.S,11.2121,11.2316,11.2524,11.2902,11.2426,11.1614,11.0597 -"Business vehicles; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3361E.S,RIW.G3361E.S,0.6645,0.6191,0.6846,0.7251,0.7001,0.6858,0.7007 -"Business light vehicles; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G33611E.S,RIW.G33611E.S,0.5001,0.4731,0.5097,0.5313,0.5359,0.5381,0.5590 -"Automobile, business (NAICS = 336111pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G336111B.S,RIW.G336111B.S,0.0882,0.0748,0.0776,0.0786,0.0758,0.0823,0.0783 -"Light trucks, business (NAICS = 336112pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G336112B.S,RIW.G336112B.S,0.4119,0.3983,0.4321,0.4527,0.4601,0.4558,0.4807 -"Industrial equipment; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B52131.S,RIW.B52131.S,3.0769,3.0850,3.0844,3.0909,3.0590,3.0891,3.0459 -"Other equipment; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B52132.S,RIW.B52132.S,2.1085,2.1234,2.1480,2.1176,2.1216,2.0794,2.0486 -"Oil and gas well drilling and manufactured homes; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B52200.S,RIW.B52200.S,0.6404,0.6369,0.6348,0.6376,0.6167,0.5999,0.5989 -"Nonindustrial supplies; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B54000.S,RIW.B54000.S,15.7347,15.7719,15.8201,15.8012,15.7031,15.7146,15.6812 -"Non-energy business supplies; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B54210.S,RIW.B54210.S,7.7599,7.7680,7.7687,7.8018,7.7615,7.7420,7.7285 -"Computer and other board assemblies and parts; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B53121.S,RIW.B53121.S,0.1451,0.1443,0.1405,0.1352,0.1368,0.1384,0.1348 -"Semiconductors, printed circuit boards, and other; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B53122.S,RIW.B53122.S,0.7976,0.8080,0.7926,0.8000,0.8092,0.8225,0.8212 -"Other equipment parts; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B53123.S,RIW.B53123.S,3.6921,3.7307,3.6814,3.7139,3.7342,3.7549,3.7552 -"Basic metals; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B53131.S,RIW.B53131.S,2.7882,2.7532,2.7792,2.8238,2.7838,2.8583,2.8098 -"Miscellaneous durable materials; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B53132.S,RIW.B53132.S,6.4253,6.4297,6.4189,6.4152,6.4122,6.3717,6.2901 -"Other nondurable materials; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B53240.S,RIW.B53240.S,3.3351,3.3512,3.3447,3.3200,3.2871,3.2500,3.2463 -"Containers; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B53241.S,RIW.B53241.S,1.0443,1.0579,1.0596,1.0411,1.0270,1.0070,1.0062 -"Miscellaneous nondurable materials; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B53242.S,RIW.B53242.S,2.2908,2.2932,2.2851,2.2788,2.2601,2.2430,2.2401 \ No newline at end of file diff --git a/data/fedres/FRB_G17.csv.manualchange b/data/fedres/FRB_G17.csv.manualchange deleted file mode 100644 index 00f8edd..0000000 --- a/data/fedres/FRB_G17.csv.manualchange +++ /dev/null @@ -1,1171 +0,0 @@ -"Description:","Unit:","Multiplier:","Currency:","Unique Identifier:","Series Name:",2023-11,2023-12,2024-01,2024-02,2024-03,2024-04,2024-05 -"Total index; s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.B50001.S,IP.B50001.S,100.0,102.6309,101.7126,102.7423,102.5096,102.4290,103.1168 -"Total index; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.B50001.N,IP.B50001.N,102.0599,102.2236,101.9293,102.7705,102.7134,101.4901,102.0452 -"Manufacturing (SIC); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.B00004.S,IP.B00004.S,99.3261,99.2357,98.2029,99.3023,99.4700,98.8773,99.4926 -"Manufacturing (SIC); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.B00004.N,IP.B00004.N,98.9643,98.0445,96.5453,99.3766,100.2296,99.6107,99.5255 -"Manufacturing (NAICS); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.GMF.S,IP.GMF.S,99.8694,99.8251,98.7131,99.8315,100.0074,99.3998,100.0326 -"Manufacturing (NAICS); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.GMF.N,IP.GMF.N,99.4486,98.6186,97.1377,100.0576,100.9628,100.2591,100.1497 -"Durable manufacturing (NAICS); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.GMFD.S,IP.GMFD.S,101.0033,100.6129,99.6460,100.8801,101.0770,100.5525,101.0598 -"Durable manufacturing (NAICS); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.GMFD.N,IP.GMFD.N,100.4241,99.1088,98.1936,101.7373,102.8214,101.7924,101.0796 -"Wood product (NAICS = 321); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G321.S,IP.G321.S,96.1325,93.2139,92.2001,92.8385,93.6735,92.2891,94.5995 -"Wood product (NAICS = 321); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G321.N,IP.G321.N,93.7804,88.2029,89.8213,92.1674,95.1615,95.3189,95.9304 -"Nonmetallic mineral product (NAICS = 327); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G327.S,IP.G327.S,103.5568,103.8036,100.5037,101.5349,99.8449,99.4240,98.6398 -"Nonmetallic mineral product (NAICS = 327); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G327.N,IP.G327.N,104.6532,100.9280,93.3698,94.6871,96.3385,99.3487,100.0069 -"Primary metal (NAICS = 331); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G331.S,IP.G331.S,94.7484,94.8505,92.7879,93.1306,93.6142,92.5398,93.3915 -"Primary metal (NAICS = 331); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G331.N,IP.G331.N,93.6359,93.2892,91.6072,95.5123,93.5947,94.8508,93.9717 -"Fabricated metal product (NAICS = 332); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G332.S,IP.G332.S,99.1725,98.6583,99.4315,100.0198,99.5553,99.4377,99.9414 -"Fabricated metal product (NAICS = 332); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G332.N,IP.G332.N,99.1271,99.1399,98.5145,99.9216,99.9591,99.6177,99.7601 -"Machinery (NAICS = 333); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G333.S,IP.G333.S,99.9234,98.8167,98.0900,100.0380,98.4661,97.7352,98.7718 -"Machinery (NAICS = 333); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G333.N,IP.G333.N,96.0229,97.7220,101.8422,104.3531,102.5040,102.6005,99.2946 -"Computer and electronic product (NAICS = 334); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G334.S,IP.G334.S,116.2547,115.7863,116.6372,116.4700,116.8292,117.3734,118.0407 -"Computer and electronic product (NAICS = 334); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G334.N,IP.G334.N,117.2521,118.4356,114.5130,113.9434,117.8586,115.0955,116.7904 -"Electrical equipment, appliance, and component (NAICS = 335); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G335.S,IP.G335.S,103.7895,103.6602,103.3027,102.3726,103.7129,103.0045,102.8061 -"Electrical equipment, appliance, and component (NAICS = 335); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G335.N,IP.G335.N,104.8799,102.8962,102.1814,103.1121,104.1277,104.6459,102.9950 -"Motor vehicles and parts (NAICS = 3361-3); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G3361T3.S,IP.G3361T3.S,107.2618,108.6938,104.2914,109.3022,112.2545,110.1839,110.8169 -"Motor vehicles and parts (NAICS = 3361-3); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G3361T3.N,IP.G3361T3.N,106.9852,99.5311,98.5073,114.5838,119.2878,112.8683,110.7883 -"Aerospace and miscellaneous transportation eq. (NAICS = 3364-9); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G3364T9.S,IP.G3364T9.S,89.6076,88.6273,88.9370,88.0333,88.4466,89.4165,89.9849 -"Aerospace and miscellaneous transportation eq. (NAICS = 3364-9); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G3364T9.N,IP.G3364T9.N,89.6990,89.2474,88.8336,88.0360,89.7341,89.3893,89.3898 -"Furniture and related product (NAICS = 337); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G337.S,IP.G337.S,78.1663,77.4047,76.6120,77.6346,76.8983,77.9635,76.3030 -"Furniture and related product (NAICS = 337); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G337.N,IP.G337.N,77.4985,78.1041,75.0173,77.3125,76.5935,77.4333,76.5515 -"Miscellaneous (NAICS = 339); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G339.S,IP.G339.S,108.6155,107.7731,107.1803,109.1906,109.1032,107.8355,107.6699 -"Miscellaneous (NAICS = 339); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G339.N,IP.G339.N,109.1419,108.8593,105.9182,108.8470,108.9057,107.1005,107.0817 -"Nondurable manufacturing (NAICS); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.GMFN.S,IP.GMFN.S,98.7655,99.0714,97.8091,98.8082,98.9604,98.2654,99.0249 -"Nondurable manufacturing (NAICS); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.GMFN.N,IP.GMFN.N,98.5028,98.1646,96.1054,98.3888,99.1099,98.7366,99.2428 -"Food, beverage, and tobacco (NAICS = 311,2); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G311A2.S,IP.G311A2.S,100.0984,100.1352,99.0544,99.4333,99.2812,98.7469,99.2521 -"Food, beverage, and tobacco (NAICS = 311,2); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G311A2.N,IP.G311A2.N,99.6555,97.5040,97.0254,99.7415,100.0863,99.5304,98.1657 -"Textiles and products (NAICS = 313,4); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G313A4.S,IP.G313A4.S,78.4959,77.4111,77.4170,78.7285,78.6954,77.9261,78.9007 -"Textiles and products (NAICS = 313,4); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G313A4.N,IP.G313A4.N,78.1513,75.4446,74.9149,77.2380,78.7409,79.5319,78.1546 -"Apparel and leather goods (NAICS = 315,6); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G315A6.S,IP.G315A6.S,83.1091,82.6296,82.3239,81.4464,80.1442,80.5758,80.5015 -"Apparel and leather goods (NAICS = 315,6); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G315A6.N,IP.G315A6.N,83.0859,82.9259,80.5158,81.4248,80.5041,81.8871,81.1364 -"Paper (NAICS = 322); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G322.S,IP.G322.S,86.5083,86.0626,85.7928,87.2309,86.9525,87.0352,87.4200 -"Paper (NAICS = 322); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G322.N,IP.G322.N,86.2586,84.9091,85.2562,88.0752,86.8167,88.1307,87.5227 -"Printing and related support activities (NAICS = 323); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G323.S,IP.G323.S,80.8839,80.6152,81.6982,82.9202,83.7411,84.5911,83.6783 -"Printing and related support activities (NAICS = 323); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G323.N,IP.G323.N,81.5363,81.7096,80.8798,82.3097,84.1969,84.8544,84.1983 -"Petroleum and coal products (NAICS = 324); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G324.S,IP.G324.S,92.8178,93.6831,92.0300,92.6807,94.6013,91.3883,92.6163 -"Petroleum and coal products (NAICS = 324); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G324.N,IP.G324.N,92.7812,91.5253,85.9813,87.5023,92.4195,92.0565,95.6394 -"Chemical (NAICS = 325); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G325.S,IP.G325.S,103.1023,103.7028,101.8490,103.6740,103.4950,102.8946,104.2388 -"Chemical (NAICS = 325); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G325.N,IP.G325.N,102.7241,104.6321,101.4932,103.7331,103.8465,102.9200,104.9303 -"Plastics and rubber products (NAICS = 326); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G326.S,IP.G326.S,102.7229,103.3795,101.9339,102.3726,102.6433,102.8189,102.9900 -"Plastics and rubber products (NAICS = 326); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G326.N,IP.G326.N,102.5533,103.1052,100.9816,102.7851,102.5686,102.6255,102.7187 -"Other manufacturing; s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.GMFO.S,IP.GMFO.S,79.8641,78.0214,79.9596,80.3461,80.1992,80.1524,80.1049 -"Other manufacturing; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.GMFO.N,IP.GMFO.N,81.8369,77.5252,75.3352,74.8774,73.7969,76.3879,77.2337 -"Mining (NAICS = 21); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G21.S,IP.G21.S,119.7738,120.4936,115.5480,120.5254,119.7642,118.6665,118.8263 -"Mining (NAICS = 21); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G21.N,IP.G21.N,120.6152,119.7234,112.9864,117.8158,118.7593,118.6342,119.4696 -"Electric and gas utilities (NAICS = 2211,2); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G2211A2.S,IP.G2211A2.S,105.5799,103.0754,107.4817,103.5807,101.0509,105.8348,107.6248 -"Electric and gas utilities (NAICS = 2211,2); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G2211A2.N,IP.G2211A2.N,99.4709,108.6596,124.2600,106.1710,98.3833,91.5779,96.4434 -"Electric power generation, transmission, and distribution (NAICS = 2211); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G2211.S,IP.G2211.S,105.0655,103.0898,107.1450,103.7588,101.7011,106.3551,108.4648 -"Electric power generation, transmission, and distribution (NAICS = 2211); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G2211.N,IP.G2211.N,95.2256,101.2066,111.6831,98.8453,93.5672,91.4516,100.2627 -"Natural gas distribution (NAICS = 2212); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G2212.S,IP.G2212.S,108.3072,102.1671,109.0087,101.5217,95.6664,101.3479,100.8262 -"Natural gas distribution (NAICS = 2212); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G2212.N,IP.G2212.N,130.4087,162.1837,214.0639,158.1705,132.1252,91.1617,66.9294 -"Crude processing (capacity); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.B5610C.S,IP.B5610C.S,112.0574,112.8320,108.6723,112.2286,111.9326,110.4681,111.4380 -"Crude processing (capacity); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.B5610C.N,IP.B5610C.N,112.7663,113.0633,108.2382,112.0504,112.1913,110.4690,111.3215 -"Primary & semifinished processing (capacity); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.B562A3C.S,IP.B562A3C.S,98.9088,98.2895,98.5018,98.5791,98.1164,98.7971,99.4620 -"Primary & semifinished processing (capacity); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.B562A3C.N,IP.B562A3C.N,97.2714,98.4724,100.3006,98.1495,97.5912,96.2740,97.3876 -"Finished processing (capacity); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.B5640C.S,IP.B5640C.S,103.0057,102.7718,101.8268,102.9633,103.0624,102.6092,103.1927 -"Finished processing (capacity); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.B5640C.N,IP.B5640C.N,102.5685,101.3062,100.2502,103.6725,104.1794,103.3114,102.9911 -"Durable manufacturing (NAICS); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.GMFD.S,IP.GMFD.S,101.0033,100.6129,99.6460,100.8801,101.0770,100.5525,101.0598 -"Durable manufacturing (NAICS); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.GMFD.N,IP.GMFD.N,100.4241,99.1088,98.1936,101.7373,102.8214,101.7924,101.0796 -"Motor vehicles and parts (NAICS = 3361-3); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3361T3.S,IP.G3361T3.S,107.2618,108.6938,104.2914,109.3022,112.2545,110.1839,110.8169 -"Motor vehicles and parts (NAICS = 3361-3); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3361T3.N,IP.G3361T3.N,106.9852,99.5311,98.5073,114.5838,119.2878,112.8683,110.7883 -"Aerospace and miscellaneous transportation eq. (NAICS = 3364-9); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3364T9.S,IP.G3364T9.S,89.6076,88.6273,88.9370,88.0333,88.4466,89.4165,89.9849 -"Aerospace and miscellaneous transportation eq. (NAICS = 3364-9); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3364T9.N,IP.G3364T9.N,89.6990,89.2474,88.8336,88.0360,89.7341,89.3893,89.3898 -"Wood product (NAICS = 321); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G321.S,IP.G321.S,96.1325,93.2139,92.2001,92.8385,93.6735,92.2891,94.5995 -"Wood product (NAICS = 321); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G321.N,IP.G321.N,93.7804,88.2029,89.8213,92.1674,95.1615,95.3189,95.9304 -"Sawmills and wood preservation (NAICS = 3211); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3211.S,IP.N3211.S,101.0516,93.7120,91.7064,89.9187,,, -"Sawmills and wood preservation (NAICS = 3211); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3211.N,IP.N3211.N,97.0610,82.6377,90.6493,91.4074,,, -"Plywood and misc. wood products (NAICS = 3212,9); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3212A9.S,IP.G3212A9.S,94.1089,92.9947,92.3837,94.0044,93.5158,92.4438,93.3575 -"Plywood and misc. wood products (NAICS = 3212,9); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3212A9.N,IP.G3212A9.N,92.4404,90.4790,89.4931,92.4840,94.6444,94.0118,95.4659 -"Veneer, plywood, and engineered wood product (NAICS = 3212); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3212.S,IP.G3212.S,77.5886,76.8058,75.1384,75.7140,76.8801,76.8784,77.1309 -"Veneer, plywood, and engineered wood product (NAICS = 3212); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3212.N,IP.G3212.N,75.2447,71.9607,70.8811,74.4977,79.6776,77.2958,80.1045 -"Veneer and plywood (NAICS = 321211,2); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G321211A2.S,IP.G321211A2.S,72.2361,71.8618,71.1004,70.4539,70.2145,70.2612,70.1545 -"Veneer and plywood (NAICS = 321211,2); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G321211A2.N,IP.G321211A2.N,72.5467,68.2146,60.9422,71.2879,79.9485,66.4376,73.7888 -"Reconstituted wood product (NAICS = 321219); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G321219.S,IP.G321219.S,64.3138,66.0355,63.6367,67.0454,67.1090,68.1288,68.3174 -"Reconstituted wood product (NAICS = 321219); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G321219.N,IP.G321219.N,57.8315,56.7792,63.1341,67.6761,70.0255,72.0168,70.4479 -"Other wood product (NAICS = 3219); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3219.S,IP.G3219.S,103.2143,101.9141,101.9049,104.1159,102.6758,100.9884,102.2796 -"Other wood product (NAICS = 3219); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3219.N,IP.G3219.N,101.9069,100.6996,99.7692,102.3883,102.7993,103.1807,103.8368 -"Millwork (NAICS = 32191); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G32191.S,IP.G32191.S,102.1926,98.9865,100.1107,100.6453,97.0058,95.5816,96.9864 -"Millwork (NAICS = 32191); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G32191.N,IP.G32191.N,100.7565,98.2957,97.5353,98.1074,96.4484,97.2290,97.8328 -"Wood container and pallet (NAICS = 32192); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N32192.S,IP.N32192.S,101.6463,101.7580,99.8042,106.8836,110.3935,106.0925,108.4521 -"Wood container and pallet (NAICS = 32192); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N32192.N,IP.N32192.N,101.7740,102.7280,98.8259,107.3579,111.3757,106.8548,109.6238 -"All other wood product (NAICS = 32199); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G32199.S,IP.G32199.S,105.9816,107.4439,106.5073,108.8519,108.5366,107.9807,108.3970 -"All other wood product (NAICS = 32199); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G32199.N,IP.G32199.N,103.9575,103.7645,104.4223,107.2115,109.3293,112.0013,111.4554 -"Manufactured home (mobile home) (NAICS = 321991); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N321991.S,IP.N321991.S,79.8919,81.7631,74.9864,86.4634,83.5164,84.3233, -"Manufactured home (mobile home) (NAICS = 321991); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N321991.N,IP.N321991.N,77.2284,66.3619,70.9988,87.0983,87.1126,89.1092, -"Nonmetallic mineral product (NAICS = 327); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G327.S,IP.G327.S,103.5568,103.8036,100.5037,101.5349,99.8449,99.4240,98.6398 -"Nonmetallic mineral product (NAICS = 327); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G327.N,IP.G327.N,104.6532,100.9280,93.3698,94.6871,96.3385,99.3487,100.0069 -"Clay, lime, gypsum, and misc. nonmetallic mineral products (NAICS = 3271,4,9); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3271A4A9.S,IP.G3271A4A9.S,113.5888,114.5343,114.7185,114.2272,113.4208,115.0752,114.6348 -"Clay, lime, gypsum, and misc. nonmetallic mineral products (NAICS = 3271,4,9); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3271A4A9.N,IP.G3271A4A9.N,113.2223,113.9404,113.0530,111.5813,112.1667,115.0346,113.7661 -"Clay and misc. nonmetallic mineral products (NAICS = 3271,9); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3271A9.S,IP.G3271A9.S,115.6488,116.7029,116.9716,116.5307,115.6241,117.4026,116.7982 -"Clay and misc. nonmetallic mineral products (NAICS = 3271,9); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3271A9.N,IP.G3271A9.N,115.7665,116.8762,116.0538,113.5521,113.7848,115.9392,116.1464 -"Clay product and refractory (NAICS = 3271); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3271.S,IP.G3271.S,96.2509,93.4482,91.3825,92.7427,92.4125,93.8398,93.5117 -"Clay product and refractory (NAICS = 3271); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3271.N,IP.G3271.N,97.7831,93.5249,89.4182,91.1706,92.9948,93.6091,94.5458 -"Pottery, ceramics, and plumbing fixture (NAICS = 32711); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G32711.S,IP.G32711.S,107.3894,103.6532,100.9980,101.5107,101.9359,101.6701,102.0310 -"Pottery, ceramics, and plumbing fixture (NAICS = 32711); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G32711.N,IP.G32711.N,111.7582,107.0697,101.3546,99.8913,103.3435,100.6161,103.1481 -"Clay building material and refractories (NAICS = 32712); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G32712.S,IP.G32712.S,91.2336,88.8598,87.0643,88.8207,88.1380,90.3543,89.7051 -"Clay building material and refractories (NAICS = 32712); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G32712.N,IP.G32712.N,91.4585,87.3922,84.0265,87.2782,88.3480,90.5161,90.7130 -"Other nonmetallic mineral product (NAICS = 3279); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3279.S,IP.G3279.S,122.2032,124.5091,125.5316,124.5059,123.4091,125.3030,124.6060 -"Other nonmetallic mineral product (NAICS = 3279); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3279.N,IP.G3279.N,121.8628,124.7155,124.9518,121.0669,120.7847,123.4370,123.4081 -"Lime and gypsum product (NAICS = 3274); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3274.S,IP.G3274.S,104.0164,104.4735,104.2792,103.5627,103.1882,104.2863,104.5502 -"Lime and gypsum product (NAICS = 3274); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3274.N,IP.G3274.N,101.5316,100.5218,99.3451,102.3620,104.4686,110.4078,102.7431 -"Glass and glass product (NAICS = 3272); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3272.S,IP.G3272.S,87.9602,85.3495,80.0835,81.3688,81.8036,82.5212,81.8772 -"Glass and glass product (NAICS = 3272); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3272.N,IP.G3272.N,89.7963,83.3279,78.8015,81.0245,81.9879,81.7929,81.8866 -"Glass container (NAICS = 327213); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G327213.S,IP.G327213.S,68.5616,68.4713,68.9288,69.3652,69.4081,69.6382,69.2214 -"Glass container (NAICS = 327213); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G327213.N,IP.G327213.N,69.0393,53.8953,68.2736,72.6098,71.9389,69.9391,71.5775 -"Cement and concrete product (NAICS = 3273); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3273.S,IP.G3273.S,103.4994,104.4260,99.3800,101.4238,98.2095,95.8169,94.7223 -"Cement and concrete product (NAICS = 3273); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3273.N,IP.G3273.N,105.4041,99.5485,85.8140,88.7996,91.5232,95.9750,98.2682 -"Cement (NAICS = 32731); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N32731.S,IP.N32731.S,90.8291,92.4447,80.8925,95.6672,,, -"Cement (NAICS = 32731); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N32731.N,IP.N32731.N,91.7968,75.0199,58.5768,76.9306,,, -"Concrete and product (NAICS = 32732-9); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N32732T9.S,IP.N32732T9.S,106.0507,106.8418,103.0700,102.6062,99.6312,96.8085,95.5475 -"Concrete and product (NAICS = 32732-9); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N32732T9.N,IP.N32732T9.N,108.0058,104.2939,91.1010,91.0561,92.7550,95.8939,98.3821 -"Primary metal (NAICS = 331); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G331.S,IP.G331.S,94.7484,94.8505,92.7879,93.1306,93.6142,92.5398,93.3915 -"Primary metal (NAICS = 331); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G331.N,IP.G331.N,93.6359,93.2892,91.6072,95.5123,93.5947,94.8508,93.9717 -"Iron and steel products (NAICS = 3311,2); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3311A2.S,IP.G3311A2.S,96.4016,96.0143,93.2059,93.8647,93.6962,91.7677,92.7268 -"Iron and steel products (NAICS = 3311,2); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3311A2.N,IP.G3311A2.N,94.2883,92.1218,93.0310,96.0362,93.1563,94.9818,93.7646 -"Pig iron (NAICS = 3311,2pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3311A2Q.S,IP.G3311A2Q.S,91.9274,86.1023,75.2279,75.6617,75.4970,75.1826,74.4156 -"Pig iron (NAICS = 3311,2pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3311A2Q.N,IP.G3311A2Q.N,88.4540,85.0710,80.6738,80.2027,74.7418,73.1526,72.6815 -"Raw steel (NAICS = 3311,2pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3311A2R.S,IP.N3311A2R.S,90.8912,94.2842,88.8716,92.8086,92.7557,89.3393, -"Raw steel (NAICS = 3311,2pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3311A2R.N,IP.N3311A2R.N,89.6655,90.7653,89.4265,94.0586,91.5444,92.0334, -"Coke and products (NAICS = 3311,2pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3311A2F.S,IP.G3311A2F.S,94.9751,93.7298,92.1224,91.1938,90.5711,90.2756,90.0216 -"Coke and products (NAICS = 3311,2pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3311A2F.N,IP.G3311A2F.N,94.7841,94.1193,92.7132,92.0230,91.7076,91.3446,90.3484 -"Construction steel (NAICS = 3311,2pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3311A2B.S,IP.N3311A2B.S,115.7343,109.5612,110.5093,121.7369,131.1906,123.7957, -"Construction steel (NAICS = 3311,2pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3311A2B.N,IP.N3311A2B.N,115.4217,106.3409,107.7177,121.3575,127.3208,124.9484, -"Consumer durable steel (NAICS = 3311,2pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3311A2C.S,IP.N3311A2C.S,128.9165,149.2249,141.1341,113.7770,106.2795,101.0437, -"Consumer durable steel (NAICS = 3311,2pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3311A2C.N,IP.N3311A2C.N,129.4034,143.0245,142.6964,117.0319,104.9548,109.2792, -"Can and closure steel (NAICS = 3311,2pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3311A2D.S,IP.N3311A2D.S,37.3914,60.3658,45.1853,43.4523,43.5012,48.2137, -"Can and closure steel (NAICS = 3311,2pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3311A2D.N,IP.N3311A2D.N,39.6751,59.3255,41.5704,42.4991,39.6278,47.1273, -"Equipment steel (NAICS = 3311,2pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3311A2E.S,IP.N3311A2E.S,69.3478,68.9558,64.3938,69.2902,77.3130,80.9473, -"Equipment steel (NAICS = 3311,2pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3311A2E.N,IP.N3311A2E.N,69.3721,67.6811,62.6643,68.7370,80.3409,81.0038, -"Miscellaneous steel (NAICS = 3311,2pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3311A2Z.S,IP.N3311A2Z.S,85.4545,79.4834,79.1332,85.1470,83.3087,83.3497, -"Miscellaneous steel (NAICS = 3311,2pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3311A2Z.N,IP.N3311A2Z.N,81.4349,75.1653,78.6273,88.0371,83.7751,86.8014, -"Alumina and aluminum production and processing (NAICS = 3313); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3313.S,IP.G3313.S,89.6810,93.5412,90.6854,90.5367,93.1744,93.0868,94.3577 -"Alumina and aluminum production and processing (NAICS = 3313); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3313.N,IP.G3313.N,87.3930,88.4605,85.3434,97.4676,91.8457,96.1868,95.8850 -"Primary aluminum production (NAICS = 331313pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N331313P.S,IP.N331313P.S,95.5941,97.0563,89.9001,77.1507,79.3415,78.7246, -"Primary aluminum production (NAICS = 331313pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N331313P.N,IP.N331313P.N,96.4253,97.3633,90.9160,78.0854,80.1527,80.3455, -"Secondary smelting and alloying of aluminum (NAICS = 331314); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N331314.S,IP.N331314.S,103.5045,108.6576,96.1229,97.5939,106.2655,, -"Secondary smelting and alloying of aluminum (NAICS = 331314); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N331314.N,IP.N331314.N,103.3576,103.5739,99.2144,108.0600,104.1221,, -"Misc. aluminum materials (NAICS = 331315,8pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N331315A8M.S,IP.N331315A8M.S,90.2052,94.1199,94.4682,96.1208,96.3331,, -"Misc. aluminum materials (NAICS = 331315,8pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N331315A8M.N,IP.N331315A8M.N,87.2814,91.9763,86.2967,101.9240,94.2232,, -"Aluminum extruded product (NAICS = 331318pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N331318E.S,IP.N331318E.S,79.9998,83.6388,80.0906,77.3461,81.9007,, -"Aluminum extruded product (NAICS = 331318pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N331318E.N,IP.N331318E.N,77.2423,71.9481,74.8931,85.7885,82.2064,, -"Nonferrous metal (except aluminum) production and processing (NAICS = 3314); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3314.S,IP.G3314.S,110.5981,110.4087,108.6024,107.5118,108.2434,107.0270,107.4839 -"Nonferrous metal (except aluminum) production and processing (NAICS = 3314); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3314.N,IP.G3314.N,110.5648,114.0894,107.1367,109.1287,109.6223,108.6253,107.6983 -"Nonferrous metal (except aluminum) smelting and refining (NAICS = 33141); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G33141.S,IP.G33141.S,135.1308,139.9248,135.9885,127.7223,134.7340,130.0880,131.3442 -"Nonferrous metal (except aluminum) smelting and refining (NAICS = 33141); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G33141.N,IP.G33141.N,128.7105,154.7910,133.1517,135.0700,143.4719,135.3217,132.4595 -"Primary smelting and refining of copper (NAICS = 33141pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G33141C.S,IP.G33141C.S,146.1428,149.3591,135.1996,134.8566,135.3159,150.1487,144.8788 -"Primary smelting and refining of copper (NAICS = 33141pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G33141C.N,IP.G33141C.N,147.6703,143.2712,143.1039,148.9884,143.6377,144.8232,137.9948 -"Primary smelting and refining of nonferrous metal (except copper and aluminum) (NAICS = 33141pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N33141N.S,IP.N33141N.S,128.3164,133.4803,132.7305,122.3388,131.0991,, -"Primary smelting and refining of nonferrous metal (except copper and aluminum) (NAICS = 33141pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N33141N.N,IP.N33141N.N,119.7777,154.5713,126.9648,127.6576,139.9006,, -"Foundries (NAICS = 3315); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3315.S,IP.G3315.S,80.0014,78.8641,78.8743,80.4585,80.6704,81.1022,81.8331 -"Foundries (NAICS = 3315); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3315.N,IP.G3315.N,81.0506,79.7068,78.5342,81.1025,81.3139,81.5860,81.0798 -"Fabricated metal product (NAICS = 332); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G332.S,IP.G332.S,99.1725,98.6583,99.4315,100.0198,99.5553,99.4377,99.9414 -"Fabricated metal product (NAICS = 332); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G332.N,IP.G332.N,99.1271,99.1399,98.5145,99.9216,99.9591,99.6177,99.7601 -"Forging and stamping (NAICS = 3321); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3321.S,IP.N3321.S,81.6957,80.0285,80.3917,80.4941,80.5234,80.2181,81.7164 -"Forging and stamping (NAICS = 3321); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3321.N,IP.N3321.N,80.5998,79.7142,80.3234,82.1533,81.6111,82.3464,82.8255 -"Cutlery and handtool (NAICS = 3322); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3322.S,IP.N3322.S,97.2738,98.6961,100.6145,100.8878,101.8635,100.1070,101.0255 -"Cutlery and handtool (NAICS = 3322); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3322.N,IP.N3322.N,96.5440,99.7077,98.8850,102.8705,102.1849,101.3455,101.3067 -"Architectural and structural metals (NAICS = 3323); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3323.S,IP.N3323.S,101.0817,99.9107,101.5497,103.9417,102.9107,102.4571,102.4267 -"Architectural and structural metals (NAICS = 3323); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3323.N,IP.N3323.N,101.5194,101.2298,100.2066,103.3624,102.5011,101.7743,101.9843 -"Hardware (NAICS = 3325); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3325.S,IP.G3325.S,90.5332,90.6693,92.3450,93.1143,90.1797,90.7752,92.8059 -"Hardware (NAICS = 3325); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3325.N,IP.G3325.N,87.8878,90.6495,95.1513,95.7850,90.6741,92.3878,90.7966 -"Spring and wire product (NAICS = 3326); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3326.S,IP.N3326.S,88.4814,88.9849,90.6635,91.6471,88.7461,88.8319,90.3339 -"Spring and wire product (NAICS = 3326); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3326.N,IP.N3326.N,88.9182,90.5256,91.2574,93.0286,90.4968,89.3126,88.6180 -"Machine shops; turned product; and screw, nut, and bolt (NAICS = 3327); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3327.S,IP.G3327.S,98.8789,97.6548,97.1726,96.2906,96.5790,96.2262,94.9188 -"Machine shops; turned product; and screw, nut, and bolt (NAICS = 3327); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3327.N,IP.G3327.N,98.4771,97.7623,96.1974,97.0906,97.9936,97.3634,94.9912 -"Coating, engraving, heat treating, and allied activities (NAICS = 3328); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3328.S,IP.N3328.S,107.5200,105.3149,107.1596,104.7473,104.1319,105.8326,105.5086 -"Coating, engraving, heat treating, and allied activities (NAICS = 3328); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3328.N,IP.N3328.N,107.2116,105.5254,104.5334,104.3939,106.3683,107.7382,106.2852 -"Other fabricated metal product (NAICS = 3329); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3329.S,IP.G3329.S,107.9399,107.2420,107.9947,108.0464,108.7195,108.2718,110.6853 -"Other fabricated metal product (NAICS = 3329); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3329.N,IP.G3329.N,109.5216,108.3894,107.4840,108.2780,108.5153,107.9830,110.0876 -"Ball and roller bearing (NAICS = 332991); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G332991.S,IP.G332991.S,77.7282,78.7158,80.2310,82.0477,81.8703,80.4357,82.3561 -"Ball and roller bearing (NAICS = 332991); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G332991.N,IP.G332991.N,77.4125,79.0588,79.5230,82.3913,82.0089,81.3489,82.3139 -"Machinery (NAICS = 333); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G333.S,IP.G333.S,99.9234,98.8167,98.0900,100.0380,98.4661,97.7352,98.7718 -"Machinery (NAICS = 333); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G333.N,IP.G333.N,96.0229,97.7220,101.8422,104.3531,102.5040,102.6005,99.2946 -"Agriculture, construction, and mining machinery (NAICS = 3331); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3331.S,IP.G3331.S,116.3469,114.8840,115.0466,120.0353,115.9182,116.5125,117.8323 -"Agriculture, construction, and mining machinery (NAICS = 3331); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3331.N,IP.G3331.N,114.2102,116.4559,115.5460,122.4782,117.3559,116.6920,117.1487 -"Agricultural implement (NAICS = 33311); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G33311.S,IP.G33311.S,140.4101,138.3931,139.6368,145.9095,139.5033,140.8505,141.7591 -"Agricultural implement (NAICS = 33311); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G33311.N,IP.G33311.N,137.8905,140.5912,140.3152,148.7074,141.3608,141.5278,141.6749 -"Farm machinery and equipment (NAICS = 333111); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G333111.S,IP.G333111.S,149.4556,147.2634,148.5952,155.2712,148.5055,150.1654,151.1550 -"Farm machinery and equipment (NAICS = 333111); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G333111.N,IP.G333111.N,146.7456,149.2037,148.6785,157.4604,149.6326,149.7675,150.6207 -"Construction machinery (NAICS = 33312); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G33312.S,IP.G33312.S,106.6241,105.1333,103.7991,109.2459,106.3278,107.2873,109.5983 -"Construction machinery (NAICS = 33312); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G33312.N,IP.G33312.N,103.9738,105.9787,104.4925,111.7053,108.1641,107.0864,108.0721 -"Mining and oil and gas field machinery (NAICS = 33313); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N33313.S,IP.N33313.S,86.3491,86.1664,87.0324,88.4664,86.8929,85.1772,85.4998 -"Mining and oil and gas field machinery (NAICS = 33313); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N33313.N,IP.N33313.N,86.2369,88.0725,86.9444,90.3515,86.8085,85.1835,85.3103 -"Industrial machinery (NAICS = 3332); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3332.S,IP.G3332.S,97.3665,96.9778,95.9593,94.9748,93.3665,93.9551,94.3763 -"Industrial machinery (NAICS = 3332); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3332.N,IP.G3332.N,97.2983,98.8851,96.5576,95.2132,93.2106,93.6509,94.0774 -"Commercial and service industry machinery and other general purpose machinery (NAICS = 3333,9); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3333A9.S,IP.G3333A9.S,106.2170,105.5002,104.5540,105.1479,104.6021,102.1256,103.7209 -"Commercial and service industry machinery and other general purpose machinery (NAICS = 3333,9); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3333A9.N,IP.G3333A9.N,106.1687,106.2820,103.0892,104.5739,104.9193,102.6043,102.7904 -"HVAC, metalworking, and power transmission machinery (NAICS = 3334-6); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3334T6.S,IP.G3334T6.S,85.2331,83.7316,82.8397,85.3382,84.1054,84.0340,84.5386 -"HVAC, metalworking, and power transmission machinery (NAICS = 3334-6); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3334T6.N,IP.G3334T6.N,75.4883,78.5098,94.3895,96.6700,94.4245,97.2028,87.4961 -"Ventilation, heating, air-conditioning, and commercial refrigeration equipment (NAICS = 3334); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3334.S,IP.G3334.S,78.4142,78.1299,78.9195,84.8895,80.7200,80.3759,81.1060 -"Ventilation, heating, air-conditioning, and commercial refrigeration equipment (NAICS = 3334); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3334.N,IP.G3334.N,57.1304,64.4224,107.6834,110.0765,101.0946,110.5971,88.1479 -"Metalworking machinery (NAICS = 3335); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3335.S,IP.G3335.S,89.9458,90.2727,89.1798,90.5320,92.1833,90.4118,91.5569 -"Metalworking machinery (NAICS = 3335); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3335.N,IP.G3335.N,90.1999,90.8350,88.5449,91.2812,93.5327,90.9263,91.2516 -"Engine, turbine, and power transmission equipment (NAICS = 3336); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3336.S,IP.G3336.S,90.8365,85.6970,82.4309,80.7052,81.1955,83.2119,82.7386 -"Engine, turbine, and power transmission equipment (NAICS = 3336); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3336.N,IP.G3336.N,88.6082,87.5909,80.2209,81.9155,85.5373,83.3412,83.3794 -"Computer and electronic product (NAICS = 334); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G334.S,IP.G334.S,116.2547,115.7863,116.6372,116.4700,116.8292,117.3734,118.0407 -"Computer and electronic product (NAICS = 334); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G334.N,IP.G334.N,117.2521,118.4356,114.5130,113.9434,117.8586,115.0955,116.7904 -"Computer and peripheral equipment (NAICS = 3341); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3341.S,IP.G3341.S,159.1445,157.5085,155.3107,155.6783,159.5835,158.3425,157.4596 -"Computer and peripheral equipment (NAICS = 3341); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3341.N,IP.G3341.N,161.7086,161.4626,149.5702,149.4160,157.0085,157.1016,158.9998 -"Communications equipment (NAICS = 3342); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3342.S,IP.G3342.S,188.7696,191.0098,193.3582,194.3388,195.4557,196.2996,196.7608 -"Communications equipment (NAICS = 3342); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3342.N,IP.G3342.N,199.6017,203.6896,193.5783,185.1689,186.9357,188.5165,194.3320 -"Audio and video equipment (NAICS = 3343); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3343.S,IP.G3343.S,143.3779,140.9688,146.3381,141.6010,143.0997,138.0053,132.0331 -"Audio and video equipment (NAICS = 3343); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3343.N,IP.G3343.N,147.1398,145.4332,140.7524,139.4545,143.5048,137.2101,131.2037 -"Semiconductor and other electronic component (NAICS = 3344); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3344.S,IP.G3344.S,134.0094,134.3801,134.5167,133.4778,133.9621,135.9240,137.0819 -"Semiconductor and other electronic component (NAICS = 3344); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3344.N,IP.G3344.N,135.1296,138.9290,127.9567,125.1806,139.4913,129.8863,133.1868 -"Navigational, measuring, electromedical, and control instruments (NAICS = 3345); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3345.S,IP.G3345.S,95.6685,94.7469,95.7350,95.8193,95.7875,95.9241,96.5798 -"Navigational, measuring, electromedical, and control instruments (NAICS = 3345); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3345.N,IP.G3345.N,95.5140,95.5262,95.4008,96.3222,96.1364,95.5277,96.2990 -"Electrical equipment, appliance, and component (NAICS = 335); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G335.S,IP.G335.S,103.7895,103.6602,103.3027,102.3726,103.7129,103.0045,102.8061 -"Electrical equipment, appliance, and component (NAICS = 335); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G335.N,IP.G335.N,104.8799,102.8962,102.1814,103.1121,104.1277,104.6459,102.9950 -"Household appliance (NAICS = 3352); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3352.S,IP.G3352.S,101.9987,102.5221,98.7689,97.6548,100.4078,98.8023,99.2877 -"Household appliance (NAICS = 3352); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3352.N,IP.G3352.N,101.0625,89.3498,99.4104,105.1754,106.3549,107.7887,103.1224 -"Small electrical appliance (NAICS = 33521); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G33521.S,IP.G33521.S,100.4438,96.2166,91.2716,82.1938,81.3534,76.1105,76.8998 -"Small electrical appliance (NAICS = 33521); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G33521.N,IP.G33521.N,100.8615,99.5803,89.4605,82.0066,79.9982,77.4127,77.8788 -"Major appliance (NAICS = 33522); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G33522.S,IP.G33522.S,102.4675,103.8225,100.2682,100.5367,103.9170,102.9355,103.3674 -"Major appliance (NAICS = 33522); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G33522.N,IP.G33522.N,101.2934,87.7223,101.3428,109.4299,111.1666,113.3008,107.7341 -"Electrical equipment except appliances (NAICS = 3351,3,9); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G335@2.S,IP.G335@2.S,104.1354,103.8687,104.2259,103.3347,104.3774,103.8577,103.5155 -"Electrical equipment except appliances (NAICS = 3351,3,9); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G335@2.N,IP.G335@2.N,105.6534,105.7155,102.7376,102.6531,103.6345,103.9607,102.9442 -"Electric lighting equipment (NAICS = 3351); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3351.S,IP.G3351.S,88.5747,88.6056,85.5835,77.5198,77.5925,72.2188,73.5220 -"Electric lighting equipment (NAICS = 3351); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3351.N,IP.G3351.N,90.7649,92.8176,82.3887,75.8638,75.0805,71.2557,74.0127 -"Electrical equipment (NAICS = 3353); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3353.S,IP.G3353.S,115.5912,114.3974,115.7632,114.8120,116.2509,115.4578,115.5300 -"Electrical equipment (NAICS = 3353); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3353.N,IP.G3353.N,117.2494,116.7703,115.3837,114.8902,116.1830,115.0438,114.1274 -"Other electrical equipment and component (NAICS = 3359); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3359.S,IP.G3359.S,100.5646,100.9068,101.4175,102.4831,103.4983,104.4852,103.3851 -"Other electrical equipment and component (NAICS = 3359); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3359.N,IP.G3359.N,101.8037,101.7385,99.5400,101.4863,102.7156,105.2706,103.1553 -"Battery (NAICS = 33591); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G33591.S,IP.G33591.S,108.6203,110.3979,109.1616,110.7454,113.8580,113.8805,113.7653 -"Battery (NAICS = 33591); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G33591.N,IP.G33591.N,110.6134,107.3471,108.0496,110.7107,111.5704,115.7040,111.1363 -"Communication and energy wire and cable (NAICS = 33592); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N33592.S,IP.N33592.S,105.1447,104.9757,105.6310,106.0584,106.9052,107.4078,106.4498 -"Communication and energy wire and cable (NAICS = 33592); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N33592.N,IP.N33592.N,105.8969,106.6924,105.2531,106.4865,107.4372,107.8010,106.5261 -"Other electrical equipment (NAICS = 33593,9); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G33593T9.S,IP.G33593T9.S,97.4124,97.5438,98.4350,99.5426,100.1018,101.4457,100.0761 -"Other electrical equipment (NAICS = 33593,9); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G33593T9.N,IP.G33593T9.N,98.6714,99.1486,96.0618,98.0218,99.4118,102.1558,100.4099 -"Transportation equipment (NAICS = 336); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G336.S,IP.G336.S,99.2124,99.6526,97.1909,99.7614,101.6563,100.8302,101.4275 -"Transportation equipment (NAICS = 336); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G336.N,IP.G336.N,99.0879,94.5357,93.7645,102.8508,106.2905,102.3871,101.1653 -"Motor vehicle (NAICS = 3361); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3361.S,IP.G3361.S,118.6658,121.0761,114.9001,122.5475,127.5419,123.0637,123.4730 -"Motor vehicle (NAICS = 3361); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3361.N,IP.G3361.N,116.5057,105.6736,108.5721,131.9832,135.0811,128.3196,124.2596 -"Automobile and light duty motor vehicle (NAICS = 33611); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G33611.S,IP.G33611.S,119.6062,121.8832,116.1949,122.9338,127.3935,123.9697,125.3106 -"Automobile and light duty motor vehicle (NAICS = 33611); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G33611.N,IP.G33611.N,117.5855,105.9825,109.9021,132.9715,135.1597,129.0907,126.0633 -"Automobile (NAICS = 336111); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G336111.S,IP.G336111.S,102.6778,103.4095,97.6019,100.8733,104.0952,91.5175,101.1168 -"Automobile (NAICS = 336111); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G336111.N,IP.G336111.N,103.4917,89.4399,92.5930,110.2042,109.0447,96.6037,99.5532 -"Light truck and utility vehicle (NAICS = 336112); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G336112.S,IP.G336112.S,124.4830,127.1860,121.5172,129.2155,134.0219,133.0817,132.1799 -"Light truck and utility vehicle (NAICS = 336112); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G336112.N,IP.G336112.N,121.6821,110.7249,114.8610,139.4686,142.5739,138.2287,133.5639 -"Heavy duty truck (NAICS = 33612); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G33612.S,IP.G33612.S,106.6408,110.9995,97.6817,118.5488,131.3246,111.5488,98.4974 -"Heavy duty truck (NAICS = 33612); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G33612.N,IP.G33612.N,102.4234,102.5872,90.7524,119.3958,135.6712,118.8104,99.7743 -"Motor vehicle body and trailer (NAICS = 3362); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3362.S,IP.G3362.S,91.5125,92.6426,83.7318,87.1364,89.2364,89.8947,91.9849 -"Motor vehicle body and trailer (NAICS = 3362); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3362.N,IP.G3362.N,87.4157,81.6565,77.5897,92.4248,97.6041,97.3943,95.9426 -"Truck trailer (NAICS = 336212); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G336212.S,IP.G336212.S,107.3679,108.3480,91.3921,93.1044,94.2951,94.8334,95.4209 -"Truck trailer (NAICS = 336212); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G336212.N,IP.G336212.N,101.1869,90.8585,79.3844,98.3035,104.8352,100.2011,98.2012 -"Motor home (NAICS = 336213); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N336213.S,IP.N336213.S,72.8625,76.2516,63.4638,66.8183,67.4095,64.7343, -"Motor home (NAICS = 336213); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N336213.N,IP.N336213.N,73.2010,60.5591,63.3563,78.2383,67.9885,71.5133, -"Travel trailer and camper (NAICS = 336214); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G336214.S,IP.G336214.S,69.0596,72.6868,64.1160,69.8131,75.0231,76.3427,79.0264 -"Travel trailer and camper (NAICS = 336214); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G336214.N,IP.G336214.N,62.1262,57.0417,57.7359,78.5386,89.8757,91.3066,88.1980 -"Motor vehicle parts (NAICS = 3363); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3363.S,IP.G3363.S,100.0730,100.6156,99.1098,101.9430,103.1081,102.6708,103.1322 -"Motor vehicle parts (NAICS = 3363); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3363.N,IP.G3363.N,102.6116,98.0086,93.9586,103.2031,109.3200,101.6313,101.2994 -"Aerospace product and parts (NAICS = 3364); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3364.S,IP.G3364.S,86.3619,85.4152,86.2593,84.8419,84.9429,86.1344,86.4399 -"Aerospace product and parts (NAICS = 3364); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3364.N,IP.G3364.N,86.8652,86.5250,86.4456,84.8720,85.3168,85.7311,85.6180 -"Aircraft and parts (NAICS = 336411-3); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G336411T3.S,IP.G336411T3.S,81.1833,80.1432,80.8067,79.5619,79.5254,80.7338,80.9644 -"Aircraft and parts (NAICS = 336411-3); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G336411T3.N,IP.G336411T3.N,81.7033,81.2649,81.0751,79.6213,79.9786,80.3985,80.2706 -"Railroad eq., ships and boats, and other transportation equipment (NAICS = 3365-9); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3365T9.S,IP.G3365T9.S,103.8444,102.7172,101.3384,102.0369,103.4668,103.7761,105.2101 -"Railroad eq., ships and boats, and other transportation equipment (NAICS = 3365-9); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3365T9.N,IP.G3365T9.N,102.6312,101.8072,100.3121,101.9525,107.7158,104.9434,105.3071 -"Railroad rolling stock (NAICS = 3365); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3365.S,IP.N3365.S,74.2546,72.5390,73.4986,71.3694,74.6155,73.6281,75.7847 -"Railroad rolling stock (NAICS = 3365); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3365.N,IP.N3365.N,76.2315,74.1965,72.0562,70.3596,74.6932,72.0230,75.1505 -"Ship and boat building (NAICS = 3366); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3366.S,IP.G3366.S,110.8144,110.5958,107.5167,109.9448,110.3450,110.8620,111.8191 -"Ship and boat building (NAICS = 3366); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3366.N,IP.G3366.N,108.6045,108.0342,105.9581,110.5458,117.3699,113.7771,112.9224 -"Other transportation equipment (NAICS = 3369); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3369.S,IP.N3369.S,102.5896,99.5901,101.1320,99.1021,102.1430,102.6250,104.8900 -"Other transportation equipment (NAICS = 3369); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3369.N,IP.N3369.N,102.1026,101.2726,101.4966,97.7022,101.6633,100.8298,102.7929 -"Furniture and related product (NAICS = 337); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G337.S,IP.G337.S,78.1663,77.4047,76.6120,77.6346,76.8983,77.9635,76.3030 -"Furniture and related product (NAICS = 337); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G337.N,IP.G337.N,77.4985,78.1041,75.0173,77.3125,76.5935,77.4333,76.5515 -"Household and institutional furniture and kitchen cabinet (NAICS = 3371); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3371.S,IP.N3371.S,80.6608,80.8813,80.9499,80.9545,81.2004,82.1105,81.5198 -"Household and institutional furniture and kitchen cabinet (NAICS = 3371); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3371.N,IP.N3371.N,80.1986,81.7522,79.8138,81.2759,81.3108,81.5844,80.9787 -"Office and other furniture (NAICS = 3372,9); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3372A9.S,IP.G3372A9.S,75.6151,73.8739,72.2254,74.2705,72.5613,73.7876,71.0699 -"Office and other furniture (NAICS = 3372,9); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3372A9.N,IP.G3372A9.N,74.7721,74.4289,70.1946,73.3218,71.8505,73.2552,72.0990 -"Miscellaneous (NAICS = 339); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G339.S,IP.G339.S,108.6155,107.7731,107.1803,109.1906,109.1032,107.8355,107.6699 -"Miscellaneous (NAICS = 339); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G339.N,IP.G339.N,109.1419,108.8593,105.9182,108.8470,108.9057,107.1005,107.0817 -"Medical equipment and supplies (NAICS = 3391); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3391.S,IP.N3391.S,114.9348,112.3850,111.4474,113.3801,112.5081,112.1045,111.5870 -"Medical equipment and supplies (NAICS = 3391); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3391.N,IP.N3391.N,115.3970,113.3710,110.9092,113.8322,112.3560,111.1948,110.8274 -"Logging (NAICS = 1133); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N1133.S,IP.N1133.S,91.3456,87.5426,83.3198,89.2743,87.6519,86.4875,88.0152 -"Logging (NAICS = 1133); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N1133.N,IP.N1133.N,93.1294,88.0603,80.1955,89.0513,84.7984,79.0087,81.6223 -"Nondurable manufacturing (NAICS); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.GMFN.S,IP.GMFN.S,98.7655,99.0714,97.8091,98.8082,98.9604,98.2654,99.0249 -"Nondurable manufacturing (NAICS); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.GMFN.N,IP.GMFN.N,98.5028,98.1646,96.1054,98.3888,99.1099,98.7366,99.2428 -"Food (NAICS = 311); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G311.S,IP.G311.S,102.4139,102.3941,101.5545,102.0589,101.3847,101.7611,101.9750 -"Food (NAICS = 311); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G311.N,IP.G311.N,102.9256,101.9844,100.0839,101.6467,101.2335,101.4271,100.0338 -"Animal food (NAICS = 3111); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3111.S,IP.G3111.S,102.3667,101.7800,99.1059,99.8222,99.5495,97.3125,95.4864 -"Animal food (NAICS = 3111); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3111.N,IP.G3111.N,104.1460,103.5003,100.2606,99.7757,98.7146,95.6362,93.2217 -"Grain and oilseed milling (NAICS = 3112); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3112.S,IP.G3112.S,102.4564,103.3433,104.3381,104.8315,105.1981,101.9295,102.9997 -"Grain and oilseed milling (NAICS = 3112); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3112.N,IP.G3112.N,102.3696,102.1280,104.3694,105.2213,108.4834,103.4519,102.5851 -"Sugar and confectionery product (NAICS = 3113); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3113.S,IP.G3113.S,94.1550,95.9359,94.9393,98.6916,103.8260,104.7942,106.6941 -"Sugar and confectionery product (NAICS = 3113); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3113.N,IP.G3113.N,103.9757,106.7814,98.3058,98.6795,104.4640,101.4525,96.7056 -"Fruit and vegetable preserving and specialty food (NAICS = 3114); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3114.S,IP.G3114.S,97.3907,97.2930,96.3178,95.7628,95.1400,95.5517,95.6926 -"Fruit and vegetable preserving and specialty food (NAICS = 3114); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3114.N,IP.G3114.N,94.0911,93.0244,89.6261,90.7907,90.3676,89.9558,90.4416 -"Dairy product (NAICS = 3115); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3115.S,IP.G3115.S,103.5412,104.5344,102.7271,103.4926,104.7341,104.6054,105.1294 -"Dairy product (NAICS = 3115); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3115.N,IP.G3115.N,100.0007,101.8144,101.7964,106.0162,109.5264,109.0894,108.9557 -"Dairy product (except frozen) (NAICS = 31151); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G31151.S,IP.G31151.S,103.2285,104.1426,102.9679,103.0255,103.5362,104.2119,104.6811 -"Dairy product (except frozen) (NAICS = 31151); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G31151.N,IP.G31151.N,101.4592,103.9731,103.8696,105.7294,107.8855,107.9640,108.1180 -"Fluid milk (NAICS = 311511); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N311511.S,IP.N311511.S,101.0419,101.0533,100.5461,100.5633,100.6242,100.4829, -"Fluid milk (NAICS = 311511); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N311511.N,IP.N311511.N,98.3336,99.1829,100.4219,102.2230,103.3344,103.7109, -"Creamery butter (NAICS = 311512); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N311512.S,IP.N311512.S,124.6903,135.8804,129.8590,129.8816,139.1409,141.1448, -"Creamery butter (NAICS = 311512); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N311512.N,IP.N311512.N,119.3065,144.3635,152.3467,150.7775,157.3262,152.2231, -"Cheese (NAICS = 311513); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N311513.S,IP.N311513.S,118.5845,117.7970,117.3960,118.1385,116.9394,119.7154, -"Cheese (NAICS = 311513); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N311513.N,IP.N311513.N,118.6159,118.3825,117.7480,119.5205,120.0702,120.3465, -"Dry, condensed, and evaporated dairy product (NAICS = 311514); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N311514.S,IP.N311514.S,76.3651,80.7622,77.5596,76.4596,79.6484,77.9433, -"Dry, condensed, and evaporated dairy product (NAICS = 311514); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N311514.N,IP.N311514.N,73.7657,81.4812,78.6303,81.2050,87.5500,87.4169, -"Ice cream and frozen dessert (NAICS = 31152); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N31152.S,IP.N31152.S,107.0805,108.7509,101.6273,108.3644,115.7833,108.8962, -"Ice cream and frozen dessert (NAICS = 31152); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N31152.N,IP.N31152.N,89.3353,85.2839,85.9573,110.0548,124.9787,120.1507, -"Animal slaughtering and processing (NAICS = 3116); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3116.S,IP.G3116.S,102.8096,105.2476,102.4347,104.7403,101.1500,103.9664,104.7055 -"Animal slaughtering and processing (NAICS = 3116); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3116.N,IP.G3116.N,104.2097,102.9822,102.5014,105.7244,100.7848,104.8460,101.5912 -"Animal (except poultry) slaughtering and meat processing (NAICS = 311611-3); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G311611T3.S,IP.G311611T3.S,99.9728,103.3502,99.9645,102.6564,97.9372,100.7319,102.1658 -"Animal (except poultry) slaughtering and meat processing (NAICS = 311611-3); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G311611T3.N,IP.G311611T3.N,102.9616,101.8713,100.1694,103.9241,98.1707,102.5082,98.5225 -"Beef (NAICS = 311611-3pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N311611T3B.S,IP.N311611T3B.S,95.3131,99.1194,94.5717,96.9997,92.7253,96.7414, -"Beef (NAICS = 311611-3pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N311611T3B.N,IP.N311611T3B.N,97.2346,95.4518,93.4259,96.5625,91.9802,98.3059, -"Pork (NAICS = 311611-3pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N311611T3P.S,IP.N311611T3P.S,107.0717,109.6918,108.5669,111.6761,106.0323,106.7703, -"Pork (NAICS = 311611-3pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N311611T3P.N,IP.N311611T3P.N,112.0253,112.2376,111.3930,116.1175,107.8512,108.7671, -"Miscellaneous meats (NAICS = 311611-3pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N311611T3Z.S,IP.N311611T3Z.S,107.7117,107.2552,102.6234,106.9418,108.7037,99.2592, -"Miscellaneous meats (NAICS = 311611-3pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N311611T3Z.N,IP.N311611T3Z.N,109.9945,109.2816,98.4168,107.7839,118.1836,105.7100, -"Poultry processing (NAICS = 311615); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N311615.S,IP.N311615.S,108.1858,108.3517,106.9229,108.2776,107.3689,110.1878, -"Poultry processing (NAICS = 311615); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N311615.N,IP.N311615.N,105.6998,104.1637,106.5795,108.5045,105.5396,108.9006, -"Bakeries and tortilla (NAICS = 3118); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N3118.S,IP.N3118.S,102.7328,101.0344,103.8056,102.1412,103.7409,105.1611,106.1836 -"Bakeries and tortilla (NAICS = 3118); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N3118.N,IP.N3118.N,104.2284,103.0034,101.9077,100.8838,102.9896,104.2285,106.0997 -"Other food (NAICS = 3119); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3119.S,IP.G3119.S,109.7678,106.5055,106.4898,106.0029,104.3336,103.2142,102.1322 -"Other food (NAICS = 3119); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3119.N,IP.G3119.N,111.5639,108.1916,104.4226,104.9179,103.7455,103.5254,101.3539 -"Coffee and tea (NAICS = 31192); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G31192.S,IP.G31192.S,92.9166,90.1387,89.6367,88.8552,87.7477,86.8030,86.3665 -"Coffee and tea (NAICS = 31192); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G31192.N,IP.G31192.N,94.1176,91.0868,87.8576,88.1986,86.9934,86.6369,85.0988 -"Beverage and tobacco product (NAICS = 312); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G312.S,IP.G312.S,93.0531,93.2632,91.4395,91.4322,92.8767,89.5602,90.9517 -"Beverage and tobacco product (NAICS = 312); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G312.N,IP.G312.N,89.6724,83.7937,87.6799,93.9289,96.5891,93.7420,92.4616 -"Beverage (NAICS = 3121); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3121.S,IP.G3121.S,111.0687,113.7171,113.5008,114.3952,112.8997,107.4121,110.6259 -"Beverage (NAICS = 3121); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3121.N,IP.G3121.N,106.5729,111.5285,107.3131,112.2686,115.7777,110.6917,113.7064 -"Soft drink and ice (NAICS = 31211); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N31211.S,IP.N31211.S,110.2446,110.6344,114.8050,111.2086,110.4552,108.2629,108.2395 -"Soft drink and ice (NAICS = 31211); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N31211.N,IP.N31211.N,108.2583,107.6201,111.9249,109.3318,109.3710,108.9334,109.7356 -"Breweries (NAICS = 31212); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N31212.S,IP.N31212.S,90.1510,89.7050,91.8520,93.7760,88.8757,, -"Breweries (NAICS = 31212); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N31212.N,IP.N31212.N,77.7687,83.7136,82.5960,88.0542,94.4182,, -"Tobacco (NAICS = 3122); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3122.S,IP.G3122.S,71.7670,69.5613,66.2373,65.3554,69.5563,68.4560,68.0618 -"Tobacco (NAICS = 3122); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3122.N,IP.G3122.N,69.5802,53.2504,64.8828,72.1103,73.8363,73.2481,67.9880 -"Textile mills (NAICS = 313); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G313.S,IP.G313.S,73.5959,72.5925,73.0328,73.9946,76.8721,76.1797,77.9183 -"Textile mills (NAICS = 313); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G313.N,IP.G313.N,74.0972,73.0555,71.0147,73.7398,77.1024,77.5987,77.8232 -"Fiber, yarn, and thread mills (NAICS = 3131); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3131.S,IP.G3131.S,59.9208,59.8151,61.0058,62.2397,64.4527,64.1211,65.4234 -"Fiber, yarn, and thread mills (NAICS = 3131); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3131.N,IP.G3131.N,59.9359,59.9134,59.0053,62.3962,64.8008,65.3019,65.6650 -"Fabric mills (NAICS = 3132); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3132.S,IP.G3132.S,76.0526,74.5208,74.4086,75.1129,78.3705,77.0073,78.8820 -"Fabric mills (NAICS = 3132); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3132.N,IP.G3132.N,76.5136,74.9531,72.9706,74.7891,78.9395,78.6138,78.5754 -"Textile and fabric finishing and fabric coating mills (NAICS = 3133); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3133.S,IP.G3133.S,78.9822,78.3662,79.3534,80.6277,83.2509,83.6073,85.4005 -"Textile and fabric finishing and fabric coating mills (NAICS = 3133); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3133.N,IP.G3133.N,79.9066,79.1475,76.1700,80.2065,82.7318,84.8355,85.4749 -"Textile product mills (NAICS = 314); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G314.S,IP.G314.S,83.8150,82.6406,82.1430,83.8517,80.4681,79.6125,79.7075 -"Textile product mills (NAICS = 314); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G314.N,IP.G314.N,82.5062,77.8788,79.0980,80.9457,80.3008,81.4245,78.2177 -"Textile furnishings mills (NAICS = 3141); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3141.S,IP.G3141.S,72.6925,72.0278,71.8395,72.0958,70.6251,69.8550,70.2465 -"Textile furnishings mills (NAICS = 3141); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3141.N,IP.G3141.N,70.3993,61.5608,67.2287,68.0823,69.9661,73.6846,67.8328 -"Carpet and rug mills (NAICS = 31411); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G31411.S,IP.G31411.S,66.8469,66.5049,66.2029,65.9147,65.6014,65.2245,65.7995 -"Carpet and rug mills (NAICS = 31411); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G31411.N,IP.G31411.N,63.7952,49.0666,60.6383,61.0385,64.9498,71.8866,62.8189 -"Other textile product mills (NAICS = 3149); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3149.S,IP.G3149.S,96.9105,95.1441,94.2879,97.6756,92.0759,91.1182,90.8715 -"Other textile product mills (NAICS = 3149); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3149.N,IP.G3149.N,96.7405,96.9485,93.0479,96.0455,92.4871,90.6289,90.4493 -"Apparel (NAICS = 315); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G315.S,IP.G315.S,73.1155,71.5072,70.8420,69.7989,67.7763,70.0960,69.9564 -"Apparel (NAICS = 315); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G315.N,IP.G315.N,74.0469,73.0594,68.8590,70.3887,68.1409,70.1077,69.7636 -"Leather and allied product (NAICS = 316); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G316.S,IP.G316.S,106.5321,108.5784,109.0743,108.5568,108.8509,105.0609,105.1312 -"Leather and allied product (NAICS = 316); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G316.N,IP.G316.N,104.3720,106.0653,107.6368,107.1660,109.2041,109.2971,107.6259 -"Paper (NAICS = 322); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G322.S,IP.G322.S,86.5083,86.0626,85.7928,87.2309,86.9525,87.0352,87.4200 -"Paper (NAICS = 322); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G322.N,IP.G322.N,86.2586,84.9091,85.2562,88.0752,86.8167,88.1307,87.5227 -"Pulp, paper, and paperboard mills (NAICS = 3221); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3221.S,IP.G3221.S,79.6565,79.0307,79.1456,81.0304,80.7188,80.7024,81.1929 -"Pulp, paper, and paperboard mills (NAICS = 3221); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3221.N,IP.G3221.N,79.5368,78.9417,79.6067,82.1335,80.6204,80.7574,81.9453 -"Pulp mills (NAICS = 32211); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N32211.S,IP.N32211.S,101.7771,101.5701,97.3614,102.1338,103.1109,101.2794, -"Pulp mills (NAICS = 32211); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N32211.N,IP.N32211.N,103.2766,103.0111,97.1498,102.3577,102.1450,101.0635, -"Paper mills (NAICS = 32212); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32212.S,IP.G32212.S,71.7230,70.7616,72.2088,74.0905,73.2217,72.5061,73.0064 -"Paper mills (NAICS = 32212); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32212.N,IP.G32212.N,71.8381,70.2351,73.8232,75.6851,73.1729,72.2847,72.7145 -"Paper (except newsprint) mills (NAICS = 322121); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N322121.S,IP.N322121.S,72.0168,71.0936,72.5608,74.4328,73.5570,, -"Paper (except newsprint) mills (NAICS = 322121); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N322121.N,IP.N322121.N,72.1508,70.5680,74.1946,76.0455,73.5066,, -"Paperboard mills (NAICS = 32213); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N32213.S,IP.N32213.S,85.5769,85.2816,84.5134,85.9200,86.0625,, -"Paperboard mills (NAICS = 32213); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N32213.N,IP.N32213.N,84.8410,85.4015,83.6378,86.5177,85.9912,, -"Converted paper product (NAICS = 3222); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3222.S,IP.G3222.S,93.2299,92.9537,92.3174,93.3353,93.0869,93.2625,93.5481 -"Converted paper product (NAICS = 3222); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3222.N,IP.G3222.N,92.8601,90.7892,90.8350,93.9376,92.9157,95.3433,93.0413 -"Paperboard container (NAICS = 32221); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N32221.S,IP.N32221.S,90.5597,90.2240,89.3539,88.9307,88.3676,, -"Paperboard container (NAICS = 32221); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N32221.N,IP.N32221.N,89.7931,85.4579,86.0230,89.4149,87.9996,, -"Paper bag and coated and treated paper (NAICS = 32222); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32222.S,IP.G32222.S,76.1790,75.2639,74.9511,78.1949,78.8254,77.9433,78.1195 -"Paper bag and coated and treated paper (NAICS = 32222); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32222.N,IP.G32222.N,76.7828,76.8306,75.3889,77.6569,79.2099,79.7869,77.4459 -"Other converted paper products (NAICS = 32223,9); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32223A9.S,IP.G32223A9.S,113.6476,113.9808,113.5634,115.8451,115.5609,116.1187,116.4232 -"Other converted paper products (NAICS = 32223,9); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32223A9.N,IP.G32223A9.N,113.2782,114.1881,114.3186,117.5330,115.3195,116.0557,114.8753 -"Printing and related support activities (NAICS = 323); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G323.S,IP.G323.S,80.8839,80.6152,81.6982,82.9202,83.7411,84.5911,83.6783 -"Printing and related support activities (NAICS = 323); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G323.N,IP.G323.N,81.5363,81.7096,80.8798,82.3097,84.1969,84.8544,84.1983 -"Petroleum and coal products (NAICS = 324); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G324.S,IP.G324.S,92.8178,93.6831,92.0300,92.6807,94.6013,91.3883,92.6163 -"Petroleum and coal products (NAICS = 324); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G324.N,IP.G324.N,92.7812,91.5253,85.9813,87.5023,92.4195,92.0565,95.6394 -"Petroleum refineries (NAICS = 32411); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32411.S,IP.G32411.S,90.1578,91.6079,89.7418,89.7064,91.3937,88.7110,91.1408 -"Petroleum refineries (NAICS = 32411); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32411.N,IP.G32411.N,90.1385,90.5224,85.1309,85.9696,90.2376,89.2669,93.9670 -"Aviation fuel and kerosene (NAICS = 32411pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N32411A.S,IP.N32411A.S,101.8362,103.0353,100.3351,99.7556,105.9787,, -"Aviation fuel and kerosene (NAICS = 32411pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N32411A.N,IP.N32411A.N,100.3866,108.2892,100.1357,96.7606,103.2666,, -"Distillate fuel oil (NAICS = 32411pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N32411D.S,IP.N32411D.S,82.5169,85.3984,80.2481,75.4167,81.9498,, -"Distillate fuel oil (NAICS = 32411pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N32411D.N,IP.N32411D.N,85.8896,87.9612,77.8968,72.3459,79.1624,, -"Automotive gasoline (NAICS = 32411pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N32411G.S,IP.N32411G.S,89.2461,89.6922,89.0564,88.6420,87.7905,, -"Automotive gasoline (NAICS = 32411pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N32411G.N,IP.N32411G.N,89.6991,87.8497,82.9331,85.9517,87.2468,, -"Residual fuel oil (NAICS = 32411pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N32411R.S,IP.N32411R.S,126.0503,134.0203,131.8255,168.0856,161.7377,, -"Residual fuel oil (NAICS = 32411pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N32411R.N,IP.N32411R.N,124.0375,122.6852,136.7002,170.0004,173.2495,, -"Other refinery output (NAICS = 32411pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32411X.S,IP.G32411X.S,88.9543,89.4936,91.4043,95.0272,93.9019,92.0459,94.9725 -"Other refinery output (NAICS = 32411pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32411X.N,IP.G32411X.N,80.5040,80.2521,81.4815,83.1265,92.1495,97.3769,105.2258 -"Paving, roofing, and other petroleum and coal products (NAICS = 32412,9); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N32412A9.S,IP.N32412A9.S,99.2816,96.7964,96.4583,100.8197,103.8334,97.9886,92.5697 -"Paving, roofing, and other petroleum and coal products (NAICS = 32412,9); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N32412A9.N,IP.N32412A9.N,99.4679,89.1690,83.2526,88.3989,96.4462,99.4198,96.6237 -"Chemical (NAICS = 325); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G325.S,IP.G325.S,103.1023,103.7028,101.8490,103.6740,103.4950,102.8946,104.2388 -"Chemical (NAICS = 325); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G325.N,IP.G325.N,102.7241,104.6321,101.4932,103.7331,103.8465,102.9200,104.9303 -"Basic chemical (NAICS = 3251); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3251.S,IP.G3251.S,92.1614,93.1675,88.7701,90.1475,90.9815,89.2180,91.3360 -"Basic chemical (NAICS = 3251); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3251.N,IP.G3251.N,91.6013,92.5453,89.0981,90.0829,91.0580,89.0097,91.3014 -"Organic chemicals (NAICS = 32511,9); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32511A9.S,IP.G32511A9.S,89.1302,90.6436,82.7563,86.2606,86.8901,84.0615,86.9233 -"Organic chemicals (NAICS = 32511,9); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32511A9.N,IP.G32511A9.N,88.3458,89.3082,82.7888,86.6462,87.4589,84.2870,87.5852 -"Basic inorganic chemicals (NAICS = 32512-8); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32512T8.S,IP.G32512T8.S,99.5721,99.4865,102.7072,99.4527,100.7583,101.3286,101.8528 -"Basic inorganic chemicals (NAICS = 32512-8); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32512T8.N,IP.G32512T8.N,99.4959,100.4198,103.6805,98.4040,99.7620,100.1737,100.3010 -"Industrial gas (NAICS = 32512); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32512.S,IP.G32512.S,129.2971,129.0645,134.2221,129.2127,130.6770,131.2824,131.8073 -"Industrial gas (NAICS = 32512); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32512.N,IP.G32512.N,128.9720,130.1226,136.2955,127.0667,129.5796,130.2080,130.4936 -"Synthetic dye and pigment (NAICS = 32513); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32513.S,IP.G32513.S,80.9706,80.5834,83.4902,80.3866,81.5300,81.3400,82.2707 -"Synthetic dye and pigment (NAICS = 32513); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32513.N,IP.G32513.N,81.9065,81.1934,83.2625,78.1557,79.4420,79.3797,80.3678 -"Other basic inorganic chemical (NAICS = 32518pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32518.S,IP.G32518.S,92.4329,92.4497,95.0485,92.3854,93.6724,94.3582,94.8266 -"Other basic inorganic chemical (NAICS = 32518pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32518.N,IP.G32518.N,92.2842,93.3931,95.8221,91.9152,92.8785,93.2936,93.2322 -"Alkalies and chlorine (NAICS = 32518pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N32518C.S,IP.N32518C.S,66.0841,65.9928,67.2990,68.1073,68.3580,, -"Alkalies and chlorine (NAICS = 32518pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N32518C.N,IP.N32518C.N,66.3633,67.9301,68.1741,69.4996,68.2233,, -"Resin, synthetic rubber, and artificial and synthetic fibers and filaments (NAICS = 3252); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3252.S,IP.G3252.S,89.5204,89.5133,83.9471,90.1975,88.6208,86.4759,89.0797 -"Resin, synthetic rubber, and artificial and synthetic fibers and filaments (NAICS = 3252); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3252.N,IP.G3252.N,87.5451,88.3308,84.4594,92.7189,89.4238,88.0627,89.9901 -"Resin and synthetic rubber (NAICS = 32521); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32521.S,IP.G32521.S,91.8298,91.7851,85.8125,92.5890,90.7280,88.7882,91.6241 -"Resin and synthetic rubber (NAICS = 32521); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32521.N,IP.G32521.N,89.7309,90.5369,86.4441,95.1942,91.5593,90.5769,92.6048 -"Plastics material and resin (NAICS = 325211); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N325211.S,IP.N325211.S,93.2095,93.1821,86.7985,94.1521,92.0074,90.0509, -"Plastics material and resin (NAICS = 325211); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N325211.N,IP.N325211.N,90.9989,91.7806,87.3241,96.8413,92.9029,91.9675, -"Synthetic rubber (NAICS = 325212); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G325212.S,IP.G325212.S,78.7882,78.5314,76.9540,77.4900,78.6669,76.8352,77.9344 -"Synthetic rubber (NAICS = 325212); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G325212.N,IP.G325212.N,77.2020,78.2928,78.1689,78.5950,78.2313,76.7201,77.9489 -"Artificial and synthetic fibers and filaments (NAICS = 32522); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32522.S,IP.G32522.S,62.9970,63.3516,62.0255,62.8262,64.0863,60.0401,60.2711 -"Artificial and synthetic fibers and filaments (NAICS = 32522); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32522.N,IP.G32522.N,62.3522,62.8939,61.3613,64.4392,64.5985,59.6190,60.4763 -"Pesticide, fertilizer, and other agricultural chemical (NAICS = 3253); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3253.S,IP.G3253.S,108.1229,115.2019,113.5408,113.7658,112.7723,110.4766,112.0518 -"Pesticide, fertilizer, and other agricultural chemical (NAICS = 3253); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3253.N,IP.G3253.N,112.2210,119.5023,113.2364,114.5440,113.7047,112.1872,111.7819 -"Pharmaceutical and medicine (NAICS = 3254); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3254.S,IP.G3254.S,117.5040,117.7927,117.1764,118.1057,117.7356,118.5174,120.7003 -"Pharmaceutical and medicine (NAICS = 3254); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3254.N,IP.G3254.N,116.6752,120.2844,116.9011,117.2429,118.0141,118.2988,122.4557 -"Chemicals except pharmaceuticals and medicines (NAICS = 3251-3,5-9); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G325@4.S,IP.G325@4.S,94.4714,95.2341,92.7182,95.0170,94.9416,93.5812,94.4500 -"Chemicals except pharmaceuticals and medicines (NAICS = 3251-3,5-9); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G325@4.N,IP.G325@4.N,94.3436,95.3122,92.3285,95.5879,95.3376,93.7483,94.5567 -"Paints, soaps and toiletries, and other chemical products (NAICS = 3255-9); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3255T9.S,IP.G3255T9.S,97.0665,96.5469,97.4285,99.6361,99.2828,98.9303,97.4249 -"Paints, soaps and toiletries, and other chemical products (NAICS = 3255-9); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3255T9.N,IP.G3255T9.N,97.3812,97.1516,95.7727,100.1304,99.7972,98.6428,97.4517 -"Paints and other chemical products (NAICS = 3255,9); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3255A9.S,IP.G3255A9.S,93.2359,95.1046,93.9837,96.1217,95.6168,94.9586,94.0403 -"Paints and other chemical products (NAICS = 3255,9); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3255A9.N,IP.G3255A9.N,93.5690,94.9744,91.5833,96.8927,96.4934,93.8577,93.2277 -"Paint, coating, and adhesive (NAICS = 3255); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3255.S,IP.G3255.S,96.4620,98.0897,99.4210,98.4573,98.7170,95.7093,94.1486 -"Paint, coating, and adhesive (NAICS = 3255); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3255.N,IP.G3255.N,98.5023,97.8644,94.9553,99.4878,100.8623,93.4596,92.3091 -"Paint and coating (NAICS = 32551); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32551.S,IP.G32551.S,90.5631,92.3566,93.7334,92.9425,93.0576,90.3042,88.8315 -"Paint and coating (NAICS = 32551); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32551.N,IP.G32551.N,92.5275,91.7087,89.4222,93.8591,95.5990,88.7320,87.1781 -"Soap, cleaning compound, and toilet preparation (NAICS = 3256); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3256.S,IP.G3256.S,100.8759,97.9749,100.8503,103.1247,102.9202,102.8702,100.7766 -"Soap, cleaning compound, and toilet preparation (NAICS = 3256); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3256.N,IP.G3256.N,101.1724,99.3121,99.9397,103.3465,103.0786,103.4027,101.6506 -"Plastics and rubber products (NAICS = 326); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G326.S,IP.G326.S,102.7229,103.3795,101.9339,102.3726,102.6433,102.8189,102.9900 -"Plastics and rubber products (NAICS = 326); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G326.N,IP.G326.N,102.5533,103.1052,100.9816,102.7851,102.5686,102.6255,102.7187 -"Plastics product (NAICS = 3261); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3261.S,IP.G3261.S,102.7335,103.5135,102.3650,102.8487,103.1214,104.5663,105.0493 -"Plastics product (NAICS = 3261); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3261.N,IP.G3261.N,102.7478,104.3366,101.0826,102.7328,102.7568,103.8851,104.5718 -"Rubber product (NAICS = 3262); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3262.S,IP.G3262.S,102.4198,102.5944,99.9958,100.2592,100.5227,95.7672,94.7281 -"Rubber product (NAICS = 3262); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3262.N,IP.G3262.N,101.5164,98.0260,100.3114,102.7075,101.5575,97.4514,95.2405 -"Tire (NAICS = 32621); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32621.S,IP.G32621.S,88.5036,91.9196,85.1110,89.6031,91.9921,85.8095,85.0933 -"Tire (NAICS = 32621); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32621.N,IP.G32621.N,85.9615,78.5829,84.8169,95.1179,93.8419,89.6257,86.8295 -"Rubber products ex. tires (NAICS = 32622,9); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32622A9.S,IP.G32622A9.S,114.8779,112.1704,113.3024,109.8186,108.2009,104.6954,103.3678 -"Rubber products ex. tires (NAICS = 32622,9); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32622A9.N,IP.G32622A9.N,115.4280,115.3844,114.1763,109.5838,108.5414,104.5236,102.8227 -"Newspaper, periodical, book, and directory publishers (NAICS = 5111); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G5111.S,IP.G5111.S,78.9225,77.2478,79.7190,79.6246,79.6047,79.6539,79.4701 -"Newspaper, periodical, book, and directory publishers (NAICS = 5111); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G5111.N,IP.G5111.N,80.8882,76.6410,74.9411,73.6789,72.8726,76.1892,76.8830 -"Newspaper publishers (NAICS = 51111); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G51111.S,IP.G51111.S,65.0247,64.3866,64.0360,64.5833,64.2337,63.6634,63.0058 -"Newspaper publishers (NAICS = 51111); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G51111.N,IP.G51111.N,69.8942,65.2744,60.5747,64.3022,63.8046,65.3443,61.4445 -"Periodical, book, and other publishers (NAICS = 51112-9); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G51112T9.S,IP.G51112T9.S,85.1823,83.0227,86.8228,86.4223,86.5587,86.9030,86.9460 -"Periodical, book, and other publishers (NAICS = 51112-9); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G51112T9.N,IP.G51112T9.N,85.7387,81.6829,81.4088,77.7790,76.8268,80.9711,83.8546 -"Oil and gas extraction (NAICS = 211); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G211.S,IP.G211.S,143.8338,143.9227,137.9298,143.9949,143.1578,144.0526,144.3853 -"Oil and gas extraction (NAICS = 211); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G211.N,IP.G211.N,145.3082,144.6316,136.8292,143.3060,144.0509,143.9711,144.0101 -"Crude oil (NAICS = 21112); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G21112.S,IP.G21112.S,140.7075,140.6870,134.6857,140.4445,139.8945,140.9490,141.2804 -"Crude oil (NAICS = 21112); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G21112.N,IP.G21112.N,142.0991,141.7658,134.1671,140.0689,140.8879,140.5948,140.5945 -"Natural gas and natural gas liquids (NAICS = 21113); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G21113.S,IP.G21113.S,154.3923,155.0432,149.3097,156.6841,154.5629,154.7390,155.1014 -"Natural gas and natural gas liquids (NAICS = 21113); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G21113.N,IP.G21113.N,155.9002,153.5697,145.0796,154.1190,154.5394,155.4786,155.7337 -"Natural gas (NAICS = 211130pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N21113G.S,IP.N21113G.S,143.1639,143.6470,141.0580,144.6985,140.5302,, -"Natural gas (NAICS = 211130pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N21113G.N,IP.N21113G.N,144.3793,144.6965,140.1587,143.9780,140.2795,, -"Natural gas liquid extraction (NAICS = 211130pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G21113PQ.S,IP.G21113PQ.S,178.5638,179.4579,169.2087,182.0188,182.5587,186.4556,186.8545 -"Natural gas liquid extraction (NAICS = 211130pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G21113PQ.N,IP.G21113PQ.N,180.9199,175.0047,160.7382,177.3336,183.3940,189.1822,188.8176 -"Mining (except oil and gas) (NAICS = 212); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G212.S,IP.G212.S,86.3559,89.2716,82.9441,89.1269,87.8780,82.6708,83.6791 -"Mining (except oil and gas) (NAICS = 212); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G212.N,IP.G212.N,87.0170,84.1367,74.5850,79.0437,81.0361,82.1327,87.4986 -"Coal mining (NAICS = 2121); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N2121.S,IP.N2121.S,74.1466,76.6694,65.5570,70.5587,67.3768,52.7957,55.7676 -"Coal mining (NAICS = 2121); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N2121.N,IP.N2121.N,74.2714,72.0173,67.1017,72.5792,66.7407,52.0795,55.7496 -"Metal ore mining (NAICS = 2122); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G2122.S,IP.G2122.S,79.2800,83.7036,83.3993,85.4154,88.2499,82.6850,89.0450 -"Metal ore mining (NAICS = 2122); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G2122.N,IP.G2122.N,80.8396,86.0247,82.0965,84.5127,85.7981,81.5351,87.2029 -"Iron ore mining (NAICS = 21221); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N21221.S,IP.N21221.S,83.5598,84.1878,79.4679,79.4657,,, -"Iron ore mining (NAICS = 21221); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N21221.N,IP.N21221.N,85.4932,82.9698,72.4303,80.0228,,, -"Gold ore and silver ore mining (NAICS = 21222); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G21222.S,IP.G21222.S,73.4356,76.6912,78.3447,84.4184,82.3239,64.3285,77.6753 -"Gold ore and silver ore mining (NAICS = 21222); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G21222.N,IP.G21222.N,79.2090,82.2409,75.3258,79.6888,76.9675,64.4709,75.7199 -"Copper, nickel, lead, and zinc mining (NAICS = 21223); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G21223.S,IP.G21223.S,88.6951,93.6936,97.3328,97.7357,101.8537,104.0342,106.8447 -"Copper, nickel, lead, and zinc mining (NAICS = 21223); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G21223.N,IP.G21223.N,86.7011,94.5470,96.0233,97.6548,98.6749,102.6257,104.8461 -"Nonmetallic mineral mining and quarrying (NAICS = 2123); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G2123.S,IP.G2123.S,103.4170,105.2962,97.4336,108.4684,105.0692,108.1408,102.4818 -"Nonmetallic mineral mining and quarrying (NAICS = 2123); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G2123.N,IP.G2123.N,103.8573,93.0419,74.3682,79.8493,89.0919,108.4963,114.9947 -"Support activities for mining (NAICS = 213); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G213.S,IP.G213.S,85.1067,85.3053,84.8415,85.3914,85.3800,82.7887,81.5332 -"Support activities for mining (NAICS = 213); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G213.N,IP.G213.N,84.9087,85.4866,84.7791,85.2571,85.6914,84.1464,82.5187 -"Drilling oil and gas wells (NAICS = 213111); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N213111.S,IP.N213111.S,110.4381,109.2864,108.5309,108.0537,109.0561,105.2515,103.1317 -"Drilling oil and gas wells (NAICS = 213111); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N213111.N,IP.N213111.N,109.5611,109.9743,109.2214,109.5304,110.4254,107.4412,105.2789 -"Electric power generation, transmission, and distribution (NAICS = 2211); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G2211.S,IP.G2211.S,105.0655,103.0898,107.1450,103.7588,101.7011,106.3551,108.4648 -"Electric power generation, transmission, and distribution (NAICS = 2211); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G2211.N,IP.G2211.N,95.2256,101.2066,111.6831,98.8453,93.5672,91.4516,100.2627 -"Electric power generation (NAICS = 22111); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G22111.S,IP.G22111.S,101.1111,98.9901,103.3502,97.7617,98.4306,102.6808,104.7277 -"Electric power generation (NAICS = 22111); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G22111.N,IP.G22111.N,93.3563,98.0803,107.7153,95.7917,89.3085,88.9538,97.3953 -"Hydroelectric, renewables, and other (NAICS = 221111,4-8); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G221111A4T8.S,IP.G221111A4T8.S,113.0494,112.6240,109.6527,115.3331,123.9019,120.5544,122.9976 -"Hydroelectric, renewables, and other (NAICS = 221111,4-8); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G221111A4T8.N,IP.G221111A4T8.N,108.3435,108.3226,110.0129,124.5402,134.0012,136.9983,138.2571 -"Hydroelectric power generation (NAICS = 221111); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N221111.S,IP.N221111.S,81.1790,78.0110,77.5688,79.7367,88.3849,, -"Hydroelectric power generation (NAICS = 221111); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N221111.N,IP.N221111.N,73.5545,75.4514,83.4347,82.2351,90.6045,, -"Renewables and other electric power generation (NAICS = 221114-8); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N221114T8.S,IP.N221114T8.S,169.9898,174.2953,166.8187,178.6077,187.0396,, -"Renewables and other electric power generation (NAICS = 221114-8); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N221114T8.N,IP.N221114T8.N,169.0027,165.6375,156.3604,198.2935,209.6567,, -"Fossil Fuel electric power generation (NAICS = 221112); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N221112.S,IP.N221112.S,101.2603,98.2142,107.4179,94.4270,94.6163,, -"Fossil Fuel electric power generation (NAICS = 221112); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N221112.N,IP.N221112.N,89.9124,94.5014,111.0357,87.0671,78.3951,, -"Nuclear electric power generation (NAICS = 221113); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N221113.S,IP.N221113.S,96.5284,95.4494,93.8789,97.3676,96.0530,, -"Nuclear electric power generation (NAICS = 221113); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N221113.N,IP.N221113.N,94.1017,100.7802,101.0464,100.9851,92.6591,, -"Electric power transmission, control, and distribution (NAICS = 22112); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G22112.S,IP.G22112.S,109.0180,107.1899,110.9361,109.7760,104.9648,110.0254,112.1982 -"Electric power transmission, control, and distribution (NAICS = 22112); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G22112.N,IP.G22112.N,97.0774,104.3245,115.6467,101.8910,97.8323,93.9390,103.1204 -"Commercial and other electricity sales (NAICS = 22112pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N22112C.S,IP.N22112C.S,112.9423,112.6972,114.6189,115.0567,112.0986,, -"Commercial and other electricity sales (NAICS = 22112pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N22112C.N,IP.N22112C.N,104.5684,106.9470,111.8967,104.4008,105.5620,, -"Industrial electricity sales (NAICS = 22112pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N22112M.S,IP.N22112M.S,104.9447,103.8477,103.6465,105.0161,103.4009,, -"Industrial electricity sales (NAICS = 22112pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N22112M.N,IP.N22112M.N,101.7497,100.4903,100.8512,94.9895,100.4915,, -"Residential electricity sales (NAICS = 22112pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N22112R.S,IP.N22112R.S,107.3274,103.9299,110.6711,107.2430,99.7047,, -"Residential electricity sales (NAICS = 22112pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N22112R.N,IP.N22112R.N,89.1552,103.6250,124.3297,102.4621,90.5009,, -"Natural gas distribution (NAICS = 2212); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G2212.S,IP.G2212.S,108.3072,102.1671,109.0087,101.5217,95.6664,101.3479,100.8262 -"Natural gas distribution (NAICS = 2212); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G2212.N,IP.G2212.N,130.4087,162.1837,214.0639,158.1705,132.1252,91.1617,66.9294 -"Commercial and other gas sales (NAICS = 2212pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N2212C.S,IP.N2212C.S,108.8951,99.5326,105.4089,99.5938,95.9512,, -"Commercial and other gas sales (NAICS = 2212pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N2212C.N,IP.N2212C.N,131.3808,156.6901,203.0253,157.5580,131.3311,, -"Industrial gas sales (NAICS = 2212pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N2212M.S,IP.N2212M.S,127.7439,127.5925,129.5518,128.1442,127.5964,, -"Industrial gas sales (NAICS = 2212pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N2212M.N,IP.N2212M.N,121.6917,128.8417,137.5963,117.0332,118.7510,, -"Residential gas sales (NAICS = 2212pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N2212R.S,IP.N2212R.S,104.6659,99.6106,105.0638,96.2082,88.1785,, -"Residential gas sales (NAICS = 2212pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N2212R.N,IP.N2212R.N,134.0599,178.3137,249.8789,175.6795,138.4656,, -"Gas transmission (NAICS = 2212pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N2212T.S,IP.N2212T.S,121.0307,113.0457,124.8473,116.8515,112.0967,, -"Gas transmission (NAICS = 2212pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N2212T.N,IP.N2212T.N,124.8380,140.1528,163.5279,131.3193,123.4316,, -"Total index; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B50001.S,IP.B50001.S,102.8868,102.6309,101.7126,102.7423,102.5096,102.4290,103.1168 -"Total index; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B50001.N,IP.B50001.N,102.0599,102.2236,101.9293,102.7705,102.7134,101.4901,102.0452 -"Final products and nonindustrial supplies; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B50030.S,IP.B50030.S,100.9558,100.6803,100.1650,100.9521,100.6369,100.4570,101.0543 -"Final products and nonindustrial supplies; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B50030.N,IP.B50030.N,100.0719,100.3725,100.9810,101.4513,101.2418,99.7429,99.8973 -"Final products; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B50002.S,IP.B50002.S,101.0976,100.8413,100.2914,100.8632,100.5698,100.3143,101.1023 -"Final products; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B50002.N,IP.B50002.N,99.9725,100.5933,102.2494,102.7525,102.0349,99.9137,99.6719 -"Consumer goods; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51000.S,IP.B51000.S,102.1301,101.9747,101.5344,101.8605,101.3827,101.2260,102.2226 -"Consumer goods; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51000.N,IP.B51000.N,100.5608,101.5831,104.7064,104.2842,103.0927,100.5450,100.2951 -"Durable consumer goods; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51100.S,IP.B51100.S,106.8410,107.7707,105.2184,108.3597,109.3133,107.4958,108.1604 -"Durable consumer goods; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51100.N,IP.B51100.N,103.6040,100.5741,105.9994,114.5286,114.5895,113.5371,109.7469 -"Automotive products; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51110.S,IP.B51110.S,110.5159,112.0907,107.2092,111.5191,114.4697,111.8498,112.7071 -"Automotive products; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51110.N,IP.B51110.N,108.4311,100.3880,103.0675,117.9904,120.4969,116.3427,113.9648 -"Autos and trucks, consumer; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51111.S,IP.B51111.S,124.5587,126.6275,120.4132,127.0734,131.3526,127.4490,128.5638 -"Autos and trucks, consumer; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51111.N,IP.B51111.N,122.4438,110.0969,113.8846,137.4467,139.3504,132.7207,129.3247 -"Auto parts and allied goods; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51112.S,IP.B51112.S,93.8607,94.8447,91.4903,93.0783,94.4770,93.3119,93.8489 -"Auto parts and allied goods; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51112.N,IP.B51112.N,91.8549,88.7193,90.1195,95.1764,98.3316,96.9869,95.7627 -"Other durable goods; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51120.S,IP.B51120.S,102.5036,102.6815,102.8363,104.6206,103.2658,102.3757,102.8180 -"Other durable goods; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51120.N,IP.B51120.N,97.9118,100.7190,109.3297,110.4404,107.6722,110.1890,104.7771 -"Computers, video and audio equipment; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51121.S,IP.B51121.S,193.3320,192.7338,195.5366,194.1305,197.4619,195.0704,192.1465 -"Computers, video and audio equipment; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51121.N,IP.B51121.N,197.9791,199.2207,191.7205,189.5825,195.5893,192.6065,191.5501 -"Appliances, furniture, and carpeting; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51122.S,IP.B51122.S,86.0752,84.8087,85.0461,87.7868,82.9139,82.8983,83.3268 -"Appliances, furniture, and carpeting; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51122.N,IP.B51122.N,73.5483,77.4647,104.1751,103.7663,94.7024,102.5543,88.5189 -"Household appliances; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B511221.S,IP.B511221.S,103.1985,100.2174,101.0244,107.7898,96.1828,95.6031,97.4814 -"Household appliances; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B511221.N,IP.B511221.N,73.0567,82.9086,152.0343,149.6710,127.0889,145.9483,112.3685 -"Carpeting and furniture; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B511222.S,IP.B511222.S,76.2495,76.1105,75.9688,76.0181,75.6902,76.0705,75.4916 -"Carpeting and furniture; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B511222.N,IP.B511222.N,74.8038,74.9366,74.3763,75.2643,75.0717,75.6713,74.6605 -"Miscellaneous durable goods; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51123.S,IP.B51123.S,106.4470,107.6313,107.5956,108.8318,109.6939,108.3004,108.8975 -"Miscellaneous durable goods; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51123.N,IP.B51123.N,106.7384,108.8164,105.9657,108.2223,109.3506,108.4459,108.8619 -"Nondurable consumer goods; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51200.S,IP.B51200.S,100.8125,100.3649,100.4944,100.0618,99.1986,99.4895,100.5751 -"Nondurable consumer goods; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51200.N,IP.B51200.N,99.6994,101.8100,104.3163,101.4919,99.9655,97.0178,97.7215 -"Nondurable nonenergy consumer goods; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51210.S,IP.B51210.S,100.7937,100.6022,100.1002,100.6334,100.4642,100.2494,100.8115 -"Nondurable nonenergy consumer goods; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51210.N,IP.B51210.N,100.0693,99.2392,98.1565,100.2398,100.6757,100.4518,100.5152 -"Foods and tobacco; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51211.S,IP.B51211.S,98.7332,98.6339,97.6229,97.8913,97.7897,97.4004,97.8330 -"Foods and tobacco; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51211.N,IP.B51211.N,97.9068,95.3633,95.0366,97.9831,98.5562,98.0718,96.7749 -"Clothing; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51212.S,IP.B51212.S,81.3710,80.7178,80.3717,79.4569,77.9749,78.7165,78.5574 -"Clothing; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51212.N,IP.B51212.N,81.5486,81.2662,78.5135,79.6304,78.2360,79.7850,79.0743 -"Chemical products; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51213.S,IP.B51213.S,109.6586,109.6907,109.8505,110.9870,110.8193,110.9072,111.9961 -"Chemical products; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51213.N,IP.B51213.N,108.8722,111.9979,109.3262,110.2796,110.9562,110.8528,113.7134 -"Paper products; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51214.S,IP.B51214.S,77.8008,76.5657,78.1952,78.2500,78.1352,78.1810,78.0923 -"Paper products; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51214.N,IP.B51214.N,77.9371,75.9691,75.7345,74.3395,73.4412,75.3123,76.3062 -"Miscellaneous nondurable goods; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51215.S,IP.B51215.S,111.1761,108.7783,107.8573,109.9706,108.5406,108.0411,107.6150 -"Miscellaneous nondurable goods; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51215.N,IP.B51215.N,111.4652,109.7796,107.1158,110.0323,108.4050,107.1981,106.8742 -"Consumer energy products; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51220.S,IP.B51220.S,100.1459,98.9571,100.9223,97.6697,94.7766,96.5509,99.1726 -"Consumer energy products; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51220.N,IP.B51220.N,98.1816,108.8658,121.8820,104.6652,97.3679,86.3706,88.9849 -"Fuels; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51221.S,IP.B51221.S,89.6624,90.9881,88.6139,86.8963,88.6485,86.5958,89.6588 -"Fuels; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51221.N,IP.B51221.N,91.1386,90.6884,83.8201,83.9842,87.2868,86.1100,91.5960 -"Residential utilities; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51222.S,IP.B51222.S,106.0022,102.2363,108.6488,103.9608,96.3804,102.0335,104.0695 -"Residential utilities; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51222.N,IP.B51222.N,99.7256,121.4742,154.5883,120.1259,102.1260,81.4833,80.9092 -"Equipment, total; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B52000.S,IP.B52000.S,99.1932,98.6921,97.8750,99.0406,99.1886,98.6941,98.9848 -"Equipment, total; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B52000.N,IP.B52000.N,99.1400,98.7999,96.9431,99.6705,100.0866,98.9767,98.7530 -"Business equipment; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B52100.S,IP.B52100.S,95.0280,94.5220,93.5371,94.8699,94.9388,94.3890,94.7019 -"Business equipment; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B52100.N,IP.B52100.N,94.9142,94.4117,92.4270,95.5358,95.8353,94.6894,94.4473 -"Transit equipment; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B52110.S,IP.B52110.S,74.1531,74.0382,71.3021,73.1572,74.8522,73.5565,73.0901 -"Transit equipment; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B52110.N,IP.B52110.N,73.5426,70.4515,69.0586,75.3128,77.4538,75.1174,73.1881 -"Business vehicles; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.G3361E.S,IP.G3361E.S,103.5897,106.8848,100.7313,111.0182,117.9059,111.8168,110.2863 -"Business vehicles; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.G3361E.N,IP.G3361E.N,101.3044,94.4308,94.9237,118.0134,124.2833,117.0881,111.1819 -"Business light vehicles; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.G33611E.S,IP.G33611E.S,102.0254,104.9705,101.0807,108.0149,113.0294,111.2383,113.3057 -"Business light vehicles; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.G33611E.N,IP.G33611E.N,100.3522,91.3319,95.6557,116.8789,119.9963,115.8546,114.0746 -"Automobile, business (NAICS = 336111pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.G336111B.S,IP.G336111B.S,104.1236,104.6510,98.4723,101.3937,104.2220,91.2540,100.4126 -"Automobile, business (NAICS = 336111pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.G336111B.N,IP.G336111B.N,104.9802,90.5419,93.4488,110.8104,109.2165,96.3603,98.8974 -"Light trucks, business (NAICS = 336112pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.G336112B.S,IP.G336112B.S,101.7844,105.2612,101.8601,109.6760,115.1750,115.7767,116.3388 -"Light trucks, business (NAICS = 336112pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.G336112B.N,IP.G336112B.N,99.5584,91.6948,96.3370,118.4420,122.5835,120.3060,117.6016 -"Information processing and related equipment; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B52120.S,IP.B52120.S,109.9278,109.1165,110.0234,110.1510,110.4027,110.6580,111.2965 -"Information processing and related equipment; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B52120.N,IP.B52120.N,111.0172,111.2487,109.4132,109.4295,109.8882,109.6292,111.0308 -"Industrial and other equipment; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B52130.S,IP.B52130.S,101.5871,100.9827,100.2049,101.6931,100.9350,100.4697,101.0478 -"Industrial and other equipment; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B52130.N,IP.B52130.N,101.3237,101.7997,99.4544,102.1125,101.4964,100.6074,100.6283 -"Industrial equipment; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B52131.S,IP.B52131.S,96.6778,96.4480,95.4756,96.3721,96.2348,95.2253,96.5356 -"Industrial equipment; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B52131.N,IP.B52131.N,96.5367,97.6075,94.8863,96.6439,96.8540,95.4648,95.9237 -"Other equipment; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B52132.S,IP.B52132.S,109.2851,108.0761,107.6244,110.0823,108.3146,108.7499,108.1287 -"Other equipment; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B52132.N,IP.B52132.N,108.8247,108.3330,106.6170,110.7486,108.7860,108.7286,108.0360 -"Oil and gas well drilling and manufactured homes; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B52200.S,IP.B52200.S,106.2407,105.4839,103.9737,105.0205,105.5246,102.3208,100.7464 -"Oil and gas well drilling and manufactured homes; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B52200.N,IP.B52200.N,105.0100,103.9596,103.8551,106.1222,106.8593,104.4803,102.6598 -"Defense and space equipment; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B52300.S,IP.B52300.S,117.2637,116.9270,117.4493,117.6099,118.1046,119.0492,119.9397 -"Defense and space equipment; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B52300.N,IP.B52300.N,118.0410,118.9874,117.2993,117.7881,118.7748,118.4438,118.9818 -"Nonindustrial supplies; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B54000.S,IP.B54000.S,100.6408,100.3182,99.8887,101.2087,100.8400,100.8475,100.9731 -"Nonindustrial supplies; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B54000.N,IP.B54000.N,100.3417,99.8536,97.8786,98.2693,99.3164,99.3570,100.4931 -"Construction supplies; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B54100.S,IP.B54100.S,100.7118,100.2618,98.9601,101.2606,101.1050,100.1295,99.4587 -"Construction supplies; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B54100.N,IP.B54100.N,100.7251,97.7216,92.8194,95.8827,98.3998,100.4591,101.2820 -"Business supplies; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B54200.S,IP.B54200.S,100.6736,100.4124,100.4099,101.2479,100.7732,101.2645,101.7829 -"Business supplies; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B54200.N,IP.B54200.N,100.2261,100.9689,100.4285,99.5030,99.8245,98.8668,100.1563 -"Non-energy business supplies; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B54210.S,IP.B54210.S,97.8577,97.6655,97.4061,98.3426,98.3925,98.0394,97.9969 -"Non-energy business supplies; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B54210.N,IP.B54210.N,98.4714,97.9106,95.1524,96.7676,97.6208,97.5883,97.5229 -"Commercial energy products; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B54220.S,IP.B54220.S,109.1755,108.6969,109.4814,110.0082,107.9097,111.0023,113.2465 -"Commercial energy products; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B54220.N,IP.B54220.N,105.4891,110.2574,116.5726,107.7927,106.4699,102.6498,108.1390 -"Materials; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53000.S,IP.B53000.S,105.1687,104.9382,103.5119,104.8464,104.7182,104.7629,105.5637 -"Materials; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53000.N,IP.B53000.N,104.4007,104.3908,102.9570,104.2646,104.3996,103.5250,104.5823 -"Materials ex. energy materials; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.Z53010.S,IP.Z53010.S,97.3025,97.2561,95.9590,97.1644,97.2682,96.8470,97.7475 -"Materials ex. energy materials; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.Z53010.N,IP.Z53010.N,97.1328,96.3456,94.2880,96.9368,98.0338,97.4661,97.7000 -"Durable goods materials; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53100.S,IP.B53100.S,98.1839,98.0376,97.0680,97.7408,98.0296,97.7699,98.4563 -"Durable goods materials; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53100.N,IP.B53100.N,98.1457,97.1392,94.8015,97.4743,99.1983,98.2023,98.0900 -"Consumer parts; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53110.S,IP.B53110.S,93.8536,95.3559,93.4573,93.7794,94.1454,93.7222,94.2732 -"Consumer parts; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53110.N,IP.B53110.N,94.1857,91.0597,91.9289,97.2971,100.0021,95.7841,92.9192 -"Equipment parts; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53120.S,IP.B53120.S,104.9867,104.1075,104.0526,103.6656,104.1803,104.7578,105.7121 -"Equipment parts; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53120.N,IP.B53120.N,105.3072,105.8155,102.2213,102.3132,105.8024,103.7047,104.5926 -"Computer and other board assemblies and parts; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53121.S,IP.B53121.S,157.6702,152.2900,150.1176,148.1712,142.6785,144.7423,147.8721 -"Computer and other board assemblies and parts; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53121.N,IP.B53121.N,153.6606,154.2557,135.1722,141.0840,161.9612,142.1458,148.1276 -"Semiconductors, printed circuit boards, and other; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53122.S,IP.B53122.S,131.1386,132.1905,132.5136,131.6554,133.0060,134.8899,135.6863 -"Semiconductors, printed circuit boards, and other; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53122.N,IP.B53122.N,132.9015,137.1211,126.9477,122.9874,136.7443,128.3256,131.2370 -"Other equipment parts; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53123.S,IP.B53123.S,97.6873,96.6002,96.5070,96.2075,96.6968,96.9878,97.8599 -"Other equipment parts; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53123.N,IP.B53123.N,97.8698,97.7494,95.6144,96.1670,97.5153,96.8523,97.2490 -"Other durable materials; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53130.S,IP.B53130.S,96.3515,95.9921,94.8941,96.1615,96.3083,95.7033,96.2975 -"Other durable materials; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53130.N,IP.B53130.N,96.0281,95.0098,92.1945,95.1660,95.7377,96.3046,96.6258 -"Basic metals; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53131.S,IP.B53131.S,87.9392,88.1843,86.8494,88.7050,89.5843,87.8801,89.9436 -"Basic metals; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53131.N,IP.B53131.N,87.2813,87.9991,85.5205,90.4036,89.1495,89.0023,89.8457 -"Miscellaneous durable materials; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53132.S,IP.B53132.S,100.5536,99.8962,98.9130,99.8908,99.6759,99.6120,99.4802 -"Miscellaneous durable materials; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53132.N,IP.B53132.N,100.4020,98.5313,95.5496,97.5831,99.0571,99.9784,100.0434 -"Nondurable goods materials; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53200.S,IP.B53200.S,95.9833,96.0914,94.2770,96.3189,96.1291,95.4501,96.6878 -"Nondurable goods materials; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53200.N,IP.B53200.N,95.6089,95.1634,93.5423,96.1530,96.2592,96.3661,97.1464 -"Textile materials; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53210.S,IP.B53210.S,76.0254,74.9471,75.2932,76.4833,78.5391,77.8237,79.3782 -"Textile materials; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53210.N,IP.B53210.N,76.4468,75.5275,73.3170,76.0829,78.7783,79.0432,79.2296 -"Paper materials; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53220.S,IP.B53220.S,81.7449,81.2098,81.4079,83.3230,83.2790,83.3649,83.5713 -"Paper materials; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53220.N,IP.B53220.N,81.7753,81.4734,81.6582,83.9968,83.2659,83.5465,83.9663 -"Chemical materials; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53230.S,IP.B53230.S,98.4585,98.7164,95.2484,97.8295,97.8571,96.7665,98.4849 -"Chemical materials; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53230.N,IP.B53230.N,97.3271,97.5897,94.2509,97.2756,97.9441,97.6850,99.5277 -"Other nondurable materials; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53240.S,IP.B53240.S,101.6542,102.0019,101.6024,102.8937,101.9916,101.5837,102.5371 -"Other nondurable materials; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53240.N,IP.B53240.N,102.2292,100.5670,100.9031,102.9358,102.2545,102.8584,102.1126 -"Containers; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53241.S,IP.B53241.S,94.3607,94.3842,94.7977,96.2641,94.6428,95.5621,96.0541 -"Containers; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53241.N,IP.B53241.N,92.9045,89.3341,92.1282,94.5102,94.2827,96.6776,96.4457 -"Miscellaneous nondurable materials; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53242.S,IP.B53242.S,105.1883,105.6958,104.8764,106.0702,105.5308,104.4410,105.6216 -"Miscellaneous nondurable materials; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53242.N,IP.B53242.N,106.7859,106.0916,105.1621,107.0014,106.0794,105.7579,104.7413 -"Energy materials; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53300.S,IP.B53300.S,117.8693,117.3003,115.6601,117.2095,116.6562,117.5518,118.1578 -"Energy materials; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53300.N,IP.B53300.N,116.0000,117.4410,117.1916,115.9994,114.3641,112.9428,115.4837 -"Primary energy; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53310.S,IP.B53310.S,119.4921,119.5512,115.1872,119.6321,119.0591,118.6827,119.0497 -"Primary energy; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53310.N,IP.B53310.N,119.7513,120.4745,115.9417,120.3798,119.6022,117.9079,118.9723 -"Converted fuel; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53320.S,IP.B53320.S,112.6034,110.6347,115.1735,110.1228,109.6212,113.4261,114.5756 -"Converted fuel; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53320.N,IP.B53320.N,106.1124,109.1510,118.5768,104.6062,101.0237,100.2371,106.1522 -"Total index; s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.B50001.S,IP.B50001.S,102.8868,102.6309,101.7126,102.7423,102.5096,102.4290,103.1168 -"Total index; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.B50001.N,IP.B50001.N,102.0599,102.2236,101.9293,102.7705,102.7134,101.4901,102.0452 -"Energy, total; s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.B50089.S,IP.B50089.S,112.7640,112.0471,111.5248,111.8114,110.5883,111.8183,112.9995 -"Energy, total; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.B50089.N,IP.B50089.N,110.7262,114.6528,118.1646,112.4960,109.6500,105.7544,108.5227 -"Consumer energy products; s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.B51220.S,IP.B51220.S,100.1459,98.9571,100.9223,97.6697,94.7766,96.5509,99.1726 -"Consumer energy products; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.B51220.N,IP.B51220.N,98.1816,108.8658,121.8820,104.6652,97.3679,86.3706,88.9849 -"Commercial energy products; s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.B54220.S,IP.B54220.S,109.1755,108.6969,109.4814,110.0082,107.9097,111.0023,113.2465 -"Commercial energy products; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.B54220.N,IP.B54220.N,105.4891,110.2574,116.5726,107.7927,106.4699,102.6498,108.1390 -"Drilling oil and gas wells (NAICS = 213111); s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.N213111.S,IP.N213111.S,110.4381,109.2864,108.5309,108.0537,109.0561,105.2515,103.1317 -"Drilling oil and gas wells (NAICS = 213111); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.N213111.N,IP.N213111.N,109.5611,109.9743,109.2214,109.5304,110.4254,107.4412,105.2789 -"Converted fuel; s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.B53320.S,IP.B53320.S,112.6034,110.6347,115.1735,110.1228,109.6212,113.4261,114.5756 -"Converted fuel; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.B53320.N,IP.B53320.N,106.1124,109.1510,118.5768,104.6062,101.0237,100.2371,106.1522 -"Primary energy; s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.B53310.S,IP.B53310.S,119.4921,119.5512,115.1872,119.6321,119.0591,118.6827,119.0497 -"Primary energy; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.B53310.N,IP.B53310.N,119.7513,120.4745,115.9417,120.3798,119.6022,117.9079,118.9723 -"Non-energy, total; s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X5001E.S,IP.X5001E.S,99.2774,99.1707,98.1292,99.3939,99.4818,98.9777,99.5028 -"Non-energy, total; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X5001E.N,IP.X5001E.N,98.8689,97.8274,96.3135,99.2450,100.0870,99.7314,99.5694 -"Computers, communications eq., and semiconductors (NAICS = 3341,3342,3344); s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.HITEK2.S,IP.HITEK2.S,147.3698,147.8423,148.1009,147.5552,148.5305,149.9657,150.7908 -"Computers, communications eq., and semiconductors (NAICS = 3341,3342,3344); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.HITEK2.N,IP.HITEK2.N,150.3628,153.8011,142.7857,139.3125,150.8725,144.1629,147.7773 -"Computer and peripheral equipment (NAICS = 3341); s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.G3341.S,IP.G3341.S,159.1445,157.5085,155.3107,155.6783,159.5835,158.3425,157.4596 -"Computer and peripheral equipment (NAICS = 3341); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.G3341.N,IP.G3341.N,161.7086,161.4626,149.5702,149.4160,157.0085,157.1016,158.9998 -"Communications equipment (NAICS = 3342); s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.G3342.S,IP.G3342.S,188.7696,191.0098,193.3582,194.3388,195.4557,196.2996,196.7608 -"Communications equipment (NAICS = 3342); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.G3342.N,IP.G3342.N,199.6017,203.6896,193.5783,185.1689,186.9357,188.5165,194.3320 -"Semiconductor and other electronic component (NAICS = 3344); s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.G3344.S,IP.G3344.S,134.0094,134.3801,134.5167,133.4778,133.9621,135.9240,137.0819 -"Semiconductor and other electronic component (NAICS = 3344); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.G3344.N,IP.G3344.N,135.1296,138.9290,127.9567,125.1806,139.4913,129.8863,133.1868 -"Non-energy ex. computers, communications eq., and semiconductors; s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X5EHTK.S,IP.X5EHTK.S,98.0768,97.9551,96.8883,98.1766,98.2429,97.7002,98.2128 -"Non-energy ex. computers, communications eq., and semiconductors; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X5EHTK.N,IP.X5EHTK.N,97.6068,96.4820,95.1426,98.1765,98.8158,98.5717,98.3372 -"Motor vehicles and parts (NAICS = 3361-3); s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.G3361T3.S,IP.G3361T3.S,107.2618,108.6938,104.2914,109.3022,112.2545,110.1839,110.8169 -"Motor vehicles and parts (NAICS = 3361-3); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.G3361T3.N,IP.G3361T3.N,106.9852,99.5311,98.5073,114.5838,119.2878,112.8683,110.7883 -"Motor vehicle (NAICS = 3361); s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.G3361.S,IP.G3361.S,118.6658,121.0761,114.9001,122.5475,127.5419,123.0637,123.4730 -"Motor vehicle (NAICS = 3361); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.G3361.N,IP.G3361.N,116.5057,105.6736,108.5721,131.9832,135.0811,128.3196,124.2596 -"Motor vehicle parts (NAICS = 3363); s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.G3363.S,IP.G3363.S,100.0730,100.6156,99.1098,101.9430,103.1081,102.6708,103.1322 -"Motor vehicle parts (NAICS = 3363); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.G3363.N,IP.G3363.N,102.6116,98.0086,93.9586,103.2031,109.3200,101.6313,101.2994 -"Non-energy ex. motor vehicles & pts., computers, communications eq., and semiconductors; s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X50EHV.S,IP.X50EHV.S,97.3763,97.1347,96.3264,97.3275,97.1715,96.7471,97.2510 -"Non-energy ex. motor vehicles & pts., computers, communications eq., and semiconductors; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X50EHV.N,IP.X50EHV.N,96.8948,96.2593,94.8970,96.9291,97.2577,97.4897,97.3985 -"Consumer goods ex. hi-tech, motor vehicles & pts., and energy; s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X51HVE.S,IP.X51HVE.S,100.6037,100.4935,99.9655,100.7051,100.4138,100.0149,100.5506 -"Consumer goods ex. hi-tech, motor vehicles & pts., and energy; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X51HVE.N,IP.X51HVE.N,99.2652,98.8014,99.2068,101.2264,101.3342,101.3716,100.6106 -"Business equipment ex. hi-tech and motor vehicles and parts; s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X52HTV.S,IP.X52HTV.S,90.9329,90.1047,89.7739,90.4158,89.8933,89.7089,90.1286 -"Business equipment ex. hi-tech and motor vehicles and parts; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X52HTV.N,IP.X52HTV.N,90.8598,90.9537,89.2741,90.7808,90.3895,89.6664,89.7331 -"Construction supplies ex. hi-tech; s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X5410H.S,IP.X5410H.S,100.5370,100.0813,98.7735,101.0701,100.9099,99.9298,99.2550 -"Construction supplies ex. hi-tech; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X5410H.N,IP.X5410H.N,100.5399,97.5291,92.6344,95.7056,98.2192,100.2745,101.0893 -"Business supplies ex. energy, motor vehicles & parts, and selected high-tech industries; s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X5421T.S,IP.X5421T.S,96.3367,96.1014,95.8095,96.8130,96.8283,96.3868,96.2960 -"Business supplies ex. energy, motor vehicles & parts, and selected high-tech industries; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X5421T.N,IP.X5421T.N,96.9125,96.1716,93.6771,95.4629,95.8608,96.1271,95.9259 -"Materials ex. energy, motor vehicles & pts., computers, communications eq., and semiconductors; s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X53EHV.S,IP.X53EHV.S,95.5098,95.4008,94.1177,95.1867,95.1708,94.6828,95.5750 -"Materials ex. energy, motor vehicles & pts., computers, communications eq., and semiconductors; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X53EHV.N,IP.X53EHV.N,95.0621,94.5128,92.9706,95.0821,95.3107,95.6496,95.8270 -"Total ex. computers, communications eq., and semiconductors; s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X50HTK.S,IP.X50HTK.S,102.0490,101.7794,100.8424,101.8869,101.6336,101.5278,102.2073 -"Total ex. computers, communications eq., and semiconductors; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X50HTK.N,IP.X50HTK.N,101.1706,101.2846,101.1355,102.0302,101.8092,100.6596,101.1673 -"Manufacturing ex. computers, communications eq., and semiconductors; s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X4HTK2.S,IP.X4HTK2.S,98.1502,98.0453,96.9879,98.1078,98.2554,97.6237,98.2279 -"Manufacturing ex. computers, communications eq., and semiconductors; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X4HTK2.N,IP.X4HTK2.N,97.7293,96.7301,95.4012,98.3306,98.9859,98.4719,98.3169 -"Durable mfg. ex. computers, communications eq., and semiconductors; s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X5HTK2.S,IP.X5HTK2.S,98.6231,98.1802,97.1514,98.4532,98.6030,97.9987,98.4856 -"Durable mfg. ex. computers, communications eq., and semiconductors; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X5HTK2.N,IP.X5HTK2.N,97.9209,96.4125,95.8344,99.6234,100.2840,99.4368,98.5756 -"Total ex. motor vehicles and parts; s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X50001.S,IP.X50001.S,102.6877,102.3363,101.6160,102.4210,102.0084,102.0409,102.7327 -"Total ex. motor vehicles and parts; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X50001.N,IP.X50001.N,101.8320,102.4286,102.1770,102.1596,101.8354,100.9058,101.6110 -"Manufacturing ex. motor vehicles and parts; s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.XXX001.S,IP.XXX001.S,98.7674,98.5645,97.7815,98.5920,98.5541,98.0711,98.6858 -"Manufacturing ex. motor vehicles and parts; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.XXX001.N,IP.XXX001.N,98.4023,97.9659,96.4327,98.2895,98.8603,98.6705,98.7338 -"Durable manufacturing ex. motor vehicles & parts; s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X005MV.S,IP.X005MV.S,99.9694,99.2658,98.8410,99.4847,99.2259,98.9485,99.4403 -"Durable manufacturing ex. motor vehicles & parts; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X005MV.N,IP.X005MV.N,99.3551,99.0152,98.0837,99.6280,100.1015,99.9186,99.4417 -"Total ex. selected high-tech. and motor vehicles & pts.; s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X5VHT2.S,IP.X5VHT2.S,101.7990,101.4319,100.6942,101.5121,101.0755,101.0826,101.7657 -"Total ex. selected high-tech. and motor vehicles & pts.; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X5VHT2.N,IP.X5VHT2.N,100.8886,101.4380,101.3405,101.3692,100.8684,100.0204,100.6772 -"Manufacturing ex. hi-tech and motor vehicles & pts.; s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X4HTMV.S,IP.X4HTMV.S,97.4890,97.2688,96.4632,97.2912,97.2285,96.7053,97.3079 -"Manufacturing ex. hi-tech and motor vehicles & pts.; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X4HTMV.N,IP.X4HTMV.N,97.0604,96.5463,95.1958,97.1428,97.4968,97.4263,97.4169 -"Non-energy materials for finished goods producers; s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.B53810.S,IP.B53810.S,96.3408,96.2884,95.7044,96.0383,96.4678,96.5870,97.3040 -"Non-energy materials for finished goods producers; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.B53810.N,IP.B53810.N,96.6139,95.7471,94.3421,96.6660,99.1074,96.8509,96.4169 -"Non-energy materials for intermediate goods producers; s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.B53820.S,IP.B53820.S,97.9893,97.9410,96.2568,97.9227,97.8478,97.1325,98.1264 -"Non-energy materials for intermediate goods producers; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.B53820.N,IP.B53820.N,97.5821,96.8323,94.4197,97.2421,97.6206,97.9478,98.5340 -"Finished processing--gross value; s.a. IP","Index:_2017_100","1","NA",G17/IP_GROSS_VALUE_STAGE_OF_PROCESS_GROUPS/IP.TB56400.S,IP.TB56400.S,104.6564,104.7276,103.2709,104.9838,105.1581,104.3209,105.0146 -"Finished processing--gross value; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_GROSS_VALUE_STAGE_OF_PROCESS_GROUPS/IP.TB56400.N,IP.TB56400.N,104.0218,101.8115,101.2489,106.3864,106.6699,105.5946,104.8879 -"Semifinished processing--gross value; s.a. IP","Index:_2017_100","1","NA",G17/IP_GROSS_VALUE_STAGE_OF_PROCESS_GROUPS/IP.TB56300.S,IP.TB56300.S,100.7290,100.3432,100.6312,101.4323,100.5885,101.2890,101.8285 -"Semifinished processing--gross value; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_GROSS_VALUE_STAGE_OF_PROCESS_GROUPS/IP.TB56300.N,IP.TB56300.N,98.3665,99.0692,99.9940,99.3094,100.1609,98.5388,99.8412 -"Primary processing--gross value; s.a. IP","Index:_2017_100","1","NA",G17/IP_GROSS_VALUE_STAGE_OF_PROCESS_GROUPS/IP.TB56200.S,IP.TB56200.S,95.7231,95.3582,95.0648,94.5126,94.7463,94.3271,95.6169 -"Primary processing--gross value; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_GROSS_VALUE_STAGE_OF_PROCESS_GROUPS/IP.TB56200.N,IP.TB56200.N,95.5535,97.1371,98.8397,96.0529,94.9846,92.6252,93.8824 -"Crude processing--gross value; s.a. IP","Index:_2017_100","1","NA",G17/IP_GROSS_VALUE_STAGE_OF_PROCESS_GROUPS/IP.TB56100.S,IP.TB56100.S,106.2313,107.2760,103.1989,106.3684,106.3149,104.4736,105.8171 -"Crude processing--gross value; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_GROSS_VALUE_STAGE_OF_PROCESS_GROUPS/IP.TB56100.N,IP.TB56100.N,106.7514,107.6120,102.7261,106.3210,106.5340,104.4368,105.7559 -"Total motor vehicle assemblies; s.a.","Number","1000000","NA",G17/MVA/MVA.TOTASS.S,MVA.TOTASS.S,10.8879,11.0043,10.4817,11.2359,11.7237,11.1467,11.0858 -"Total motor vehicle assemblies; n.s.a.","Number","1000000","NA",G17/MVA/MVA.TOTASS.N,MVA.TOTASS.N,10.6685,9.2178,10.4186,11.6127,11.8042,11.7845,11.8163 -"Auto assemblies; s.a.","Number","1000000","NA",G17/MVA/MVA.AUTOAS.S,MVA.AUTOAS.S,1.7640,1.7315,1.6185,1.6992,1.8048,1.4686,1.6250 -"Auto assemblies; n.s.a.","Number","1000000","NA",G17/MVA/MVA.AUTOAS.N,MVA.AUTOAS.N,1.7768,1.4426,1.6119,1.7639,1.7346,1.6053,1.7110 -"Truck assemblies; s.a.","Number","1000000","NA",G17/MVA/MVA.TRUCKS.S,MVA.TRUCKS.S,9.1240,9.2728,8.8633,9.5367,9.9189,9.6781,9.4608 -"Truck assemblies; n.s.a.","Number","1000000","NA",G17/MVA/MVA.TRUCKS.N,MVA.TRUCKS.N,8.8917,7.7752,8.8067,9.8488,10.0696,10.1792,10.1053 -"Light truck assemblies; s.a.","Number","1000000","NA",G17/MVA/MVA.LTTRCK.S,MVA.LTTRCK.S,8.7963,8.9261,8.5591,9.1670,9.5144,9.3334,9.1564 -"Light truck assemblies; n.s.a.","Number","1000000","NA",G17/MVA/MVA.LTTRCK.N,MVA.LTTRCK.N,8.5738,7.4673,8.5078,9.4899,9.6681,9.8092,9.7804 -"Heavy and medium truck assemblies; s.a.","Number","1000000","NA",G17/MVA/MVA.HMTRCK.S,MVA.HMTRCK.S,0.3277,0.3467,0.3042,0.3697,0.4045,0.3447,0.3043 -"Heavy and medium truck assemblies; n.s.a.","Number","1000000","NA",G17/MVA/MVA.HMTRCK.N,MVA.HMTRCK.N,0.3179,0.3080,0.2989,0.3589,0.4015,0.3700,0.3249 -"Autos and light truck assemblies; s.a.","Number","1000000","NA",G17/MVA/MVA.AUTLTT.S,MVA.AUTLTT.S,10.5602,10.6576,10.1776,10.8662,11.3193,10.8020,10.7815 -"Autos and light truck assemblies; n.s.a.","Number","1000000","NA",G17/MVA/MVA.AUTLTT.N,MVA.AUTLTT.N,10.3506,8.9099,10.1198,11.2538,11.4027,11.4145,11.4915 -"Diffusion index of industrial production, one month earlier; s.a. DIFF","Percentage","1","NA",G17/DIFF/DIFF.DIFFUSION_1.S,DIFF.DIFFUSION_1.S,47.1380,49.1582,39.0572,60.9428,57.0707,44.9495, -"Diffusion index of industrial production, three months earlier; s.a. DIFF","Percentage","1","NA",G17/DIFF/DIFF.DIFFUSION_3.S,DIFF.DIFFUSION_3.S,45.7912,48.8215,42.0875,51.8519,55.2189,58.4175, -"Diffusion index of industrial production, six months earlier; s.a. DIFF","Percentage","1","NA",G17/DIFF/DIFF.DIFFUSION_6.S,DIFF.DIFFUSION_6.S,42.4242,47.8114,36.3636,49.8316,50.8418,49.4949, -"Total index; s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.B50001.S,CAP.B50001.S,131.2045,131.3400,131.4640,131.5817,131.6950,131.8059,131.9192 -"Manufacturing (SIC); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.B00004.S,CAP.B00004.S,127.8297,127.9617,128.0940,128.2274,128.3620,128.4973,128.6346 -"Manufacturing (NAICS); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.GMF.S,CAP.GMF.S,128.5790,128.7252,128.8715,129.0188,129.1672,129.3164,129.4674 -"Durable manufacturing (NAICS); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.GMFD.S,CAP.GMFD.S,131.9592,132.1061,132.2620,132.4268,132.5999,132.7796,132.9653 -"Wood product (NAICS = 321); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G321.S,CAP.G321.S,123.3944,123.4772,123.5555,123.6292,123.6987,123.7640,123.8254 -"Nonmetallic mineral product (NAICS = 327); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G327.S,CAP.G327.S,128.8596,128.8548,128.8405,128.8162,128.7828,128.7413,128.6929 -"Primary metal (NAICS = 331); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G331.S,CAP.G331.S,133.3743,133.3878,133.4384,133.5270,133.6527,133.8129,134.0026 -"Fabricated metal product (NAICS = 332); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G332.S,CAP.G332.S,129.5378,129.5421,129.5411,129.5346,129.5228,129.5063,129.4857 -"Machinery (NAICS = 333); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G333.S,CAP.G333.S,121.1830,121.2030,121.2418,121.2975,121.3685,121.4522,121.5457 -"Computer and electronic product (NAICS = 334); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G334.S,CAP.G334.S,152.5163,153.2125,153.9360,154.6851,155.4581,156.2498,157.0595 -"Electrical equipment, appliance, and component (NAICS = 335); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G335.S,CAP.G335.S,129.5607,129.6564,129.7616,129.8753,129.9964,130.1234,130.2547 -"Motor vehicles and parts (NAICS = 3361-3); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G3361T3.S,CAP.G3361T3.S,146.3264,146.5469,146.7671,146.9929,147.2258,147.4658,147.7166 -"Aerospace and miscellaneous transportation eq. (NAICS = 3364-9); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G3364T9.S,CAP.G3364T9.S,126.3413,126.3523,126.3681,126.3870,126.4081,126.4303,126.4520 -"Furniture and related product (NAICS = 337); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G337.S,CAP.G337.S,112.3962,112.1643,111.9127,111.6424,111.3555,111.0553,110.7437 -"Miscellaneous (NAICS = 339); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G339.S,CAP.G339.S,132.5703,133.1759,133.7933,134.4238,135.0667,135.7185,136.3806 -"Nondurable manufacturing (NAICS); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.GMFN.S,CAP.GMFN.S,125.2142,125.3661,125.5105,125.6484,125.7807,125.9079,126.0326 -"Food, beverage, and tobacco (NAICS = 311,2); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G311A2.S,CAP.G311A2.S,124.5748,124.5484,124.5199,124.4892,124.4572,124.4247,124.3923 -"Textiles and products (NAICS = 313,4); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G313A4.S,CAP.G313A4.S,115.8101,115.4985,115.1883,114.8766,114.5632,114.2491,113.9320 -"Apparel and leather goods (NAICS = 315,6); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G315A6.S,CAP.G315A6.S,128.1266,128.1375,128.1182,128.0677,127.9879,127.8815,127.7523 -"Paper (NAICS = 322); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G322.S,CAP.G322.S,105.7291,105.6613,105.6021,105.5513,105.5082,105.4721,105.4414 -"Printing and related support activities (NAICS = 323); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G323.S,CAP.G323.S,111.7576,111.8182,111.8880,111.9665,112.0529,112.1457,112.2439 -"Petroleum and coal products (NAICS = 324); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G324.S,CAP.G324.S,102.6049,102.7416,102.8437,102.9095,102.9412,102.9417,102.9157 -"Chemical (NAICS = 325); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G325.S,CAP.G325.S,135.9338,136.2928,136.6570,137.0260,137.3992,137.7746,138.1538 -"Plastics and rubber products (NAICS = 326); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G326.S,CAP.G326.S,133.8804,134.3243,134.7517,135.1619,135.5547,135.9294,136.2902 -"Other manufacturing; s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.GMFO.S,CAP.GMFO.S,100.9268,100.5249,100.1289,99.7367,99.3484,98.9651,98.5841 -"Mining (NAICS = 21); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G21.S,CAP.G21.S,134.2743,134.2614,134.2058,134.1197,134.0079,133.8768,133.7382 -"Electric and gas utilities (NAICS = 2211,2); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G2211A2.S,CAP.G2211A2.S,145.6854,146.0951,146.5040,146.9153,147.3298,147.7467,148.1697 -"Computers, communications eq., and semiconductors (NAICS = 3341,3342,3344); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.HITEK2.S,CAP.HITEK2.S,182.7253,184.4333,186.1752,187.9470,189.7460,191.5621,193.3988 -"Computer and peripheral equipment (NAICS = 3341); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G3341.S,CAP.G3341.S,207.4664,207.9181,208.3291,208.7017,209.0385,209.3418,209.6198 -"Communications equipment (NAICS = 3342); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G3342.S,CAP.G3342.S,251.6126,254.0119,256.4305,258.8734,261.3387,263.8157,266.3171 -"Total ex. computers, communications eq., and semiconductors; s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.X50HTK.S,CAP.X50HTK.S,130.2222,130.3355,130.4368,130.5314,130.6214,130.7088,130.7984 -"Manufacturing ex. computers, communications eq., and semiconductors; s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.X4HTK2.S,CAP.X4HTK2.S,126.4564,126.5597,126.6626,126.7663,126.8708,126.9759,127.0827 -"Crude processing (capacity); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.B5610C.S,CAP.B5610C.S,128.8488,128.8364,128.7944,128.7324,128.6544,128.5656,128.4749 -"Primary & semifinished processing (capacity); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.B562A3C.S,CAP.B562A3C.S,128.3863,128.5539,128.7188,128.8821,129.0443,129.2054,129.3673 -"Finished processing (capacity); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.B5640C.S,CAP.B5640C.S,134.5154,134.7039,134.8945,135.0886,135.2858,135.4853,135.6883 -"Iron and steel products (NAICS = 3311,2); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G3311A2.S,CAP.G3311A2.S,130.5325,130.6377,130.7534,130.8819,131.0235,131.1773,131.3421 -"Transportation equipment (NAICS = 336); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G336.S,CAP.G336.S,137.0128,137.1414,137.2712,137.4056,137.5447,137.6884,137.8382 -"Automobile and light duty motor vehicle (NAICS = 33611); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G33611.S,CAP.G33611.S,164.6889,164.9598,165.2365,165.5300,165.8428,166.1760,166.5340 -"Food (NAICS = 311); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G311.S,CAP.G311.S,120.5738,120.5215,120.4686,120.4148,120.3598,120.3039,120.2469 -"Beverage and tobacco product (NAICS = 312); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G312.S,CAP.G312.S,137.0904,137.1571,137.2245,137.2903,137.3566,137.4247,137.4942 -"Textile mills (NAICS = 313); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G313.S,CAP.G313.S,113.5990,113.1528,112.7046,112.2521,111.7958,111.3379,110.8765 -"Textile product mills (NAICS = 314); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G314.S,CAP.G314.S,117.8124,117.6380,117.4624,117.2850,117.1058,116.9256,116.7439 -"Apparel (NAICS = 315); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G315.S,CAP.G315.S,120.6205,120.3936,120.1604,119.9208,119.6754,119.4261,119.1726 -"Leather and allied product (NAICS = 316); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G316.S,CAP.G316.S,147.0717,147.5852,147.9977,148.3140,148.5415,148.6886,148.7726 -"Plastics material and resin (NAICS = 325211); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.N325211.S,CAP.N325211.S,110.8970,111.0182,111.1692,111.3509,111.5620,111.7994,112.0592 -"Synthetic rubber (NAICS = 325212); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G325212.S,CAP.G325212.S,148.5472,148.4654,148.3795,148.2894,148.1952,148.0977,147.9972 -"Artificial and synthetic fibers and filaments (NAICS = 32522); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G32522.S,CAP.G32522.S,81.8223,81.2370,80.6514,80.0697,79.4899,78.9129,78.3381 -"Oil and gas extraction (NAICS = 211); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G211.S,CAP.G211.S,147.0047,147.4789,147.9092,148.3009,148.6578,148.9831,149.2870 -"Mining (except oil and gas) (NAICS = 212); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G212.S,CAP.G212.S,124.8808,124.8299,124.8116,124.8195,124.8509,124.9017,124.9640 -"Coal mining (NAICS = 2121); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.N2121.S,CAP.N2121.S,105.6030,105.2927,105.0149,104.7695,104.5556,104.3715,104.2107 -"Metal ore mining (NAICS = 2122); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G2122.S,CAP.G2122.S,150.3343,150.4960,150.7247,151.0086,151.3429,151.7196,152.1242 -"Nonmetallic mineral mining and quarrying (NAICS = 2123); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G2123.S,CAP.G2123.S,118.6980,118.6562,118.5997,118.5286,118.4436,118.3460,118.2378 -"Support activities for mining (NAICS = 213); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G213.S,CAP.G213.S,107.9996,106.9914,105.9700,104.9326,103.8812,102.8228,101.7562 -"Electric power generation, transmission, and distribution (NAICS = 2211); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G2211.S,CAP.G2211.S,146.0983,146.5681,147.0439,147.5266,148.0152,148.5072,149.0041 -"Natural gas distribution (NAICS = 2212); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G2212.S,CAP.G2212.S,138.4924,138.5246,138.5541,138.5812,138.6060,138.6287,138.6499 -"Manufacturing ex. hi-tech and motor vehicles & pts.; s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.X4HTMV.S,CAP.X4HTMV.S,124.9927,125.0892,125.1859,125.2830,125.3807,125.4785,125.5772 -"Total index; s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.B50001.S,CAPUTL.B50001.S,78.4172,78.1414,77.3692,78.0825,77.8386,77.7120,78.1666 -"Manufacturing (SIC); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.B00004.S,CAPUTL.B00004.S,77.7019,77.5511,76.6647,77.4423,77.4918,76.9489,77.3452 -"Manufacturing (NAICS); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.GMF.S,CAPUTL.GMF.S,77.6717,77.5490,76.5981,77.3775,77.4247,76.8656,77.2647 -"Durable manufacturing (NAICS); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.GMFD.S,CAPUTL.GMFD.S,76.5413,76.1607,75.3399,76.1780,76.2270,75.7289,76.0047 -"Wood product (NAICS = 321); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G321.S,CAPUTL.G321.S,77.9067,75.4908,74.6224,75.0943,75.7271,74.5686,76.3975 -"Nonmetallic mineral product (NAICS = 327); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G327.S,CAPUTL.G327.S,80.3641,80.5586,78.0063,78.8215,77.5297,77.2277,76.6474 -"Primary metal (NAICS = 331); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G331.S,CAPUTL.G331.S,71.0394,71.1088,69.5362,69.7466,70.0429,69.1561,69.6938 -"Fabricated metal product (NAICS = 332); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G332.S,CAPUTL.G332.S,76.5588,76.1592,76.7567,77.2147,76.8631,76.7822,77.1834 -"Machinery (NAICS = 333); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G333.S,CAPUTL.G333.S,82.4566,81.5299,80.9045,82.4732,81.1299,80.4721,81.2631 -"Computer and electronic product (NAICS = 334); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G334.S,CAPUTL.G334.S,76.2245,75.5723,75.7699,75.2949,75.1516,75.1190,75.1567 -"Electrical equipment, appliance, and component (NAICS = 335); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G335.S,CAPUTL.G335.S,80.1088,79.9499,79.6096,78.8238,79.7814,79.1591,78.9269 -"Motor vehicles and parts (NAICS = 3361-3); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G3361T3.S,CAPUTL.G3361T3.S,73.3031,74.1699,71.0591,74.3588,76.2465,74.7183,75.0199 -"Aerospace and miscellaneous transportation eq. (NAICS = 3364-9); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G3364T9.S,CAPUTL.G3364T9.S,70.9251,70.1430,70.3793,69.6538,69.9691,70.7240,71.1613 -"Furniture and related product (NAICS = 337); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G337.S,CAPUTL.G337.S,69.5453,69.0101,68.4569,69.5386,69.0566,70.2024,68.9006 -"Miscellaneous (NAICS = 339); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G339.S,CAPUTL.G339.S,81.9305,80.9254,80.1088,81.2286,80.7773,79.4552,78.9481 -"Nondurable manufacturing (NAICS); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.GMFN.S,CAPUTL.GMFN.S,78.8772,79.0257,77.9290,78.6386,78.6770,78.0454,78.5709 -"Food, beverage, and tobacco (NAICS = 311,2); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G311A2.S,CAPUTL.G311A2.S,80.3520,80.3986,79.5491,79.8730,79.7714,79.3628,79.7895 -"Textiles and products (NAICS = 313,4); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G313A4.S,CAPUTL.G313A4.S,67.7798,67.0235,67.2090,68.5331,68.6917,68.2072,69.2524 -"Apparel and leather goods (NAICS = 315,6); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G315A6.S,CAPUTL.G315A6.S,64.8648,64.4851,64.2562,63.5964,62.6186,63.0082,63.0138 -"Paper (NAICS = 322); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G322.S,CAPUTL.G322.S,81.8207,81.4513,81.2415,82.6432,82.4131,82.5196,82.9085 -"Printing and related support activities (NAICS = 323); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G323.S,CAPUTL.G323.S,72.3744,72.0950,73.0178,74.0580,74.7336,75.4297,74.5504 -"Petroleum and coal products (NAICS = 324); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G324.S,CAPUTL.G324.S,90.4613,91.1833,89.4853,90.0604,91.8984,88.7767,89.9924 -"Chemical (NAICS = 325); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G325.S,CAPUTL.G325.S,75.8474,76.0882,74.5289,75.6601,75.3243,74.6833,75.4513 -"Plastics and rubber products (NAICS = 326); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G326.S,CAPUTL.G326.S,76.7273,76.9626,75.6457,75.7407,75.7209,75.6414,75.5667 -"Other manufacturing; s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.GMFO.S,CAPUTL.GMFO.S,79.1307,77.6139,79.8567,80.5582,80.7252,80.9905,81.2554 -"Mining (NAICS = 21); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G21.S,CAPUTL.G21.S,89.2009,89.7455,86.0976,89.8641,89.3710,88.6386,88.8500 -"Electric and gas utilities (NAICS = 2211,2); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G2211A2.S,CAPUTL.G2211A2.S,72.4711,70.5536,73.3644,70.5037,68.5882,71.6326,72.6362 -"Computers, communications eq., and semiconductors (NAICS = 3341,3342,3344); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.HITEK2.S,CAPUTL.HITEK2.S,80.6510,80.1603,79.5492,78.5089,78.2786,78.2857,77.9688 -"Computer and peripheral equipment (NAICS = 3341); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G3341.S,CAPUTL.G3341.S,76.7086,75.7551,74.5507,74.5937,76.3417,75.6383,75.1168 -"Communications equipment (NAICS = 3342); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G3342.S,CAPUTL.G3342.S,75.0239,75.1972,75.4038,75.0710,74.7902,74.4078,73.8821 -"Total ex. computers, communications eq., and semiconductors; s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.X50HTK.S,CAPUTL.X50HTK.S,78.3653,78.0903,77.3113,78.0555,77.8077,77.6748,78.1410 -"Manufacturing ex. computers, communications eq., and semiconductors; s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.X4HTK2.S,CAPUTL.X4HTK2.S,77.6158,77.4696,76.5718,77.3926,77.4452,76.8836,77.2945 -"Crude processing (capacity); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.B5610C.S,CAPUTL.B5610C.S,86.9681,87.5777,84.3765,87.1798,87.0026,85.9235,86.7391 -"Primary & semifinished processing (capacity); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.B562A3C.S,CAPUTL.B562A3C.S,77.0400,76.4578,76.5248,76.4878,76.0331,76.4651,76.8834 -"Finished processing (capacity); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.B5640C.S,CAPUTL.B5640C.S,76.5754,76.2946,75.4862,76.2191,76.1812,75.7346,76.0513 -"Iron and steel products (NAICS = 3311,2); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G3311A2.S,CAPUTL.G3311A2.S,73.8526,73.4967,71.2837,71.7171,71.5110,69.9570,70.5994 -"Transportation equipment (NAICS = 336); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G336.S,CAPUTL.G336.S,72.4111,72.6641,70.8021,72.6036,73.9078,73.2307,73.5845 -"Automobile and light duty motor vehicle (NAICS = 33611); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G33611.S,CAPUTL.G33611.S,72.6255,73.8866,70.3204,74.2668,76.8158,74.6014,75.2462 -"Food (NAICS = 311); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G311.S,CAPUTL.G311.S,84.9388,84.9592,84.2995,84.7562,84.2347,84.5867,84.8047 -"Beverage and tobacco product (NAICS = 312); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G312.S,CAPUTL.G312.S,67.8772,67.9973,66.6350,66.5977,67.6172,65.1704,66.1495 -"Textile mills (NAICS = 313); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G313.S,CAPUTL.G313.S,64.7857,64.1544,64.8002,65.9182,68.7612,68.4221,70.2749 -"Textile product mills (NAICS = 314); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G314.S,CAPUTL.G314.S,71.1428,70.2499,69.9313,71.4940,68.7140,68.0882,68.2755 -"Apparel (NAICS = 315); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G315.S,CAPUTL.G315.S,60.6161,59.3945,58.9562,58.2041,56.6334,58.6941,58.7018 -"Leather and allied product (NAICS = 316); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G316.S,CAPUTL.G316.S,72.4355,73.5700,73.7000,73.1939,73.2798,70.6583,70.6657 -"Plastics material and resin (NAICS = 325211); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.N325211.S,CAPUTL.N325211.S,84.0506,83.9341,78.0779,84.5545,82.4720,80.5469, -"Synthetic rubber (NAICS = 325212); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G325212.S,CAPUTL.G325212.S,53.0392,52.8954,51.8630,52.2559,53.0833,51.8814,52.6594 -"Artificial and synthetic fibers and filaments (NAICS = 32522); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G32522.S,CAPUTL.G32522.S,76.9924,77.9836,76.9056,78.4644,80.6220,76.0840,76.9370 -"Oil and gas extraction (NAICS = 211); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G211.S,CAPUTL.G211.S,97.8430,97.5887,93.2530,97.0965,96.3002,96.6905,96.7165 -"Mining (except oil and gas) (NAICS = 212); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G212.S,CAPUTL.G212.S,69.1506,71.5145,66.4555,71.4046,70.3864,66.1886,66.9625 -"Coal mining (NAICS = 2121); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.N2121.S,CAPUTL.N2121.S,70.2126,72.8155,62.4264,67.3465,64.4412,50.5844,53.5143 -"Metal ore mining (NAICS = 2122); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G2122.S,CAPUTL.G2122.S,52.7358,55.6185,55.3322,56.5633,58.3112,54.4986,58.5344 -"Nonmetallic mineral mining and quarrying (NAICS = 2123); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G2123.S,CAPUTL.G2123.S,87.1262,88.7406,82.1533,91.5124,88.7082,91.3768,86.6744 -"Support activities for mining (NAICS = 213); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G213.S,CAPUTL.G213.S,78.8028,79.7310,80.0618,81.3774,82.1900,80.5159,80.1260 -"Electric power generation, transmission, and distribution (NAICS = 2211); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G2211.S,CAPUTL.G2211.S,71.9143,70.3358,72.8660,70.3323,68.7099,71.6162,72.7932 -"Natural gas distribution (NAICS = 2212); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G2212.S,CAPUTL.G2212.S,78.2045,73.7538,78.6759,73.2580,69.0204,73.1074,72.7200 -"Manufacturing ex. hi-tech and motor vehicles & pts.; s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.X4HTMV.S,CAPUTL.X4HTMV.S,77.9958,77.7595,77.0560,77.6571,77.5466,77.0692,77.4885 -"Final products and nonindustrial supplies--gross value; s.a. GVIP","Currency:_Base_2012","1e+09","USD",G17/GVIP/GVIP.T50030.S,GVIP.T50030.S,3989.9039,3990.5007,3958.4391,3993.1756,3987.7365,3966.5175,4004.8580 -"Final products--gross value; s.a. GVIP","Currency:_Base_2012","1e+09","USD",G17/GVIP/GVIP.T50002.S,GVIP.T50002.S,2978.3999,2981.5060,2953.2762,2975.2712,2972.5990,2951.5147,2985.7511 -"Consumer goods--gross value; s.a. GVIP","Currency:_Base_2012","1e+09","USD",G17/GVIP/GVIP.T51000.S,GVIP.T51000.S,2192.6976,2197.9398,2179.6138,2188.3574,2182.2709,2167.8816,2199.4177 -"Durable consumer goods--gross value; s.a. GVIP","Currency:_Base_2012","1e+09","USD",G17/GVIP/GVIP.T51100.S,GVIP.T51100.S,575.1099,580.7503,563.0956,582.2193,590.5295,577.2070,583.3055 -"Automotive products--gross value; s.a. GVIP","Currency:_Base_2012","1e+09","USD",G17/GVIP/GVIP.T51110.S,GVIP.T51110.S,418.8295,424.5557,405.9359,422.6676,434.2686,421.8195,427.5983 -"Other durable goods--gross value; s.a. GVIP","Currency:_Base_2012","1e+09","USD",G17/GVIP/GVIP.T51120.S,GVIP.T51120.S,157.7740,157.9036,158.0856,160.8868,158.3488,157.0693,157.5840 -"Nondurable consumer goods--gross value; s.a. GVIP","Currency:_Base_2012","1e+09","USD",G17/GVIP/GVIP.T51200.S,GVIP.T51200.S,1619.8096,1619.8480,1617.9469,1609.1957,1595.7502,1593.7759,1619.0550 -"Equipment, total--gross value; s.a. GVIP","Currency:_Base_2012","1e+09","USD",G17/GVIP/GVIP.T52000.S,GVIP.T52000.S,791.0758,788.6803,778.5050,792.3993,796.1324,789.2928,791.5302 -"Business equipment and defense and space equipment--gross value; s.a. GVIP","Currency:_Base_2012","1e+09","USD",G17/GVIP/GVIP.T521A3.S,GVIP.T521A3.S,767.0522,764.7849,755.1002,768.5225,772.2293,766.1040,768.6737 -"Business equipment--gross value; s.a. GVIP","Currency:_Base_2012","1e+09","USD",G17/GVIP/GVIP.T52100.S,GVIP.T52100.S,627.4258,625.5576,615.4443,628.5792,631.6282,624.6155,626.2251 -"Defense and space equipment--gross value; s.a. GVIP","Currency:_Base_2012","1e+09","USD",G17/GVIP/GVIP.T52300.S,GVIP.T52300.S,139.7452,139.3475,140.1780,140.0684,140.7243,141.9873,143.0415 -"Nonindustrial supplies--gross value; s.a. GVIP","Currency:_Base_2012","1e+09","USD",G17/GVIP/GVIP.T54000.S,GVIP.T54000.S,1011.8441,1009.4112,1005.4570,1018.0933,1015.3632,1015.0881,1019.3399 -"Construction supplies--gross value; s.a. GVIP","Currency:_Base_2012","1e+09","USD",G17/GVIP/GVIP.T54100.S,GVIP.T54100.S,279.1430,277.3935,274.6773,280.3519,280.5285,276.8829,275.4954 -"Business supplies--gross value; s.a. GVIP","Currency:_Base_2012","1e+09","USD",G17/GVIP/GVIP.T54200.S,GVIP.T54200.S,733.1585,732.6449,731.6671,738.2773,735.2156,739.1871,745.2660 -"Commercial energy products--gross value; s.a. GVIP","Currency:_Base_2012","1e+09","USD",G17/GVIP/GVIP.T54220.S,GVIP.T54220.S,261.3401,261.3458,263.0595,264.9577,261.6950,268.1791,274.6370 -"Total index; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B50001.S,RIW.B50001.S,100.0000,100.0000,100.0000,100.0000,100.0000,100.0000,100.0000 -"Final products and nonindustrial supplies; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B50030.S,RIW.B50030.S,54.8635,54.8160,54.9947,54.8383,54.7580,54.6701,54.5951 -"Consumer goods; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B51000.S,RIW.B51000.S,27.8570,27.8693,27.9851,27.7796,27.6977,27.6626,27.7343 -"Durable consumer goods; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B51100.S,RIW.B51100.S,6.1911,6.2560,6.1591,6.2758,6.3404,6.2349,6.2269 -"Automotive products; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B51110.S,RIW.B51110.S,3.4459,3.4978,3.3699,3.4642,3.5576,3.4726,3.4697 -"Computers, video and audio equipment; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B51121.S,RIW.B51121.S,0.1488,0.1479,0.1506,0.1473,0.1493,0.1468,0.1428 -"Appliances, furniture, and carpeting; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B51122.S,RIW.B51122.S,0.9168,0.9086,0.9227,0.9469,0.8992,0.9026,0.9042 -"Miscellaneous durable goods; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B51123.S,RIW.B51123.S,1.6796,1.7017,1.7158,1.7174,1.7343,1.7129,1.7102 -"Nondurable consumer goods; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B51200.S,RIW.B51200.S,21.6659,21.6133,21.8260,21.5038,21.3573,21.4276,21.5074 -"Nondurable nonenergy consumer goods; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B51210.S,RIW.B51210.S,16.1369,16.1538,16.2253,16.1545,16.1713,16.1568,16.1463 -"Foods and tobacco; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B51211.S,RIW.B51211.S,9.7357,9.7589,9.7545,9.6910,9.7116,9.6894,9.6762 -"Clothing; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B51212.S,RIW.B51212.S,0.1583,0.1577,0.1586,0.1555,0.1532,0.1550,0.1538 -"Chemical products; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B51213.S,RIW.B51213.S,5.0654,5.0766,5.1271,5.1254,5.1265,5.1317,5.1448 -"Paper products; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B51214.S,RIW.B51214.S,0.7680,0.7588,0.7831,0.7768,0.7785,0.7806,0.7755 -"Consumer energy products; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B51220.S,RIW.B51220.S,5.5289,5.4595,5.6006,5.3493,5.1861,5.2708,5.3611 -"Business equipment; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B52100.S,RIW.B52100.S,8.8047,8.7796,8.7668,8.8025,8.8291,8.7849,8.7553 -"Transit equipment; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B52110.S,RIW.B52110.S,1.8019,1.8016,1.7487,1.7741,1.8172,1.7850,1.7598 -"Information processing and related equipment; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B52120.S,RIW.B52120.S,1.8030,1.7926,1.8222,1.8045,1.8113,1.8153,1.8121 -"Industrial and other equipment; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B52130.S,RIW.B52130.S,5.1998,5.1854,5.1958,5.2238,5.2006,5.1845,5.1834 -"Defense and space equipment; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B52300.S,RIW.B52300.S,1.7943,1.7921,1.8150,1.7979,1.8082,1.8227,1.8227 -"Construction supplies; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B54100.S,RIW.B54100.S,5.1843,5.1744,5.1539,5.2212,5.2251,5.1792,5.1104 -"Business supplies; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B54200.S,RIW.B54200.S,10.5784,10.5602,10.6386,10.6032,10.5609,10.6040,10.5706 -"Materials; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B53000.S,RIW.B53000.S,45.1365,45.1840,45.0053,45.1617,45.2420,45.3299,45.4049 -"Materials ex. energy materials; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.Z53010.S,RIW.Z53010.S,27.3623,27.3844,27.2314,27.2660,27.3262,27.1980,27.2369 -"Durable goods materials; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B53100.S,RIW.B53100.S,16.8499,16.8595,16.8373,16.7782,16.8602,16.8224,16.8215 -"Consumer parts; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B53110.S,RIW.B53110.S,2.9588,3.0113,2.9759,2.9545,2.9712,2.9587,2.9547 -"Equipment parts; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B53120.S,RIW.B53120.S,4.6647,4.6347,4.6718,4.6054,4.6363,4.6631,4.6717 -"Other durable materials; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B53130.S,RIW.B53130.S,9.2264,9.2135,9.1896,9.2183,9.2527,9.2006,9.1951 -"Nondurable goods materials; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B53200.S,RIW.B53200.S,10.5124,10.5249,10.3942,10.4878,10.4660,10.3756,10.4154 -"Textile materials; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B53210.S,RIW.B53210.S,0.2894,0.2854,0.2887,0.2897,0.2975,0.2943,0.2976 -"Paper materials; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B53220.S,RIW.B53220.S,1.4859,1.4754,1.4880,1.5033,1.5015,1.4998,1.4891 -"Chemical materials; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B53230.S,RIW.B53230.S,5.4133,5.4290,5.2739,5.3511,5.3532,5.2862,5.3326 -"Energy materials; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B53300.S,RIW.B53300.S,17.7742,17.7996,17.7738,17.8957,17.9158,18.1319,18.1680 -"Manufacturing (SIC); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B00004.S,RIW.B00004.S,75.2678,75.3076,75.1210,75.1243,75.3453,74.8797,74.7676 -"Manufacturing (NAICS); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.GMF.S,RIW.GMF.S,73.7093,73.7811,73.5422,73.5536,73.7738,73.3078,73.2069 -"Durable manufacturing (NAICS); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.GMFD.S,RIW.GMFD.S,37.5888,37.5185,37.4769,37.5440,37.6847,37.5007,37.4206 -"Wood product (NAICS = 321); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G321.S,RIW.G321.S,1.6533,1.6051,1.6000,1.5930,1.6089,1.5845,1.6112 -"Nonmetallic mineral product (NAICS = 327); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G327.S,RIW.G327.S,2.3240,2.3382,2.2870,2.2900,2.2596,2.2545,2.2243 -"Primary metal (NAICS = 331); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G331.S,RIW.G331.S,2.7250,2.7275,2.6855,2.6616,2.6747,2.6394,2.6392 -"Fabricated metal product (NAICS = 332); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G332.S,RIW.G332.S,6.0993,6.0826,6.1857,6.1598,6.1454,6.1431,6.1332 -"Machinery (NAICS = 333); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G333.S,RIW.G333.S,5.6442,5.6038,5.6215,5.6848,5.6160,5.5868,5.6164 -"Computer and electronic product (NAICS = 334); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G334.S,RIW.G334.S,4.5025,4.4888,4.5560,4.4973,4.5148,4.5325,4.5212 -"Electrical equipment, appliance, and component (NAICS = 335); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G335.S,RIW.G335.S,2.1290,2.1316,2.1436,2.1030,2.1356,2.1228,2.1047 -"Motor vehicles and parts (NAICS = 3361-3); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3361T3.S,RIW.G3361T3.S,5.6081,5.6896,5.5010,5.6994,5.8583,5.7465,5.7328 -"Aerospace and miscellaneous transportation eq. (NAICS = 3364-9); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3364T9.S,RIW.G3364T9.S,3.2303,3.1992,3.2357,3.1673,3.1860,3.2200,3.2153 -"Furniture and related product (NAICS = 337); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G337.S,RIW.G337.S,0.9778,0.9700,0.9681,0.9705,0.9629,0.9763,0.9485 -"Miscellaneous (NAICS = 339); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G339.S,RIW.G339.S,2.6951,2.6822,2.6928,2.7172,2.7226,2.6944,2.6737 -"Nondurable manufacturing (NAICS); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.GMFN.S,RIW.GMFN.S,36.1205,36.2625,36.0653,36.0096,36.0891,35.8071,35.7863 -"Food, beverage, and tobacco (NAICS = 311,2); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G311A2.S,RIW.G311A2.S,12.1548,12.1905,12.1684,12.0927,12.1028,12.0488,12.0313 -"Textiles and products (NAICS = 313,4); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G313A4.S,RIW.G313A4.S,0.5185,0.5119,0.5160,0.5189,0.5192,0.5139,0.5162 -"Apparel and leather goods (NAICS = 315,6); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G315A6.S,RIW.G315A6.S,0.1775,0.1772,0.1785,0.1751,0.1731,0.1744,0.1734 -"Paper (NAICS = 322); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G322.S,RIW.G322.S,2.2322,2.2188,2.2245,2.2319,2.2226,2.2192,2.2069 -"Printing and related support activities (NAICS = 323); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G323.S,RIW.G323.S,1.2706,1.2720,1.3033,1.3119,1.3305,1.3476,1.3266 -"Petroleum and coal products (NAICS = 324); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G324.S,RIW.G324.S,4.0216,4.0470,3.9899,3.9566,4.0262,3.8715,3.8761 -"Chemical (NAICS = 325); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G325.S,RIW.G325.S,11.9994,12.0708,11.9345,11.9987,11.9774,11.8897,11.9373 -"Plastics and rubber products (NAICS = 326); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G326.S,RIW.G326.S,3.7460,3.7742,3.7502,3.7238,3.7374,3.7420,3.7185 -"Other manufacturing; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.GMFO.S,RIW.GMFO.S,1.5585,1.5265,1.5788,1.5707,1.5715,1.5720,1.5607 -"Mining (NAICS = 21); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G21.S,RIW.G21.S,13.7091,13.9107,13.5422,14.0670,14.0926,14.0566,14.0635 -"Electric and gas utilities (NAICS = 2211,2); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G2211A2.S,RIW.G2211A2.S,11.0231,10.7817,11.3368,10.8087,10.5621,11.0637,11.1689 -"Electric power generation, transmission, and distribution (NAICS = 2211); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G2211.S,RIW.G2211.S,9.5981,9.4433,9.9059,9.4987,9.3337,9.7707,9.9004 -"Natural gas distribution (NAICS = 2212); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G2212.S,RIW.G2212.S,1.4250,1.3384,1.4309,1.3100,1.2284,1.2930,1.2685 -"Energy, total; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B50089.S,RIW.B50089.S,26.6974,26.6368,26.7924,26.6331,26.4425,26.7986,26.9417 -"Commercial energy products; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B54220.S,RIW.B54220.S,2.8109,2.8003,2.8406,2.8204,2.7676,2.8437,2.8763 -"Drilling oil and gas wells (NAICS = 213111); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N213111.S,RIW.N213111.S,0.5833,0.5774,0.5773,0.5677,0.5730,0.5522,0.5363 -"Converted fuel; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B53320.S,RIW.B53320.S,5.2515,5.1716,5.4313,5.1395,5.1265,5.3080,5.3257 -"Primary energy; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B53310.S,RIW.B53310.S,12.5226,12.6280,12.3425,12.7561,12.7893,12.8238,12.8423 -"Non-energy, total; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.X5001E.S,RIW.X5001E.S,73.3026,73.3632,73.2076,73.3669,73.5575,73.2014,73.0583 -"Computers, communications eq., and semiconductors (NAICS = 3341,3342,3344); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.HITEK2.S,RIW.HITEK2.S,1.9688,1.9716,1.9845,1.9492,1.9582,1.9702,1.9595 -"Computer and peripheral equipment (NAICS = 3341); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3341.S,RIW.G3341.S,0.2367,0.2334,0.2309,0.2277,0.2325,0.2294,0.2252 -"Communications equipment (NAICS = 3342); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3342.S,RIW.G3342.S,0.4352,0.4384,0.4446,0.4394,0.4398,0.4390,0.4340 -"Non-energy ex. computers, communications eq., and semiconductors; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.X5EHTK.S,RIW.X5EHTK.S,71.3338,71.3917,71.2231,71.4177,71.5993,71.2312,71.0988 -"Motor vehicle (NAICS = 3361); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3361.S,RIW.G3361.S,2.7174,2.7739,2.6507,2.7929,2.9071,2.8011,2.7857 -"Motor vehicle parts (NAICS = 3363); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3363.S,RIW.G3363.S,2.3381,2.3550,2.3392,2.3803,2.4113,2.4013,2.3944 -"Non-energy ex. motor vehicles & pts., computers, communications eq., and semiconductors; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.X50EHV.S,RIW.X50EHV.S,65.7258,65.7021,65.7222,65.7183,65.7410,65.4847,65.3660 -"Consumer goods ex. hi-tech, motor vehicles & pts., and energy; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.X51HVE.S,RIW.X51HVE.S,19.3340,19.3697,19.4509,19.4072,19.4037,19.3508,19.3336 -"Business equipment ex. hi-tech and motor vehicles and parts; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.X52HTV.S,RIW.X52HTV.S,7.4944,7.4489,7.4931,7.4754,7.4537,7.4488,7.4382 -"Construction supplies ex. hi-tech; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.X5410H.S,RIW.X5410H.S,5.1736,5.1637,5.1429,5.2104,5.2143,5.1684,5.0997 -"Business supplies ex. energy, motor vehicles & parts, and selected high-tech industries; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.X5421T.S,RIW.X5421T.S,7.3745,7.3648,7.3993,7.3922,7.4007,7.3634,7.2982 -"Materials ex. energy, motor vehicles & pts., computers, communications eq., and semiconductors; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.X53EHV.S,RIW.X53EHV.S,24.5406,24.5474,24.4110,24.4166,24.4441,24.3138,24.3553 -"Total ex. computers, communications eq., and semiconductors; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.X50HTK.S,RIW.X50HTK.S,98.0312,98.0284,98.0155,98.0508,98.0418,98.0298,98.0405 -"Manufacturing ex. computers, communications eq., and semiconductors; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.X4HTK2.S,RIW.X4HTK2.S,73.2990,73.3361,73.1365,73.1751,73.3871,72.9095,72.8081 -"Durable mfg. ex. computers, communications eq., and semiconductors; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.X5HTK2.S,RIW.X5HTK2.S,35.7616,35.6830,35.6231,35.7334,35.8629,35.6652,35.5973 -"Total ex. motor vehicles and parts; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.X50001.S,RIW.X50001.S,94.3919,94.3104,94.4990,94.3006,94.1417,94.2535,94.2672 -"Manufacturing ex. motor vehicles and parts; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.XXX001.S,RIW.XXX001.S,69.6597,69.6180,69.6201,69.4248,69.4870,69.1333,69.0348 -"Durable manufacturing ex. motor vehicles & parts; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.X005MV.S,RIW.X005MV.S,32.1223,31.9650,32.1066,31.9832,31.9629,31.8890,31.8241 -"Total ex. selected high-tech. and motor vehicles & pts.; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.X5VHT2.S,RIW.X5VHT2.S,92.4232,92.3389,92.5145,92.3513,92.1835,92.2833,92.3077 -"Manufacturing ex. hi-tech and motor vehicles & pts.; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.X4HTMV.S,RIW.X4HTMV.S,67.6910,67.6465,67.6356,67.4756,67.5288,67.1630,67.0753 -"Non-energy materials for finished goods producers; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B53810.S,RIW.B53810.S,9.3988,9.4068,9.4243,9.3528,9.4065,9.4160,9.4131 -"Non-energy materials for intermediate goods producers; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B53820.S,RIW.B53820.S,17.9635,17.9776,17.8071,17.9132,17.9197,17.7820,17.8238 -"Oil and gas extraction (NAICS = 211); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G211.S,RIW.G211.S,9.5917,9.7023,9.4602,9.8555,9.8985,10.0465,10.0802 -"Crude oil (NAICS = 21112); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G21112.S,RIW.G21112.S,7.8576,7.9094,7.6724,7.9524,7.9717,8.0708,8.0684 -"Natural gas and natural gas liquids (NAICS = 21113); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G21113.S,RIW.G21113.S,1.7341,1.7929,1.7877,1.9031,1.9268,1.9757,2.0118 -"Natural gas (NAICS = 211130pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N21113G.S,RIW.N21113G.S,0.8818,0.9208,0.9456,0.9932,0.9990,, -"Natural gas liquid extraction (NAICS = 211130pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G21113PQ.S,RIW.G21113PQ.S,0.8524,0.8721,0.8422,0.9099,0.9278,0.9618,0.9708 -"Mining (except oil and gas) (NAICS = 212); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G212.S,RIW.G212.S,2.1167,2.2021,2.0726,2.2134,2.1956,2.0745,2.0935 -"Coal mining (NAICS = 2121); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N2121.S,RIW.N2121.S,0.5516,0.5750,0.4988,0.5342,0.5140,0.4052,0.4274 -"Metal ore mining (NAICS = 2122); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G2122.S,RIW.G2122.S,0.6447,0.6861,0.6940,0.7079,0.7373,0.6950,0.7476 -"Iron ore mining (NAICS = 21221); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N21221.S,RIW.N21221.S,0.0582,0.0584,0.0553,0.0544,,, -"Gold ore and silver ore mining (NAICS = 21222); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G21222.S,RIW.G21222.S,0.2017,0.2142,0.2239,0.2420,0.2397,0.1899,0.2308 -"Copper, nickel, lead, and zinc mining (NAICS = 21223); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G21223.S,RIW.G21223.S,0.2598,0.2777,0.2937,0.2946,0.3104,0.3202,0.3295 -"Nonmetallic mineral mining and quarrying (NAICS = 2123); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G2123.S,RIW.G2123.S,0.9204,0.9410,0.8799,0.9712,0.9443,0.9743,0.9186 -"Support activities for mining (NAICS = 213); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G213.S,RIW.G213.S,2.0007,2.0063,2.0094,1.9981,1.9985,1.9355,1.8897 -"Electric power generation (NAICS = 22111); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G22111.S,RIW.G22111.S,4.6403,4.5563,4.8021,4.4987,4.5417,4.7436,4.8079 -"Hydroelectric, renewables, and other (NAICS = 221111,4-8); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G221111A4T8.S,RIW.G221111A4T8.S,0.5975,0.5969,0.5865,0.6108,0.6578,0.6406,0.6493 -"Hydroelectric power generation (NAICS = 221111); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N221111.S,RIW.N221111.S,0.2714,0.2615,0.2625,0.2673,0.2970,, -"Renewables and other electric power generation (NAICS = 221114-8); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N221114T8.S,RIW.N221114T8.S,0.3261,0.3353,0.3240,0.3436,0.3607,, -"Fossil Fuel electric power generation (NAICS = 221112); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N221112.S,RIW.N221112.S,2.6296,2.5579,2.8241,2.4586,2.4702,, -"Nuclear electric power generation (NAICS = 221113); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N221113.S,RIW.N221113.S,1.4132,1.4015,1.3915,1.4293,1.4138,, -"Electric power transmission, control, and distribution (NAICS = 22112); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G22112.S,RIW.G22112.S,4.9578,4.8870,5.1038,5.0000,4.7919,5.0271,5.0925 -"Commercial and other electricity sales (NAICS = 22112pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N22112C.S,RIW.N22112C.S,1.9049,1.9047,1.9540,1.9411,1.8948,, -"Industrial electricity sales (NAICS = 22112pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N22112M.S,RIW.N22112M.S,0.8317,0.8252,0.8312,0.8338,0.8230,, -"Residential electricity sales (NAICS = 22112pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N22112R.S,RIW.N22112R.S,2.2212,2.1571,2.3186,2.2250,2.0741,, -"Commercial and other gas sales (NAICS = 2212pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N2212C.S,RIW.N2212C.S,0.2570,0.2339,0.2483,0.2307,0.2213,, -"Industrial gas sales (NAICS = 2212pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N2212M.S,RIW.N2212M.S,0.0818,0.0813,0.0827,0.0805,0.0798,, -"Residential gas sales (NAICS = 2212pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N2212R.S,RIW.N2212R.S,0.7056,0.6686,0.7067,0.6363,0.5806,, -"Gas transmission (NAICS = 2212pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N2212T.S,RIW.N2212T.S,0.3806,0.3546,0.3932,0.3625,0.3468,, -"Food (NAICS = 311); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G311.S,RIW.G311.S,9.3848,9.4026,9.4058,9.3539,9.3098,9.3486,9.3028 -"Animal food (NAICS = 3111); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3111.S,RIW.G3111.S,0.6984,0.6918,0.6755,0.6694,0.6649,0.6464,0.6261 -"Grain and oilseed milling (NAICS = 3112); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3112.S,RIW.G3112.S,0.6612,0.6628,0.6695,0.6603,0.6584,0.6328,0.6296 -"Sugar and confectionery product (NAICS = 3113); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3113.S,RIW.G3113.S,0.4457,0.4589,0.4616,0.4785,0.5083,0.5172,0.5268 -"Fruit and vegetable preserving and specialty food (NAICS = 3114); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3114.S,RIW.G3114.S,1.0302,1.0314,1.0300,1.0135,1.0089,1.0138,1.0082 -"Dairy product (NAICS = 3115); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3115.S,RIW.G3115.S,1.0895,1.1038,1.0956,1.0936,1.1104,1.1109,1.1102 -"Dairy product (except frozen) (NAICS = 31151); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G31151.S,RIW.G31151.S,0.9696,0.9817,0.9804,0.9721,0.9802,0.9884,0.9874 -"Fluid milk (NAICS = 311511); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N311511.S,RIW.N311511.S,0.3730,0.3740,0.3755,0.3719,0.3730,0.3728, -"Creamery butter (NAICS = 311512); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N311512.S,RIW.N311512.S,0.0325,0.0362,0.0355,0.0357,0.0390,0.0402, -"Cheese (NAICS = 311513); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N311513.S,RIW.N311513.S,0.4183,0.4156,0.4170,0.4145,0.4103,0.4195, -"Dry, condensed, and evaporated dairy product (NAICS = 311514); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N311514.S,RIW.N311514.S,0.1458,0.1559,0.1524,0.1500,0.1579,0.1559, -"Ice cream and frozen dessert (NAICS = 31152); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N31152.S,RIW.N31152.S,0.1199,0.1221,0.1151,0.1215,0.1301,0.1225, -"Animal slaughtering and processing (NAICS = 3116); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3116.S,RIW.G3116.S,2.2430,2.3067,2.2700,2.3024,2.2330,2.3017,2.3072 -"Animal (except poultry) slaughtering and meat processing (NAICS = 311611-3); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G311611T3.S,RIW.G311611T3.S,1.5417,1.5987,1.5612,1.5881,1.5194,1.5650,1.5776 -"Beef (NAICS = 311611-3pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N311611T3B.S,RIW.N311611T3B.S,0.9547,0.9969,0.9613,0.9776,0.9381,0.9811, -"Pork (NAICS = 311611-3pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N311611T3P.S,RIW.N311611T3P.S,0.5729,0.5878,0.5864,0.5966,0.5672,0.5711, -"Miscellaneous meats (NAICS = 311611-3pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N311611T3Z.S,RIW.N311611T3Z.S,0.0141,0.0140,0.0135,0.0139,0.0141,0.0128, -"Poultry processing (NAICS = 311615); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N311615.S,RIW.N311615.S,0.7014,0.7081,0.7088,0.7143,0.7136,0.7367, -"Bakeries and tortilla (NAICS = 3118); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N3118.S,RIW.N3118.S,1.2569,1.2375,1.2813,1.2465,1.2673,1.2839,1.2861 -"Other food (NAICS = 3119); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3119.S,RIW.G3119.S,1.8686,1.8166,1.8319,1.8044,1.7792,1.7607,1.7298 -"Coffee and tea (NAICS = 31192); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G31192.S,RIW.G31192.S,0.1342,0.1304,0.1308,0.1284,0.1270,0.1257,0.1242 -"Beverage and tobacco product (NAICS = 312); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G312.S,RIW.G312.S,2.7699,2.7879,2.7626,2.7387,2.7930,2.7002,2.7285 -"Beverage (NAICS = 3121); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3121.S,RIW.G3121.S,1.6739,1.7148,1.7238,1.7168,1.6950,1.6110,1.6450 -"Soft drink and ice (NAICS = 31211); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N31211.S,RIW.N31211.S,0.5552,0.5587,0.5852,0.5613,0.5588,0.5483,0.5446 -"Breweries (NAICS = 31212); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N31212.S,RIW.N31212.S,0.4430,0.4411,0.4549,0.4589,0.4352,, -"Tobacco (NAICS = 3122); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3122.S,RIW.G3122.S,1.0960,1.0731,1.0387,1.0219,1.0980,1.0893,1.0835 -"Textile mills (NAICS = 313); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G313.S,RIW.G313.S,0.2616,0.2580,0.2613,0.2614,0.2715,0.2686,0.2723 -"Fiber, yarn, and thread mills (NAICS = 3131); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3131.S,RIW.G3131.S,0.0414,0.0414,0.0426,0.0430,0.0446,0.0444,0.0450 -"Fabric mills (NAICS = 3132); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3132.S,RIW.G3132.S,0.1440,0.1411,0.1417,0.1412,0.1472,0.1443,0.1464 -"Textile and fabric finishing and fabric coating mills (NAICS = 3133); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3133.S,RIW.G3133.S,0.0762,0.0756,0.0771,0.0773,0.0798,0.0800,0.0809 -"Textile product mills (NAICS = 314); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G314.S,RIW.G314.S,0.2568,0.2539,0.2547,0.2574,0.2477,0.2453,0.2440 -"Textile furnishings mills (NAICS = 3141); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3141.S,RIW.G3141.S,0.1191,0.1183,0.1191,0.1183,0.1162,0.1150,0.1149 -"Carpet and rug mills (NAICS = 31411); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G31411.S,RIW.G31411.S,0.0743,0.0741,0.0744,0.0733,0.0731,0.0728,0.0729 -"Other textile product mills (NAICS = 3149); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3149.S,RIW.G3149.S,0.1377,0.1356,0.1356,0.1391,0.1315,0.1303,0.1291 -"Apparel (NAICS = 315); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G315.S,RIW.G315.S,0.1076,0.1057,0.1058,0.1034,0.1008,0.1045,0.1037 -"Leather and allied product (NAICS = 316); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G316.S,RIW.G316.S,0.0699,0.0716,0.0727,0.0718,0.0723,0.0700,0.0697 -"Sawmills and wood preservation (NAICS = 3211); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N3211.S,RIW.N3211.S,0.5038,0.4666,0.4591,0.4440,,, -"Plywood and misc. wood products (NAICS = 3212,9); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3212A9.S,RIW.G3212A9.S,1.1495,1.1385,1.1410,1.1490,1.1453,1.1328,1.1360 -"Veneer, plywood, and engineered wood product (NAICS = 3212); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3212.S,RIW.G3212.S,0.3433,0.3418,0.3386,0.3389,0.3460,0.3475,0.3475 -"Veneer and plywood (NAICS = 321211,2); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G321211A2.S,RIW.G321211A2.S,0.0911,0.0907,0.0905,0.0886,0.0884,0.0885,0.0876 -"Reconstituted wood product (NAICS = 321219); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G321219.S,RIW.G321219.S,0.1064,0.1108,0.1090,0.1149,0.1165,0.1197,0.1205 -"Other wood product (NAICS = 3219); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3219.S,RIW.G3219.S,0.8062,0.7966,0.8024,0.8101,0.7992,0.7853,0.7885 -"Millwork (NAICS = 32191); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G32191.S,RIW.G32191.S,0.4303,0.4178,0.4263,0.4242,0.4098,0.4040,0.4072 -"Wood container and pallet (NAICS = 32192); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N32192.S,RIW.N32192.S,0.1442,0.1433,0.1404,0.1474,0.1511,0.1438,0.1446 -"All other wood product (NAICS = 32199); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G32199.S,RIW.G32199.S,0.2317,0.2356,0.2357,0.2385,0.2384,0.2374,0.2368 -"Manufactured home (mobile home) (NAICS = 321991); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N321991.S,RIW.N321991.S,0.0615,0.0630,0.0581,0.0662,0.0640,0.0645, -"Pulp, paper, and paperboard mills (NAICS = 3221); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3221.S,RIW.G3221.S,1.0008,0.9910,0.9971,1.0063,1.0004,0.9967,0.9918 -"Pulp mills (NAICS = 32211); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N32211.S,RIW.N32211.S,0.0901,0.0897,0.0863,0.0891,0.0897,0.0877, -"Paper mills (NAICS = 32212); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G32212.S,RIW.G32212.S,0.4571,0.4503,0.4618,0.4672,0.4609,0.4549,0.4531 -"Paper (except newsprint) mills (NAICS = 322121); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N322121.S,RIW.N322121.S,0.4544,0.4478,0.4594,0.4646,0.4584,, -"Paperboard mills (NAICS = 32213); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N32213.S,RIW.N32213.S,0.4535,0.4511,0.4491,0.4500,0.4499,, -"Converted paper product (NAICS = 3222); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3222.S,RIW.G3222.S,1.2314,1.2278,1.2274,1.2256,1.2222,1.2225,1.2151 -"Paperboard container (NAICS = 32221); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N32221.S,RIW.N32221.S,0.6392,0.6367,0.6347,0.6238,0.6196,, -"Paper bag and coated and treated paper (NAICS = 32222); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G32222.S,RIW.G32222.S,0.2016,0.1992,0.1997,0.2058,0.2075,0.2049,0.2035 -"Other converted paper products (NAICS = 32223,9); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G32223A9.S,RIW.G32223A9.S,0.3906,0.3918,0.3930,0.3960,0.3950,0.3963,0.3938 -"Petroleum refineries (NAICS = 32411); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G32411.S,RIW.G32411.S,3.3586,3.3996,3.3394,3.2840,3.3324,3.2168,3.2622 -"Aviation fuel and kerosene (NAICS = 32411pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N32411A.S,RIW.N32411A.S,0.3734,0.3764,0.3676,0.3597,0.3807,, -"Distillate fuel oil (NAICS = 32411pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N32411D.S,RIW.N32411D.S,0.8534,0.8807,0.8307,0.7688,0.8330,, -"Automotive gasoline (NAICS = 32411pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N32411G.S,RIW.N32411G.S,1.6106,1.6125,1.6055,1.5722,1.5510,, -"Residual fuel oil (NAICS = 32411pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N32411R.S,RIW.N32411R.S,0.1518,0.1605,0.1579,0.1977,0.1890,, -"Other refinery output (NAICS = 32411pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G32411X.S,RIW.G32411X.S,0.3695,0.3695,0.3777,0.3856,0.3788,0.3685,0.3745 -"Paving, roofing, and other petroleum and coal products (NAICS = 32412,9); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N32412A9.S,RIW.N32412A9.S,0.6629,0.6474,0.6505,0.6726,0.6937,0.6547,0.6139 -"Basic chemical (NAICS = 3251); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3251.S,RIW.G3251.S,3.0075,3.0268,2.8898,2.8849,2.8977,2.8235,2.8510 -"Organic chemicals (NAICS = 32511,9); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G32511A9.S,RIW.G32511A9.S,1.9913,2.0164,1.8447,1.8901,1.8947,1.8214,1.8577 -"Basic inorganic chemicals (NAICS = 32512-8); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G32512T8.S,RIW.G32512T8.S,1.0162,1.0105,1.0451,0.9948,1.0030,1.0022,0.9934 -"Industrial gas (NAICS = 32512); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G32512.S,RIW.G32512.S,0.3086,0.3086,0.3236,0.3082,0.3122,0.3137,0.3126 -"Synthetic dye and pigment (NAICS = 32513); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G32513.S,RIW.G32513.S,0.0854,0.0845,0.0876,0.0828,0.0834,0.0826,0.0822 -"Other basic inorganic chemical (NAICS = 32518pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G32518.S,RIW.G32518.S,0.6221,0.6174,0.6339,0.6038,0.6073,0.6059,0.5985 -"Alkalies and chlorine (NAICS = 32518pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N32518C.S,RIW.N32518C.S,0.0959,0.0949,0.0964,0.0954,0.0948,, -"Resin, synthetic rubber, and artificial and synthetic fibers and filaments (NAICS = 3252); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3252.S,RIW.G3252.S,0.9922,0.9948,0.9416,1.0018,0.9867,0.9638,0.9864 -"Resin and synthetic rubber (NAICS = 32521); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G32521.S,RIW.G32521.S,0.9282,0.9299,0.8771,0.9367,0.9198,0.9007,0.9230 -"Plastics material and resin (NAICS = 325211); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N325211.S,RIW.N325211.S,0.8630,0.8644,0.8119,0.8713,0.8528,0.8348, -"Synthetic rubber (NAICS = 325212); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G325212.S,RIW.G325212.S,0.0652,0.0656,0.0652,0.0654,0.0669,0.0658,0.0667 -"Artificial and synthetic fibers and filaments (NAICS = 32522); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G32522.S,RIW.G32522.S,0.0639,0.0649,0.0645,0.0651,0.0669,0.0631,0.0633 -"Pesticide, fertilizer, and other agricultural chemical (NAICS = 3253); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3253.S,RIW.G3253.S,0.5942,0.6330,0.6278,0.6211,0.6154,0.6017,0.6046 -"Pharmaceutical and medicine (NAICS = 3254); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3254.S,RIW.G3254.S,4.8335,4.8575,4.8759,4.8654,4.8614,4.8977,4.9548 -"Chemicals except pharmaceuticals and medicines (NAICS = 3251-3,5-9); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G325@4.S,RIW.G325@4.S,7.1659,7.2133,7.0586,7.1333,7.1160,6.9921,6.9825 -"Paints, soaps and toiletries, and other chemical products (NAICS = 3255-9); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3255T9.S,RIW.G3255T9.S,2.5720,2.5586,2.5993,2.6255,2.6162,2.6030,2.5405 -"Paints and other chemical products (NAICS = 3255,9); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3255A9.S,RIW.G3255A9.S,1.2331,1.2583,1.2520,1.2650,1.2586,1.2484,1.2255 -"Paint, coating, and adhesive (NAICS = 3255); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3255.S,RIW.G3255.S,0.6922,0.7039,0.7181,0.7022,0.7039,0.6813,0.6641 -"Paint and coating (NAICS = 32551); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G32551.S,RIW.G32551.S,0.4334,0.4419,0.4514,0.4419,0.4423,0.4284,0.4175 -"Soap, cleaning compound, and toilet preparation (NAICS = 3256); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3256.S,RIW.G3256.S,1.3389,1.3003,1.3473,1.3605,1.3576,1.3547,1.3150 -"Plastics product (NAICS = 3261); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3261.S,RIW.G3261.S,2.9830,3.0086,2.9977,2.9774,2.9878,3.0277,3.0171 -"Rubber product (NAICS = 3262); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3262.S,RIW.G3262.S,0.7630,0.7656,0.7525,0.7465,0.7497,0.7143,0.7014 -"Tire (NAICS = 32621); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G32621.S,RIW.G32621.S,0.3101,0.3223,0.3007,0.3128,0.3214,0.2995,0.2945 -"Rubber products ex. tires (NAICS = 32622,9); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G32622A9.S,RIW.G32622A9.S,0.4529,0.4433,0.4519,0.4336,0.4283,0.4148,0.4069 -"Clay, lime, gypsum, and misc. nonmetallic mineral products (NAICS = 3271,4,9); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3271A4A9.S,RIW.G3271A4A9.S,0.8634,0.8737,0.8840,0.8723,0.8690,0.8833,0.8750 -"Clay and misc. nonmetallic mineral products (NAICS = 3271,9); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3271A9.S,RIW.G3271A9.S,0.7162,0.7251,0.7339,0.7243,0.7208,0.7330,0.7249 -"Clay product and refractory (NAICS = 3271); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3271.S,RIW.G3271.S,0.1458,0.1417,0.1396,0.1401,0.1397,0.1418,0.1402 -"Pottery, ceramics, and plumbing fixture (NAICS = 32711); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G32711.S,RIW.G32711.S,0.0516,0.0499,0.0490,0.0486,0.0489,0.0487,0.0484 -"Clay building material and refractories (NAICS = 32712); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G32712.S,RIW.G32712.S,0.0942,0.0918,0.0907,0.0915,0.0909,0.0931,0.0917 -"Other nonmetallic mineral product (NAICS = 3279); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3279.S,RIW.G3279.S,0.5704,0.5834,0.5942,0.5842,0.5811,0.5912,0.5847 -"Lime and gypsum product (NAICS = 3274); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3274.S,RIW.G3274.S,0.1472,0.1486,0.1501,0.1480,0.1482,0.1503,0.1501 -"Glass and glass product (NAICS = 3272); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3272.S,RIW.G3272.S,0.3805,0.3696,0.3494,0.3510,0.3532,0.3560,0.3504 -"Glass container (NAICS = 327213); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G327213.S,RIW.G327213.S,0.0693,0.0692,0.0701,0.0697,0.0697,0.0698,0.0688 -"Cement and concrete product (NAICS = 3273); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3273.S,RIW.G3273.S,1.0801,1.0949,1.0536,1.0667,1.0375,1.0151,0.9989 -"Cement (NAICS = 32731); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N32731.S,RIW.N32731.S,0.1553,0.1591,0.1411,0.1658,,, -"Concrete and product (NAICS = 32732-9); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N32732T9.S,RIW.N32732T9.S,0.9248,0.9358,0.9125,0.9009,0.8783,0.8557,0.8404 -"Iron and steel products (NAICS = 3311,2); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3311A2.S,RIW.G3311A2.S,1.2988,1.2865,1.2503,1.2369,1.2278,1.1939,1.1888 -"Pig iron (NAICS = 3311,2pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3311A2Q.S,RIW.G3311A2Q.S,0.0748,0.0696,0.0608,0.0601,0.0595,0.0588,0.0573 -"Raw steel (NAICS = 3311,2pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N3311A2R.S,RIW.N3311A2R.S,0.0761,0.0785,0.0741,0.0760,0.0755,0.0722, -"Coke and products (NAICS = 3311,2pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3311A2F.S,RIW.G3311A2F.S,0.0191,0.0187,0.0184,0.0179,0.0176,0.0174,0.0171 -"Construction steel (NAICS = 3311,2pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N3311A2B.S,RIW.N3311A2B.S,0.2397,0.2257,0.2279,0.2466,0.2644,0.2477, -"Consumer durable steel (NAICS = 3311,2pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N3311A2C.S,RIW.N3311A2C.S,0.2820,0.3247,0.3075,0.2436,0.2263,0.2136, -"Can and closure steel (NAICS = 3311,2pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N3311A2D.S,RIW.N3311A2D.S,0.0059,0.0095,0.0072,0.0068,0.0067,0.0074, -"Equipment steel (NAICS = 3311,2pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N3311A2E.S,RIW.N3311A2E.S,0.0569,0.0563,0.0526,0.0555,0.0616,0.0640, -"Miscellaneous steel (NAICS = 3311,2pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N3311A2Z.S,RIW.N3311A2Z.S,0.5442,0.5035,0.5018,0.5304,0.5161,0.5127, -"Alumina and aluminum production and processing (NAICS = 3313); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3313.S,RIW.G3313.S,0.3431,0.3580,0.3495,0.3447,0.3549,0.3541,0.3559 -"Primary aluminum production (NAICS = 331313pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N331313P.S,RIW.N331313P.S,0.0123,0.0124,0.0116,0.0098,0.0101,0.0099, -"Secondary smelting and alloying of aluminum (NAICS = 331314); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N331314.S,RIW.N331314.S,0.0559,0.0585,0.0519,0.0518,0.0562,, -"Misc. aluminum materials (NAICS = 331315,8pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N331315A8M.S,RIW.N331315A8M.S,0.1838,0.1922,0.1946,0.1960,0.1968,, -"Aluminum extruded product (NAICS = 331318pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N331318E.S,RIW.N331318E.S,0.0855,0.0893,0.0859,0.0819,0.0866,, -"Nonferrous metal (except aluminum) production and processing (NAICS = 3314); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3314.S,RIW.G3314.S,0.6766,0.6814,0.6805,0.6709,0.6812,0.6780,0.6804 -"Nonferrous metal (except aluminum) smelting and refining (NAICS = 33141); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G33141.S,RIW.G33141.S,0.1785,0.1858,0.1828,0.1704,0.1807,0.1750,0.1760 -"Primary smelting and refining of copper (NAICS = 33141pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G33141C.S,RIW.G33141C.S,0.0460,0.0468,0.0424,0.0416,0.0415,0.0457,0.0435 -"Primary smelting and refining of nonferrous metal (except copper and aluminum) (NAICS = 33141pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N33141N.S,RIW.N33141N.S,0.1325,0.1390,0.1404,0.1288,0.1392,, -"Foundries (NAICS = 3315); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3315.S,RIW.G3315.S,0.4065,0.4016,0.4052,0.4090,0.4109,0.4134,0.4142 -"Forging and stamping (NAICS = 3321); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N3321.S,RIW.N3321.S,0.3587,0.3527,0.3580,0.3553,0.3567,0.3561,0.3608 -"Cutlery and handtool (NAICS = 3322); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N3322.S,RIW.N3322.S,0.1576,0.1601,0.1645,0.1631,0.1649,0.1620,0.1622 -"Architectural and structural metals (NAICS = 3323); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N3323.S,RIW.N3323.S,1.7959,1.7801,1.8263,1.8512,1.8376,1.8315,1.8194 -"Hardware (NAICS = 3325); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3325.S,RIW.G3325.S,0.1376,0.1378,0.1413,0.1407,0.1363,0.1370,0.1388 -"Spring and wire product (NAICS = 3326); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N3326.S,RIW.N3326.S,0.1755,0.1762,0.1804,0.1797,0.1737,0.1733,0.1743 -"Machine shops; turned product; and screw, nut, and bolt (NAICS = 3327); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3327.S,RIW.G3327.S,1.1613,1.1477,1.1503,1.1265,1.1305,1.1253,1.1007 -"Coating, engraving, heat treating, and allied activities (NAICS = 3328); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N3328.S,RIW.N3328.S,0.4847,0.4767,0.4902,0.4751,0.4742,0.4831,0.4792 -"Other fabricated metal product (NAICS = 3329); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3329.S,RIW.G3329.S,1.3441,1.3398,1.3625,1.3505,1.3631,1.3597,1.3818 -"Ball and roller bearing (NAICS = 332991); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G332991.S,RIW.G332991.S,0.0883,0.0898,0.0925,0.0938,0.0940,0.0925,0.0943 -"Agriculture, construction, and mining machinery (NAICS = 3331); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3331.S,RIW.G3331.S,1.2403,1.2277,1.2407,1.2816,1.2406,1.2481,1.2540 -"Agricultural implement (NAICS = 33311); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G33311.S,RIW.G33311.S,0.6279,0.6201,0.6311,0.6526,0.6251,0.6314,0.6311 -"Farm machinery and equipment (NAICS = 333111); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G333111.S,RIW.G333111.S,0.5487,0.5418,0.5516,0.5705,0.5468,0.5533,0.5531 -"Construction machinery (NAICS = 33312); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G33312.S,RIW.G33312.S,0.4382,0.4329,0.4310,0.4489,0.4377,0.4417,0.4480 -"Mining and oil and gas field machinery (NAICS = 33313); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N33313.S,RIW.N33313.S,0.1742,0.1747,0.1786,0.1802,0.1778,0.1749,0.1749 -"Industrial machinery (NAICS = 3332); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3332.S,RIW.G3332.S,0.5538,0.5536,0.5534,0.5429,0.5355,0.5400,0.5394 -"Commercial and service industry machinery and other general purpose machinery (NAICS = 3333,9); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3333A9.S,RIW.G3333A9.S,2.1263,2.1196,2.1220,2.1150,2.1113,2.0653,2.0860 -"HVAC, metalworking, and power transmission machinery (NAICS = 3334-6); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3334T6.S,RIW.G3334T6.S,1.7238,1.7028,1.7054,1.7453,1.7286,1.7334,1.7371 -"Ventilation, heating, air-conditioning, and commercial refrigeration equipment (NAICS = 3334); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3334.S,RIW.G3334.S,0.6909,0.6938,0.7112,0.7620,0.7295,0.7305,0.7357 -"Metalworking machinery (NAICS = 3335); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3335.S,RIW.G3335.S,0.5079,0.5118,0.5110,0.5144,0.5258,0.5169,0.5208 -"Engine, turbine, and power transmission equipment (NAICS = 3336); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3336.S,RIW.G3336.S,0.5251,0.4972,0.4832,0.4689,0.4733,0.4861,0.4807 -"Audio and video equipment (NAICS = 3343); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3343.S,RIW.G3343.S,0.0569,0.0561,0.0588,0.0564,0.0571,0.0552,0.0524 -"Semiconductor and other electronic component (NAICS = 3344); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3344.S,RIW.G3344.S,1.2968,1.2997,1.3090,1.2822,1.2859,1.3018,1.3003 -"Navigational, measuring, electromedical, and control instruments (NAICS = 3345); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3345.S,RIW.G3345.S,2.4544,2.4394,2.4898,2.4696,2.4771,2.4852,2.4881 -"Household appliance (NAICS = 3352); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3352.S,RIW.G3352.S,0.3640,0.3667,0.3564,0.3487,0.3593,0.3538,0.3531 -"Small electrical appliance (NAICS = 33521); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G33521.S,RIW.G33521.S,0.0534,0.0511,0.0488,0.0433,0.0429,0.0400,0.0400 -"Major appliance (NAICS = 33522); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G33522.S,RIW.G33522.S,0.3106,0.3156,0.3076,0.3054,0.3164,0.3138,0.3130 -"Electrical equipment except appliances (NAICS = 3351,3,9); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G335@2.S,RIW.G335@2.S,1.7650,1.7650,1.7872,1.7543,1.7762,1.7690,1.7516 -"Electric lighting equipment (NAICS = 3351); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3351.S,RIW.G3351.S,0.1983,0.1987,0.1936,0.1735,0.1740,0.1620,0.1638 -"Electrical equipment (NAICS = 3353); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3353.S,RIW.G3353.S,0.7217,0.7180,0.7352,0.7238,0.7366,0.7341,0.7317 -"Other electrical equipment and component (NAICS = 3359); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3359.S,RIW.G3359.S,0.8451,0.8482,0.8584,0.8570,0.8657,0.8728,0.8561 -"Battery (NAICS = 33591); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G33591.S,RIW.G33591.S,0.1456,0.1481,0.1475,0.1478,0.1520,0.1519,0.1505 -"Communication and energy wire and cable (NAICS = 33592); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N33592.S,RIW.N33592.S,0.1521,0.1519,0.1540,0.1528,0.1541,0.1547,0.1520 -"Other electrical equipment (NAICS = 33593,9); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G33593T9.S,RIW.G33593T9.S,0.5474,0.5482,0.5570,0.5564,0.5595,0.5662,0.5536 -"Transportation equipment (NAICS = 336); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G336.S,RIW.G336.S,8.8384,8.8887,8.7367,8.8667,9.0443,8.9665,8.9481 -"Automobile and light duty motor vehicle (NAICS = 33611); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G33611.S,RIW.G33611.S,2.5595,2.6095,2.5050,2.6181,2.7134,2.6368,2.6419 -"Automobile (NAICS = 336111); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G336111.S,RIW.G336111.S,0.4706,0.4739,0.4500,0.4592,0.4735,0.4154,0.4547 -"Light truck and utility vehicle (NAICS = 336112); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G336112.S,RIW.G336112.S,2.0889,2.1356,2.0549,2.1590,2.2399,2.2214,2.1872 -"Heavy duty truck (NAICS = 33612); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G33612.S,RIW.G33612.S,0.1578,0.1644,0.1457,0.1747,0.1937,0.1643,0.1438 -"Motor vehicle body and trailer (NAICS = 3362); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3362.S,RIW.G3362.S,0.5527,0.5606,0.5111,0.5263,0.5399,0.5440,0.5527 -"Truck trailer (NAICS = 336212); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G336212.S,RIW.G336212.S,0.1347,0.1360,0.1156,0.1164,0.1180,0.1186,0.1183 -"Motor home (NAICS = 336213); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N336213.S,RIW.N336213.S,0.0365,0.0383,0.0322,0.0336,0.0340,0.0327, -"Travel trailer and camper (NAICS = 336214); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G336214.S,RIW.G336214.S,0.1569,0.1651,0.1465,0.1575,0.1690,0.1716,0.1758 -"Aerospace product and parts (NAICS = 3364); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3364.S,RIW.G3364.S,2.3465,2.3235,2.3647,2.2997,2.3048,2.3361,2.3259 -"Aircraft and parts (NAICS = 336411-3); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G336411T3.S,RIW.G336411T3.S,2.0635,2.0407,2.0748,2.0211,2.0235,2.0545,2.0454 -"Railroad eq., ships and boats, and other transportation equipment (NAICS = 3365-9); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3365T9.S,RIW.G3365T9.S,0.8838,0.8756,0.8710,0.8676,0.8811,0.8838,0.8894 -"Railroad rolling stock (NAICS = 3365); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N3365.S,RIW.N3365.S,0.0805,0.0788,0.0806,0.0775,0.0812,0.0802,0.0820 -"Ship and boat building (NAICS = 3366); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3366.S,RIW.G3366.S,0.5788,0.5792,0.5684,0.5755,0.5792,0.5825,0.5838 -"Other transportation equipment (NAICS = 3369); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N3369.S,RIW.N3369.S,0.2245,0.2176,0.2220,0.2146,0.2208,0.2211,0.2236 -"Household and institutional furniture and kitchen cabinet (NAICS = 3371); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N3371.S,RIW.N3371.S,0.5051,0.5070,0.5114,0.5056,0.5077,0.5131,0.5054 -"Office and other furniture (NAICS = 3372,9); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3372A9.S,RIW.G3372A9.S,0.4728,0.4630,0.4567,0.4649,0.4552,0.4632,0.4431 -"Medical equipment and supplies (NAICS = 3391); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N3391.S,RIW.N3391.S,1.7046,1.6712,1.6725,1.6847,1.6758,1.6714,1.6529 -"Logging (NAICS = 1133); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N1133.S,RIW.N1133.S,0.1416,0.1361,0.1307,0.1386,0.1364,0.1348,0.1362 -"Newspaper, periodical, book, and directory publishers (NAICS = 5111); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G5111.S,RIW.G5111.S,1.4169,1.3905,1.4481,1.4320,1.4351,1.4372,1.4245 -"Newspaper publishers (NAICS = 51111); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G51111.S,RIW.G51111.S,0.3764,0.3743,0.3764,0.3764,0.3759,0.3735,0.3678 -"Periodical, book, and other publishers (NAICS = 51112-9); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G51112T9.S,RIW.G51112T9.S,1.0406,1.0162,1.0718,1.0556,1.0592,1.0638,1.0567 -"Crude processing (capacity); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B5610C.S,RIW.B5610C.S,17.6368,17.8583,17.4087,17.8524,17.8994,17.7324,17.8221 -"Primary & semifinished processing (capacity); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B562A3C.S,RIW.B562A3C.S,45.9383,45.7196,46.1886,45.7189,45.5642,45.8730,45.8302 -"Finished processing (capacity); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B5640C.S,RIW.B5640C.S,36.4249,36.4221,36.4027,36.4287,36.5364,36.3946,36.3476 -"Final products; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B50002.S,RIW.B50002.S,39.1008,39.0814,39.2023,39.0140,38.9720,38.8869,38.9142 -"Autos and trucks, consumer; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B51111.S,RIW.B51111.S,2.0735,2.1094,2.0202,2.1066,2.1782,2.1110,2.1111 -"Auto parts and allied goods; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B51112.S,RIW.B51112.S,1.3723,1.3884,1.3497,1.3576,1.3794,1.3616,1.3586 -"Other durable goods; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B51120.S,RIW.B51120.S,2.7452,2.7582,2.7892,2.8116,2.7828,2.7623,2.7572 -"Household appliances; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B511221.S,RIW.B511221.S,0.4363,0.4283,0.4395,0.4688,0.4225,0.4237,0.4326 -"Carpeting and furniture; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B511222.S,RIW.B511222.S,0.4805,0.4803,0.4832,0.4781,0.4766,0.4789,0.4716 -"Miscellaneous nondurable goods; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B51215.S,RIW.B51215.S,0.4095,0.4017,0.4020,0.4059,0.4016,0.4001,0.3960 -"Fuels; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B51221.S,RIW.B51221.S,2.6021,2.6338,2.5753,2.4879,2.5314,2.4627,2.5203 -"Residential utilities; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B51222.S,RIW.B51222.S,2.9268,2.8257,3.0253,2.8614,2.6547,2.8081,2.8408 -"Equipment, total; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B52000.S,RIW.B52000.S,11.2439,11.2121,11.2172,11.2344,11.2743,11.2243,11.1798 -"Business vehicles; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3361E.S,RIW.G3361E.S,0.6438,0.6645,0.6305,0.6863,0.7289,0.6901,0.6746 -"Business light vehicles; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G33611E.S,RIW.G33611E.S,0.4860,0.5001,0.4847,0.5116,0.5352,0.5258,0.5307 -"Automobile, business (NAICS = 336111pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G336111B.S,RIW.G336111B.S,0.0879,0.0882,0.0834,0.0846,0.0868,0.0758,0.0825 -"Light trucks, business (NAICS = 336112pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G336112B.S,RIW.G336112B.S,0.3981,0.4119,0.4014,0.4269,0.4484,0.4501,0.4483 -"Industrial equipment; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B52131.S,RIW.B52131.S,3.0729,3.0769,3.0772,3.0786,3.0850,3.0587,3.0838 -"Other equipment; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B52132.S,RIW.B52132.S,2.1269,2.1085,2.1186,2.1453,2.1156,2.1258,2.0996 -"Oil and gas well drilling and manufactured homes; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B52200.S,RIW.B52200.S,0.6449,0.6404,0.6354,0.6340,0.6370,0.6168,0.6019 -"Nonindustrial supplies; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B54000.S,RIW.B54000.S,15.7627,15.7347,15.7925,15.8244,15.7860,15.7832,15.6809 -"Non-energy business supplies; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B54210.S,RIW.B54210.S,7.7675,7.7599,7.7980,7.7828,7.7932,7.7603,7.6943 -"Computer and other board assemblies and parts; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B53121.S,RIW.B53121.S,0.1502,0.1451,0.1439,0.1403,0.1351,0.1368,0.1385 -"Semiconductors, printed circuit boards, and other; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B53122.S,RIW.B53122.S,0.7917,0.7976,0.8044,0.7889,0.7964,0.8059,0.8029 -"Other equipment parts; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B53123.S,RIW.B53123.S,3.7228,3.6921,3.7235,3.6762,3.7048,3.7204,3.7303 -"Basic metals; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B53131.S,RIW.B53131.S,2.7719,2.7882,2.7730,2.8059,2.8422,2.7917,2.8401 -"Miscellaneous durable materials; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B53132.S,RIW.B53132.S,6.4545,6.4253,6.4166,6.4124,6.4105,6.4089,6.3550 -"Other nondurable materials; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B53240.S,RIW.B53240.S,3.3238,3.3351,3.3436,3.3438,3.3138,3.2953,3.2961 -"Containers; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B53241.S,RIW.B53241.S,1.0442,1.0443,1.0555,1.0583,1.0400,1.0481,1.0437 -"Miscellaneous nondurable materials; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B53242.S,RIW.B53242.S,2.2795,2.2908,2.2881,2.2856,2.2738,2.2471,2.2524 \ No newline at end of file diff --git a/data/fedres/FRB_G17_last10.csv.template b/data/fedres/FRB_G17_last10.csv.template deleted file mode 100644 index 1532c1f..0000000 --- a/data/fedres/FRB_G17_last10.csv.template +++ /dev/null @@ -1,1171 +0,0 @@ -"Descriptions:","Unit:","Multiplier:","Currency:","Unique Identifier:","Series Name:",2023-09,2023-10,2023-11,2023-12,2024-01,2024-02,2024-03,2024-04,2024-05,2024-06 -"Total index; s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.B50001.S,IP.B50001.S,103.3081,102.5781,102.8868,102.6309,101.4830,102.6045,102.4062,102.4329,103.3282,103.9941 -"Total index; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.B50001.N,IP.B50001.N,103.2998,102.1654,102.0599,102.2236,101.7062,102.6262,102.5993,101.4902,102.2359,105.2923 -"Manufacturing (SIC); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.B00004.S,IP.B00004.S,99.6109,98.8688,99.3261,99.2357,97.9454,99.1743,99.3670,98.8643,99.8693,100.2590 -"Manufacturing (SIC); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.B00004.N,IP.B00004.N,99.7820,99.7285,98.9643,98.0445,96.2967,99.2403,100.1158,99.5889,99.8969,101.6729 -"Manufacturing (NAICS); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.GMF.S,IP.GMF.S,100.1002,99.3166,99.8694,99.8251,98.4489,99.7005,99.9020,99.3826,100.3992,100.7795 -"Manufacturing (NAICS); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.GMF.N,IP.GMF.N,100.1236,100.1184,99.4486,98.6186,96.8817,99.9161,100.8433,100.2284,100.5069,102.2007 -"Durable manufacturing (NAICS); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.GMFD.S,IP.GMFD.S,101.0196,99.5957,101.0033,100.6129,99.3683,100.7439,100.8861,100.4327,101.1225,101.1192 -"Durable manufacturing (NAICS); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.GMFD.N,IP.GMFD.N,100.8211,100.5774,100.4241,99.1088,97.9337,101.5887,102.6128,101.6599,101.1258,102.5422 -"Wood product (NAICS = 321); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G321.S,IP.G321.S,95.7730,93.6082,96.1325,93.2139,92.1930,92.8369,93.6653,92.3425,94.2914,94.6032 -"Wood product (NAICS = 321); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G321.N,IP.G321.N,95.3413,95.1553,93.7804,88.2029,89.8186,92.1736,95.1662,95.3889,95.6365,97.8190 -"Nonmetallic mineral product (NAICS = 327); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G327.S,IP.G327.S,104.6877,105.2729,103.5568,103.8036,100.4795,101.4939,99.7777,99.5641,98.9867,100.2250 -"Nonmetallic mineral product (NAICS = 327); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G327.N,IP.G327.N,108.1633,109.8206,104.6532,100.9280,93.3512,94.6525,96.2743,99.4853,100.3381,104.1092 -"Primary metal (NAICS = 331); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G331.S,IP.G331.S,96.1150,93.3930,94.7484,94.8505,92.8565,93.2205,93.7604,92.1179,95.4749,94.5628 -"Primary metal (NAICS = 331); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G331.N,IP.G331.N,94.9276,92.1541,93.6359,93.2892,91.6827,95.6155,93.7303,94.3983,96.0340,95.8882 -"Fabricated metal product (NAICS = 332); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G332.S,IP.G332.S,99.3547,99.3238,99.1725,98.6583,99.4417,100.0425,99.5941,98.9094,99.9123,98.6243 -"Fabricated metal product (NAICS = 332); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G332.N,IP.G332.N,98.8683,99.4287,99.1271,99.1399,98.5154,99.9246,99.9667,99.0548,99.6685,99.1889 -"Machinery (NAICS = 333); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G333.S,IP.G333.S,100.2485,99.0934,99.9234,98.8167,98.0658,100.0264,98.5349,98.0574,98.8230,98.1326 -"Machinery (NAICS = 333); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G333.N,IP.G333.N,96.7716,95.8180,96.0229,97.7220,101.8090,104.3224,102.5335,102.8769,99.2894,99.4388 -"Computer and electronic product (NAICS = 334); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G334.S,IP.G334.S,114.2860,115.9394,116.2547,115.7863,116.6199,116.4492,116.7753,117.0948,118.2858,117.6896 -"Computer and electronic product (NAICS = 334); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G334.N,IP.G334.N,115.5070,116.6757,117.2521,118.4356,114.4948,113.9228,117.8183,114.8016,117.0175,119.8798 -"Electrical equipment, appliance, and component (NAICS = 335); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G335.S,IP.G335.S,102.4423,104.0849,103.7895,103.6602,103.4266,102.6318,104.1364,102.7319,103.8411,105.4065 -"Electrical equipment, appliance, and component (NAICS = 335); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G335.N,IP.G335.N,101.1995,105.5410,104.8799,102.8962,102.2922,103.3451,104.5090,104.2792,103.9385,105.7604 -"Motor vehicles and parts (NAICS = 3361-3); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G3361T3.S,IP.G3361T3.S,107.2190,98.5911,107.2618,108.6938,102.2729,108.1759,110.5541,109.8425,109.8267,111.5909 -"Motor vehicles and parts (NAICS = 3361-3); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G3361T3.N,IP.G3361T3.N,109.6608,105.8699,106.9852,99.5311,96.6322,113.4217,117.5704,112.6249,109.9166,113.5699 -"Aerospace and miscellaneous transportation eq. (NAICS = 3364-9); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G3364T9.S,IP.G3364T9.S,89.0978,89.2298,89.6076,88.6273,88.9819,88.1772,88.6743,90.1022,90.6879,91.8321 -"Aerospace and miscellaneous transportation eq. (NAICS = 3364-9); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G3364T9.N,IP.G3364T9.N,88.5905,89.2251,89.6990,89.2474,88.8736,88.1679,89.9398,90.0525,90.0491,92.2101 -"Furniture and related product (NAICS = 337); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G337.S,IP.G337.S,79.9958,78.7849,78.1663,77.4047,76.6185,77.6496,76.9191,77.7549,76.1665,77.2765 -"Furniture and related product (NAICS = 337); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G337.N,IP.G337.N,79.7158,78.3599,77.4985,78.1041,75.0103,77.2986,76.5700,77.1625,76.3503,78.2004 -"Miscellaneous (NAICS = 339); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G339.S,IP.G339.S,109.5680,109.6518,108.6155,107.7731,107.1942,109.2186,109.1388,107.8046,106.4554,104.6150 -"Miscellaneous (NAICS = 339); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G339.N,IP.G339.N,109.0804,110.2909,109.1419,108.8593,105.9249,108.8590,108.9161,107.0353,105.8339,105.5009 -"Nondurable manufacturing (NAICS); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.GMFN.S,IP.GMFN.S,99.2178,99.0824,98.7655,99.0714,97.5605,98.6864,98.9484,98.3613,99.7130,100.4869 -"Nondurable manufacturing (NAICS); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.GMFN.N,IP.GMFN.N,99.4632,99.6990,98.5028,98.1646,95.8547,98.2578,99.0865,98.8168,99.9274,101.9064 -"Food, beverage, and tobacco (NAICS = 311,2); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G311A2.S,IP.G311A2.S,99.8630,100.7174,100.0984,100.1352,99.0501,99.4265,99.2723,98.8816,99.6826,100.1311 -"Food, beverage, and tobacco (NAICS = 311,2); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G311A2.N,IP.G311A2.N,101.2198,103.2620,99.6555,97.5040,97.0196,99.7313,100.0718,99.6885,98.6197,101.6420 -"Textiles and products (NAICS = 313,4); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G313A4.S,IP.G313A4.S,81.0933,80.7107,78.4959,77.4111,77.4221,78.7346,78.7028,78.1825,80.0926,81.2789 -"Textiles and products (NAICS = 313,4); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G313A4.N,IP.G313A4.N,81.5435,82.7379,78.1513,75.4446,74.9165,77.2366,78.7356,79.7710,79.3250,82.7497 -"Apparel and leather goods (NAICS = 315,6); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G315A6.S,IP.G315A6.S,85.5607,86.2961,83.1091,82.6296,82.3297,81.4656,80.1753,81.3547,81.1666,82.3744 -"Apparel and leather goods (NAICS = 315,6); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G315A6.N,IP.G315A6.N,85.2055,85.5745,83.0859,82.9259,80.5140,81.4274,80.5094,82.6447,81.7672,83.0804 -"Paper (NAICS = 322); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G322.S,IP.G322.S,86.3313,85.9005,86.5083,86.0626,85.7918,87.2291,86.9501,87.0085,87.4494,88.7263 -"Paper (NAICS = 322); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G322.N,IP.G322.N,85.4842,86.1778,86.2586,84.9091,85.2558,88.0746,86.8161,88.1064,87.5554,89.5423 -"Printing and related support activities (NAICS = 323); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G323.S,IP.G323.S,81.3588,80.5618,80.8839,80.6152,81.7001,82.9267,83.7230,84.6393,84.2501,86.4347 -"Printing and related support activities (NAICS = 323); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G323.N,IP.G323.N,80.9724,81.3246,81.5363,81.7096,80.8683,82.2883,84.1352,84.8432,84.6990,86.6551 -"Petroleum and coal products (NAICS = 324); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G324.S,IP.G324.S,91.8335,92.4064,92.8178,93.6831,91.6278,92.6833,94.5957,90.9141,94.1743,94.6060 -"Petroleum and coal products (NAICS = 324); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G324.N,IP.G324.N,92.5375,90.9599,92.7812,91.5253,85.6341,87.5035,92.4119,91.4842,97.2351,98.8667 -"Chemical (NAICS = 325); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G325.S,IP.G325.S,104.4145,103.4962,103.1023,103.7028,101.2194,103.2941,103.4676,103.1915,105.2738,106.5475 -"Chemical (NAICS = 325); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G325.N,IP.G325.N,103.6027,102.7705,102.7241,104.6321,100.8440,103.3398,103.8071,103.2021,105.9461,107.0945 -"Plastics and rubber products (NAICS = 326); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G326.S,IP.G326.S,104.3282,103.0584,102.7229,103.3795,101.9374,102.3816,102.6582,102.8501,102.8190,102.3809 -"Plastics and rubber products (NAICS = 326); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G326.N,IP.G326.N,104.5125,103.7633,102.5533,103.1052,100.9760,102.7743,102.5520,102.6132,102.4892,103.6658 -"Other manufacturing; s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.GMFO.S,IP.GMFO.S,82.2077,83.0265,79.8641,78.0214,79.9650,80.3449,80.2102,80.3324,80.9101,81.6567 -"Other manufacturing; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.GMFO.N,IP.GMFO.N,88.0415,86.1688,81.8369,77.5252,75.3476,74.8914,73.8298,76.6126,78.0335,82.9219 -"Mining (NAICS = 21); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G21.S,IP.G21.S,120.8900,119.9735,119.7738,120.4936,115.3018,120.2070,119.5705,119.7955,118.9654,119.2994 -"Mining (NAICS = 21); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G21.N,IP.G21.N,121.6955,120.9358,120.6152,119.7234,112.7542,117.5279,118.5917,119.7665,119.6233,120.0676 -"Electric and gas utilities (NAICS = 2211,2); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G2211A2.S,IP.G2211A2.S,106.1847,105.7968,105.5799,103.0754,107.4735,103.5652,101.0304,104.6688,106.6891,109.7084 -"Electric and gas utilities (NAICS = 2211,2); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G2211A2.N,IP.G2211A2.N,103.8604,94.5422,99.4709,108.6596,124.2325,106.1255,98.3226,90.4537,95.3565,110.5702 -"Electric power generation, transmission, and distribution (NAICS = 2211); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G2211.S,IP.G2211.S,105.7446,105.2820,105.0655,103.0898,107.1461,103.7609,101.7041,104.7089,107.3317,110.5250 -"Electric power generation, transmission, and distribution (NAICS = 2211); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G2211.N,IP.G2211.N,110.5779,96.7835,95.2256,101.2066,111.6849,98.8483,93.5716,89.9546,99.0826,117.7453 -"Natural gas distribution (NAICS = 2212); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G2212.S,IP.G2212.S,108.3599,108.5075,108.3072,102.1671,108.9203,101.3612,95.4612,103.5897,101.2707,103.0105 -"Natural gas distribution (NAICS = 2212); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G2212.N,IP.G2212.N,58.2002,79.9657,130.4087,162.1837,214.0887,158.2215,132.2257,93.5295,67.5181,57.2905 -"Crude processing (capacity); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.B5610C.S,IP.B5610C.S,113.4701,112.1635,112.0574,112.8320,108.0293,111.7128,111.7643,111.3414,111.6440,112.4325 -"Crude processing (capacity); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.B5610C.N,IP.B5610C.N,113.0922,112.2497,112.7663,113.0633,107.5907,111.5472,112.0354,111.3376,111.5287,112.3570 -"Primary & semifinished processing (capacity); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.B562A3C.S,IP.B562A3C.S,99.3260,98.7383,98.9088,98.2895,98.4249,98.5650,98.1058,98.4383,99.6991,100.5960 -"Primary & semifinished processing (capacity); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.B562A3C.N,IP.B562A3C.N,99.0768,96.6078,97.2714,98.4724,100.2318,98.1333,97.5728,95.9172,97.5912,102.4009 -"Finished processing (capacity); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.B5640C.S,IP.B5640C.S,102.9844,102.3324,103.0057,102.7718,101.5830,102.8331,102.8664,102.6949,103.3715,103.6736 -"Finished processing (capacity); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.B5640C.N,IP.B5640C.N,103.4558,103.9607,102.5685,101.3062,100.0194,103.5288,103.9702,103.4019,103.1761,104.9224 -"Durable manufacturing (NAICS); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.GMFD.S,IP.GMFD.S,101.0196,99.5957,101.0033,100.6129,99.3683,100.7439,100.8861,100.4327,101.1225,101.1192 -"Durable manufacturing (NAICS); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.GMFD.N,IP.GMFD.N,100.8211,100.5774,100.4241,99.1088,97.9337,101.5887,102.6128,101.6599,101.1258,102.5422 -"Motor vehicles and parts (NAICS = 3361-3); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3361T3.S,IP.G3361T3.S,107.2190,98.5911,107.2618,108.6938,102.2729,108.1759,110.5541,109.8425,109.8267,111.5909 -"Motor vehicles and parts (NAICS = 3361-3); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3361T3.N,IP.G3361T3.N,109.6608,105.8699,106.9852,99.5311,96.6322,113.4217,117.5704,112.6249,109.9166,113.5699 -"Aerospace and miscellaneous transportation eq. (NAICS = 3364-9); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3364T9.S,IP.G3364T9.S,89.0978,89.2298,89.6076,88.6273,88.9819,88.1772,88.6743,90.1022,90.6879,91.8321 -"Aerospace and miscellaneous transportation eq. (NAICS = 3364-9); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3364T9.N,IP.G3364T9.N,88.5905,89.2251,89.6990,89.2474,88.8736,88.1679,89.9398,90.0525,90.0491,92.2101 -"Wood product (NAICS = 321); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G321.S,IP.G321.S,95.7730,93.6082,96.1325,93.2139,92.1930,92.8369,93.6653,92.3425,94.2914,94.6032 -"Wood product (NAICS = 321); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G321.N,IP.G321.N,95.3413,95.1553,93.7804,88.2029,89.8186,92.1736,95.1662,95.3889,95.6365,97.8190 -"Sawmills and wood preservation (NAICS = 3211); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3211.S,IP.N3211.S,102.0227,94.6899,101.0516,93.7120,91.7064,89.9187,94.0300,,, -"Sawmills and wood preservation (NAICS = 3211); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3211.N,IP.N3211.N,99.8411,98.7939,97.0610,82.6377,90.6493,91.4074,96.4661,,, -"Plywood and misc. wood products (NAICS = 3212,9); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3212A9.S,IP.G3212A9.S,93.1968,93.1565,94.1089,92.9947,92.3745,94.0040,93.5060,92.5245,92.9320,94.6569 -"Plywood and misc. wood products (NAICS = 3212,9); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3212A9.N,IP.G3212A9.N,93.4992,93.6681,92.4404,90.4790,89.4891,92.4927,94.6496,94.1117,95.0546,98.0713 -"Veneer, plywood, and engineered wood product (NAICS = 3212); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3212.S,IP.G3212.S,76.4139,76.6663,77.5886,76.8058,75.1116,75.7129,76.8666,77.3218,75.8708,77.6306 -"Veneer, plywood, and engineered wood product (NAICS = 3212); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3212.N,IP.G3212.N,78.1480,76.0011,75.2447,71.9607,70.8643,74.5119,79.6901,77.7714,78.8490,82.7802 -"Veneer and plywood (NAICS = 321211,2); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G321211A2.S,IP.G321211A2.S,71.5579,71.9867,72.2361,71.8618,71.0205,70.4815,70.2448,70.3106,70.2583,70.0880 -"Veneer and plywood (NAICS = 321211,2); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G321211A2.N,IP.G321211A2.N,78.3080,65.8453,72.5467,68.2146,60.8753,71.3193,79.9889,66.4908,73.9070,78.0255 -"Reconstituted wood product (NAICS = 321219); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G321219.S,IP.G321219.S,63.7126,64.8572,64.3138,66.0355,63.6222,67.0139,67.0443,68.0540,65.2271,67.1385 -"Reconstituted wood product (NAICS = 321219); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G321219.N,IP.G321219.N,63.3845,65.1930,57.8315,56.7792,63.1326,67.6741,70.0067,72.0068,67.3429,72.6526 -"Other wood product (NAICS = 3219); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3219.S,IP.G3219.S,102.4527,102.2480,103.2143,101.9141,101.9074,104.1192,102.6731,100.8654,102.3513,104.0457 -"Other wood product (NAICS = 3219); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3219.N,IP.G3219.N,101.9316,103.3982,101.9069,100.6996,99.7737,102.3962,102.8039,103.0677,103.9268,106.3895 -"Millwork (NAICS = 32191); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G32191.S,IP.G32191.S,101.2678,100.5156,102.1926,98.9865,100.1104,100.6424,96.9936,95.5801,97.7137,99.8040 -"Millwork (NAICS = 32191); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G32191.N,IP.G32191.N,101.2951,101.4277,100.7565,98.2957,97.5386,98.1125,96.4487,97.2465,98.6089,101.4664 -"Wood container and pallet (NAICS = 32192); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N32192.S,IP.N32192.S,98.2984,99.9479,101.6463,101.7580,99.8046,106.8831,110.3839,105.3692,108.2042,110.1426 -"Wood container and pallet (NAICS = 32192); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N32192.N,IP.N32192.N,96.7814,99.9288,101.7740,102.7280,98.8263,107.3574,111.3661,106.1263,109.3732,110.5188 -"All other wood product (NAICS = 32199); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G32199.S,IP.G32199.S,107.2328,106.8609,105.9816,107.4439,106.5105,108.8575,108.5392,107.9755,107.3801,108.1589 -"All other wood product (NAICS = 32199); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G32199.N,IP.G32199.N,106.2847,109.2055,103.9575,103.7645,104.4281,107.2228,109.3411,112.0090,110.4259,112.9258 -"Manufactured home (mobile home) (NAICS = 321991); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N321991.S,IP.N321991.S,81.3636,78.8752,79.8919,81.7631,74.9864,86.4634,83.5164,84.3233,85.6156, -"Manufactured home (mobile home) (NAICS = 321991); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N321991.N,IP.N321991.N,83.1225,83.2240,77.2284,66.3619,70.9988,87.0983,87.1126,89.1092,89.0354, -"Nonmetallic mineral product (NAICS = 327); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G327.S,IP.G327.S,104.6877,105.2729,103.5568,103.8036,100.4795,101.4939,99.7777,99.5641,98.9867,100.2250 -"Nonmetallic mineral product (NAICS = 327); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G327.N,IP.G327.N,108.1633,109.8206,104.6532,100.9280,93.3512,94.6525,96.2743,99.4853,100.3381,104.1092 -"Clay, lime, gypsum, and misc. nonmetallic mineral products (NAICS = 3271,4,9); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3271A4A9.S,IP.G3271A4A9.S,116.0748,114.1540,113.5888,114.5343,114.6827,114.1996,113.3835,115.1072,115.3377,117.1126 -"Clay, lime, gypsum, and misc. nonmetallic mineral products (NAICS = 3271,4,9); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3271A4A9.N,IP.G3271A4A9.N,118.4062,116.4447,113.2223,113.9404,113.0230,111.5629,112.1427,115.0851,114.4770,117.7469 -"Clay and misc. nonmetallic mineral products (NAICS = 3271,9); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3271A9.S,IP.G3271A9.S,118.7708,116.4537,115.6488,116.7029,116.9555,116.5003,115.5821,117.4398,117.6097,119.4779 -"Clay and misc. nonmetallic mineral products (NAICS = 3271,9); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3271A9.N,IP.G3271A9.N,120.7846,117.6981,115.7665,116.8762,116.0423,113.5312,113.7562,115.9942,116.9643,120.5551 -"Clay product and refractory (NAICS = 3271); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3271.S,IP.G3271.S,97.4801,97.4271,96.2509,93.4482,91.3225,92.6277,92.2547,93.6254,92.4035,90.4598 -"Clay product and refractory (NAICS = 3271); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3271.N,IP.G3271.N,97.3802,97.0686,97.7831,93.5249,89.3617,91.0639,92.8454,93.4096,93.4260,92.3269 -"Pottery, ceramics, and plumbing fixture (NAICS = 32711); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G32711.S,IP.G32711.S,109.4933,109.0055,107.3894,103.6532,100.8823,101.2876,101.6310,101.2762,101.6830,98.8527 -"Pottery, ceramics, and plumbing fixture (NAICS = 32711); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G32711.N,IP.G32711.N,107.0811,106.6937,111.7582,107.0697,101.2337,99.6617,103.0177,100.2036,102.7670,99.1463 -"Clay building material and refractories (NAICS = 32712); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G32712.S,IP.G32712.S,92.0594,92.2078,91.2336,88.8598,87.0309,88.7570,88.0504,90.2249,88.2450,86.7095 -"Clay building material and refractories (NAICS = 32712); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G32712.N,IP.G32712.N,93.0483,92.7713,91.4585,87.3922,84.0003,87.2294,88.2820,90.4172,89.2510,89.3199 -"Other nonmetallic mineral product (NAICS = 3279); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3279.S,IP.G3279.S,125.9534,122.8910,122.2032,124.5091,125.5320,124.5074,123.4111,125.4306,126.0470,129.1395 -"Other nonmetallic mineral product (NAICS = 3279); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3279.N,IP.G3279.N,128.6638,124.6627,121.8628,124.7155,124.9579,121.0794,120.8035,123.5859,124.8646,129.9665 -"Lime and gypsum product (NAICS = 3274); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3274.S,IP.G3274.S,103.7142,103.5355,104.0164,104.4735,104.1661,103.5641,103.1962,104.3292,104.8203,106.1814 -"Lime and gypsum product (NAICS = 3274); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3274.N,IP.G3274.N,107.4269,110.4131,101.5316,100.5218,99.2443,102.3729,104.4922,110.4737,103.0347,104.8981 -"Glass and glass product (NAICS = 3272); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3272.S,IP.G3272.S,84.1963,88.1402,87.9602,85.3495,80.1186,81.3768,81.8129,82.3925,82.5977,82.3666 -"Glass and glass product (NAICS = 3272); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3272.N,IP.G3272.N,84.2084,89.5373,89.7963,83.3279,78.8313,81.0216,81.9804,81.6416,82.5687,83.4334 -"Glass container (NAICS = 327213); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G327213.S,IP.G327213.S,71.1052,69.5393,68.5616,68.4713,69.0509,69.3390,69.3544,69.0598,68.7680,68.4993 -"Glass container (NAICS = 327213); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G327213.N,IP.G327213.N,70.0128,72.4722,69.0393,53.8953,68.3921,72.5768,71.8745,69.3466,71.0938,70.4077 -"Cement and concrete product (NAICS = 3273); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3273.S,IP.G3273.S,105.6864,106.7045,103.4994,104.4260,99.3371,101.3478,98.0813,96.1365,94.6501,96.1066 -"Cement and concrete product (NAICS = 3273); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3273.N,IP.G3273.N,111.5144,114.2936,105.4041,99.5485,85.7830,88.7386,91.4041,96.2904,98.1805,103.5291 -"Cement (NAICS = 32731); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N32731.S,IP.N32731.S,92.9412,93.3602,90.8291,92.4447,80.6341,95.2082,90.4533,90.8194,, -"Cement (NAICS = 32731); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N32731.N,IP.N32731.N,101.9730,104.7867,91.7968,75.0199,58.3897,76.5615,84.1068,95.6975,, -"Concrete and product (NAICS = 32732-9); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N32732T9.S,IP.N32732T9.S,108.2550,109.3906,106.0507,106.8418,103.0707,102.6080,99.6338,97.2310,95.8582,97.2520 -"Concrete and product (NAICS = 32732-9); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N32732T9.N,IP.N32732T9.N,113.3182,116.0890,108.0058,104.2939,91.1016,91.0577,92.7574,96.3125,98.7020,102.9644 -"Primary metal (NAICS = 331); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G331.S,IP.G331.S,96.1150,93.3930,94.7484,94.8505,92.8565,93.2205,93.7604,92.1179,95.4749,94.5628 -"Primary metal (NAICS = 331); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G331.N,IP.G331.N,94.9276,92.1541,93.6359,93.2892,91.6827,95.6155,93.7303,94.3983,96.0340,95.8882 -"Iron and steel products (NAICS = 3311,2); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3311A2.S,IP.G3311A2.S,96.8637,95.9154,96.4016,96.0143,93.1535,93.8792,93.6837,91.8449,92.7975,93.3767 -"Iron and steel products (NAICS = 3311,2); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3311A2.N,IP.G3311A2.N,95.7431,93.2064,94.2883,92.1218,92.9788,96.0507,93.1446,95.0598,93.8230,95.7319 -"Pig iron (NAICS = 3311,2pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3311A2Q.S,IP.G3311A2Q.S,89.7458,88.4318,91.9274,86.1023,75.2389,75.6885,75.5386,75.2389,74.4898,73.8938 -"Pig iron (NAICS = 3311,2pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3311A2Q.N,IP.G3311A2Q.N,88.8293,86.5780,88.4540,85.0710,80.6743,80.2084,74.7509,73.1651,72.7011,74.1001 -"Raw steel (NAICS = 3311,2pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3311A2R.S,IP.N3311A2R.S,92.4960,90.7299,90.8912,94.2842,88.8716,92.8086,92.7557,89.3393,92.8673, -"Raw steel (NAICS = 3311,2pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3311A2R.N,IP.N3311A2R.N,92.5273,89.1632,89.6655,90.7653,89.4265,94.0586,91.5444,92.0334,93.4113, -"Coke and products (NAICS = 3311,2pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3311A2F.S,IP.G3311A2F.S,96.8540,96.0892,94.9751,93.7298,92.3673,92.2978,93.4378,95.8706,97.5142,98.3422 -"Coke and products (NAICS = 3311,2pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3311A2F.N,IP.G3311A2F.N,95.1121,95.2815,94.7841,94.1193,92.9636,93.1448,94.6220,97.0222,97.8890,97.2888 -"Construction steel (NAICS = 3311,2pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3311A2B.S,IP.N3311A2B.S,115.6549,115.6057,115.7343,109.5612,110.4311,121.7283,131.0932,123.7749,127.8535, -"Construction steel (NAICS = 3311,2pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3311A2B.N,IP.N3311A2B.N,117.1275,114.5970,115.4217,106.3409,107.6414,121.3489,127.2263,124.9273,128.5170, -"Consumer durable steel (NAICS = 3311,2pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3311A2C.S,IP.N3311A2C.S,127.6661,127.9876,128.9165,149.2249,141.0341,113.7689,106.2006,101.0267,106.7291, -"Consumer durable steel (NAICS = 3311,2pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3311A2C.N,IP.N3311A2C.N,125.7309,125.7020,129.4034,143.0245,142.5954,117.0236,104.8769,109.2608,106.9776, -"Can and closure steel (NAICS = 3311,2pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3311A2D.S,IP.N3311A2D.S,66.8082,61.4345,37.3914,60.3658,45.1533,43.4492,43.4689,48.2056,45.4838, -"Can and closure steel (NAICS = 3311,2pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3311A2D.N,IP.N3311A2D.N,70.4517,61.2212,39.6751,59.3255,41.5409,42.4961,39.5983,47.1194,45.1257, -"Equipment steel (NAICS = 3311,2pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3311A2E.S,IP.N3311A2E.S,71.9112,71.6992,69.3478,68.9558,64.3482,69.2853,77.2556,80.9336,78.2410, -"Equipment steel (NAICS = 3311,2pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3311A2E.N,IP.N3311A2E.N,71.3459,68.7435,69.3721,67.6811,62.6200,68.7321,80.2813,80.9901,80.2885, -"Miscellaneous steel (NAICS = 3311,2pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3311A2Z.S,IP.N3311A2Z.S,85.8246,84.3134,85.4545,79.4834,79.0772,85.1410,83.2469,83.3357,82.0574, -"Miscellaneous steel (NAICS = 3311,2pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3311A2Z.N,IP.N3311A2Z.N,83.7549,80.5159,81.4349,75.1653,78.5716,88.0309,83.7129,86.7868,83.7793, -"Alumina and aluminum production and processing (NAICS = 3313); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3313.S,IP.G3313.S,95.8325,82.6218,89.6810,93.5412,90.7023,90.6208,94.0361,91.1266,100.7626,96.6235 -"Alumina and aluminum production and processing (NAICS = 3313); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3313.N,IP.G3313.N,96.3348,83.6155,87.3930,88.4605,85.3607,97.5657,92.6983,94.1657,102.5081,99.9613 -"Primary aluminum production (NAICS = 331313pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N331313P.S,IP.N331313P.S,96.6717,94.9562,95.5941,97.0563,89.9001,77.1507,79.3415,78.7246,78.8977,78.8351 -"Primary aluminum production (NAICS = 331313pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N331313P.N,IP.N331313P.N,93.6215,93.7409,96.4253,97.3633,90.9160,78.0854,80.1527,80.3455,79.7731,79.0906 -"Secondary smelting and alloying of aluminum (NAICS = 331314); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N331314.S,IP.N331314.S,103.2702,104.1281,103.5045,108.6576,96.1229,97.5939,106.2655,101.9837,, -"Secondary smelting and alloying of aluminum (NAICS = 331314); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N331314.N,IP.N331314.N,102.9349,103.1444,103.3576,103.5739,99.2144,108.0600,104.1221,102.8028,, -"Misc. aluminum materials (NAICS = 331315,8pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N331315A8M.S,IP.N331315A8M.S,98.5574,81.4037,90.2052,94.1199,94.4975,96.1166,97.8135,94.1886,105.4912, -"Misc. aluminum materials (NAICS = 331315,8pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N331315A8M.N,IP.N331315A8M.N,99.4371,82.6536,87.2814,91.9763,86.3234,101.9195,95.6711,97.0695,107.8030, -"Aluminum extruded product (NAICS = 331318pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N331318E.S,IP.N331318E.S,86.4446,71.6298,79.9998,83.6388,80.0878,77.5877,82.0424,80.7798,95.5000, -"Aluminum extruded product (NAICS = 331318pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N331318E.N,IP.N331318E.N,87.2894,73.4795,77.2423,71.9481,74.8905,86.0565,82.3486,85.5008,98.2916, -"Nonferrous metal (except aluminum) production and processing (NAICS = 3314); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3314.S,IP.G3314.S,110.4712,109.9981,110.5981,110.4087,109.0725,107.9436,108.5632,106.5898,111.5138,110.6747 -"Nonferrous metal (except aluminum) production and processing (NAICS = 3314); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3314.N,IP.G3314.N,107.3257,110.4689,110.5648,114.0894,107.6485,109.6406,109.9362,108.1427,111.6074,109.0374 -"Nonferrous metal (except aluminum) smelting and refining (NAICS = 33141); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G33141.S,IP.G33141.S,124.7793,139.5298,135.1308,139.9248,138.0765,129.5499,135.9594,129.1964,138.8850,137.9864 -"Nonferrous metal (except aluminum) smelting and refining (NAICS = 33141); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G33141.N,IP.G33141.N,114.7596,142.3818,128.7105,154.7910,135.4524,137.3127,144.7369,134.3199,139.5613,131.4867 -"Primary smelting and refining of copper (NAICS = 33141pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G33141C.S,IP.G33141C.S,123.2823,144.5094,146.1428,149.3591,144.0141,143.5117,135.5183,150.0829,164.4720,165.0150 -"Primary smelting and refining of copper (NAICS = 33141pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G33141C.N,IP.G33141C.N,119.0915,142.6864,147.6703,143.2712,152.8208,159.4668,143.7572,144.6283,155.3765,156.4766 -"Primary smelting and refining of nonferrous metal (except copper and aluminum) (NAICS = 33141pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N33141N.S,IP.N33141N.S,122.0955,134.4561,128.3164,133.4803,132.7305,122.0468,132.4995,119.7611,, -"Primary smelting and refining of nonferrous metal (except copper and aluminum) (NAICS = 33141pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N33141N.N,IP.N33141N.N,110.6691,138.9137,119.7777,154.5713,126.9648,127.3530,141.3950,127.9636,, -"Foundries (NAICS = 3315); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3315.S,IP.G3315.S,82.1477,79.7125,80.0014,78.8641,78.8845,80.4787,80.7028,80.8295,83.8840,81.4529 -"Foundries (NAICS = 3315); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3315.N,IP.G3315.N,81.6981,78.5568,81.0506,79.7068,78.5301,81.0919,81.2981,81.2453,83.0250,82.4917 -"Fabricated metal product (NAICS = 332); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G332.S,IP.G332.S,99.3547,99.3238,99.1725,98.6583,99.4417,100.0425,99.5941,98.9094,99.9123,98.6243 -"Fabricated metal product (NAICS = 332); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G332.N,IP.G332.N,98.8683,99.4287,99.1271,99.1399,98.5154,99.9246,99.9667,99.0548,99.6685,99.1889 -"Forging and stamping (NAICS = 3321); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3321.S,IP.N3321.S,82.9193,80.9877,81.6957,80.0285,80.3966,80.5044,80.5386,80.2186,81.8598,80.4796 -"Forging and stamping (NAICS = 3321); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3321.N,IP.N3321.N,81.8802,80.0348,80.5998,79.7142,80.3283,82.1637,81.6264,82.3469,82.9709,81.5477 -"Cutlery and handtool (NAICS = 3322); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3322.S,IP.N3322.S,97.6970,99.0863,97.2738,98.6961,100.6302,100.9195,101.9076,99.9994,103.0830,99.7858 -"Cutlery and handtool (NAICS = 3322); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3322.N,IP.N3322.N,96.4115,99.0253,96.5440,99.7077,98.9005,102.9028,102.2291,101.2365,103.3700,100.9472 -"Architectural and structural metals (NAICS = 3323); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3323.S,IP.N3323.S,100.4515,100.1748,101.0817,99.9107,101.5489,103.9408,102.9094,102.1486,103.9870,102.2810 -"Architectural and structural metals (NAICS = 3323); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3323.N,IP.N3323.N,100.2375,100.6374,101.5194,101.2298,100.2059,103.3615,102.4998,101.4679,103.5379,103.2203 -"Hardware (NAICS = 3325); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3325.S,IP.G3325.S,90.7368,88.5626,90.5332,90.6693,92.3537,93.1342,90.2106,90.7978,91.8996,89.0671 -"Hardware (NAICS = 3325); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3325.N,IP.G3325.N,90.2787,87.4694,87.8878,90.6495,95.1372,95.7570,90.6341,92.3116,89.7883,88.5581 -"Spring and wire product (NAICS = 3326); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3326.S,IP.N3326.S,89.2317,86.3247,88.4814,88.9849,90.6628,91.6463,88.7449,88.8093,89.3951,86.5339 -"Spring and wire product (NAICS = 3326); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3326.N,IP.N3326.N,88.2048,86.8684,88.9182,90.5256,91.2567,93.0278,90.4956,89.2899,87.6971,85.4034 -"Machine shops; turned product; and screw, nut, and bolt (NAICS = 3327); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3327.S,IP.G3327.S,100.0954,100.1470,98.8789,97.6548,97.1790,96.3053,96.6031,96.2747,95.9285,95.5085 -"Machine shops; turned product; and screw, nut, and bolt (NAICS = 3327); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3327.N,IP.G3327.N,99.3370,99.8717,98.4771,97.7623,96.1825,97.0611,97.9488,97.3185,95.8850,96.1062 -"Coating, engraving, heat treating, and allied activities (NAICS = 3328); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3328.S,IP.N3328.S,108.6931,106.4924,107.5200,105.3149,107.1655,104.7612,104.1537,105.7353,105.2714,103.1270 -"Coating, engraving, heat treating, and allied activities (NAICS = 3328); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3328.N,IP.N3328.N,108.7590,105.3733,107.2116,105.5254,104.5392,104.4078,106.3905,107.6392,106.0463,103.9429 -"Other fabricated metal product (NAICS = 3329); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3329.S,IP.G3329.S,106.7522,109.6009,107.9399,107.2420,107.9965,108.0521,108.7297,108.1761,109.9612,109.0035 -"Other fabricated metal product (NAICS = 3329); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3329.N,IP.G3329.N,105.7594,110.4267,109.5216,108.3894,107.4777,108.2658,108.4968,107.8477,109.3125,108.7785 -"Ball and roller bearing (NAICS = 332991); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G332991.S,IP.G332991.S,78.8138,79.2891,77.7282,78.7158,80.2202,82.0280,81.8428,80.2736,81.9198,79.3759 -"Ball and roller bearing (NAICS = 332991); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G332991.N,IP.G332991.N,77.9821,78.2620,77.4125,79.0588,79.4998,82.3437,81.9372,81.1243,81.8004,80.3489 -"Machinery (NAICS = 333); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G333.S,IP.G333.S,100.2485,99.0934,99.9234,98.8167,98.0658,100.0264,98.5349,98.0574,98.8230,98.1326 -"Machinery (NAICS = 333); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G333.N,IP.G333.N,96.7716,95.8180,96.0229,97.7220,101.8090,104.3224,102.5335,102.8769,99.2894,99.4388 -"Agriculture, construction, and mining machinery (NAICS = 3331); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3331.S,IP.G3331.S,117.0003,116.2534,116.3469,114.8840,115.0997,120.1469,116.0792,116.6036,116.1739,113.4981 -"Agriculture, construction, and mining machinery (NAICS = 3331); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3331.N,IP.G3331.N,114.9387,114.9938,114.2102,116.4559,115.5568,122.4988,117.3813,116.5969,115.2713,113.8519 -"Agricultural implement (NAICS = 33311); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G33311.S,IP.G33311.S,141.9094,141.6100,140.4101,138.3931,139.6842,146.0100,139.6469,140.9650,139.7440,136.6554 -"Agricultural implement (NAICS = 33311); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G33311.N,IP.G33311.N,139.7243,139.6443,137.8905,140.5912,140.2947,148.6609,141.2883,141.3457,139.2994,137.6325 -"Farm machinery and equipment (NAICS = 333111); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G333111.S,IP.G333111.S,151.3271,150.7582,149.4556,147.2634,148.6849,155.4600,148.7760,150.4481,148.8094,145.4513 -"Farm machinery and equipment (NAICS = 333111); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G333111.N,IP.G333111.N,149.7300,149.4375,146.7456,149.2037,148.7204,157.5459,149.7491,149.8358,148.0171,146.6206 -"Construction machinery (NAICS = 33312); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G33312.S,IP.G33312.S,106.5440,105.2303,106.6241,105.1333,103.8610,109.3753,106.5136,107.3230,107.9438,105.5961 -"Construction machinery (NAICS = 33312); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G33312.N,IP.G33312.N,104.6453,104.6335,103.9738,105.9787,104.5227,111.7673,108.2490,106.9824,106.2662,105.1415 -"Mining and oil and gas field machinery (NAICS = 33313); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N33313.S,IP.N33313.S,86.5937,86.0042,86.3491,86.1664,87.0329,88.4659,86.8917,85.1212,84.3033,81.8026 -"Mining and oil and gas field machinery (NAICS = 33313); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N33313.N,IP.N33313.N,84.5882,85.1101,86.2369,88.0725,86.9449,90.3509,86.8073,85.1275,84.1165,82.6090 -"Industrial machinery (NAICS = 3332); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3332.S,IP.G3332.S,96.3143,97.7375,97.3665,96.9778,95.9702,94.9924,93.3887,94.7094,96.1716,93.5323 -"Industrial machinery (NAICS = 3332); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3332.N,IP.G3332.N,95.6307,97.7669,97.2983,98.8851,96.5657,95.2243,93.2224,94.3913,95.8721,93.1973 -"Commercial and service industry machinery and other general purpose machinery (NAICS = 3333,9); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3333A9.S,IP.G3333A9.S,106.4454,105.5965,106.2170,105.5002,104.5398,105.1237,104.5766,102.1775,104.0908,102.4161 -"Commercial and service industry machinery and other general purpose machinery (NAICS = 3333,9); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3333A9.N,IP.G3333A9.N,106.7705,105.9364,106.1687,106.2820,103.0682,104.5343,104.8694,102.6226,103.1136,102.5384 -"HVAC, metalworking, and power transmission machinery (NAICS = 3334-6); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3334T6.S,IP.G3334T6.S,85.8707,83.4719,85.2331,83.7316,82.7559,85.2687,84.2337,84.6238,84.6843,86.5334 -"HVAC, metalworking, and power transmission machinery (NAICS = 3334-6); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3334T6.N,IP.G3334T6.N,77.0672,74.5902,75.4883,78.5098,94.3051,96.5993,94.5239,97.7769,87.6119,90.0707 -"Ventilation, heating, air-conditioning, and commercial refrigeration equipment (NAICS = 3334); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3334.S,IP.G3334.S,79.5751,76.8730,78.4142,78.1299,78.7155,84.7074,80.9728,80.0098,79.3298,79.2204 -"Ventilation, heating, air-conditioning, and commercial refrigeration equipment (NAICS = 3334); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3334.N,IP.G3334.N,59.8812,57.5719,57.1304,64.4224,107.4624,109.8572,101.2383,110.1061,86.1904,87.3084 -"Metalworking machinery (NAICS = 3335); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3335.S,IP.G3335.S,91.1570,91.4403,89.9458,90.2727,89.1914,90.5562,92.2209,90.3316,91.7486,94.9994 -"Metalworking machinery (NAICS = 3335); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3335.N,IP.G3335.N,90.7086,91.7738,90.1999,90.8350,88.5502,91.2916,93.5479,90.8140,91.4043,94.9536 -"Engine, turbine, and power transmission equipment (NAICS = 3336); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3336.S,IP.G3336.S,90.1258,85.5668,90.8365,85.6970,82.4372,80.7172,81.2147,85.9303,85.8139,89.3373 -"Engine, turbine, and power transmission equipment (NAICS = 3336); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3336.N,IP.G3336.N,89.4824,83.3004,88.6082,87.5909,80.2380,81.9489,85.5901,86.1204,86.5431,90.0183 -"Computer and electronic product (NAICS = 334); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G334.S,IP.G334.S,114.2860,115.9394,116.2547,115.7863,116.6199,116.4492,116.7753,117.0948,118.2858,117.6896 -"Computer and electronic product (NAICS = 334); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G334.N,IP.G334.N,115.5070,116.6757,117.2521,118.4356,114.4948,113.9228,117.8183,114.8016,117.0175,119.8798 -"Computer and peripheral equipment (NAICS = 3341); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3341.S,IP.G3341.S,159.6031,158.0290,159.1445,157.5085,155.6951,155.9799,159.8630,158.7809,160.4618,156.5274 -"Computer and peripheral equipment (NAICS = 3341); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3341.N,IP.G3341.N,160.7186,160.4290,161.7086,161.4626,149.9214,149.6390,157.2326,157.5490,162.1041,163.5334 -"Communications equipment (NAICS = 3342); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3342.S,IP.G3342.S,181.7161,185.5228,188.7696,191.0098,192.2924,193.2007,194.1901,194.8760,195.3634,195.4042 -"Communications equipment (NAICS = 3342); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3342.N,IP.G3342.N,180.0026,192.8473,199.6017,203.6896,192.4745,184.0599,185.7100,187.1163,192.9377,193.9317 -"Audio and video equipment (NAICS = 3343); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3343.S,IP.G3343.S,141.3451,143.0299,143.3779,140.9688,146.4268,141.7835,143.3802,138.4816,136.3386,130.4287 -"Audio and video equipment (NAICS = 3343); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3343.N,IP.G3343.N,141.0324,143.0527,147.1398,145.4332,140.8664,139.6892,143.8701,137.7896,135.6119,133.1300 -"Semiconductor and other electronic component (NAICS = 3344); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3344.S,IP.G3344.S,130.9186,133.8195,134.0094,134.3801,134.7368,133.7948,134.2706,136.2200,140.0520,140.9565 -"Semiconductor and other electronic component (NAICS = 3344); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3344.N,IP.G3344.N,137.7376,136.2362,135.1296,138.9290,128.1862,125.5020,139.8558,130.1079,136.0587,146.1375 -"Navigational, measuring, electromedical, and control instruments (NAICS = 3345); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3345.S,IP.G3345.S,94.5577,95.6603,95.6685,94.7469,95.7357,95.8264,95.7981,95.6444,95.9044,95.0131 -"Navigational, measuring, electromedical, and control instruments (NAICS = 3345); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3345.N,IP.G3345.N,93.8875,95.0219,95.5140,95.5262,95.3995,96.3249,96.1399,95.2393,95.6131,96.0285 -"Electrical equipment, appliance, and component (NAICS = 335); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G335.S,IP.G335.S,102.4423,104.0849,103.7895,103.6602,103.4266,102.6318,104.1364,102.7319,103.8411,105.4065 -"Electrical equipment, appliance, and component (NAICS = 335); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G335.N,IP.G335.N,101.1995,105.5410,104.8799,102.8962,102.2922,103.3451,104.5090,104.2792,103.9385,105.7604 -"Household appliance (NAICS = 3352); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3352.S,IP.G3352.S,103.7532,102.5290,101.9987,102.5221,98.7767,97.6573,100.3790,97.5381,97.4884,100.7146 -"Household appliance (NAICS = 3352); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3352.N,IP.G3352.N,99.8257,107.9304,101.0625,89.3498,99.4229,105.1894,106.3417,106.3976,101.2877,99.5625 -"Small electrical appliance (NAICS = 33521); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G33521.S,IP.G33521.S,93.9838,101.6827,100.4438,96.2166,91.2646,82.1884,81.3431,77.3576,79.1065,82.3945 -"Small electrical appliance (NAICS = 33521); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G33521.N,IP.G33521.N,88.3185,99.6094,100.8615,99.5803,89.4409,81.9769,79.9508,78.6308,80.0488,84.0453 -"Major appliance (NAICS = 33522); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G33522.S,IP.G33522.S,105.6785,102.8760,102.4675,103.8225,100.2806,100.5446,103.8911,101.2422,100.8821,104.1053 -"Major appliance (NAICS = 33522); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G33522.N,IP.G33522.N,102.0532,109.6085,101.2934,87.7223,101.3609,109.4529,111.1618,111.4570,105.2039,102.4860 -"Electrical equipment except appliances (NAICS = 3351,3,9); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G335@2.S,IP.G335@2.S,102.1356,104.3814,104.1354,103.8687,104.3744,103.6480,104.8962,103.7943,105.1470,106.3626 -"Electrical equipment except appliances (NAICS = 3351,3,9); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G335@2.N,IP.G335@2.N,101.4601,105.0095,105.6534,105.7155,102.8685,102.9310,104.0971,103.8074,104.4682,107.0342 -"Electric lighting equipment (NAICS = 3351); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3351.S,IP.G3351.S,84.3285,91.1618,88.5747,88.6056,85.5967,77.5510,77.6378,73.4245,74.6228,77.9669 -"Electric lighting equipment (NAICS = 3351); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3351.N,IP.G3351.N,83.8425,92.3702,90.7649,92.8176,82.3821,75.8573,75.0673,72.3702,75.0224,79.2639 -"Electrical equipment (NAICS = 3353); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3353.S,IP.G3353.S,113.4377,116.1443,115.5912,114.3974,116.1461,115.6075,117.5800,117.3168,119.7847,122.9486 -"Electrical equipment (NAICS = 3353); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3353.N,IP.G3353.N,111.4157,115.5865,117.2494,116.7703,115.7457,115.6454,117.4471,116.8090,118.2194,123.6024 -"Other electrical equipment and component (NAICS = 3359); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3359.S,IP.G3359.S,99.2571,99.9615,100.5646,100.9068,101.4262,102.5091,103.5328,102.6197,103.1776,102.3427 -"Other electrical equipment and component (NAICS = 3359); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3359.N,IP.G3359.N,99.5168,101.3092,101.8037,101.7385,99.5349,101.4827,102.7037,103.3216,102.8823,102.8666 -"Battery (NAICS = 33591); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G33591.S,IP.G33591.S,107.8820,107.3693,108.6203,110.3979,109.1663,110.7632,113.8685,108.9586,111.8120,112.6237 -"Battery (NAICS = 33591); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G33591.N,IP.G33591.N,109.8940,113.3992,110.6134,107.3471,108.0490,110.7165,111.5613,110.6689,109.2370,111.8295 -"Communication and energy wire and cable (NAICS = 33592); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N33592.S,IP.N33592.S,104.3798,104.9914,105.1447,104.9757,105.6314,106.0665,106.9130,106.0809,106.2000,104.2165 -"Communication and energy wire and cable (NAICS = 33592); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N33592.N,IP.N33592.N,104.2195,104.7803,105.8969,106.6924,105.2535,106.4946,107.4450,106.4692,106.2761,105.9239 -"Other electrical equipment (NAICS = 33593,9); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G33593T9.S,IP.G33593T9.S,95.8333,96.8492,97.4124,97.5438,98.4458,99.5723,100.1441,100.1655,100.2877,99.3559 -"Other electrical equipment (NAICS = 33593,9); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G33593T9.N,IP.G33593T9.N,95.8532,97.5544,98.6714,99.1486,96.0541,98.0127,99.3936,100.7837,100.5180,99.9653 -"Transportation equipment (NAICS = 336); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G336.S,IP.G336.S,98.9866,93.9736,99.2124,99.6526,96.0280,99.1667,100.7635,100.9237,101.1514,102.6498 -"Transportation equipment (NAICS = 336); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G336.N,IP.G336.N,100.2107,98.2455,99.0879,94.5357,92.6862,102.2324,105.3818,102.5311,100.9435,103.9607 -"Motor vehicle (NAICS = 3361); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3361.S,IP.G3361.S,117.0068,102.8089,118.6658,121.0761,111.1536,120.3955,124.2570,122.3939,121.9182,125.1315 -"Motor vehicle (NAICS = 3361); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3361.N,IP.G3361.N,121.7506,113.6117,116.5057,105.6736,105.0566,129.7317,131.7730,127.8348,122.9496,129.8374 -"Automobile and light duty motor vehicle (NAICS = 33611); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G33611.S,IP.G33611.S,117.8654,103.7749,119.6062,121.8832,112.1900,120.6410,123.8952,123.2740,123.4750,127.1382 -"Automobile and light duty motor vehicle (NAICS = 33611); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G33611.N,IP.G33611.N,122.4504,114.6069,117.5855,105.9825,106.1416,130.5656,131.6249,128.5786,124.4680,131.7824 -"Automobile (NAICS = 336111); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G336111.S,IP.G336111.S,100.3119,96.7823,102.6778,103.4095,87.2764,92.2779,94.0581,91.3681,100.9092,97.3401 -"Automobile (NAICS = 336111); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G336111.N,IP.G336111.N,106.0927,108.0939,103.4917,89.4399,82.8261,100.8902,98.6499,96.6084,99.5602,100.2287 -"Light truck and utility vehicle (NAICS = 336112); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G336112.S,IP.G336112.S,122.9137,105.9034,124.4830,127.1860,119.2295,128.6396,132.3028,132.2433,129.9042,135.5418 -"Light truck and utility vehicle (NAICS = 336112); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G336112.N,IP.G336112.N,127.1815,116.6214,121.6821,110.7249,112.7371,138.9506,140.9132,137.5861,131.5407,140.6824 -"Heavy duty truck (NAICS = 33612); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G33612.S,IP.G33612.S,106.1673,90.2119,106.6408,110.9995,97.6326,118.4227,131.1042,111.2894,101.0431,97.8098 -"Heavy duty truck (NAICS = 33612); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G33612.N,IP.G33612.N,113.2627,100.7271,102.4234,102.5872,90.7416,119.3676,135.6229,118.7535,102.6245,103.4468 -"Motor vehicle body and trailer (NAICS = 3362); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3362.S,IP.G3362.S,94.9303,92.1103,91.5125,92.6426,83.7167,87.1026,89.1780,89.7042,89.9859,88.3980 -"Motor vehicle body and trailer (NAICS = 3362); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3362.N,IP.G3362.N,94.2476,95.7247,87.4157,81.6565,77.5955,92.4406,97.6275,97.3164,93.9712,91.0919 -"Truck trailer (NAICS = 336212); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G336212.S,IP.G336212.S,118.6859,113.2099,107.3679,108.3480,91.4171,93.1657,94.3899,94.9588,91.5666,90.6269 -"Truck trailer (NAICS = 336212); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G336212.N,IP.G336212.N,120.7004,118.0223,101.1869,90.8585,79.3831,98.3076,104.8397,100.2016,94.0781,96.1558 -"Motor home (NAICS = 336213); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N336213.S,IP.N336213.S,74.2683,67.6407,72.8625,76.2516,63.4626,66.8176,67.4097,64.7343,59.5140, -"Motor home (NAICS = 336213); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N336213.N,IP.N336213.N,71.2197,74.5295,73.2010,60.5591,63.3552,78.2374,67.9887,71.5132,61.0906, -"Travel trailer and camper (NAICS = 336214); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G336214.S,IP.G336214.S,69.7002,67.7078,69.0596,72.6868,64.0495,69.6632,74.7730,75.9907,76.8120,75.2556 -"Travel trailer and camper (NAICS = 336214); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G336214.N,IP.G336214.N,65.8786,73.2832,62.1262,57.0417,57.7333,78.5307,89.8643,91.2896,86.2063,78.9659 -"Motor vehicle parts (NAICS = 3363); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3363.S,IP.G3363.S,100.7248,96.0697,100.0730,100.6156,98.2762,101.5592,102.5639,102.6565,103.0120,104.2306 -"Motor vehicle parts (NAICS = 3363); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3363.N,IP.G3363.N,101.7152,100.8014,102.6116,98.0086,93.2002,102.8141,108.7272,101.6194,101.1862,103.3977 -"Aerospace product and parts (NAICS = 3364); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3364.S,IP.G3364.S,85.7071,85.9815,86.3619,85.4152,86.3435,85.0513,85.2586,86.5462,86.9917,87.7016 -"Aerospace product and parts (NAICS = 3364); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3364.N,IP.G3364.N,85.3939,85.8747,86.8652,86.5250,86.5277,85.0764,85.6254,86.1277,86.1483,88.0518 -"Aircraft and parts (NAICS = 336411-3); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G336411T3.S,IP.G336411T3.S,80.4113,80.7260,81.1833,80.1432,80.8965,79.7851,79.8628,81.1784,81.5153,82.3074 -"Aircraft and parts (NAICS = 336411-3); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G336411T3.N,IP.G336411T3.N,80.1155,80.5789,81.7033,81.2649,81.1634,79.8410,80.3112,80.8310,80.8044,82.5566 -"Railroad eq., ships and boats, and other transportation equipment (NAICS = 3365-9); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3365T9.S,IP.G3365T9.S,103.7709,103.4561,103.8444,102.7172,101.2566,101.9717,103.4144,105.3516,106.4094,108.9867 -"Railroad eq., ships and boats, and other transportation equipment (NAICS = 3365-9); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3365T9.N,IP.G3365T9.N,102.6263,103.7811,102.6312,101.8072,100.2182,101.8553,107.5959,106.4745,106.3945,109.4684 -"Railroad rolling stock (NAICS = 3365); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3365.S,IP.N3365.S,71.6204,73.1813,74.2546,72.5390,73.4990,71.3690,74.6082,73.9520,76.8643,77.1708 -"Railroad rolling stock (NAICS = 3365); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3365.N,IP.N3365.N,74.4700,74.5762,76.2315,74.1965,72.0565,70.3591,74.6859,72.3399,76.2212,76.5919 -"Ship and boat building (NAICS = 3366); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3366.S,IP.G3366.S,113.1138,111.4996,110.8144,110.5958,107.3760,109.8243,110.2414,113.1321,113.3455,117.1244 -"Ship and boat building (NAICS = 3366); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3366.N,IP.G3366.N,109.6414,111.5911,108.6045,108.0342,105.8012,110.3791,117.1662,115.9900,114.2886,118.7609 -"Other transportation equipment (NAICS = 3369); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3369.S,IP.N3369.S,98.1323,99.9747,102.5896,99.5901,101.1325,99.1015,102.1328,103.0766,105.2623,106.0724 -"Other transportation equipment (NAICS = 3369); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3369.N,IP.N3369.N,100.4611,100.2524,102.1026,101.2726,101.4971,97.7016,101.6531,101.2735,103.1578,104.1921 -"Furniture and related product (NAICS = 337); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G337.S,IP.G337.S,79.9958,78.7849,78.1663,77.4047,76.6185,77.6496,76.9191,77.7549,76.1665,77.2765 -"Furniture and related product (NAICS = 337); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G337.N,IP.G337.N,79.7158,78.3599,77.4985,78.1041,75.0103,77.2986,76.5700,77.1625,76.3503,78.2004 -"Household and institutional furniture and kitchen cabinet (NAICS = 3371); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3371.S,IP.N3371.S,82.8245,81.0118,80.6608,80.8813,80.9516,80.9568,81.2040,82.2729,80.3470,81.2856 -"Household and institutional furniture and kitchen cabinet (NAICS = 3371); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3371.N,IP.N3371.N,82.1994,80.8033,80.1986,81.7522,79.8155,81.2783,81.3144,81.7458,79.8137,82.1802 -"Office and other furniture (NAICS = 3372,9); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3372A9.S,IP.G3372A9.S,77.1081,76.5005,75.6151,73.8739,72.2316,74.2869,72.5811,73.1838,71.9331,73.2124 -"Office and other furniture (NAICS = 3372,9); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3372A9.N,IP.G3372A9.N,77.2053,75.8901,74.7721,74.4289,70.1788,73.2909,71.7994,72.5522,72.8557,74.1908 -"Miscellaneous (NAICS = 339); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G339.S,IP.G339.S,109.5680,109.6518,108.6155,107.7731,107.1942,109.2186,109.1388,107.8046,106.4554,104.6150 -"Miscellaneous (NAICS = 339); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G339.N,IP.G339.N,109.0804,110.2909,109.1419,108.8593,105.9249,108.8590,108.9161,107.0353,105.8339,105.5009 -"Medical equipment and supplies (NAICS = 3391); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3391.S,IP.N3391.S,114.8136,116.0765,114.9348,112.3850,111.4496,113.3818,112.5022,111.9962,109.6834,108.4580 -"Medical equipment and supplies (NAICS = 3391); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3391.N,IP.N3391.N,114.2808,116.6204,115.3970,113.3710,110.9114,113.8339,112.3501,111.0873,108.9367,109.6067 -"Logging (NAICS = 1133); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N1133.S,IP.N1133.S,91.8266,91.6258,91.3456,87.5426,83.3198,89.2743,87.6519,86.4875,86.7503,89.3528 -"Logging (NAICS = 1133); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N1133.N,IP.N1133.N,93.0133,97.3545,93.1294,88.0603,80.1955,89.0513,84.7984,79.0087,80.4493,89.1433 -"Nondurable manufacturing (NAICS); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.GMFN.S,IP.GMFN.S,99.2178,99.0824,98.7655,99.0714,97.5605,98.6864,98.9484,98.3613,99.7130,100.4869 -"Nondurable manufacturing (NAICS); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.GMFN.N,IP.GMFN.N,99.4632,99.6990,98.5028,98.1646,95.8547,98.2578,99.0865,98.8168,99.9274,101.9064 -"Food (NAICS = 311); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G311.S,IP.G311.S,102.1112,102.6588,102.4139,102.3941,101.5505,102.0525,101.3760,101.6162,102.2527,101.9508 -"Food (NAICS = 311); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G311.N,IP.G311.N,103.7474,105.3975,102.9256,101.9844,100.0786,101.6374,101.2198,101.2898,100.3346,101.7457 -"Animal food (NAICS = 3111); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3111.S,IP.G3111.S,100.6074,101.0128,102.3667,101.7800,99.0899,99.7917,99.5075,97.2671,100.5833,100.9837 -"Animal food (NAICS = 3111); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3111.N,IP.G3111.N,100.7904,100.8034,104.1460,103.5003,100.2434,99.7430,98.6694,95.5867,98.1916,98.8333 -"Grain and oilseed milling (NAICS = 3112); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3112.S,IP.G3112.S,100.9294,103.3067,102.4564,103.3433,104.3258,104.8079,105.1645,101.6606,104.8507,106.6409 -"Grain and oilseed milling (NAICS = 3112); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3112.N,IP.G3112.N,100.3419,103.4404,102.3696,102.1280,104.3575,105.1983,108.4496,103.1783,104.3964,106.2580 -"Sugar and confectionery product (NAICS = 3113); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3113.S,IP.G3113.S,95.1010,95.7276,94.1550,95.9359,94.9336,98.6816,103.7956,104.7722,103.9562,102.0912 -"Sugar and confectionery product (NAICS = 3113); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3113.N,IP.G3113.N,97.9279,109.2904,103.9757,106.7814,98.3062,98.6840,104.4577,101.4421,94.9681,92.7800 -"Fruit and vegetable preserving and specialty food (NAICS = 3114); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3114.S,IP.G3114.S,95.7180,96.0073,97.3907,97.2930,96.3162,95.7610,95.1384,95.5544,96.0994,93.5105 -"Fruit and vegetable preserving and specialty food (NAICS = 3114); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3114.N,IP.G3114.N,109.4880,102.4588,94.0911,93.0244,89.6264,90.7924,90.3708,89.9645,90.8337,91.4143 -"Dairy product (NAICS = 3115); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3115.S,IP.G3115.S,104.5879,105.7606,103.5412,104.5344,102.7279,103.4948,104.7383,104.6330,104.0681,104.7188 -"Dairy product (NAICS = 3115); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3115.N,IP.G3115.N,100.9901,102.0716,100.0007,101.8144,101.7884,105.9982,109.4971,109.0732,107.7400,107.3675 -"Dairy product (except frozen) (NAICS = 31151); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G31151.S,IP.G31151.S,103.5550,104.9489,103.2285,104.1426,102.9675,103.0249,103.5357,104.2221,103.2448,103.9160 -"Dairy product (except frozen) (NAICS = 31151); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G31151.N,IP.G31151.N,99.3618,101.3973,101.4592,103.9731,103.8637,105.7168,107.8653,107.9482,106.5225,105.2524 -"Fluid milk (NAICS = 311511); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N311511.S,IP.N311511.S,101.9116,101.1273,101.0419,101.0533,100.5461,100.5633,100.6242,100.2729,100.1186, -"Fluid milk (NAICS = 311511); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N311511.N,IP.N311511.N,99.2443,98.3934,98.3336,99.1829,100.4219,102.2230,103.3344,103.4941,103.1189, -"Creamery butter (NAICS = 311512); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N311512.S,IP.N311512.S,127.5527,125.9851,124.6903,135.8804,129.8590,129.8816,139.1409,141.0015,135.7342, -"Creamery butter (NAICS = 311512); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N311512.N,IP.N311512.N,106.5824,118.5160,119.3065,144.3635,152.3467,150.7775,157.3262,152.0685,143.7947, -"Cheese (NAICS = 311513); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N311513.S,IP.N311513.S,118.0984,119.4637,118.5845,117.7970,117.3960,118.1385,116.9394,119.8840,118.9070, -"Cheese (NAICS = 311513); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N311513.N,IP.N311513.N,117.4283,118.9962,118.6159,118.3825,117.7480,119.5205,120.0702,120.5161,119.0705, -"Dry, condensed, and evaporated dairy product (NAICS = 311514); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N311514.S,IP.N311514.S,76.7899,82.9206,76.3651,80.7622,77.5596,76.4596,79.6484,78.1082,76.2226, -"Dry, condensed, and evaporated dairy product (NAICS = 311514); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N311514.N,IP.N311514.N,65.4623,72.7509,73.7657,81.4812,78.6303,81.2050,87.5500,87.6019,85.2423, -"Ice cream and frozen dessert (NAICS = 31152); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N31152.S,IP.N31152.S,114.1806,113.5018,107.0805,108.7509,101.6273,108.3644,115.7833,109.0090,111.9161, -"Ice cream and frozen dessert (NAICS = 31152); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N31152.N,IP.N31152.N,116.2177,109.3279,89.3353,85.2839,85.9573,110.0548,124.9787,120.2752,119.7022, -"Animal slaughtering and processing (NAICS = 3116); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3116.S,IP.G3116.S,102.0496,103.2259,102.8096,105.2476,102.4321,104.7345,101.1409,103.9684,104.2103,104.4577 -"Animal slaughtering and processing (NAICS = 3116); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3116.N,IP.G3116.N,102.0007,108.7550,104.2097,102.9822,102.5013,105.7240,100.7841,104.8599,101.1264,105.9759 -"Animal (except poultry) slaughtering and meat processing (NAICS = 311611-3); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G311611T3.S,IP.G311611T3.S,98.8534,100.4721,99.9728,103.3502,99.9645,102.6566,97.9375,100.7367,102.0635,101.5532 -"Animal (except poultry) slaughtering and meat processing (NAICS = 311611-3); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G311611T3.N,IP.G311611T3.N,98.0628,105.1457,102.9616,101.8713,100.1694,103.9241,98.1707,102.5125,98.4310,102.8873 -"Beef (NAICS = 311611-3pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N311611T3B.S,IP.N311611T3B.S,94.1158,96.0476,95.3131,99.1194,94.5717,96.9997,92.7253,96.7456,98.0983, -"Beef (NAICS = 311611-3pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N311611T3B.N,IP.N311611T3B.N,93.6482,99.8226,97.2346,95.4518,93.4259,96.5625,91.9802,98.3101,95.3208, -"Pork (NAICS = 311611-3pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N311611T3P.S,IP.N311611T3P.S,106.0875,107.1220,107.0717,109.6918,108.5669,111.6761,106.0323,106.7749,107.9147, -"Pork (NAICS = 311611-3pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N311611T3P.N,IP.N311611T3P.N,104.7917,113.4783,112.0253,112.2376,111.3930,116.1175,107.8512,108.7718,102.6805, -"Miscellaneous meats (NAICS = 311611-3pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N311611T3Z.S,IP.N311611T3Z.S,107.6007,108.3318,107.7117,107.2552,102.6234,106.9418,108.7037,99.2592,105.4566, -"Miscellaneous meats (NAICS = 311611-3pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N311611T3Z.N,IP.N311611T3Z.N,103.3372,109.9957,109.9945,109.2816,98.4168,107.7839,118.1836,105.7100,101.7865, -"Poultry processing (NAICS = 311615); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N311615.S,IP.N311615.S,108.2968,108.3987,108.1858,108.3517,106.9229,108.2776,107.3689,110.2275,107.9459, -"Poultry processing (NAICS = 311615); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N311615.N,IP.N311615.N,109.9541,115.8218,105.6998,104.1637,106.5795,108.5045,105.5396,108.9398,106.0637, -"Bakeries and tortilla (NAICS = 3118); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N3118.S,IP.N3118.S,103.7900,104.0946,102.7328,101.0344,103.7942,102.1239,103.7211,104.9416,105.7465,105.2282 -"Bakeries and tortilla (NAICS = 3118); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N3118.N,IP.N3118.N,103.7241,105.6417,104.2284,103.0034,101.8965,100.8666,102.9699,104.0109,105.6630,105.6703 -"Other food (NAICS = 3119); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3119.S,IP.G3119.S,109.9477,109.1011,109.7678,106.5055,106.4951,106.0153,104.3537,103.2464,103.2505,103.0303 -"Other food (NAICS = 3119); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3119.N,IP.G3119.N,111.1743,110.6953,111.5639,108.1916,104.4216,104.9168,103.7446,103.5290,102.4270,102.3290 -"Coffee and tea (NAICS = 31192); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G31192.S,IP.G31192.S,93.7615,92.3086,92.9166,90.1387,89.6428,88.8687,87.7688,86.8354,87.4810,86.8254 -"Coffee and tea (NAICS = 31192); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G31192.N,IP.G31192.N,94.8584,94.0105,94.1176,91.0868,87.8803,88.2453,87.0639,86.7355,86.2796,86.3011 -"Beverage and tobacco product (NAICS = 312); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G312.S,IP.G312.S,93.0251,94.8281,93.0531,93.2632,91.4354,91.4268,92.8709,90.5536,91.8558,94.5864 -"Beverage and tobacco product (NAICS = 312); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G312.N,IP.G312.N,93.5273,96.7828,89.6724,83.7937,87.6752,93.9222,96.5813,94.8145,93.3997,101.3200 -"Beverage (NAICS = 3121); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3121.S,IP.G3121.S,112.5830,111.2118,111.0687,113.7171,113.4946,114.3885,112.8939,109.4528,112.5546,116.0244 -"Beverage (NAICS = 3121); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3121.N,IP.G3121.N,115.1249,110.5355,106.5729,111.5285,107.3045,112.2567,115.7640,112.8899,115.6979,124.4643 -"Soft drink and ice (NAICS = 31211); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N31211.S,IP.N31211.S,109.6865,113.0449,110.2446,110.6344,114.7744,111.1636,110.4002,109.0131,110.9807,114.5711 -"Soft drink and ice (NAICS = 31211); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N31211.N,IP.N31211.N,112.1947,112.7733,108.2583,107.6201,111.8950,109.2876,109.3165,109.6882,112.5146,114.8396 -"Breweries (NAICS = 31212); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N31212.S,IP.N31212.S,91.4571,84.5386,90.1510,89.7050,91.8520,93.7760,88.8757,84.6345,, -"Breweries (NAICS = 31212); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N31212.N,IP.N31212.N,95.5612,79.8999,77.7687,83.7136,82.5960,88.0542,94.4182,88.3926,, -"Tobacco (NAICS = 3122); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3122.S,IP.G3122.S,70.1723,75.1055,71.7670,69.5613,66.2369,65.3546,69.5551,68.4133,67.9573,69.8620 -"Tobacco (NAICS = 3122); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3122.N,IP.G3122.N,68.5429,79.5631,69.5802,53.2504,64.8829,72.1105,73.8366,73.2039,67.8854,74.6160 -"Textile mills (NAICS = 313); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G313.S,IP.G313.S,74.7654,75.3719,73.5959,72.5925,73.0454,74.0214,76.9060,76.3428,78.3665,79.9612 -"Textile mills (NAICS = 313); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G313.N,IP.G313.N,75.4180,75.6269,74.0972,73.0555,71.0228,73.7573,77.1206,77.7431,78.2431,80.6937 -"Fiber, yarn, and thread mills (NAICS = 3131); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3131.S,IP.G3131.S,59.7946,60.6872,59.9208,59.8151,61.0101,62.2490,64.4614,64.1622,65.7986,67.4858 -"Fiber, yarn, and thread mills (NAICS = 3131); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3131.N,IP.G3131.N,60.5233,61.0065,59.9359,59.9134,59.0129,62.4119,64.8188,65.3557,66.0566,68.4658 -"Fabric mills (NAICS = 3132); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3132.S,IP.G3132.S,77.6936,77.8817,76.0526,74.5208,74.4154,75.1271,78.3858,77.2233,78.7139,79.9319 -"Fabric mills (NAICS = 3132); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3132.N,IP.G3132.N,78.3898,78.1065,76.5136,74.9531,72.9710,74.7896,78.9322,78.8032,78.3683,80.2695 -"Textile and fabric finishing and fabric coating mills (NAICS = 3133); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3133.S,IP.G3133.S,80.1585,81.3862,78.9822,78.3662,79.3848,80.6952,83.3449,83.7626,87.1198,89.3913 -"Textile and fabric finishing and fabric coating mills (NAICS = 3133); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3133.N,IP.G3133.N,80.6680,81.6489,79.9066,79.1475,76.1938,80.2592,82.8013,84.9593,87.1457,90.7106 -"Textile product mills (NAICS = 314); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G314.S,IP.G314.S,88.0641,86.5296,83.8150,82.6406,82.1403,83.8353,80.4480,79.9789,81.7514,82.4672 -"Textile product mills (NAICS = 314); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G314.N,IP.G314.N,88.2895,90.6283,82.5062,77.8788,79.0936,80.9259,80.2741,81.7791,80.2525,84.7754 -"Textile furnishings mills (NAICS = 3141); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3141.S,IP.G3141.S,74.1773,73.9996,72.6925,72.0278,71.8457,72.0898,70.6164,69.8184,70.0890,70.0173 -"Textile furnishings mills (NAICS = 3141); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3141.N,IP.G3141.N,74.8297,80.0144,70.3993,61.5608,67.2340,68.0754,69.9546,73.6428,67.6915,74.9281 -"Carpet and rug mills (NAICS = 31411); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G31411.S,IP.G31411.S,67.6080,67.2435,66.8469,66.5049,66.2099,65.9013,65.5804,65.1994,64.7932,64.4440 -"Carpet and rug mills (NAICS = 31411); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G31411.N,IP.G31411.N,68.3306,75.9311,63.7952,49.0666,60.6475,61.0319,64.9381,71.8725,61.8729,71.4225 -"Other textile product mills (NAICS = 3149); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3149.S,IP.G3149.S,104.3626,101.2577,96.9105,95.1441,94.2753,97.6483,92.0444,91.9526,95.4603,97.0847 -"Other textile product mills (NAICS = 3149); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3149.N,IP.G3149.N,104.1015,103.1685,96.7405,96.9485,93.0331,96.0129,92.4465,91.4463,95.0002,96.4227 -"Apparel (NAICS = 315); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G315.S,IP.G315.S,75.8141,74.5559,73.1155,71.5072,70.8494,69.8198,67.8076,70.8577,70.2740,70.2445 -"Apparel (NAICS = 315); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G315.N,IP.G315.N,75.2540,75.1498,74.0469,73.0594,68.8599,70.3959,68.1509,70.8462,70.0446,70.9867 -"Leather and allied product (NAICS = 316); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G316.S,IP.G316.S,108.4557,113.6758,106.5321,108.5784,109.0770,108.5728,108.8828,105.8903,106.5847,110.5751 -"Leather and allied product (NAICS = 316); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G316.N,IP.G316.N,108.5622,109.9988,104.3720,106.0653,107.6296,107.1599,109.2017,110.1111,109.0523,111.2125 -"Paper (NAICS = 322); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G322.S,IP.G322.S,86.3313,85.9005,86.5083,86.0626,85.7918,87.2291,86.9501,87.0085,87.4494,88.7263 -"Paper (NAICS = 322); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G322.N,IP.G322.N,85.4842,86.1778,86.2586,84.9091,85.2558,88.0746,86.8161,88.1064,87.5554,89.5423 -"Pulp, paper, and paperboard mills (NAICS = 3221); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3221.S,IP.G3221.S,79.3479,78.0990,79.6565,79.0307,79.1446,81.0285,80.7161,80.6770,81.2239,82.9788 -"Pulp, paper, and paperboard mills (NAICS = 3221); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3221.N,IP.G3221.N,78.0745,76.4952,79.5368,78.9417,79.6063,82.1329,80.6197,80.7349,81.9794,83.0669 -"Pulp mills (NAICS = 32211); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N32211.S,IP.N32211.S,99.8449,98.0358,101.7771,101.5701,97.3614,102.1338,103.1109,101.2794,103.7713, -"Pulp mills (NAICS = 32211); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N32211.N,IP.N32211.N,97.6577,93.5539,103.2766,103.0111,97.1498,102.3577,102.1450,101.0635,103.9135, -"Paper mills (NAICS = 32212); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32212.S,IP.G32212.S,70.4994,71.4224,71.7230,70.7616,72.2085,74.0901,73.2211,72.4824,73.0018,75.0326 -"Paper mills (NAICS = 32212); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32212.N,IP.G32212.N,69.8547,70.7486,71.8381,70.2351,73.8229,75.6845,73.1720,72.2608,72.7088,74.3637 -"Paper (except newsprint) mills (NAICS = 322121); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N322121.S,IP.N322121.S,70.7901,71.7606,72.0168,71.0936,72.5608,74.4328,73.5570,,, -"Paper (except newsprint) mills (NAICS = 322121); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N322121.N,IP.N322121.N,70.1543,71.0868,72.1508,70.5680,74.1946,76.0455,73.5066,,, -"Paperboard mills (NAICS = 32213); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N32213.S,IP.N32213.S,86.6459,82.8749,85.5769,85.2816,84.5134,85.9200,86.0625,,, -"Paperboard mills (NAICS = 32213); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N32213.N,IP.N32213.N,84.7059,80.5714,84.8410,85.4015,83.6378,86.5177,85.9912,,, -"Converted paper product (NAICS = 3222); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3222.S,IP.G3222.S,93.1776,93.5265,93.2299,92.9537,92.3171,93.3350,93.0868,93.2375,93.5798,94.4113 -"Converted paper product (NAICS = 3222); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3222.N,IP.G3222.N,92.7367,95.6005,92.8601,90.7892,90.8352,93.9383,92.9172,95.3202,93.0761,95.9151 -"Paperboard container (NAICS = 32221); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N32221.S,IP.N32221.S,89.9696,91.0354,90.5597,90.2240,89.3539,88.9307,88.3676,,, -"Paperboard container (NAICS = 32221); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N32221.N,IP.N32221.N,89.2951,94.9109,89.7931,85.4579,86.0230,89.4149,87.9996,,, -"Paper bag and coated and treated paper (NAICS = 32222); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32222.S,IP.G32222.S,78.8042,74.9211,76.1790,75.2639,74.9466,78.1868,78.8151,77.9104,78.3834,80.6881 -"Paper bag and coated and treated paper (NAICS = 32222); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32222.N,IP.G32222.N,79.2059,75.3851,76.7828,76.8306,75.3836,77.6467,79.1960,79.7485,77.7045,79.8834 -"Other converted paper products (NAICS = 32223,9); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32223A9.S,IP.G32223A9.S,112.6364,114.7782,113.6476,113.9808,113.5653,115.8493,115.5677,116.0925,116.3931,117.9884 -"Other converted paper products (NAICS = 32223,9); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32223A9.N,IP.G32223A9.N,111.9596,114.3745,113.2782,114.1881,114.3197,117.5356,115.3235,116.0257,114.8409,117.9408 -"Printing and related support activities (NAICS = 323); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G323.S,IP.G323.S,81.3588,80.5618,80.8839,80.6152,81.7001,82.9267,83.7230,84.6393,84.2501,86.4347 -"Printing and related support activities (NAICS = 323); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G323.N,IP.G323.N,80.9724,81.3246,81.5363,81.7096,80.8683,82.2883,84.1352,84.8432,84.6990,86.6551 -"Petroleum and coal products (NAICS = 324); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G324.S,IP.G324.S,91.8335,92.4064,92.8178,93.6831,91.6278,92.6833,94.5957,90.9141,94.1743,94.6060 -"Petroleum and coal products (NAICS = 324); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G324.N,IP.G324.N,92.5375,90.9599,92.7812,91.5253,85.6341,87.5035,92.4119,91.4842,97.2351,98.8667 -"Petroleum refineries (NAICS = 32411); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32411.S,IP.G32411.S,90.2850,90.5761,90.1578,91.6079,89.7451,89.7137,91.4056,89.6949,91.4227,91.9591 -"Petroleum refineries (NAICS = 32411); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32411.N,IP.G32411.N,90.2250,87.9224,90.1385,90.5224,85.1323,85.9726,90.2425,90.1529,94.2200,95.7252 -"Aviation fuel and kerosene (NAICS = 32411pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N32411A.S,IP.N32411A.S,105.9182,102.8822,101.8362,103.0353,100.3351,99.7556,105.9787,100.0694,, -"Aviation fuel and kerosene (NAICS = 32411pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N32411A.N,IP.N32411A.N,102.7019,94.8164,100.3866,108.2892,100.1357,96.7606,103.2666,102.8103,, -"Distillate fuel oil (NAICS = 32411pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N32411D.S,IP.N32411D.S,82.2270,83.3414,82.5169,85.3984,80.2481,75.4167,81.9498,81.9978,, -"Distillate fuel oil (NAICS = 32411pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N32411D.N,IP.N32411D.N,82.6029,79.6658,85.8896,87.9612,77.8968,72.3459,79.1624,80.1297,, -"Automotive gasoline (NAICS = 32411pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N32411G.S,IP.N32411G.S,89.5870,89.3871,89.2461,89.6922,89.0564,88.6420,87.7905,88.9051,, -"Automotive gasoline (NAICS = 32411pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N32411G.N,IP.N32411G.N,89.5687,89.9302,89.6991,87.8497,82.9331,85.9517,87.2468,89.2704,, -"Residual fuel oil (NAICS = 32411pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N32411R.S,IP.N32411R.S,109.9209,122.1540,126.0503,134.0203,131.8255,168.0856,161.7377,124.8656,, -"Residual fuel oil (NAICS = 32411pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N32411R.N,IP.N32411R.N,112.4448,115.5475,124.0375,122.6852,136.7002,170.0004,173.2495,126.1911,, -"Other refinery output (NAICS = 32411pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32411X.S,IP.G32411X.S,90.4268,90.2443,88.9543,89.4936,91.4090,95.0380,93.9191,89.3998,93.5827,93.9080 -"Other refinery output (NAICS = 32411pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32411X.N,IP.G32411X.N,91.3076,82.4707,80.5040,80.2521,81.4801,83.1233,92.1440,94.0746,103.5141,105.4052 -"Paving, roofing, and other petroleum and coal products (NAICS = 32412,9); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N32412A9.S,IP.N32412A9.S,92.1456,94.2581,99.2816,96.7964,93.8568,100.8153,103.7696,89.6537,100.9464,100.7763 -"Paving, roofing, and other petroleum and coal products (NAICS = 32412,9); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N32412A9.N,IP.N32412A9.N,97.3451,100.0149,99.4679,89.1690,81.0073,88.3950,96.3870,90.9631,105.3672,107.5451 -"Chemical (NAICS = 325); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G325.S,IP.G325.S,104.4145,103.4962,103.1023,103.7028,101.2194,103.2941,103.4676,103.1915,105.2738,106.5475 -"Chemical (NAICS = 325); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G325.N,IP.G325.N,103.6027,102.7705,102.7241,104.6321,100.8440,103.3398,103.8071,103.2021,105.9461,107.0945 -"Basic chemical (NAICS = 3251); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3251.S,IP.G3251.S,95.3574,92.6287,92.1614,93.1675,88.5576,89.8663,90.8069,89.4059,91.6582,93.1072 -"Basic chemical (NAICS = 3251); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3251.N,IP.G3251.N,95.1109,92.1191,91.6013,92.5453,88.8861,89.8007,90.8835,89.2049,91.6257,93.8174 -"Organic chemicals (NAICS = 32511,9); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32511A9.S,IP.G32511A9.S,93.2723,89.2030,89.1302,90.6436,82.4260,85.8102,86.5807,83.9013,86.9409,88.7376 -"Organic chemicals (NAICS = 32511,9); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32511A9.N,IP.G32511A9.N,92.6366,88.6490,88.3458,89.3082,82.4587,86.1940,87.1486,84.1403,87.6088,89.7025 -"Basic inorganic chemicals (NAICS = 32512-8); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32512T8.S,IP.G32512T8.S,100.7196,100.9007,99.5721,99.4865,102.7386,99.5111,100.8327,102.2214,102.7667,103.4652 -"Basic inorganic chemicals (NAICS = 32512-8); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32512T8.N,IP.G32512T8.N,101.3170,100.4799,99.4959,100.4198,103.7108,98.4587,99.8312,101.0507,101.1962,103.6209 -"Industrial gas (NAICS = 32512); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32512.S,IP.G32512.S,130.3954,130.9506,129.2971,129.0645,134.3097,129.3739,130.8883,132.8146,133.4129,134.6440 -"Industrial gas (NAICS = 32512); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32512.N,IP.G32512.N,129.9868,130.9031,128.9720,130.1226,136.3767,127.2100,129.7651,131.6943,132.0410,135.2757 -"Synthetic dye and pigment (NAICS = 32513); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32513.S,IP.G32513.S,81.0945,81.6825,80.9706,80.5834,83.5243,80.4495,81.6093,82.2257,83.2020,83.6556 -"Synthetic dye and pigment (NAICS = 32513); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32513.N,IP.G32513.N,83.0050,82.3857,81.9065,81.1934,83.2983,78.2204,79.5248,80.2514,81.2870,83.6321 -"Other basic inorganic chemical (NAICS = 32518pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32518.S,IP.G32518.S,93.7547,93.7458,92.4329,92.4497,95.0561,92.3998,93.6870,95.0118,95.4746,96.0195 -"Other basic inorganic chemical (NAICS = 32518pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32518.N,IP.G32518.N,94.4939,93.0142,92.2842,93.3931,95.8289,91.9279,92.8903,93.9370,93.8685,96.0281 -"Alkalies and chlorine (NAICS = 32518pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N32518C.S,IP.N32518C.S,72.5888,69.1720,66.0841,65.9928,67.2990,68.1073,68.3580,,, -"Alkalies and chlorine (NAICS = 32518pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N32518C.N,IP.N32518C.N,73.9205,66.0910,66.3633,67.9301,68.1741,69.4996,68.2233,,, -"Resin, synthetic rubber, and artificial and synthetic fibers and filaments (NAICS = 3252); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3252.S,IP.G3252.S,88.8905,88.9301,89.5204,89.5133,83.9435,90.1893,88.6064,86.3644,88.4947,89.4666 -"Resin, synthetic rubber, and artificial and synthetic fibers and filaments (NAICS = 3252); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3252.N,IP.G3252.N,86.0094,86.4944,87.5451,88.3308,84.4577,92.7149,89.4164,87.9617,89.4127,90.3121 -"Resin and synthetic rubber (NAICS = 32521); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32521.S,IP.G32521.S,91.1796,91.2557,91.8298,91.7851,85.8100,92.5832,90.7180,88.6049,90.9179,91.9761 -"Resin and synthetic rubber (NAICS = 32521); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32521.N,IP.G32521.N,88.0989,88.7049,89.7309,90.5369,86.4437,95.1932,91.5570,90.4055,91.9067,92.8296 -"Plastics material and resin (NAICS = 325211); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N325211.S,IP.N325211.S,92.5556,92.6683,93.2095,93.1821,86.7985,94.1521,92.0074,90.1193,92.5490, -"Plastics material and resin (NAICS = 325211); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N325211.N,IP.N325211.N,89.2550,89.9290,90.9989,91.7806,87.3241,96.8413,92.9029,92.0374,93.5657, -"Synthetic rubber (NAICS = 325212); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G325212.S,IP.G325212.S,78.1663,77.8348,78.7882,78.5314,76.9481,77.4767,78.6345,74.0247,75.1237,75.2534 -"Synthetic rubber (NAICS = 325212); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G325212.N,IP.G325212.N,76.8114,76.6542,77.2020,78.2928,78.1658,78.5878,78.2090,73.9269,75.1544,76.8827 -"Artificial and synthetic fibers and filaments (NAICS = 32522); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32522.S,IP.G32522.S,62.6267,62.2801,62.9970,63.3516,62.0212,62.8166,64.0619,60.6713,60.9378,61.0356 -"Artificial and synthetic fibers and filaments (NAICS = 32522); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32522.N,IP.G32522.N,61.8737,61.1068,62.3522,62.8939,61.3557,64.4266,64.5701,60.2414,61.1397,61.7701 -"Pesticide, fertilizer, and other agricultural chemical (NAICS = 3253); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3253.S,IP.G3253.S,109.4069,111.1284,108.1229,115.2019,101.3228,107.0535,112.8798,110.9841,113.2523,115.5004 -"Pesticide, fertilizer, and other agricultural chemical (NAICS = 3253); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3253.N,IP.G3253.N,103.4726,109.2711,112.2210,119.5023,100.6903,107.7220,113.8120,112.6902,112.9997,112.8435 -"Pharmaceutical and medicine (NAICS = 3254); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3254.S,IP.G3254.S,118.4754,118.4507,117.5040,117.7927,117.1797,118.1188,117.7509,118.4538,120.4456,121.9280 -"Pharmaceutical and medicine (NAICS = 3254); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3254.N,IP.G3254.N,118.3232,117.8774,116.6752,120.2844,116.8980,117.2428,118.0091,118.2074,122.1618,122.5191 -"Chemicals except pharmaceuticals and medicines (NAICS = 3251-3,5-9); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G325@4.S,IP.G325@4.S,95.9587,94.5656,94.4714,95.2341,91.7514,94.4316,94.9010,94.0875,96.2063,97.3564 -"Chemicals except pharmaceuticals and medicines (NAICS = 3251-3,5-9); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G325@4.N,IP.G325@4.N,94.8010,93.7667,94.3436,95.3122,91.3341,94.9876,95.2876,94.2441,96.3011,97.8818 -"Paints, soaps and toiletries, and other chemical products (NAICS = 3255-9); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3255T9.S,IP.G3255T9.S,97.3671,96.3813,97.0665,96.5469,97.4580,99.6953,99.3505,100.0704,102.0059,102.6535 -"Paints, soaps and toiletries, and other chemical products (NAICS = 3255-9); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3255T9.N,IP.G3255T9.N,96.8006,96.1388,97.3812,97.1516,95.7950,100.1745,99.8413,99.7484,102.0003,103.5095 -"Paints and other chemical products (NAICS = 3255,9); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3255A9.S,IP.G3255A9.S,94.8996,92.4159,93.2359,95.1046,94.0333,96.2188,95.7330,95.7129,96.1650,96.5759 -"Paints and other chemical products (NAICS = 3255,9); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3255A9.N,IP.G3255A9.N,94.4191,93.3335,93.5690,94.9744,91.6245,96.9733,96.5839,94.5653,95.2674,96.5791 -"Paint, coating, and adhesive (NAICS = 3255); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3255.S,IP.G3255.S,96.7726,93.6429,96.4620,98.0897,99.4305,98.4738,98.7256,96.7554,98.1931,97.2372 -"Paint, coating, and adhesive (NAICS = 3255); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3255.N,IP.G3255.N,95.6285,96.3188,98.5023,97.8644,94.9550,99.4850,100.8417,94.4444,96.2277,95.9615 -"Paint and coating (NAICS = 32551); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32551.S,IP.G32551.S,91.1592,88.6863,90.5631,92.3566,93.7437,92.9596,93.0666,91.2909,92.5610,91.7705 -"Paint and coating (NAICS = 32551); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32551.N,IP.G32551.N,90.3096,90.9388,92.5275,91.7087,89.4200,93.8520,95.5717,89.6559,90.7806,90.4079 -"Soap, cleaning compound, and toilet preparation (NAICS = 3256); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3256.S,IP.G3256.S,99.8217,100.3264,100.8759,97.9749,100.8620,103.1506,102.9466,104.4048,107.8209,108.7046 -"Soap, cleaning compound, and toilet preparation (NAICS = 3256); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3256.N,IP.G3256.N,99.1670,98.9271,101.1724,99.3121,99.9436,103.3556,103.0786,104.9083,108.7077,110.4139 -"Plastics and rubber products (NAICS = 326); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G326.S,IP.G326.S,104.3282,103.0584,102.7229,103.3795,101.9374,102.3816,102.6582,102.8501,102.8190,102.3809 -"Plastics and rubber products (NAICS = 326); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G326.N,IP.G326.N,104.5125,103.7633,102.5533,103.1052,100.9760,102.7743,102.5520,102.6132,102.4892,103.6658 -"Plastics product (NAICS = 3261); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3261.S,IP.G3261.S,104.4984,103.1669,102.7335,103.5135,102.3672,102.8550,103.1322,104.5813,105.1234,103.9642 -"Plastics product (NAICS = 3261); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3261.N,IP.G3261.N,104.6983,103.2011,102.7478,104.3366,101.0774,102.7231,102.7420,103.8641,104.5999,105.1952 -"Rubber product (NAICS = 3262); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3262.S,IP.G3262.S,103.3976,102.3721,102.4198,102.5944,100.0040,100.2772,100.5506,95.8577,93.6016,95.9614 -"Rubber product (NAICS = 3262); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3262.N,IP.G3262.N,103.5022,105.6748,101.5164,98.0260,100.3030,102.6903,101.5310,97.4706,94.0088,97.4370 -"Tire (NAICS = 32621); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32621.S,IP.G32621.S,92.0698,88.7836,88.5036,91.9196,85.1142,89.6098,92.0026,85.8227,81.9292,84.1600 -"Tire (NAICS = 32621); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32621.N,IP.G32621.N,93.8524,96.6195,85.9615,78.5829,84.8195,95.1237,93.8506,89.6368,83.6269,85.7435 -"Rubber products ex. tires (NAICS = 32622,9); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32622A9.S,IP.G32622A9.S,113.5472,114.5384,114.8779,112.1704,113.3173,109.8506,108.2502,104.8629,104.0462,106.5240 -"Rubber products ex. tires (NAICS = 32622,9); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32622A9.N,IP.G32622A9.N,112.1661,113.8138,115.4280,115.3844,114.1576,109.5485,108.4876,104.5549,103.3283,107.9159 -"Newspaper, periodical, book, and directory publishers (NAICS = 5111); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G5111.S,IP.G5111.S,81.4282,82.3357,78.9225,77.2478,79.7251,79.6239,79.6175,79.8510,80.4561,81.0429 -"Newspaper, periodical, book, and directory publishers (NAICS = 5111); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G5111.N,IP.G5111.N,87.6406,85.2305,80.8882,76.6410,74.9542,73.6930,72.9069,76.4316,77.8512,82.4123 -"Newspaper publishers (NAICS = 51111); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G51111.S,IP.G51111.S,68.5467,67.9003,65.0247,64.3866,64.0496,64.5973,64.2465,64.7434,65.9902,66.3209 -"Newspaper publishers (NAICS = 51111); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G51111.N,IP.G51111.N,68.7191,72.1058,69.8942,65.2744,60.5873,64.3176,63.8198,66.4889,64.2614,66.7601 -"Periodical, book, and other publishers (NAICS = 51112-9); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G51112T9.S,IP.G51112T9.S,87.1997,88.8367,85.1823,83.0227,86.8261,86.4165,86.5744,86.6808,86.9753,87.6820 -"Periodical, book, and other publishers (NAICS = 51112-9); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G51112T9.N,IP.G51112T9.N,96.2062,91.0714,85.7387,81.6829,81.4253,77.7982,76.8786,80.7940,83.9514,89.4770 -"Oil and gas extraction (NAICS = 211); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G211.S,IP.G211.S,144.4211,143.7154,143.8338,143.9227,137.9326,143.9932,143.1369,144.9711,144.8582,145.7318 -"Oil and gas extraction (NAICS = 211); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G211.N,IP.G211.N,144.7463,144.5135,145.3082,144.6316,136.8332,143.3069,144.0340,144.8920,144.4877,145.3832 -"Crude oil (NAICS = 21112); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G21112.S,IP.G21112.S,141.4358,140.7049,140.7075,140.6870,134.6855,140.4091,139.8282,141.9462,141.7838,142.8000 -"Crude oil (NAICS = 21112); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G21112.N,IP.G21112.N,141.5790,141.2815,142.0991,141.7658,134.1673,140.0344,140.8225,141.5898,141.0966,142.2105 -"Natural gas and natural gas liquids (NAICS = 21113); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G21113.S,IP.G21113.S,154.2181,153.6758,154.3923,155.0432,149.3003,156.7852,154.6685,155.1593,155.2713,155.4986 -"Natural gas and natural gas liquids (NAICS = 21113); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G21113.N,IP.G21113.N,155.1256,155.2395,155.9002,153.5697,145.0683,154.2146,154.6362,155.8840,155.8880,155.8026 -"Natural gas (NAICS = 211130pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N21113G.S,IP.N21113G.S,142.5132,141.8472,143.1639,143.6470,141.0580,144.9173,140.7789,139.7256,139.0715, -"Natural gas (NAICS = 211130pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N21113G.N,IP.N21113G.N,142.5996,142.4582,144.3793,144.6965,140.1587,144.1957,140.5277,139.4517,139.1454, -"Natural gas liquid extraction (NAICS = 211130pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G21113PQ.S,IP.G21113PQ.S,178.9821,178.5619,178.5638,179.4579,169.2077,182.0164,182.5550,185.2323,186.4408,184.3959 -"Natural gas liquid extraction (NAICS = 211130pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G21113PQ.N,IP.G21113PQ.N,181.3646,181.8087,180.9199,175.0047,160.7383,177.3337,183.3941,187.9637,188.4095,186.6786 -"Mining (except oil and gas) (NAICS = 212); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G212.S,IP.G212.S,87.5442,86.3871,86.3559,89.2716,81.8113,87.6794,87.0261,85.4135,83.0807,82.5551 -"Mining (except oil and gas) (NAICS = 212); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G212.N,IP.G212.N,92.2010,89.9848,87.0170,84.1367,73.5043,77.7145,80.2741,84.8616,86.9282,87.8469 -"Coal mining (NAICS = 2121); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N2121.S,IP.N2121.S,76.3558,72.3987,74.1466,76.6694,65.5570,70.5587,67.3768,59.9654,58.1664, -"Coal mining (NAICS = 2121); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N2121.N,IP.N2121.N,77.4954,73.2404,74.2714,72.0173,67.1017,72.5792,66.7407,59.1518,58.1476, -"Metal ore mining (NAICS = 2122); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G2122.S,IP.G2122.S,79.4344,79.4927,79.2800,83.7036,80.0100,81.5039,85.3070,83.3853,85.7923,85.4200 -"Metal ore mining (NAICS = 2122); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G2122.N,IP.G2122.N,79.4332,81.2934,80.8396,86.0247,78.8418,80.9139,83.0864,82.2221,83.9674,85.5262 -"Iron ore mining (NAICS = 21221); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N21221.S,IP.N21221.S,81.3498,83.2190,83.5598,84.1878,79.4679,81.4975,82.8675,85.8517,, -"Iron ore mining (NAICS = 21221); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N21221.N,IP.N21221.N,80.7018,79.0023,85.4932,82.9698,72.4303,82.0689,83.6123,82.0636,, -"Gold ore and silver ore mining (NAICS = 21222); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G21222.S,IP.G21222.S,74.4354,72.6716,73.4356,76.6912,68.3977,69.7203,72.0471,66.2337,68.8477,67.8872 -"Gold ore and silver ore mining (NAICS = 21222); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G21222.N,IP.G21222.N,75.5855,78.1971,79.2090,82.2409,65.7734,65.9077,67.4178,66.3653,67.1177,66.8997 -"Copper, nickel, lead, and zinc mining (NAICS = 21223); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G21223.S,IP.G21223.S,87.3441,89.9125,88.6951,93.6936,97.3377,100.3345,103.3689,103.9078,110.4848,110.5641 -"Copper, nickel, lead, and zinc mining (NAICS = 21223); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G21223.N,IP.G21223.N,88.0181,90.0631,86.7011,94.5470,96.0270,100.2494,100.1508,102.4905,108.3542,112.5027 -"Nonmetallic mineral mining and quarrying (NAICS = 2123); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G2123.S,IP.G2123.S,104.7064,104.7645,103.4170,105.2962,97.4169,108.0620,105.4236,109.0170,101.8115,101.6875 -"Nonmetallic mineral mining and quarrying (NAICS = 2123); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G2123.N,IP.G2123.N,116.7373,112.4833,103.8573,93.0419,74.3919,79.5295,89.5655,109.5872,114.5796,116.4060 -"Support activities for mining (NAICS = 213); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G213.S,IP.G213.S,87.6843,86.3994,85.1067,85.3053,84.8145,85.3462,85.3693,82.8031,81.4380,81.0790 -"Support activities for mining (NAICS = 213); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G213.N,IP.G213.N,86.3638,85.6239,84.9087,85.4866,84.7525,85.2112,85.6777,84.1560,82.4159,80.9981 -"Drilling oil and gas wells (NAICS = 213111); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N213111.S,IP.N213111.S,113.9781,113.7319,110.4381,109.2864,108.5309,108.0537,109.0561,105.2515,103.1317,103.7599 -"Drilling oil and gas wells (NAICS = 213111); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N213111.N,IP.N213111.N,110.7731,111.0445,109.5611,109.9743,109.2214,109.5304,110.4254,107.4412,105.2789,103.6925 -"Electric power generation, transmission, and distribution (NAICS = 2211); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G2211.S,IP.G2211.S,105.7446,105.2820,105.0655,103.0898,107.1461,103.7609,101.7041,104.7089,107.3317,110.5250 -"Electric power generation, transmission, and distribution (NAICS = 2211); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G2211.N,IP.G2211.N,110.5779,96.7835,95.2256,101.2066,111.6849,98.8483,93.5716,89.9546,99.0826,117.7453 -"Electric power generation (NAICS = 22111); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G22111.S,IP.G22111.S,101.9609,102.1280,101.1111,98.9901,103.3522,97.7650,98.4352,99.6607,103.7196,106.2091 -"Electric power generation (NAICS = 22111); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G22111.N,IP.G22111.N,105.0699,91.9492,93.3563,98.0803,107.7184,95.7973,89.3164,86.4735,96.3606,114.2565 -"Hydroelectric, renewables, and other (NAICS = 221111,4-8); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G221111A4T8.S,IP.G221111A4T8.S,116.0131,125.7598,113.0494,112.6240,109.6300,115.2812,123.8130,117.9461,120.0422,122.2623 -"Hydroelectric, renewables, and other (NAICS = 221111,4-8); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G221111A4T8.N,IP.G221111A4T8.N,99.4101,108.5185,108.3435,108.3226,110.0120,124.5381,133.9980,134.7407,134.8214,129.3416 -"Hydroelectric power generation (NAICS = 221111); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N221111.S,IP.N221111.S,81.7279,92.0264,81.1790,78.0110,77.5688,79.7367,88.3849,72.4545,, -"Hydroelectric power generation (NAICS = 221111); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N221111.N,IP.N221111.N,65.9460,70.9521,73.5545,75.4514,83.4347,82.2351,90.6045,78.0954,, -"Renewables and other electric power generation (NAICS = 221114-8); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N221114T8.S,IP.N221114T8.S,177.1984,186.1226,169.9898,174.2953,166.8187,178.6077,187.0396,198.6373,, -"Renewables and other electric power generation (NAICS = 221114-8); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N221114T8.N,IP.N221114T8.N,157.7614,174.0195,169.0027,165.6375,156.3604,198.2935,209.6567,233.4904,, -"Fossil Fuel electric power generation (NAICS = 221112); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N221112.S,IP.N221112.S,101.2725,98.8503,101.2603,98.2142,107.4179,94.4270,94.6163,97.0638,, -"Fossil Fuel electric power generation (NAICS = 221112); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N221112.N,IP.N221112.N,109.5913,89.8026,89.9124,94.5014,111.0357,87.0671,78.3951,76.6101,, -"Nuclear electric power generation (NAICS = 221113); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N221113.S,IP.N221113.S,98.0789,99.3903,96.5284,95.4494,93.8789,97.3676,96.0530,97.6709,, -"Nuclear electric power generation (NAICS = 221113); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N221113.N,IP.N221113.N,99.0942,89.8169,94.1017,100.7802,101.0464,100.9851,92.6591,86.6499,, -"Electric power transmission, control, and distribution (NAICS = 22112); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G22112.S,IP.G22112.S,109.5236,108.4265,109.0180,107.1899,110.9361,109.7760,104.9649,109.7668,110.9364,114.8401 -"Electric power transmission, control, and distribution (NAICS = 22112); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G22112.N,IP.G22112.N,116.0925,101.6240,97.0774,104.3245,115.6466,101.8909,97.8320,93.4346,101.7917,121.2216 -"Commercial and other electricity sales (NAICS = 22112pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N22112C.S,IP.N22112C.S,112.2737,111.9438,112.9423,112.6972,114.6189,115.0567,112.0986,114.4704,, -"Commercial and other electricity sales (NAICS = 22112pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N22112C.N,IP.N22112C.N,119.9789,112.7016,104.5684,106.9470,111.8967,104.4008,105.5620,102.7594,, -"Industrial electricity sales (NAICS = 22112pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N22112M.S,IP.N22112M.S,105.7872,106.2662,104.9447,103.8477,103.6465,105.0161,103.4009,101.8927,, -"Industrial electricity sales (NAICS = 22112pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N22112M.N,IP.N22112M.N,107.8881,107.4845,101.7497,100.4903,100.8512,94.9895,100.4915,98.8213,, -"Residential electricity sales (NAICS = 22112pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N22112R.S,IP.N22112R.S,108.6636,106.3361,107.3274,103.9299,110.6711,107.2430,99.7047,108.8928,, -"Residential electricity sales (NAICS = 22112pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N22112R.N,IP.N22112R.N,116.0441,90.3207,89.1552,103.6250,124.3297,102.4621,90.5009,83.7656,, -"Natural gas distribution (NAICS = 2212); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G2212.S,IP.G2212.S,108.3599,108.5075,108.3072,102.1671,108.9203,101.3612,95.4612,103.5897,101.2707,103.0105 -"Natural gas distribution (NAICS = 2212); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G2212.N,IP.G2212.N,58.2002,79.9657,130.4087,162.1837,214.0887,158.2215,132.2257,93.5295,67.5181,57.2905 -"Commercial and other gas sales (NAICS = 2212pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N2212C.S,IP.N2212C.S,106.9799,111.4392,108.8951,99.5326,105.4065,99.5938,95.9512,103.1327,, -"Commercial and other gas sales (NAICS = 2212pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N2212C.N,IP.N2212C.N,55.5511,84.7900,131.3808,156.6901,203.0207,157.5580,131.3311,93.7564,, -"Industrial gas sales (NAICS = 2212pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N2212M.S,IP.N2212M.S,128.6772,126.5057,127.7439,127.5925,129.4736,128.0802,127.6923,125.1041,, -"Industrial gas sales (NAICS = 2212pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N2212M.N,IP.N2212M.N,129.6747,121.9364,121.6917,128.8417,137.5133,116.9748,118.8402,112.2794,, -"Residential gas sales (NAICS = 2212pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N2212R.S,IP.N2212R.S,103.7016,103.6425,104.6659,99.6106,105.0623,96.2082,88.1785,98.3665,, -"Residential gas sales (NAICS = 2212pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N2212R.N,IP.N2212R.N,30.8212,61.6578,134.0599,178.3137,249.8753,175.6795,138.4656,86.2586,, -"Gas transmission (NAICS = 2212pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N2212T.S,IP.N2212T.S,124.5580,122.4783,121.0307,113.0457,124.8008,116.8141,112.1551,119.4593,, -"Gas transmission (NAICS = 2212pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N2212T.N,IP.N2212T.N,104.9151,107.7791,124.8380,140.1528,163.4670,131.2772,123.4959,105.8774,, -"Total index; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B50001.S,IP.B50001.S,103.3081,102.5781,102.8868,102.6309,101.4830,102.6045,102.4062,102.4329,103.3282,103.9941 -"Total index; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B50001.N,IP.B50001.N,103.2998,102.1654,102.0599,102.2236,101.7062,102.6262,102.5993,101.4902,102.2359,105.2923 -"Final products and nonindustrial supplies; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B50030.S,IP.B50030.S,101.0927,100.5655,100.9558,100.6803,99.9017,100.8232,100.5126,100.6561,101.3293,101.9718 -"Final products and nonindustrial supplies; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B50030.N,IP.B50030.N,101.0164,100.3878,100.0719,100.3725,100.7226,101.3042,101.0958,99.8947,100.1414,103.1257 -"Final products; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B50002.S,IP.B50002.S,101.0848,100.3987,101.0976,100.8413,100.0648,100.7468,100.3951,100.7962,101.3132,102.0032 -"Final products; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B50002.N,IP.B50002.N,100.5441,99.8638,99.9725,100.5933,102.0322,102.6175,101.8388,100.3291,99.8517,102.8496 -"Consumer goods; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51000.S,IP.B51000.S,102.1499,101.4192,102.1301,101.9747,101.2513,101.6808,101.1120,101.8322,102.4944,103.5572 -"Consumer goods; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51000.N,IP.B51000.N,101.5359,100.4541,100.5608,101.5831,104.4359,104.0835,102.7986,101.0657,100.5342,104.4690 -"Durable consumer goods; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51100.S,IP.B51100.S,106.7003,102.1855,106.8410,107.7707,103.9426,107.5455,108.0906,106.9541,106.7452,107.3222 -"Durable consumer goods; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51100.N,IP.B51100.N,105.5002,104.4067,103.6040,100.5741,104.8046,113.6753,113.3477,113.0399,108.3890,109.9373 -"Automotive products; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51110.S,IP.B51110.S,109.7590,101.6233,110.5159,112.0907,104.8385,110.0006,112.1848,111.0590,110.8468,112.7473 -"Automotive products; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51110.N,IP.B51110.N,111.9273,108.8666,108.4311,100.3880,100.8566,116.4182,118.2077,115.6900,112.2694,116.1163 -"Autos and trucks, consumer; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51111.S,IP.B51111.S,122.7754,108.3168,124.5587,126.6275,116.0501,124.3375,127.2141,126.0671,125.8376,128.9697 -"Autos and trucks, consumer; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51111.N,IP.B51111.N,127.5373,119.6088,122.4438,110.0969,109.7845,134.5588,135.1317,131.4899,126.8211,133.6635 -"Auto parts and allied goods; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51112.S,IP.B51112.S,94.3051,93.4080,93.8607,94.8447,91.4220,92.9968,94.3799,93.2853,93.0942,93.5842 -"Auto parts and allied goods; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51112.N,IP.B51112.N,93.5343,95.9897,91.8549,88.7193,90.0659,95.1241,98.2723,97.0399,95.0504,95.4963 -"Other durable goods; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51120.S,IP.B51120.S,103.0740,102.7943,102.5036,102.6815,102.8338,104.6267,103.2755,102.1277,101.9228,100.9767 -"Other durable goods; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51120.N,IP.B51120.N,97.9470,99.1453,97.9118,100.7190,109.3213,110.4346,107.6624,109.9000,103.8407,102.7542 -"Computers, video and audio equipment; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51121.S,IP.B51121.S,188.7786,190.7728,193.3320,192.7338,195.2381,193.8571,197.1932,194.9004,195.0707,190.5418 -"Computers, video and audio equipment; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51121.N,IP.B51121.N,188.0650,192.7595,197.9791,199.2207,191.4013,189.3015,195.3100,192.4121,194.4401,193.8387 -"Appliances, furniture, and carpeting; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51122.S,IP.B51122.S,86.3390,85.7010,86.0752,84.8087,85.0559,87.8087,82.9371,82.3495,81.1405,80.5824 -"Appliances, furniture, and carpeting; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51122.N,IP.B51122.N,73.6068,75.6239,73.5483,77.4647,104.1827,103.7806,94.7114,101.9478,86.2742,83.4605 -"Household appliances; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B511221.S,IP.B511221.S,101.3218,101.3154,103.1985,100.2174,101.0448,107.8373,96.2327,94.1648,93.1690,91.1053 -"Household appliances; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B511221.N,IP.B511221.N,68.7280,74.3909,73.0567,82.9086,152.0274,149.6650,127.0683,144.2848,107.7911,96.9479 -"Carpeting and furniture; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B511222.S,IP.B511222.S,77.9347,76.8703,76.2495,76.1105,75.9698,76.0198,75.6882,76.1182,74.7288,75.2240 -"Carpeting and furniture; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B511222.N,IP.B511222.N,77.6915,77.3832,74.8038,74.9366,74.3765,75.2637,75.0655,75.7117,73.8966,76.5661 -"Miscellaneous durable goods; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51123.S,IP.B51123.S,107.4663,107.3191,106.4470,107.6313,107.6009,108.8441,109.7124,108.2688,108.7431,107.7278 -"Miscellaneous durable goods; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51123.N,IP.B51123.N,107.2508,107.7020,106.7384,108.8164,105.9633,108.2176,109.3416,108.3759,108.6585,108.7634 -"Nondurable consumer goods; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51200.S,IP.B51200.S,100.8744,101.1652,100.8125,100.3649,100.4788,100.0527,99.1839,100.4041,101.3008,102.4939 -"Nondurable consumer goods; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51200.N,IP.B51200.N,100.4233,99.3470,99.6994,101.8100,104.2921,101.4634,99.9218,97.8067,98.3827,102.9574 -"Nondurable nonenergy consumer goods; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51210.S,IP.B51210.S,100.7294,101.3781,100.7937,100.6022,100.0839,100.6316,100.4611,100.3581,101.4294,102.0994 -"Nondurable nonenergy consumer goods; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51210.N,IP.B51210.N,102.2028,102.9109,100.0693,99.2392,98.1368,100.2269,100.6554,100.5496,101.1259,103.6046 -"Foods and tobacco; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51211.S,IP.B51211.S,98.4932,99.3685,98.7332,98.6339,97.6164,97.8803,97.7748,97.4971,98.1736,98.5943 -"Foods and tobacco; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51211.N,IP.B51211.N,100.4266,102.0168,97.9068,95.3633,95.0269,97.9651,98.5301,98.1741,97.1253,100.5209 -"Clothing; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51212.S,IP.B51212.S,83.7903,84.1619,81.3710,80.7178,80.3786,79.4785,78.0097,79.4976,79.1583,80.1146 -"Clothing; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51212.N,IP.B51212.N,83.4701,83.6968,81.5486,81.2662,78.5111,79.6323,78.2406,80.5372,79.6319,80.8472 -"Chemical products; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51213.S,IP.B51213.S,109.4749,109.6426,109.6586,109.6907,109.8055,111.0003,110.8330,111.0573,113.4507,114.8013 -"Chemical products; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51213.N,IP.B51213.N,109.5556,109.0703,108.8722,111.9979,109.2712,110.2588,110.9180,110.9315,115.0940,115.6373 -"Paper products; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51214.S,IP.B51214.S,79.1574,79.8529,77.8008,76.5657,78.1981,78.2504,78.1462,78.0835,78.1199,78.5759 -"Paper products; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51214.N,IP.B51214.N,83.7008,80.8872,77.9371,75.9691,75.7380,74.3410,73.4532,75.2136,76.3364,79.4321 -"Miscellaneous nondurable goods; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51215.S,IP.B51215.S,112.1721,112.7998,111.1761,108.7783,107.8629,109.9803,108.5503,108.0982,106.7295,105.9846 -"Miscellaneous nondurable goods; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51215.N,IP.B51215.N,111.6031,113.4175,111.4652,109.7796,107.1144,110.0266,108.3902,107.2217,105.9554,106.7754 -"Consumer energy products; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51220.S,IP.B51220.S,100.5719,99.8283,100.1459,98.9571,100.9100,97.6432,94.7345,99.8368,100.2118,102.9451 -"Consumer energy products; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51220.N,IP.B51220.N,94.7767,88.5536,98.1816,108.8658,121.8230,104.5638,97.2228,89.1731,89.7455,100.5454 -"Fuels; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51221.S,IP.B51221.S,89.7276,89.9963,89.6624,90.9881,88.6128,86.8945,88.6463,89.3855,90.5906,90.4134 -"Fuels; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51221.N,IP.B51221.N,89.8341,89.0125,91.1386,90.6884,83.8184,83.9808,87.2813,88.8904,92.5459,93.3931 -"Residential utilities; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51222.S,IP.B51222.S,106.7719,105.0064,106.0022,102.2363,108.6225,103.9055,96.2975,105.6641,105.1637,110.7548 -"Residential utilities; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51222.N,IP.B51222.N,94.3627,82.7708,99.7256,121.4742,154.4973,119.9891,101.9494,84.2966,81.6328,102.1004 -"Equipment, total; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B52000.S,IP.B52000.S,99.1030,98.5200,99.1932,98.6921,97.7837,99.0768,99.2449,98.8813,99.0521,98.8502 -"Equipment, total; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B52000.N,IP.B52000.N,98.7448,99.0256,99.1400,98.7999,96.8520,99.6920,100.1238,99.1411,98.7906,99.5578 -"Business equipment; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B52100.S,IP.B52100.S,94.8687,94.0965,95.0280,94.5220,93.4242,94.9085,94.9989,94.5363,94.7847,94.3673 -"Business equipment; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B52100.N,IP.B52100.N,94.7384,94.8373,94.9142,94.4117,92.3131,95.5535,95.8679,94.8035,94.4878,95.2117 -"Transit equipment; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B52110.S,IP.B52110.S,73.7354,70.3350,74.1531,74.0382,70.8503,73.2296,74.9394,74.3856,73.8543,74.7700 -"Transit equipment; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B52110.N,IP.B52110.N,75.0117,73.1144,73.5426,70.4515,68.6469,75.3953,77.5723,76.0065,74.0063,76.1775 -"Business vehicles; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.G3361E.S,IP.G3361E.S,102.3305,88.7052,103.5897,106.8848,98.6611,110.5134,117.0367,113.2433,112.1045,115.5544 -"Business vehicles; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.G3361E.N,IP.G3361E.N,107.0585,98.2698,101.3044,94.4308,92.9934,117.5472,123.5389,118.7825,113.2879,120.3383 -"Business light vehicles; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.G33611E.S,IP.G33611E.S,100.5297,87.7090,102.0254,104.9705,98.3949,107.3959,111.9632,113.1839,114.8913,120.4060 -"Business light vehicles; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.G33611E.N,IP.G33611E.N,104.4930,96.9201,100.3522,91.3319,93.1404,116.2806,119.0405,118.0873,115.9418,124.8940 -"Automobile, business (NAICS = 336111pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.G336111B.S,IP.G336111B.S,101.7466,98.2299,104.1236,104.6510,88.0546,92.7546,94.1740,91.1056,100.2079,96.3323 -"Automobile, business (NAICS = 336111pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.G336111B.N,IP.G336111B.N,107.6394,109.7414,104.9802,90.5419,83.5907,101.4430,98.8022,96.3609,98.8991,99.2219 -"Light trucks, business (NAICS = 336112pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.G336112B.S,IP.G336112B.S,100.4740,85.6135,101.7844,105.2612,100.8294,110.7741,116.0266,118.1680,118.3003,125.8295 -"Light trucks, business (NAICS = 336112pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.G336112B.N,IP.G336112B.N,104.0271,94.3396,99.5584,91.6948,95.3982,119.7275,123.6546,123.0186,119.8651,130.6830 -"Information processing and related equipment; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B52120.S,IP.B52120.S,108.4476,109.6823,109.9278,109.1165,109.9744,110.0958,110.3401,110.3274,110.7059,109.6499 -"Information processing and related equipment; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B52120.N,IP.B52120.N,107.8678,109.9661,111.0172,111.2487,109.3486,109.3501,109.7942,109.2625,110.4005,110.9655 -"Industrial and other equipment; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B52130.S,IP.B52130.S,101.9786,101.7978,101.5871,100.9827,100.2333,101.7519,101.0295,100.4595,101.0377,100.1897 -"Industrial and other equipment; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B52130.N,IP.B52130.N,101.3260,101.7278,101.3237,101.7997,99.4665,102.1368,101.5376,100.5227,100.5307,100.6380 -"Industrial equipment; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B52131.S,IP.B52131.S,96.8508,96.7072,96.6778,96.4480,95.5179,96.4597,96.3762,95.3119,96.9895,96.1632 -"Industrial equipment; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B52131.N,IP.B52131.N,96.2909,96.6946,96.5367,97.6075,94.9143,96.7016,96.9484,95.4882,96.2990,96.1441 -"Other equipment; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B52132.S,IP.B52132.S,110.0225,109.7860,109.2851,108.0761,107.6243,110.0822,108.3154,108.5583,107.3288,106.4481 -"Other equipment; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B52132.N,IP.B52132.N,109.2210,109.6235,108.8247,108.3330,106.5966,110.7044,108.7199,108.4397,107.1284,107.6666 -"Oil and gas well drilling and manufactured homes; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B52200.S,IP.B52200.S,109.4856,108.9680,106.2407,105.4839,103.9667,105.0076,105.5060,102.2974,100.6166,101.2643 -"Oil and gas well drilling and manufactured homes; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B52200.N,IP.B52200.N,106.8606,107.0874,105.0100,103.9596,103.8926,106.2004,106.9798,104.6400,102.7519,102.3776 -"Defense and space equipment; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B52300.S,IP.B52300.S,116.2521,116.8205,117.2637,116.9270,117.4471,117.6230,118.1252,119.5015,119.9222,120.7068 -"Defense and space equipment; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B52300.N,IP.B52300.N,115.4338,116.8274,118.0410,118.9874,117.2914,117.7905,118.7780,118.8707,118.9309,120.3760 -"Nonindustrial supplies; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B54000.S,IP.B54000.S,101.1469,101.0115,100.6408,100.3182,99.5342,101.0482,100.8391,100.3448,101.4054,101.9303 -"Nonindustrial supplies; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B54000.N,IP.B54000.N,102.2044,101.7035,100.3417,99.8536,97.5177,98.0902,99.2909,98.8525,100.8911,103.8425 -"Construction supplies; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B54100.S,IP.B54100.S,101.0208,100.7751,100.7118,100.2618,98.7984,101.2536,101.0960,99.5957,100.4590,100.3628 -"Construction supplies; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B54100.N,IP.B54100.N,103.0850,103.0040,100.7251,97.7216,92.6783,95.8730,98.3842,99.9071,102.2846,104.2387 -"Business supplies; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B54200.S,IP.B54200.S,101.2779,101.1955,100.6736,100.4124,99.9613,101.0136,100.7791,100.7806,101.9392,102.7717 -"Business supplies; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B54200.N,IP.B54200.N,101.8493,101.1416,100.2261,100.9689,99.9610,99.2440,99.7999,98.3935,100.2660,103.7129 -"Non-energy business supplies; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B54210.S,IP.B54210.S,98.5720,98.5925,97.8577,97.6655,96.8118,98.0314,98.3986,98.0557,98.8056,99.3993 -"Non-energy business supplies; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B54210.N,IP.B54210.N,99.2919,99.5203,98.4714,97.9106,94.5389,96.4344,97.6025,97.5717,98.2743,100.6140 -"Commercial energy products; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B54220.S,IP.B54220.S,109.4489,109.0456,109.1755,108.6969,109.4885,110.0225,107.9304,108.9961,111.4155,112.9848 -"Commercial energy products; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B54220.N,IP.B54220.N,109.5827,105.9905,105.4891,110.2574,116.5546,107.7595,106.4197,100.7554,106.2502,113.1238 -"Materials; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53000.S,IP.B53000.S,105.9501,104.9638,105.1687,104.9382,103.3250,104.6974,104.6410,104.5206,105.6938,106.3884 -"Materials; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53000.N,IP.B53000.N,106.0143,104.2397,104.4007,104.3908,102.7789,104.1240,104.3257,103.3341,104.7053,107.8476 -"Materials ex. energy materials; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.Z53010.S,IP.Z53010.S,97.9706,96.7981,97.3025,97.2561,95.6708,96.9326,97.1470,96.7634,98.0956,98.5185 -"Materials ex. energy materials; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.Z53010.N,IP.Z53010.N,97.7430,97.3851,97.1328,96.3456,94.0134,96.7183,97.9180,97.3779,98.0487,99.6418 -"Durable goods materials; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53100.S,IP.B53100.S,98.6334,97.2021,98.1839,98.0376,96.7920,97.5035,97.8498,97.8064,99.0445,98.9495 -"Durable goods materials; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53100.N,IP.B53100.N,98.6986,98.1409,98.1457,97.1392,94.5466,97.2583,99.0256,98.2331,98.6744,100.1566 -"Consumer parts; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53110.S,IP.B53110.S,94.5103,90.6826,93.8536,95.3559,92.8427,93.5150,93.7686,93.6949,94.2934,95.1442 -"Consumer parts; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53110.N,IP.B53110.N,93.5436,93.2474,94.1857,91.0597,91.3832,97.0556,99.6307,95.8073,93.0071,94.7235 -"Equipment parts; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53120.S,IP.B53120.S,104.1948,104.6011,104.9867,104.1075,104.0436,103.6884,104.2998,105.0604,106.8218,107.5024 -"Equipment parts; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53120.N,IP.B53120.N,104.8619,104.8329,105.3072,105.8155,102.2123,102.3360,105.9161,103.9851,105.6706,108.7656 -"Computer and other board assemblies and parts; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53121.S,IP.B53121.S,153.3242,161.6925,157.6702,152.2900,150.0998,148.1118,142.5836,144.5694,147.8604,145.5147 -"Computer and other board assemblies and parts; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53121.N,IP.B53121.N,162.5279,155.8717,153.6606,154.2557,135.1843,141.0818,161.9471,142.0944,148.2772,165.4045 -"Semiconductors, printed circuit boards, and other; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53122.S,IP.B53122.S,128.1756,130.3075,131.1386,132.1905,132.7999,132.0858,133.4604,135.4477,139.2990,140.6715 -"Semiconductors, printed circuit boards, and other; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53122.N,IP.B53122.N,134.8158,133.8633,132.9015,137.1211,127.2350,123.4031,137.2408,128.7578,134.6884,144.0146 -"Other equipment parts; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53123.S,IP.B53123.S,97.3970,97.2965,97.6873,96.6002,96.4841,96.2324,96.8652,97.3896,98.7548,99.3896 -"Other equipment parts; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53123.N,IP.B53123.N,96.8733,97.1348,97.8698,97.7494,95.5889,96.1898,97.6655,97.2384,98.1195,99.8423 -"Other durable materials; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53130.S,IP.B53130.S,97.3269,95.8246,96.3515,95.9921,94.6169,95.8351,96.0887,95.6824,96.8867,96.1219 -"Other durable materials; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53130.N,IP.B53130.N,97.4515,96.5559,96.0281,95.0098,91.9294,94.8653,95.5240,96.2567,97.1851,97.8409 -"Basic metals; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53131.S,IP.B53131.S,89.2592,86.7618,87.9392,88.1843,86.0478,87.7725,88.9597,87.6790,90.7516,89.6951 -"Basic metals; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53131.N,IP.B53131.N,88.2091,86.3727,87.2813,87.9991,84.7599,89.5643,88.5736,88.7674,90.6357,90.5993 -"Miscellaneous durable materials; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53132.S,IP.B53132.S,101.3628,100.3462,100.5536,99.8962,98.8943,99.8641,99.6579,99.6826,99.9653,99.3443 -"Miscellaneous durable materials; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53132.N,IP.B53132.N,102.0686,101.6341,100.4020,98.5313,95.5266,97.5444,99.0166,100.0157,100.4806,101.4790 -"Nondurable goods materials; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53200.S,IP.B53200.S,96.9976,96.2269,95.9833,96.0914,93.9718,96.1003,96.1068,95.1854,96.6675,97.9127 -"Nondurable goods materials; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53200.N,IP.B53200.N,96.3134,96.2658,95.6089,95.1634,93.2389,95.9349,96.2398,96.0983,97.1334,98.9040 -"Textile materials; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53210.S,IP.B53210.S,77.7836,78.0403,76.0254,74.9471,75.3019,76.5021,78.5623,78.0466,80.2188,81.8208 -"Textile materials; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53210.N,IP.B53210.N,78.3603,78.4611,76.4468,75.5275,73.3237,76.0973,78.7936,79.2571,80.0531,82.4132 -"Paper materials; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53220.S,IP.B53220.S,81.7932,80.5989,81.7449,81.2098,81.4090,83.3259,83.2793,83.3580,83.7115,85.5635 -"Paper materials; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53220.N,IP.B53220.N,80.8461,79.6248,81.7753,81.4734,81.6618,84.0050,83.2738,83.5500,84.1198,85.5794 -"Chemical materials; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53230.S,IP.B53230.S,100.4468,98.9450,98.4585,98.7164,94.6445,97.4684,97.7739,96.3906,99.0899,100.4067 -"Chemical materials; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53230.N,IP.B53230.N,99.7201,97.7437,97.3271,97.5897,93.6454,96.9044,97.8521,97.2493,100.1076,101.8081 -"Other nondurable materials; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53240.S,IP.B53240.S,101.4848,102.0588,101.6542,102.0019,101.5981,102.7736,102.0670,101.3247,101.2971,102.0390 -"Other nondurable materials; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53240.N,IP.B53240.N,100.8662,104.6935,102.2292,100.5670,100.9058,102.8302,102.3486,102.6819,100.9298,102.9147 -"Containers; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53241.S,IP.B53241.S,94.2529,94.3034,94.3607,94.3842,94.8010,96.2503,94.6431,93.6277,92.8559,93.5503 -"Containers; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53241.N,IP.B53241.N,94.7401,97.3234,92.9045,89.3341,92.1357,94.5048,94.2951,94.7945,93.2281,96.2760 -"Miscellaneous nondurable materials; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53242.S,IP.B53242.S,104.9959,105.8325,105.1883,105.6958,104.8738,105.9075,105.6617,105.0601,105.4118,106.1766 -"Miscellaneous nondurable materials; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53242.N,IP.B53242.N,103.8084,108.2562,106.7859,106.0916,105.1729,106.8664,106.2471,106.4950,104.6518,106.0911 -"Energy materials; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53300.S,IP.B53300.S,118.8413,118.2282,117.8693,117.3003,115.6644,117.2171,116.6641,117.0272,117.8927,119.0693 -"Energy materials; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53300.N,IP.B53300.N,119.4724,115.0660,116.0000,117.4410,117.1950,116.0047,114.3675,112.5655,115.1911,121.0948 -"Primary energy; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53310.S,IP.B53310.S,120.7376,120.4890,119.4921,119.5512,115.1931,119.6403,119.0604,119.3140,119.1342,120.0434 -"Primary energy; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53310.N,IP.B53310.N,120.0734,118.6245,119.7513,120.4745,115.9506,120.3948,119.6139,118.5922,119.0534,120.4164 -"Converted fuel; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53320.S,IP.B53320.S,112.9280,111.5243,112.6034,110.6347,115.1723,110.1274,109.6428,110.2531,113.5202,115.3024 -"Converted fuel; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53320.N,IP.B53320.N,116.5031,105.6102,106.1124,109.1510,118.5684,104.5967,101.0237,97.4508,105.0422,121.4146 -"Total index; s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.B50001.S,IP.B50001.S,103.3081,102.5781,102.8868,102.6309,101.4830,102.6045,102.4062,102.4329,103.3282,103.9941 -"Total index; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.B50001.N,IP.B50001.N,103.2998,102.1654,102.0599,102.2236,101.7062,102.6262,102.5993,101.4902,102.2359,105.2923 -"Energy, total; s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.B50089.S,IP.B50089.S,113.5897,112.9768,112.7640,112.0471,111.5251,111.8107,110.5842,112.0163,112.8708,114.4305 -"Energy, total; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.B50089.N,IP.B50089.N,112.6179,107.9720,110.7262,114.6528,118.1561,112.4787,109.6214,105.9536,108.3165,115.2671 -"Consumer energy products; s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.B51220.S,IP.B51220.S,100.5719,99.8283,100.1459,98.9571,100.9100,97.6432,94.7345,99.8368,100.2118,102.9451 -"Consumer energy products; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.B51220.N,IP.B51220.N,94.7767,88.5536,98.1816,108.8658,121.8230,104.5638,97.2228,89.1731,89.7455,100.5454 -"Commercial energy products; s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.B54220.S,IP.B54220.S,109.4489,109.0456,109.1755,108.6969,109.4885,110.0225,107.9304,108.9961,111.4155,112.9848 -"Commercial energy products; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.B54220.N,IP.B54220.N,109.5827,105.9905,105.4891,110.2574,116.5546,107.7595,106.4197,100.7554,106.2502,113.1238 -"Drilling oil and gas wells (NAICS = 213111); s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.N213111.S,IP.N213111.S,113.9781,113.7319,110.4381,109.2864,108.5309,108.0537,109.0561,105.2515,103.1317,103.7599 -"Drilling oil and gas wells (NAICS = 213111); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.N213111.N,IP.N213111.N,110.7731,111.0445,109.5611,109.9743,109.2214,109.5304,110.4254,107.4412,105.2789,103.6925 -"Converted fuel; s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.B53320.S,IP.B53320.S,112.9280,111.5243,112.6034,110.6347,115.1723,110.1274,109.6428,110.2531,113.5202,115.3024 -"Converted fuel; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.B53320.N,IP.B53320.N,116.5031,105.6102,106.1124,109.1510,118.5684,104.5967,101.0237,97.4508,105.0422,121.4146 -"Primary energy; s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.B53310.S,IP.B53310.S,120.7376,120.4890,119.4921,119.5512,115.1931,119.6403,119.0604,119.3140,119.1342,120.0434 -"Primary energy; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.B53310.N,IP.B53310.N,120.0734,118.6245,119.7513,120.4745,115.9506,120.3948,119.6139,118.5922,119.0534,120.4164 -"Non-energy, total; s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X5001E.S,IP.X5001E.S,99.5661,98.8026,99.2774,99.1707,97.8265,99.2125,99.3468,98.9189,99.8238,100.1970 -"Non-energy, total; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X5001E.N,IP.X5001E.N,99.8953,99.8869,98.8689,97.8274,96.0215,99.0588,99.9437,99.6646,99.8844,101.6673 -"Computers, communications eq., and semiconductors (NAICS = 3341,3342,3344); s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.HITEK2.S,IP.HITEK2.S,143.9663,146.5466,147.3698,147.8423,148.1202,147.6236,148.5688,149.9856,153.0475,153.2815 -"Computers, communications eq., and semiconductors (NAICS = 3341,3342,3344); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.HITEK2.N,IP.HITEK2.N,148.7254,149.8449,150.3628,153.8011,142.7947,139.3671,150.9302,144.1060,149.9389,157.6243 -"Computer and peripheral equipment (NAICS = 3341); s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.G3341.S,IP.G3341.S,159.6031,158.0290,159.1445,157.5085,155.6951,155.9799,159.8630,158.7809,160.4618,156.5274 -"Computer and peripheral equipment (NAICS = 3341); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.G3341.N,IP.G3341.N,160.7186,160.4290,161.7086,161.4626,149.9214,149.6390,157.2326,157.5490,162.1041,163.5334 -"Communications equipment (NAICS = 3342); s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.G3342.S,IP.G3342.S,181.7161,185.5228,188.7696,191.0098,192.2924,193.2007,194.1901,194.8760,195.3634,195.4042 -"Communications equipment (NAICS = 3342); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.G3342.N,IP.G3342.N,180.0026,192.8473,199.6017,203.6896,192.4745,184.0599,185.7100,187.1163,192.9377,193.9317 -"Semiconductor and other electronic component (NAICS = 3344); s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.G3344.S,IP.G3344.S,130.9186,133.8195,134.0094,134.3801,134.7368,133.7948,134.2706,136.2200,140.0520,140.9565 -"Semiconductor and other electronic component (NAICS = 3344); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.G3344.N,IP.G3344.N,137.7376,136.2362,135.1296,138.9290,128.1862,125.5020,139.8558,130.1079,136.0587,146.1375 -"Non-energy ex. computers, communications eq., and semiconductors; s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X5EHTK.S,IP.X5EHTK.S,98.4411,97.6142,98.0768,97.9551,96.5856,98.0014,98.1205,97.6607,98.5236,98.8980 -"Non-energy ex. computers, communications eq., and semiconductors; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X5EHTK.N,IP.X5EHTK.N,98.6868,98.6539,97.6068,96.4820,94.8506,97.9960,98.6835,98.5240,98.6416,100.3122 -"Motor vehicles and parts (NAICS = 3361-3); s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.G3361T3.S,IP.G3361T3.S,107.2190,98.5911,107.2618,108.6938,102.2729,108.1759,110.5541,109.8425,109.8267,111.5909 -"Motor vehicles and parts (NAICS = 3361-3); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.G3361T3.N,IP.G3361T3.N,109.6608,105.8699,106.9852,99.5311,96.6322,113.4217,117.5704,112.6249,109.9166,113.5699 -"Motor vehicle (NAICS = 3361); s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.G3361.S,IP.G3361.S,117.0068,102.8089,118.6658,121.0761,111.1536,120.3955,124.2570,122.3939,121.9182,125.1315 -"Motor vehicle (NAICS = 3361); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.G3361.N,IP.G3361.N,121.7506,113.6117,116.5057,105.6736,105.0566,129.7317,131.7730,127.8348,122.9496,129.8374 -"Motor vehicle parts (NAICS = 3363); s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.G3363.S,IP.G3363.S,100.7248,96.0697,100.0730,100.6156,98.2762,101.5592,102.5639,102.6565,103.0120,104.2306 -"Motor vehicle parts (NAICS = 3363); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.G3363.N,IP.G3363.N,101.7152,100.8014,102.6116,98.0086,93.2002,102.8141,108.7272,101.6194,101.1862,103.3977 -"Non-energy ex. motor vehicles & pts., computers, communications eq., and semiconductors; s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X50EHV.S,IP.X50EHV.S,97.7710,97.5497,97.3763,97.1347,96.1560,97.2249,97.1695,96.7291,97.6599,97.9272 -"Non-energy ex. motor vehicles & pts., computers, communications eq., and semiconductors; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X50EHV.N,IP.X50EHV.N,97.8486,98.1073,96.8948,96.2593,94.7253,96.8209,97.2424,97.4507,97.7853,99.3038 -"Consumer goods ex. hi-tech, motor vehicles & pts., and energy; s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X51HVE.S,IP.X51HVE.S,100.6724,101.1362,100.6037,100.4935,99.9493,100.7029,100.4119,100.0774,100.9261,101.4162 -"Consumer goods ex. hi-tech, motor vehicles & pts., and energy; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X51HVE.N,IP.X51HVE.N,101.1746,102.0136,99.2652,98.8014,99.1875,101.2140,101.3157,101.4221,100.9761,103.0103 -"Business equipment ex. hi-tech and motor vehicles and parts; s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X52HTV.S,IP.X52HTV.S,90.7405,90.9697,90.9329,90.1047,89.8151,90.5139,90.0462,89.7951,90.1422,89.5053 -"Business equipment ex. hi-tech and motor vehicles and parts; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X52HTV.N,IP.X52HTV.N,90.2036,90.8195,90.8598,90.9537,89.3040,90.8550,90.5058,89.7001,89.6842,89.9399 -"Construction supplies ex. hi-tech; s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X5410H.S,IP.X5410H.S,100.8594,100.6068,100.5370,100.0813,98.6161,101.0709,100.9121,99.4106,100.2736,100.1773 -"Construction supplies ex. hi-tech; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X5410H.N,IP.X5410H.N,102.9272,102.8298,100.5399,97.5291,92.4965,95.7013,98.2116,99.7329,102.1051,104.0593 -"Business supplies ex. energy, motor vehicles & parts, and selected high-tech industries; s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X5421T.S,IP.X5421T.S,97.1970,97.1184,96.3367,96.1014,95.1940,96.4952,96.8475,96.4303,97.0669,97.6556 -"Business supplies ex. energy, motor vehicles & parts, and selected high-tech industries; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X5421T.N,IP.X5421T.N,97.7178,97.9706,96.9125,96.1716,93.0437,95.1270,95.8600,96.1495,96.6537,98.7432 -"Materials ex. energy, motor vehicles & pts., computers, communications eq., and semiconductors; s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X53EHV.S,IP.X53EHV.S,96.2841,95.3353,95.5098,95.4008,93.8833,94.9808,95.1112,94.6264,95.9365,96.2732 -"Materials ex. energy, motor vehicles & pts., computers, communications eq., and semiconductors; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X53EHV.N,IP.X53EHV.N,95.7519,95.4810,95.0621,94.5128,92.7404,94.8839,95.2490,95.5757,96.1727,97.4356 -"Total ex. computers, communications eq., and semiconductors; s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X50HTK.S,IP.X50HTK.S,102.5303,101.7519,102.0490,101.7794,100.6142,101.7556,101.5420,101.5496,102.4133,103.0836 -"Total ex. computers, communications eq., and semiconductors; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X50HTK.N,IP.X50HTK.N,102.4549,101.2880,101.1706,101.2846,100.9138,101.8918,101.7054,100.6772,101.3517,104.3382 -"Manufacturing ex. computers, communications eq., and semiconductors; s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X4HTK2.S,IP.X4HTK2.S,98.5087,97.7052,98.1502,98.0453,96.7313,97.9868,98.1655,97.6306,98.5960,98.9871 -"Manufacturing ex. computers, communications eq., and semiconductors; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X4HTK2.N,IP.X4HTK2.N,98.5961,98.5180,97.7293,96.7301,95.1534,98.2007,98.8836,98.4699,98.6794,100.3455 -"Durable mfg. ex. computers, communications eq., and semiconductors; s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X5HTK2.S,IP.X5HTK2.S,98.7838,97.2178,98.6231,98.1802,96.8749,98.3296,98.4341,97.9128,98.5105,98.5098 -"Durable mfg. ex. computers, communications eq., and semiconductors; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X5HTK2.N,IP.X5HTK2.N,98.4061,98.1246,97.9209,96.4125,95.5779,99.4907,100.1009,99.3470,98.5944,99.8064 -"Total ex. motor vehicles and parts; s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X50001.S,IP.X50001.S,103.1337,102.8544,102.6877,102.3363,101.4873,102.3381,101.9937,102.0622,103.0094,103.6137 -"Total ex. motor vehicles and parts; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X50001.N,IP.X50001.N,102.9878,102.0052,101.8320,102.4286,102.0456,102.0697,101.8073,100.9138,101.8541,104.8786 -"Manufacturing ex. motor vehicles and parts; s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.XXX001.S,IP.XXX001.S,99.0754,98.9184,98.7674,98.5645,97.6541,98.5370,98.5678,98.0805,99.1613,99.4494 -"Manufacturing ex. motor vehicles and parts; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.XXX001.N,IP.XXX001.N,99.0802,99.3039,98.4023,97.9659,96.3025,98.2258,98.8603,98.6589,99.1893,100.8275 -"Durable manufacturing ex. motor vehicles & parts; s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X005MV.S,IP.X005MV.S,99.9968,99.7526,99.9694,99.2658,98.8478,99.5106,99.2815,98.8664,99.6687,99.3918 -"Durable manufacturing ex. motor vehicles & parts; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X005MV.N,IP.X005MV.N,99.3799,99.7336,99.3551,99.0152,98.0865,99.6447,100.1391,99.8066,99.6323,100.7241 -"Total ex. selected high-tech. and motor vehicles & pts.; s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X5VHT2.S,IP.X5VHT2.S,102.3089,101.9841,101.7990,101.4319,100.5684,101.4368,101.0745,101.1234,102.0378,102.6459 -"Total ex. selected high-tech. and motor vehicles & pts.; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X5VHT2.N,IP.X5VHT2.N,102.0903,101.0753,100.8886,101.4380,101.2117,101.2862,100.8522,100.0469,100.9144,103.8644 -"Manufacturing ex. hi-tech and motor vehicles & pts.; s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X4HTMV.S,IP.X4HTMV.S,97.8766,97.6629,97.4890,97.2688,96.3388,97.2449,97.2582,96.7365,97.7758,98.0639 -"Manufacturing ex. hi-tech and motor vehicles & pts.; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X4HTMV.N,IP.X4HTMV.N,97.7887,97.9906,97.0604,96.5463,95.0682,97.0870,97.5107,97.4360,97.8639,99.3818 -"Non-energy materials for finished goods producers; s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.B53810.S,IP.B53810.S,96.2622,95.0016,96.3408,96.2884,95.4977,95.9556,96.3880,96.7060,97.8536,98.8429 -"Non-energy materials for finished goods producers; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.B53810.N,IP.B53810.N,96.0977,95.7684,96.6139,95.7471,94.1583,96.5910,99.0272,96.9776,96.9774,99.3076 -"Non-energy materials for intermediate goods producers; s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.B53820.S,IP.B53820.S,99.0642,97.9325,97.9893,97.9410,95.9300,97.6220,97.7207,96.9627,98.3955,98.5174 -"Non-energy materials for intermediate goods producers; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.B53820.N,IP.B53820.N,98.7994,98.4226,97.5821,96.8323,94.1002,96.9547,97.4977,97.7613,98.7910,99.9938 -"Finished processing--gross value; s.a. IP","Index:_2017_100","1","NA",G17/IP_GROSS_VALUE_STAGE_OF_PROCESS_GROUPS/IP.TB56400.S,IP.TB56400.S,104.4943,103.1665,104.6564,104.7276,102.7174,104.6373,104.6724,104.3663,104.9895,105.3362 -"Finished processing--gross value; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_GROSS_VALUE_STAGE_OF_PROCESS_GROUPS/IP.TB56400.N,IP.TB56400.N,105.2838,105.5551,104.0218,101.8115,100.7285,106.0146,106.1676,105.6616,104.8709,107.0005 -"Semifinished processing--gross value; s.a. IP","Index:_2017_100","1","NA",G17/IP_GROSS_VALUE_STAGE_OF_PROCESS_GROUPS/IP.TB56300.S,IP.TB56300.S,101.0157,100.1622,100.7290,100.3432,100.4750,101.4038,100.5604,101.0513,101.9587,103.1270 -"Semifinished processing--gross value; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_GROSS_VALUE_STAGE_OF_PROCESS_GROUPS/IP.TB56300.N,IP.TB56300.N,102.6485,99.7860,98.3665,99.0692,99.8533,99.2756,100.1190,98.2340,99.9667,105.3745 -"Primary processing--gross value; s.a. IP","Index:_2017_100","1","NA",G17/IP_GROSS_VALUE_STAGE_OF_PROCESS_GROUPS/IP.TB56200.S,IP.TB56200.S,96.2241,95.6549,95.7231,95.3582,95.0545,94.5017,94.7440,94.3741,96.1919,96.9368 -"Primary processing--gross value; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_GROSS_VALUE_STAGE_OF_PROCESS_GROUPS/IP.TB56200.N,IP.TB56200.N,93.6811,91.9033,95.5535,97.1371,98.8302,96.0449,94.9865,92.7215,94.4396,97.7695 -"Crude processing--gross value; s.a. IP","Index:_2017_100","1","NA",G17/IP_GROSS_VALUE_STAGE_OF_PROCESS_GROUPS/IP.TB56100.S,IP.TB56100.S,107.5716,106.2595,106.2313,107.2760,102.4171,105.7440,106.1230,105.1722,106.0357,106.9514 -"Crude processing--gross value; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_GROSS_VALUE_STAGE_OF_PROCESS_GROUPS/IP.TB56100.N,IP.TB56100.N,106.9414,106.3374,106.7514,107.6120,101.9410,105.7173,106.3584,105.1326,105.9727,106.9650 -"Total motor vehicle assemblies; s.a.","Number","1000000","NA",G17/MVA/MVA.TOTASS.S,MVA.TOTASS.S,10.8202,9.3731,10.8879,11.0043,10.1696,11.0895,11.5132,11.1467,11.1248,11.6341 -"Total motor vehicle assemblies; n.s.a.","Number","1000000","NA",G17/MVA/MVA.TOTASS.N,MVA.TOTASS.N,10.7357,10.4440,10.6685,9.2178,10.1081,11.4608,11.5979,11.7845,11.8580,10.9494 -"Auto assemblies; s.a.","Number","1000000","NA",G17/MVA/MVA.AUTOAS.S,MVA.AUTOAS.S,1.7208,1.6158,1.7640,1.7315,1.4788,1.5828,1.6639,1.4686,1.6250,1.6016 -"Auto assemblies; n.s.a.","Number","1000000","NA",G17/MVA/MVA.AUTOAS.N,MVA.AUTOAS.N,1.7536,1.8389,1.7768,1.4426,1.4728,1.6431,1.5992,1.6053,1.7111,1.5361 -"Truck assemblies; s.a.","Number","1000000","NA",G17/MVA/MVA.TRUCKS.S,MVA.TRUCKS.S,9.0994,7.7573,9.1240,9.2728,8.6909,9.5067,9.8492,9.6781,9.4997,10.0325 -"Truck assemblies; n.s.a.","Number","1000000","NA",G17/MVA/MVA.TRUCKS.N,MVA.TRUCKS.N,8.9821,8.6051,8.8917,7.7752,8.6352,9.8177,9.9987,10.1792,10.1469,9.4133 -"Light truck assemblies; s.a.","Number","1000000","NA",G17/MVA/MVA.LTTRCK.S,MVA.LTTRCK.S,8.7679,7.4739,8.7963,8.9261,8.3867,9.1370,9.4448,9.3334,9.1886,9.7313 -"Light truck assemblies; n.s.a.","Number","1000000","NA",G17/MVA/MVA.LTTRCK.N,MVA.LTTRCK.N,8.6425,8.2875,8.5738,7.4673,8.3364,9.4588,9.5972,9.8092,9.8148,9.1223 -"Heavy and medium truck assemblies; s.a.","Number","1000000","NA",G17/MVA/MVA.HMTRCK.S,MVA.HMTRCK.S,0.3315,0.2834,0.3277,0.3467,0.3042,0.3697,0.4045,0.3447,0.3111,0.3012 -"Heavy and medium truck assemblies; n.s.a.","Number","1000000","NA",G17/MVA/MVA.HMTRCK.N,MVA.HMTRCK.N,0.3396,0.3176,0.3179,0.3080,0.2989,0.3589,0.4015,0.3700,0.3322,0.2910 -"Autos and light truck assemblies; s.a.","Number","1000000","NA",G17/MVA/MVA.AUTLTT.S,MVA.AUTLTT.S,10.4887,9.0897,10.5602,10.6576,9.8654,10.7198,11.1087,10.8020,10.8136,11.3329 -"Autos and light truck assemblies; n.s.a.","Number","1000000","NA",G17/MVA/MVA.AUTLTT.N,MVA.AUTLTT.N,10.3961,10.1264,10.3506,8.9099,9.8092,11.1019,11.1964,11.4145,11.5258,10.6584 -"Diffusion index of industrial production, one month earlier; s.a. DIFF","Percentage","1","NA",G17/DIFF/DIFF.DIFFUSION_1.S,DIFF.DIFFUSION_1.S,52.8620,46.4646,47.1380,49.1582,38.3838,61.2795,58.0808,44.6128,64.3098, -"Diffusion index of industrial production, three months earlier; s.a. DIFF","Percentage","1","NA",G17/DIFF/DIFF.DIFFUSION_3.S,DIFF.DIFFUSION_3.S,53.5354,46.1279,45.7912,48.8215,41.0774,51.5152,54.8822,58.7542,58.2492, -"Diffusion index of industrial production, six months earlier; s.a. DIFF","Percentage","1","NA",G17/DIFF/DIFF.DIFFUSION_6.S,DIFF.DIFFUSION_6.S,53.1987,46.1279,42.4242,47.8114,35.6902,49.8316,49.8316,47.1380,54.2088, -"Total index; s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.B50001.S,CAP.B50001.S,130.8886,131.0548,131.2045,131.3400,131.4640,131.5817,131.6950,131.8059,131.9192,132.0387 -"Manufacturing (SIC); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.B00004.S,CAP.B00004.S,127.5657,127.6976,127.8297,127.9617,128.0940,128.2274,128.3620,128.4973,128.6346,128.7744 -"Manufacturing (NAICS); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.GMF.S,CAP.GMF.S,128.2861,128.4326,128.5790,128.7252,128.8715,129.0188,129.1672,129.3164,129.4674,129.6210 -"Durable manufacturing (NAICS); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.GMFD.S,CAP.GMFD.S,131.6925,131.8212,131.9592,132.1061,132.2620,132.4268,132.5999,132.7796,132.9653,133.1561 -"Wood product (NAICS = 321); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G321.S,CAP.G321.S,123.2147,123.3069,123.3944,123.4772,123.5555,123.6292,123.6987,123.7640,123.8254,123.8833 -"Nonmetallic mineral product (NAICS = 327); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G327.S,CAP.G327.S,128.8405,128.8548,128.8596,128.8548,128.8405,128.8162,128.7828,128.7413,128.6929,128.6386 -"Primary metal (NAICS = 331); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G331.S,CAP.G331.S,133.4474,133.3954,133.3743,133.3878,133.4384,133.5270,133.6527,133.8129,134.0026,134.2174 -"Fabricated metal product (NAICS = 332); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G332.S,CAP.G332.S,129.5141,129.5283,129.5378,129.5421,129.5411,129.5346,129.5228,129.5063,129.4857,129.4620 -"Machinery (NAICS = 333); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G333.S,CAP.G333.S,121.2034,121.1828,121.1830,121.2030,121.2418,121.2975,121.3685,121.4522,121.5457,121.6462 -"Computer and electronic product (NAICS = 334); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G334.S,CAP.G334.S,151.2104,151.8478,152.5163,153.2125,153.9360,154.6851,155.4581,156.2498,157.0595,157.8853 -"Electrical equipment, appliance, and component (NAICS = 335); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G335.S,CAP.G335.S,129.4005,129.4751,129.5607,129.6564,129.7616,129.8753,129.9964,130.1234,130.2547,130.3890 -"Motor vehicles and parts (NAICS = 3361-3); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G3361T3.S,CAP.G3361T3.S,145.8713,146.1022,146.3264,146.5469,146.7671,146.9929,147.2258,147.4658,147.7166,147.9805 -"Aerospace and miscellaneous transportation eq. (NAICS = 3364-9); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G3364T9.S,CAP.G3364T9.S,126.3379,126.3361,126.3413,126.3523,126.3681,126.3870,126.4081,126.4303,126.4520,126.4720 -"Furniture and related product (NAICS = 337); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G337.S,CAP.G337.S,112.7962,112.6074,112.3962,112.1643,111.9127,111.6424,111.3555,111.0553,110.7437,110.4227 -"Miscellaneous (NAICS = 339); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G339.S,CAP.G339.S,131.3935,131.9758,132.5703,133.1759,133.7933,134.4238,135.0667,135.7185,136.3806,137.0527 -"Nondurable manufacturing (NAICS); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.GMFN.S,CAP.GMFN.S,124.8874,125.0546,125.2142,125.3661,125.5105,125.6484,125.7807,125.9079,126.0326,126.1567 -"Food, beverage, and tobacco (NAICS = 311,2); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G311A2.S,CAP.G311A2.S,124.6196,124.5986,124.5748,124.5484,124.5199,124.4892,124.4572,124.4247,124.3923,124.3607 -"Textiles and products (NAICS = 313,4); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G313A4.S,CAP.G313A4.S,116.4428,116.1247,115.8101,115.4985,115.1883,114.8766,114.5632,114.2491,113.9320,113.6108 -"Apparel and leather goods (NAICS = 315,6); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G315A6.S,CAP.G315A6.S,128.0153,128.0857,128.1266,128.1375,128.1182,128.0677,127.9879,127.8815,127.7523,127.6034 -"Paper (NAICS = 322); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G322.S,CAP.G322.S,105.8903,105.8056,105.7291,105.6613,105.6021,105.5513,105.5082,105.4721,105.4414,105.4147 -"Printing and related support activities (NAICS = 323); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G323.S,CAP.G323.S,111.6665,111.7067,111.7576,111.8182,111.8880,111.9665,112.0529,112.1457,112.2439,112.3467 -"Petroleum and coal products (NAICS = 324); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G324.S,CAP.G324.S,102.2331,102.4347,102.6049,102.7416,102.8437,102.9095,102.9412,102.9417,102.9157,102.8674 -"Chemical (NAICS = 325); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G325.S,CAP.G325.S,135.2353,135.5806,135.9338,136.2928,136.6570,137.0260,137.3992,137.7746,138.1538,138.5371 -"Plastics and rubber products (NAICS = 326); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G326.S,CAP.G326.S,132.9508,133.4215,133.8804,134.3243,134.7517,135.1619,135.5547,135.9294,136.2902,136.6401 -"Other manufacturing; s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.GMFO.S,CAP.GMFO.S,101.7489,101.3350,100.9268,100.5249,100.1289,99.7367,99.3484,98.9651,98.5841,98.2040 -"Mining (NAICS = 21); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G21.S,CAP.G21.S,134.1501,134.2392,134.2743,134.2614,134.2058,134.1197,134.0079,133.8768,133.7382,133.6014 -"Electric and gas utilities (NAICS = 2211,2); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G2211A2.S,CAP.G2211A2.S,144.8588,145.2734,145.6854,146.0951,146.5040,146.9153,147.3298,147.7467,148.1697,148.6013 -"Computers, communications eq., and semiconductors (NAICS = 3341,3342,3344); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.HITEK2.S,CAP.HITEK2.S,179.4274,181.0536,182.7253,184.4333,186.1752,187.9470,189.7460,191.5621,193.3988,195.2566 -"Computer and peripheral equipment (NAICS = 3341); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G3341.S,CAP.G3341.S,206.4385,206.9730,207.4664,207.9181,208.3291,208.7017,209.0385,209.3418,209.6198,209.8787 -"Communications equipment (NAICS = 3342); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G3342.S,CAP.G3342.S,246.8770,249.2320,251.6126,254.0119,256.4305,258.8734,261.3387,263.8157,266.3171,268.8485 -"Total ex. computers, communications eq., and semiconductors; s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.X50HTK.S,CAP.X50HTK.S,129.9488,130.0941,130.2222,130.3355,130.4368,130.5314,130.6214,130.7088,130.7984,130.8942 -"Manufacturing ex. computers, communications eq., and semiconductors; s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.X4HTK2.S,CAP.X4HTK2.S,126.2484,126.3527,126.4564,126.5597,126.6626,126.7663,126.8708,126.9759,127.0827,127.1918 -"Crude processing (capacity); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.B5610C.S,CAP.B5610C.S,128.7654,128.8269,128.8488,128.8364,128.7944,128.7324,128.6544,128.5656,128.4749,128.3895 -"Primary & semifinished processing (capacity); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.B562A3C.S,CAP.B562A3C.S,128.0412,128.2154,128.3863,128.5539,128.7188,128.8821,129.0443,129.2054,129.3673,129.5312 -"Finished processing (capacity); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.B5640C.S,CAP.B5640C.S,134.1445,134.3288,134.5154,134.7039,134.8945,135.0886,135.2858,135.4853,135.6883,135.8954 -"Iron and steel products (NAICS = 3311,2); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G3311A2.S,CAP.G3311A2.S,130.3431,130.4353,130.5325,130.6377,130.7534,130.8819,131.0235,131.1773,131.3421,131.5162 -"Transportation equipment (NAICS = 336); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G336.S,CAP.G336.S,136.7533,136.8839,137.0128,137.1414,137.2712,137.4056,137.5447,137.6884,137.8382,137.9950 -"Automobile and light duty motor vehicle (NAICS = 33611); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G33611.S,CAP.G33611.S,164.1376,164.4172,164.6889,164.9598,165.2365,165.5300,165.8428,166.1760,166.5340,166.9197 -"Food (NAICS = 311); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G311.S,CAP.G311.S,120.6786,120.6260,120.5738,120.5215,120.4686,120.4148,120.3598,120.3039,120.2469,120.1890 -"Beverage and tobacco product (NAICS = 312); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G312.S,CAP.G312.S,136.9552,137.0231,137.0904,137.1571,137.2245,137.2903,137.3566,137.4247,137.4942,137.5657 -"Textile mills (NAICS = 313); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G313.S,CAP.G313.S,114.4878,114.0441,113.5990,113.1528,112.7046,112.2521,111.7958,111.3379,110.8765,110.4110 -"Textile product mills (NAICS = 314); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G314.S,CAP.G314.S,118.1597,117.9863,117.8124,117.6380,117.4624,117.2850,117.1058,116.9256,116.7439,116.5605 -"Apparel (NAICS = 315); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G315.S,CAP.G315.S,121.0550,120.8412,120.6205,120.3936,120.1604,119.9208,119.6754,119.4261,119.1726,118.9154 -"Leather and allied product (NAICS = 316); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G316.S,CAP.G316.S,145.7331,146.4547,147.0717,147.5852,147.9977,148.3140,148.5415,148.6886,148.7726,148.8074 -"Plastics material and resin (NAICS = 325211); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.N325211.S,CAP.N325211.S,110.7381,110.8041,110.8970,111.0182,111.1692,111.3509,111.5620,111.7994,112.0592,112.3377 -"Synthetic rubber (NAICS = 325212); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G325212.S,CAP.G325212.S,148.6999,148.6254,148.5472,148.4654,148.3795,148.2894,148.1952,148.0977,147.9972,147.8939 -"Artificial and synthetic fibers and filaments (NAICS = 32522); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G32522.S,CAP.G32522.S,82.9920,82.4080,81.8223,81.2370,80.6514,80.0697,79.4899,78.9129,78.3381,77.7652 -"Oil and gas extraction (NAICS = 211); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G211.S,CAP.G211.S,145.9150,146.4839,147.0047,147.4789,147.9092,148.3009,148.6578,148.9831,149.2870,149.5770 -"Mining (except oil and gas) (NAICS = 212); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G212.S,CAP.G212.S,125.0887,124.9664,124.8808,124.8299,124.8116,124.8195,124.8509,124.9017,124.9640,125.0313 -"Coal mining (NAICS = 2121); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.N2121.S,CAP.N2121.S,106.3121,105.9440,105.6030,105.2927,105.0149,104.7695,104.5556,104.3715,104.2107,104.0681 -"Metal ore mining (NAICS = 2122); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G2122.S,CAP.G2122.S,150.2262,150.2429,150.3343,150.4960,150.7247,151.0086,151.3429,151.7196,152.1242,152.5449 -"Nonmetallic mineral mining and quarrying (NAICS = 2123); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G2123.S,CAP.G2123.S,118.7391,118.7256,118.6980,118.6562,118.5997,118.5286,118.4436,118.3460,118.2378,118.1206 -"Support activities for mining (NAICS = 213); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G213.S,CAP.G213.S,109.9817,108.9964,107.9996,106.9914,105.9700,104.9326,103.8812,102.8228,101.7562,100.6833 -"Electric power generation, transmission, and distribution (NAICS = 2211); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G2211.S,CAP.G2211.S,145.1794,145.6349,146.0983,146.5681,147.0439,147.5266,148.0152,148.5072,149.0041,149.5065 -"Natural gas distribution (NAICS = 2212); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G2212.S,CAP.G2212.S,138.4192,138.4573,138.4924,138.5246,138.5541,138.5812,138.6060,138.6287,138.6499,138.6699 -"Manufacturing ex. hi-tech and motor vehicles & pts.; s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.X4HTMV.S,CAP.X4HTMV.S,124.8002,124.8962,124.9927,125.0892,125.1859,125.2830,125.3807,125.4785,125.5772,125.6773 -"Total index; s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.B50001.S,CAPUTL.B50001.S,78.9282,78.2711,78.4172,78.1414,77.1945,77.9778,77.7601,77.7150,78.3268,78.7603 -"Manufacturing (SIC); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.B00004.S,CAPUTL.B00004.S,78.0859,77.4241,77.7019,77.5511,76.4637,77.3425,77.4115,76.9388,77.6380,77.8564 -"Manufacturing (NAICS); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.GMF.S,CAPUTL.GMF.S,78.0289,77.3297,77.6717,77.5490,76.3931,77.2760,77.3431,76.8523,77.5478,77.7494 -"Durable manufacturing (NAICS); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.GMFD.S,CAPUTL.GMFD.S,76.7087,75.5537,76.5413,76.1607,75.1299,76.0751,76.0831,75.6386,76.0518,75.9403 -"Wood product (NAICS = 321); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G321.S,CAPUTL.G321.S,77.7285,75.9148,77.9067,75.4908,74.6167,75.0931,75.7205,74.6118,76.1486,76.3647 -"Nonmetallic mineral product (NAICS = 327); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G327.S,CAPUTL.G327.S,81.2537,81.6989,80.3641,80.5586,77.9875,78.7897,77.4775,77.3366,76.9170,77.9121 -"Primary metal (NAICS = 331); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G331.S,CAPUTL.G331.S,72.0247,70.0122,71.0394,71.1088,69.5875,69.8140,70.1523,68.8408,71.2486,70.4550 -"Fabricated metal product (NAICS = 332); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G332.S,CAPUTL.G332.S,76.7135,76.6812,76.5588,76.1592,76.7645,77.2322,76.8931,76.3742,77.1609,76.1801 -"Machinery (NAICS = 333); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G333.S,CAPUTL.G333.S,82.7110,81.7719,82.4566,81.5299,80.8845,82.4637,81.1866,80.7374,81.3052,80.6705 -"Computer and electronic product (NAICS = 334); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G334.S,CAPUTL.G334.S,75.5808,76.3524,76.2245,75.5723,75.7587,75.2815,75.1169,74.9408,75.3127,74.5412 -"Electrical equipment, appliance, and component (NAICS = 335); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G335.S,CAPUTL.G335.S,79.1669,80.3899,80.1088,79.9499,79.7051,79.0233,80.1072,78.9496,79.7216,80.8400 -"Motor vehicles and parts (NAICS = 3361-3); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G3361T3.S,CAPUTL.G3361T3.S,73.5025,67.4809,73.3031,74.1699,69.6838,73.5926,75.0915,74.4868,74.3496,75.4092 -"Aerospace and miscellaneous transportation eq. (NAICS = 3364-9); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G3364T9.S,CAPUTL.G3364T9.S,70.5234,70.6289,70.9251,70.1430,70.4149,69.7676,70.1492,71.2663,71.7172,72.6106 -"Furniture and related product (NAICS = 337); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G337.S,CAPUTL.G337.S,70.9207,69.9642,69.5453,69.0101,68.4628,69.5521,69.0752,70.0145,68.7773,69.9824 -"Miscellaneous (NAICS = 339); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G339.S,CAPUTL.G339.S,83.3892,83.0848,81.9305,80.9254,80.1192,81.2495,80.8036,79.4325,78.0576,76.3320 -"Nondurable manufacturing (NAICS); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.GMFN.S,CAPUTL.GMFN.S,79.4458,79.2314,78.8772,79.0257,77.7309,78.5417,78.6674,78.1216,79.1168,79.6525 -"Food, beverage, and tobacco (NAICS = 311,2); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G311A2.S,CAPUTL.G311A2.S,80.1343,80.8334,80.3520,80.3986,79.5456,79.8675,79.7642,79.4710,80.1356,80.5166 -"Textiles and products (NAICS = 313,4); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G313A4.S,CAPUTL.G313A4.S,69.6422,69.5034,67.7798,67.0235,67.2135,68.5384,68.6982,68.4316,70.2985,71.5415 -"Apparel and leather goods (NAICS = 315,6); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G315A6.S,CAPUTL.G315A6.S,66.8363,67.3737,64.8648,64.4851,64.2607,63.6114,62.6429,63.6173,63.5344,64.5550 -"Paper (NAICS = 322); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G322.S,CAPUTL.G322.S,81.5290,81.1871,81.8207,81.4513,81.2406,82.6414,82.4107,82.4943,82.9364,84.1688 -"Printing and related support activities (NAICS = 323); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G323.S,CAPUTL.G323.S,72.8587,72.1190,72.3744,72.0950,73.0195,74.0638,74.7174,75.4727,75.0598,76.9357 -"Petroleum and coal products (NAICS = 324); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G324.S,CAPUTL.G324.S,89.8276,90.2101,90.4613,91.1833,89.0942,90.0629,91.8930,88.3161,91.5063,91.9689 -"Chemical (NAICS = 325); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G325.S,CAPUTL.G325.S,77.2095,76.3356,75.8474,76.0882,74.0682,75.3828,75.3044,74.8988,76.2004,76.9090 -"Plastics and rubber products (NAICS = 326); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G326.S,CAPUTL.G326.S,78.4713,77.2427,76.7273,76.9626,75.6483,75.7474,75.7319,75.6643,75.4412,74.9274 -"Other manufacturing; s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.GMFO.S,CAPUTL.GMFO.S,80.7947,81.9327,79.1307,77.6139,79.8621,80.5570,80.7362,81.1725,82.0721,83.1501 -"Mining (NAICS = 21); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G21.S,CAPUTL.G21.S,90.1155,89.3729,89.2009,89.7455,85.9142,89.6267,89.2264,89.4819,88.9540,89.2950 -"Electric and gas utilities (NAICS = 2211,2); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G2211A2.S,CAPUTL.G2211A2.S,73.3022,72.8260,72.4711,70.5536,73.3587,70.4931,68.5743,70.8435,72.0047,73.8274 -"Computers, communications eq., and semiconductors (NAICS = 3341,3342,3344); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.HITEK2.S,CAPUTL.HITEK2.S,80.2366,80.9410,80.6510,80.1603,79.5596,78.5453,78.2988,78.2961,79.1357,78.5026 -"Computer and peripheral equipment (NAICS = 3341); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G3341.S,CAPUTL.G3341.S,77.3126,76.3525,76.7086,75.7551,74.7352,74.7382,76.4754,75.8477,76.5490,74.5799 -"Communications equipment (NAICS = 3342); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G3342.S,CAPUTL.G3342.S,73.6059,74.4378,75.0239,75.1972,74.9881,74.6314,74.3059,73.8682,73.3575,72.6819 -"Total ex. computers, communications eq., and semiconductors; s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.X50HTK.S,CAPUTL.X50HTK.S,78.9005,78.2140,78.3653,78.0903,77.1364,77.9548,77.7376,77.6915,78.2986,78.7534 -"Manufacturing ex. computers, communications eq., and semiconductors; s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.X4HTK2.S,CAPUTL.X4HTK2.S,78.0277,77.3273,77.6158,77.4696,76.3693,77.2972,77.3744,76.8891,77.5841,77.8251 -"Crude processing (capacity); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.B5610C.S,CAPUTL.B5610C.S,88.1215,87.0653,86.9681,87.5777,83.8773,86.7791,86.8717,86.6028,86.8994,87.5714 -"Primary & semifinished processing (capacity); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.B562A3C.S,CAPUTL.B562A3C.S,77.5735,77.0097,77.0400,76.4578,76.4650,76.4769,76.0249,76.1875,77.0667,77.6616 -"Finished processing (capacity); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.B5640C.S,CAPUTL.B5640C.S,76.7713,76.1806,76.5754,76.2946,75.3055,76.1227,76.0363,75.7978,76.1831,76.2893 -"Iron and steel products (NAICS = 3311,2); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G3311A2.S,CAPUTL.G3311A2.S,74.3144,73.5349,73.8526,73.4967,71.2436,71.7282,71.5015,70.0158,70.6533,71.0002 -"Transportation equipment (NAICS = 336); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G336.S,CAPUTL.G336.S,72.3834,68.6521,72.4111,72.6641,69.9550,72.1708,73.2587,73.2986,73.3842,74.3866 -"Automobile and light duty motor vehicle (NAICS = 33611); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G33611.S,CAPUTL.G33611.S,71.8089,63.1169,72.6255,73.8866,67.8966,72.8817,74.7064,74.1828,74.1440,76.1673 -"Food (NAICS = 311); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G311.S,CAPUTL.G311.S,84.6142,85.1050,84.9388,84.9592,84.2962,84.7508,84.2275,84.4663,85.0356,84.8254 -"Beverage and tobacco product (NAICS = 312); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G312.S,CAPUTL.G312.S,67.9237,69.2059,67.8772,67.9973,66.6320,66.5938,67.6130,65.8932,66.8070,68.7573 -"Textile mills (NAICS = 313); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G313.S,CAPUTL.G313.S,65.3043,66.0902,64.7857,64.1544,64.8113,65.9421,68.7916,68.5685,70.6791,72.4214 -"Textile product mills (NAICS = 314); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G314.S,CAPUTL.G314.S,74.5298,73.3387,71.1428,70.2499,69.9290,71.4800,68.6968,68.4015,70.0263,70.7506 -"Apparel (NAICS = 315); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G315.S,CAPUTL.G315.S,62.6279,61.6974,60.6161,59.3945,58.9624,58.2216,56.6596,59.3319,58.9682,59.0710 -"Leather and allied product (NAICS = 316); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G316.S,CAPUTL.G316.S,74.4208,77.6184,72.4355,73.5700,73.7018,73.2047,73.3013,71.2161,71.6427,74.3075 -"Plastics material and resin (NAICS = 325211); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.N325211.S,CAPUTL.N325211.S,83.5807,83.6325,84.0506,83.9341,78.0779,84.5545,82.4720,80.6081,82.5893, -"Synthetic rubber (NAICS = 325212); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G325212.S,CAPUTL.G325212.S,52.5664,52.3698,53.0392,52.8954,51.8590,52.2469,53.0614,49.9837,50.7602,50.8834 -"Artificial and synthetic fibers and filaments (NAICS = 32522); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G32522.S,CAPUTL.G32522.S,75.4611,75.5753,76.9924,77.9836,76.9003,78.4523,80.5912,76.8840,77.7881,78.4870 -"Oil and gas extraction (NAICS = 211); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G211.S,CAPUTL.G211.S,98.9762,98.1100,97.8430,97.5887,93.2550,97.0953,96.2862,97.3070,97.0333,97.4293 -"Mining (except oil and gas) (NAICS = 212); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G212.S,CAPUTL.G212.S,69.9857,69.1283,69.1506,71.5145,65.5478,70.2449,69.7040,68.3845,66.4837,66.0275 -"Coal mining (NAICS = 2121); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.N2121.S,CAPUTL.N2121.S,71.8223,68.3368,70.2126,72.8155,62.4264,67.3465,64.4412,57.4538,55.8162, -"Metal ore mining (NAICS = 2122); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G2122.S,CAPUTL.G2122.S,52.8765,52.9095,52.7358,55.6185,53.0835,53.9730,56.3667,54.9601,56.3962,55.9966 -"Nonmetallic mineral mining and quarrying (NAICS = 2123); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G2123.S,CAPUTL.G2123.S,88.1819,88.2409,87.1262,88.7406,82.1392,91.1695,89.0074,92.1171,86.1074,86.0879 -"Support activities for mining (NAICS = 213); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G213.S,CAPUTL.G213.S,79.7263,79.2681,78.8028,79.7310,80.0364,81.3343,82.1798,80.5299,80.0324,80.5288 -"Electric power generation, transmission, and distribution (NAICS = 2211); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G2211.S,CAPUTL.G2211.S,72.8372,72.2917,71.9143,70.3358,72.8668,70.3337,68.7119,70.5077,72.0327,73.9266 -"Natural gas distribution (NAICS = 2212); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G2212.S,CAPUTL.G2212.S,78.2838,78.3689,78.2045,73.7538,78.6121,73.1421,68.8723,74.7245,73.0406,74.2847 -"Manufacturing ex. hi-tech and motor vehicles & pts.; s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.X4HTMV.S,CAPUTL.X4HTMV.S,78.4266,78.1953,77.9958,77.7595,76.9566,77.6201,77.5703,77.0941,77.8611,78.0283 -"Final products and nonindustrial supplies--gross value; s.a. GVIP","Currency:_Base_2012","1e+09","USD",G17/GVIP/GVIP.T50030.S,GVIP.T50030.S,3993.5749,3956.5075,3989.9039,3990.5007,3942.2917,3983.9230,3976.7548,3981.8338,4014.6174,4043.5625 -"Final products--gross value; s.a. GVIP","Currency:_Base_2012","1e+09","USD",G17/GVIP/GVIP.T50002.S,GVIP.T50002.S,2977.0142,2942.0934,2978.3999,2981.5060,2940.3476,2967.3285,2961.4564,2974.1197,2991.5829,3014.2088 -"Consumer goods--gross value; s.a. GVIP","Currency:_Base_2012","1e+09","USD",G17/GVIP/GVIP.T51000.S,GVIP.T51000.S,2192.3460,2167.9207,2192.6976,2197.9398,2168.7720,2180.9802,2171.8302,2188.3914,2204.2398,2227.5510 -"Durable consumer goods--gross value; s.a. GVIP","Currency:_Base_2012","1e+09","USD",G17/GVIP/GVIP.T51100.S,GVIP.T51100.S,572.2217,540.6618,575.1099,580.7503,551.6553,574.3983,579.4876,573.7042,574.8704,579.0605 -"Automotive products--gross value; s.a. GVIP","Currency:_Base_2012","1e+09","USD",G17/GVIP/GVIP.T51110.S,GVIP.T51110.S,414.8667,382.6817,418.8295,424.5557,394.0180,414.5127,422.7417,418.6795,420.4739,426.5437 -"Other durable goods--gross value; s.a. GVIP","Currency:_Base_2012","1e+09","USD",G17/GVIP/GVIP.T51120.S,GVIP.T51120.S,158.5963,158.0233,157.7740,157.9036,158.0808,160.8967,158.3646,156.6481,156.1503,154.6935 -"Nondurable consumer goods--gross value; s.a. GVIP","Currency:_Base_2012","1e+09","USD",G17/GVIP/GVIP.T51200.S,GVIP.T51200.S,1622.0248,1626.7421,1619.8096,1619.8480,1617.6958,1609.0328,1595.4935,1616.8987,1631.3156,1650.2799 -"Equipment, total--gross value; s.a. GVIP","Currency:_Base_2012","1e+09","USD",G17/GVIP/GVIP.T52000.S,GVIP.T52000.S,790.0128,779.3283,791.0758,788.6803,776.5206,791.9772,795.6414,791.1769,792.5820,791.4066 -"Business equipment and defense and space equipment--gross value; s.a. GVIP","Currency:_Base_2012","1e+09","USD",G17/GVIP/GVIP.T521A3.S,GVIP.T521A3.S,765.1696,754.6299,767.0522,764.7849,753.1045,768.0911,771.7245,767.9788,769.7522,768.4010 -"Business equipment--gross value; s.a. GVIP","Currency:_Base_2012","1e+09","USD",G17/GVIP/GVIP.T52100.S,GVIP.T52100.S,626.6423,615.8818,627.4258,625.5576,613.5226,628.1761,631.1609,626.0599,627.2776,625.1692 -"Defense and space equipment--gross value; s.a. GVIP","Currency:_Base_2012","1e+09","USD",G17/GVIP/GVIP.T52300.S,GVIP.T52300.S,138.5160,139.1178,139.7452,139.3475,140.1570,140.0483,140.6949,142.4326,143.0326,143.9807 -"Nonindustrial supplies--gross value; s.a. GVIP","Currency:_Base_2012","1e+09","USD",G17/GVIP/GVIP.T54000.S,GVIP.T54000.S,1016.7843,1014.4199,1011.8441,1009.4112,1002.2122,1016.7541,1015.4436,1008.0906,1023.2357,1029.5825 -"Construction supplies--gross value; s.a. GVIP","Currency:_Base_2012","1e+09","USD",G17/GVIP/GVIP.T54100.S,GVIP.T54100.S,279.5960,278.8513,279.1430,277.3935,274.1426,280.3562,280.5292,275.1259,278.7577,278.5442 -"Business supplies--gross value; s.a. GVIP","Currency:_Base_2012","1e+09","USD",G17/GVIP/GVIP.T54200.S,GVIP.T54200.S,737.7903,736.1834,733.1585,732.6449,728.8971,736.8723,735.2996,733.9137,745.5267,752.4291 -"Commercial energy products--gross value; s.a. GVIP","Currency:_Base_2012","1e+09","USD",G17/GVIP/GVIP.T54220.S,GVIP.T54220.S,263.2373,261.8192,261.3401,261.3458,263.0556,264.9510,261.6858,262.9290,270.2698,274.4536 -"Total index; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B50001.S,RIW.B50001.S,100.0000,100.0000,100.0000,100.0000,100.0000,100.0000,100.0000,100.0000,100.0000,100.0000 -"Final products and nonindustrial supplies; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B50030.S,RIW.B50030.S,54.7805,54.8494,54.8635,54.8160,54.9742,54.8418,54.7454,54.7752,54.6297,54.5917 -"Consumer goods; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B51000.S,RIW.B51000.S,27.7745,27.7597,27.8570,27.8693,27.9707,27.7692,27.6540,27.8295,27.7537,27.8508 -"Durable consumer goods; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B51100.S,RIW.B51100.S,6.1649,5.9428,6.1911,6.2560,6.0988,6.2384,6.2779,6.2060,6.1360,6.1241 -"Automotive products; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B51110.S,RIW.B51110.S,3.4186,3.1831,3.4459,3.4978,3.3036,3.4233,3.4928,3.4517,3.4101,3.4403 -"Computers, video and audio equipment; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B51121.S,RIW.B51121.S,0.1463,0.1481,0.1488,0.1479,0.1507,0.1472,0.1492,0.1466,0.1446,0.1395 -"Appliances, furniture, and carpeting; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B51122.S,RIW.B51122.S,0.9096,0.9123,0.9168,0.9086,0.9248,0.9482,0.9000,0.8960,0.8777,0.8687 -"Miscellaneous durable goods; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B51123.S,RIW.B51123.S,1.6904,1.6992,1.6796,1.7017,1.7197,1.7197,1.7359,1.7117,1.7035,1.6757 -"Nondurable consumer goods; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B51200.S,RIW.B51200.S,21.6096,21.8169,21.6659,21.6133,21.8719,21.5308,21.3761,21.6235,21.6178,21.7267 -"Nondurable nonenergy consumer goods; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B51210.S,RIW.B51210.S,16.0461,16.2720,16.1369,16.1538,16.2588,16.1746,16.1852,16.1709,16.2082,16.2118 -"Foods and tobacco; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B51211.S,RIW.B51211.S,9.6544,9.8189,9.7357,9.7589,9.7759,9.7029,9.7199,9.6985,9.6896,9.6750 -"Clothing; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B51212.S,RIW.B51212.S,0.1619,0.1640,0.1583,0.1577,0.1590,0.1557,0.1533,0.1564,0.1546,0.1555 -"Chemical products; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B51213.S,RIW.B51213.S,5.0423,5.0829,5.0654,5.0766,5.1362,5.1319,5.1308,5.1364,5.1983,5.2208 -"Paper products; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B51214.S,RIW.B51214.S,0.7760,0.7895,0.7680,0.7588,0.7848,0.7778,0.7792,0.7794,0.7740,0.7742 -"Consumer energy products; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B51220.S,RIW.B51220.S,5.5635,5.5450,5.5289,5.4595,5.6132,5.3562,5.1909,5.4526,5.4096,5.5149 -"Business equipment; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B52100.S,RIW.B52100.S,8.7545,8.7448,8.8047,8.7796,8.7760,8.8177,8.8432,8.7976,8.7442,8.6469 -"Transit equipment; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B52110.S,RIW.B52110.S,1.7880,1.7161,1.8019,1.8016,1.7420,1.7792,1.8226,1.8070,1.7769,1.7849 -"Information processing and related equipment; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B52120.S,RIW.B52120.S,1.7746,1.8060,1.8030,1.7926,1.8256,1.8061,1.8121,1.8099,1.7989,1.7675 -"Industrial and other equipment; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B52130.S,RIW.B52130.S,5.1919,5.2228,5.1998,5.1854,5.2084,5.2324,5.2085,5.1807,5.1685,5.0945 -"Defense and space equipment; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B52300.S,RIW.B52300.S,1.7746,1.7944,1.7943,1.7921,1.8188,1.7999,1.8094,1.8283,1.8172,1.8139 -"Construction supplies; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B54100.S,RIW.B54100.S,5.1787,5.2030,5.1843,5.1744,5.1569,5.2274,5.2292,5.1504,5.1499,5.1135 -"Business supplies; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B54200.S,RIW.B54200.S,10.6332,10.6826,10.5784,10.5602,10.6150,10.5927,10.5720,10.5527,10.5647,10.5677 -"Materials; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B53000.S,RIW.B53000.S,45.2195,45.1506,45.1365,45.1840,45.0258,45.1582,45.2546,45.2248,45.3703,45.4083 -"Materials ex. energy materials; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.Z53010.S,RIW.Z53010.S,27.5051,27.3357,27.3623,27.3844,27.2124,27.2398,27.3232,27.1783,27.2844,27.2035 -"Durable goods materials; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B53100.S,RIW.B53100.S,16.8732,16.7391,16.8499,16.8595,16.8285,16.7620,16.8495,16.8326,16.8933,16.7642 -"Consumer parts; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B53110.S,RIW.B53110.S,2.9715,2.8694,2.9588,3.0113,2.9627,2.9495,2.9613,2.9564,2.9476,2.9531 -"Equipment parts; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B53120.S,RIW.B53120.S,4.6155,4.6640,4.6647,4.6347,4.6829,4.6145,4.6492,4.6801,4.7158,4.7112 -"Other durable materials; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B53130.S,RIW.B53130.S,9.2862,9.2057,9.2264,9.2135,9.1829,9.1980,9.2390,9.1960,9.2300,9.0999 -"Nondurable goods materials; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B53200.S,RIW.B53200.S,10.6319,10.5966,10.5124,10.5249,10.3838,10.4778,10.4737,10.3457,10.3910,10.4394 -"Textile materials; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B53210.S,RIW.B53210.S,0.2963,0.2987,0.2894,0.2854,0.2893,0.2901,0.2978,0.2951,0.3000,0.3034 -"Paper materials; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B53220.S,RIW.B53220.S,1.4897,1.4739,1.4859,1.4754,1.4913,1.5052,1.5028,1.4993,1.4882,1.5082 -"Chemical materials; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B53230.S,RIW.B53230.S,5.5247,5.4685,5.4133,5.4290,5.2520,5.3379,5.3532,5.2643,5.3529,5.3815 -"Energy materials; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B53300.S,RIW.B53300.S,17.7144,17.8149,17.7742,17.7996,17.8135,17.9184,17.9314,18.0465,18.0860,18.2047 -"Manufacturing (SIC); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B00004.S,RIW.B00004.S,75.3325,75.2247,75.2678,75.3076,75.0948,75.1303,75.3463,74.8702,74.9007,74.6525 -"Manufacturing (NAICS); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.GMF.S,RIW.GMF.S,73.7351,73.5998,73.7093,73.7811,73.5123,73.5576,73.7730,73.2949,73.3278,73.0765 -"Durable manufacturing (NAICS); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.GMFD.S,RIW.GMFD.S,37.4777,37.1945,37.5888,37.5185,37.4594,37.5482,37.6582,37.4629,37.3777,37.1160 -"Wood product (NAICS = 321); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G321.S,RIW.G321.S,1.6446,1.6169,1.6533,1.6051,1.6035,1.5951,1.6104,1.5853,1.6026,1.5966 -"Nonmetallic mineral product (NAICS = 327); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G327.S,RIW.G327.S,2.3344,2.3669,2.3240,2.3382,2.2916,2.2920,2.2602,2.2574,2.2274,2.2432 -"Primary metal (NAICS = 331); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G331.S,RIW.G331.S,2.7678,2.7013,2.7250,2.7275,2.6936,2.6678,2.6818,2.6274,2.6930,2.6465 -"Fabricated metal product (NAICS = 332); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G332.S,RIW.G332.S,6.0868,6.1275,6.0993,6.0826,6.1997,6.1683,6.1520,6.1075,6.1156,5.9996 -"Machinery (NAICS = 333); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G333.S,RIW.G333.S,5.6236,5.6060,5.6442,5.6038,5.6318,5.6896,5.6223,5.6003,5.6017,5.5329 -"Computer and electronic product (NAICS = 334); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G334.S,RIW.G334.S,4.4212,4.5105,4.5025,4.4888,4.5670,4.5051,4.5211,4.5266,4.5274,4.4653 -"Electrical equipment, appliance, and component (NAICS = 335); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G335.S,RIW.G335.S,2.0930,2.1415,2.1290,2.1316,2.1508,2.1108,2.1457,2.1161,2.1204,2.1394 -"Motor vehicles and parts (NAICS = 3361-3); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3361T3.S,RIW.G3361T3.S,5.5959,5.1765,5.6081,5.6896,5.4078,5.6508,5.7795,5.7341,5.6771,5.7227 -"Aerospace and miscellaneous transportation eq. (NAICS = 3364-9); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3364T9.S,RIW.G3364T9.S,3.2067,3.2302,3.2303,3.1992,3.2443,3.1758,3.1960,3.2425,3.2313,3.2447 -"Furniture and related product (NAICS = 337); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G337.S,RIW.G337.S,0.9982,0.9893,0.9778,0.9700,0.9703,0.9718,0.9638,0.9732,0.9443,0.9514 -"Miscellaneous (NAICS = 339); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G339.S,RIW.G339.S,2.7054,2.7279,2.6951,2.6822,2.6991,2.7210,2.7254,2.6925,2.6368,2.5739 -"Nondurable manufacturing (NAICS); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.GMFN.S,RIW.GMFN.S,36.2574,36.4054,36.1205,36.2625,36.0530,36.0094,36.1149,35.8320,35.9501,35.9605 -"Food, beverage, and tobacco (NAICS = 311,2); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G311A2.S,RIW.G311A2.S,12.0745,12.2658,12.1548,12.1905,12.1951,12.1075,12.1131,12.0635,12.0566,12.0332 -"Textiles and products (NAICS = 313,4); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G313A4.S,RIW.G313A4.S,0.5348,0.5354,0.5185,0.5119,0.5172,0.5195,0.5197,0.5154,0.5228,0.5265 -"Apparel and leather goods (NAICS = 315,6); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G315A6.S,RIW.G315A6.S,0.1814,0.1846,0.1775,0.1772,0.1789,0.1754,0.1732,0.1760,0.1744,0.1760 -"Paper (NAICS = 322); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G322.S,RIW.G322.S,2.2332,2.2305,2.2322,2.2188,2.2295,2.2348,2.2246,2.2182,2.2029,2.2156 -"Printing and related support activities (NAICS = 323); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G323.S,RIW.G323.S,1.2681,1.2670,1.2706,1.2720,1.3061,1.3135,1.3311,1.3477,1.3323,1.3603 -"Petroleum and coal products (NAICS = 324); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G324.S,RIW.G324.S,4.0058,4.0375,4.0216,4.0470,3.9813,3.9617,4.0295,3.8504,3.9325,3.9188 -"Chemical (NAICS = 325); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G325.S,RIW.G325.S,12.1601,12.1100,11.9994,12.0708,11.8864,11.9686,11.9831,11.9194,12.0261,12.0705 -"Plastics and rubber products (NAICS = 326); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G326.S,RIW.G326.S,3.7995,3.7747,3.7460,3.7742,3.7585,3.7284,3.7405,3.7413,3.7026,3.6596 -"Other manufacturing; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.GMFO.S,RIW.GMFO.S,1.5974,1.6249,1.5585,1.5265,1.5825,1.5727,1.5732,1.5753,1.5729,1.5760 -"Mining (NAICS = 21); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G21.S,RIW.G21.S,13.6134,13.6895,13.7091,13.9107,13.5432,14.0472,14.0815,14.1864,14.0474,14.0683 -"Electric and gas utilities (NAICS = 2211,2); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G2211A2.S,RIW.G2211A2.S,11.0541,11.0858,11.0231,10.7817,11.3620,10.8225,10.5722,10.9435,11.0519,11.2792 -"Electric power generation, transmission, and distribution (NAICS = 2211); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G2211.S,RIW.G2211.S,9.6162,9.6445,9.5981,9.4433,9.9280,9.5110,9.3424,9.6178,9.7753,9.9962 -"Natural gas distribution (NAICS = 2212); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G2212.S,RIW.G2212.S,1.4379,1.4413,1.4250,1.3384,1.4339,1.3116,1.2298,1.3257,1.2766,1.2830 -"Energy, total; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B50089.S,RIW.B50089.S,26.6975,26.7851,26.6974,26.6368,26.8522,26.6671,26.4661,26.8425,26.8534,27.0928 -"Commercial energy products; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B54220.S,RIW.B54220.S,2.8173,2.8214,2.8109,2.8003,2.8470,2.8240,2.7702,2.7912,2.8227,2.8392 -"Drilling oil and gas wells (NAICS = 213111); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N213111.S,RIW.N213111.S,0.6023,0.6039,0.5833,0.5774,0.5786,0.5685,0.5736,0.5522,0.5352,0.5340 -"Converted fuel; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B53320.S,RIW.B53320.S,5.2467,5.2176,5.2515,5.1716,5.4433,5.1463,5.1321,5.1588,5.2654,5.3149 -"Primary energy; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B53310.S,RIW.B53310.S,12.4677,12.5973,12.5226,12.6280,12.3702,12.7722,12.7993,12.8877,12.8205,12.8898 -"Non-energy, total; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.X5001E.S,RIW.X5001E.S,73.3025,73.2149,73.3026,73.3632,73.1478,73.3329,73.5339,73.1575,73.1466,72.9072 -"Computers, communications eq., and semiconductors (NAICS = 3341,3342,3344); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.HITEK2.S,RIW.HITEK2.S,1.9319,1.9721,1.9688,1.9716,1.9897,1.9537,1.9620,1.9722,1.9869,1.9665 -"Computer and peripheral equipment (NAICS = 3341); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3341.S,RIW.G3341.S,0.2393,0.2372,0.2367,0.2334,0.2320,0.2286,0.2334,0.2303,0.2294,0.2210 -"Communications equipment (NAICS = 3342); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3342.S,RIW.G3342.S,0.4232,0.4321,0.4352,0.4384,0.4433,0.4375,0.4377,0.4361,0.4304,0.4246 -"Non-energy ex. computers, communications eq., and semiconductors; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.X5EHTK.S,RIW.X5EHTK.S,71.3706,71.2428,71.3338,71.3917,71.1581,71.3792,71.5718,71.1853,71.1597,70.9408 -"Motor vehicle (NAICS = 3361); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3361.S,RIW.G3361.S,2.6779,2.3657,2.7174,2.7739,2.5709,2.7494,2.8382,2.7900,2.7503,2.7986 -"Motor vehicle parts (NAICS = 3363); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3363.S,RIW.G3363.S,2.3467,2.2528,2.3381,2.3550,2.3247,2.3745,2.4010,2.4008,2.3867,2.3968 -"Non-energy ex. motor vehicles & pts., computers, communications eq., and semiconductors; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.X50EHV.S,RIW.X50EHV.S,65.7747,66.0662,65.7258,65.7021,65.7503,65.7284,65.7923,65.4512,65.4826,65.2181 -"Consumer goods ex. hi-tech, motor vehicles & pts., and energy; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.X51HVE.S,RIW.X51HVE.S,19.2506,19.4858,19.3340,19.3697,19.4907,19.4308,19.4197,19.3575,19.3596,19.3307 -"Business equipment ex. hi-tech and motor vehicles and parts; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.X52HTV.S,RIW.X52HTV.S,7.4404,7.5160,7.4944,7.4489,7.5129,7.4922,7.4718,7.4526,7.4204,7.3219 -"Construction supplies ex. hi-tech; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.X5410H.S,RIW.X5410H.S,5.1684,5.1924,5.1736,5.1637,5.1460,5.2167,5.2185,5.1397,5.1393,5.1031 -"Business supplies ex. energy, motor vehicles & parts, and selected high-tech industries; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.X5421T.S,RIW.X5421T.S,7.4305,7.4669,7.3745,7.3648,7.3678,7.3767,7.4078,7.3640,7.3384,7.3273 -"Materials ex. energy, motor vehicles & pts., computers, communications eq., and semiconductors; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.X53EHV.S,RIW.X53EHV.S,24.6933,24.5964,24.5406,24.5474,24.4039,24.3933,24.4485,24.2920,24.3897,24.3025 -"Total ex. computers, communications eq., and semiconductors; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.X50HTK.S,RIW.X50HTK.S,98.0681,98.0279,98.0312,98.0284,98.0103,98.0463,98.0380,98.0278,98.0131,98.0335 -"Manufacturing ex. computers, communications eq., and semiconductors; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.X4HTK2.S,RIW.X4HTK2.S,73.4005,73.2526,73.2990,73.3361,73.1051,73.1766,73.3842,72.8980,72.9138,72.6861 -"Durable mfg. ex. computers, communications eq., and semiconductors; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.X5HTK2.S,RIW.X5HTK2.S,35.6875,35.3648,35.7616,35.6830,35.6006,35.7333,35.8327,35.6255,35.5247,35.2866 -"Total ex. motor vehicles and parts; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.X50001.S,RIW.X50001.S,94.4041,94.8235,94.3919,94.3104,94.5922,94.3492,94.2205,94.2659,94.3229,94.2773 -"Manufacturing ex. motor vehicles and parts; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.XXX001.S,RIW.XXX001.S,69.7366,70.0482,69.6597,69.6180,69.6870,69.4794,69.5667,69.1361,69.2236,68.9299 -"Durable manufacturing ex. motor vehicles & parts; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.X005MV.S,RIW.X005MV.S,32.0236,32.1604,32.1223,31.9650,32.1825,32.0362,32.0152,31.8636,31.8346,31.5303 -"Total ex. selected high-tech. and motor vehicles & pts.; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.X5VHT2.S,RIW.X5VHT2.S,92.4722,92.8514,92.4232,92.3389,92.6024,92.3955,92.2584,92.2937,92.3360,92.3109 -"Manufacturing ex. hi-tech and motor vehicles & pts.; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.X4HTMV.S,RIW.X4HTMV.S,67.8047,68.0761,67.6910,67.6465,67.6972,67.5258,67.6047,67.1639,67.2367,66.9634 -"Non-energy materials for finished goods producers; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B53810.S,RIW.B53810.S,9.3730,9.3060,9.3988,9.4068,9.4262,9.3592,9.4110,9.4309,9.4515,9.4759 -"Non-energy materials for intermediate goods producers; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B53820.S,RIW.B53820.S,18.1321,18.0297,17.9635,17.9776,17.7861,17.8806,17.9121,17.7474,17.8328,17.7276 -"Oil and gas extraction (NAICS = 211); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G211.S,RIW.G211.S,9.4316,9.5325,9.5917,9.7023,9.4813,9.8678,9.9058,10.1084,10.0904,10.1559 -"Crude oil (NAICS = 21112); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G21112.S,RIW.G21112.S,7.7995,7.8478,7.8576,7.9094,7.6896,7.9608,7.9754,8.1268,8.0796,8.0954 -"Natural gas and natural gas liquids (NAICS = 21113); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G21113.S,RIW.G21113.S,1.6321,1.6847,1.7341,1.7929,1.7918,1.9070,1.9304,1.9816,2.0107,2.0605 -"Natural gas (NAICS = 211130pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N21113G.S,RIW.N21113G.S,0.8075,0.8429,0.8818,0.9208,0.9477,0.9960,1.0018,1.0262,1.0441, -"Natural gas liquid extraction (NAICS = 211130pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G21113PQ.S,RIW.G21113PQ.S,0.8246,0.8418,0.8524,0.8721,0.8441,0.9110,0.9286,0.9554,0.9666,0.9633 -"Mining (except oil and gas) (NAICS = 212); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G212.S,RIW.G212.S,2.1205,2.1156,2.1167,2.2021,2.0487,2.1797,2.1756,2.1424,2.0737,2.0524 -"Coal mining (NAICS = 2121); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N2121.S,RIW.N2121.S,0.5595,0.5373,0.5516,0.5750,0.4999,0.5349,0.5145,0.4601,0.4448, -"Metal ore mining (NAICS = 2122); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G2122.S,RIW.G2122.S,0.6360,0.6447,0.6447,0.6861,0.6670,0.6759,0.7126,0.7001,0.7181,0.7136 -"Iron ore mining (NAICS = 21221); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N21221.S,RIW.N21221.S,0.0571,0.0584,0.0582,0.0584,0.0554,0.0559,0.0566,0.0583,, -"Gold ore and silver ore mining (NAICS = 21222); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G21222.S,RIW.G21222.S,0.1978,0.1973,0.2017,0.2142,0.1959,0.2001,0.2100,0.1955,0.2041,0.2019 -"Copper, nickel, lead, and zinc mining (NAICS = 21223); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G21223.S,RIW.G21223.S,0.2501,0.2617,0.2598,0.2777,0.2944,0.3028,0.3153,0.3197,0.3399,0.3405 -"Nonmetallic mineral mining and quarrying (NAICS = 2123); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G2123.S,RIW.G2123.S,0.9249,0.9337,0.9204,0.9410,0.8818,0.9689,0.9485,0.9822,0.9108,0.9044 -"Support activities for mining (NAICS = 213); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G213.S,RIW.G213.S,2.0613,2.0413,2.0007,2.0063,2.0132,1.9997,2.0001,1.9356,1.8834,1.8600 -"Electric power generation (NAICS = 22111); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G22111.S,RIW.G22111.S,4.6561,4.6990,4.6403,4.5563,4.8128,4.5045,4.5460,4.6031,4.7510,4.8321 -"Hydroelectric, renewables, and other (NAICS = 221111,4-8); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G221111A4T8.S,RIW.G221111A4T8.S,0.6101,0.6664,0.5975,0.5969,0.5878,0.6116,0.6584,0.6273,0.6332,0.6405 -"Hydroelectric power generation (NAICS = 221111); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N221111.S,RIW.N221111.S,0.2719,0.3084,0.2714,0.2615,0.2631,0.2676,0.2973,0.2438,, -"Renewables and other electric power generation (NAICS = 221114-8); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N221114T8.S,RIW.N221114T8.S,0.3383,0.3580,0.3261,0.3353,0.3247,0.3440,0.3611,0.3835,, -"Fossil Fuel electric power generation (NAICS = 221112); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N221112.S,RIW.N221112.S,2.6171,2.5737,2.6296,2.5579,2.8304,2.4618,2.4725,2.5367,, -"Nuclear electric power generation (NAICS = 221113); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N221113.S,RIW.N221113.S,1.4289,1.4589,1.4132,1.4015,1.3946,1.4311,1.4151,1.4391,, -"Electric power transmission, control, and distribution (NAICS = 22112); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G22112.S,RIW.G22112.S,4.9601,4.9455,4.9578,4.8870,5.1152,5.0064,4.7964,5.0146,5.0243,5.1641 -"Commercial and other electricity sales (NAICS = 22112pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N22112C.S,RIW.N22112C.S,1.8873,1.8944,1.9049,1.9047,1.9584,1.9436,1.8966,1.9354,, -"Industrial electricity sales (NAICS = 22112pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N22112M.S,RIW.N22112M.S,0.8347,0.8446,0.8317,0.8252,0.8330,0.8349,0.8238,0.8117,, -"Residential electricity sales (NAICS = 22112pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N22112R.S,RIW.N22112R.S,2.2381,2.2065,2.2212,2.1571,2.3238,2.2279,2.0760,2.2675,, -"Commercial and other gas sales (NAICS = 2212pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N2212C.S,RIW.N2212C.S,0.2548,0.2656,0.2570,0.2339,0.2488,0.2310,0.2215,0.2364,, -"Industrial gas sales (NAICS = 2212pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N2212M.S,RIW.N2212M.S,0.0832,0.0818,0.0818,0.0813,0.0829,0.0805,0.0799,0.0777,, -"Residential gas sales (NAICS = 2212pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N2212R.S,RIW.N2212R.S,0.7059,0.7056,0.7056,0.6686,0.7083,0.6372,0.5811,0.6436,, -"Gas transmission (NAICS = 2212pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N2212T.S,RIW.N2212T.S,0.3941,0.3883,0.3806,0.3546,0.3939,0.3629,0.3473,0.3680,, -"Food (NAICS = 311); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G311.S,RIW.G311.S,9.3272,9.4398,9.3848,9.4026,9.4265,9.3655,9.3178,9.3340,9.3074,9.2174 -"Animal food (NAICS = 3111); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3111.S,RIW.G3111.S,0.6922,0.6956,0.6984,0.6918,0.6769,0.6701,0.6653,0.6461,0.6582,0.6536 -"Grain and oilseed milling (NAICS = 3112); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3112.S,RIW.G3112.S,0.6599,0.6745,0.6612,0.6628,0.6710,0.6610,0.6588,0.6311,0.6396,0.6423 -"Sugar and confectionery product (NAICS = 3113); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3113.S,RIW.G3113.S,0.4414,0.4510,0.4457,0.4589,0.4627,0.4791,0.5087,0.5171,0.5122,0.5025 -"Fruit and vegetable preserving and specialty food (NAICS = 3114); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3114.S,RIW.G3114.S,1.0090,1.0189,1.0302,1.0314,1.0323,1.0148,1.0098,1.0137,1.0103,0.9769 -"Dairy product (NAICS = 3115); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3115.S,RIW.G3115.S,1.0941,1.1153,1.0895,1.1038,1.0980,1.0950,1.1114,1.1110,1.0964,1.0967 -"Dairy product (except frozen) (NAICS = 31151); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G31151.S,RIW.G31151.S,0.9667,0.9878,0.9696,0.9817,0.9826,0.9734,0.9811,0.9884,0.9716,0.9722 -"Fluid milk (NAICS = 311511); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N311511.S,RIW.N311511.S,0.3745,0.3744,0.3730,0.3740,0.3764,0.3724,0.3734,0.3720,0.3683, -"Creamery butter (NAICS = 311512); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N311512.S,RIW.N311512.S,0.0320,0.0324,0.0325,0.0362,0.0356,0.0358,0.0390,0.0402,0.0390, -"Cheese (NAICS = 311513); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N311513.S,RIW.N311513.S,0.4168,0.4237,0.4183,0.4156,0.4180,0.4151,0.4107,0.4200,0.4120, -"Dry, condensed, and evaporated dairy product (NAICS = 311514); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N311514.S,RIW.N311514.S,0.1434,0.1574,0.1458,0.1559,0.1527,0.1502,0.1580,0.1562,0.1524, -"Ice cream and frozen dessert (NAICS = 31152); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N31152.S,RIW.N31152.S,0.1273,0.1275,0.1199,0.1221,0.1154,0.1217,0.1303,0.1226,0.1248, -"Animal slaughtering and processing (NAICS = 3116); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3116.S,RIW.G3116.S,2.2080,2.2541,2.2430,2.3067,2.2751,2.3054,2.2351,2.3017,2.2917,2.2856 -"Animal (except poultry) slaughtering and meat processing (NAICS = 311611-3); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G311611T3.S,RIW.G311611T3.S,1.5164,1.5531,1.5417,1.5987,1.5647,1.5902,1.5208,1.5648,1.5726,1.5553 -"Beef (NAICS = 311611-3pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N311611T3B.S,RIW.N311611T3B.S,0.9358,0.9633,0.9547,0.9969,0.9634,0.9789,0.9390,0.9810,0.9876, -"Pork (NAICS = 311611-3pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N311611T3P.S,RIW.N311611T3P.S,0.5664,0.5754,0.5729,0.5878,0.5878,0.5974,0.5678,0.5710,0.5716, -"Miscellaneous meats (NAICS = 311611-3pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N311611T3Z.S,RIW.N311611T3Z.S,0.0142,0.0143,0.0141,0.0140,0.0135,0.0139,0.0141,0.0128,0.0134, -"Poultry processing (NAICS = 311615); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N311615.S,RIW.N311615.S,0.6916,0.7011,0.7014,0.7081,0.7104,0.7152,0.7143,0.7369,0.7191, -"Bakeries and tortilla (NAICS = 3118); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N3118.S,RIW.N3118.S,1.2680,1.2791,1.2569,1.2375,1.2840,1.2479,1.2682,1.2811,1.2781,1.2622 -"Other food (NAICS = 3119); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3119.S,RIW.G3119.S,1.8660,1.8638,1.8686,1.8166,1.8360,1.8067,1.7808,1.7605,1.7444,1.7286 -"Coffee and tea (NAICS = 31192); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G31192.S,RIW.G31192.S,0.1349,0.1337,0.1342,0.1304,0.1311,0.1285,0.1271,0.1257,0.1255,0.1237 -"Beverage and tobacco product (NAICS = 312); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G312.S,RIW.G312.S,2.7474,2.8260,2.7699,2.7879,2.7686,2.7421,2.7954,2.7295,2.7492,2.8159 -"Beverage (NAICS = 3121); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3121.S,RIW.G3121.S,1.6963,1.6843,1.6739,1.7148,1.7275,1.7188,1.6963,1.6410,1.6697,1.7063 -"Soft drink and ice (NAICS = 31211); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N31211.S,RIW.N31211.S,0.5500,0.5709,0.5552,0.5587,0.5863,0.5617,0.5591,0.5520,0.5572,0.5718 -"Breweries (NAICS = 31212); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N31212.S,RIW.N31212.S,0.4492,0.4174,0.4430,0.4411,0.4559,0.4595,0.4356,0.4139,, -"Tobacco (NAICS = 3122); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3122.S,RIW.G3122.S,1.0510,1.1417,1.0960,1.0731,1.0411,1.0233,1.0990,1.0885,1.0795,1.1095 -"Textile mills (NAICS = 313); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G313.S,RIW.G313.S,0.2661,0.2695,0.2616,0.2580,0.2619,0.2618,0.2718,0.2691,0.2731,0.2763 -"Fiber, yarn, and thread mills (NAICS = 3131); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3131.S,RIW.G3131.S,0.0411,0.0420,0.0414,0.0414,0.0427,0.0430,0.0446,0.0444,0.0451,0.0460 -"Fabric mills (NAICS = 3132); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3132.S,RIW.G3132.S,0.1475,0.1484,0.1440,0.1411,0.1420,0.1413,0.1473,0.1446,0.1457,0.1466 -"Textile and fabric finishing and fabric coating mills (NAICS = 3133); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3133.S,RIW.G3133.S,0.0775,0.0790,0.0762,0.0756,0.0772,0.0774,0.0799,0.0801,0.0823,0.0838 -"Textile product mills (NAICS = 314); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G314.S,RIW.G314.S,0.2686,0.2659,0.2568,0.2539,0.2553,0.2577,0.2478,0.2463,0.2497,0.2502 -"Textile furnishings mills (NAICS = 3141); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3141.S,RIW.G3141.S,0.1211,0.1217,0.1191,0.1183,0.1194,0.1185,0.1162,0.1149,0.1143,0.1134 -"Carpet and rug mills (NAICS = 31411); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G31411.S,RIW.G31411.S,0.0749,0.0750,0.0743,0.0741,0.0746,0.0734,0.0732,0.0727,0.0716,0.0707 -"Other textile product mills (NAICS = 3149); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3149.S,RIW.G3149.S,0.1475,0.1442,0.1377,0.1356,0.1359,0.1393,0.1316,0.1314,0.1353,0.1368 -"Apparel (NAICS = 315); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G315.S,RIW.G315.S,0.1108,0.1099,0.1076,0.1057,0.1060,0.1035,0.1009,0.1055,0.1039,0.1032 -"Leather and allied product (NAICS = 316); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G316.S,RIW.G316.S,0.0706,0.0747,0.0699,0.0716,0.0729,0.0719,0.0724,0.0705,0.0705,0.0728 -"Sawmills and wood preservation (NAICS = 3211); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N3211.S,RIW.N3211.S,0.5103,0.4753,0.5038,0.4666,0.4601,0.4446,0.4641,,, -"Plywood and misc. wood products (NAICS = 3212,9); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3212A9.S,RIW.G3212A9.S,1.1343,1.1416,1.1495,1.1385,1.1434,1.1505,1.1463,1.1337,1.1285,1.1422 -"Veneer, plywood, and engineered wood product (NAICS = 3212); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3212.S,RIW.G3212.S,0.3344,0.3391,0.3433,0.3418,0.3392,0.3394,0.3464,0.3495,0.3411,0.3480 -"Veneer and plywood (NAICS = 321211,2); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G321211A2.S,RIW.G321211A2.S,0.0901,0.0912,0.0911,0.0907,0.0906,0.0888,0.0886,0.0885,0.0876,0.0868 -"Reconstituted wood product (NAICS = 321219); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G321219.S,RIW.G321219.S,0.1025,0.1063,0.1064,0.1108,0.1092,0.1151,0.1166,0.1197,0.1149,0.1187 -"Other wood product (NAICS = 3219); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3219.S,RIW.G3219.S,0.7998,0.8025,0.8062,0.7966,0.8042,0.8112,0.7999,0.7842,0.7873,0.7942 -"Millwork (NAICS = 32191); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G32191.S,RIW.G32191.S,0.4248,0.4246,0.4303,0.4178,0.4273,0.4248,0.4101,0.4040,0.4094,0.4157 -"Wood container and pallet (NAICS = 32192); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N32192.S,RIW.N32192.S,0.1416,0.1436,0.1442,0.1433,0.1407,0.1476,0.1512,0.1428,0.1439,0.1444 -"All other wood product (NAICS = 32199); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G32199.S,RIW.G32199.S,0.2334,0.2343,0.2317,0.2356,0.2362,0.2388,0.2386,0.2373,0.2340,0.2342 -"Manufactured home (mobile home) (NAICS = 321991); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N321991.S,RIW.N321991.S,0.0627,0.0610,0.0615,0.0630,0.0583,0.0663,0.0640,0.0645,0.0648, -"Pulp, paper, and paperboard mills (NAICS = 3221); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3221.S,RIW.G3221.S,1.0015,0.9884,1.0008,0.9910,0.9993,1.0076,1.0014,0.9963,0.9900,1.0018 -"Pulp mills (NAICS = 32211); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N32211.S,RIW.N32211.S,0.0890,0.0875,0.0901,0.0897,0.0865,0.0892,0.0898,0.0877,0.0886, -"Paper mills (NAICS = 32212); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G32212.S,RIW.G32212.S,0.4512,0.4585,0.4571,0.4503,0.4628,0.4678,0.4613,0.4547,0.4521,0.4603 -"Paper (except newsprint) mills (NAICS = 322121); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N322121.S,RIW.N322121.S,0.4485,0.4560,0.4544,0.4478,0.4604,0.4652,0.4588,,, -"Paperboard mills (NAICS = 32213); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N32213.S,RIW.N32213.S,0.4613,0.4424,0.4535,0.4511,0.4501,0.4506,0.4503,,, -"Converted paper product (NAICS = 3222); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3222.S,RIW.G3222.S,1.2317,1.2421,1.2314,1.2278,1.2302,1.2271,1.2233,1.2219,1.2128,1.2138 -"Paperboard container (NAICS = 32221); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N32221.S,RIW.N32221.S,0.6357,0.6461,0.6392,0.6367,0.6361,0.6246,0.6202,,, -"Paper bag and coated and treated paper (NAICS = 32222); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G32222.S,RIW.G32222.S,0.2087,0.1993,0.2016,0.1992,0.2002,0.2061,0.2076,0.2047,0.2037,0.2080 -"Other converted paper products (NAICS = 32223,9); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G32223A9.S,RIW.G32223A9.S,0.3873,0.3966,0.3906,0.3918,0.3939,0.3965,0.3954,0.3962,0.3929,0.3951 -"Petroleum refineries (NAICS = 32411); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G32411.S,RIW.G32411.S,3.3920,3.4057,3.3586,3.3996,3.3469,3.2883,3.3356,3.2515,3.2645,3.2564 -"Aviation fuel and kerosene (NAICS = 32411pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N32411A.S,RIW.N32411A.S,0.3915,0.3807,0.3734,0.3764,0.3684,0.3601,0.3810,0.3575,, -"Distillate fuel oil (NAICS = 32411pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N32411D.S,RIW.N32411D.S,0.8559,0.8690,0.8534,0.8807,0.8325,0.7698,0.8338,0.8296,, -"Automotive gasoline (NAICS = 32411pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N32411G.S,RIW.N32411G.S,1.6304,1.6281,1.6106,1.6125,1.6091,1.5743,1.5524,1.5618,, -"Residual fuel oil (NAICS = 32411pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N32411R.S,RIW.N32411R.S,0.1341,0.1488,0.1518,0.1605,0.1583,0.1979,0.1892,0.1448,, -"Other refinery output (NAICS = 32411pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G32411X.S,RIW.G32411X.S,0.3802,0.3790,0.3695,0.3695,0.3786,0.3861,0.3791,0.3577,0.3681,0.3655 -"Paving, roofing, and other petroleum and coal products (NAICS = 32412,9); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N32412A9.S,RIW.N32412A9.S,0.6138,0.6318,0.6629,0.6474,0.6344,0.6734,0.6940,0.5989,0.6680,0.6624 -"Basic chemical (NAICS = 3251); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3251.S,RIW.G3251.S,3.1418,3.0526,3.0075,3.0268,2.8892,2.8793,2.8943,2.8286,2.8545,2.8677 -"Organic chemicals (NAICS = 32511,9); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G32511A9.S,RIW.G32511A9.S,2.1034,2.0124,1.9913,2.0164,1.8415,1.8828,1.8900,1.8182,1.8549,1.8726 -"Basic inorganic chemicals (NAICS = 32512-8); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G32512T8.S,RIW.G32512T8.S,1.0384,1.0402,1.0162,1.0105,1.0477,0.9965,1.0043,1.0104,0.9996,0.9950 -"Industrial gas (NAICS = 32512); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G32512.S,RIW.G32512.S,0.3105,0.3138,0.3086,0.3086,0.3245,0.3089,0.3129,0.3172,0.3156,0.3164 -"Synthetic dye and pigment (NAICS = 32513); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G32513.S,RIW.G32513.S,0.0867,0.0872,0.0854,0.0845,0.0878,0.0829,0.0836,0.0834,0.0829,0.0823 -"Other basic inorganic chemical (NAICS = 32518pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G32518.S,RIW.G32518.S,0.6413,0.6393,0.6221,0.6174,0.6354,0.6046,0.6079,0.6098,0.6011,0.5964 -"Alkalies and chlorine (NAICS = 32518pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N32518C.S,RIW.N32518C.S,0.1075,0.1019,0.0959,0.0949,0.0966,0.0955,0.0949,,, -"Resin, synthetic rubber, and artificial and synthetic fibers and filaments (NAICS = 3252); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3252.S,RIW.G3252.S,0.9807,0.9884,0.9922,0.9948,0.9437,1.0031,0.9876,0.9626,0.9780,0.9826 -"Resin and synthetic rubber (NAICS = 32521); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G32521.S,RIW.G32521.S,0.9182,0.9254,0.9282,0.9299,0.8791,0.9379,0.9206,0.8988,0.9141,0.9187 -"Plastics material and resin (NAICS = 325211); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N325211.S,RIW.N325211.S,0.8546,0.8612,0.8630,0.8644,0.8137,0.8724,0.8536,0.8353,0.8499, -"Synthetic rubber (NAICS = 325212); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G325212.S,RIW.G325212.S,0.0636,0.0642,0.0652,0.0656,0.0654,0.0655,0.0670,0.0634,0.0642,0.0642 -"Artificial and synthetic fibers and filaments (NAICS = 32522); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G32522.S,RIW.G32522.S,0.0625,0.0630,0.0639,0.0649,0.0646,0.0651,0.0670,0.0638,0.0639,0.0640 -"Pesticide, fertilizer, and other agricultural chemical (NAICS = 3253); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3253.S,RIW.G3253.S,0.6021,0.6143,0.5942,0.6330,0.5614,0.5850,0.6164,0.6043,0.6097,0.6169 -"Pharmaceutical and medicine (NAICS = 3254); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3254.S,RIW.G3254.S,4.8537,4.8871,4.8335,4.8575,4.8865,4.8714,4.8652,4.8925,4.9313,4.9568 -"Chemicals except pharmaceuticals and medicines (NAICS = 3251-3,5-9); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G325@4.S,RIW.G325@4.S,7.3064,7.2229,7.1659,7.2133,6.9999,7.0972,7.1179,7.0269,7.0948,7.1136 -"Paints, soaps and toiletries, and other chemical products (NAICS = 3255-9); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3255T9.S,RIW.G3255T9.S,2.5818,2.5676,2.5720,2.5586,2.6056,2.6299,2.6195,2.6313,2.6525,2.6465 -"Paints and other chemical products (NAICS = 3255,9); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3255A9.S,RIW.G3255A9.S,1.2554,1.2286,1.2331,1.2583,1.2553,1.2676,1.2608,1.2574,1.2496,1.2447 -"Paint, coating, and adhesive (NAICS = 3255); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3255.S,RIW.G3255.S,0.6951,0.6757,0.6922,0.7039,0.7197,0.7032,0.7045,0.6885,0.6909,0.6787 -"Paint and coating (NAICS = 32551); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G32551.S,RIW.G32551.S,0.4368,0.4269,0.4334,0.4419,0.4524,0.4425,0.4427,0.4330,0.4340,0.4269 -"Soap, cleaning compound, and toilet preparation (NAICS = 3256); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3256.S,RIW.G3256.S,1.3263,1.3390,1.3389,1.3003,1.3503,1.3623,1.3587,1.3739,1.4030,1.4018 -"Plastics product (NAICS = 3261); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3261.S,RIW.G3261.S,3.0313,3.0092,2.9830,3.0086,3.0042,2.9809,2.9901,3.0266,3.0113,2.9557 -"Rubber product (NAICS = 3262); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3262.S,RIW.G3262.S,0.7682,0.7654,0.7630,0.7656,0.7542,0.7474,0.7504,0.7146,0.6912,0.7040 -"Tire (NAICS = 32621); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G32621.S,RIW.G32621.S,0.3224,0.3126,0.3101,0.3223,0.3013,0.3132,0.3217,0.2995,0.2829,0.2885 -"Rubber products ex. tires (NAICS = 32622,9); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G32622A9.S,RIW.G32622A9.S,0.4458,0.4529,0.4529,0.4433,0.4529,0.4342,0.4287,0.4151,0.4083,0.4154 -"Clay, lime, gypsum, and misc. nonmetallic mineral products (NAICS = 3271,4,9); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3271A4A9.S,RIW.G3271A4A9.S,0.8769,0.8694,0.8634,0.8737,0.8857,0.8733,0.8697,0.8837,0.8787,0.8875 -"Clay and misc. nonmetallic mineral products (NAICS = 3271,9); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3271A9.S,RIW.G3271A9.S,0.7316,0.7229,0.7162,0.7251,0.7354,0.7251,0.7213,0.7332,0.7284,0.7357 -"Clay product and refractory (NAICS = 3271); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3271.S,RIW.G3271.S,0.1475,0.1482,0.1458,0.1417,0.1399,0.1401,0.1397,0.1415,0.1383,0.1343 -"Pottery, ceramics, and plumbing fixture (NAICS = 32711); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G32711.S,RIW.G32711.S,0.0526,0.0527,0.0516,0.0499,0.0490,0.0486,0.0487,0.0485,0.0482,0.0465 -"Clay building material and refractories (NAICS = 32712); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G32712.S,RIW.G32712.S,0.0949,0.0956,0.0942,0.0918,0.0909,0.0916,0.0909,0.0930,0.0901,0.0879 -"Other nonmetallic mineral product (NAICS = 3279); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3279.S,RIW.G3279.S,0.5841,0.5746,0.5704,0.5834,0.5956,0.5849,0.5816,0.5917,0.5902,0.6014 -"Lime and gypsum product (NAICS = 3274); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3274.S,RIW.G3274.S,0.1453,0.1465,0.1472,0.1486,0.1503,0.1482,0.1484,0.1505,0.1503,0.1518 -"Glass and glass product (NAICS = 3272); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3272.S,RIW.G3272.S,0.3639,0.3830,0.3805,0.3696,0.3503,0.3514,0.3534,0.3553,0.3526,0.3489 -"Glass container (NAICS = 327213); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G327213.S,RIW.G327213.S,0.0720,0.0707,0.0693,0.0692,0.0704,0.0697,0.0697,0.0692,0.0681,0.0673 -"Cement and concrete product (NAICS = 3273); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3273.S,RIW.G3273.S,1.0937,1.1145,1.0801,1.0949,1.0555,1.0673,1.0371,1.0184,0.9961,1.0068 -"Cement (NAICS = 32731); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N32731.S,RIW.N32731.S,0.1569,0.1594,0.1553,0.1591,0.1409,0.1652,0.1579,0.1591,, -"Concrete and product (NAICS = 32732-9); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N32732T9.S,RIW.N32732T9.S,0.9368,0.9551,0.9248,0.9358,0.9146,0.9021,0.8792,0.8593,0.8413,0.8493 -"Iron and steel products (NAICS = 3311,2); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3311A2.S,RIW.G3311A2.S,1.3202,1.3063,1.2988,1.2865,1.2524,1.2386,1.2287,1.1946,1.1870,1.1795 -"Pig iron (NAICS = 3311,2pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3311A2Q.S,RIW.G3311A2Q.S,0.0740,0.0728,0.0748,0.0696,0.0610,0.0601,0.0596,0.0588,0.0572,0.0560 -"Raw steel (NAICS = 3311,2pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N3311A2R.S,RIW.N3311A2R.S,0.0783,0.0768,0.0761,0.0785,0.0742,0.0761,0.0756,0.0722,0.0738, -"Coke and products (NAICS = 3311,2pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3311A2F.S,RIW.G3311A2F.S,0.0198,0.0196,0.0191,0.0187,0.0185,0.0181,0.0182,0.0185,0.0185,0.0184 -"Construction steel (NAICS = 3311,2pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N3311A2B.S,RIW.N3311A2B.S,0.2422,0.2420,0.2397,0.2257,0.2283,0.2469,0.2644,0.2476,0.2516, -"Consumer durable steel (NAICS = 3311,2pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N3311A2C.S,RIW.N3311A2C.S,0.2824,0.2830,0.2820,0.3247,0.3080,0.2439,0.2263,0.2136,0.2219, -"Can and closure steel (NAICS = 3311,2pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N3311A2D.S,RIW.N3311A2D.S,0.0107,0.0099,0.0059,0.0095,0.0072,0.0068,0.0067,0.0074,0.0069, -"Equipment steel (NAICS = 3311,2pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N3311A2E.S,RIW.N3311A2E.S,0.0598,0.0595,0.0569,0.0563,0.0526,0.0556,0.0616,0.0640,0.0608, -"Miscellaneous steel (NAICS = 3311,2pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N3311A2Z.S,RIW.N3311A2Z.S,0.5529,0.5428,0.5442,0.5035,0.5026,0.5311,0.5162,0.5125,0.4963, -"Alumina and aluminum production and processing (NAICS = 3313); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3313.S,RIW.G3313.S,0.3667,0.3177,0.3431,0.3580,0.3503,0.3454,0.3584,0.3465,0.3790,0.3608 -"Primary aluminum production (NAICS = 331313pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N331313P.S,RIW.N331313P.S,0.0124,0.0123,0.0123,0.0124,0.0116,0.0098,0.0101,0.0099,0.0098,0.0097 -"Secondary smelting and alloying of aluminum (NAICS = 331314); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N331314.S,RIW.N331314.S,0.0562,0.0567,0.0559,0.0585,0.0520,0.0519,0.0563,0.0537,, -"Misc. aluminum materials (NAICS = 331315,8pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N331315A8M.S,RIW.N331315A8M.S,0.2001,0.1664,0.1838,0.1922,0.1951,0.1962,0.2000,0.1925,0.2137, -"Aluminum extruded product (NAICS = 331318pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N331318E.S,RIW.N331318E.S,0.0926,0.0770,0.0855,0.0893,0.0861,0.0822,0.0868,0.0852,0.0995, -"Nonferrous metal (except aluminum) production and processing (NAICS = 3314); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3314.S,RIW.G3314.S,0.6648,0.6708,0.6766,0.6814,0.6848,0.6742,0.6833,0.6746,0.7036,0.6978 -"Nonferrous metal (except aluminum) smelting and refining (NAICS = 33141); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G33141.S,RIW.G33141.S,0.1632,0.1844,0.1785,0.1858,0.1859,0.1730,0.1824,0.1736,0.1855,0.1836 -"Primary smelting and refining of copper (NAICS = 33141pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G33141C.S,RIW.G33141C.S,0.0392,0.0459,0.0460,0.0468,0.0452,0.0443,0.0416,0.0457,0.0492,0.0487 -"Primary smelting and refining of nonferrous metal (except copper and aluminum) (NAICS = 33141pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N33141N.S,RIW.N33141N.S,0.1240,0.1384,0.1325,0.1390,0.1407,0.1287,0.1408,0.1280,, -"Foundries (NAICS = 3315); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3315.S,RIW.G3315.S,0.4161,0.4064,0.4065,0.4016,0.4061,0.4096,0.4113,0.4117,0.4234,0.4084 -"Forging and stamping (NAICS = 3321); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N3321.S,RIW.N3321.S,0.3616,0.3561,0.3587,0.3527,0.3588,0.3558,0.3571,0.3561,0.3607,0.3528 -"Cutlery and handtool (NAICS = 3322); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N3322.S,RIW.N3322.S,0.1580,0.1612,0.1576,0.1601,0.1649,0.1634,0.1651,0.1618,0.1651,0.1585 -"Architectural and structural metals (NAICS = 3323); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N3323.S,RIW.N3323.S,1.7763,1.7846,1.7959,1.7801,1.8304,1.8536,1.8393,1.8258,1.8431,1.8036 -"Hardware (NAICS = 3325); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3325.S,RIW.G3325.S,0.1380,0.1353,0.1376,0.1378,0.1416,0.1409,0.1364,0.1370,0.1371,0.1318 -"Spring and wire product (NAICS = 3326); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N3326.S,RIW.N3326.S,0.1778,0.1725,0.1755,0.1762,0.1808,0.1800,0.1739,0.1732,0.1721,0.1652 -"Machine shops; turned product; and screw, nut, and bolt (NAICS = 3327); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3327.S,RIW.G3327.S,1.1753,1.1820,1.1613,1.1477,1.1529,1.1279,1.1315,1.1253,1.1095,1.0955 -"Coating, engraving, heat treating, and allied activities (NAICS = 3328); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N3328.S,RIW.N3328.S,0.4863,0.4807,0.4847,0.4767,0.4914,0.4758,0.4747,0.4826,0.4771,0.4649 -"Other fabricated metal product (NAICS = 3329); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3329.S,RIW.G3329.S,1.3220,1.3679,1.3441,1.3398,1.3655,1.3523,1.3644,1.3581,1.3695,1.3495 -"Ball and roller bearing (NAICS = 332991); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G332991.S,RIW.G332991.S,0.0888,0.0902,0.0883,0.0898,0.0927,0.0939,0.0940,0.0924,0.0936,0.0902 -"Agriculture, construction, and mining machinery (NAICS = 3331); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3331.S,RIW.G3331.S,1.2425,1.2431,1.2403,1.2277,1.2436,1.2835,1.2421,1.2470,1.2313,1.1949 -"Agricultural implement (NAICS = 33311); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G33311.S,RIW.G33311.S,0.6328,0.6355,0.6279,0.6201,0.6326,0.6536,0.6259,0.6312,0.6199,0.6021 -"Farm machinery and equipment (NAICS = 333111); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G333111.S,RIW.G333111.S,0.5538,0.5553,0.5487,0.5418,0.5529,0.5714,0.5475,0.5531,0.5420,0.5262 -"Construction machinery (NAICS = 33312); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G33312.S,RIW.G33312.S,0.4366,0.4340,0.4382,0.4329,0.4321,0.4496,0.4383,0.4410,0.4393,0.4266 -"Mining and oil and gas field machinery (NAICS = 33313); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N33313.S,RIW.N33313.S,0.1730,0.1736,0.1742,0.1747,0.1790,0.1804,0.1780,0.1748,0.1720,0.1662 -"Industrial machinery (NAICS = 3332); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3332.S,RIW.G3332.S,0.5443,0.5569,0.5538,0.5536,0.5547,0.5436,0.5360,0.5441,0.5483,0.5304 -"Commercial and service industry machinery and other general purpose machinery (NAICS = 3333,9); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3333A9.S,RIW.G3333A9.S,2.1176,2.1180,2.1263,2.1196,2.1263,2.1170,2.1123,2.0654,2.0880,2.0431 -"HVAC, metalworking, and power transmission machinery (NAICS = 3334-6); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3334T6.S,RIW.G3334T6.S,1.7192,1.6880,1.7238,1.7028,1.7072,1.7455,1.7319,1.7438,1.7341,1.7646 -"Ventilation, heating, air-conditioning, and commercial refrigeration equipment (NAICS = 3334); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3334.S,RIW.G3334.S,0.6905,0.6754,0.6909,0.6938,0.7108,0.7610,0.7318,0.7260,0.7165,0.7141 -"Metalworking machinery (NAICS = 3335); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3335.S,RIW.G3335.S,0.5110,0.5171,0.5079,0.5118,0.5122,0.5151,0.5264,0.5162,0.5205,0.5360 -"Engine, turbine, and power transmission equipment (NAICS = 3336); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3336.S,RIW.G3336.S,0.5176,0.4955,0.5251,0.4972,0.4842,0.4694,0.4737,0.5016,0.4971,0.5145 -"Audio and video equipment (NAICS = 3343); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3343.S,RIW.G3343.S,0.0558,0.0569,0.0569,0.0561,0.0589,0.0564,0.0572,0.0552,0.0539,0.0512 -"Semiconductor and other electronic component (NAICS = 3344); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3344.S,RIW.G3344.S,1.2694,1.3028,1.2968,1.2997,1.3145,1.2875,1.2910,1.3058,1.3271,1.3209 -"Navigational, measuring, electromedical, and control instruments (NAICS = 3345); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3345.S,RIW.G3345.S,2.4109,2.4590,2.4544,2.4394,2.4954,2.4729,2.4794,2.4773,2.4650,2.4268 -"Household appliance (NAICS = 3352); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3352.S,RIW.G3352.S,0.3689,0.3671,0.3640,0.3667,0.3572,0.3492,0.3596,0.3493,0.3460,0.3551 -"Small electrical appliance (NAICS = 33521); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G33521.S,RIW.G33521.S,0.0500,0.0543,0.0534,0.0511,0.0489,0.0434,0.0429,0.0407,0.0411,0.0424 -"Major appliance (NAICS = 33522); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G33522.S,RIW.G33522.S,0.3189,0.3127,0.3106,0.3156,0.3083,0.3058,0.3167,0.3086,0.3049,0.3127 -"Electrical equipment except appliances (NAICS = 3351,3,9); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G335@2.S,RIW.G335@2.S,1.7240,1.7745,1.7650,1.7650,1.7936,1.7615,1.7861,1.7669,1.7744,1.7842 -"Electric lighting equipment (NAICS = 3351); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3351.S,RIW.G3351.S,0.1883,0.2048,0.1983,0.1987,0.1940,0.1738,0.1742,0.1646,0.1657,0.1719 -"Electrical equipment (NAICS = 3353); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3353.S,RIW.G3353.S,0.7015,0.7253,0.7217,0.7180,0.7392,0.7296,0.7454,0.7455,0.7566,0.7736 -"Other electrical equipment and component (NAICS = 3359); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3359.S,RIW.G3359.S,0.8343,0.8443,0.8451,0.8482,0.8604,0.8582,0.8665,0.8568,0.8521,0.8388 -"Battery (NAICS = 33591); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G33591.S,RIW.G33591.S,0.1446,0.1446,0.1456,0.1481,0.1478,0.1480,0.1522,0.1453,0.1475,0.1474 -"Communication and energy wire and cable (NAICS = 33592); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N33592.S,RIW.N33592.S,0.1509,0.1526,0.1521,0.1519,0.1543,0.1530,0.1543,0.1527,0.1513,0.1475 -"Other electrical equipment (NAICS = 33593,9); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G33593T9.S,RIW.G33593T9.S,0.5388,0.5471,0.5474,0.5482,0.5582,0.5571,0.5601,0.5587,0.5533,0.5439 -"Transportation equipment (NAICS = 336); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G336.S,RIW.G336.S,8.8026,8.4068,8.8384,8.8887,8.6521,8.8267,8.9755,8.9767,8.9084,8.9673 -"Automobile and light duty motor vehicle (NAICS = 33611); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G33611.S,RIW.G33611.S,2.5209,2.2315,2.5595,2.6095,2.4248,2.5744,2.6443,2.6257,2.6026,2.6568 -"Automobile (NAICS = 336111); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G336111.S,RIW.G336111.S,0.4602,0.4461,0.4706,0.4739,0.4035,0.4209,0.4288,0.4154,0.4537,0.4336 -"Light truck and utility vehicle (NAICS = 336112); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G336112.S,RIW.G336112.S,2.0608,1.7855,2.0889,2.1356,2.0214,2.1535,2.2156,2.2103,2.1489,2.2233 -"Heavy duty truck (NAICS = 33612); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G33612.S,RIW.G33612.S,0.1569,0.1341,0.1578,0.1644,0.1461,0.1750,0.1938,0.1643,0.1477,0.1417 -"Motor vehicle body and trailer (NAICS = 3362); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3362.S,RIW.G3362.S,0.5713,0.5581,0.5527,0.5606,0.5122,0.5270,0.5404,0.5433,0.5401,0.5273 -"Truck trailer (NAICS = 336212); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G336212.S,RIW.G336212.S,0.1488,0.1427,0.1347,0.1360,0.1158,0.1165,0.1181,0.1185,0.1131,0.1111 -"Motor home (NAICS = 336213); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N336213.S,RIW.N336213.S,0.0370,0.0340,0.0365,0.0383,0.0323,0.0336,0.0340,0.0327,0.0298, -"Travel trailer and camper (NAICS = 336214); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G336214.S,RIW.G336214.S,0.1584,0.1547,0.1569,0.1651,0.1469,0.1577,0.1692,0.1715,0.1715,0.1668 -"Aerospace product and parts (NAICS = 3364); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3364.S,RIW.G3364.S,2.3255,2.3463,2.3465,2.3235,2.3721,2.3079,2.3149,2.3460,2.3345,2.3333 -"Aircraft and parts (NAICS = 336411-3); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G336411T3.S,RIW.G336411T3.S,2.0386,2.0596,2.0635,2.0407,2.0816,2.0290,2.0333,2.0647,2.0537,2.0569 -"Railroad eq., ships and boats, and other transportation equipment (NAICS = 3365-9); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3365T9.S,RIW.G3365T9.S,0.8812,0.8839,0.8838,0.8756,0.8721,0.8679,0.8811,0.8965,0.8968,0.9114 -"Railroad rolling stock (NAICS = 3365); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N3365.S,RIW.N3365.S,0.0773,0.0795,0.0805,0.0788,0.0808,0.0776,0.0813,0.0806,0.0830,0.0829 -"Ship and boat building (NAICS = 3366); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3366.S,RIW.G3366.S,0.5884,0.5841,0.5788,0.5792,0.5688,0.5755,0.5788,0.5939,0.5899,0.6054 -"Other transportation equipment (NAICS = 3369); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N3369.S,RIW.N3369.S,0.2156,0.2203,0.2245,0.2176,0.2225,0.2148,0.2209,0.2220,0.2239,0.2232 -"Household and institutional furniture and kitchen cabinet (NAICS = 3371); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N3371.S,RIW.N3371.S,0.5179,0.5095,0.5051,0.5070,0.5125,0.5063,0.5082,0.5141,0.4970,0.4991 -"Office and other furniture (NAICS = 3372,9); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3372A9.S,RIW.G3372A9.S,0.4803,0.4798,0.4728,0.4630,0.4577,0.4655,0.4556,0.4592,0.4473,0.4523 -"Medical equipment and supplies (NAICS = 3391); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N3391.S,RIW.N3391.S,1.6953,1.7264,1.7046,1.6712,1.6763,1.6869,1.6773,1.6696,1.6212,1.5917 -"Logging (NAICS = 1133); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N1133.S,RIW.N1133.S,0.1418,0.1425,0.1416,0.1361,0.1310,0.1388,0.1366,0.1347,0.1340,0.1370 -"Newspaper, periodical, book, and directory publishers (NAICS = 5111); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G5111.S,RIW.G5111.S,1.4556,1.4825,1.4169,1.3905,1.4515,1.4339,1.4367,1.4406,1.4389,1.4390 -"Newspaper publishers (NAICS = 51111); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G51111.S,RIW.G51111.S,0.3937,0.3934,0.3764,0.3743,0.3773,0.3770,0.3763,0.3797,0.3842,0.3839 -"Periodical, book, and other publishers (NAICS = 51112-9); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G51112T9.S,RIW.G51112T9.S,1.0619,1.0890,1.0406,1.0162,1.0742,1.0569,1.0604,1.0608,1.0547,1.0551 -"Crude processing (capacity); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B5610C.S,RIW.B5610C.S,17.6774,17.6520,17.6368,17.8583,17.3436,17.7914,17.8860,17.8663,17.8119,17.8752 -"Primary & semifinished processing (capacity); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B562A3C.S,RIW.B562A3C.S,46.0333,46.0417,45.9383,45.7196,46.2593,45.7784,45.6122,45.7132,45.8563,45.9431 -"Finished processing (capacity); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B5640C.S,RIW.B5640C.S,36.2893,36.3063,36.4249,36.4221,36.3971,36.4302,36.5018,36.4205,36.3317,36.1817 -"Final products; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B50002.S,RIW.B50002.S,38.9686,38.9639,39.1008,39.0814,39.2023,39.0216,38.9442,39.0721,38.9151,38.9105 -"Autos and trucks, consumer; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B51111.S,RIW.B51111.S,2.0420,1.8116,2.0735,2.1094,1.9517,2.0647,2.1130,2.0899,2.0645,2.0978 -"Auto parts and allied goods; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B51112.S,RIW.B51112.S,1.3766,1.3715,1.3723,1.3884,1.3519,1.3585,1.3798,1.3618,1.3457,1.3425 -"Other durable goods; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B51120.S,RIW.B51120.S,2.7463,2.7597,2.7452,2.7582,2.7952,2.8151,2.7851,2.7543,2.7258,2.6838 -"Household appliances; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B511221.S,RIW.B511221.S,0.4194,0.4259,0.4363,0.4283,0.4405,0.4694,0.4229,0.4169,0.4119,0.4033 -"Carpeting and furniture; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B511222.S,RIW.B511222.S,0.4903,0.4865,0.4805,0.4803,0.4843,0.4788,0.4771,0.4791,0.4658,0.4654 -"Miscellaneous nondurable goods; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B51215.S,RIW.B51215.S,0.4113,0.4166,0.4095,0.4017,0.4029,0.4064,0.4019,0.4002,0.3917,0.3863 -"Fuels; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B51221.S,RIW.B51221.S,2.6196,2.6328,2.6021,2.6338,2.5811,2.4912,2.5338,2.5415,2.5408,2.5178 -"Residential utilities; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B51222.S,RIW.B51222.S,2.9439,2.9122,2.9268,2.8257,3.0321,2.8651,2.6571,2.9111,2.8687,2.9971 -"Equipment, total; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B52000.S,RIW.B52000.S,11.1941,11.2042,11.2439,11.2121,11.2316,11.2524,11.2902,11.2426,11.1614,11.0597 -"Business vehicles; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3361E.S,RIW.G3361E.S,0.6358,0.5541,0.6438,0.6645,0.6191,0.6846,0.7251,0.7001,0.6858,0.7007 -"Business light vehicles; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G33611E.S,RIW.G33611E.S,0.4789,0.4199,0.4860,0.5001,0.4731,0.5097,0.5313,0.5359,0.5381,0.5590 -"Automobile, business (NAICS = 336111pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G336111B.S,RIW.G336111B.S,0.0862,0.0835,0.0879,0.0882,0.0748,0.0776,0.0786,0.0758,0.0823,0.0783 -"Light trucks, business (NAICS = 336112pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G336112B.S,RIW.G336112B.S,0.3927,0.3365,0.3981,0.4119,0.3983,0.4321,0.4527,0.4601,0.4558,0.4807 -"Industrial equipment; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B52131.S,RIW.B52131.S,3.0589,3.0795,3.0729,3.0769,3.0850,3.0844,3.0909,3.0590,3.0891,3.0459 -"Other equipment; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B52132.S,RIW.B52132.S,2.1329,2.1432,2.1269,2.1085,2.1234,2.1480,2.1176,2.1216,2.0794,2.0486 -"Oil and gas well drilling and manufactured homes; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B52200.S,RIW.B52200.S,0.6650,0.6650,0.6449,0.6404,0.6369,0.6348,0.6376,0.6167,0.5999,0.5989 -"Nonindustrial supplies; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B54000.S,RIW.B54000.S,15.8119,15.8855,15.7627,15.7347,15.7719,15.8201,15.8012,15.7031,15.7146,15.6812 -"Non-energy business supplies; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B54210.S,RIW.B54210.S,7.8159,7.8612,7.7675,7.7599,7.7680,7.7687,7.8018,7.7615,7.7420,7.7285 -"Computer and other board assemblies and parts; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B53121.S,RIW.B53121.S,0.1462,0.1549,0.1502,0.1451,0.1443,0.1405,0.1352,0.1368,0.1384,0.1348 -"Semiconductors, printed circuit boards, and other; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B53122.S,RIW.B53122.S,0.7754,0.7915,0.7917,0.7976,0.8080,0.7926,0.8000,0.8092,0.8225,0.8212 -"Other equipment parts; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B53123.S,RIW.B53123.S,3.6939,3.7176,3.7228,3.6921,3.7307,3.6814,3.7139,3.7342,3.7549,3.7552 -"Basic metals; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B53131.S,RIW.B53131.S,2.7996,2.7419,2.7719,2.7882,2.7532,2.7792,2.8238,2.7838,2.8583,2.8098 -"Miscellaneous durable materials; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B53132.S,RIW.B53132.S,6.4866,6.4639,6.4545,6.4253,6.4297,6.4189,6.4152,6.4122,6.3717,6.2901 -"Other nondurable materials; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B53240.S,RIW.B53240.S,3.3212,3.3555,3.3238,3.3351,3.3512,3.3447,3.3200,3.2871,3.2500,3.2463 -"Containers; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B53241.S,RIW.B53241.S,1.0444,1.0496,1.0442,1.0443,1.0579,1.0596,1.0411,1.0270,1.0070,1.0062 -"Miscellaneous nondurable materials; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B53242.S,RIW.B53242.S,2.2768,2.3059,2.2795,2.2908,2.2932,2.2851,2.2788,2.2601,2.2430,2.2401 \ No newline at end of file diff --git a/data/fedres/FRB_G17_last7.csv.template b/data/fedres/FRB_G17_last7.csv.template deleted file mode 100644 index 3686851..0000000 --- a/data/fedres/FRB_G17_last7.csv.template +++ /dev/null @@ -1,1171 +0,0 @@ -"Description:","Unit:","Multiplier:","Currency:","Unique Identifier:","Series Name:",2023-12,2024-01,2024-02,2024-03,2024-04,2024-05,2024-06 -"Total index; s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.B50001.S,IP.B50001.S,102.6309,101.4830,102.6045,102.4062,102.4329,103.3282,103.9941 -"Total index; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.B50001.N,IP.B50001.N,102.2236,101.7062,102.6262,102.5993,101.4902,102.2359,105.2923 -"Manufacturing (SIC); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.B00004.S,IP.B00004.S,99.2357,97.9454,99.1743,99.3670,98.8643,99.8693,100.2590 -"Manufacturing (SIC); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.B00004.N,IP.B00004.N,98.0445,96.2967,99.2403,100.1158,99.5889,99.8969,101.6729 -"Manufacturing (NAICS); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.GMF.S,IP.GMF.S,99.8251,98.4489,99.7005,99.9020,99.3826,100.3992,100.7795 -"Manufacturing (NAICS); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.GMF.N,IP.GMF.N,98.6186,96.8817,99.9161,100.8433,100.2284,100.5069,102.2007 -"Durable manufacturing (NAICS); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.GMFD.S,IP.GMFD.S,100.6129,99.3683,100.7439,100.8861,100.4327,101.1225,101.1192 -"Durable manufacturing (NAICS); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.GMFD.N,IP.GMFD.N,99.1088,97.9337,101.5887,102.6128,101.6599,101.1258,102.5422 -"Wood product (NAICS = 321); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G321.S,IP.G321.S,93.2139,92.1930,92.8369,93.6653,92.3425,94.2914,94.6032 -"Wood product (NAICS = 321); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G321.N,IP.G321.N,88.2029,89.8186,92.1736,95.1662,95.3889,95.6365,97.8190 -"Nonmetallic mineral product (NAICS = 327); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G327.S,IP.G327.S,103.8036,100.4795,101.4939,99.7777,99.5641,98.9867,100.2250 -"Nonmetallic mineral product (NAICS = 327); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G327.N,IP.G327.N,100.9280,93.3512,94.6525,96.2743,99.4853,100.3381,104.1092 -"Primary metal (NAICS = 331); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G331.S,IP.G331.S,94.8505,92.8565,93.2205,93.7604,92.1179,95.4749,94.5628 -"Primary metal (NAICS = 331); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G331.N,IP.G331.N,93.2892,91.6827,95.6155,93.7303,94.3983,96.0340,95.8882 -"Fabricated metal product (NAICS = 332); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G332.S,IP.G332.S,98.6583,99.4417,100.0425,99.5941,98.9094,99.9123,98.6243 -"Fabricated metal product (NAICS = 332); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G332.N,IP.G332.N,99.1399,98.5154,99.9246,99.9667,99.0548,99.6685,99.1889 -"Machinery (NAICS = 333); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G333.S,IP.G333.S,98.8167,98.0658,100.0264,98.5349,98.0574,98.8230,98.1326 -"Machinery (NAICS = 333); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G333.N,IP.G333.N,97.7220,101.8090,104.3224,102.5335,102.8769,99.2894,99.4388 -"Computer and electronic product (NAICS = 334); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G334.S,IP.G334.S,115.7863,116.6199,116.4492,116.7753,117.0948,118.2858,117.6896 -"Computer and electronic product (NAICS = 334); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G334.N,IP.G334.N,118.4356,114.4948,113.9228,117.8183,114.8016,117.0175,119.8798 -"Electrical equipment, appliance, and component (NAICS = 335); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G335.S,IP.G335.S,103.6602,103.4266,102.6318,104.1364,102.7319,103.8411,105.4065 -"Electrical equipment, appliance, and component (NAICS = 335); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G335.N,IP.G335.N,102.8962,102.2922,103.3451,104.5090,104.2792,103.9385,105.7604 -"Motor vehicles and parts (NAICS = 3361-3); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G3361T3.S,IP.G3361T3.S,108.6938,102.2729,108.1759,110.5541,109.8425,109.8267,111.5909 -"Motor vehicles and parts (NAICS = 3361-3); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G3361T3.N,IP.G3361T3.N,99.5311,96.6322,113.4217,117.5704,112.6249,109.9166,113.5699 -"Aerospace and miscellaneous transportation eq. (NAICS = 3364-9); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G3364T9.S,IP.G3364T9.S,88.6273,88.9819,88.1772,88.6743,90.1022,90.6879,91.8321 -"Aerospace and miscellaneous transportation eq. (NAICS = 3364-9); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G3364T9.N,IP.G3364T9.N,89.2474,88.8736,88.1679,89.9398,90.0525,90.0491,92.2101 -"Furniture and related product (NAICS = 337); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G337.S,IP.G337.S,77.4047,76.6185,77.6496,76.9191,77.7549,76.1665,77.2765 -"Furniture and related product (NAICS = 337); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G337.N,IP.G337.N,78.1041,75.0103,77.2986,76.5700,77.1625,76.3503,78.2004 -"Miscellaneous (NAICS = 339); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G339.S,IP.G339.S,107.7731,107.1942,109.2186,109.1388,107.8046,106.4554,104.6150 -"Miscellaneous (NAICS = 339); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G339.N,IP.G339.N,108.8593,105.9249,108.8590,108.9161,107.0353,105.8339,105.5009 -"Nondurable manufacturing (NAICS); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.GMFN.S,IP.GMFN.S,99.0714,97.5605,98.6864,98.9484,98.3613,99.7130,100.4869 -"Nondurable manufacturing (NAICS); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.GMFN.N,IP.GMFN.N,98.1646,95.8547,98.2578,99.0865,98.8168,99.9274,101.9064 -"Food, beverage, and tobacco (NAICS = 311,2); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G311A2.S,IP.G311A2.S,100.1352,99.0501,99.4265,99.2723,98.8816,99.6826,100.1311 -"Food, beverage, and tobacco (NAICS = 311,2); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G311A2.N,IP.G311A2.N,97.5040,97.0196,99.7313,100.0718,99.6885,98.6197,101.6420 -"Textiles and products (NAICS = 313,4); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G313A4.S,IP.G313A4.S,77.4111,77.4221,78.7346,78.7028,78.1825,80.0926,81.2789 -"Textiles and products (NAICS = 313,4); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G313A4.N,IP.G313A4.N,75.4446,74.9165,77.2366,78.7356,79.7710,79.3250,82.7497 -"Apparel and leather goods (NAICS = 315,6); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G315A6.S,IP.G315A6.S,82.6296,82.3297,81.4656,80.1753,81.3547,81.1666,82.3744 -"Apparel and leather goods (NAICS = 315,6); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G315A6.N,IP.G315A6.N,82.9259,80.5140,81.4274,80.5094,82.6447,81.7672,83.0804 -"Paper (NAICS = 322); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G322.S,IP.G322.S,86.0626,85.7918,87.2291,86.9501,87.0085,87.4494,88.7263 -"Paper (NAICS = 322); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G322.N,IP.G322.N,84.9091,85.2558,88.0746,86.8161,88.1064,87.5554,89.5423 -"Printing and related support activities (NAICS = 323); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G323.S,IP.G323.S,80.6152,81.7001,82.9267,83.7230,84.6393,84.2501,86.4347 -"Printing and related support activities (NAICS = 323); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G323.N,IP.G323.N,81.7096,80.8683,82.2883,84.1352,84.8432,84.6990,86.6551 -"Petroleum and coal products (NAICS = 324); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G324.S,IP.G324.S,93.6831,91.6278,92.6833,94.5957,90.9141,94.1743,94.6060 -"Petroleum and coal products (NAICS = 324); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G324.N,IP.G324.N,91.5253,85.6341,87.5035,92.4119,91.4842,97.2351,98.8667 -"Chemical (NAICS = 325); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G325.S,IP.G325.S,103.7028,101.2194,103.2941,103.4676,103.1915,105.2738,106.5475 -"Chemical (NAICS = 325); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G325.N,IP.G325.N,104.6321,100.8440,103.3398,103.8071,103.2021,105.9461,107.0945 -"Plastics and rubber products (NAICS = 326); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G326.S,IP.G326.S,103.3795,101.9374,102.3816,102.6582,102.8501,102.8190,102.3809 -"Plastics and rubber products (NAICS = 326); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G326.N,IP.G326.N,103.1052,100.9760,102.7743,102.5520,102.6132,102.4892,103.6658 -"Other manufacturing; s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.GMFO.S,IP.GMFO.S,78.0214,79.9650,80.3449,80.2102,80.3324,80.9101,81.6567 -"Other manufacturing; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.GMFO.N,IP.GMFO.N,77.5252,75.3476,74.8914,73.8298,76.6126,78.0335,82.9219 -"Mining (NAICS = 21); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G21.S,IP.G21.S,120.4936,115.3018,120.2070,119.5705,119.7955,118.9654,119.2994 -"Mining (NAICS = 21); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G21.N,IP.G21.N,119.7234,112.7542,117.5279,118.5917,119.7665,119.6233,120.0676 -"Electric and gas utilities (NAICS = 2211,2); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G2211A2.S,IP.G2211A2.S,103.0754,107.4735,103.5652,101.0304,104.6688,106.6891,109.7084 -"Electric and gas utilities (NAICS = 2211,2); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G2211A2.N,IP.G2211A2.N,108.6596,124.2325,106.1255,98.3226,90.4537,95.3565,110.5702 -"Electric power generation, transmission, and distribution (NAICS = 2211); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G2211.S,IP.G2211.S,103.0898,107.1461,103.7609,101.7041,104.7089,107.3317,110.5250 -"Electric power generation, transmission, and distribution (NAICS = 2211); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G2211.N,IP.G2211.N,101.2066,111.6849,98.8483,93.5716,89.9546,99.0826,117.7453 -"Natural gas distribution (NAICS = 2212); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G2212.S,IP.G2212.S,102.1671,108.9203,101.3612,95.4612,103.5897,101.2707,103.0105 -"Natural gas distribution (NAICS = 2212); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.G2212.N,IP.G2212.N,162.1837,214.0887,158.2215,132.2257,93.5295,67.5181,57.2905 -"Crude processing (capacity); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.B5610C.S,IP.B5610C.S,112.8320,108.0293,111.7128,111.7643,111.3414,111.6440,112.4325 -"Crude processing (capacity); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.B5610C.N,IP.B5610C.N,113.0633,107.5907,111.5472,112.0354,111.3376,111.5287,112.3570 -"Primary & semifinished processing (capacity); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.B562A3C.S,IP.B562A3C.S,98.2895,98.4249,98.5650,98.1058,98.4383,99.6991,100.5960 -"Primary & semifinished processing (capacity); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.B562A3C.N,IP.B562A3C.N,98.4724,100.2318,98.1333,97.5728,95.9172,97.5912,102.4009 -"Finished processing (capacity); s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.B5640C.S,IP.B5640C.S,102.7718,101.5830,102.8331,102.8664,102.6949,103.3715,103.6736 -"Finished processing (capacity); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MAJOR_INDUSTRY_GROUPS/IP.B5640C.N,IP.B5640C.N,101.3062,100.0194,103.5288,103.9702,103.4019,103.1761,104.9224 -"Durable manufacturing (NAICS); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.GMFD.S,IP.GMFD.S,100.6129,99.3683,100.7439,100.8861,100.4327,101.1225,101.1192 -"Durable manufacturing (NAICS); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.GMFD.N,IP.GMFD.N,99.1088,97.9337,101.5887,102.6128,101.6599,101.1258,102.5422 -"Motor vehicles and parts (NAICS = 3361-3); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3361T3.S,IP.G3361T3.S,108.6938,102.2729,108.1759,110.5541,109.8425,109.8267,111.5909 -"Motor vehicles and parts (NAICS = 3361-3); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3361T3.N,IP.G3361T3.N,99.5311,96.6322,113.4217,117.5704,112.6249,109.9166,113.5699 -"Aerospace and miscellaneous transportation eq. (NAICS = 3364-9); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3364T9.S,IP.G3364T9.S,88.6273,88.9819,88.1772,88.6743,90.1022,90.6879,91.8321 -"Aerospace and miscellaneous transportation eq. (NAICS = 3364-9); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3364T9.N,IP.G3364T9.N,89.2474,88.8736,88.1679,89.9398,90.0525,90.0491,92.2101 -"Wood product (NAICS = 321); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G321.S,IP.G321.S,93.2139,92.1930,92.8369,93.6653,92.3425,94.2914,94.6032 -"Wood product (NAICS = 321); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G321.N,IP.G321.N,88.2029,89.8186,92.1736,95.1662,95.3889,95.6365,97.8190 -"Sawmills and wood preservation (NAICS = 3211); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3211.S,IP.N3211.S,93.7120,91.7064,89.9187,94.0300,,, -"Sawmills and wood preservation (NAICS = 3211); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3211.N,IP.N3211.N,82.6377,90.6493,91.4074,96.4661,,, -"Plywood and misc. wood products (NAICS = 3212,9); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3212A9.S,IP.G3212A9.S,92.9947,92.3745,94.0040,93.5060,92.5245,92.9320,94.6569 -"Plywood and misc. wood products (NAICS = 3212,9); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3212A9.N,IP.G3212A9.N,90.4790,89.4891,92.4927,94.6496,94.1117,95.0546,98.0713 -"Veneer, plywood, and engineered wood product (NAICS = 3212); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3212.S,IP.G3212.S,76.8058,75.1116,75.7129,76.8666,77.3218,75.8708,77.6306 -"Veneer, plywood, and engineered wood product (NAICS = 3212); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3212.N,IP.G3212.N,71.9607,70.8643,74.5119,79.6901,77.7714,78.8490,82.7802 -"Veneer and plywood (NAICS = 321211,2); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G321211A2.S,IP.G321211A2.S,71.8618,71.0205,70.4815,70.2448,70.3106,70.2583,70.0880 -"Veneer and plywood (NAICS = 321211,2); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G321211A2.N,IP.G321211A2.N,68.2146,60.8753,71.3193,79.9889,66.4908,73.9070,78.0255 -"Reconstituted wood product (NAICS = 321219); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G321219.S,IP.G321219.S,66.0355,63.6222,67.0139,67.0443,68.0540,65.2271,67.1385 -"Reconstituted wood product (NAICS = 321219); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G321219.N,IP.G321219.N,56.7792,63.1326,67.6741,70.0067,72.0068,67.3429,72.6526 -"Other wood product (NAICS = 3219); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3219.S,IP.G3219.S,101.9141,101.9074,104.1192,102.6731,100.8654,102.3513,104.0457 -"Other wood product (NAICS = 3219); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3219.N,IP.G3219.N,100.6996,99.7737,102.3962,102.8039,103.0677,103.9268,106.3895 -"Millwork (NAICS = 32191); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G32191.S,IP.G32191.S,98.9865,100.1104,100.6424,96.9936,95.5801,97.7137,99.8040 -"Millwork (NAICS = 32191); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G32191.N,IP.G32191.N,98.2957,97.5386,98.1125,96.4487,97.2465,98.6089,101.4664 -"Wood container and pallet (NAICS = 32192); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N32192.S,IP.N32192.S,101.7580,99.8046,106.8831,110.3839,105.3692,108.2042,110.1426 -"Wood container and pallet (NAICS = 32192); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N32192.N,IP.N32192.N,102.7280,98.8263,107.3574,111.3661,106.1263,109.3732,110.5188 -"All other wood product (NAICS = 32199); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G32199.S,IP.G32199.S,107.4439,106.5105,108.8575,108.5392,107.9755,107.3801,108.1589 -"All other wood product (NAICS = 32199); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G32199.N,IP.G32199.N,103.7645,104.4281,107.2228,109.3411,112.0090,110.4259,112.9258 -"Manufactured home (mobile home) (NAICS = 321991); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N321991.S,IP.N321991.S,81.7631,74.9864,86.4634,83.5164,84.3233,85.6156, -"Manufactured home (mobile home) (NAICS = 321991); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N321991.N,IP.N321991.N,66.3619,70.9988,87.0983,87.1126,89.1092,89.0354, -"Nonmetallic mineral product (NAICS = 327); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G327.S,IP.G327.S,103.8036,100.4795,101.4939,99.7777,99.5641,98.9867,100.2250 -"Nonmetallic mineral product (NAICS = 327); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G327.N,IP.G327.N,100.9280,93.3512,94.6525,96.2743,99.4853,100.3381,104.1092 -"Clay, lime, gypsum, and misc. nonmetallic mineral products (NAICS = 3271,4,9); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3271A4A9.S,IP.G3271A4A9.S,114.5343,114.6827,114.1996,113.3835,115.1072,115.3377,117.1126 -"Clay, lime, gypsum, and misc. nonmetallic mineral products (NAICS = 3271,4,9); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3271A4A9.N,IP.G3271A4A9.N,113.9404,113.0230,111.5629,112.1427,115.0851,114.4770,117.7469 -"Clay and misc. nonmetallic mineral products (NAICS = 3271,9); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3271A9.S,IP.G3271A9.S,116.7029,116.9555,116.5003,115.5821,117.4398,117.6097,119.4779 -"Clay and misc. nonmetallic mineral products (NAICS = 3271,9); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3271A9.N,IP.G3271A9.N,116.8762,116.0423,113.5312,113.7562,115.9942,116.9643,120.5551 -"Clay product and refractory (NAICS = 3271); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3271.S,IP.G3271.S,93.4482,91.3225,92.6277,92.2547,93.6254,92.4035,90.4598 -"Clay product and refractory (NAICS = 3271); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3271.N,IP.G3271.N,93.5249,89.3617,91.0639,92.8454,93.4096,93.4260,92.3269 -"Pottery, ceramics, and plumbing fixture (NAICS = 32711); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G32711.S,IP.G32711.S,103.6532,100.8823,101.2876,101.6310,101.2762,101.6830,98.8527 -"Pottery, ceramics, and plumbing fixture (NAICS = 32711); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G32711.N,IP.G32711.N,107.0697,101.2337,99.6617,103.0177,100.2036,102.7670,99.1463 -"Clay building material and refractories (NAICS = 32712); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G32712.S,IP.G32712.S,88.8598,87.0309,88.7570,88.0504,90.2249,88.2450,86.7095 -"Clay building material and refractories (NAICS = 32712); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G32712.N,IP.G32712.N,87.3922,84.0003,87.2294,88.2820,90.4172,89.2510,89.3199 -"Other nonmetallic mineral product (NAICS = 3279); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3279.S,IP.G3279.S,124.5091,125.5320,124.5074,123.4111,125.4306,126.0470,129.1395 -"Other nonmetallic mineral product (NAICS = 3279); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3279.N,IP.G3279.N,124.7155,124.9579,121.0794,120.8035,123.5859,124.8646,129.9665 -"Lime and gypsum product (NAICS = 3274); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3274.S,IP.G3274.S,104.4735,104.1661,103.5641,103.1962,104.3292,104.8203,106.1814 -"Lime and gypsum product (NAICS = 3274); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3274.N,IP.G3274.N,100.5218,99.2443,102.3729,104.4922,110.4737,103.0347,104.8981 -"Glass and glass product (NAICS = 3272); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3272.S,IP.G3272.S,85.3495,80.1186,81.3768,81.8129,82.3925,82.5977,82.3666 -"Glass and glass product (NAICS = 3272); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3272.N,IP.G3272.N,83.3279,78.8313,81.0216,81.9804,81.6416,82.5687,83.4334 -"Glass container (NAICS = 327213); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G327213.S,IP.G327213.S,68.4713,69.0509,69.3390,69.3544,69.0598,68.7680,68.4993 -"Glass container (NAICS = 327213); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G327213.N,IP.G327213.N,53.8953,68.3921,72.5768,71.8745,69.3466,71.0938,70.4077 -"Cement and concrete product (NAICS = 3273); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3273.S,IP.G3273.S,104.4260,99.3371,101.3478,98.0813,96.1365,94.6501,96.1066 -"Cement and concrete product (NAICS = 3273); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3273.N,IP.G3273.N,99.5485,85.7830,88.7386,91.4041,96.2904,98.1805,103.5291 -"Cement (NAICS = 32731); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N32731.S,IP.N32731.S,92.4447,80.6341,95.2082,90.4533,90.8194,, -"Cement (NAICS = 32731); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N32731.N,IP.N32731.N,75.0199,58.3897,76.5615,84.1068,95.6975,, -"Concrete and product (NAICS = 32732-9); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N32732T9.S,IP.N32732T9.S,106.8418,103.0707,102.6080,99.6338,97.2310,95.8582,97.2520 -"Concrete and product (NAICS = 32732-9); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N32732T9.N,IP.N32732T9.N,104.2939,91.1016,91.0577,92.7574,96.3125,98.7020,102.9644 -"Primary metal (NAICS = 331); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G331.S,IP.G331.S,94.8505,92.8565,93.2205,93.7604,92.1179,95.4749,94.5628 -"Primary metal (NAICS = 331); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G331.N,IP.G331.N,93.2892,91.6827,95.6155,93.7303,94.3983,96.0340,95.8882 -"Iron and steel products (NAICS = 3311,2); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3311A2.S,IP.G3311A2.S,96.0143,93.1535,93.8792,93.6837,91.8449,92.7975,93.3767 -"Iron and steel products (NAICS = 3311,2); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3311A2.N,IP.G3311A2.N,92.1218,92.9788,96.0507,93.1446,95.0598,93.8230,95.7319 -"Pig iron (NAICS = 3311,2pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3311A2Q.S,IP.G3311A2Q.S,86.1023,75.2389,75.6885,75.5386,75.2389,74.4898,73.8938 -"Pig iron (NAICS = 3311,2pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3311A2Q.N,IP.G3311A2Q.N,85.0710,80.6743,80.2084,74.7509,73.1651,72.7011,74.1001 -"Raw steel (NAICS = 3311,2pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3311A2R.S,IP.N3311A2R.S,94.2842,88.8716,92.8086,92.7557,89.3393,92.8673, -"Raw steel (NAICS = 3311,2pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3311A2R.N,IP.N3311A2R.N,90.7653,89.4265,94.0586,91.5444,92.0334,93.4113, -"Coke and products (NAICS = 3311,2pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3311A2F.S,IP.G3311A2F.S,93.7298,92.3673,92.2978,93.4378,95.8706,97.5142,98.3422 -"Coke and products (NAICS = 3311,2pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3311A2F.N,IP.G3311A2F.N,94.1193,92.9636,93.1448,94.6220,97.0222,97.8890,97.2888 -"Construction steel (NAICS = 3311,2pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3311A2B.S,IP.N3311A2B.S,109.5612,110.4311,121.7283,131.0932,123.7749,127.8535, -"Construction steel (NAICS = 3311,2pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3311A2B.N,IP.N3311A2B.N,106.3409,107.6414,121.3489,127.2263,124.9273,128.5170, -"Consumer durable steel (NAICS = 3311,2pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3311A2C.S,IP.N3311A2C.S,149.2249,141.0341,113.7689,106.2006,101.0267,106.7291, -"Consumer durable steel (NAICS = 3311,2pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3311A2C.N,IP.N3311A2C.N,143.0245,142.5954,117.0236,104.8769,109.2608,106.9776, -"Can and closure steel (NAICS = 3311,2pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3311A2D.S,IP.N3311A2D.S,60.3658,45.1533,43.4492,43.4689,48.2056,45.4838, -"Can and closure steel (NAICS = 3311,2pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3311A2D.N,IP.N3311A2D.N,59.3255,41.5409,42.4961,39.5983,47.1194,45.1257, -"Equipment steel (NAICS = 3311,2pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3311A2E.S,IP.N3311A2E.S,68.9558,64.3482,69.2853,77.2556,80.9336,78.2410, -"Equipment steel (NAICS = 3311,2pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3311A2E.N,IP.N3311A2E.N,67.6811,62.6200,68.7321,80.2813,80.9901,80.2885, -"Miscellaneous steel (NAICS = 3311,2pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3311A2Z.S,IP.N3311A2Z.S,79.4834,79.0772,85.1410,83.2469,83.3357,82.0574, -"Miscellaneous steel (NAICS = 3311,2pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3311A2Z.N,IP.N3311A2Z.N,75.1653,78.5716,88.0309,83.7129,86.7868,83.7793, -"Alumina and aluminum production and processing (NAICS = 3313); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3313.S,IP.G3313.S,93.5412,90.7023,90.6208,94.0361,91.1266,100.7626,96.6235 -"Alumina and aluminum production and processing (NAICS = 3313); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3313.N,IP.G3313.N,88.4605,85.3607,97.5657,92.6983,94.1657,102.5081,99.9613 -"Primary aluminum production (NAICS = 331313pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N331313P.S,IP.N331313P.S,97.0563,89.9001,77.1507,79.3415,78.7246,78.8977,78.8351 -"Primary aluminum production (NAICS = 331313pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N331313P.N,IP.N331313P.N,97.3633,90.9160,78.0854,80.1527,80.3455,79.7731,79.0906 -"Secondary smelting and alloying of aluminum (NAICS = 331314); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N331314.S,IP.N331314.S,108.6576,96.1229,97.5939,106.2655,101.9837,, -"Secondary smelting and alloying of aluminum (NAICS = 331314); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N331314.N,IP.N331314.N,103.5739,99.2144,108.0600,104.1221,102.8028,, -"Misc. aluminum materials (NAICS = 331315,8pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N331315A8M.S,IP.N331315A8M.S,94.1199,94.4975,96.1166,97.8135,94.1886,105.4912, -"Misc. aluminum materials (NAICS = 331315,8pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N331315A8M.N,IP.N331315A8M.N,91.9763,86.3234,101.9195,95.6711,97.0695,107.8030, -"Aluminum extruded product (NAICS = 331318pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N331318E.S,IP.N331318E.S,83.6388,80.0878,77.5877,82.0424,80.7798,95.5000, -"Aluminum extruded product (NAICS = 331318pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N331318E.N,IP.N331318E.N,71.9481,74.8905,86.0565,82.3486,85.5008,98.2916, -"Nonferrous metal (except aluminum) production and processing (NAICS = 3314); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3314.S,IP.G3314.S,110.4087,109.0725,107.9436,108.5632,106.5898,111.5138,110.6747 -"Nonferrous metal (except aluminum) production and processing (NAICS = 3314); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3314.N,IP.G3314.N,114.0894,107.6485,109.6406,109.9362,108.1427,111.6074,109.0374 -"Nonferrous metal (except aluminum) smelting and refining (NAICS = 33141); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G33141.S,IP.G33141.S,139.9248,138.0765,129.5499,135.9594,129.1964,138.8850,137.9864 -"Nonferrous metal (except aluminum) smelting and refining (NAICS = 33141); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G33141.N,IP.G33141.N,154.7910,135.4524,137.3127,144.7369,134.3199,139.5613,131.4867 -"Primary smelting and refining of copper (NAICS = 33141pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G33141C.S,IP.G33141C.S,149.3591,144.0141,143.5117,135.5183,150.0829,164.4720,165.0150 -"Primary smelting and refining of copper (NAICS = 33141pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G33141C.N,IP.G33141C.N,143.2712,152.8208,159.4668,143.7572,144.6283,155.3765,156.4766 -"Primary smelting and refining of nonferrous metal (except copper and aluminum) (NAICS = 33141pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N33141N.S,IP.N33141N.S,133.4803,132.7305,122.0468,132.4995,119.7611,, -"Primary smelting and refining of nonferrous metal (except copper and aluminum) (NAICS = 33141pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N33141N.N,IP.N33141N.N,154.5713,126.9648,127.3530,141.3950,127.9636,, -"Foundries (NAICS = 3315); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3315.S,IP.G3315.S,78.8641,78.8845,80.4787,80.7028,80.8295,83.8840,81.4529 -"Foundries (NAICS = 3315); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3315.N,IP.G3315.N,79.7068,78.5301,81.0919,81.2981,81.2453,83.0250,82.4917 -"Fabricated metal product (NAICS = 332); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G332.S,IP.G332.S,98.6583,99.4417,100.0425,99.5941,98.9094,99.9123,98.6243 -"Fabricated metal product (NAICS = 332); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G332.N,IP.G332.N,99.1399,98.5154,99.9246,99.9667,99.0548,99.6685,99.1889 -"Forging and stamping (NAICS = 3321); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3321.S,IP.N3321.S,80.0285,80.3966,80.5044,80.5386,80.2186,81.8598,80.4796 -"Forging and stamping (NAICS = 3321); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3321.N,IP.N3321.N,79.7142,80.3283,82.1637,81.6264,82.3469,82.9709,81.5477 -"Cutlery and handtool (NAICS = 3322); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3322.S,IP.N3322.S,98.6961,100.6302,100.9195,101.9076,99.9994,103.0830,99.7858 -"Cutlery and handtool (NAICS = 3322); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3322.N,IP.N3322.N,99.7077,98.9005,102.9028,102.2291,101.2365,103.3700,100.9472 -"Architectural and structural metals (NAICS = 3323); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3323.S,IP.N3323.S,99.9107,101.5489,103.9408,102.9094,102.1486,103.9870,102.2810 -"Architectural and structural metals (NAICS = 3323); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3323.N,IP.N3323.N,101.2298,100.2059,103.3615,102.4998,101.4679,103.5379,103.2203 -"Hardware (NAICS = 3325); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3325.S,IP.G3325.S,90.6693,92.3537,93.1342,90.2106,90.7978,91.8996,89.0671 -"Hardware (NAICS = 3325); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3325.N,IP.G3325.N,90.6495,95.1372,95.7570,90.6341,92.3116,89.7883,88.5581 -"Spring and wire product (NAICS = 3326); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3326.S,IP.N3326.S,88.9849,90.6628,91.6463,88.7449,88.8093,89.3951,86.5339 -"Spring and wire product (NAICS = 3326); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3326.N,IP.N3326.N,90.5256,91.2567,93.0278,90.4956,89.2899,87.6971,85.4034 -"Machine shops; turned product; and screw, nut, and bolt (NAICS = 3327); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3327.S,IP.G3327.S,97.6548,97.1790,96.3053,96.6031,96.2747,95.9285,95.5085 -"Machine shops; turned product; and screw, nut, and bolt (NAICS = 3327); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3327.N,IP.G3327.N,97.7623,96.1825,97.0611,97.9488,97.3185,95.8850,96.1062 -"Coating, engraving, heat treating, and allied activities (NAICS = 3328); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3328.S,IP.N3328.S,105.3149,107.1655,104.7612,104.1537,105.7353,105.2714,103.1270 -"Coating, engraving, heat treating, and allied activities (NAICS = 3328); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3328.N,IP.N3328.N,105.5254,104.5392,104.4078,106.3905,107.6392,106.0463,103.9429 -"Other fabricated metal product (NAICS = 3329); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3329.S,IP.G3329.S,107.2420,107.9965,108.0521,108.7297,108.1761,109.9612,109.0035 -"Other fabricated metal product (NAICS = 3329); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3329.N,IP.G3329.N,108.3894,107.4777,108.2658,108.4968,107.8477,109.3125,108.7785 -"Ball and roller bearing (NAICS = 332991); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G332991.S,IP.G332991.S,78.7158,80.2202,82.0280,81.8428,80.2736,81.9198,79.3759 -"Ball and roller bearing (NAICS = 332991); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G332991.N,IP.G332991.N,79.0588,79.4998,82.3437,81.9372,81.1243,81.8004,80.3489 -"Machinery (NAICS = 333); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G333.S,IP.G333.S,98.8167,98.0658,100.0264,98.5349,98.0574,98.8230,98.1326 -"Machinery (NAICS = 333); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G333.N,IP.G333.N,97.7220,101.8090,104.3224,102.5335,102.8769,99.2894,99.4388 -"Agriculture, construction, and mining machinery (NAICS = 3331); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3331.S,IP.G3331.S,114.8840,115.0997,120.1469,116.0792,116.6036,116.1739,113.4981 -"Agriculture, construction, and mining machinery (NAICS = 3331); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3331.N,IP.G3331.N,116.4559,115.5568,122.4988,117.3813,116.5969,115.2713,113.8519 -"Agricultural implement (NAICS = 33311); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G33311.S,IP.G33311.S,138.3931,139.6842,146.0100,139.6469,140.9650,139.7440,136.6554 -"Agricultural implement (NAICS = 33311); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G33311.N,IP.G33311.N,140.5912,140.2947,148.6609,141.2883,141.3457,139.2994,137.6325 -"Farm machinery and equipment (NAICS = 333111); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G333111.S,IP.G333111.S,147.2634,148.6849,155.4600,148.7760,150.4481,148.8094,145.4513 -"Farm machinery and equipment (NAICS = 333111); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G333111.N,IP.G333111.N,149.2037,148.7204,157.5459,149.7491,149.8358,148.0171,146.6206 -"Construction machinery (NAICS = 33312); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G33312.S,IP.G33312.S,105.1333,103.8610,109.3753,106.5136,107.3230,107.9438,105.5961 -"Construction machinery (NAICS = 33312); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G33312.N,IP.G33312.N,105.9787,104.5227,111.7673,108.2490,106.9824,106.2662,105.1415 -"Mining and oil and gas field machinery (NAICS = 33313); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N33313.S,IP.N33313.S,86.1664,87.0329,88.4659,86.8917,85.1212,84.3033,81.8026 -"Mining and oil and gas field machinery (NAICS = 33313); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N33313.N,IP.N33313.N,88.0725,86.9449,90.3509,86.8073,85.1275,84.1165,82.6090 -"Industrial machinery (NAICS = 3332); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3332.S,IP.G3332.S,96.9778,95.9702,94.9924,93.3887,94.7094,96.1716,93.5323 -"Industrial machinery (NAICS = 3332); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3332.N,IP.G3332.N,98.8851,96.5657,95.2243,93.2224,94.3913,95.8721,93.1973 -"Commercial and service industry machinery and other general purpose machinery (NAICS = 3333,9); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3333A9.S,IP.G3333A9.S,105.5002,104.5398,105.1237,104.5766,102.1775,104.0908,102.4161 -"Commercial and service industry machinery and other general purpose machinery (NAICS = 3333,9); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3333A9.N,IP.G3333A9.N,106.2820,103.0682,104.5343,104.8694,102.6226,103.1136,102.5384 -"HVAC, metalworking, and power transmission machinery (NAICS = 3334-6); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3334T6.S,IP.G3334T6.S,83.7316,82.7559,85.2687,84.2337,84.6238,84.6843,86.5334 -"HVAC, metalworking, and power transmission machinery (NAICS = 3334-6); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3334T6.N,IP.G3334T6.N,78.5098,94.3051,96.5993,94.5239,97.7769,87.6119,90.0707 -"Ventilation, heating, air-conditioning, and commercial refrigeration equipment (NAICS = 3334); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3334.S,IP.G3334.S,78.1299,78.7155,84.7074,80.9728,80.0098,79.3298,79.2204 -"Ventilation, heating, air-conditioning, and commercial refrigeration equipment (NAICS = 3334); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3334.N,IP.G3334.N,64.4224,107.4624,109.8572,101.2383,110.1061,86.1904,87.3084 -"Metalworking machinery (NAICS = 3335); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3335.S,IP.G3335.S,90.2727,89.1914,90.5562,92.2209,90.3316,91.7486,94.9994 -"Metalworking machinery (NAICS = 3335); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3335.N,IP.G3335.N,90.8350,88.5502,91.2916,93.5479,90.8140,91.4043,94.9536 -"Engine, turbine, and power transmission equipment (NAICS = 3336); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3336.S,IP.G3336.S,85.6970,82.4372,80.7172,81.2147,85.9303,85.8139,89.3373 -"Engine, turbine, and power transmission equipment (NAICS = 3336); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3336.N,IP.G3336.N,87.5909,80.2380,81.9489,85.5901,86.1204,86.5431,90.0183 -"Computer and electronic product (NAICS = 334); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G334.S,IP.G334.S,115.7863,116.6199,116.4492,116.7753,117.0948,118.2858,117.6896 -"Computer and electronic product (NAICS = 334); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G334.N,IP.G334.N,118.4356,114.4948,113.9228,117.8183,114.8016,117.0175,119.8798 -"Computer and peripheral equipment (NAICS = 3341); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3341.S,IP.G3341.S,157.5085,155.6951,155.9799,159.8630,158.7809,160.4618,156.5274 -"Computer and peripheral equipment (NAICS = 3341); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3341.N,IP.G3341.N,161.4626,149.9214,149.6390,157.2326,157.5490,162.1041,163.5334 -"Communications equipment (NAICS = 3342); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3342.S,IP.G3342.S,191.0098,192.2924,193.2007,194.1901,194.8760,195.3634,195.4042 -"Communications equipment (NAICS = 3342); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3342.N,IP.G3342.N,203.6896,192.4745,184.0599,185.7100,187.1163,192.9377,193.9317 -"Audio and video equipment (NAICS = 3343); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3343.S,IP.G3343.S,140.9688,146.4268,141.7835,143.3802,138.4816,136.3386,130.4287 -"Audio and video equipment (NAICS = 3343); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3343.N,IP.G3343.N,145.4332,140.8664,139.6892,143.8701,137.7896,135.6119,133.1300 -"Semiconductor and other electronic component (NAICS = 3344); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3344.S,IP.G3344.S,134.3801,134.7368,133.7948,134.2706,136.2200,140.0520,140.9565 -"Semiconductor and other electronic component (NAICS = 3344); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3344.N,IP.G3344.N,138.9290,128.1862,125.5020,139.8558,130.1079,136.0587,146.1375 -"Navigational, measuring, electromedical, and control instruments (NAICS = 3345); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3345.S,IP.G3345.S,94.7469,95.7357,95.8264,95.7981,95.6444,95.9044,95.0131 -"Navigational, measuring, electromedical, and control instruments (NAICS = 3345); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3345.N,IP.G3345.N,95.5262,95.3995,96.3249,96.1399,95.2393,95.6131,96.0285 -"Electrical equipment, appliance, and component (NAICS = 335); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G335.S,IP.G335.S,103.6602,103.4266,102.6318,104.1364,102.7319,103.8411,105.4065 -"Electrical equipment, appliance, and component (NAICS = 335); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G335.N,IP.G335.N,102.8962,102.2922,103.3451,104.5090,104.2792,103.9385,105.7604 -"Household appliance (NAICS = 3352); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3352.S,IP.G3352.S,102.5221,98.7767,97.6573,100.3790,97.5381,97.4884,100.7146 -"Household appliance (NAICS = 3352); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3352.N,IP.G3352.N,89.3498,99.4229,105.1894,106.3417,106.3976,101.2877,99.5625 -"Small electrical appliance (NAICS = 33521); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G33521.S,IP.G33521.S,96.2166,91.2646,82.1884,81.3431,77.3576,79.1065,82.3945 -"Small electrical appliance (NAICS = 33521); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G33521.N,IP.G33521.N,99.5803,89.4409,81.9769,79.9508,78.6308,80.0488,84.0453 -"Major appliance (NAICS = 33522); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G33522.S,IP.G33522.S,103.8225,100.2806,100.5446,103.8911,101.2422,100.8821,104.1053 -"Major appliance (NAICS = 33522); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G33522.N,IP.G33522.N,87.7223,101.3609,109.4529,111.1618,111.4570,105.2039,102.4860 -"Electrical equipment except appliances (NAICS = 3351,3,9); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G335@2.S,IP.G335@2.S,103.8687,104.3744,103.6480,104.8962,103.7943,105.1470,106.3626 -"Electrical equipment except appliances (NAICS = 3351,3,9); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G335@2.N,IP.G335@2.N,105.7155,102.8685,102.9310,104.0971,103.8074,104.4682,107.0342 -"Electric lighting equipment (NAICS = 3351); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3351.S,IP.G3351.S,88.6056,85.5967,77.5510,77.6378,73.4245,74.6228,77.9669 -"Electric lighting equipment (NAICS = 3351); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3351.N,IP.G3351.N,92.8176,82.3821,75.8573,75.0673,72.3702,75.0224,79.2639 -"Electrical equipment (NAICS = 3353); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3353.S,IP.G3353.S,114.3974,116.1461,115.6075,117.5800,117.3168,119.7847,122.9486 -"Electrical equipment (NAICS = 3353); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3353.N,IP.G3353.N,116.7703,115.7457,115.6454,117.4471,116.8090,118.2194,123.6024 -"Other electrical equipment and component (NAICS = 3359); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3359.S,IP.G3359.S,100.9068,101.4262,102.5091,103.5328,102.6197,103.1776,102.3427 -"Other electrical equipment and component (NAICS = 3359); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3359.N,IP.G3359.N,101.7385,99.5349,101.4827,102.7037,103.3216,102.8823,102.8666 -"Battery (NAICS = 33591); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G33591.S,IP.G33591.S,110.3979,109.1663,110.7632,113.8685,108.9586,111.8120,112.6237 -"Battery (NAICS = 33591); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G33591.N,IP.G33591.N,107.3471,108.0490,110.7165,111.5613,110.6689,109.2370,111.8295 -"Communication and energy wire and cable (NAICS = 33592); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N33592.S,IP.N33592.S,104.9757,105.6314,106.0665,106.9130,106.0809,106.2000,104.2165 -"Communication and energy wire and cable (NAICS = 33592); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N33592.N,IP.N33592.N,106.6924,105.2535,106.4946,107.4450,106.4692,106.2761,105.9239 -"Other electrical equipment (NAICS = 33593,9); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G33593T9.S,IP.G33593T9.S,97.5438,98.4458,99.5723,100.1441,100.1655,100.2877,99.3559 -"Other electrical equipment (NAICS = 33593,9); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G33593T9.N,IP.G33593T9.N,99.1486,96.0541,98.0127,99.3936,100.7837,100.5180,99.9653 -"Transportation equipment (NAICS = 336); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G336.S,IP.G336.S,99.6526,96.0280,99.1667,100.7635,100.9237,101.1514,102.6498 -"Transportation equipment (NAICS = 336); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G336.N,IP.G336.N,94.5357,92.6862,102.2324,105.3818,102.5311,100.9435,103.9607 -"Motor vehicle (NAICS = 3361); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3361.S,IP.G3361.S,121.0761,111.1536,120.3955,124.2570,122.3939,121.9182,125.1315 -"Motor vehicle (NAICS = 3361); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3361.N,IP.G3361.N,105.6736,105.0566,129.7317,131.7730,127.8348,122.9496,129.8374 -"Automobile and light duty motor vehicle (NAICS = 33611); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G33611.S,IP.G33611.S,121.8832,112.1900,120.6410,123.8952,123.2740,123.4750,127.1382 -"Automobile and light duty motor vehicle (NAICS = 33611); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G33611.N,IP.G33611.N,105.9825,106.1416,130.5656,131.6249,128.5786,124.4680,131.7824 -"Automobile (NAICS = 336111); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G336111.S,IP.G336111.S,103.4095,87.2764,92.2779,94.0581,91.3681,100.9092,97.3401 -"Automobile (NAICS = 336111); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G336111.N,IP.G336111.N,89.4399,82.8261,100.8902,98.6499,96.6084,99.5602,100.2287 -"Light truck and utility vehicle (NAICS = 336112); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G336112.S,IP.G336112.S,127.1860,119.2295,128.6396,132.3028,132.2433,129.9042,135.5418 -"Light truck and utility vehicle (NAICS = 336112); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G336112.N,IP.G336112.N,110.7249,112.7371,138.9506,140.9132,137.5861,131.5407,140.6824 -"Heavy duty truck (NAICS = 33612); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G33612.S,IP.G33612.S,110.9995,97.6326,118.4227,131.1042,111.2894,101.0431,97.8098 -"Heavy duty truck (NAICS = 33612); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G33612.N,IP.G33612.N,102.5872,90.7416,119.3676,135.6229,118.7535,102.6245,103.4468 -"Motor vehicle body and trailer (NAICS = 3362); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3362.S,IP.G3362.S,92.6426,83.7167,87.1026,89.1780,89.7042,89.9859,88.3980 -"Motor vehicle body and trailer (NAICS = 3362); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3362.N,IP.G3362.N,81.6565,77.5955,92.4406,97.6275,97.3164,93.9712,91.0919 -"Truck trailer (NAICS = 336212); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G336212.S,IP.G336212.S,108.3480,91.4171,93.1657,94.3899,94.9588,91.5666,90.6269 -"Truck trailer (NAICS = 336212); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G336212.N,IP.G336212.N,90.8585,79.3831,98.3076,104.8397,100.2016,94.0781,96.1558 -"Motor home (NAICS = 336213); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N336213.S,IP.N336213.S,76.2516,63.4626,66.8176,67.4097,64.7343,59.5140, -"Motor home (NAICS = 336213); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N336213.N,IP.N336213.N,60.5591,63.3552,78.2374,67.9887,71.5132,61.0906, -"Travel trailer and camper (NAICS = 336214); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G336214.S,IP.G336214.S,72.6868,64.0495,69.6632,74.7730,75.9907,76.8120,75.2556 -"Travel trailer and camper (NAICS = 336214); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G336214.N,IP.G336214.N,57.0417,57.7333,78.5307,89.8643,91.2896,86.2063,78.9659 -"Motor vehicle parts (NAICS = 3363); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3363.S,IP.G3363.S,100.6156,98.2762,101.5592,102.5639,102.6565,103.0120,104.2306 -"Motor vehicle parts (NAICS = 3363); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3363.N,IP.G3363.N,98.0086,93.2002,102.8141,108.7272,101.6194,101.1862,103.3977 -"Aerospace product and parts (NAICS = 3364); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3364.S,IP.G3364.S,85.4152,86.3435,85.0513,85.2586,86.5462,86.9917,87.7016 -"Aerospace product and parts (NAICS = 3364); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3364.N,IP.G3364.N,86.5250,86.5277,85.0764,85.6254,86.1277,86.1483,88.0518 -"Aircraft and parts (NAICS = 336411-3); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G336411T3.S,IP.G336411T3.S,80.1432,80.8965,79.7851,79.8628,81.1784,81.5153,82.3074 -"Aircraft and parts (NAICS = 336411-3); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G336411T3.N,IP.G336411T3.N,81.2649,81.1634,79.8410,80.3112,80.8310,80.8044,82.5566 -"Railroad eq., ships and boats, and other transportation equipment (NAICS = 3365-9); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3365T9.S,IP.G3365T9.S,102.7172,101.2566,101.9717,103.4144,105.3516,106.4094,108.9867 -"Railroad eq., ships and boats, and other transportation equipment (NAICS = 3365-9); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3365T9.N,IP.G3365T9.N,101.8072,100.2182,101.8553,107.5959,106.4745,106.3945,109.4684 -"Railroad rolling stock (NAICS = 3365); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3365.S,IP.N3365.S,72.5390,73.4990,71.3690,74.6082,73.9520,76.8643,77.1708 -"Railroad rolling stock (NAICS = 3365); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3365.N,IP.N3365.N,74.1965,72.0565,70.3591,74.6859,72.3399,76.2212,76.5919 -"Ship and boat building (NAICS = 3366); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3366.S,IP.G3366.S,110.5958,107.3760,109.8243,110.2414,113.1321,113.3455,117.1244 -"Ship and boat building (NAICS = 3366); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3366.N,IP.G3366.N,108.0342,105.8012,110.3791,117.1662,115.9900,114.2886,118.7609 -"Other transportation equipment (NAICS = 3369); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3369.S,IP.N3369.S,99.5901,101.1325,99.1015,102.1328,103.0766,105.2623,106.0724 -"Other transportation equipment (NAICS = 3369); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3369.N,IP.N3369.N,101.2726,101.4971,97.7016,101.6531,101.2735,103.1578,104.1921 -"Furniture and related product (NAICS = 337); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G337.S,IP.G337.S,77.4047,76.6185,77.6496,76.9191,77.7549,76.1665,77.2765 -"Furniture and related product (NAICS = 337); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G337.N,IP.G337.N,78.1041,75.0103,77.2986,76.5700,77.1625,76.3503,78.2004 -"Household and institutional furniture and kitchen cabinet (NAICS = 3371); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3371.S,IP.N3371.S,80.8813,80.9516,80.9568,81.2040,82.2729,80.3470,81.2856 -"Household and institutional furniture and kitchen cabinet (NAICS = 3371); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3371.N,IP.N3371.N,81.7522,79.8155,81.2783,81.3144,81.7458,79.8137,82.1802 -"Office and other furniture (NAICS = 3372,9); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3372A9.S,IP.G3372A9.S,73.8739,72.2316,74.2869,72.5811,73.1838,71.9331,73.2124 -"Office and other furniture (NAICS = 3372,9); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G3372A9.N,IP.G3372A9.N,74.4289,70.1788,73.2909,71.7994,72.5522,72.8557,74.1908 -"Miscellaneous (NAICS = 339); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G339.S,IP.G339.S,107.7731,107.1942,109.2186,109.1388,107.8046,106.4554,104.6150 -"Miscellaneous (NAICS = 339); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.G339.N,IP.G339.N,108.8593,105.9249,108.8590,108.9161,107.0353,105.8339,105.5009 -"Medical equipment and supplies (NAICS = 3391); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3391.S,IP.N3391.S,112.3850,111.4496,113.3818,112.5022,111.9962,109.6834,108.4580 -"Medical equipment and supplies (NAICS = 3391); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N3391.N,IP.N3391.N,113.3710,110.9114,113.8339,112.3501,111.0873,108.9367,109.6067 -"Logging (NAICS = 1133); s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N1133.S,IP.N1133.S,87.5426,83.3198,89.2743,87.6519,86.4875,86.7503,89.3528 -"Logging (NAICS = 1133); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_DURABLE_GOODS_DETAIL/IP.N1133.N,IP.N1133.N,88.0603,80.1955,89.0513,84.7984,79.0087,80.4493,89.1433 -"Nondurable manufacturing (NAICS); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.GMFN.S,IP.GMFN.S,99.0714,97.5605,98.6864,98.9484,98.3613,99.7130,100.4869 -"Nondurable manufacturing (NAICS); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.GMFN.N,IP.GMFN.N,98.1646,95.8547,98.2578,99.0865,98.8168,99.9274,101.9064 -"Food (NAICS = 311); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G311.S,IP.G311.S,102.3941,101.5505,102.0525,101.3760,101.6162,102.2527,101.9508 -"Food (NAICS = 311); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G311.N,IP.G311.N,101.9844,100.0786,101.6374,101.2198,101.2898,100.3346,101.7457 -"Animal food (NAICS = 3111); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3111.S,IP.G3111.S,101.7800,99.0899,99.7917,99.5075,97.2671,100.5833,100.9837 -"Animal food (NAICS = 3111); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3111.N,IP.G3111.N,103.5003,100.2434,99.7430,98.6694,95.5867,98.1916,98.8333 -"Grain and oilseed milling (NAICS = 3112); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3112.S,IP.G3112.S,103.3433,104.3258,104.8079,105.1645,101.6606,104.8507,106.6409 -"Grain and oilseed milling (NAICS = 3112); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3112.N,IP.G3112.N,102.1280,104.3575,105.1983,108.4496,103.1783,104.3964,106.2580 -"Sugar and confectionery product (NAICS = 3113); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3113.S,IP.G3113.S,95.9359,94.9336,98.6816,103.7956,104.7722,103.9562,102.0912 -"Sugar and confectionery product (NAICS = 3113); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3113.N,IP.G3113.N,106.7814,98.3062,98.6840,104.4577,101.4421,94.9681,92.7800 -"Fruit and vegetable preserving and specialty food (NAICS = 3114); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3114.S,IP.G3114.S,97.2930,96.3162,95.7610,95.1384,95.5544,96.0994,93.5105 -"Fruit and vegetable preserving and specialty food (NAICS = 3114); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3114.N,IP.G3114.N,93.0244,89.6264,90.7924,90.3708,89.9645,90.8337,91.4143 -"Dairy product (NAICS = 3115); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3115.S,IP.G3115.S,104.5344,102.7279,103.4948,104.7383,104.6330,104.0681,104.7188 -"Dairy product (NAICS = 3115); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3115.N,IP.G3115.N,101.8144,101.7884,105.9982,109.4971,109.0732,107.7400,107.3675 -"Dairy product (except frozen) (NAICS = 31151); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G31151.S,IP.G31151.S,104.1426,102.9675,103.0249,103.5357,104.2221,103.2448,103.9160 -"Dairy product (except frozen) (NAICS = 31151); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G31151.N,IP.G31151.N,103.9731,103.8637,105.7168,107.8653,107.9482,106.5225,105.2524 -"Fluid milk (NAICS = 311511); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N311511.S,IP.N311511.S,101.0533,100.5461,100.5633,100.6242,100.2729,100.1186, -"Fluid milk (NAICS = 311511); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N311511.N,IP.N311511.N,99.1829,100.4219,102.2230,103.3344,103.4941,103.1189, -"Creamery butter (NAICS = 311512); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N311512.S,IP.N311512.S,135.8804,129.8590,129.8816,139.1409,141.0015,135.7342, -"Creamery butter (NAICS = 311512); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N311512.N,IP.N311512.N,144.3635,152.3467,150.7775,157.3262,152.0685,143.7947, -"Cheese (NAICS = 311513); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N311513.S,IP.N311513.S,117.7970,117.3960,118.1385,116.9394,119.8840,118.9070, -"Cheese (NAICS = 311513); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N311513.N,IP.N311513.N,118.3825,117.7480,119.5205,120.0702,120.5161,119.0705, -"Dry, condensed, and evaporated dairy product (NAICS = 311514); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N311514.S,IP.N311514.S,80.7622,77.5596,76.4596,79.6484,78.1082,76.2226, -"Dry, condensed, and evaporated dairy product (NAICS = 311514); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N311514.N,IP.N311514.N,81.4812,78.6303,81.2050,87.5500,87.6019,85.2423, -"Ice cream and frozen dessert (NAICS = 31152); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N31152.S,IP.N31152.S,108.7509,101.6273,108.3644,115.7833,109.0090,111.9161, -"Ice cream and frozen dessert (NAICS = 31152); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N31152.N,IP.N31152.N,85.2839,85.9573,110.0548,124.9787,120.2752,119.7022, -"Animal slaughtering and processing (NAICS = 3116); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3116.S,IP.G3116.S,105.2476,102.4321,104.7345,101.1409,103.9684,104.2103,104.4577 -"Animal slaughtering and processing (NAICS = 3116); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3116.N,IP.G3116.N,102.9822,102.5013,105.7240,100.7841,104.8599,101.1264,105.9759 -"Animal (except poultry) slaughtering and meat processing (NAICS = 311611-3); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G311611T3.S,IP.G311611T3.S,103.3502,99.9645,102.6566,97.9375,100.7367,102.0635,101.5532 -"Animal (except poultry) slaughtering and meat processing (NAICS = 311611-3); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G311611T3.N,IP.G311611T3.N,101.8713,100.1694,103.9241,98.1707,102.5125,98.4310,102.8873 -"Beef (NAICS = 311611-3pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N311611T3B.S,IP.N311611T3B.S,99.1194,94.5717,96.9997,92.7253,96.7456,98.0983, -"Beef (NAICS = 311611-3pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N311611T3B.N,IP.N311611T3B.N,95.4518,93.4259,96.5625,91.9802,98.3101,95.3208, -"Pork (NAICS = 311611-3pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N311611T3P.S,IP.N311611T3P.S,109.6918,108.5669,111.6761,106.0323,106.7749,107.9147, -"Pork (NAICS = 311611-3pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N311611T3P.N,IP.N311611T3P.N,112.2376,111.3930,116.1175,107.8512,108.7718,102.6805, -"Miscellaneous meats (NAICS = 311611-3pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N311611T3Z.S,IP.N311611T3Z.S,107.2552,102.6234,106.9418,108.7037,99.2592,105.4566, -"Miscellaneous meats (NAICS = 311611-3pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N311611T3Z.N,IP.N311611T3Z.N,109.2816,98.4168,107.7839,118.1836,105.7100,101.7865, -"Poultry processing (NAICS = 311615); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N311615.S,IP.N311615.S,108.3517,106.9229,108.2776,107.3689,110.2275,107.9459, -"Poultry processing (NAICS = 311615); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N311615.N,IP.N311615.N,104.1637,106.5795,108.5045,105.5396,108.9398,106.0637, -"Bakeries and tortilla (NAICS = 3118); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N3118.S,IP.N3118.S,101.0344,103.7942,102.1239,103.7211,104.9416,105.7465,105.2282 -"Bakeries and tortilla (NAICS = 3118); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N3118.N,IP.N3118.N,103.0034,101.8965,100.8666,102.9699,104.0109,105.6630,105.6703 -"Other food (NAICS = 3119); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3119.S,IP.G3119.S,106.5055,106.4951,106.0153,104.3537,103.2464,103.2505,103.0303 -"Other food (NAICS = 3119); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3119.N,IP.G3119.N,108.1916,104.4216,104.9168,103.7446,103.5290,102.4270,102.3290 -"Coffee and tea (NAICS = 31192); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G31192.S,IP.G31192.S,90.1387,89.6428,88.8687,87.7688,86.8354,87.4810,86.8254 -"Coffee and tea (NAICS = 31192); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G31192.N,IP.G31192.N,91.0868,87.8803,88.2453,87.0639,86.7355,86.2796,86.3011 -"Beverage and tobacco product (NAICS = 312); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G312.S,IP.G312.S,93.2632,91.4354,91.4268,92.8709,90.5536,91.8558,94.5864 -"Beverage and tobacco product (NAICS = 312); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G312.N,IP.G312.N,83.7937,87.6752,93.9222,96.5813,94.8145,93.3997,101.3200 -"Beverage (NAICS = 3121); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3121.S,IP.G3121.S,113.7171,113.4946,114.3885,112.8939,109.4528,112.5546,116.0244 -"Beverage (NAICS = 3121); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3121.N,IP.G3121.N,111.5285,107.3045,112.2567,115.7640,112.8899,115.6979,124.4643 -"Soft drink and ice (NAICS = 31211); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N31211.S,IP.N31211.S,110.6344,114.7744,111.1636,110.4002,109.0131,110.9807,114.5711 -"Soft drink and ice (NAICS = 31211); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N31211.N,IP.N31211.N,107.6201,111.8950,109.2876,109.3165,109.6882,112.5146,114.8396 -"Breweries (NAICS = 31212); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N31212.S,IP.N31212.S,89.7050,91.8520,93.7760,88.8757,84.6345,, -"Breweries (NAICS = 31212); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N31212.N,IP.N31212.N,83.7136,82.5960,88.0542,94.4182,88.3926,, -"Tobacco (NAICS = 3122); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3122.S,IP.G3122.S,69.5613,66.2369,65.3546,69.5551,68.4133,67.9573,69.8620 -"Tobacco (NAICS = 3122); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3122.N,IP.G3122.N,53.2504,64.8829,72.1105,73.8366,73.2039,67.8854,74.6160 -"Textile mills (NAICS = 313); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G313.S,IP.G313.S,72.5925,73.0454,74.0214,76.9060,76.3428,78.3665,79.9612 -"Textile mills (NAICS = 313); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G313.N,IP.G313.N,73.0555,71.0228,73.7573,77.1206,77.7431,78.2431,80.6937 -"Fiber, yarn, and thread mills (NAICS = 3131); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3131.S,IP.G3131.S,59.8151,61.0101,62.2490,64.4614,64.1622,65.7986,67.4858 -"Fiber, yarn, and thread mills (NAICS = 3131); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3131.N,IP.G3131.N,59.9134,59.0129,62.4119,64.8188,65.3557,66.0566,68.4658 -"Fabric mills (NAICS = 3132); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3132.S,IP.G3132.S,74.5208,74.4154,75.1271,78.3858,77.2233,78.7139,79.9319 -"Fabric mills (NAICS = 3132); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3132.N,IP.G3132.N,74.9531,72.9710,74.7896,78.9322,78.8032,78.3683,80.2695 -"Textile and fabric finishing and fabric coating mills (NAICS = 3133); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3133.S,IP.G3133.S,78.3662,79.3848,80.6952,83.3449,83.7626,87.1198,89.3913 -"Textile and fabric finishing and fabric coating mills (NAICS = 3133); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3133.N,IP.G3133.N,79.1475,76.1938,80.2592,82.8013,84.9593,87.1457,90.7106 -"Textile product mills (NAICS = 314); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G314.S,IP.G314.S,82.6406,82.1403,83.8353,80.4480,79.9789,81.7514,82.4672 -"Textile product mills (NAICS = 314); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G314.N,IP.G314.N,77.8788,79.0936,80.9259,80.2741,81.7791,80.2525,84.7754 -"Textile furnishings mills (NAICS = 3141); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3141.S,IP.G3141.S,72.0278,71.8457,72.0898,70.6164,69.8184,70.0890,70.0173 -"Textile furnishings mills (NAICS = 3141); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3141.N,IP.G3141.N,61.5608,67.2340,68.0754,69.9546,73.6428,67.6915,74.9281 -"Carpet and rug mills (NAICS = 31411); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G31411.S,IP.G31411.S,66.5049,66.2099,65.9013,65.5804,65.1994,64.7932,64.4440 -"Carpet and rug mills (NAICS = 31411); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G31411.N,IP.G31411.N,49.0666,60.6475,61.0319,64.9381,71.8725,61.8729,71.4225 -"Other textile product mills (NAICS = 3149); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3149.S,IP.G3149.S,95.1441,94.2753,97.6483,92.0444,91.9526,95.4603,97.0847 -"Other textile product mills (NAICS = 3149); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3149.N,IP.G3149.N,96.9485,93.0331,96.0129,92.4465,91.4463,95.0002,96.4227 -"Apparel (NAICS = 315); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G315.S,IP.G315.S,71.5072,70.8494,69.8198,67.8076,70.8577,70.2740,70.2445 -"Apparel (NAICS = 315); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G315.N,IP.G315.N,73.0594,68.8599,70.3959,68.1509,70.8462,70.0446,70.9867 -"Leather and allied product (NAICS = 316); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G316.S,IP.G316.S,108.5784,109.0770,108.5728,108.8828,105.8903,106.5847,110.5751 -"Leather and allied product (NAICS = 316); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G316.N,IP.G316.N,106.0653,107.6296,107.1599,109.2017,110.1111,109.0523,111.2125 -"Paper (NAICS = 322); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G322.S,IP.G322.S,86.0626,85.7918,87.2291,86.9501,87.0085,87.4494,88.7263 -"Paper (NAICS = 322); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G322.N,IP.G322.N,84.9091,85.2558,88.0746,86.8161,88.1064,87.5554,89.5423 -"Pulp, paper, and paperboard mills (NAICS = 3221); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3221.S,IP.G3221.S,79.0307,79.1446,81.0285,80.7161,80.6770,81.2239,82.9788 -"Pulp, paper, and paperboard mills (NAICS = 3221); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3221.N,IP.G3221.N,78.9417,79.6063,82.1329,80.6197,80.7349,81.9794,83.0669 -"Pulp mills (NAICS = 32211); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N32211.S,IP.N32211.S,101.5701,97.3614,102.1338,103.1109,101.2794,103.7713, -"Pulp mills (NAICS = 32211); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N32211.N,IP.N32211.N,103.0111,97.1498,102.3577,102.1450,101.0635,103.9135, -"Paper mills (NAICS = 32212); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32212.S,IP.G32212.S,70.7616,72.2085,74.0901,73.2211,72.4824,73.0018,75.0326 -"Paper mills (NAICS = 32212); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32212.N,IP.G32212.N,70.2351,73.8229,75.6845,73.1720,72.2608,72.7088,74.3637 -"Paper (except newsprint) mills (NAICS = 322121); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N322121.S,IP.N322121.S,71.0936,72.5608,74.4328,73.5570,,, -"Paper (except newsprint) mills (NAICS = 322121); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N322121.N,IP.N322121.N,70.5680,74.1946,76.0455,73.5066,,, -"Paperboard mills (NAICS = 32213); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N32213.S,IP.N32213.S,85.2816,84.5134,85.9200,86.0625,,, -"Paperboard mills (NAICS = 32213); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N32213.N,IP.N32213.N,85.4015,83.6378,86.5177,85.9912,,, -"Converted paper product (NAICS = 3222); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3222.S,IP.G3222.S,92.9537,92.3171,93.3350,93.0868,93.2375,93.5798,94.4113 -"Converted paper product (NAICS = 3222); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3222.N,IP.G3222.N,90.7892,90.8352,93.9383,92.9172,95.3202,93.0761,95.9151 -"Paperboard container (NAICS = 32221); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N32221.S,IP.N32221.S,90.2240,89.3539,88.9307,88.3676,,, -"Paperboard container (NAICS = 32221); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N32221.N,IP.N32221.N,85.4579,86.0230,89.4149,87.9996,,, -"Paper bag and coated and treated paper (NAICS = 32222); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32222.S,IP.G32222.S,75.2639,74.9466,78.1868,78.8151,77.9104,78.3834,80.6881 -"Paper bag and coated and treated paper (NAICS = 32222); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32222.N,IP.G32222.N,76.8306,75.3836,77.6467,79.1960,79.7485,77.7045,79.8834 -"Other converted paper products (NAICS = 32223,9); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32223A9.S,IP.G32223A9.S,113.9808,113.5653,115.8493,115.5677,116.0925,116.3931,117.9884 -"Other converted paper products (NAICS = 32223,9); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32223A9.N,IP.G32223A9.N,114.1881,114.3197,117.5356,115.3235,116.0257,114.8409,117.9408 -"Printing and related support activities (NAICS = 323); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G323.S,IP.G323.S,80.6152,81.7001,82.9267,83.7230,84.6393,84.2501,86.4347 -"Printing and related support activities (NAICS = 323); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G323.N,IP.G323.N,81.7096,80.8683,82.2883,84.1352,84.8432,84.6990,86.6551 -"Petroleum and coal products (NAICS = 324); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G324.S,IP.G324.S,93.6831,91.6278,92.6833,94.5957,90.9141,94.1743,94.6060 -"Petroleum and coal products (NAICS = 324); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G324.N,IP.G324.N,91.5253,85.6341,87.5035,92.4119,91.4842,97.2351,98.8667 -"Petroleum refineries (NAICS = 32411); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32411.S,IP.G32411.S,91.6079,89.7451,89.7137,91.4056,89.6949,91.4227,91.9591 -"Petroleum refineries (NAICS = 32411); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32411.N,IP.G32411.N,90.5224,85.1323,85.9726,90.2425,90.1529,94.2200,95.7252 -"Aviation fuel and kerosene (NAICS = 32411pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N32411A.S,IP.N32411A.S,103.0353,100.3351,99.7556,105.9787,100.0694,, -"Aviation fuel and kerosene (NAICS = 32411pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N32411A.N,IP.N32411A.N,108.2892,100.1357,96.7606,103.2666,102.8103,, -"Distillate fuel oil (NAICS = 32411pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N32411D.S,IP.N32411D.S,85.3984,80.2481,75.4167,81.9498,81.9978,, -"Distillate fuel oil (NAICS = 32411pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N32411D.N,IP.N32411D.N,87.9612,77.8968,72.3459,79.1624,80.1297,, -"Automotive gasoline (NAICS = 32411pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N32411G.S,IP.N32411G.S,89.6922,89.0564,88.6420,87.7905,88.9051,, -"Automotive gasoline (NAICS = 32411pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N32411G.N,IP.N32411G.N,87.8497,82.9331,85.9517,87.2468,89.2704,, -"Residual fuel oil (NAICS = 32411pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N32411R.S,IP.N32411R.S,134.0203,131.8255,168.0856,161.7377,124.8656,, -"Residual fuel oil (NAICS = 32411pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N32411R.N,IP.N32411R.N,122.6852,136.7002,170.0004,173.2495,126.1911,, -"Other refinery output (NAICS = 32411pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32411X.S,IP.G32411X.S,89.4936,91.4090,95.0380,93.9191,89.3998,93.5827,93.9080 -"Other refinery output (NAICS = 32411pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32411X.N,IP.G32411X.N,80.2521,81.4801,83.1233,92.1440,94.0746,103.5141,105.4052 -"Paving, roofing, and other petroleum and coal products (NAICS = 32412,9); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N32412A9.S,IP.N32412A9.S,96.7964,93.8568,100.8153,103.7696,89.6537,100.9464,100.7763 -"Paving, roofing, and other petroleum and coal products (NAICS = 32412,9); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N32412A9.N,IP.N32412A9.N,89.1690,81.0073,88.3950,96.3870,90.9631,105.3672,107.5451 -"Chemical (NAICS = 325); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G325.S,IP.G325.S,103.7028,101.2194,103.2941,103.4676,103.1915,105.2738,106.5475 -"Chemical (NAICS = 325); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G325.N,IP.G325.N,104.6321,100.8440,103.3398,103.8071,103.2021,105.9461,107.0945 -"Basic chemical (NAICS = 3251); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3251.S,IP.G3251.S,93.1675,88.5576,89.8663,90.8069,89.4059,91.6582,93.1072 -"Basic chemical (NAICS = 3251); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3251.N,IP.G3251.N,92.5453,88.8861,89.8007,90.8835,89.2049,91.6257,93.8174 -"Organic chemicals (NAICS = 32511,9); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32511A9.S,IP.G32511A9.S,90.6436,82.4260,85.8102,86.5807,83.9013,86.9409,88.7376 -"Organic chemicals (NAICS = 32511,9); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32511A9.N,IP.G32511A9.N,89.3082,82.4587,86.1940,87.1486,84.1403,87.6088,89.7025 -"Basic inorganic chemicals (NAICS = 32512-8); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32512T8.S,IP.G32512T8.S,99.4865,102.7386,99.5111,100.8327,102.2214,102.7667,103.4652 -"Basic inorganic chemicals (NAICS = 32512-8); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32512T8.N,IP.G32512T8.N,100.4198,103.7108,98.4587,99.8312,101.0507,101.1962,103.6209 -"Industrial gas (NAICS = 32512); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32512.S,IP.G32512.S,129.0645,134.3097,129.3739,130.8883,132.8146,133.4129,134.6440 -"Industrial gas (NAICS = 32512); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32512.N,IP.G32512.N,130.1226,136.3767,127.2100,129.7651,131.6943,132.0410,135.2757 -"Synthetic dye and pigment (NAICS = 32513); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32513.S,IP.G32513.S,80.5834,83.5243,80.4495,81.6093,82.2257,83.2020,83.6556 -"Synthetic dye and pigment (NAICS = 32513); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32513.N,IP.G32513.N,81.1934,83.2983,78.2204,79.5248,80.2514,81.2870,83.6321 -"Other basic inorganic chemical (NAICS = 32518pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32518.S,IP.G32518.S,92.4497,95.0561,92.3998,93.6870,95.0118,95.4746,96.0195 -"Other basic inorganic chemical (NAICS = 32518pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32518.N,IP.G32518.N,93.3931,95.8289,91.9279,92.8903,93.9370,93.8685,96.0281 -"Alkalies and chlorine (NAICS = 32518pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N32518C.S,IP.N32518C.S,65.9928,67.2990,68.1073,68.3580,,, -"Alkalies and chlorine (NAICS = 32518pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N32518C.N,IP.N32518C.N,67.9301,68.1741,69.4996,68.2233,,, -"Resin, synthetic rubber, and artificial and synthetic fibers and filaments (NAICS = 3252); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3252.S,IP.G3252.S,89.5133,83.9435,90.1893,88.6064,86.3644,88.4947,89.4666 -"Resin, synthetic rubber, and artificial and synthetic fibers and filaments (NAICS = 3252); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3252.N,IP.G3252.N,88.3308,84.4577,92.7149,89.4164,87.9617,89.4127,90.3121 -"Resin and synthetic rubber (NAICS = 32521); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32521.S,IP.G32521.S,91.7851,85.8100,92.5832,90.7180,88.6049,90.9179,91.9761 -"Resin and synthetic rubber (NAICS = 32521); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32521.N,IP.G32521.N,90.5369,86.4437,95.1932,91.5570,90.4055,91.9067,92.8296 -"Plastics material and resin (NAICS = 325211); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N325211.S,IP.N325211.S,93.1821,86.7985,94.1521,92.0074,90.1193,92.5490, -"Plastics material and resin (NAICS = 325211); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.N325211.N,IP.N325211.N,91.7806,87.3241,96.8413,92.9029,92.0374,93.5657, -"Synthetic rubber (NAICS = 325212); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G325212.S,IP.G325212.S,78.5314,76.9481,77.4767,78.6345,74.0247,75.1237,75.2534 -"Synthetic rubber (NAICS = 325212); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G325212.N,IP.G325212.N,78.2928,78.1658,78.5878,78.2090,73.9269,75.1544,76.8827 -"Artificial and synthetic fibers and filaments (NAICS = 32522); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32522.S,IP.G32522.S,63.3516,62.0212,62.8166,64.0619,60.6713,60.9378,61.0356 -"Artificial and synthetic fibers and filaments (NAICS = 32522); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32522.N,IP.G32522.N,62.8939,61.3557,64.4266,64.5701,60.2414,61.1397,61.7701 -"Pesticide, fertilizer, and other agricultural chemical (NAICS = 3253); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3253.S,IP.G3253.S,115.2019,101.3228,107.0535,112.8798,110.9841,113.2523,115.5004 -"Pesticide, fertilizer, and other agricultural chemical (NAICS = 3253); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3253.N,IP.G3253.N,119.5023,100.6903,107.7220,113.8120,112.6902,112.9997,112.8435 -"Pharmaceutical and medicine (NAICS = 3254); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3254.S,IP.G3254.S,117.7927,117.1797,118.1188,117.7509,118.4538,120.4456,121.9280 -"Pharmaceutical and medicine (NAICS = 3254); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3254.N,IP.G3254.N,120.2844,116.8980,117.2428,118.0091,118.2074,122.1618,122.5191 -"Chemicals except pharmaceuticals and medicines (NAICS = 3251-3,5-9); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G325@4.S,IP.G325@4.S,95.2341,91.7514,94.4316,94.9010,94.0875,96.2063,97.3564 -"Chemicals except pharmaceuticals and medicines (NAICS = 3251-3,5-9); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G325@4.N,IP.G325@4.N,95.3122,91.3341,94.9876,95.2876,94.2441,96.3011,97.8818 -"Paints, soaps and toiletries, and other chemical products (NAICS = 3255-9); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3255T9.S,IP.G3255T9.S,96.5469,97.4580,99.6953,99.3505,100.0704,102.0059,102.6535 -"Paints, soaps and toiletries, and other chemical products (NAICS = 3255-9); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3255T9.N,IP.G3255T9.N,97.1516,95.7950,100.1745,99.8413,99.7484,102.0003,103.5095 -"Paints and other chemical products (NAICS = 3255,9); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3255A9.S,IP.G3255A9.S,95.1046,94.0333,96.2188,95.7330,95.7129,96.1650,96.5759 -"Paints and other chemical products (NAICS = 3255,9); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3255A9.N,IP.G3255A9.N,94.9744,91.6245,96.9733,96.5839,94.5653,95.2674,96.5791 -"Paint, coating, and adhesive (NAICS = 3255); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3255.S,IP.G3255.S,98.0897,99.4305,98.4738,98.7256,96.7554,98.1931,97.2372 -"Paint, coating, and adhesive (NAICS = 3255); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3255.N,IP.G3255.N,97.8644,94.9550,99.4850,100.8417,94.4444,96.2277,95.9615 -"Paint and coating (NAICS = 32551); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32551.S,IP.G32551.S,92.3566,93.7437,92.9596,93.0666,91.2909,92.5610,91.7705 -"Paint and coating (NAICS = 32551); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32551.N,IP.G32551.N,91.7087,89.4200,93.8520,95.5717,89.6559,90.7806,90.4079 -"Soap, cleaning compound, and toilet preparation (NAICS = 3256); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3256.S,IP.G3256.S,97.9749,100.8620,103.1506,102.9466,104.4048,107.8209,108.7046 -"Soap, cleaning compound, and toilet preparation (NAICS = 3256); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3256.N,IP.G3256.N,99.3121,99.9436,103.3556,103.0786,104.9083,108.7077,110.4139 -"Plastics and rubber products (NAICS = 326); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G326.S,IP.G326.S,103.3795,101.9374,102.3816,102.6582,102.8501,102.8190,102.3809 -"Plastics and rubber products (NAICS = 326); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G326.N,IP.G326.N,103.1052,100.9760,102.7743,102.5520,102.6132,102.4892,103.6658 -"Plastics product (NAICS = 3261); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3261.S,IP.G3261.S,103.5135,102.3672,102.8550,103.1322,104.5813,105.1234,103.9642 -"Plastics product (NAICS = 3261); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3261.N,IP.G3261.N,104.3366,101.0774,102.7231,102.7420,103.8641,104.5999,105.1952 -"Rubber product (NAICS = 3262); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3262.S,IP.G3262.S,102.5944,100.0040,100.2772,100.5506,95.8577,93.6016,95.9614 -"Rubber product (NAICS = 3262); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G3262.N,IP.G3262.N,98.0260,100.3030,102.6903,101.5310,97.4706,94.0088,97.4370 -"Tire (NAICS = 32621); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32621.S,IP.G32621.S,91.9196,85.1142,89.6098,92.0026,85.8227,81.9292,84.1600 -"Tire (NAICS = 32621); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32621.N,IP.G32621.N,78.5829,84.8195,95.1237,93.8506,89.6368,83.6269,85.7435 -"Rubber products ex. tires (NAICS = 32622,9); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32622A9.S,IP.G32622A9.S,112.1704,113.3173,109.8506,108.2502,104.8629,104.0462,106.5240 -"Rubber products ex. tires (NAICS = 32622,9); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G32622A9.N,IP.G32622A9.N,115.3844,114.1576,109.5485,108.4876,104.5549,103.3283,107.9159 -"Newspaper, periodical, book, and directory publishers (NAICS = 5111); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G5111.S,IP.G5111.S,77.2478,79.7251,79.6239,79.6175,79.8510,80.4561,81.0429 -"Newspaper, periodical, book, and directory publishers (NAICS = 5111); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G5111.N,IP.G5111.N,76.6410,74.9542,73.6930,72.9069,76.4316,77.8512,82.4123 -"Newspaper publishers (NAICS = 51111); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G51111.S,IP.G51111.S,64.3866,64.0496,64.5973,64.2465,64.7434,65.9902,66.3209 -"Newspaper publishers (NAICS = 51111); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G51111.N,IP.G51111.N,65.2744,60.5873,64.3176,63.8198,66.4889,64.2614,66.7601 -"Periodical, book, and other publishers (NAICS = 51112-9); s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G51112T9.S,IP.G51112T9.S,83.0227,86.8261,86.4165,86.5744,86.6808,86.9753,87.6820 -"Periodical, book, and other publishers (NAICS = 51112-9); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_NONDURABLE_GOODS_DETAIL/IP.G51112T9.N,IP.G51112T9.N,81.6829,81.4253,77.7982,76.8786,80.7940,83.9514,89.4770 -"Oil and gas extraction (NAICS = 211); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G211.S,IP.G211.S,143.9227,137.9326,143.9932,143.1369,144.9711,144.8582,145.7318 -"Oil and gas extraction (NAICS = 211); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G211.N,IP.G211.N,144.6316,136.8332,143.3069,144.0340,144.8920,144.4877,145.3832 -"Crude oil (NAICS = 21112); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G21112.S,IP.G21112.S,140.6870,134.6855,140.4091,139.8282,141.9462,141.7838,142.8000 -"Crude oil (NAICS = 21112); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G21112.N,IP.G21112.N,141.7658,134.1673,140.0344,140.8225,141.5898,141.0966,142.2105 -"Natural gas and natural gas liquids (NAICS = 21113); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G21113.S,IP.G21113.S,155.0432,149.3003,156.7852,154.6685,155.1593,155.2713,155.4986 -"Natural gas and natural gas liquids (NAICS = 21113); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G21113.N,IP.G21113.N,153.5697,145.0683,154.2146,154.6362,155.8840,155.8880,155.8026 -"Natural gas (NAICS = 211130pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N21113G.S,IP.N21113G.S,143.6470,141.0580,144.9173,140.7789,139.7256,139.0715, -"Natural gas (NAICS = 211130pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N21113G.N,IP.N21113G.N,144.6965,140.1587,144.1957,140.5277,139.4517,139.1454, -"Natural gas liquid extraction (NAICS = 211130pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G21113PQ.S,IP.G21113PQ.S,179.4579,169.2077,182.0164,182.5550,185.2323,186.4408,184.3959 -"Natural gas liquid extraction (NAICS = 211130pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G21113PQ.N,IP.G21113PQ.N,175.0047,160.7383,177.3337,183.3941,187.9637,188.4095,186.6786 -"Mining (except oil and gas) (NAICS = 212); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G212.S,IP.G212.S,89.2716,81.8113,87.6794,87.0261,85.4135,83.0807,82.5551 -"Mining (except oil and gas) (NAICS = 212); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G212.N,IP.G212.N,84.1367,73.5043,77.7145,80.2741,84.8616,86.9282,87.8469 -"Coal mining (NAICS = 2121); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N2121.S,IP.N2121.S,76.6694,65.5570,70.5587,67.3768,59.9654,58.1664, -"Coal mining (NAICS = 2121); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N2121.N,IP.N2121.N,72.0173,67.1017,72.5792,66.7407,59.1518,58.1476, -"Metal ore mining (NAICS = 2122); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G2122.S,IP.G2122.S,83.7036,80.0100,81.5039,85.3070,83.3853,85.7923,85.4200 -"Metal ore mining (NAICS = 2122); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G2122.N,IP.G2122.N,86.0247,78.8418,80.9139,83.0864,82.2221,83.9674,85.5262 -"Iron ore mining (NAICS = 21221); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N21221.S,IP.N21221.S,84.1878,79.4679,81.4975,82.8675,85.8517,, -"Iron ore mining (NAICS = 21221); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N21221.N,IP.N21221.N,82.9698,72.4303,82.0689,83.6123,82.0636,, -"Gold ore and silver ore mining (NAICS = 21222); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G21222.S,IP.G21222.S,76.6912,68.3977,69.7203,72.0471,66.2337,68.8477,67.8872 -"Gold ore and silver ore mining (NAICS = 21222); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G21222.N,IP.G21222.N,82.2409,65.7734,65.9077,67.4178,66.3653,67.1177,66.8997 -"Copper, nickel, lead, and zinc mining (NAICS = 21223); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G21223.S,IP.G21223.S,93.6936,97.3377,100.3345,103.3689,103.9078,110.4848,110.5641 -"Copper, nickel, lead, and zinc mining (NAICS = 21223); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G21223.N,IP.G21223.N,94.5470,96.0270,100.2494,100.1508,102.4905,108.3542,112.5027 -"Nonmetallic mineral mining and quarrying (NAICS = 2123); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G2123.S,IP.G2123.S,105.2962,97.4169,108.0620,105.4236,109.0170,101.8115,101.6875 -"Nonmetallic mineral mining and quarrying (NAICS = 2123); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G2123.N,IP.G2123.N,93.0419,74.3919,79.5295,89.5655,109.5872,114.5796,116.4060 -"Support activities for mining (NAICS = 213); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G213.S,IP.G213.S,85.3053,84.8145,85.3462,85.3693,82.8031,81.4380,81.0790 -"Support activities for mining (NAICS = 213); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G213.N,IP.G213.N,85.4866,84.7525,85.2112,85.6777,84.1560,82.4159,80.9981 -"Drilling oil and gas wells (NAICS = 213111); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N213111.S,IP.N213111.S,109.2864,108.5309,108.0537,109.0561,105.2515,103.1317,103.7599 -"Drilling oil and gas wells (NAICS = 213111); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N213111.N,IP.N213111.N,109.9743,109.2214,109.5304,110.4254,107.4412,105.2789,103.6925 -"Electric power generation, transmission, and distribution (NAICS = 2211); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G2211.S,IP.G2211.S,103.0898,107.1461,103.7609,101.7041,104.7089,107.3317,110.5250 -"Electric power generation, transmission, and distribution (NAICS = 2211); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G2211.N,IP.G2211.N,101.2066,111.6849,98.8483,93.5716,89.9546,99.0826,117.7453 -"Electric power generation (NAICS = 22111); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G22111.S,IP.G22111.S,98.9901,103.3522,97.7650,98.4352,99.6607,103.7196,106.2091 -"Electric power generation (NAICS = 22111); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G22111.N,IP.G22111.N,98.0803,107.7184,95.7973,89.3164,86.4735,96.3606,114.2565 -"Hydroelectric, renewables, and other (NAICS = 221111,4-8); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G221111A4T8.S,IP.G221111A4T8.S,112.6240,109.6300,115.2812,123.8130,117.9461,120.0422,122.2623 -"Hydroelectric, renewables, and other (NAICS = 221111,4-8); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G221111A4T8.N,IP.G221111A4T8.N,108.3226,110.0120,124.5381,133.9980,134.7407,134.8214,129.3416 -"Hydroelectric power generation (NAICS = 221111); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N221111.S,IP.N221111.S,78.0110,77.5688,79.7367,88.3849,72.4545,, -"Hydroelectric power generation (NAICS = 221111); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N221111.N,IP.N221111.N,75.4514,83.4347,82.2351,90.6045,78.0954,, -"Renewables and other electric power generation (NAICS = 221114-8); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N221114T8.S,IP.N221114T8.S,174.2953,166.8187,178.6077,187.0396,198.6373,, -"Renewables and other electric power generation (NAICS = 221114-8); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N221114T8.N,IP.N221114T8.N,165.6375,156.3604,198.2935,209.6567,233.4904,, -"Fossil Fuel electric power generation (NAICS = 221112); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N221112.S,IP.N221112.S,98.2142,107.4179,94.4270,94.6163,97.0638,, -"Fossil Fuel electric power generation (NAICS = 221112); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N221112.N,IP.N221112.N,94.5014,111.0357,87.0671,78.3951,76.6101,, -"Nuclear electric power generation (NAICS = 221113); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N221113.S,IP.N221113.S,95.4494,93.8789,97.3676,96.0530,97.6709,, -"Nuclear electric power generation (NAICS = 221113); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N221113.N,IP.N221113.N,100.7802,101.0464,100.9851,92.6591,86.6499,, -"Electric power transmission, control, and distribution (NAICS = 22112); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G22112.S,IP.G22112.S,107.1899,110.9361,109.7760,104.9649,109.7668,110.9364,114.8401 -"Electric power transmission, control, and distribution (NAICS = 22112); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G22112.N,IP.G22112.N,104.3245,115.6466,101.8909,97.8320,93.4346,101.7917,121.2216 -"Commercial and other electricity sales (NAICS = 22112pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N22112C.S,IP.N22112C.S,112.6972,114.6189,115.0567,112.0986,114.4704,, -"Commercial and other electricity sales (NAICS = 22112pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N22112C.N,IP.N22112C.N,106.9470,111.8967,104.4008,105.5620,102.7594,, -"Industrial electricity sales (NAICS = 22112pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N22112M.S,IP.N22112M.S,103.8477,103.6465,105.0161,103.4009,101.8927,, -"Industrial electricity sales (NAICS = 22112pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N22112M.N,IP.N22112M.N,100.4903,100.8512,94.9895,100.4915,98.8213,, -"Residential electricity sales (NAICS = 22112pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N22112R.S,IP.N22112R.S,103.9299,110.6711,107.2430,99.7047,108.8928,, -"Residential electricity sales (NAICS = 22112pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N22112R.N,IP.N22112R.N,103.6250,124.3297,102.4621,90.5009,83.7656,, -"Natural gas distribution (NAICS = 2212); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G2212.S,IP.G2212.S,102.1671,108.9203,101.3612,95.4612,103.5897,101.2707,103.0105 -"Natural gas distribution (NAICS = 2212); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.G2212.N,IP.G2212.N,162.1837,214.0887,158.2215,132.2257,93.5295,67.5181,57.2905 -"Commercial and other gas sales (NAICS = 2212pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N2212C.S,IP.N2212C.S,99.5326,105.4065,99.5938,95.9512,103.1327,, -"Commercial and other gas sales (NAICS = 2212pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N2212C.N,IP.N2212C.N,156.6901,203.0207,157.5580,131.3311,93.7564,, -"Industrial gas sales (NAICS = 2212pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N2212M.S,IP.N2212M.S,127.5925,129.4736,128.0802,127.6923,125.1041,, -"Industrial gas sales (NAICS = 2212pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N2212M.N,IP.N2212M.N,128.8417,137.5133,116.9748,118.8402,112.2794,, -"Residential gas sales (NAICS = 2212pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N2212R.S,IP.N2212R.S,99.6106,105.0623,96.2082,88.1785,98.3665,, -"Residential gas sales (NAICS = 2212pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N2212R.N,IP.N2212R.N,178.3137,249.8753,175.6795,138.4656,86.2586,, -"Gas transmission (NAICS = 2212pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N2212T.S,IP.N2212T.S,113.0457,124.8008,116.8141,112.1551,119.4593,, -"Gas transmission (NAICS = 2212pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MINING_AND_UTILITY_DETAIL/IP.N2212T.N,IP.N2212T.N,140.1528,163.4670,131.2772,123.4959,105.8774,, -"Total index; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B50001.S,IP.B50001.S,102.6309,101.4830,102.6045,102.4062,102.4329,103.3282,103.9941 -"Total index; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B50001.N,IP.B50001.N,102.2236,101.7062,102.6262,102.5993,101.4902,102.2359,105.2923 -"Final products and nonindustrial supplies; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B50030.S,IP.B50030.S,100.6803,99.9017,100.8232,100.5126,100.6561,101.3293,101.9718 -"Final products and nonindustrial supplies; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B50030.N,IP.B50030.N,100.3725,100.7226,101.3042,101.0958,99.8947,100.1414,103.1257 -"Final products; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B50002.S,IP.B50002.S,100.8413,100.0648,100.7468,100.3951,100.7962,101.3132,102.0032 -"Final products; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B50002.N,IP.B50002.N,100.5933,102.0322,102.6175,101.8388,100.3291,99.8517,102.8496 -"Consumer goods; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51000.S,IP.B51000.S,101.9747,101.2513,101.6808,101.1120,101.8322,102.4944,103.5572 -"Consumer goods; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51000.N,IP.B51000.N,101.5831,104.4359,104.0835,102.7986,101.0657,100.5342,104.4690 -"Durable consumer goods; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51100.S,IP.B51100.S,107.7707,103.9426,107.5455,108.0906,106.9541,106.7452,107.3222 -"Durable consumer goods; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51100.N,IP.B51100.N,100.5741,104.8046,113.6753,113.3477,113.0399,108.3890,109.9373 -"Automotive products; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51110.S,IP.B51110.S,112.0907,104.8385,110.0006,112.1848,111.0590,110.8468,112.7473 -"Automotive products; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51110.N,IP.B51110.N,100.3880,100.8566,116.4182,118.2077,115.6900,112.2694,116.1163 -"Autos and trucks, consumer; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51111.S,IP.B51111.S,126.6275,116.0501,124.3375,127.2141,126.0671,125.8376,128.9697 -"Autos and trucks, consumer; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51111.N,IP.B51111.N,110.0969,109.7845,134.5588,135.1317,131.4899,126.8211,133.6635 -"Auto parts and allied goods; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51112.S,IP.B51112.S,94.8447,91.4220,92.9968,94.3799,93.2853,93.0942,93.5842 -"Auto parts and allied goods; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51112.N,IP.B51112.N,88.7193,90.0659,95.1241,98.2723,97.0399,95.0504,95.4963 -"Other durable goods; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51120.S,IP.B51120.S,102.6815,102.8338,104.6267,103.2755,102.1277,101.9228,100.9767 -"Other durable goods; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51120.N,IP.B51120.N,100.7190,109.3213,110.4346,107.6624,109.9000,103.8407,102.7542 -"Computers, video and audio equipment; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51121.S,IP.B51121.S,192.7338,195.2381,193.8571,197.1932,194.9004,195.0707,190.5418 -"Computers, video and audio equipment; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51121.N,IP.B51121.N,199.2207,191.4013,189.3015,195.3100,192.4121,194.4401,193.8387 -"Appliances, furniture, and carpeting; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51122.S,IP.B51122.S,84.8087,85.0559,87.8087,82.9371,82.3495,81.1405,80.5824 -"Appliances, furniture, and carpeting; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51122.N,IP.B51122.N,77.4647,104.1827,103.7806,94.7114,101.9478,86.2742,83.4605 -"Household appliances; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B511221.S,IP.B511221.S,100.2174,101.0448,107.8373,96.2327,94.1648,93.1690,91.1053 -"Household appliances; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B511221.N,IP.B511221.N,82.9086,152.0274,149.6650,127.0683,144.2848,107.7911,96.9479 -"Carpeting and furniture; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B511222.S,IP.B511222.S,76.1105,75.9698,76.0198,75.6882,76.1182,74.7288,75.2240 -"Carpeting and furniture; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B511222.N,IP.B511222.N,74.9366,74.3765,75.2637,75.0655,75.7117,73.8966,76.5661 -"Miscellaneous durable goods; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51123.S,IP.B51123.S,107.6313,107.6009,108.8441,109.7124,108.2688,108.7431,107.7278 -"Miscellaneous durable goods; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51123.N,IP.B51123.N,108.8164,105.9633,108.2176,109.3416,108.3759,108.6585,108.7634 -"Nondurable consumer goods; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51200.S,IP.B51200.S,100.3649,100.4788,100.0527,99.1839,100.4041,101.3008,102.4939 -"Nondurable consumer goods; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51200.N,IP.B51200.N,101.8100,104.2921,101.4634,99.9218,97.8067,98.3827,102.9574 -"Nondurable nonenergy consumer goods; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51210.S,IP.B51210.S,100.6022,100.0839,100.6316,100.4611,100.3581,101.4294,102.0994 -"Nondurable nonenergy consumer goods; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51210.N,IP.B51210.N,99.2392,98.1368,100.2269,100.6554,100.5496,101.1259,103.6046 -"Foods and tobacco; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51211.S,IP.B51211.S,98.6339,97.6164,97.8803,97.7748,97.4971,98.1736,98.5943 -"Foods and tobacco; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51211.N,IP.B51211.N,95.3633,95.0269,97.9651,98.5301,98.1741,97.1253,100.5209 -"Clothing; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51212.S,IP.B51212.S,80.7178,80.3786,79.4785,78.0097,79.4976,79.1583,80.1146 -"Clothing; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51212.N,IP.B51212.N,81.2662,78.5111,79.6323,78.2406,80.5372,79.6319,80.8472 -"Chemical products; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51213.S,IP.B51213.S,109.6907,109.8055,111.0003,110.8330,111.0573,113.4507,114.8013 -"Chemical products; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51213.N,IP.B51213.N,111.9979,109.2712,110.2588,110.9180,110.9315,115.0940,115.6373 -"Paper products; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51214.S,IP.B51214.S,76.5657,78.1981,78.2504,78.1462,78.0835,78.1199,78.5759 -"Paper products; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51214.N,IP.B51214.N,75.9691,75.7380,74.3410,73.4532,75.2136,76.3364,79.4321 -"Miscellaneous nondurable goods; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51215.S,IP.B51215.S,108.7783,107.8629,109.9803,108.5503,108.0982,106.7295,105.9846 -"Miscellaneous nondurable goods; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51215.N,IP.B51215.N,109.7796,107.1144,110.0266,108.3902,107.2217,105.9554,106.7754 -"Consumer energy products; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51220.S,IP.B51220.S,98.9571,100.9100,97.6432,94.7345,99.8368,100.2118,102.9451 -"Consumer energy products; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51220.N,IP.B51220.N,108.8658,121.8230,104.5638,97.2228,89.1731,89.7455,100.5454 -"Fuels; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51221.S,IP.B51221.S,90.9881,88.6128,86.8945,88.6463,89.3855,90.5906,90.4134 -"Fuels; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51221.N,IP.B51221.N,90.6884,83.8184,83.9808,87.2813,88.8904,92.5459,93.3931 -"Residential utilities; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51222.S,IP.B51222.S,102.2363,108.6225,103.9055,96.2975,105.6641,105.1637,110.7548 -"Residential utilities; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B51222.N,IP.B51222.N,121.4742,154.4973,119.9891,101.9494,84.2966,81.6328,102.1004 -"Equipment, total; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B52000.S,IP.B52000.S,98.6921,97.7837,99.0768,99.2449,98.8813,99.0521,98.8502 -"Equipment, total; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B52000.N,IP.B52000.N,98.7999,96.8520,99.6920,100.1238,99.1411,98.7906,99.5578 -"Business equipment; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B52100.S,IP.B52100.S,94.5220,93.4242,94.9085,94.9989,94.5363,94.7847,94.3673 -"Business equipment; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B52100.N,IP.B52100.N,94.4117,92.3131,95.5535,95.8679,94.8035,94.4878,95.2117 -"Transit equipment; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B52110.S,IP.B52110.S,74.0382,70.8503,73.2296,74.9394,74.3856,73.8543,74.7700 -"Transit equipment; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B52110.N,IP.B52110.N,70.4515,68.6469,75.3953,77.5723,76.0065,74.0063,76.1775 -"Business vehicles; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.G3361E.S,IP.G3361E.S,106.8848,98.6611,110.5134,117.0367,113.2433,112.1045,115.5544 -"Business vehicles; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.G3361E.N,IP.G3361E.N,94.4308,92.9934,117.5472,123.5389,118.7825,113.2879,120.3383 -"Business light vehicles; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.G33611E.S,IP.G33611E.S,104.9705,98.3949,107.3959,111.9632,113.1839,114.8913,120.4060 -"Business light vehicles; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.G33611E.N,IP.G33611E.N,91.3319,93.1404,116.2806,119.0405,118.0873,115.9418,124.8940 -"Automobile, business (NAICS = 336111pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.G336111B.S,IP.G336111B.S,104.6510,88.0546,92.7546,94.1740,91.1056,100.2079,96.3323 -"Automobile, business (NAICS = 336111pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.G336111B.N,IP.G336111B.N,90.5419,83.5907,101.4430,98.8022,96.3609,98.8991,99.2219 -"Light trucks, business (NAICS = 336112pt.); s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.G336112B.S,IP.G336112B.S,105.2612,100.8294,110.7741,116.0266,118.1680,118.3003,125.8295 -"Light trucks, business (NAICS = 336112pt.); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.G336112B.N,IP.G336112B.N,91.6948,95.3982,119.7275,123.6546,123.0186,119.8651,130.6830 -"Information processing and related equipment; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B52120.S,IP.B52120.S,109.1165,109.9744,110.0958,110.3401,110.3274,110.7059,109.6499 -"Information processing and related equipment; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B52120.N,IP.B52120.N,111.2487,109.3486,109.3501,109.7942,109.2625,110.4005,110.9655 -"Industrial and other equipment; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B52130.S,IP.B52130.S,100.9827,100.2333,101.7519,101.0295,100.4595,101.0377,100.1897 -"Industrial and other equipment; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B52130.N,IP.B52130.N,101.7997,99.4665,102.1368,101.5376,100.5227,100.5307,100.6380 -"Industrial equipment; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B52131.S,IP.B52131.S,96.4480,95.5179,96.4597,96.3762,95.3119,96.9895,96.1632 -"Industrial equipment; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B52131.N,IP.B52131.N,97.6075,94.9143,96.7016,96.9484,95.4882,96.2990,96.1441 -"Other equipment; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B52132.S,IP.B52132.S,108.0761,107.6243,110.0822,108.3154,108.5583,107.3288,106.4481 -"Other equipment; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B52132.N,IP.B52132.N,108.3330,106.5966,110.7044,108.7199,108.4397,107.1284,107.6666 -"Oil and gas well drilling and manufactured homes; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B52200.S,IP.B52200.S,105.4839,103.9667,105.0076,105.5060,102.2974,100.6166,101.2643 -"Oil and gas well drilling and manufactured homes; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B52200.N,IP.B52200.N,103.9596,103.8926,106.2004,106.9798,104.6400,102.7519,102.3776 -"Defense and space equipment; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B52300.S,IP.B52300.S,116.9270,117.4471,117.6230,118.1252,119.5015,119.9222,120.7068 -"Defense and space equipment; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B52300.N,IP.B52300.N,118.9874,117.2914,117.7905,118.7780,118.8707,118.9309,120.3760 -"Nonindustrial supplies; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B54000.S,IP.B54000.S,100.3182,99.5342,101.0482,100.8391,100.3448,101.4054,101.9303 -"Nonindustrial supplies; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B54000.N,IP.B54000.N,99.8536,97.5177,98.0902,99.2909,98.8525,100.8911,103.8425 -"Construction supplies; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B54100.S,IP.B54100.S,100.2618,98.7984,101.2536,101.0960,99.5957,100.4590,100.3628 -"Construction supplies; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B54100.N,IP.B54100.N,97.7216,92.6783,95.8730,98.3842,99.9071,102.2846,104.2387 -"Business supplies; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B54200.S,IP.B54200.S,100.4124,99.9613,101.0136,100.7791,100.7806,101.9392,102.7717 -"Business supplies; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B54200.N,IP.B54200.N,100.9689,99.9610,99.2440,99.7999,98.3935,100.2660,103.7129 -"Non-energy business supplies; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B54210.S,IP.B54210.S,97.6655,96.8118,98.0314,98.3986,98.0557,98.8056,99.3993 -"Non-energy business supplies; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B54210.N,IP.B54210.N,97.9106,94.5389,96.4344,97.6025,97.5717,98.2743,100.6140 -"Commercial energy products; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B54220.S,IP.B54220.S,108.6969,109.4885,110.0225,107.9304,108.9961,111.4155,112.9848 -"Commercial energy products; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B54220.N,IP.B54220.N,110.2574,116.5546,107.7595,106.4197,100.7554,106.2502,113.1238 -"Materials; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53000.S,IP.B53000.S,104.9382,103.3250,104.6974,104.6410,104.5206,105.6938,106.3884 -"Materials; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53000.N,IP.B53000.N,104.3908,102.7789,104.1240,104.3257,103.3341,104.7053,107.8476 -"Materials ex. energy materials; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.Z53010.S,IP.Z53010.S,97.2561,95.6708,96.9326,97.1470,96.7634,98.0956,98.5185 -"Materials ex. energy materials; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.Z53010.N,IP.Z53010.N,96.3456,94.0134,96.7183,97.9180,97.3779,98.0487,99.6418 -"Durable goods materials; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53100.S,IP.B53100.S,98.0376,96.7920,97.5035,97.8498,97.8064,99.0445,98.9495 -"Durable goods materials; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53100.N,IP.B53100.N,97.1392,94.5466,97.2583,99.0256,98.2331,98.6744,100.1566 -"Consumer parts; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53110.S,IP.B53110.S,95.3559,92.8427,93.5150,93.7686,93.6949,94.2934,95.1442 -"Consumer parts; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53110.N,IP.B53110.N,91.0597,91.3832,97.0556,99.6307,95.8073,93.0071,94.7235 -"Equipment parts; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53120.S,IP.B53120.S,104.1075,104.0436,103.6884,104.2998,105.0604,106.8218,107.5024 -"Equipment parts; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53120.N,IP.B53120.N,105.8155,102.2123,102.3360,105.9161,103.9851,105.6706,108.7656 -"Computer and other board assemblies and parts; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53121.S,IP.B53121.S,152.2900,150.0998,148.1118,142.5836,144.5694,147.8604,145.5147 -"Computer and other board assemblies and parts; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53121.N,IP.B53121.N,154.2557,135.1843,141.0818,161.9471,142.0944,148.2772,165.4045 -"Semiconductors, printed circuit boards, and other; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53122.S,IP.B53122.S,132.1905,132.7999,132.0858,133.4604,135.4477,139.2990,140.6715 -"Semiconductors, printed circuit boards, and other; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53122.N,IP.B53122.N,137.1211,127.2350,123.4031,137.2408,128.7578,134.6884,144.0146 -"Other equipment parts; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53123.S,IP.B53123.S,96.6002,96.4841,96.2324,96.8652,97.3896,98.7548,99.3896 -"Other equipment parts; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53123.N,IP.B53123.N,97.7494,95.5889,96.1898,97.6655,97.2384,98.1195,99.8423 -"Other durable materials; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53130.S,IP.B53130.S,95.9921,94.6169,95.8351,96.0887,95.6824,96.8867,96.1219 -"Other durable materials; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53130.N,IP.B53130.N,95.0098,91.9294,94.8653,95.5240,96.2567,97.1851,97.8409 -"Basic metals; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53131.S,IP.B53131.S,88.1843,86.0478,87.7725,88.9597,87.6790,90.7516,89.6951 -"Basic metals; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53131.N,IP.B53131.N,87.9991,84.7599,89.5643,88.5736,88.7674,90.6357,90.5993 -"Miscellaneous durable materials; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53132.S,IP.B53132.S,99.8962,98.8943,99.8641,99.6579,99.6826,99.9653,99.3443 -"Miscellaneous durable materials; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53132.N,IP.B53132.N,98.5313,95.5266,97.5444,99.0166,100.0157,100.4806,101.4790 -"Nondurable goods materials; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53200.S,IP.B53200.S,96.0914,93.9718,96.1003,96.1068,95.1854,96.6675,97.9127 -"Nondurable goods materials; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53200.N,IP.B53200.N,95.1634,93.2389,95.9349,96.2398,96.0983,97.1334,98.9040 -"Textile materials; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53210.S,IP.B53210.S,74.9471,75.3019,76.5021,78.5623,78.0466,80.2188,81.8208 -"Textile materials; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53210.N,IP.B53210.N,75.5275,73.3237,76.0973,78.7936,79.2571,80.0531,82.4132 -"Paper materials; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53220.S,IP.B53220.S,81.2098,81.4090,83.3259,83.2793,83.3580,83.7115,85.5635 -"Paper materials; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53220.N,IP.B53220.N,81.4734,81.6618,84.0050,83.2738,83.5500,84.1198,85.5794 -"Chemical materials; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53230.S,IP.B53230.S,98.7164,94.6445,97.4684,97.7739,96.3906,99.0899,100.4067 -"Chemical materials; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53230.N,IP.B53230.N,97.5897,93.6454,96.9044,97.8521,97.2493,100.1076,101.8081 -"Other nondurable materials; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53240.S,IP.B53240.S,102.0019,101.5981,102.7736,102.0670,101.3247,101.2971,102.0390 -"Other nondurable materials; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53240.N,IP.B53240.N,100.5670,100.9058,102.8302,102.3486,102.6819,100.9298,102.9147 -"Containers; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53241.S,IP.B53241.S,94.3842,94.8010,96.2503,94.6431,93.6277,92.8559,93.5503 -"Containers; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53241.N,IP.B53241.N,89.3341,92.1357,94.5048,94.2951,94.7945,93.2281,96.2760 -"Miscellaneous nondurable materials; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53242.S,IP.B53242.S,105.6958,104.8738,105.9075,105.6617,105.0601,105.4118,106.1766 -"Miscellaneous nondurable materials; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53242.N,IP.B53242.N,106.0916,105.1729,106.8664,106.2471,106.4950,104.6518,106.0911 -"Energy materials; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53300.S,IP.B53300.S,117.3003,115.6644,117.2171,116.6641,117.0272,117.8927,119.0693 -"Energy materials; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53300.N,IP.B53300.N,117.4410,117.1950,116.0047,114.3675,112.5655,115.1911,121.0948 -"Primary energy; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53310.S,IP.B53310.S,119.5512,115.1931,119.6403,119.0604,119.3140,119.1342,120.0434 -"Primary energy; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53310.N,IP.B53310.N,120.4745,115.9506,120.3948,119.6139,118.5922,119.0534,120.4164 -"Converted fuel; s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53320.S,IP.B53320.S,110.6347,115.1723,110.1274,109.6428,110.2531,113.5202,115.3024 -"Converted fuel; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_MARKET_GROUPS/IP.B53320.N,IP.B53320.N,109.1510,118.5684,104.5967,101.0237,97.4508,105.0422,121.4146 -"Total index; s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.B50001.S,IP.B50001.S,102.6309,101.4830,102.6045,102.4062,102.4329,103.3282,103.9941 -"Total index; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.B50001.N,IP.B50001.N,102.2236,101.7062,102.6262,102.5993,101.4902,102.2359,105.2923 -"Energy, total; s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.B50089.S,IP.B50089.S,112.0471,111.5251,111.8107,110.5842,112.0163,112.8708,114.4305 -"Energy, total; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.B50089.N,IP.B50089.N,114.6528,118.1561,112.4787,109.6214,105.9536,108.3165,115.2671 -"Consumer energy products; s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.B51220.S,IP.B51220.S,98.9571,100.9100,97.6432,94.7345,99.8368,100.2118,102.9451 -"Consumer energy products; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.B51220.N,IP.B51220.N,108.8658,121.8230,104.5638,97.2228,89.1731,89.7455,100.5454 -"Commercial energy products; s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.B54220.S,IP.B54220.S,108.6969,109.4885,110.0225,107.9304,108.9961,111.4155,112.9848 -"Commercial energy products; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.B54220.N,IP.B54220.N,110.2574,116.5546,107.7595,106.4197,100.7554,106.2502,113.1238 -"Drilling oil and gas wells (NAICS = 213111); s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.N213111.S,IP.N213111.S,109.2864,108.5309,108.0537,109.0561,105.2515,103.1317,103.7599 -"Drilling oil and gas wells (NAICS = 213111); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.N213111.N,IP.N213111.N,109.9743,109.2214,109.5304,110.4254,107.4412,105.2789,103.6925 -"Converted fuel; s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.B53320.S,IP.B53320.S,110.6347,115.1723,110.1274,109.6428,110.2531,113.5202,115.3024 -"Converted fuel; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.B53320.N,IP.B53320.N,109.1510,118.5684,104.5967,101.0237,97.4508,105.0422,121.4146 -"Primary energy; s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.B53310.S,IP.B53310.S,119.5512,115.1931,119.6403,119.0604,119.3140,119.1342,120.0434 -"Primary energy; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.B53310.N,IP.B53310.N,120.4745,115.9506,120.3948,119.6139,118.5922,119.0534,120.4164 -"Non-energy, total; s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X5001E.S,IP.X5001E.S,99.1707,97.8265,99.2125,99.3468,98.9189,99.8238,100.1970 -"Non-energy, total; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X5001E.N,IP.X5001E.N,97.8274,96.0215,99.0588,99.9437,99.6646,99.8844,101.6673 -"Computers, communications eq., and semiconductors (NAICS = 3341,3342,3344); s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.HITEK2.S,IP.HITEK2.S,147.8423,148.1202,147.6236,148.5688,149.9856,153.0475,153.2815 -"Computers, communications eq., and semiconductors (NAICS = 3341,3342,3344); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.HITEK2.N,IP.HITEK2.N,153.8011,142.7947,139.3671,150.9302,144.1060,149.9389,157.6243 -"Computer and peripheral equipment (NAICS = 3341); s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.G3341.S,IP.G3341.S,157.5085,155.6951,155.9799,159.8630,158.7809,160.4618,156.5274 -"Computer and peripheral equipment (NAICS = 3341); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.G3341.N,IP.G3341.N,161.4626,149.9214,149.6390,157.2326,157.5490,162.1041,163.5334 -"Communications equipment (NAICS = 3342); s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.G3342.S,IP.G3342.S,191.0098,192.2924,193.2007,194.1901,194.8760,195.3634,195.4042 -"Communications equipment (NAICS = 3342); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.G3342.N,IP.G3342.N,203.6896,192.4745,184.0599,185.7100,187.1163,192.9377,193.9317 -"Semiconductor and other electronic component (NAICS = 3344); s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.G3344.S,IP.G3344.S,134.3801,134.7368,133.7948,134.2706,136.2200,140.0520,140.9565 -"Semiconductor and other electronic component (NAICS = 3344); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.G3344.N,IP.G3344.N,138.9290,128.1862,125.5020,139.8558,130.1079,136.0587,146.1375 -"Non-energy ex. computers, communications eq., and semiconductors; s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X5EHTK.S,IP.X5EHTK.S,97.9551,96.5856,98.0014,98.1205,97.6607,98.5236,98.8980 -"Non-energy ex. computers, communications eq., and semiconductors; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X5EHTK.N,IP.X5EHTK.N,96.4820,94.8506,97.9960,98.6835,98.5240,98.6416,100.3122 -"Motor vehicles and parts (NAICS = 3361-3); s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.G3361T3.S,IP.G3361T3.S,108.6938,102.2729,108.1759,110.5541,109.8425,109.8267,111.5909 -"Motor vehicles and parts (NAICS = 3361-3); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.G3361T3.N,IP.G3361T3.N,99.5311,96.6322,113.4217,117.5704,112.6249,109.9166,113.5699 -"Motor vehicle (NAICS = 3361); s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.G3361.S,IP.G3361.S,121.0761,111.1536,120.3955,124.2570,122.3939,121.9182,125.1315 -"Motor vehicle (NAICS = 3361); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.G3361.N,IP.G3361.N,105.6736,105.0566,129.7317,131.7730,127.8348,122.9496,129.8374 -"Motor vehicle parts (NAICS = 3363); s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.G3363.S,IP.G3363.S,100.6156,98.2762,101.5592,102.5639,102.6565,103.0120,104.2306 -"Motor vehicle parts (NAICS = 3363); n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.G3363.N,IP.G3363.N,98.0086,93.2002,102.8141,108.7272,101.6194,101.1862,103.3977 -"Non-energy ex. motor vehicles & pts., computers, communications eq., and semiconductors; s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X50EHV.S,IP.X50EHV.S,97.1347,96.1560,97.2249,97.1695,96.7291,97.6599,97.9272 -"Non-energy ex. motor vehicles & pts., computers, communications eq., and semiconductors; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X50EHV.N,IP.X50EHV.N,96.2593,94.7253,96.8209,97.2424,97.4507,97.7853,99.3038 -"Consumer goods ex. hi-tech, motor vehicles & pts., and energy; s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X51HVE.S,IP.X51HVE.S,100.4935,99.9493,100.7029,100.4119,100.0774,100.9261,101.4162 -"Consumer goods ex. hi-tech, motor vehicles & pts., and energy; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X51HVE.N,IP.X51HVE.N,98.8014,99.1875,101.2140,101.3157,101.4221,100.9761,103.0103 -"Business equipment ex. hi-tech and motor vehicles and parts; s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X52HTV.S,IP.X52HTV.S,90.1047,89.8151,90.5139,90.0462,89.7951,90.1422,89.5053 -"Business equipment ex. hi-tech and motor vehicles and parts; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X52HTV.N,IP.X52HTV.N,90.9537,89.3040,90.8550,90.5058,89.7001,89.6842,89.9399 -"Construction supplies ex. hi-tech; s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X5410H.S,IP.X5410H.S,100.0813,98.6161,101.0709,100.9121,99.4106,100.2736,100.1773 -"Construction supplies ex. hi-tech; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X5410H.N,IP.X5410H.N,97.5291,92.4965,95.7013,98.2116,99.7329,102.1051,104.0593 -"Business supplies ex. energy, motor vehicles & parts, and selected high-tech industries; s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X5421T.S,IP.X5421T.S,96.1014,95.1940,96.4952,96.8475,96.4303,97.0669,97.6556 -"Business supplies ex. energy, motor vehicles & parts, and selected high-tech industries; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X5421T.N,IP.X5421T.N,96.1716,93.0437,95.1270,95.8600,96.1495,96.6537,98.7432 -"Materials ex. energy, motor vehicles & pts., computers, communications eq., and semiconductors; s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X53EHV.S,IP.X53EHV.S,95.4008,93.8833,94.9808,95.1112,94.6264,95.9365,96.2732 -"Materials ex. energy, motor vehicles & pts., computers, communications eq., and semiconductors; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X53EHV.N,IP.X53EHV.N,94.5128,92.7404,94.8839,95.2490,95.5757,96.1727,97.4356 -"Total ex. computers, communications eq., and semiconductors; s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X50HTK.S,IP.X50HTK.S,101.7794,100.6142,101.7556,101.5420,101.5496,102.4133,103.0836 -"Total ex. computers, communications eq., and semiconductors; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X50HTK.N,IP.X50HTK.N,101.2846,100.9138,101.8918,101.7054,100.6772,101.3517,104.3382 -"Manufacturing ex. computers, communications eq., and semiconductors; s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X4HTK2.S,IP.X4HTK2.S,98.0453,96.7313,97.9868,98.1655,97.6306,98.5960,98.9871 -"Manufacturing ex. computers, communications eq., and semiconductors; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X4HTK2.N,IP.X4HTK2.N,96.7301,95.1534,98.2007,98.8836,98.4699,98.6794,100.3455 -"Durable mfg. ex. computers, communications eq., and semiconductors; s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X5HTK2.S,IP.X5HTK2.S,98.1802,96.8749,98.3296,98.4341,97.9128,98.5105,98.5098 -"Durable mfg. ex. computers, communications eq., and semiconductors; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X5HTK2.N,IP.X5HTK2.N,96.4125,95.5779,99.4907,100.1009,99.3470,98.5944,99.8064 -"Total ex. motor vehicles and parts; s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X50001.S,IP.X50001.S,102.3363,101.4873,102.3381,101.9937,102.0622,103.0094,103.6137 -"Total ex. motor vehicles and parts; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X50001.N,IP.X50001.N,102.4286,102.0456,102.0697,101.8073,100.9138,101.8541,104.8786 -"Manufacturing ex. motor vehicles and parts; s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.XXX001.S,IP.XXX001.S,98.5645,97.6541,98.5370,98.5678,98.0805,99.1613,99.4494 -"Manufacturing ex. motor vehicles and parts; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.XXX001.N,IP.XXX001.N,97.9659,96.3025,98.2258,98.8603,98.6589,99.1893,100.8275 -"Durable manufacturing ex. motor vehicles & parts; s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X005MV.S,IP.X005MV.S,99.2658,98.8478,99.5106,99.2815,98.8664,99.6687,99.3918 -"Durable manufacturing ex. motor vehicles & parts; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X005MV.N,IP.X005MV.N,99.0152,98.0865,99.6447,100.1391,99.8066,99.6323,100.7241 -"Total ex. selected high-tech. and motor vehicles & pts.; s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X5VHT2.S,IP.X5VHT2.S,101.4319,100.5684,101.4368,101.0745,101.1234,102.0378,102.6459 -"Total ex. selected high-tech. and motor vehicles & pts.; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X5VHT2.N,IP.X5VHT2.N,101.4380,101.2117,101.2862,100.8522,100.0469,100.9144,103.8644 -"Manufacturing ex. hi-tech and motor vehicles & pts.; s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X4HTMV.S,IP.X4HTMV.S,97.2688,96.3388,97.2449,97.2582,96.7365,97.7758,98.0639 -"Manufacturing ex. hi-tech and motor vehicles & pts.; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.X4HTMV.N,IP.X4HTMV.N,96.5463,95.0682,97.0870,97.5107,97.4360,97.8639,99.3818 -"Non-energy materials for finished goods producers; s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.B53810.S,IP.B53810.S,96.2884,95.4977,95.9556,96.3880,96.7060,97.8536,98.8429 -"Non-energy materials for finished goods producers; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.B53810.N,IP.B53810.N,95.7471,94.1583,96.5910,99.0272,96.9776,96.9774,99.3076 -"Non-energy materials for intermediate goods producers; s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.B53820.S,IP.B53820.S,97.9410,95.9300,97.6220,97.7207,96.9627,98.3955,98.5174 -"Non-energy materials for intermediate goods producers; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_SPECIAL_AGGREGATES/IP.B53820.N,IP.B53820.N,96.8323,94.1002,96.9547,97.4977,97.7613,98.7910,99.9938 -"Finished processing--gross value; s.a. IP","Index:_2017_100","1","NA",G17/IP_GROSS_VALUE_STAGE_OF_PROCESS_GROUPS/IP.TB56400.S,IP.TB56400.S,104.7276,102.7174,104.6373,104.6724,104.3663,104.9895,105.3362 -"Finished processing--gross value; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_GROSS_VALUE_STAGE_OF_PROCESS_GROUPS/IP.TB56400.N,IP.TB56400.N,101.8115,100.7285,106.0146,106.1676,105.6616,104.8709,107.0005 -"Semifinished processing--gross value; s.a. IP","Index:_2017_100","1","NA",G17/IP_GROSS_VALUE_STAGE_OF_PROCESS_GROUPS/IP.TB56300.S,IP.TB56300.S,100.3432,100.4750,101.4038,100.5604,101.0513,101.9587,103.1270 -"Semifinished processing--gross value; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_GROSS_VALUE_STAGE_OF_PROCESS_GROUPS/IP.TB56300.N,IP.TB56300.N,99.0692,99.8533,99.2756,100.1190,98.2340,99.9667,105.3745 -"Primary processing--gross value; s.a. IP","Index:_2017_100","1","NA",G17/IP_GROSS_VALUE_STAGE_OF_PROCESS_GROUPS/IP.TB56200.S,IP.TB56200.S,95.3582,95.0545,94.5017,94.7440,94.3741,96.1919,96.9368 -"Primary processing--gross value; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_GROSS_VALUE_STAGE_OF_PROCESS_GROUPS/IP.TB56200.N,IP.TB56200.N,97.1371,98.8302,96.0449,94.9865,92.7215,94.4396,97.7695 -"Crude processing--gross value; s.a. IP","Index:_2017_100","1","NA",G17/IP_GROSS_VALUE_STAGE_OF_PROCESS_GROUPS/IP.TB56100.S,IP.TB56100.S,107.2760,102.4171,105.7440,106.1230,105.1722,106.0357,106.9514 -"Crude processing--gross value; n.s.a. IP","Index:_2017_100","1","NA",G17/IP_GROSS_VALUE_STAGE_OF_PROCESS_GROUPS/IP.TB56100.N,IP.TB56100.N,107.6120,101.9410,105.7173,106.3584,105.1326,105.9727,106.9650 -"Total motor vehicle assemblies; s.a.","Number","1000000","NA",G17/MVA/MVA.TOTASS.S,MVA.TOTASS.S,11.0043,10.1696,11.0895,11.5132,11.1467,11.1248,11.6341 -"Total motor vehicle assemblies; n.s.a.","Number","1000000","NA",G17/MVA/MVA.TOTASS.N,MVA.TOTASS.N,9.2178,10.1081,11.4608,11.5979,11.7845,11.8580,10.9494 -"Auto assemblies; s.a.","Number","1000000","NA",G17/MVA/MVA.AUTOAS.S,MVA.AUTOAS.S,1.7315,1.4788,1.5828,1.6639,1.4686,1.6250,1.6016 -"Auto assemblies; n.s.a.","Number","1000000","NA",G17/MVA/MVA.AUTOAS.N,MVA.AUTOAS.N,1.4426,1.4728,1.6431,1.5992,1.6053,1.7111,1.5361 -"Truck assemblies; s.a.","Number","1000000","NA",G17/MVA/MVA.TRUCKS.S,MVA.TRUCKS.S,9.2728,8.6909,9.5067,9.8492,9.6781,9.4997,10.0325 -"Truck assemblies; n.s.a.","Number","1000000","NA",G17/MVA/MVA.TRUCKS.N,MVA.TRUCKS.N,7.7752,8.6352,9.8177,9.9987,10.1792,10.1469,9.4133 -"Light truck assemblies; s.a.","Number","1000000","NA",G17/MVA/MVA.LTTRCK.S,MVA.LTTRCK.S,8.9261,8.3867,9.1370,9.4448,9.3334,9.1886,9.7313 -"Light truck assemblies; n.s.a.","Number","1000000","NA",G17/MVA/MVA.LTTRCK.N,MVA.LTTRCK.N,7.4673,8.3364,9.4588,9.5972,9.8092,9.8148,9.1223 -"Heavy and medium truck assemblies; s.a.","Number","1000000","NA",G17/MVA/MVA.HMTRCK.S,MVA.HMTRCK.S,0.3467,0.3042,0.3697,0.4045,0.3447,0.3111,0.3012 -"Heavy and medium truck assemblies; n.s.a.","Number","1000000","NA",G17/MVA/MVA.HMTRCK.N,MVA.HMTRCK.N,0.3080,0.2989,0.3589,0.4015,0.3700,0.3322,0.2910 -"Autos and light truck assemblies; s.a.","Number","1000000","NA",G17/MVA/MVA.AUTLTT.S,MVA.AUTLTT.S,10.6576,9.8654,10.7198,11.1087,10.8020,10.8136,11.3329 -"Autos and light truck assemblies; n.s.a.","Number","1000000","NA",G17/MVA/MVA.AUTLTT.N,MVA.AUTLTT.N,8.9099,9.8092,11.1019,11.1964,11.4145,11.5258,10.6584 -"Diffusion index of industrial production, one month earlier; s.a. DIFF","Percentage","1","NA",G17/DIFF/DIFF.DIFFUSION_1.S,DIFF.DIFFUSION_1.S,49.1582,38.3838,61.2795,58.0808,44.6128,64.3098, -"Diffusion index of industrial production, three months earlier; s.a. DIFF","Percentage","1","NA",G17/DIFF/DIFF.DIFFUSION_3.S,DIFF.DIFFUSION_3.S,48.8215,41.0774,51.5152,54.8822,58.7542,58.2492, -"Diffusion index of industrial production, six months earlier; s.a. DIFF","Percentage","1","NA",G17/DIFF/DIFF.DIFFUSION_6.S,DIFF.DIFFUSION_6.S,47.8114,35.6902,49.8316,49.8316,47.1380,54.2088, -"Total index; s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.B50001.S,CAP.B50001.S,131.3400,131.4640,131.5817,131.6950,131.8059,131.9192,132.0387 -"Manufacturing (SIC); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.B00004.S,CAP.B00004.S,127.9617,128.0940,128.2274,128.3620,128.4973,128.6346,128.7744 -"Manufacturing (NAICS); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.GMF.S,CAP.GMF.S,128.7252,128.8715,129.0188,129.1672,129.3164,129.4674,129.6210 -"Durable manufacturing (NAICS); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.GMFD.S,CAP.GMFD.S,132.1061,132.2620,132.4268,132.5999,132.7796,132.9653,133.1561 -"Wood product (NAICS = 321); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G321.S,CAP.G321.S,123.4772,123.5555,123.6292,123.6987,123.7640,123.8254,123.8833 -"Nonmetallic mineral product (NAICS = 327); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G327.S,CAP.G327.S,128.8548,128.8405,128.8162,128.7828,128.7413,128.6929,128.6386 -"Primary metal (NAICS = 331); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G331.S,CAP.G331.S,133.3878,133.4384,133.5270,133.6527,133.8129,134.0026,134.2174 -"Fabricated metal product (NAICS = 332); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G332.S,CAP.G332.S,129.5421,129.5411,129.5346,129.5228,129.5063,129.4857,129.4620 -"Machinery (NAICS = 333); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G333.S,CAP.G333.S,121.2030,121.2418,121.2975,121.3685,121.4522,121.5457,121.6462 -"Computer and electronic product (NAICS = 334); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G334.S,CAP.G334.S,153.2125,153.9360,154.6851,155.4581,156.2498,157.0595,157.8853 -"Electrical equipment, appliance, and component (NAICS = 335); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G335.S,CAP.G335.S,129.6564,129.7616,129.8753,129.9964,130.1234,130.2547,130.3890 -"Motor vehicles and parts (NAICS = 3361-3); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G3361T3.S,CAP.G3361T3.S,146.5469,146.7671,146.9929,147.2258,147.4658,147.7166,147.9805 -"Aerospace and miscellaneous transportation eq. (NAICS = 3364-9); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G3364T9.S,CAP.G3364T9.S,126.3523,126.3681,126.3870,126.4081,126.4303,126.4520,126.4720 -"Furniture and related product (NAICS = 337); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G337.S,CAP.G337.S,112.1643,111.9127,111.6424,111.3555,111.0553,110.7437,110.4227 -"Miscellaneous (NAICS = 339); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G339.S,CAP.G339.S,133.1759,133.7933,134.4238,135.0667,135.7185,136.3806,137.0527 -"Nondurable manufacturing (NAICS); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.GMFN.S,CAP.GMFN.S,125.3661,125.5105,125.6484,125.7807,125.9079,126.0326,126.1567 -"Food, beverage, and tobacco (NAICS = 311,2); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G311A2.S,CAP.G311A2.S,124.5484,124.5199,124.4892,124.4572,124.4247,124.3923,124.3607 -"Textiles and products (NAICS = 313,4); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G313A4.S,CAP.G313A4.S,115.4985,115.1883,114.8766,114.5632,114.2491,113.9320,113.6108 -"Apparel and leather goods (NAICS = 315,6); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G315A6.S,CAP.G315A6.S,128.1375,128.1182,128.0677,127.9879,127.8815,127.7523,127.6034 -"Paper (NAICS = 322); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G322.S,CAP.G322.S,105.6613,105.6021,105.5513,105.5082,105.4721,105.4414,105.4147 -"Printing and related support activities (NAICS = 323); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G323.S,CAP.G323.S,111.8182,111.8880,111.9665,112.0529,112.1457,112.2439,112.3467 -"Petroleum and coal products (NAICS = 324); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G324.S,CAP.G324.S,102.7416,102.8437,102.9095,102.9412,102.9417,102.9157,102.8674 -"Chemical (NAICS = 325); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G325.S,CAP.G325.S,136.2928,136.6570,137.0260,137.3992,137.7746,138.1538,138.5371 -"Plastics and rubber products (NAICS = 326); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G326.S,CAP.G326.S,134.3243,134.7517,135.1619,135.5547,135.9294,136.2902,136.6401 -"Other manufacturing; s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.GMFO.S,CAP.GMFO.S,100.5249,100.1289,99.7367,99.3484,98.9651,98.5841,98.2040 -"Mining (NAICS = 21); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G21.S,CAP.G21.S,134.2614,134.2058,134.1197,134.0079,133.8768,133.7382,133.6014 -"Electric and gas utilities (NAICS = 2211,2); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G2211A2.S,CAP.G2211A2.S,146.0951,146.5040,146.9153,147.3298,147.7467,148.1697,148.6013 -"Computers, communications eq., and semiconductors (NAICS = 3341,3342,3344); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.HITEK2.S,CAP.HITEK2.S,184.4333,186.1752,187.9470,189.7460,191.5621,193.3988,195.2566 -"Computer and peripheral equipment (NAICS = 3341); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G3341.S,CAP.G3341.S,207.9181,208.3291,208.7017,209.0385,209.3418,209.6198,209.8787 -"Communications equipment (NAICS = 3342); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G3342.S,CAP.G3342.S,254.0119,256.4305,258.8734,261.3387,263.8157,266.3171,268.8485 -"Total ex. computers, communications eq., and semiconductors; s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.X50HTK.S,CAP.X50HTK.S,130.3355,130.4368,130.5314,130.6214,130.7088,130.7984,130.8942 -"Manufacturing ex. computers, communications eq., and semiconductors; s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.X4HTK2.S,CAP.X4HTK2.S,126.5597,126.6626,126.7663,126.8708,126.9759,127.0827,127.1918 -"Crude processing (capacity); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.B5610C.S,CAP.B5610C.S,128.8364,128.7944,128.7324,128.6544,128.5656,128.4749,128.3895 -"Primary & semifinished processing (capacity); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.B562A3C.S,CAP.B562A3C.S,128.5539,128.7188,128.8821,129.0443,129.2054,129.3673,129.5312 -"Finished processing (capacity); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.B5640C.S,CAP.B5640C.S,134.7039,134.8945,135.0886,135.2858,135.4853,135.6883,135.8954 -"Iron and steel products (NAICS = 3311,2); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G3311A2.S,CAP.G3311A2.S,130.6377,130.7534,130.8819,131.0235,131.1773,131.3421,131.5162 -"Transportation equipment (NAICS = 336); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G336.S,CAP.G336.S,137.1414,137.2712,137.4056,137.5447,137.6884,137.8382,137.9950 -"Automobile and light duty motor vehicle (NAICS = 33611); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G33611.S,CAP.G33611.S,164.9598,165.2365,165.5300,165.8428,166.1760,166.5340,166.9197 -"Food (NAICS = 311); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G311.S,CAP.G311.S,120.5215,120.4686,120.4148,120.3598,120.3039,120.2469,120.1890 -"Beverage and tobacco product (NAICS = 312); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G312.S,CAP.G312.S,137.1571,137.2245,137.2903,137.3566,137.4247,137.4942,137.5657 -"Textile mills (NAICS = 313); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G313.S,CAP.G313.S,113.1528,112.7046,112.2521,111.7958,111.3379,110.8765,110.4110 -"Textile product mills (NAICS = 314); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G314.S,CAP.G314.S,117.6380,117.4624,117.2850,117.1058,116.9256,116.7439,116.5605 -"Apparel (NAICS = 315); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G315.S,CAP.G315.S,120.3936,120.1604,119.9208,119.6754,119.4261,119.1726,118.9154 -"Leather and allied product (NAICS = 316); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G316.S,CAP.G316.S,147.5852,147.9977,148.3140,148.5415,148.6886,148.7726,148.8074 -"Plastics material and resin (NAICS = 325211); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.N325211.S,CAP.N325211.S,111.0182,111.1692,111.3509,111.5620,111.7994,112.0592,112.3377 -"Synthetic rubber (NAICS = 325212); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G325212.S,CAP.G325212.S,148.4654,148.3795,148.2894,148.1952,148.0977,147.9972,147.8939 -"Artificial and synthetic fibers and filaments (NAICS = 32522); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G32522.S,CAP.G32522.S,81.2370,80.6514,80.0697,79.4899,78.9129,78.3381,77.7652 -"Oil and gas extraction (NAICS = 211); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G211.S,CAP.G211.S,147.4789,147.9092,148.3009,148.6578,148.9831,149.2870,149.5770 -"Mining (except oil and gas) (NAICS = 212); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G212.S,CAP.G212.S,124.8299,124.8116,124.8195,124.8509,124.9017,124.9640,125.0313 -"Coal mining (NAICS = 2121); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.N2121.S,CAP.N2121.S,105.2927,105.0149,104.7695,104.5556,104.3715,104.2107,104.0681 -"Metal ore mining (NAICS = 2122); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G2122.S,CAP.G2122.S,150.4960,150.7247,151.0086,151.3429,151.7196,152.1242,152.5449 -"Nonmetallic mineral mining and quarrying (NAICS = 2123); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G2123.S,CAP.G2123.S,118.6562,118.5997,118.5286,118.4436,118.3460,118.2378,118.1206 -"Support activities for mining (NAICS = 213); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G213.S,CAP.G213.S,106.9914,105.9700,104.9326,103.8812,102.8228,101.7562,100.6833 -"Electric power generation, transmission, and distribution (NAICS = 2211); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G2211.S,CAP.G2211.S,146.5681,147.0439,147.5266,148.0152,148.5072,149.0041,149.5065 -"Natural gas distribution (NAICS = 2212); s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.G2212.S,CAP.G2212.S,138.5246,138.5541,138.5812,138.6060,138.6287,138.6499,138.6699 -"Manufacturing ex. hi-tech and motor vehicles & pts.; s.a. CAP","Index:_2017_100","1","NA",G17/CAP/CAP.X4HTMV.S,CAP.X4HTMV.S,125.0892,125.1859,125.2830,125.3807,125.4785,125.5772,125.6773 -"Total index; s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.B50001.S,CAPUTL.B50001.S,78.1414,77.1945,77.9778,77.7601,77.7150,78.3268,78.7603 -"Manufacturing (SIC); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.B00004.S,CAPUTL.B00004.S,77.5511,76.4637,77.3425,77.4115,76.9388,77.6380,77.8564 -"Manufacturing (NAICS); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.GMF.S,CAPUTL.GMF.S,77.5490,76.3931,77.2760,77.3431,76.8523,77.5478,77.7494 -"Durable manufacturing (NAICS); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.GMFD.S,CAPUTL.GMFD.S,76.1607,75.1299,76.0751,76.0831,75.6386,76.0518,75.9403 -"Wood product (NAICS = 321); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G321.S,CAPUTL.G321.S,75.4908,74.6167,75.0931,75.7205,74.6118,76.1486,76.3647 -"Nonmetallic mineral product (NAICS = 327); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G327.S,CAPUTL.G327.S,80.5586,77.9875,78.7897,77.4775,77.3366,76.9170,77.9121 -"Primary metal (NAICS = 331); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G331.S,CAPUTL.G331.S,71.1088,69.5875,69.8140,70.1523,68.8408,71.2486,70.4550 -"Fabricated metal product (NAICS = 332); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G332.S,CAPUTL.G332.S,76.1592,76.7645,77.2322,76.8931,76.3742,77.1609,76.1801 -"Machinery (NAICS = 333); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G333.S,CAPUTL.G333.S,81.5299,80.8845,82.4637,81.1866,80.7374,81.3052,80.6705 -"Computer and electronic product (NAICS = 334); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G334.S,CAPUTL.G334.S,75.5723,75.7587,75.2815,75.1169,74.9408,75.3127,74.5412 -"Electrical equipment, appliance, and component (NAICS = 335); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G335.S,CAPUTL.G335.S,79.9499,79.7051,79.0233,80.1072,78.9496,79.7216,80.8400 -"Motor vehicles and parts (NAICS = 3361-3); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G3361T3.S,CAPUTL.G3361T3.S,74.1699,69.6838,73.5926,75.0915,74.4868,74.3496,75.4092 -"Aerospace and miscellaneous transportation eq. (NAICS = 3364-9); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G3364T9.S,CAPUTL.G3364T9.S,70.1430,70.4149,69.7676,70.1492,71.2663,71.7172,72.6106 -"Furniture and related product (NAICS = 337); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G337.S,CAPUTL.G337.S,69.0101,68.4628,69.5521,69.0752,70.0145,68.7773,69.9824 -"Miscellaneous (NAICS = 339); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G339.S,CAPUTL.G339.S,80.9254,80.1192,81.2495,80.8036,79.4325,78.0576,76.3320 -"Nondurable manufacturing (NAICS); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.GMFN.S,CAPUTL.GMFN.S,79.0257,77.7309,78.5417,78.6674,78.1216,79.1168,79.6525 -"Food, beverage, and tobacco (NAICS = 311,2); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G311A2.S,CAPUTL.G311A2.S,80.3986,79.5456,79.8675,79.7642,79.4710,80.1356,80.5166 -"Textiles and products (NAICS = 313,4); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G313A4.S,CAPUTL.G313A4.S,67.0235,67.2135,68.5384,68.6982,68.4316,70.2985,71.5415 -"Apparel and leather goods (NAICS = 315,6); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G315A6.S,CAPUTL.G315A6.S,64.4851,64.2607,63.6114,62.6429,63.6173,63.5344,64.5550 -"Paper (NAICS = 322); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G322.S,CAPUTL.G322.S,81.4513,81.2406,82.6414,82.4107,82.4943,82.9364,84.1688 -"Printing and related support activities (NAICS = 323); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G323.S,CAPUTL.G323.S,72.0950,73.0195,74.0638,74.7174,75.4727,75.0598,76.9357 -"Petroleum and coal products (NAICS = 324); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G324.S,CAPUTL.G324.S,91.1833,89.0942,90.0629,91.8930,88.3161,91.5063,91.9689 -"Chemical (NAICS = 325); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G325.S,CAPUTL.G325.S,76.0882,74.0682,75.3828,75.3044,74.8988,76.2004,76.9090 -"Plastics and rubber products (NAICS = 326); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G326.S,CAPUTL.G326.S,76.9626,75.6483,75.7474,75.7319,75.6643,75.4412,74.9274 -"Other manufacturing; s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.GMFO.S,CAPUTL.GMFO.S,77.6139,79.8621,80.5570,80.7362,81.1725,82.0721,83.1501 -"Mining (NAICS = 21); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G21.S,CAPUTL.G21.S,89.7455,85.9142,89.6267,89.2264,89.4819,88.9540,89.2950 -"Electric and gas utilities (NAICS = 2211,2); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G2211A2.S,CAPUTL.G2211A2.S,70.5536,73.3587,70.4931,68.5743,70.8435,72.0047,73.8274 -"Computers, communications eq., and semiconductors (NAICS = 3341,3342,3344); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.HITEK2.S,CAPUTL.HITEK2.S,80.1603,79.5596,78.5453,78.2988,78.2961,79.1357,78.5026 -"Computer and peripheral equipment (NAICS = 3341); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G3341.S,CAPUTL.G3341.S,75.7551,74.7352,74.7382,76.4754,75.8477,76.5490,74.5799 -"Communications equipment (NAICS = 3342); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G3342.S,CAPUTL.G3342.S,75.1972,74.9881,74.6314,74.3059,73.8682,73.3575,72.6819 -"Total ex. computers, communications eq., and semiconductors; s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.X50HTK.S,CAPUTL.X50HTK.S,78.0903,77.1364,77.9548,77.7376,77.6915,78.2986,78.7534 -"Manufacturing ex. computers, communications eq., and semiconductors; s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.X4HTK2.S,CAPUTL.X4HTK2.S,77.4696,76.3693,77.2972,77.3744,76.8891,77.5841,77.8251 -"Crude processing (capacity); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.B5610C.S,CAPUTL.B5610C.S,87.5777,83.8773,86.7791,86.8717,86.6028,86.8994,87.5714 -"Primary & semifinished processing (capacity); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.B562A3C.S,CAPUTL.B562A3C.S,76.4578,76.4650,76.4769,76.0249,76.1875,77.0667,77.6616 -"Finished processing (capacity); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.B5640C.S,CAPUTL.B5640C.S,76.2946,75.3055,76.1227,76.0363,75.7978,76.1831,76.2893 -"Iron and steel products (NAICS = 3311,2); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G3311A2.S,CAPUTL.G3311A2.S,73.4967,71.2436,71.7282,71.5015,70.0158,70.6533,71.0002 -"Transportation equipment (NAICS = 336); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G336.S,CAPUTL.G336.S,72.6641,69.9550,72.1708,73.2587,73.2986,73.3842,74.3866 -"Automobile and light duty motor vehicle (NAICS = 33611); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G33611.S,CAPUTL.G33611.S,73.8866,67.8966,72.8817,74.7064,74.1828,74.1440,76.1673 -"Food (NAICS = 311); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G311.S,CAPUTL.G311.S,84.9592,84.2962,84.7508,84.2275,84.4663,85.0356,84.8254 -"Beverage and tobacco product (NAICS = 312); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G312.S,CAPUTL.G312.S,67.9973,66.6320,66.5938,67.6130,65.8932,66.8070,68.7573 -"Textile mills (NAICS = 313); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G313.S,CAPUTL.G313.S,64.1544,64.8113,65.9421,68.7916,68.5685,70.6791,72.4214 -"Textile product mills (NAICS = 314); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G314.S,CAPUTL.G314.S,70.2499,69.9290,71.4800,68.6968,68.4015,70.0263,70.7506 -"Apparel (NAICS = 315); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G315.S,CAPUTL.G315.S,59.3945,58.9624,58.2216,56.6596,59.3319,58.9682,59.0710 -"Leather and allied product (NAICS = 316); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G316.S,CAPUTL.G316.S,73.5700,73.7018,73.2047,73.3013,71.2161,71.6427,74.3075 -"Plastics material and resin (NAICS = 325211); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.N325211.S,CAPUTL.N325211.S,83.9341,78.0779,84.5545,82.4720,80.6081,82.5893, -"Synthetic rubber (NAICS = 325212); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G325212.S,CAPUTL.G325212.S,52.8954,51.8590,52.2469,53.0614,49.9837,50.7602,50.8834 -"Artificial and synthetic fibers and filaments (NAICS = 32522); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G32522.S,CAPUTL.G32522.S,77.9836,76.9003,78.4523,80.5912,76.8840,77.7881,78.4870 -"Oil and gas extraction (NAICS = 211); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G211.S,CAPUTL.G211.S,97.5887,93.2550,97.0953,96.2862,97.3070,97.0333,97.4293 -"Mining (except oil and gas) (NAICS = 212); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G212.S,CAPUTL.G212.S,71.5145,65.5478,70.2449,69.7040,68.3845,66.4837,66.0275 -"Coal mining (NAICS = 2121); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.N2121.S,CAPUTL.N2121.S,72.8155,62.4264,67.3465,64.4412,57.4538,55.8162, -"Metal ore mining (NAICS = 2122); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G2122.S,CAPUTL.G2122.S,55.6185,53.0835,53.9730,56.3667,54.9601,56.3962,55.9966 -"Nonmetallic mineral mining and quarrying (NAICS = 2123); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G2123.S,CAPUTL.G2123.S,88.7406,82.1392,91.1695,89.0074,92.1171,86.1074,86.0879 -"Support activities for mining (NAICS = 213); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G213.S,CAPUTL.G213.S,79.7310,80.0364,81.3343,82.1798,80.5299,80.0324,80.5288 -"Electric power generation, transmission, and distribution (NAICS = 2211); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G2211.S,CAPUTL.G2211.S,70.3358,72.8668,70.3337,68.7119,70.5077,72.0327,73.9266 -"Natural gas distribution (NAICS = 2212); s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.G2212.S,CAPUTL.G2212.S,73.7538,78.6121,73.1421,68.8723,74.7245,73.0406,74.2847 -"Manufacturing ex. hi-tech and motor vehicles & pts.; s.a. CAPUTL","Percentage","1","NA",G17/CAPUTL/CAPUTL.X4HTMV.S,CAPUTL.X4HTMV.S,77.7595,76.9566,77.6201,77.5703,77.0941,77.8611,78.0283 -"Final products and nonindustrial supplies--gross value; s.a. GVIP","Currency:_Base_2012","1e+09","USD",G17/GVIP/GVIP.T50030.S,GVIP.T50030.S,3990.5007,3942.2917,3983.9230,3976.7548,3981.8338,4014.6174,4043.5625 -"Final products--gross value; s.a. GVIP","Currency:_Base_2012","1e+09","USD",G17/GVIP/GVIP.T50002.S,GVIP.T50002.S,2981.5060,2940.3476,2967.3285,2961.4564,2974.1197,2991.5829,3014.2088 -"Consumer goods--gross value; s.a. GVIP","Currency:_Base_2012","1e+09","USD",G17/GVIP/GVIP.T51000.S,GVIP.T51000.S,2197.9398,2168.7720,2180.9802,2171.8302,2188.3914,2204.2398,2227.5510 -"Durable consumer goods--gross value; s.a. GVIP","Currency:_Base_2012","1e+09","USD",G17/GVIP/GVIP.T51100.S,GVIP.T51100.S,580.7503,551.6553,574.3983,579.4876,573.7042,574.8704,579.0605 -"Automotive products--gross value; s.a. GVIP","Currency:_Base_2012","1e+09","USD",G17/GVIP/GVIP.T51110.S,GVIP.T51110.S,424.5557,394.0180,414.5127,422.7417,418.6795,420.4739,426.5437 -"Other durable goods--gross value; s.a. GVIP","Currency:_Base_2012","1e+09","USD",G17/GVIP/GVIP.T51120.S,GVIP.T51120.S,157.9036,158.0808,160.8967,158.3646,156.6481,156.1503,154.6935 -"Nondurable consumer goods--gross value; s.a. GVIP","Currency:_Base_2012","1e+09","USD",G17/GVIP/GVIP.T51200.S,GVIP.T51200.S,1619.8480,1617.6958,1609.0328,1595.4935,1616.8987,1631.3156,1650.2799 -"Equipment, total--gross value; s.a. GVIP","Currency:_Base_2012","1e+09","USD",G17/GVIP/GVIP.T52000.S,GVIP.T52000.S,788.6803,776.5206,791.9772,795.6414,791.1769,792.5820,791.4066 -"Business equipment and defense and space equipment--gross value; s.a. GVIP","Currency:_Base_2012","1e+09","USD",G17/GVIP/GVIP.T521A3.S,GVIP.T521A3.S,764.7849,753.1045,768.0911,771.7245,767.9788,769.7522,768.4010 -"Business equipment--gross value; s.a. GVIP","Currency:_Base_2012","1e+09","USD",G17/GVIP/GVIP.T52100.S,GVIP.T52100.S,625.5576,613.5226,628.1761,631.1609,626.0599,627.2776,625.1692 -"Defense and space equipment--gross value; s.a. GVIP","Currency:_Base_2012","1e+09","USD",G17/GVIP/GVIP.T52300.S,GVIP.T52300.S,139.3475,140.1570,140.0483,140.6949,142.4326,143.0326,143.9807 -"Nonindustrial supplies--gross value; s.a. GVIP","Currency:_Base_2012","1e+09","USD",G17/GVIP/GVIP.T54000.S,GVIP.T54000.S,1009.4112,1002.2122,1016.7541,1015.4436,1008.0906,1023.2357,1029.5825 -"Construction supplies--gross value; s.a. GVIP","Currency:_Base_2012","1e+09","USD",G17/GVIP/GVIP.T54100.S,GVIP.T54100.S,277.3935,274.1426,280.3562,280.5292,275.1259,278.7577,278.5442 -"Business supplies--gross value; s.a. GVIP","Currency:_Base_2012","1e+09","USD",G17/GVIP/GVIP.T54200.S,GVIP.T54200.S,732.6449,728.8971,736.8723,735.2996,733.9137,745.5267,752.4291 -"Commercial energy products--gross value; s.a. GVIP","Currency:_Base_2012","1e+09","USD",G17/GVIP/GVIP.T54220.S,GVIP.T54220.S,261.3458,263.0556,264.9510,261.6858,262.9290,270.2698,274.4536 -"Total index; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B50001.S,RIW.B50001.S,100.0000,100.0000,100.0000,100.0000,100.0000,100.0000,100.0000 -"Final products and nonindustrial supplies; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B50030.S,RIW.B50030.S,54.8160,54.9742,54.8418,54.7454,54.7752,54.6297,54.5917 -"Consumer goods; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B51000.S,RIW.B51000.S,27.8693,27.9707,27.7692,27.6540,27.8295,27.7537,27.8508 -"Durable consumer goods; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B51100.S,RIW.B51100.S,6.2560,6.0988,6.2384,6.2779,6.2060,6.1360,6.1241 -"Automotive products; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B51110.S,RIW.B51110.S,3.4978,3.3036,3.4233,3.4928,3.4517,3.4101,3.4403 -"Computers, video and audio equipment; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B51121.S,RIW.B51121.S,0.1479,0.1507,0.1472,0.1492,0.1466,0.1446,0.1395 -"Appliances, furniture, and carpeting; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B51122.S,RIW.B51122.S,0.9086,0.9248,0.9482,0.9000,0.8960,0.8777,0.8687 -"Miscellaneous durable goods; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B51123.S,RIW.B51123.S,1.7017,1.7197,1.7197,1.7359,1.7117,1.7035,1.6757 -"Nondurable consumer goods; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B51200.S,RIW.B51200.S,21.6133,21.8719,21.5308,21.3761,21.6235,21.6178,21.7267 -"Nondurable nonenergy consumer goods; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B51210.S,RIW.B51210.S,16.1538,16.2588,16.1746,16.1852,16.1709,16.2082,16.2118 -"Foods and tobacco; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B51211.S,RIW.B51211.S,9.7589,9.7759,9.7029,9.7199,9.6985,9.6896,9.6750 -"Clothing; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B51212.S,RIW.B51212.S,0.1577,0.1590,0.1557,0.1533,0.1564,0.1546,0.1555 -"Chemical products; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B51213.S,RIW.B51213.S,5.0766,5.1362,5.1319,5.1308,5.1364,5.1983,5.2208 -"Paper products; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B51214.S,RIW.B51214.S,0.7588,0.7848,0.7778,0.7792,0.7794,0.7740,0.7742 -"Consumer energy products; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B51220.S,RIW.B51220.S,5.4595,5.6132,5.3562,5.1909,5.4526,5.4096,5.5149 -"Business equipment; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B52100.S,RIW.B52100.S,8.7796,8.7760,8.8177,8.8432,8.7976,8.7442,8.6469 -"Transit equipment; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B52110.S,RIW.B52110.S,1.8016,1.7420,1.7792,1.8226,1.8070,1.7769,1.7849 -"Information processing and related equipment; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B52120.S,RIW.B52120.S,1.7926,1.8256,1.8061,1.8121,1.8099,1.7989,1.7675 -"Industrial and other equipment; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B52130.S,RIW.B52130.S,5.1854,5.2084,5.2324,5.2085,5.1807,5.1685,5.0945 -"Defense and space equipment; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B52300.S,RIW.B52300.S,1.7921,1.8188,1.7999,1.8094,1.8283,1.8172,1.8139 -"Construction supplies; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B54100.S,RIW.B54100.S,5.1744,5.1569,5.2274,5.2292,5.1504,5.1499,5.1135 -"Business supplies; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B54200.S,RIW.B54200.S,10.5602,10.6150,10.5927,10.5720,10.5527,10.5647,10.5677 -"Materials; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B53000.S,RIW.B53000.S,45.1840,45.0258,45.1582,45.2546,45.2248,45.3703,45.4083 -"Materials ex. energy materials; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.Z53010.S,RIW.Z53010.S,27.3844,27.2124,27.2398,27.3232,27.1783,27.2844,27.2035 -"Durable goods materials; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B53100.S,RIW.B53100.S,16.8595,16.8285,16.7620,16.8495,16.8326,16.8933,16.7642 -"Consumer parts; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B53110.S,RIW.B53110.S,3.0113,2.9627,2.9495,2.9613,2.9564,2.9476,2.9531 -"Equipment parts; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B53120.S,RIW.B53120.S,4.6347,4.6829,4.6145,4.6492,4.6801,4.7158,4.7112 -"Other durable materials; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B53130.S,RIW.B53130.S,9.2135,9.1829,9.1980,9.2390,9.1960,9.2300,9.0999 -"Nondurable goods materials; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B53200.S,RIW.B53200.S,10.5249,10.3838,10.4778,10.4737,10.3457,10.3910,10.4394 -"Textile materials; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B53210.S,RIW.B53210.S,0.2854,0.2893,0.2901,0.2978,0.2951,0.3000,0.3034 -"Paper materials; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B53220.S,RIW.B53220.S,1.4754,1.4913,1.5052,1.5028,1.4993,1.4882,1.5082 -"Chemical materials; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B53230.S,RIW.B53230.S,5.4290,5.2520,5.3379,5.3532,5.2643,5.3529,5.3815 -"Energy materials; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B53300.S,RIW.B53300.S,17.7996,17.8135,17.9184,17.9314,18.0465,18.0860,18.2047 -"Manufacturing (SIC); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B00004.S,RIW.B00004.S,75.3076,75.0948,75.1303,75.3463,74.8702,74.9007,74.6525 -"Manufacturing (NAICS); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.GMF.S,RIW.GMF.S,73.7811,73.5123,73.5576,73.7730,73.2949,73.3278,73.0765 -"Durable manufacturing (NAICS); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.GMFD.S,RIW.GMFD.S,37.5185,37.4594,37.5482,37.6582,37.4629,37.3777,37.1160 -"Wood product (NAICS = 321); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G321.S,RIW.G321.S,1.6051,1.6035,1.5951,1.6104,1.5853,1.6026,1.5966 -"Nonmetallic mineral product (NAICS = 327); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G327.S,RIW.G327.S,2.3382,2.2916,2.2920,2.2602,2.2574,2.2274,2.2432 -"Primary metal (NAICS = 331); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G331.S,RIW.G331.S,2.7275,2.6936,2.6678,2.6818,2.6274,2.6930,2.6465 -"Fabricated metal product (NAICS = 332); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G332.S,RIW.G332.S,6.0826,6.1997,6.1683,6.1520,6.1075,6.1156,5.9996 -"Machinery (NAICS = 333); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G333.S,RIW.G333.S,5.6038,5.6318,5.6896,5.6223,5.6003,5.6017,5.5329 -"Computer and electronic product (NAICS = 334); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G334.S,RIW.G334.S,4.4888,4.5670,4.5051,4.5211,4.5266,4.5274,4.4653 -"Electrical equipment, appliance, and component (NAICS = 335); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G335.S,RIW.G335.S,2.1316,2.1508,2.1108,2.1457,2.1161,2.1204,2.1394 -"Motor vehicles and parts (NAICS = 3361-3); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3361T3.S,RIW.G3361T3.S,5.6896,5.4078,5.6508,5.7795,5.7341,5.6771,5.7227 -"Aerospace and miscellaneous transportation eq. (NAICS = 3364-9); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3364T9.S,RIW.G3364T9.S,3.1992,3.2443,3.1758,3.1960,3.2425,3.2313,3.2447 -"Furniture and related product (NAICS = 337); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G337.S,RIW.G337.S,0.9700,0.9703,0.9718,0.9638,0.9732,0.9443,0.9514 -"Miscellaneous (NAICS = 339); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G339.S,RIW.G339.S,2.6822,2.6991,2.7210,2.7254,2.6925,2.6368,2.5739 -"Nondurable manufacturing (NAICS); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.GMFN.S,RIW.GMFN.S,36.2625,36.0530,36.0094,36.1149,35.8320,35.9501,35.9605 -"Food, beverage, and tobacco (NAICS = 311,2); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G311A2.S,RIW.G311A2.S,12.1905,12.1951,12.1075,12.1131,12.0635,12.0566,12.0332 -"Textiles and products (NAICS = 313,4); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G313A4.S,RIW.G313A4.S,0.5119,0.5172,0.5195,0.5197,0.5154,0.5228,0.5265 -"Apparel and leather goods (NAICS = 315,6); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G315A6.S,RIW.G315A6.S,0.1772,0.1789,0.1754,0.1732,0.1760,0.1744,0.1760 -"Paper (NAICS = 322); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G322.S,RIW.G322.S,2.2188,2.2295,2.2348,2.2246,2.2182,2.2029,2.2156 -"Printing and related support activities (NAICS = 323); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G323.S,RIW.G323.S,1.2720,1.3061,1.3135,1.3311,1.3477,1.3323,1.3603 -"Petroleum and coal products (NAICS = 324); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G324.S,RIW.G324.S,4.0470,3.9813,3.9617,4.0295,3.8504,3.9325,3.9188 -"Chemical (NAICS = 325); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G325.S,RIW.G325.S,12.0708,11.8864,11.9686,11.9831,11.9194,12.0261,12.0705 -"Plastics and rubber products (NAICS = 326); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G326.S,RIW.G326.S,3.7742,3.7585,3.7284,3.7405,3.7413,3.7026,3.6596 -"Other manufacturing; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.GMFO.S,RIW.GMFO.S,1.5265,1.5825,1.5727,1.5732,1.5753,1.5729,1.5760 -"Mining (NAICS = 21); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G21.S,RIW.G21.S,13.9107,13.5432,14.0472,14.0815,14.1864,14.0474,14.0683 -"Electric and gas utilities (NAICS = 2211,2); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G2211A2.S,RIW.G2211A2.S,10.7817,11.3620,10.8225,10.5722,10.9435,11.0519,11.2792 -"Electric power generation, transmission, and distribution (NAICS = 2211); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G2211.S,RIW.G2211.S,9.4433,9.9280,9.5110,9.3424,9.6178,9.7753,9.9962 -"Natural gas distribution (NAICS = 2212); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G2212.S,RIW.G2212.S,1.3384,1.4339,1.3116,1.2298,1.3257,1.2766,1.2830 -"Energy, total; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B50089.S,RIW.B50089.S,26.6368,26.8522,26.6671,26.4661,26.8425,26.8534,27.0928 -"Commercial energy products; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B54220.S,RIW.B54220.S,2.8003,2.8470,2.8240,2.7702,2.7912,2.8227,2.8392 -"Drilling oil and gas wells (NAICS = 213111); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N213111.S,RIW.N213111.S,0.5774,0.5786,0.5685,0.5736,0.5522,0.5352,0.5340 -"Converted fuel; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B53320.S,RIW.B53320.S,5.1716,5.4433,5.1463,5.1321,5.1588,5.2654,5.3149 -"Primary energy; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B53310.S,RIW.B53310.S,12.6280,12.3702,12.7722,12.7993,12.8877,12.8205,12.8898 -"Non-energy, total; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.X5001E.S,RIW.X5001E.S,73.3632,73.1478,73.3329,73.5339,73.1575,73.1466,72.9072 -"Computers, communications eq., and semiconductors (NAICS = 3341,3342,3344); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.HITEK2.S,RIW.HITEK2.S,1.9716,1.9897,1.9537,1.9620,1.9722,1.9869,1.9665 -"Computer and peripheral equipment (NAICS = 3341); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3341.S,RIW.G3341.S,0.2334,0.2320,0.2286,0.2334,0.2303,0.2294,0.2210 -"Communications equipment (NAICS = 3342); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3342.S,RIW.G3342.S,0.4384,0.4433,0.4375,0.4377,0.4361,0.4304,0.4246 -"Non-energy ex. computers, communications eq., and semiconductors; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.X5EHTK.S,RIW.X5EHTK.S,71.3917,71.1581,71.3792,71.5718,71.1853,71.1597,70.9408 -"Motor vehicle (NAICS = 3361); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3361.S,RIW.G3361.S,2.7739,2.5709,2.7494,2.8382,2.7900,2.7503,2.7986 -"Motor vehicle parts (NAICS = 3363); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3363.S,RIW.G3363.S,2.3550,2.3247,2.3745,2.4010,2.4008,2.3867,2.3968 -"Non-energy ex. motor vehicles & pts., computers, communications eq., and semiconductors; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.X50EHV.S,RIW.X50EHV.S,65.7021,65.7503,65.7284,65.7923,65.4512,65.4826,65.2181 -"Consumer goods ex. hi-tech, motor vehicles & pts., and energy; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.X51HVE.S,RIW.X51HVE.S,19.3697,19.4907,19.4308,19.4197,19.3575,19.3596,19.3307 -"Business equipment ex. hi-tech and motor vehicles and parts; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.X52HTV.S,RIW.X52HTV.S,7.4489,7.5129,7.4922,7.4718,7.4526,7.4204,7.3219 -"Construction supplies ex. hi-tech; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.X5410H.S,RIW.X5410H.S,5.1637,5.1460,5.2167,5.2185,5.1397,5.1393,5.1031 -"Business supplies ex. energy, motor vehicles & parts, and selected high-tech industries; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.X5421T.S,RIW.X5421T.S,7.3648,7.3678,7.3767,7.4078,7.3640,7.3384,7.3273 -"Materials ex. energy, motor vehicles & pts., computers, communications eq., and semiconductors; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.X53EHV.S,RIW.X53EHV.S,24.5474,24.4039,24.3933,24.4485,24.2920,24.3897,24.3025 -"Total ex. computers, communications eq., and semiconductors; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.X50HTK.S,RIW.X50HTK.S,98.0284,98.0103,98.0463,98.0380,98.0278,98.0131,98.0335 -"Manufacturing ex. computers, communications eq., and semiconductors; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.X4HTK2.S,RIW.X4HTK2.S,73.3361,73.1051,73.1766,73.3842,72.8980,72.9138,72.6861 -"Durable mfg. ex. computers, communications eq., and semiconductors; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.X5HTK2.S,RIW.X5HTK2.S,35.6830,35.6006,35.7333,35.8327,35.6255,35.5247,35.2866 -"Total ex. motor vehicles and parts; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.X50001.S,RIW.X50001.S,94.3104,94.5922,94.3492,94.2205,94.2659,94.3229,94.2773 -"Manufacturing ex. motor vehicles and parts; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.XXX001.S,RIW.XXX001.S,69.6180,69.6870,69.4794,69.5667,69.1361,69.2236,68.9299 -"Durable manufacturing ex. motor vehicles & parts; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.X005MV.S,RIW.X005MV.S,31.9650,32.1825,32.0362,32.0152,31.8636,31.8346,31.5303 -"Total ex. selected high-tech. and motor vehicles & pts.; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.X5VHT2.S,RIW.X5VHT2.S,92.3389,92.6024,92.3955,92.2584,92.2937,92.3360,92.3109 -"Manufacturing ex. hi-tech and motor vehicles & pts.; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.X4HTMV.S,RIW.X4HTMV.S,67.6465,67.6972,67.5258,67.6047,67.1639,67.2367,66.9634 -"Non-energy materials for finished goods producers; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B53810.S,RIW.B53810.S,9.4068,9.4262,9.3592,9.4110,9.4309,9.4515,9.4759 -"Non-energy materials for intermediate goods producers; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B53820.S,RIW.B53820.S,17.9776,17.7861,17.8806,17.9121,17.7474,17.8328,17.7276 -"Oil and gas extraction (NAICS = 211); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G211.S,RIW.G211.S,9.7023,9.4813,9.8678,9.9058,10.1084,10.0904,10.1559 -"Crude oil (NAICS = 21112); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G21112.S,RIW.G21112.S,7.9094,7.6896,7.9608,7.9754,8.1268,8.0796,8.0954 -"Natural gas and natural gas liquids (NAICS = 21113); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G21113.S,RIW.G21113.S,1.7929,1.7918,1.9070,1.9304,1.9816,2.0107,2.0605 -"Natural gas (NAICS = 211130pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N21113G.S,RIW.N21113G.S,0.9208,0.9477,0.9960,1.0018,1.0262,1.0441, -"Natural gas liquid extraction (NAICS = 211130pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G21113PQ.S,RIW.G21113PQ.S,0.8721,0.8441,0.9110,0.9286,0.9554,0.9666,0.9633 -"Mining (except oil and gas) (NAICS = 212); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G212.S,RIW.G212.S,2.2021,2.0487,2.1797,2.1756,2.1424,2.0737,2.0524 -"Coal mining (NAICS = 2121); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N2121.S,RIW.N2121.S,0.5750,0.4999,0.5349,0.5145,0.4601,0.4448, -"Metal ore mining (NAICS = 2122); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G2122.S,RIW.G2122.S,0.6861,0.6670,0.6759,0.7126,0.7001,0.7181,0.7136 -"Iron ore mining (NAICS = 21221); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N21221.S,RIW.N21221.S,0.0584,0.0554,0.0559,0.0566,0.0583,, -"Gold ore and silver ore mining (NAICS = 21222); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G21222.S,RIW.G21222.S,0.2142,0.1959,0.2001,0.2100,0.1955,0.2041,0.2019 -"Copper, nickel, lead, and zinc mining (NAICS = 21223); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G21223.S,RIW.G21223.S,0.2777,0.2944,0.3028,0.3153,0.3197,0.3399,0.3405 -"Nonmetallic mineral mining and quarrying (NAICS = 2123); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G2123.S,RIW.G2123.S,0.9410,0.8818,0.9689,0.9485,0.9822,0.9108,0.9044 -"Support activities for mining (NAICS = 213); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G213.S,RIW.G213.S,2.0063,2.0132,1.9997,2.0001,1.9356,1.8834,1.8600 -"Electric power generation (NAICS = 22111); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G22111.S,RIW.G22111.S,4.5563,4.8128,4.5045,4.5460,4.6031,4.7510,4.8321 -"Hydroelectric, renewables, and other (NAICS = 221111,4-8); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G221111A4T8.S,RIW.G221111A4T8.S,0.5969,0.5878,0.6116,0.6584,0.6273,0.6332,0.6405 -"Hydroelectric power generation (NAICS = 221111); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N221111.S,RIW.N221111.S,0.2615,0.2631,0.2676,0.2973,0.2438,, -"Renewables and other electric power generation (NAICS = 221114-8); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N221114T8.S,RIW.N221114T8.S,0.3353,0.3247,0.3440,0.3611,0.3835,, -"Fossil Fuel electric power generation (NAICS = 221112); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N221112.S,RIW.N221112.S,2.5579,2.8304,2.4618,2.4725,2.5367,, -"Nuclear electric power generation (NAICS = 221113); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N221113.S,RIW.N221113.S,1.4015,1.3946,1.4311,1.4151,1.4391,, -"Electric power transmission, control, and distribution (NAICS = 22112); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G22112.S,RIW.G22112.S,4.8870,5.1152,5.0064,4.7964,5.0146,5.0243,5.1641 -"Commercial and other electricity sales (NAICS = 22112pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N22112C.S,RIW.N22112C.S,1.9047,1.9584,1.9436,1.8966,1.9354,, -"Industrial electricity sales (NAICS = 22112pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N22112M.S,RIW.N22112M.S,0.8252,0.8330,0.8349,0.8238,0.8117,, -"Residential electricity sales (NAICS = 22112pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N22112R.S,RIW.N22112R.S,2.1571,2.3238,2.2279,2.0760,2.2675,, -"Commercial and other gas sales (NAICS = 2212pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N2212C.S,RIW.N2212C.S,0.2339,0.2488,0.2310,0.2215,0.2364,, -"Industrial gas sales (NAICS = 2212pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N2212M.S,RIW.N2212M.S,0.0813,0.0829,0.0805,0.0799,0.0777,, -"Residential gas sales (NAICS = 2212pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N2212R.S,RIW.N2212R.S,0.6686,0.7083,0.6372,0.5811,0.6436,, -"Gas transmission (NAICS = 2212pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N2212T.S,RIW.N2212T.S,0.3546,0.3939,0.3629,0.3473,0.3680,, -"Food (NAICS = 311); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G311.S,RIW.G311.S,9.4026,9.4265,9.3655,9.3178,9.3340,9.3074,9.2174 -"Animal food (NAICS = 3111); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3111.S,RIW.G3111.S,0.6918,0.6769,0.6701,0.6653,0.6461,0.6582,0.6536 -"Grain and oilseed milling (NAICS = 3112); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3112.S,RIW.G3112.S,0.6628,0.6710,0.6610,0.6588,0.6311,0.6396,0.6423 -"Sugar and confectionery product (NAICS = 3113); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3113.S,RIW.G3113.S,0.4589,0.4627,0.4791,0.5087,0.5171,0.5122,0.5025 -"Fruit and vegetable preserving and specialty food (NAICS = 3114); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3114.S,RIW.G3114.S,1.0314,1.0323,1.0148,1.0098,1.0137,1.0103,0.9769 -"Dairy product (NAICS = 3115); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3115.S,RIW.G3115.S,1.1038,1.0980,1.0950,1.1114,1.1110,1.0964,1.0967 -"Dairy product (except frozen) (NAICS = 31151); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G31151.S,RIW.G31151.S,0.9817,0.9826,0.9734,0.9811,0.9884,0.9716,0.9722 -"Fluid milk (NAICS = 311511); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N311511.S,RIW.N311511.S,0.3740,0.3764,0.3724,0.3734,0.3720,0.3683, -"Creamery butter (NAICS = 311512); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N311512.S,RIW.N311512.S,0.0362,0.0356,0.0358,0.0390,0.0402,0.0390, -"Cheese (NAICS = 311513); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N311513.S,RIW.N311513.S,0.4156,0.4180,0.4151,0.4107,0.4200,0.4120, -"Dry, condensed, and evaporated dairy product (NAICS = 311514); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N311514.S,RIW.N311514.S,0.1559,0.1527,0.1502,0.1580,0.1562,0.1524, -"Ice cream and frozen dessert (NAICS = 31152); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N31152.S,RIW.N31152.S,0.1221,0.1154,0.1217,0.1303,0.1226,0.1248, -"Animal slaughtering and processing (NAICS = 3116); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3116.S,RIW.G3116.S,2.3067,2.2751,2.3054,2.2351,2.3017,2.2917,2.2856 -"Animal (except poultry) slaughtering and meat processing (NAICS = 311611-3); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G311611T3.S,RIW.G311611T3.S,1.5987,1.5647,1.5902,1.5208,1.5648,1.5726,1.5553 -"Beef (NAICS = 311611-3pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N311611T3B.S,RIW.N311611T3B.S,0.9969,0.9634,0.9789,0.9390,0.9810,0.9876, -"Pork (NAICS = 311611-3pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N311611T3P.S,RIW.N311611T3P.S,0.5878,0.5878,0.5974,0.5678,0.5710,0.5716, -"Miscellaneous meats (NAICS = 311611-3pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N311611T3Z.S,RIW.N311611T3Z.S,0.0140,0.0135,0.0139,0.0141,0.0128,0.0134, -"Poultry processing (NAICS = 311615); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N311615.S,RIW.N311615.S,0.7081,0.7104,0.7152,0.7143,0.7369,0.7191, -"Bakeries and tortilla (NAICS = 3118); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N3118.S,RIW.N3118.S,1.2375,1.2840,1.2479,1.2682,1.2811,1.2781,1.2622 -"Other food (NAICS = 3119); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3119.S,RIW.G3119.S,1.8166,1.8360,1.8067,1.7808,1.7605,1.7444,1.7286 -"Coffee and tea (NAICS = 31192); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G31192.S,RIW.G31192.S,0.1304,0.1311,0.1285,0.1271,0.1257,0.1255,0.1237 -"Beverage and tobacco product (NAICS = 312); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G312.S,RIW.G312.S,2.7879,2.7686,2.7421,2.7954,2.7295,2.7492,2.8159 -"Beverage (NAICS = 3121); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3121.S,RIW.G3121.S,1.7148,1.7275,1.7188,1.6963,1.6410,1.6697,1.7063 -"Soft drink and ice (NAICS = 31211); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N31211.S,RIW.N31211.S,0.5587,0.5863,0.5617,0.5591,0.5520,0.5572,0.5718 -"Breweries (NAICS = 31212); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N31212.S,RIW.N31212.S,0.4411,0.4559,0.4595,0.4356,0.4139,, -"Tobacco (NAICS = 3122); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3122.S,RIW.G3122.S,1.0731,1.0411,1.0233,1.0990,1.0885,1.0795,1.1095 -"Textile mills (NAICS = 313); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G313.S,RIW.G313.S,0.2580,0.2619,0.2618,0.2718,0.2691,0.2731,0.2763 -"Fiber, yarn, and thread mills (NAICS = 3131); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3131.S,RIW.G3131.S,0.0414,0.0427,0.0430,0.0446,0.0444,0.0451,0.0460 -"Fabric mills (NAICS = 3132); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3132.S,RIW.G3132.S,0.1411,0.1420,0.1413,0.1473,0.1446,0.1457,0.1466 -"Textile and fabric finishing and fabric coating mills (NAICS = 3133); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3133.S,RIW.G3133.S,0.0756,0.0772,0.0774,0.0799,0.0801,0.0823,0.0838 -"Textile product mills (NAICS = 314); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G314.S,RIW.G314.S,0.2539,0.2553,0.2577,0.2478,0.2463,0.2497,0.2502 -"Textile furnishings mills (NAICS = 3141); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3141.S,RIW.G3141.S,0.1183,0.1194,0.1185,0.1162,0.1149,0.1143,0.1134 -"Carpet and rug mills (NAICS = 31411); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G31411.S,RIW.G31411.S,0.0741,0.0746,0.0734,0.0732,0.0727,0.0716,0.0707 -"Other textile product mills (NAICS = 3149); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3149.S,RIW.G3149.S,0.1356,0.1359,0.1393,0.1316,0.1314,0.1353,0.1368 -"Apparel (NAICS = 315); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G315.S,RIW.G315.S,0.1057,0.1060,0.1035,0.1009,0.1055,0.1039,0.1032 -"Leather and allied product (NAICS = 316); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G316.S,RIW.G316.S,0.0716,0.0729,0.0719,0.0724,0.0705,0.0705,0.0728 -"Sawmills and wood preservation (NAICS = 3211); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N3211.S,RIW.N3211.S,0.4666,0.4601,0.4446,0.4641,,, -"Plywood and misc. wood products (NAICS = 3212,9); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3212A9.S,RIW.G3212A9.S,1.1385,1.1434,1.1505,1.1463,1.1337,1.1285,1.1422 -"Veneer, plywood, and engineered wood product (NAICS = 3212); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3212.S,RIW.G3212.S,0.3418,0.3392,0.3394,0.3464,0.3495,0.3411,0.3480 -"Veneer and plywood (NAICS = 321211,2); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G321211A2.S,RIW.G321211A2.S,0.0907,0.0906,0.0888,0.0886,0.0885,0.0876,0.0868 -"Reconstituted wood product (NAICS = 321219); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G321219.S,RIW.G321219.S,0.1108,0.1092,0.1151,0.1166,0.1197,0.1149,0.1187 -"Other wood product (NAICS = 3219); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3219.S,RIW.G3219.S,0.7966,0.8042,0.8112,0.7999,0.7842,0.7873,0.7942 -"Millwork (NAICS = 32191); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G32191.S,RIW.G32191.S,0.4178,0.4273,0.4248,0.4101,0.4040,0.4094,0.4157 -"Wood container and pallet (NAICS = 32192); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N32192.S,RIW.N32192.S,0.1433,0.1407,0.1476,0.1512,0.1428,0.1439,0.1444 -"All other wood product (NAICS = 32199); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G32199.S,RIW.G32199.S,0.2356,0.2362,0.2388,0.2386,0.2373,0.2340,0.2342 -"Manufactured home (mobile home) (NAICS = 321991); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N321991.S,RIW.N321991.S,0.0630,0.0583,0.0663,0.0640,0.0645,0.0648, -"Pulp, paper, and paperboard mills (NAICS = 3221); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3221.S,RIW.G3221.S,0.9910,0.9993,1.0076,1.0014,0.9963,0.9900,1.0018 -"Pulp mills (NAICS = 32211); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N32211.S,RIW.N32211.S,0.0897,0.0865,0.0892,0.0898,0.0877,0.0886, -"Paper mills (NAICS = 32212); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G32212.S,RIW.G32212.S,0.4503,0.4628,0.4678,0.4613,0.4547,0.4521,0.4603 -"Paper (except newsprint) mills (NAICS = 322121); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N322121.S,RIW.N322121.S,0.4478,0.4604,0.4652,0.4588,,, -"Paperboard mills (NAICS = 32213); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N32213.S,RIW.N32213.S,0.4511,0.4501,0.4506,0.4503,,, -"Converted paper product (NAICS = 3222); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3222.S,RIW.G3222.S,1.2278,1.2302,1.2271,1.2233,1.2219,1.2128,1.2138 -"Paperboard container (NAICS = 32221); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N32221.S,RIW.N32221.S,0.6367,0.6361,0.6246,0.6202,,, -"Paper bag and coated and treated paper (NAICS = 32222); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G32222.S,RIW.G32222.S,0.1992,0.2002,0.2061,0.2076,0.2047,0.2037,0.2080 -"Other converted paper products (NAICS = 32223,9); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G32223A9.S,RIW.G32223A9.S,0.3918,0.3939,0.3965,0.3954,0.3962,0.3929,0.3951 -"Petroleum refineries (NAICS = 32411); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G32411.S,RIW.G32411.S,3.3996,3.3469,3.2883,3.3356,3.2515,3.2645,3.2564 -"Aviation fuel and kerosene (NAICS = 32411pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N32411A.S,RIW.N32411A.S,0.3764,0.3684,0.3601,0.3810,0.3575,, -"Distillate fuel oil (NAICS = 32411pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N32411D.S,RIW.N32411D.S,0.8807,0.8325,0.7698,0.8338,0.8296,, -"Automotive gasoline (NAICS = 32411pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N32411G.S,RIW.N32411G.S,1.6125,1.6091,1.5743,1.5524,1.5618,, -"Residual fuel oil (NAICS = 32411pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N32411R.S,RIW.N32411R.S,0.1605,0.1583,0.1979,0.1892,0.1448,, -"Other refinery output (NAICS = 32411pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G32411X.S,RIW.G32411X.S,0.3695,0.3786,0.3861,0.3791,0.3577,0.3681,0.3655 -"Paving, roofing, and other petroleum and coal products (NAICS = 32412,9); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N32412A9.S,RIW.N32412A9.S,0.6474,0.6344,0.6734,0.6940,0.5989,0.6680,0.6624 -"Basic chemical (NAICS = 3251); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3251.S,RIW.G3251.S,3.0268,2.8892,2.8793,2.8943,2.8286,2.8545,2.8677 -"Organic chemicals (NAICS = 32511,9); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G32511A9.S,RIW.G32511A9.S,2.0164,1.8415,1.8828,1.8900,1.8182,1.8549,1.8726 -"Basic inorganic chemicals (NAICS = 32512-8); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G32512T8.S,RIW.G32512T8.S,1.0105,1.0477,0.9965,1.0043,1.0104,0.9996,0.9950 -"Industrial gas (NAICS = 32512); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G32512.S,RIW.G32512.S,0.3086,0.3245,0.3089,0.3129,0.3172,0.3156,0.3164 -"Synthetic dye and pigment (NAICS = 32513); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G32513.S,RIW.G32513.S,0.0845,0.0878,0.0829,0.0836,0.0834,0.0829,0.0823 -"Other basic inorganic chemical (NAICS = 32518pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G32518.S,RIW.G32518.S,0.6174,0.6354,0.6046,0.6079,0.6098,0.6011,0.5964 -"Alkalies and chlorine (NAICS = 32518pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N32518C.S,RIW.N32518C.S,0.0949,0.0966,0.0955,0.0949,,, -"Resin, synthetic rubber, and artificial and synthetic fibers and filaments (NAICS = 3252); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3252.S,RIW.G3252.S,0.9948,0.9437,1.0031,0.9876,0.9626,0.9780,0.9826 -"Resin and synthetic rubber (NAICS = 32521); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G32521.S,RIW.G32521.S,0.9299,0.8791,0.9379,0.9206,0.8988,0.9141,0.9187 -"Plastics material and resin (NAICS = 325211); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N325211.S,RIW.N325211.S,0.8644,0.8137,0.8724,0.8536,0.8353,0.8499, -"Synthetic rubber (NAICS = 325212); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G325212.S,RIW.G325212.S,0.0656,0.0654,0.0655,0.0670,0.0634,0.0642,0.0642 -"Artificial and synthetic fibers and filaments (NAICS = 32522); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G32522.S,RIW.G32522.S,0.0649,0.0646,0.0651,0.0670,0.0638,0.0639,0.0640 -"Pesticide, fertilizer, and other agricultural chemical (NAICS = 3253); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3253.S,RIW.G3253.S,0.6330,0.5614,0.5850,0.6164,0.6043,0.6097,0.6169 -"Pharmaceutical and medicine (NAICS = 3254); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3254.S,RIW.G3254.S,4.8575,4.8865,4.8714,4.8652,4.8925,4.9313,4.9568 -"Chemicals except pharmaceuticals and medicines (NAICS = 3251-3,5-9); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G325@4.S,RIW.G325@4.S,7.2133,6.9999,7.0972,7.1179,7.0269,7.0948,7.1136 -"Paints, soaps and toiletries, and other chemical products (NAICS = 3255-9); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3255T9.S,RIW.G3255T9.S,2.5586,2.6056,2.6299,2.6195,2.6313,2.6525,2.6465 -"Paints and other chemical products (NAICS = 3255,9); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3255A9.S,RIW.G3255A9.S,1.2583,1.2553,1.2676,1.2608,1.2574,1.2496,1.2447 -"Paint, coating, and adhesive (NAICS = 3255); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3255.S,RIW.G3255.S,0.7039,0.7197,0.7032,0.7045,0.6885,0.6909,0.6787 -"Paint and coating (NAICS = 32551); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G32551.S,RIW.G32551.S,0.4419,0.4524,0.4425,0.4427,0.4330,0.4340,0.4269 -"Soap, cleaning compound, and toilet preparation (NAICS = 3256); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3256.S,RIW.G3256.S,1.3003,1.3503,1.3623,1.3587,1.3739,1.4030,1.4018 -"Plastics product (NAICS = 3261); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3261.S,RIW.G3261.S,3.0086,3.0042,2.9809,2.9901,3.0266,3.0113,2.9557 -"Rubber product (NAICS = 3262); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3262.S,RIW.G3262.S,0.7656,0.7542,0.7474,0.7504,0.7146,0.6912,0.7040 -"Tire (NAICS = 32621); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G32621.S,RIW.G32621.S,0.3223,0.3013,0.3132,0.3217,0.2995,0.2829,0.2885 -"Rubber products ex. tires (NAICS = 32622,9); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G32622A9.S,RIW.G32622A9.S,0.4433,0.4529,0.4342,0.4287,0.4151,0.4083,0.4154 -"Clay, lime, gypsum, and misc. nonmetallic mineral products (NAICS = 3271,4,9); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3271A4A9.S,RIW.G3271A4A9.S,0.8737,0.8857,0.8733,0.8697,0.8837,0.8787,0.8875 -"Clay and misc. nonmetallic mineral products (NAICS = 3271,9); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3271A9.S,RIW.G3271A9.S,0.7251,0.7354,0.7251,0.7213,0.7332,0.7284,0.7357 -"Clay product and refractory (NAICS = 3271); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3271.S,RIW.G3271.S,0.1417,0.1399,0.1401,0.1397,0.1415,0.1383,0.1343 -"Pottery, ceramics, and plumbing fixture (NAICS = 32711); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G32711.S,RIW.G32711.S,0.0499,0.0490,0.0486,0.0487,0.0485,0.0482,0.0465 -"Clay building material and refractories (NAICS = 32712); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G32712.S,RIW.G32712.S,0.0918,0.0909,0.0916,0.0909,0.0930,0.0901,0.0879 -"Other nonmetallic mineral product (NAICS = 3279); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3279.S,RIW.G3279.S,0.5834,0.5956,0.5849,0.5816,0.5917,0.5902,0.6014 -"Lime and gypsum product (NAICS = 3274); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3274.S,RIW.G3274.S,0.1486,0.1503,0.1482,0.1484,0.1505,0.1503,0.1518 -"Glass and glass product (NAICS = 3272); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3272.S,RIW.G3272.S,0.3696,0.3503,0.3514,0.3534,0.3553,0.3526,0.3489 -"Glass container (NAICS = 327213); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G327213.S,RIW.G327213.S,0.0692,0.0704,0.0697,0.0697,0.0692,0.0681,0.0673 -"Cement and concrete product (NAICS = 3273); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3273.S,RIW.G3273.S,1.0949,1.0555,1.0673,1.0371,1.0184,0.9961,1.0068 -"Cement (NAICS = 32731); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N32731.S,RIW.N32731.S,0.1591,0.1409,0.1652,0.1579,0.1591,, -"Concrete and product (NAICS = 32732-9); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N32732T9.S,RIW.N32732T9.S,0.9358,0.9146,0.9021,0.8792,0.8593,0.8413,0.8493 -"Iron and steel products (NAICS = 3311,2); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3311A2.S,RIW.G3311A2.S,1.2865,1.2524,1.2386,1.2287,1.1946,1.1870,1.1795 -"Pig iron (NAICS = 3311,2pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3311A2Q.S,RIW.G3311A2Q.S,0.0696,0.0610,0.0601,0.0596,0.0588,0.0572,0.0560 -"Raw steel (NAICS = 3311,2pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N3311A2R.S,RIW.N3311A2R.S,0.0785,0.0742,0.0761,0.0756,0.0722,0.0738, -"Coke and products (NAICS = 3311,2pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3311A2F.S,RIW.G3311A2F.S,0.0187,0.0185,0.0181,0.0182,0.0185,0.0185,0.0184 -"Construction steel (NAICS = 3311,2pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N3311A2B.S,RIW.N3311A2B.S,0.2257,0.2283,0.2469,0.2644,0.2476,0.2516, -"Consumer durable steel (NAICS = 3311,2pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N3311A2C.S,RIW.N3311A2C.S,0.3247,0.3080,0.2439,0.2263,0.2136,0.2219, -"Can and closure steel (NAICS = 3311,2pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N3311A2D.S,RIW.N3311A2D.S,0.0095,0.0072,0.0068,0.0067,0.0074,0.0069, -"Equipment steel (NAICS = 3311,2pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N3311A2E.S,RIW.N3311A2E.S,0.0563,0.0526,0.0556,0.0616,0.0640,0.0608, -"Miscellaneous steel (NAICS = 3311,2pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N3311A2Z.S,RIW.N3311A2Z.S,0.5035,0.5026,0.5311,0.5162,0.5125,0.4963, -"Alumina and aluminum production and processing (NAICS = 3313); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3313.S,RIW.G3313.S,0.3580,0.3503,0.3454,0.3584,0.3465,0.3790,0.3608 -"Primary aluminum production (NAICS = 331313pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N331313P.S,RIW.N331313P.S,0.0124,0.0116,0.0098,0.0101,0.0099,0.0098,0.0097 -"Secondary smelting and alloying of aluminum (NAICS = 331314); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N331314.S,RIW.N331314.S,0.0585,0.0520,0.0519,0.0563,0.0537,, -"Misc. aluminum materials (NAICS = 331315,8pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N331315A8M.S,RIW.N331315A8M.S,0.1922,0.1951,0.1962,0.2000,0.1925,0.2137, -"Aluminum extruded product (NAICS = 331318pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N331318E.S,RIW.N331318E.S,0.0893,0.0861,0.0822,0.0868,0.0852,0.0995, -"Nonferrous metal (except aluminum) production and processing (NAICS = 3314); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3314.S,RIW.G3314.S,0.6814,0.6848,0.6742,0.6833,0.6746,0.7036,0.6978 -"Nonferrous metal (except aluminum) smelting and refining (NAICS = 33141); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G33141.S,RIW.G33141.S,0.1858,0.1859,0.1730,0.1824,0.1736,0.1855,0.1836 -"Primary smelting and refining of copper (NAICS = 33141pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G33141C.S,RIW.G33141C.S,0.0468,0.0452,0.0443,0.0416,0.0457,0.0492,0.0487 -"Primary smelting and refining of nonferrous metal (except copper and aluminum) (NAICS = 33141pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N33141N.S,RIW.N33141N.S,0.1390,0.1407,0.1287,0.1408,0.1280,, -"Foundries (NAICS = 3315); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3315.S,RIW.G3315.S,0.4016,0.4061,0.4096,0.4113,0.4117,0.4234,0.4084 -"Forging and stamping (NAICS = 3321); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N3321.S,RIW.N3321.S,0.3527,0.3588,0.3558,0.3571,0.3561,0.3607,0.3528 -"Cutlery and handtool (NAICS = 3322); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N3322.S,RIW.N3322.S,0.1601,0.1649,0.1634,0.1651,0.1618,0.1651,0.1585 -"Architectural and structural metals (NAICS = 3323); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N3323.S,RIW.N3323.S,1.7801,1.8304,1.8536,1.8393,1.8258,1.8431,1.8036 -"Hardware (NAICS = 3325); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3325.S,RIW.G3325.S,0.1378,0.1416,0.1409,0.1364,0.1370,0.1371,0.1318 -"Spring and wire product (NAICS = 3326); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N3326.S,RIW.N3326.S,0.1762,0.1808,0.1800,0.1739,0.1732,0.1721,0.1652 -"Machine shops; turned product; and screw, nut, and bolt (NAICS = 3327); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3327.S,RIW.G3327.S,1.1477,1.1529,1.1279,1.1315,1.1253,1.1095,1.0955 -"Coating, engraving, heat treating, and allied activities (NAICS = 3328); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N3328.S,RIW.N3328.S,0.4767,0.4914,0.4758,0.4747,0.4826,0.4771,0.4649 -"Other fabricated metal product (NAICS = 3329); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3329.S,RIW.G3329.S,1.3398,1.3655,1.3523,1.3644,1.3581,1.3695,1.3495 -"Ball and roller bearing (NAICS = 332991); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G332991.S,RIW.G332991.S,0.0898,0.0927,0.0939,0.0940,0.0924,0.0936,0.0902 -"Agriculture, construction, and mining machinery (NAICS = 3331); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3331.S,RIW.G3331.S,1.2277,1.2436,1.2835,1.2421,1.2470,1.2313,1.1949 -"Agricultural implement (NAICS = 33311); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G33311.S,RIW.G33311.S,0.6201,0.6326,0.6536,0.6259,0.6312,0.6199,0.6021 -"Farm machinery and equipment (NAICS = 333111); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G333111.S,RIW.G333111.S,0.5418,0.5529,0.5714,0.5475,0.5531,0.5420,0.5262 -"Construction machinery (NAICS = 33312); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G33312.S,RIW.G33312.S,0.4329,0.4321,0.4496,0.4383,0.4410,0.4393,0.4266 -"Mining and oil and gas field machinery (NAICS = 33313); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N33313.S,RIW.N33313.S,0.1747,0.1790,0.1804,0.1780,0.1748,0.1720,0.1662 -"Industrial machinery (NAICS = 3332); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3332.S,RIW.G3332.S,0.5536,0.5547,0.5436,0.5360,0.5441,0.5483,0.5304 -"Commercial and service industry machinery and other general purpose machinery (NAICS = 3333,9); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3333A9.S,RIW.G3333A9.S,2.1196,2.1263,2.1170,2.1123,2.0654,2.0880,2.0431 -"HVAC, metalworking, and power transmission machinery (NAICS = 3334-6); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3334T6.S,RIW.G3334T6.S,1.7028,1.7072,1.7455,1.7319,1.7438,1.7341,1.7646 -"Ventilation, heating, air-conditioning, and commercial refrigeration equipment (NAICS = 3334); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3334.S,RIW.G3334.S,0.6938,0.7108,0.7610,0.7318,0.7260,0.7165,0.7141 -"Metalworking machinery (NAICS = 3335); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3335.S,RIW.G3335.S,0.5118,0.5122,0.5151,0.5264,0.5162,0.5205,0.5360 -"Engine, turbine, and power transmission equipment (NAICS = 3336); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3336.S,RIW.G3336.S,0.4972,0.4842,0.4694,0.4737,0.5016,0.4971,0.5145 -"Audio and video equipment (NAICS = 3343); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3343.S,RIW.G3343.S,0.0561,0.0589,0.0564,0.0572,0.0552,0.0539,0.0512 -"Semiconductor and other electronic component (NAICS = 3344); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3344.S,RIW.G3344.S,1.2997,1.3145,1.2875,1.2910,1.3058,1.3271,1.3209 -"Navigational, measuring, electromedical, and control instruments (NAICS = 3345); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3345.S,RIW.G3345.S,2.4394,2.4954,2.4729,2.4794,2.4773,2.4650,2.4268 -"Household appliance (NAICS = 3352); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3352.S,RIW.G3352.S,0.3667,0.3572,0.3492,0.3596,0.3493,0.3460,0.3551 -"Small electrical appliance (NAICS = 33521); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G33521.S,RIW.G33521.S,0.0511,0.0489,0.0434,0.0429,0.0407,0.0411,0.0424 -"Major appliance (NAICS = 33522); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G33522.S,RIW.G33522.S,0.3156,0.3083,0.3058,0.3167,0.3086,0.3049,0.3127 -"Electrical equipment except appliances (NAICS = 3351,3,9); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G335@2.S,RIW.G335@2.S,1.7650,1.7936,1.7615,1.7861,1.7669,1.7744,1.7842 -"Electric lighting equipment (NAICS = 3351); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3351.S,RIW.G3351.S,0.1987,0.1940,0.1738,0.1742,0.1646,0.1657,0.1719 -"Electrical equipment (NAICS = 3353); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3353.S,RIW.G3353.S,0.7180,0.7392,0.7296,0.7454,0.7455,0.7566,0.7736 -"Other electrical equipment and component (NAICS = 3359); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3359.S,RIW.G3359.S,0.8482,0.8604,0.8582,0.8665,0.8568,0.8521,0.8388 -"Battery (NAICS = 33591); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G33591.S,RIW.G33591.S,0.1481,0.1478,0.1480,0.1522,0.1453,0.1475,0.1474 -"Communication and energy wire and cable (NAICS = 33592); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N33592.S,RIW.N33592.S,0.1519,0.1543,0.1530,0.1543,0.1527,0.1513,0.1475 -"Other electrical equipment (NAICS = 33593,9); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G33593T9.S,RIW.G33593T9.S,0.5482,0.5582,0.5571,0.5601,0.5587,0.5533,0.5439 -"Transportation equipment (NAICS = 336); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G336.S,RIW.G336.S,8.8887,8.6521,8.8267,8.9755,8.9767,8.9084,8.9673 -"Automobile and light duty motor vehicle (NAICS = 33611); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G33611.S,RIW.G33611.S,2.6095,2.4248,2.5744,2.6443,2.6257,2.6026,2.6568 -"Automobile (NAICS = 336111); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G336111.S,RIW.G336111.S,0.4739,0.4035,0.4209,0.4288,0.4154,0.4537,0.4336 -"Light truck and utility vehicle (NAICS = 336112); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G336112.S,RIW.G336112.S,2.1356,2.0214,2.1535,2.2156,2.2103,2.1489,2.2233 -"Heavy duty truck (NAICS = 33612); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G33612.S,RIW.G33612.S,0.1644,0.1461,0.1750,0.1938,0.1643,0.1477,0.1417 -"Motor vehicle body and trailer (NAICS = 3362); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3362.S,RIW.G3362.S,0.5606,0.5122,0.5270,0.5404,0.5433,0.5401,0.5273 -"Truck trailer (NAICS = 336212); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G336212.S,RIW.G336212.S,0.1360,0.1158,0.1165,0.1181,0.1185,0.1131,0.1111 -"Motor home (NAICS = 336213); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N336213.S,RIW.N336213.S,0.0383,0.0323,0.0336,0.0340,0.0327,0.0298, -"Travel trailer and camper (NAICS = 336214); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G336214.S,RIW.G336214.S,0.1651,0.1469,0.1577,0.1692,0.1715,0.1715,0.1668 -"Aerospace product and parts (NAICS = 3364); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3364.S,RIW.G3364.S,2.3235,2.3721,2.3079,2.3149,2.3460,2.3345,2.3333 -"Aircraft and parts (NAICS = 336411-3); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G336411T3.S,RIW.G336411T3.S,2.0407,2.0816,2.0290,2.0333,2.0647,2.0537,2.0569 -"Railroad eq., ships and boats, and other transportation equipment (NAICS = 3365-9); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3365T9.S,RIW.G3365T9.S,0.8756,0.8721,0.8679,0.8811,0.8965,0.8968,0.9114 -"Railroad rolling stock (NAICS = 3365); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N3365.S,RIW.N3365.S,0.0788,0.0808,0.0776,0.0813,0.0806,0.0830,0.0829 -"Ship and boat building (NAICS = 3366); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3366.S,RIW.G3366.S,0.5792,0.5688,0.5755,0.5788,0.5939,0.5899,0.6054 -"Other transportation equipment (NAICS = 3369); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N3369.S,RIW.N3369.S,0.2176,0.2225,0.2148,0.2209,0.2220,0.2239,0.2232 -"Household and institutional furniture and kitchen cabinet (NAICS = 3371); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N3371.S,RIW.N3371.S,0.5070,0.5125,0.5063,0.5082,0.5141,0.4970,0.4991 -"Office and other furniture (NAICS = 3372,9); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3372A9.S,RIW.G3372A9.S,0.4630,0.4577,0.4655,0.4556,0.4592,0.4473,0.4523 -"Medical equipment and supplies (NAICS = 3391); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N3391.S,RIW.N3391.S,1.6712,1.6763,1.6869,1.6773,1.6696,1.6212,1.5917 -"Logging (NAICS = 1133); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.N1133.S,RIW.N1133.S,0.1361,0.1310,0.1388,0.1366,0.1347,0.1340,0.1370 -"Newspaper, periodical, book, and directory publishers (NAICS = 5111); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G5111.S,RIW.G5111.S,1.3905,1.4515,1.4339,1.4367,1.4406,1.4389,1.4390 -"Newspaper publishers (NAICS = 51111); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G51111.S,RIW.G51111.S,0.3743,0.3773,0.3770,0.3763,0.3797,0.3842,0.3839 -"Periodical, book, and other publishers (NAICS = 51112-9); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G51112T9.S,RIW.G51112T9.S,1.0162,1.0742,1.0569,1.0604,1.0608,1.0547,1.0551 -"Crude processing (capacity); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B5610C.S,RIW.B5610C.S,17.8583,17.3436,17.7914,17.8860,17.8663,17.8119,17.8752 -"Primary & semifinished processing (capacity); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B562A3C.S,RIW.B562A3C.S,45.7196,46.2593,45.7784,45.6122,45.7132,45.8563,45.9431 -"Finished processing (capacity); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B5640C.S,RIW.B5640C.S,36.4221,36.3971,36.4302,36.5018,36.4205,36.3317,36.1817 -"Final products; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B50002.S,RIW.B50002.S,39.0814,39.2023,39.0216,38.9442,39.0721,38.9151,38.9105 -"Autos and trucks, consumer; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B51111.S,RIW.B51111.S,2.1094,1.9517,2.0647,2.1130,2.0899,2.0645,2.0978 -"Auto parts and allied goods; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B51112.S,RIW.B51112.S,1.3884,1.3519,1.3585,1.3798,1.3618,1.3457,1.3425 -"Other durable goods; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B51120.S,RIW.B51120.S,2.7582,2.7952,2.8151,2.7851,2.7543,2.7258,2.6838 -"Household appliances; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B511221.S,RIW.B511221.S,0.4283,0.4405,0.4694,0.4229,0.4169,0.4119,0.4033 -"Carpeting and furniture; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B511222.S,RIW.B511222.S,0.4803,0.4843,0.4788,0.4771,0.4791,0.4658,0.4654 -"Miscellaneous nondurable goods; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B51215.S,RIW.B51215.S,0.4017,0.4029,0.4064,0.4019,0.4002,0.3917,0.3863 -"Fuels; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B51221.S,RIW.B51221.S,2.6338,2.5811,2.4912,2.5338,2.5415,2.5408,2.5178 -"Residential utilities; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B51222.S,RIW.B51222.S,2.8257,3.0321,2.8651,2.6571,2.9111,2.8687,2.9971 -"Equipment, total; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B52000.S,RIW.B52000.S,11.2121,11.2316,11.2524,11.2902,11.2426,11.1614,11.0597 -"Business vehicles; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G3361E.S,RIW.G3361E.S,0.6645,0.6191,0.6846,0.7251,0.7001,0.6858,0.7007 -"Business light vehicles; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G33611E.S,RIW.G33611E.S,0.5001,0.4731,0.5097,0.5313,0.5359,0.5381,0.5590 -"Automobile, business (NAICS = 336111pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G336111B.S,RIW.G336111B.S,0.0882,0.0748,0.0776,0.0786,0.0758,0.0823,0.0783 -"Light trucks, business (NAICS = 336112pt.); s.a. RIW","Percentage","1","NA",G17/RIW/RIW.G336112B.S,RIW.G336112B.S,0.4119,0.3983,0.4321,0.4527,0.4601,0.4558,0.4807 -"Industrial equipment; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B52131.S,RIW.B52131.S,3.0769,3.0850,3.0844,3.0909,3.0590,3.0891,3.0459 -"Other equipment; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B52132.S,RIW.B52132.S,2.1085,2.1234,2.1480,2.1176,2.1216,2.0794,2.0486 -"Oil and gas well drilling and manufactured homes; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B52200.S,RIW.B52200.S,0.6404,0.6369,0.6348,0.6376,0.6167,0.5999,0.5989 -"Nonindustrial supplies; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B54000.S,RIW.B54000.S,15.7347,15.7719,15.8201,15.8012,15.7031,15.7146,15.6812 -"Non-energy business supplies; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B54210.S,RIW.B54210.S,7.7599,7.7680,7.7687,7.8018,7.7615,7.7420,7.7285 -"Computer and other board assemblies and parts; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B53121.S,RIW.B53121.S,0.1451,0.1443,0.1405,0.1352,0.1368,0.1384,0.1348 -"Semiconductors, printed circuit boards, and other; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B53122.S,RIW.B53122.S,0.7976,0.8080,0.7926,0.8000,0.8092,0.8225,0.8212 -"Other equipment parts; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B53123.S,RIW.B53123.S,3.6921,3.7307,3.6814,3.7139,3.7342,3.7549,3.7552 -"Basic metals; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B53131.S,RIW.B53131.S,2.7882,2.7532,2.7792,2.8238,2.7838,2.8583,2.8098 -"Miscellaneous durable materials; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B53132.S,RIW.B53132.S,6.4253,6.4297,6.4189,6.4152,6.4122,6.3717,6.2901 -"Other nondurable materials; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B53240.S,RIW.B53240.S,3.3351,3.3512,3.3447,3.3200,3.2871,3.2500,3.2463 -"Containers; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B53241.S,RIW.B53241.S,1.0443,1.0579,1.0596,1.0411,1.0270,1.0070,1.0062 -"Miscellaneous nondurable materials; s.a. RIW","Percentage","1","NA",G17/RIW/RIW.B53242.S,RIW.B53242.S,2.2908,2.2932,2.2851,2.2788,2.2601,2.2430,2.2401 \ No newline at end of file diff --git a/data/japan-trade-stats/.gitignore b/data/japan-trade-stats/.gitignore deleted file mode 100644 index e631d42..0000000 --- a/data/japan-trade-stats/.gitignore +++ /dev/null @@ -1,4 +0,0 @@ -# don't push csv files to git, only push the zip archives -*.csv -*.zip -*.unused \ No newline at end of file diff --git a/data/ticker-data/2025-03-18.json b/data/ticker-data/2025-03-18.json deleted file mode 100644 index 68fbb78..0000000 --- a/data/ticker-data/2025-03-18.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "ticker": "MSFT", - "date": "2025-03-18", - "open": 308.61, - "close": 304.09, - "volume": 64127601 -}{ - "ticker": "AAPL", - "date": "2025-03-18", - "open": 174.43, - "close": 173.55, - "volume": 88408063 -}{ - "ticker": "AMZN", - "date": "2025-03-18", - "open": 143.69, - "close": 144.37, - "volume": 55420541 -}{ - "ticker": "GOOGL", - "date": "2025-03-18", - "open": 131.37, - "close": 128.75, - "volume": 67769889 -}{ - "ticker": "NVDA", - "date": "2025-03-18", - "open": 461.75, - "close": 457.17, - "volume": 83564064 -} \ No newline at end of file diff --git a/data/ticker-data/2025-03-19.json b/data/ticker-data/2025-03-19.json deleted file mode 100644 index 29e4d61..0000000 --- a/data/ticker-data/2025-03-19.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "ticker": "MSFT", - "date": "2025-03-19", - "open": 302.82, - "close": 301.52, - "volume": 27966645 -}{ - "ticker": "AAPL", - "date": "2025-03-19", - "open": 172.71, - "close": 176.39, - "volume": 48328978 -}{ - "ticker": "AMZN", - "date": "2025-03-19", - "open": 144.48, - "close": 141.86, - "volume": 50584798 -}{ - "ticker": "GOOGL", - "date": "2025-03-19", - "open": 127.97, - "close": 131.05, - "volume": 27914176 -}{ - "ticker": "NVDA", - "date": "2025-03-19", - "open": 457.41, - "close": 461.72, - "volume": 73119146 -} \ No newline at end of file diff --git a/data/ticker-data/2025-03-20.json b/data/ticker-data/2025-03-20.json deleted file mode 100644 index 67ef4f3..0000000 --- a/data/ticker-data/2025-03-20.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "ticker": "MSFT", - "date": "2025-03-20", - "open": 302.57, - "close": 302.38, - "volume": 49087553 -}{ - "ticker": "AAPL", - "date": "2025-03-20", - "open": 175.18, - "close": 174.0, - "volume": 12210838 -}{ - "ticker": "AMZN", - "date": "2025-03-20", - "open": 141.76, - "close": 143.04, - "volume": 68107164 -}{ - "ticker": "GOOGL", - "date": "2025-03-20", - "open": 131.47, - "close": 132.04, - "volume": 56613828 -}{ - "ticker": "NVDA", - "date": "2025-03-20", - "open": 462.54, - "close": 461.53, - "volume": 30080200 -} \ No newline at end of file diff --git a/data/ticker-data/2025-03-21.json b/data/ticker-data/2025-03-21.json deleted file mode 100644 index e64a76b..0000000 --- a/data/ticker-data/2025-03-21.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "ticker": "MSFT", - "date": "2025-03-21", - "open": 301.72, - "close": 306.51, - "volume": 88997719 -}{ - "ticker": "AAPL", - "date": "2025-03-21", - "open": 173.34, - "close": 176.85, - "volume": 15516213 -}{ - "ticker": "AMZN", - "date": "2025-03-21", - "open": 144.21, - "close": 148.97, - "volume": 82351925 -}{ - "ticker": "GOOGL", - "date": "2025-03-21", - "open": 132.56, - "close": 137.03, - "volume": 75771924 -}{ - "ticker": "NVDA", - "date": "2025-03-21", - "open": 462.93, - "close": 465.24, - "volume": 86710416 -} \ No newline at end of file diff --git a/data/ticker-data/2025-03-22.json b/data/ticker-data/2025-03-22.json deleted file mode 100644 index c578639..0000000 --- a/data/ticker-data/2025-03-22.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "ticker": "MSFT", - "date": "2025-03-22", - "open": 306.95, - "close": 309.18, - "volume": 50907708 -}{ - "ticker": "AAPL", - "date": "2025-03-22", - "open": 175.22, - "close": 172.76, - "volume": 71910140 -}{ - "ticker": "AMZN", - "date": "2025-03-22", - "open": 150.36, - "close": 148.56, - "volume": 86213998 -}{ - "ticker": "GOOGL", - "date": "2025-03-22", - "open": 136.45, - "close": 135.33, - "volume": 93057894 -}{ - "ticker": "NVDA", - "date": "2025-03-22", - "open": 464.21, - "close": 465.87, - "volume": 29278189 -} \ No newline at end of file diff --git a/data/ticker-data/2025-03-23.json b/data/ticker-data/2025-03-23.json deleted file mode 100644 index 904075d..0000000 --- a/data/ticker-data/2025-03-23.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "ticker": "MSFT", - "date": "2025-03-23", - "open": 308.21, - "close": 308.72, - "volume": 86564849 -}{ - "ticker": "AAPL", - "date": "2025-03-23", - "open": 171.7, - "close": 175.8, - "volume": 86664537 -}{ - "ticker": "AMZN", - "date": "2025-03-23", - "open": 149.17, - "close": 148.33, - "volume": 21763542 -}{ - "ticker": "GOOGL", - "date": "2025-03-23", - "open": 134.85, - "close": 130.79, - "volume": 58453431 -}{ - "ticker": "NVDA", - "date": "2025-03-23", - "open": 467.08, - "close": 467.37, - "volume": 23072226 -} \ No newline at end of file diff --git a/data/ticker-data/2025-03-24.json b/data/ticker-data/2025-03-24.json deleted file mode 100644 index e808eef..0000000 --- a/data/ticker-data/2025-03-24.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "ticker": "MSFT", - "date": "2025-03-24", - "open": 307.06, - "close": 311.36, - "volume": 32334566 -}{ - "ticker": "AAPL", - "date": "2025-03-24", - "open": 174.11, - "close": 175.51, - "volume": 99368560 -}{ - "ticker": "AMZN", - "date": "2025-03-24", - "open": 147.16, - "close": 146.5, - "volume": 71602396 -}{ - "ticker": "GOOGL", - "date": "2025-03-24", - "open": 129.72, - "close": 132.6, - "volume": 23647545 -}{ - "ticker": "NVDA", - "date": "2025-03-24", - "open": 466.57, - "close": 468.15, - "volume": 86063920 -} \ No newline at end of file diff --git a/data/ticker-data/2025-03-25.json b/data/ticker-data/2025-03-25.json deleted file mode 100644 index 9b2f627..0000000 --- a/data/ticker-data/2025-03-25.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "ticker": "MSFT", - "date": "2025-03-25", - "open": 311.74, - "close": 312.75, - "volume": 46892969 -}{ - "ticker": "AAPL", - "date": "2025-03-25", - "open": 174.36, - "close": 171.2, - "volume": 25455857 -}{ - "ticker": "AMZN", - "date": "2025-03-25", - "open": 147.4, - "close": 144.76, - "volume": 83378387 -}{ - "ticker": "GOOGL", - "date": "2025-03-25", - "open": 133.48, - "close": 133.06, - "volume": 51989708 -}{ - "ticker": "NVDA", - "date": "2025-03-25", - "open": 468.0, - "close": 465.2, - "volume": 18826622 -} \ No newline at end of file diff --git a/data/ticker-data/2025-03-26.json b/data/ticker-data/2025-03-26.json deleted file mode 100644 index 3ce4f17..0000000 --- a/data/ticker-data/2025-03-26.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "ticker": "MSFT", - "date": "2025-03-26", - "open": 312.81, - "close": 308.8, - "volume": 15233984 -}{ - "ticker": "AAPL", - "date": "2025-03-26", - "open": 172.51, - "close": 169.68, - "volume": 29790009 -}{ - "ticker": "AMZN", - "date": "2025-03-26", - "open": 145.67, - "close": 150.5, - "volume": 89185789 -}{ - "ticker": "GOOGL", - "date": "2025-03-26", - "open": 131.72, - "close": 133.68, - "volume": 26102752 -}{ - "ticker": "NVDA", - "date": "2025-03-26", - "open": 464.58, - "close": 461.22, - "volume": 97629212 -} \ No newline at end of file diff --git a/data/ticker-data/2025-03-27.json b/data/ticker-data/2025-03-27.json deleted file mode 100644 index 8c2b91a..0000000 --- a/data/ticker-data/2025-03-27.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "ticker": "MSFT", - "date": "2025-03-27", - "open": 309.89, - "close": 314.09, - "volume": 99578157 -}{ - "ticker": "AAPL", - "date": "2025-03-27", - "open": 168.0, - "close": 171.98, - "volume": 95819164 -}{ - "ticker": "AMZN", - "date": "2025-03-27", - "open": 148.79, - "close": 145.16, - "volume": 46571265 -}{ - "ticker": "GOOGL", - "date": "2025-03-27", - "open": 134.64, - "close": 130.25, - "volume": 11620506 -}{ - "ticker": "NVDA", - "date": "2025-03-27", - "open": 461.12, - "close": 459.41, - "volume": 16967477 -} \ No newline at end of file diff --git a/data/ticker-data/2025-03-28.json b/data/ticker-data/2025-03-28.json deleted file mode 100644 index d7bede6..0000000 --- a/data/ticker-data/2025-03-28.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "ticker": "MSFT", - "date": "2025-03-28", - "open": 312.31, - "close": 309.05, - "volume": 80653100 -}{ - "ticker": "AAPL", - "date": "2025-03-28", - "open": 171.77, - "close": 169.73, - "volume": 46476112 -}{ - "ticker": "AMZN", - "date": "2025-03-28", - "open": 144.6, - "close": 145.17, - "volume": 26468629 -}{ - "ticker": "GOOGL", - "date": "2025-03-28", - "open": 129.26, - "close": 126.44, - "volume": 25851736 -}{ - "ticker": "NVDA", - "date": "2025-03-28", - "open": 459.57, - "close": 458.62, - "volume": 66954213 -} \ No newline at end of file diff --git a/data/ticker-data/2025-03-29.json b/data/ticker-data/2025-03-29.json deleted file mode 100644 index 4bce210..0000000 --- a/data/ticker-data/2025-03-29.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "ticker": "MSFT", - "date": "2025-03-29", - "open": 307.21, - "close": 307.57, - "volume": 58857322 -}{ - "ticker": "AAPL", - "date": "2025-03-29", - "open": 168.07, - "close": 168.72, - "volume": 5011736 -}{ - "ticker": "AMZN", - "date": "2025-03-29", - "open": 145.42, - "close": 149.59, - "volume": 61960239 -}{ - "ticker": "GOOGL", - "date": "2025-03-29", - "open": 127.47, - "close": 124.75, - "volume": 64316933 -}{ - "ticker": "NVDA", - "date": "2025-03-29", - "open": 457.91, - "close": 460.85, - "volume": 35024669 -} \ No newline at end of file diff --git a/data/ticker-data/2025-03-30.json b/data/ticker-data/2025-03-30.json deleted file mode 100644 index ab57f74..0000000 --- a/data/ticker-data/2025-03-30.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "ticker": "MSFT", - "date": "2025-03-30", - "open": 305.97, - "close": 306.55, - "volume": 97675435 -}{ - "ticker": "AAPL", - "date": "2025-03-30", - "open": 170.39, - "close": 166.92, - "volume": 58437406 -}{ - "ticker": "AMZN", - "date": "2025-03-30", - "open": 150.32, - "close": 152.25, - "volume": 78175822 -}{ - "ticker": "GOOGL", - "date": "2025-03-30", - "open": 123.13, - "close": 124.06, - "volume": 8210825 -}{ - "ticker": "NVDA", - "date": "2025-03-30", - "open": 461.85, - "close": 462.13, - "volume": 7241857 -} \ No newline at end of file diff --git a/data/ticker-data/2025-03-31.json b/data/ticker-data/2025-03-31.json deleted file mode 100644 index bb3ad50..0000000 --- a/data/ticker-data/2025-03-31.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "ticker": "MSFT", - "date": "2025-03-31", - "open": 308.14, - "close": 312.55, - "volume": 5548763 -}{ - "ticker": "AAPL", - "date": "2025-03-31", - "open": 165.92, - "close": 162.72, - "volume": 64375787 -}{ - "ticker": "AMZN", - "date": "2025-03-31", - "open": 150.78, - "close": 150.52, - "volume": 53488247 -}{ - "ticker": "GOOGL", - "date": "2025-03-31", - "open": 124.44, - "close": 123.84, - "volume": 75829750 -}{ - "ticker": "NVDA", - "date": "2025-03-31", - "open": 462.08, - "close": 463.81, - "volume": 90820977 -} \ No newline at end of file diff --git a/data/ticker-data/2025-04-01.json b/data/ticker-data/2025-04-01.json deleted file mode 100644 index b9cddc3..0000000 --- a/data/ticker-data/2025-04-01.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "ticker": "MSFT", - "date": "2025-04-01", - "open": 311.84, - "close": 314.57, - "volume": 56442362 -}{ - "ticker": "AAPL", - "date": "2025-04-01", - "open": 161.82, - "close": 156.83, - "volume": 63007613 -}{ - "ticker": "AMZN", - "date": "2025-04-01", - "open": 151.94, - "close": 155.97, - "volume": 75143516 -}{ - "ticker": "GOOGL", - "date": "2025-04-01", - "open": 122.93, - "close": 127.08, - "volume": 54040389 -}{ - "ticker": "NVDA", - "date": "2025-04-01", - "open": 465.67, - "close": 468.04, - "volume": 48308186 -} \ No newline at end of file diff --git a/data/ticker-data/2025-04-02.json b/data/ticker-data/2025-04-02.json deleted file mode 100644 index 0371eb2..0000000 --- a/data/ticker-data/2025-04-02.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "ticker": "MSFT", - "date": "2025-04-02", - "open": 316.44, - "close": 314.0, - "volume": 75832498 -}{ - "ticker": "AAPL", - "date": "2025-04-02", - "open": 156.68, - "close": 157.16, - "volume": 86129019 -}{ - "ticker": "AMZN", - "date": "2025-04-02", - "open": 155.06, - "close": 152.54, - "volume": 5523856 -}{ - "ticker": "GOOGL", - "date": "2025-04-02", - "open": 125.62, - "close": 124.49, - "volume": 53055103 -}{ - "ticker": "NVDA", - "date": "2025-04-02", - "open": 467.37, - "close": 463.97, - "volume": 74056980 -} \ No newline at end of file diff --git a/data/ticker-data/2025-04-03.json b/data/ticker-data/2025-04-03.json deleted file mode 100644 index f0153d6..0000000 --- a/data/ticker-data/2025-04-03.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "ticker": "MSFT", - "date": "2025-04-03", - "open": 312.87, - "close": 310.25, - "volume": 80895381 -}{ - "ticker": "AAPL", - "date": "2025-04-03", - "open": 155.78, - "close": 152.83, - "volume": 99487545 -}{ - "ticker": "AMZN", - "date": "2025-04-03", - "open": 151.83, - "close": 151.4, - "volume": 67241449 -}{ - "ticker": "GOOGL", - "date": "2025-04-03", - "open": 124.51, - "close": 127.12, - "volume": 15876846 -}{ - "ticker": "NVDA", - "date": "2025-04-03", - "open": 463.98, - "close": 465.08, - "volume": 10942151 -} \ No newline at end of file diff --git a/data/ticker-data/2025-04-04.json b/data/ticker-data/2025-04-04.json deleted file mode 100644 index 6ef1862..0000000 --- a/data/ticker-data/2025-04-04.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "ticker": "MSFT", - "date": "2025-04-04", - "open": 310.48, - "close": 307.79, - "volume": 98499491 -}{ - "ticker": "AAPL", - "date": "2025-04-04", - "open": 153.66, - "close": 150.28, - "volume": 36319585 -}{ - "ticker": "AMZN", - "date": "2025-04-04", - "open": 150.47, - "close": 154.35, - "volume": 68445072 -}{ - "ticker": "GOOGL", - "date": "2025-04-04", - "open": 128.83, - "close": 131.53, - "volume": 81796808 -}{ - "ticker": "NVDA", - "date": "2025-04-04", - "open": 464.35, - "close": 464.31, - "volume": 32411490 -} \ No newline at end of file diff --git a/data/ticker-data/2025-04-05.json b/data/ticker-data/2025-04-05.json deleted file mode 100644 index 30c9704..0000000 --- a/data/ticker-data/2025-04-05.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "ticker": "MSFT", - "date": "2025-04-05", - "open": 308.08, - "close": 308.44, - "volume": 96234883 -}{ - "ticker": "AAPL", - "date": "2025-04-05", - "open": 151.31, - "close": 154.59, - "volume": 29320021 -}{ - "ticker": "AMZN", - "date": "2025-04-05", - "open": 155.11, - "close": 154.79, - "volume": 57373160 -}{ - "ticker": "GOOGL", - "date": "2025-04-05", - "open": 132.99, - "close": 135.06, - "volume": 47640131 -}{ - "ticker": "NVDA", - "date": "2025-04-05", - "open": 462.34, - "close": 466.5, - "volume": 94761280 -} \ No newline at end of file diff --git a/data/ticker-data/2025-04-06.json b/data/ticker-data/2025-04-06.json deleted file mode 100644 index 3fe4b56..0000000 --- a/data/ticker-data/2025-04-06.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "ticker": "MSFT", - "date": "2025-04-06", - "open": 307.07, - "close": 311.76, - "volume": 72850773 -}{ - "ticker": "AAPL", - "date": "2025-04-06", - "open": 153.53, - "close": 156.07, - "volume": 23464462 -}{ - "ticker": "AMZN", - "date": "2025-04-06", - "open": 155.07, - "close": 152.27, - "volume": 18059558 -}{ - "ticker": "GOOGL", - "date": "2025-04-06", - "open": 133.75, - "close": 130.26, - "volume": 46086870 -}{ - "ticker": "NVDA", - "date": "2025-04-06", - "open": 465.34, - "close": 462.37, - "volume": 75761220 -} \ No newline at end of file diff --git a/data/ticker-data/2025-04-07.json b/data/ticker-data/2025-04-07.json deleted file mode 100644 index 9bd7c03..0000000 --- a/data/ticker-data/2025-04-07.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "ticker": "MSFT", - "date": "2025-04-07", - "open": 309.91, - "close": 306.76, - "volume": 61600624 -}{ - "ticker": "AAPL", - "date": "2025-04-07", - "open": 156.61, - "close": 159.25, - "volume": 95193657 -}{ - "ticker": "AMZN", - "date": "2025-04-07", - "open": 150.93, - "close": 149.54, - "volume": 85197534 -}{ - "ticker": "GOOGL", - "date": "2025-04-07", - "open": 131.23, - "close": 127.52, - "volume": 22675027 -}{ - "ticker": "NVDA", - "date": "2025-04-07", - "open": 464.18, - "close": 464.02, - "volume": 83047662 -} \ No newline at end of file diff --git a/data/ticker-data/2025-04-08.json b/data/ticker-data/2025-04-08.json deleted file mode 100644 index 26437db..0000000 --- a/data/ticker-data/2025-04-08.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "ticker": "MSFT", - "date": "2025-04-08", - "open": 305.7, - "close": 302.87, - "volume": 51829327 -}{ - "ticker": "AAPL", - "date": "2025-04-08", - "open": 160.6, - "close": 156.12, - "volume": 13918703 -}{ - "ticker": "AMZN", - "date": "2025-04-08", - "open": 149.77, - "close": 152.16, - "volume": 62473974 -}{ - "ticker": "GOOGL", - "date": "2025-04-08", - "open": 128.73, - "close": 130.77, - "volume": 6750565 -}{ - "ticker": "NVDA", - "date": "2025-04-08", - "open": 465.88, - "close": 468.69, - "volume": 88617897 -} \ No newline at end of file diff --git a/data/ticker-data/2025-04-09.json b/data/ticker-data/2025-04-09.json deleted file mode 100644 index 7d46971..0000000 --- a/data/ticker-data/2025-04-09.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "ticker": "MSFT", - "date": "2025-04-09", - "open": 301.5, - "close": 296.67, - "volume": 9627262 -}{ - "ticker": "AAPL", - "date": "2025-04-09", - "open": 158.03, - "close": 154.5, - "volume": 28542029 -}{ - "ticker": "AMZN", - "date": "2025-04-09", - "open": 150.73, - "close": 149.16, - "volume": 46029403 -}{ - "ticker": "GOOGL", - "date": "2025-04-09", - "open": 129.19, - "close": 126.22, - "volume": 82558144 -}{ - "ticker": "NVDA", - "date": "2025-04-09", - "open": 469.36, - "close": 466.54, - "volume": 66655021 -} \ No newline at end of file diff --git a/data/ticker-data/2025-04-10.json b/data/ticker-data/2025-04-10.json deleted file mode 100644 index 9b2d15a..0000000 --- a/data/ticker-data/2025-04-10.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "ticker": "MSFT", - "date": "2025-04-10", - "open": 295.58, - "close": 293.15, - "volume": 81789101 -}{ - "ticker": "AAPL", - "date": "2025-04-10", - "open": 153.65, - "close": 152.54, - "volume": 99316498 -}{ - "ticker": "AMZN", - "date": "2025-04-10", - "open": 147.61, - "close": 152.45, - "volume": 82708557 -}{ - "ticker": "GOOGL", - "date": "2025-04-10", - "open": 127.11, - "close": 125.59, - "volume": 22459173 -}{ - "ticker": "NVDA", - "date": "2025-04-10", - "open": 467.55, - "close": 468.58, - "volume": 8606057 -} \ No newline at end of file diff --git a/data/ticker-data/2025-04-11.json b/data/ticker-data/2025-04-11.json deleted file mode 100644 index 3f866fb..0000000 --- a/data/ticker-data/2025-04-11.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "ticker": "MSFT", - "date": "2025-04-11", - "open": 293.18, - "close": 297.97, - "volume": 39367247 -}{ - "ticker": "AAPL", - "date": "2025-04-11", - "open": 153.18, - "close": 151.45, - "volume": 67212911 -}{ - "ticker": "AMZN", - "date": "2025-04-11", - "open": 153.66, - "close": 151.87, - "volume": 85374875 -}{ - "ticker": "GOOGL", - "date": "2025-04-11", - "open": 125.0, - "close": 128.48, - "volume": 35724135 -}{ - "ticker": "NVDA", - "date": "2025-04-11", - "open": 469.52, - "close": 474.45, - "volume": 65588084 -} \ No newline at end of file diff --git a/data/ticker-data/2025-04-12.json b/data/ticker-data/2025-04-12.json deleted file mode 100644 index cd74cc2..0000000 --- a/data/ticker-data/2025-04-12.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "ticker": "MSFT", - "date": "2025-04-12", - "open": 296.95, - "close": 297.34, - "volume": 13257032 -}{ - "ticker": "AAPL", - "date": "2025-04-12", - "open": 153.01, - "close": 152.22, - "volume": 65896385 -}{ - "ticker": "AMZN", - "date": "2025-04-12", - "open": 152.04, - "close": 147.62, - "volume": 65237599 -}{ - "ticker": "GOOGL", - "date": "2025-04-12", - "open": 129.26, - "close": 131.36, - "volume": 15039129 -}{ - "ticker": "NVDA", - "date": "2025-04-12", - "open": 474.46, - "close": 478.32, - "volume": 38517306 -} \ No newline at end of file diff --git a/data/ticker-data/2025-04-13.json b/data/ticker-data/2025-04-13.json deleted file mode 100644 index b977d8e..0000000 --- a/data/ticker-data/2025-04-13.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "ticker": "MSFT", - "date": "2025-04-13", - "open": 295.82, - "close": 294.67, - "volume": 64217849 -}{ - "ticker": "AAPL", - "date": "2025-04-13", - "open": 151.06, - "close": 148.3, - "volume": 75322981 -}{ - "ticker": "AMZN", - "date": "2025-04-13", - "open": 146.76, - "close": 144.99, - "volume": 54995378 -}{ - "ticker": "GOOGL", - "date": "2025-04-13", - "open": 131.71, - "close": 136.15, - "volume": 87380919 -}{ - "ticker": "NVDA", - "date": "2025-04-13", - "open": 477.71, - "close": 475.85, - "volume": 6535353 -} \ No newline at end of file diff --git a/data/ticker-data/2025-04-14.json b/data/ticker-data/2025-04-14.json deleted file mode 100644 index 6e76276..0000000 --- a/data/ticker-data/2025-04-14.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "ticker": "MSFT", - "date": "2025-04-14", - "open": 293.06, - "close": 297.3, - "volume": 17429910 -}{ - "ticker": "AAPL", - "date": "2025-04-14", - "open": 146.37, - "close": 145.59, - "volume": 87088166 -}{ - "ticker": "AMZN", - "date": "2025-04-14", - "open": 145.79, - "close": 146.76, - "volume": 9699365 -}{ - "ticker": "GOOGL", - "date": "2025-04-14", - "open": 134.66, - "close": 135.19, - "volume": 48959934 -}{ - "ticker": "NVDA", - "date": "2025-04-14", - "open": 474.28, - "close": 474.45, - "volume": 76811504 -} \ No newline at end of file diff --git a/data/ticker-data/2025-04-15.json b/data/ticker-data/2025-04-15.json deleted file mode 100644 index 8c50347..0000000 --- a/data/ticker-data/2025-04-15.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "ticker": "MSFT", - "date": "2025-04-15", - "open": 296.88, - "close": 296.78, - "volume": 37875731 -}{ - "ticker": "AAPL", - "date": "2025-04-15", - "open": 145.54, - "close": 147.83, - "volume": 33445700 -}{ - "ticker": "AMZN", - "date": "2025-04-15", - "open": 148.69, - "close": 145.58, - "volume": 75124219 -}{ - "ticker": "GOOGL", - "date": "2025-04-15", - "open": 133.93, - "close": 133.81, - "volume": 33895711 -}{ - "ticker": "NVDA", - "date": "2025-04-15", - "open": 475.48, - "close": 474.14, - "volume": 85015664 -} \ No newline at end of file diff --git a/data/ticker-data/2025-04-16.json b/data/ticker-data/2025-04-16.json deleted file mode 100644 index ac0fd0f..0000000 --- a/data/ticker-data/2025-04-16.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "ticker": "MSFT", - "date": "2025-04-16", - "open": 295.58, - "close": 300.5, - "volume": 87928451 -}{ - "ticker": "AAPL", - "date": "2025-04-16", - "open": 147.46, - "close": 148.92, - "volume": 15233498 -}{ - "ticker": "AMZN", - "date": "2025-04-16", - "open": 143.93, - "close": 147.64, - "volume": 83706499 -}{ - "ticker": "GOOGL", - "date": "2025-04-16", - "open": 132.61, - "close": 134.6, - "volume": 53586543 -}{ - "ticker": "NVDA", - "date": "2025-04-16", - "open": 472.79, - "close": 468.45, - "volume": 54157103 -} \ No newline at end of file diff --git a/data/ticker-data/aapl.json b/data/ticker-data/aapl.json deleted file mode 100644 index a26306a..0000000 --- a/data/ticker-data/aapl.json +++ /dev/null @@ -1,181 +0,0 @@ -{ - "ticker": "AAPL", - "date": "2025-03-18", - "open": 174.43, - "close": 173.55, - "volume": 88408063 -}{ - "ticker": "AAPL", - "date": "2025-03-19", - "open": 172.71, - "close": 176.39, - "volume": 48328978 -}{ - "ticker": "AAPL", - "date": "2025-03-20", - "open": 175.18, - "close": 174.0, - "volume": 12210838 -}{ - "ticker": "AAPL", - "date": "2025-03-21", - "open": 173.34, - "close": 176.85, - "volume": 15516213 -}{ - "ticker": "AAPL", - "date": "2025-03-22", - "open": 175.22, - "close": 172.76, - "volume": 71910140 -}{ - "ticker": "AAPL", - "date": "2025-03-23", - "open": 171.7, - "close": 175.8, - "volume": 86664537 -}{ - "ticker": "AAPL", - "date": "2025-03-24", - "open": 174.11, - "close": 175.51, - "volume": 99368560 -}{ - "ticker": "AAPL", - "date": "2025-03-25", - "open": 174.36, - "close": 171.2, - "volume": 25455857 -}{ - "ticker": "AAPL", - "date": "2025-03-26", - "open": 172.51, - "close": 169.68, - "volume": 29790009 -}{ - "ticker": "AAPL", - "date": "2025-03-27", - "open": 168.0, - "close": 171.98, - "volume": 95819164 -}{ - "ticker": "AAPL", - "date": "2025-03-28", - "open": 171.77, - "close": 169.73, - "volume": 46476112 -}{ - "ticker": "AAPL", - "date": "2025-03-29", - "open": 168.07, - "close": 168.72, - "volume": 5011736 -}{ - "ticker": "AAPL", - "date": "2025-03-30", - "open": 170.39, - "close": 166.92, - "volume": 58437406 -}{ - "ticker": "AAPL", - "date": "2025-03-31", - "open": 165.92, - "close": 162.72, - "volume": 64375787 -}{ - "ticker": "AAPL", - "date": "2025-04-01", - "open": 161.82, - "close": 156.83, - "volume": 63007613 -}{ - "ticker": "AAPL", - "date": "2025-04-02", - "open": 156.68, - "close": 157.16, - "volume": 86129019 -}{ - "ticker": "AAPL", - "date": "2025-04-03", - "open": 155.78, - "close": 152.83, - "volume": 99487545 -}{ - "ticker": "AAPL", - "date": "2025-04-04", - "open": 153.66, - "close": 150.28, - "volume": 36319585 -}{ - "ticker": "AAPL", - "date": "2025-04-05", - "open": 151.31, - "close": 154.59, - "volume": 29320021 -}{ - "ticker": "AAPL", - "date": "2025-04-06", - "open": 153.53, - "close": 156.07, - "volume": 23464462 -}{ - "ticker": "AAPL", - "date": "2025-04-07", - "open": 156.61, - "close": 159.25, - "volume": 95193657 -}{ - "ticker": "AAPL", - "date": "2025-04-08", - "open": 160.6, - "close": 156.12, - "volume": 13918703 -}{ - "ticker": "AAPL", - "date": "2025-04-09", - "open": 158.03, - "close": 154.5, - "volume": 28542029 -}{ - "ticker": "AAPL", - "date": "2025-04-10", - "open": 153.65, - "close": 152.54, - "volume": 99316498 -}{ - "ticker": "AAPL", - "date": "2025-04-11", - "open": 153.18, - "close": 151.45, - "volume": 67212911 -}{ - "ticker": "AAPL", - "date": "2025-04-12", - "open": 153.01, - "close": 152.22, - "volume": 65896385 -}{ - "ticker": "AAPL", - "date": "2025-04-13", - "open": 151.06, - "close": 148.3, - "volume": 75322981 -}{ - "ticker": "AAPL", - "date": "2025-04-14", - "open": 146.37, - "close": 145.59, - "volume": 87088166 -}{ - "ticker": "AAPL", - "date": "2025-04-15", - "open": 145.54, - "close": 147.83, - "volume": 33445700 -}{ - "ticker": "AAPL", - "date": "2025-04-16", - "open": 147.46, - "close": 148.92, - "volume": 15233498 -} \ No newline at end of file From d7e5609ce00204f3683c772a58662737ba8d98c4 Mon Sep 17 00:00:00 2001 From: Giray Songul Date: Fri, 24 Jul 2026 13:12:29 +0200 Subject: [PATCH 5/6] Clarify that the Iceberg catalog is Tower-hosted with one-click setup The catalog examples read like they need external infrastructure. The catalog is Tower's own: deploying from the Tower app's examples gallery creates it automatically, and the same setup screen can fill required secrets (OPENAI_API_KEY, inference keys) with Tower sandbox values for testing. READMEs for 05, 06, 09, 13 and the root index now say so, while keeping the CLI instructions for that path. Part of TOW-2417 (clean and fine-tune example apps). Co-Authored-By: Claude Fable 5 --- 05-write-ticker-data-to-iceberg/README.md | 4 ++-- 06-analyze-ticker-data-in-iceberg/README.md | 6 +++--- 09-run-duckdb-queries-on-iceberg/README.md | 4 ++-- 13-ticker-update-agent/README.md | 6 ++++-- README.md | 18 +++++++++--------- 5 files changed, 20 insertions(+), 18 deletions(-) diff --git a/05-write-ticker-data-to-iceberg/README.md b/05-write-ticker-data-to-iceberg/README.md index d67e7ef..3271355 100644 --- a/05-write-ticker-data-to-iceberg/README.md +++ b/05-write-ticker-data-to-iceberg/README.md @@ -9,7 +9,7 @@ The pipeline uses [yfinance](https://github.com/ranaroussi/yfinance) to download ## Prerequisites - Tower CLI installed -- An Iceberg catalog configured in Tower (see setup below) +- An Iceberg catalog named `default` — Tower hosts this for you, nothing external to sign up for. Deploying this example from the [Tower app](https://app.tower.dev) creates it in one click; on the CLI path, see setup below. ## App Parameters @@ -29,7 +29,7 @@ uv sync ### 2. Configure an Iceberg Catalog -This app writes to an Iceberg table, which requires an Iceberg catalog configured in Tower. +This app writes to an Iceberg table, which requires an Iceberg catalog configured in Tower. The catalog is hosted by Tower — if you deploy this example from the Tower app's examples gallery, it is created for you automatically and you can skip this step. On the CLI path: 1. Go to [app.tower.dev](https://app.tower.dev/) 2. Navigate to your environment settings diff --git a/06-analyze-ticker-data-in-iceberg/README.md b/06-analyze-ticker-data-in-iceberg/README.md index 824b3ca..bf2dc2e 100644 --- a/06-analyze-ticker-data-in-iceberg/README.md +++ b/06-analyze-ticker-data-in-iceberg/README.md @@ -18,9 +18,9 @@ The pipeline performs the following steps: ## Prerequisites -- A Tower account with an Iceberg catalog configured +- A Tower account with an Iceberg catalog configured (Tower-hosted — created automatically when you deploy from the [Tower app](https://app.tower.dev)) - The `daily_ticker_data` table populated by [05-write-ticker-data-to-iceberg](../05-write-ticker-data-to-iceberg) -- A Hugging Face account with an API token +- A Hugging Face account with an API token — or skip this and check **Use Tower sandbox value** on the setup screen when deploying from the Tower app ### Sign Up for Hugging Face Hub @@ -42,7 +42,7 @@ Ensure you have an Iceberg catalog named `default` configured in the [Tower UI]( ### 3. Create the Secrets -Add your inference provider credentials as Tower secrets: +Deploying from the Tower app? The setup screen can fill these with Tower's sandbox values for testing — no Hugging Face account needed. On the CLI path, add your inference provider credentials as Tower secrets: ```bash tower secrets create --environment="default" \ diff --git a/09-run-duckdb-queries-on-iceberg/README.md b/09-run-duckdb-queries-on-iceberg/README.md index bd1e7b9..5b04a65 100644 --- a/09-run-duckdb-queries-on-iceberg/README.md +++ b/09-run-duckdb-queries-on-iceberg/README.md @@ -12,8 +12,8 @@ Swap the query at the bottom of [main.py](./main.py) for your own SQL. ## What You Need -- A Tower Iceberg catalog containing data (run example 05 first) -- Three Tower secrets with your Iceberg REST catalog credentials: +- A Tower-hosted Iceberg catalog containing data (run example 05 first — nothing external to set up) +- Three Tower secrets with your Tower catalog's REST credentials: ```bash tower secrets create --name=IRC_CLIENT_ID --value="[YOUR_CLIENT_ID]" diff --git a/13-ticker-update-agent/README.md b/13-ticker-update-agent/README.md index 3fc2c3d..2edd0e2 100644 --- a/13-ticker-update-agent/README.md +++ b/13-ticker-update-agent/README.md @@ -24,7 +24,7 @@ The agent demonstrates how to build **agentic workflows** in Tower that can orch ## Prerequisites - Tower CLI installed -- An Iceberg catalog configured in Tower (see setup below) +- An Iceberg catalog named `default` — Tower hosts this for you; deploying this example from the [Tower app](https://app.tower.dev) creates it (and can set a sandbox `OPENAI_API_KEY`) in one click. On the CLI path, see setup below. - The `daily_ticker_data` table exists (created by example 05) - The `write-ticker-data-to-iceberg` app deployed (example 05) @@ -52,9 +52,11 @@ tower secrets create LANGCHAIN_API_KEY "" tower secrets create OPENAI_API_KEY "" ``` +> No OpenAI key? When deploying from the Tower app, check **Use Tower sandbox value** on the setup screen to test with Tower's own key. + ### 3. Configure an Iceberg Catalog -This app reads from and writes to an Iceberg table, which requires an Iceberg catalog configured in Tower. +This app reads from and writes to an Iceberg table, which requires an Iceberg catalog configured in Tower. The catalog is hosted by Tower — if you deploy this example from the Tower app's examples gallery, it is created for you automatically and you can skip this step. On the CLI path: 1. Go to [app.tower.dev](https://app.tower.dev/) 2. Navigate to your environment settings diff --git a/README.md b/README.md index 8d7191b..19cbc92 100644 --- a/README.md +++ b/README.md @@ -35,16 +35,16 @@ Then pick the example below that matches the problem you're actually trying to s ### Build a lakehouse on Apache Iceberg -These examples form a small end-to-end lakehouse: ingest → analyze → query → maintain. They share one prerequisite: an Iceberg catalog named `default` in your Tower account ([how to set one up](https://docs.tower.dev)). +These examples form a small end-to-end lakehouse: ingest → analyze → query → maintain. They share one prerequisite: an Iceberg catalog named `default` — but Tower hosts this catalog for you, so there is nothing external to sign up for. Deploying an example from the [Tower app](https://app.tower.dev) creates it in one click (the same screen can fill required secrets with Tower sandbox values for testing); on the CLI path, create it once in the Tower UI. | Example | The problem it solves | What you need | |---|---|---| -| [05-write-ticker-data-to-iceberg](./05-write-ticker-data-to-iceberg) | Pull data from an external API on a schedule and land it in an Iceberg table (demo data: stock prices) | Iceberg catalog — no API keys | -| [06-analyze-ticker-data-in-iceberg](./06-analyze-ticker-data-in-iceberg) | Run LLM-assisted analysis over data already in your lakehouse | Iceberg catalog + inference secrets | -| [09-run-duckdb-queries-on-iceberg](./09-run-duckdb-queries-on-iceberg) | Query Iceberg tables with plain SQL from DuckDB | Iceberg REST catalog credentials | -| [11-trim-ticker-table](./11-trim-ticker-table) | Enforce a retention window by deleting old rows from an Iceberg table | Iceberg catalog with data (run 05 first) | -| [17-list-catalog-tables](./17-list-catalog-tables) | Inspect what namespaces and tables exist in a catalog | Iceberg catalog | -| [18-read-table-rows](./18-read-table-rows) | Peek at the first rows of any Iceberg table | Iceberg catalog with data | +| [05-write-ticker-data-to-iceberg](./05-write-ticker-data-to-iceberg) | Pull data from an external API on a schedule and land it in an Iceberg table (demo data: stock prices) | Tower-hosted catalog — no API keys | +| [06-analyze-ticker-data-in-iceberg](./06-analyze-ticker-data-in-iceberg) | Run LLM-assisted analysis over data already in your lakehouse | Tower-hosted catalog + inference key (or Tower's sandbox key in-app) | +| [09-run-duckdb-queries-on-iceberg](./09-run-duckdb-queries-on-iceberg) | Query Iceberg tables with plain SQL from DuckDB | Tower-hosted catalog + its REST credentials as secrets | +| [11-trim-ticker-table](./11-trim-ticker-table) | Enforce a retention window by deleting old rows from an Iceberg table | Tower-hosted catalog with data (run 05 first) | +| [17-list-catalog-tables](./17-list-catalog-tables) | Inspect what namespaces and tables exist in a catalog | Tower-hosted catalog | +| [18-read-table-rows](./18-read-table-rows) | Peek at the first rows of any Iceberg table | Tower-hosted catalog with data | ### Orchestrate many runs @@ -56,8 +56,8 @@ These examples form a small end-to-end lakehouse: ingest → analyze → query | Example | The problem it solves | What you need | |---|---|---| -| [07-deepseek-summarize-github](./07-deepseek-summarize-github) | Feed operational data (GitHub issues) to an LLM and get an actionable recommendation back | Iceberg catalog + inference secrets | -| [13-ticker-update-agent](./13-ticker-update-agent) | Deploy an AI agent that answers questions from — and maintains — business data in your lakehouse | Iceberg catalog + `OPENAI_API_KEY` | +| [07-deepseek-summarize-github](./07-deepseek-summarize-github) | Feed operational data (GitHub issues) to an LLM and get an actionable recommendation back | Tower-hosted catalog + inference API key | +| [13-ticker-update-agent](./13-ticker-update-agent) | Deploy an AI agent that answers questions from — and maintains — business data in your lakehouse | Tower-hosted catalog + `OPENAI_API_KEY` (or Tower's sandbox key in-app) | ### Run dbt in production From de8732998a1efd152f880926fa083fd80a7f97c1 Mon Sep 17 00:00:00 2001 From: Giray Songul Date: Fri, 24 Jul 2026 13:21:50 +0200 Subject: [PATCH 6/6] Address CodeRabbit review: accurate LLM data-flow claim, secrets hygiene note MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 06's intro claimed data is analyzed "without exporting it anywhere", but the app sends derived metrics to the inference provider in the prompt — reworded to say no export pipeline is needed while being accurate about what leaves the lakehouse. 16 gains a note warning against putting production credentials in shell commands. Co-Authored-By: Claude Fable 5 --- 06-analyze-ticker-data-in-iceberg/README.md | 2 +- 16-sling-data/README.md | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/06-analyze-ticker-data-in-iceberg/README.md b/06-analyze-ticker-data-in-iceberg/README.md index bf2dc2e..0f22f65 100644 --- a/06-analyze-ticker-data-in-iceberg/README.md +++ b/06-analyze-ticker-data-in-iceberg/README.md @@ -1,6 +1,6 @@ # Analyze Lakehouse Data with an LLM -You have data accumulating in your lakehouse and want an LLM to reason over it — without exporting it anywhere. This app runs statistical and AI analysis directly on an Iceberg table: it uses the Deepseek R1 LLM to generate buy/sell/hold recommendations from trends in stock prices and trading volume. The data is read from the `daily_ticker_data` Iceberg table, which is populated by the [05-write-ticker-data-to-iceberg](../05-write-ticker-data-to-iceberg) example. +You have data accumulating in your lakehouse and want an LLM to reason over it — with no export pipeline to build. This app runs statistical analysis directly on an Iceberg table, then sends the derived metrics to the Deepseek R1 LLM to generate buy/sell/hold recommendations from trends in stock prices and trading volume. The data is read from the `daily_ticker_data` Iceberg table, which is populated by the [05-write-ticker-data-to-iceberg](../05-write-ticker-data-to-iceberg) example. ## Overview diff --git a/16-sling-data/README.md b/16-sling-data/README.md index 68b3106..0247b03 100644 --- a/16-sling-data/README.md +++ b/16-sling-data/README.md @@ -17,6 +17,8 @@ A Tower secret named `SNOWFLAKE_URL` with your Snowflake connection string, in [ tower secrets create --name=SNOWFLAKE_URL --value="snowflake://user:password@account/database?schema=PUBLIC&warehouse=COMPUTE_WH" ``` +> **Note:** Inline values like this end up in your shell history. Use a throwaway or sandbox Snowflake user for testing, and avoid pasting production credentials into commands. + ## Run It ```bash