From 08c90a506749df0cf269b8ad5278fd2bf707d2c8 Mon Sep 17 00:00:00 2001 From: jdebacker Date: Wed, 28 Aug 2024 19:51:53 -0400 Subject: [PATCH 01/10] add script to read in depreciation data --- data/pull_depreciation.py | 52 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 data/pull_depreciation.py diff --git a/data/pull_depreciation.py b/data/pull_depreciation.py new file mode 100644 index 00000000..8b6d09b6 --- /dev/null +++ b/data/pull_depreciation.py @@ -0,0 +1,52 @@ +""" +This model has functions to read in depreciation data +""" + +# imports +import numpy as np +import pandas as pd +from data_paths import get_paths + +globals().update(get_paths()) + + +def get_depr(): + """ + Reads in the list of assets and their economic depreciation values + from BEA data and the tax depriation system for each asset type from + the IRS + + Args: + None + + Returns: + econ_deprec_rates (DataFrame): economic depreciation rates for + all asset types + + """ + econ_deprec_rates = pd.read_csv(_ECON_DEPR_IN_PATH) + econ_deprec_rates = econ_deprec_rates.fillna(0) + econ_deprec_rates.rename( + columns={ + "Code": "bea_asset_code", + "Economic Depreciation Rate": "delta", + }, + inplace=True, + ) + econ_deprec_rates["Asset"] = econ_deprec_rates["Asset"].str.strip() + econ_deprec_rates["bea_asset_code"] = econ_deprec_rates[ + "bea_asset_code" + ].str.strip() + + tax_deprec = pd.read_csv(_TAX_DEPR) + tax_deprec["Asset Type"] = tax_deprec["Asset Type"].str.strip() + + deprec_rates = tax_deprec.merge( + econ_deprec_rates, + how="left", + left_on=["Asset Type"], + right_on=["Asset"], + copy=True, + ) + + return deprec_rates From 5b7302c8d19859e13d6d62c03fdab542b8c57ec2 Mon Sep 17 00:00:00 2001 From: jdebacker Date: Wed, 28 Aug 2024 19:54:55 -0400 Subject: [PATCH 02/10] test on 3.12 --- .github/workflows/build_and_test.yml | 4 ++-- .github/workflows/check_jupyterbook.yml | 2 +- .github/workflows/create_pip_package.yml | 2 +- .github/workflows/deploy_jupyterbook.yml | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build_and_test.yml b/.github/workflows/build_and_test.yml index a962ecb8..d6a3b7cb 100644 --- a/.github/workflows/build_and_test.yml +++ b/.github/workflows/build_and_test.yml @@ -1,4 +1,4 @@ -name: Build Package and Test Source Code [Python 3.9, 3.10, 3.11] +name: Build Package and Test Source Code [Python 3.10, 3.11, 3.12] on: [push, pull_request] @@ -8,7 +8,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, macos-latest, windows-latest] - python-version: ["3.9", "3.10", "3.11"] + python-version: ["3.10", "3.11", "3.12"] steps: - name: Checkout diff --git a/.github/workflows/check_jupyterbook.yml b/.github/workflows/check_jupyterbook.yml index 36dd9bc4..dc893380 100644 --- a/.github/workflows/check_jupyterbook.yml +++ b/.github/workflows/check_jupyterbook.yml @@ -16,7 +16,7 @@ jobs: miniforge-variant: Mambaforge activate-environment: ccc-dev environment-file: environment.yml - python-version: 3.9 + python-version: 3.12 auto-activate-base: false - name: Build # Build Jupyter Book diff --git a/.github/workflows/create_pip_package.yml b/.github/workflows/create_pip_package.yml index e330a614..28685319 100644 --- a/.github/workflows/create_pip_package.yml +++ b/.github/workflows/create_pip_package.yml @@ -16,7 +16,7 @@ jobs: - name: Setup Python uses: actions/setup-python@v2 with: - python-version: 3.9 + python-version: 3.12 - name: Build package run: make pip-package - name: Publish a Python distribution to PyPI diff --git a/.github/workflows/deploy_jupyterbook.yml b/.github/workflows/deploy_jupyterbook.yml index b4d03b67..25a97ef6 100644 --- a/.github/workflows/deploy_jupyterbook.yml +++ b/.github/workflows/deploy_jupyterbook.yml @@ -19,7 +19,7 @@ jobs: miniforge-variant: Mambaforge activate-environment: ccc-dev environment-file: environment.yml - python-version: 3.9 + python-version: 3.12 auto-activate-base: false - name: Build # Build Jupyter Book From eb5b867dba8ec862e7817553d69f0dfa1af3c178 Mon Sep 17 00:00:00 2001 From: jdebacker Date: Wed, 28 Aug 2024 19:56:40 -0400 Subject: [PATCH 03/10] bump version --- ccc/__init__.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ccc/__init__.py b/ccc/__init__.py index f0aa29da..602315f4 100644 --- a/ccc/__init__.py +++ b/ccc/__init__.py @@ -6,4 +6,4 @@ from ccc.data import * from ccc.calculator import * -__version__ = "1.4.1" +__version__ = "1.5.0" diff --git a/setup.py b/setup.py index 3a7a4eb2..b77d8823 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ with open("README.md") as f: longdesc = f.read() -version = "1.4.1" +version = "1.5.0" config = { "description": "CCC: A Cost of Capital Calculator", From ff502984d43e8f171dd0d98b4a0ad78fad482d93 Mon Sep 17 00:00:00 2001 From: jdebacker Date: Sun, 15 Sep 2024 14:42:59 -0400 Subject: [PATCH 04/10] use new growfactors api --- cs-config/cs_config/functions.py | 2 +- environment.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cs-config/cs_config/functions.py b/cs-config/cs_config/functions.py index 52adee73..a6c2db4b 100644 --- a/cs-config/cs_config/functions.py +++ b/cs-config/cs_config/functions.py @@ -264,7 +264,7 @@ def run_model(meta_param_dict, adjustment): call_tc=True, iit_reform=iit_mods, data=data, - gfactors=GrowFactors.FILE_NAME, + gfactors=GrowFactors.FILE_PATH, weights=weights, records_start_year=records_start_year, ) diff --git a/environment.yml b/environment.yml index 5807648b..d0e0d961 100644 --- a/environment.yml +++ b/environment.yml @@ -4,7 +4,7 @@ channels: dependencies: - python - "taxcalc>=3.1.0" -- "paramtools>=0.18.0" +- "paramtools>=0.18.3" - "pandas>=2.2.0" - bokeh>=3.1.1 - setuptools From 5d80a58d5f6feb21e872a0854bea2f76ad696f7f Mon Sep 17 00:00:00 2001 From: jdebacker Date: Sun, 15 Sep 2024 17:06:46 -0400 Subject: [PATCH 05/10] update default tax rates to be consistent with latest taxcalc release --- ccc/default_parameters.json | 560 ++++++++++++++++++------------------ 1 file changed, 280 insertions(+), 280 deletions(-) diff --git a/ccc/default_parameters.json b/ccc/default_parameters.json index c3db4030..186f3240 100644 --- a/ccc/default_parameters.json +++ b/ccc/default_parameters.json @@ -1071,84 +1071,84 @@ "value": 0.2548341698618564 }, { - "year": 2014 , - "value": 0.2244411667052448 + "year": 2014, + "value": 0.22444142086459146 }, { - "year": 2015 , - "value": 0.21585867176352766 + "year": 2015, + "value": 0.21585892943492752 }, { - "year": 2016 , - "value": 0.2151047099226834 + "year": 2016, + "value": 0.21511105312559334 }, { - "year": 2017 , - "value": 0.21050920335856 + "year": 2017, + "value": 0.21051543840797954 }, { - "year": 2018 , - "value": 0.20218586873648686 + "year": 2018, + "value": 0.20072809776819858 }, { - "year": 2019 , - "value": 0.2019759655431299 + "year": 2019, + "value": 0.20093934567103136 }, { - "year": 2020 , - "value": 0.2260179227275853 + "year": 2020, + "value": 0.20564337638127628 }, { - "year": 2021 , - "value": 0.21588230780171835 + "year": 2021, + "value": 0.2153876321451198 }, { - "year": 2022 , - "value": 0.20504301056899873 + "year": 2022, + "value": 0.2040791502267705 }, { - "year": 2023 , - "value": 0.20158461646450374 + "year": 2023, + "value": 0.20174009959769854 }, { - "year": 2024 , - "value": 0.20116500836655019 + "year": 2024, + "value": 0.20114462090746132 }, { - "year": 2025 , - "value": 0.20267985639842187 + "year": 2025, + "value": 0.20086563626407872 }, { - "year": 2026 , - "value": 0.2517644730204667 + "year": 2026, + "value": 0.2522333023648709 }, { - "year": 2027 , - "value": 0.25279838492708506 + "year": 2027, + "value": 0.2519613170201027 }, { - "year": 2028 , - "value": 0.25344348325958377 + "year": 2028, + "value": 0.2513038477764787 }, { - "year": 2029 , - "value": 0.2531265022967253 + "year": 2029, + "value": 0.2514008889347744 }, { - "year": 2030 , - "value": 0.2536762092888268 + "year": 2030, + "value": 0.2514147568133993 }, { - "year": 2031 , - "value": 0.2529530416445639 + "year": 2031, + "value": 0.25089079951424226 }, { - "year": 2032 , - "value": 0.2516256206213332 + "year": 2032, + "value": 0.25004092337829553 }, { - "year": 2033 , - "value": 0.25065047468430174 + "year": 2033, + "value": 0.24977970790574958 } ], "validators": { @@ -1171,84 +1171,84 @@ "value": 0.1826392977480127 }, { - "year": 2014 , - "value": 0.1733437026475211 + "year": 2014, + "value": 0.17334369797891055 }, { - "year": 2015 , - "value": 0.15673619523628032 + "year": 2015, + "value": 0.1567361890752361 }, { - "year": 2016 , - "value": 0.15510108559540703 + "year": 2016, + "value": 0.15510107943169207 }, { - "year": 2017 , - "value": 0.15709863808751606 + "year": 2017, + "value": 0.1570986320712474 }, { - "year": 2018 , - "value": 0.17102872102729874 + "year": 2018, + "value": 0.17109631689695085 }, { - "year": 2019 , - "value": 0.17128221384016662 + "year": 2019, + "value": 0.1714021483077442 }, { - "year": 2020 , - "value": 0.1801238416991061 + "year": 2020, + "value": 0.18013153502865878 }, { - "year": 2021 , - "value": 0.18435287699570962 + "year": 2021, + "value": 0.1846516243935635 }, { - "year": 2022 , - "value": 0.17599343010999202 + "year": 2022, + "value": 0.17500530808588163 }, { - "year": 2023 , - "value": 0.17359218441267887 + "year": 2023, + "value": 0.17529979340302906 }, { - "year": 2024 , - "value": 0.1723512015277591 + "year": 2024, + "value": 0.17458948933306534 }, { - "year": 2025 , - "value": 0.17209041312811366 + "year": 2025, + "value": 0.17486001312278965 }, { - "year": 2026 , - "value": 0.17948212802897062 + "year": 2026, + "value": 0.18173719338875977 }, { - "year": 2027 , - "value": 0.18066111615152902 + "year": 2027, + "value": 0.18224326042070393 }, { - "year": 2028 , - "value": 0.17915884059098117 + "year": 2028, + "value": 0.18127663377371284 }, { - "year": 2029 , - "value": 0.1796047313878608 + "year": 2029, + "value": 0.1819275777408263 }, { - "year": 2030 , - "value": 0.18041223025245287 + "year": 2030, + "value": 0.1830134086547864 }, { - "year": 2031 , - "value": 0.18080691155746179 + "year": 2031, + "value": 0.18319460504075166 }, { - "year": 2032 , - "value": 0.18008340336015813 + "year": 2032, + "value": 0.18366103613929732 }, { - "year": 2033 , - "value": 0.1800578912404499 + "year": 2033, + "value": 0.18441566380733956 } ], "validators": { @@ -1271,84 +1271,84 @@ "value": 0.34774779605673567 }, { - "year": 2014 , - "value": 0.3226124013891564 + "year": 2014, + "value": 0.32261002248101006 }, { - "year": 2015 , - "value": 0.30764807439999753 + "year": 2015, + "value": 0.3076424670324242 }, { - "year": 2016 , - "value": 0.3089206943493793 + "year": 2016, + "value": 0.30891807737189775 }, { - "year": 2017 , - "value": 0.30871890546084657 + "year": 2017, + "value": 0.3087156218693888 }, { - "year": 2018 , - "value": 0.31092919443636685 + "year": 2018, + "value": 0.3109430365983698 }, { - "year": 2019 , - "value": 0.31151277439969316 + "year": 2019, + "value": 0.3115485517535955 }, { - "year": 2020 , - "value": 0.3172214726166182 + "year": 2020, + "value": 0.3168332940909384 }, { - "year": 2021 , - "value": 0.32161832421054365 + "year": 2021, + "value": 0.3217865706372556 }, { - "year": 2022 , - "value": 0.31391842516732243 + "year": 2022, + "value": 0.31334560770631265 }, { - "year": 2023 , - "value": 0.3126196427356743 + "year": 2023, + "value": 0.3134999455473783 }, { - "year": 2024 , - "value": 0.3121633963404412 + "year": 2024, + "value": 0.31311684735814593 }, { - "year": 2025 , - "value": 0.31278301398959113 + "year": 2025, + "value": 0.31319469382168275 }, { - "year": 2026 , - "value": 0.3407731242619347 + "year": 2026, + "value": 0.34163565213312375 }, { - "year": 2027 , - "value": 0.34155506174867123 + "year": 2027, + "value": 0.34262669156682407 }, { - "year": 2028 , - "value": 0.34037606056827 + "year": 2028, + "value": 0.34127640386169583 }, { - "year": 2029 , - "value": 0.3407902370293722 + "year": 2029, + "value": 0.34172584985224447 }, { - "year": 2030 , - "value": 0.3413364215084208 + "year": 2030, + "value": 0.3426209947753443 }, { - "year": 2031 , - "value": 0.34115772183435744 + "year": 2031, + "value": 0.3427336396239936 }, { - "year": 2032 , - "value": 0.3408986522214799 + "year": 2032, + "value": 0.34324271213475915 }, { - "year": 2033 , - "value": 0.34066021707680383 + "year": 2033, + "value": 0.3434884023694629 } ], "validators": { @@ -1371,84 +1371,84 @@ "value": 0.31175417200609673 }, { - "year": 2014 , - "value": 0.3078058696063642 + "year": 2014, + "value": 0.30780563553959484 }, { - "year": 2015 , - "value": 0.29979035274922244 + "year": 2015, + "value": 0.29979008503416826 }, { - "year": 2016 , - "value": 0.2949898143337424 + "year": 2016, + "value": 0.2949894771215931 }, { - "year": 2017 , - "value": 0.30351201403994965 + "year": 2017, + "value": 0.30351175953295517 }, { - "year": 2018 , - "value": 0.27782429316846274 + "year": 2018, + "value": 0.2778294083515541 }, { - "year": 2019 , - "value": 0.27644283934361696 + "year": 2019, + "value": 0.27646282594673427 }, { - "year": 2020 , - "value": 0.2887841344956884 + "year": 2020, + "value": 0.2884514947322656 }, { - "year": 2021 , - "value": 0.3076535927708392 + "year": 2021, + "value": 0.3080485026498746 }, { - "year": 2022 , - "value": 0.29663216089775263 + "year": 2022, + "value": 0.2874807915432408 }, { - "year": 2023 , - "value": 0.28817612087542543 + "year": 2023, + "value": 0.28673215706435695 }, { - "year": 2024 , - "value": 0.28519506983835097 + "year": 2024, + "value": 0.2848271616970426 }, { - "year": 2025 , - "value": 0.2836074119599812 + "year": 2025, + "value": 0.2839984758078023 }, { - "year": 2026 , - "value": 0.32176366340414825 + "year": 2026, + "value": 0.32310889766139517 }, { - "year": 2027 , - "value": 0.3214760422202797 + "year": 2027, + "value": 0.32223204621691287 }, { - "year": 2028 , - "value": 0.3209362175082652 + "year": 2028, + "value": 0.3218861780705869 }, { - "year": 2029 , - "value": 0.32116772557699325 + "year": 2029, + "value": 0.3226433819712585 }, { - "year": 2030 , - "value": 0.3218927701792223 + "year": 2030, + "value": 0.3239389465783163 }, { - "year": 2031 , - "value": 0.32238522148365517 + "year": 2031, + "value": 0.3246786075071481 }, { - "year": 2032 , - "value": 0.3226888325825029 + "year": 2032, + "value": 0.3253517134472942 }, { - "year": 2033 , - "value": 0.3226970047155788 + "year": 2033, + "value": 0.32497561957140764 } ], "validators": { @@ -1471,84 +1471,84 @@ "value": 0.18167106746264436 }, { - "year": 2014 , - "value": 0.18094601188689385 + "year": 2014, + "value": 0.18094622293666485 }, { - "year": 2015 , - "value": 0.17581414561470662 + "year": 2015, + "value": 0.17581438678226743 }, { - "year": 2016 , - "value": 0.17249384787547328 + "year": 2016, + "value": 0.17249401855258195 }, { - "year": 2017 , - "value": 0.18021829061931044 + "year": 2017, + "value": 0.18021854512630556 }, { - "year": 2018 , - "value": 0.17810908208643572 + "year": 2018, + "value": 0.1781241769229344 }, { - "year": 2019 , - "value": 0.17666974775414826 + "year": 2019, + "value": 0.17670394814315388 }, { - "year": 2020 , - "value": 0.1884790736919048 + "year": 2020, + "value": 0.18847358149586632 }, { - "year": 2021 , - "value": 0.2031284082253475 + "year": 2021, + "value": 0.2033120516870842 }, { - "year": 2022 , - "value": 0.193569557275674 + "year": 2022, + "value": 0.18665886619857133 }, { - "year": 2023 , - "value": 0.1873933796001927 + "year": 2023, + "value": 0.1864983421767714 }, { - "year": 2024 , - "value": 0.18489680709846018 + "year": 2024, + "value": 0.18404184848357577 }, { - "year": 2025 , - "value": 0.18297640755669523 + "year": 2025, + "value": 0.18336395993299917 }, { - "year": 2026 , - "value": 0.19253371351227203 + "year": 2026, + "value": 0.19300922456229408 }, { - "year": 2027 , - "value": 0.19216789731532738 + "year": 2027, + "value": 0.19251403850786505 }, { - "year": 2028 , - "value": 0.19199088951950252 + "year": 2028, + "value": 0.19247731902999451 }, { - "year": 2029 , - "value": 0.1925106669607892 + "year": 2029, + "value": 0.19315587749916074 }, { - "year": 2030 , - "value": 0.19311450306765937 + "year": 2030, + "value": 0.1941349932063531 }, { - "year": 2031 , - "value": 0.1935981623811513 + "year": 2031, + "value": 0.19494742761579234 }, { - "year": 2032 , - "value": 0.19387064459949888 + "year": 2032, + "value": 0.1956881119869437 }, { - "year": 2033 , - "value": 0.19416507544515915 + "year": 2033, + "value": 0.19643236590687804 } ], "validators": { @@ -1591,84 +1591,84 @@ "value": 0.2241245206327006 }, { - "year": 2014 , - "value": 0.22379482226659458 + "year": 2014, + "value": 0.22379494727075533 }, { - "year": 2015 , - "value": 0.2232760034230072 + "year": 2015, + "value": 0.2232761341115233 }, { - "year": 2016 , - "value": 0.22350881061070663 + "year": 2016, + "value": 0.22350894834433155 }, { - "year": 2017 , - "value": 0.22460068246612844 + "year": 2017, + "value": 0.22460082421217467 }, { - "year": 2018 , - "value": 0.20014141922797854 + "year": 2018, + "value": 0.20009597243512675 }, { - "year": 2019 , - "value": 0.20094218265457936 + "year": 2019, + "value": 0.20098967111300622 }, { - "year": 2020 , - "value": 0.21400059176181035 + "year": 2020, + "value": 0.21389319606384552 }, { - "year": 2021 , - "value": 0.22128408631721147 + "year": 2021, + "value": 0.22143255215895621 }, { - "year": 2022 , - "value": 0.2081869518143556 + "year": 2022, + "value": 0.20762304143024354 }, { - "year": 2023 , - "value": 0.20531149522807335 + "year": 2023, + "value": 0.20683842123380558 }, { - "year": 2024 , - "value": 0.20410151758639122 + "year": 2024, + "value": 0.20601009910033832 }, { - "year": 2025 , - "value": 0.20432853760099992 + "year": 2025, + "value": 0.20664902777811203 }, { - "year": 2026 , - "value": 0.23682060230465068 + "year": 2026, + "value": 0.24015612140129666 }, { - "year": 2027 , - "value": 0.23807187794534876 + "year": 2027, + "value": 0.2407015325031462 }, { - "year": 2028 , - "value": 0.23923902896560112 + "year": 2028, + "value": 0.2412877177144198 }, { - "year": 2029 , - "value": 0.23939012918920877 + "year": 2029, + "value": 0.2418025029518957 }, { - "year": 2030 , - "value": 0.24017018771514795 + "year": 2030, + "value": 0.2430813491606597 }, { - "year": 2031 , - "value": 0.24076298118821005 + "year": 2031, + "value": 0.24362826046749259 }, { - "year": 2032 , - "value": 0.23954830375969535 + "year": 2032, + "value": 0.2444360682993102 }, { - "year": 2033 , - "value": 0.23884166243179983 + "year": 2033, + "value": 0.2450686292271382 } ], "validators": { @@ -1691,84 +1691,84 @@ "value": 0.14304639378703857 }, { - "year": 2014 , - "value": 0.14256595777766592 + "year": 2014, + "value": 0.14256595777766568 }, { - "year": 2015 , - "value": 0.14280453407665789 + "year": 2015, + "value": 0.14280453407665794 }, { - "year": 2016 , - "value": 0.14389946320558666 + "year": 2016, + "value": 0.14389946320560504 }, { - "year": 2017 , - "value": 0.14710022571649486 + "year": 2017, + "value": 0.14710022571649664 }, { - "year": 2018 , - "value": 0.0378492125417984 + "year": 2018, + "value": 0.03796295152288184 }, { - "year": 2019 , - "value": 0.03836042196054935 + "year": 2019, + "value": 0.03852002214910786 }, { - "year": 2020 , - "value": 0.03984998848074774 + "year": 2020, + "value": 0.03913497378541299 }, { - "year": 2021 , - "value": 0.043546626548522295 + "year": 2021, + "value": 0.04245126232145554 }, { - "year": 2022 , - "value": 0.042034613223898176 + "year": 2022, + "value": 0.0421344058770527 }, { - "year": 2023 , - "value": 0.03695895366770403 + "year": 2023, + "value": 0.037568415137338294 }, { - "year": 2024 , - "value": 0.03462734261500251 + "year": 2024, + "value": 0.034772804160925416 }, { - "year": 2025 , - "value": 0.03402234629234294 + "year": 2025, + "value": 0.034444685359624555 }, { - "year": 2026 , - "value": 0.15220885631123657 + "year": 2026, + "value": 0.1532426090772385 }, { - "year": 2027 , - "value": 0.15334492624581894 + "year": 2027, + "value": 0.15413452888087995 }, { - "year": 2028 , - "value": 0.1543925520884252 + "year": 2028, + "value": 0.15491673724816665 }, { - "year": 2029 , - "value": 0.1549901776448693 + "year": 2029, + "value": 0.15569881019922455 }, { - "year": 2030 , - "value": 0.15560911528888347 + "year": 2030, + "value": 0.15660825719274835 }, { - "year": 2031 , - "value": 0.15640071736129513 + "year": 2031, + "value": 0.15747722774316325 }, { - "year": 2032 , - "value": 0.15714530853956687 + "year": 2032, + "value": 0.15827923696422158 }, { - "year": 2033 , - "value": 0.15766435923168545 + "year": 2033, + "value": 0.15880163569926464 } ], "validators": { From f53c20b2bf4575c2a565f537b18d72e81d343a6e Mon Sep 17 00:00:00 2001 From: jdebacker Date: Sun, 15 Sep 2024 17:10:44 -0400 Subject: [PATCH 06/10] version bump in docs --- README.md | 2 +- docs/book/content/intro.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index ca66deab..769fae48 100644 --- a/README.md +++ b/README.md @@ -53,4 +53,4 @@ Results will change as the underlying models improve. A fundamental reason for a ## Citing the Cost-of-Capital-Calculator Model -Cost-of-Capital-Calculator (Version 1.4.1)[Source code], https://github.com/PSLmodels/Cost-of-Capital-Calculator +Cost-of-Capital-Calculator (Version 1.5.0)[Source code], https://github.com/PSLmodels/Cost-of-Capital-Calculator diff --git a/docs/book/content/intro.md b/docs/book/content/intro.md index 6fd25005..3e381d1e 100644 --- a/docs/book/content/intro.md +++ b/docs/book/content/intro.md @@ -22,4 +22,4 @@ Results will change as the underlying models improve. A fundamental reason for a ## Citing the Cost-of-Capital-Calculator Model -Cost-of-Capital-Calculator (Version 1.4.1)[Source code], https://github.com/PSLmodels/Cost-of-Capital-Calculator \ No newline at end of file +Cost-of-Capital-Calculator (Version 1.5.0)[Source code], https://github.com/PSLmodels/Cost-of-Capital-Calculator \ No newline at end of file From f164b7305c5e6ccddca7c71abd5b9bcca0992875 Mon Sep 17 00:00:00 2001 From: jdebacker Date: Sun, 15 Sep 2024 17:16:18 -0400 Subject: [PATCH 07/10] update readme and license file: --- LICENSE | 22 ++++++++++++++++++++++ README.md | 12 +++++++----- 2 files changed, 29 insertions(+), 5 deletions(-) create mode 100644 LICENSE diff --git a/LICENSE b/LICENSE new file mode 100644 index 00000000..16bc67c4 --- /dev/null +++ b/LICENSE @@ -0,0 +1,22 @@ +License +======= + +The Cost-of-Capital-Calculator project is in the public domain within the United States. + +Additionally, we waive copyright and related rights in the work worldwide through the CC0 1.0 Universal public domain dedication. + +## CC0 1.0 Universal Summary + +The text below is a human-readable summary of the [Legal Code](https://creativecommons.org/publicdomain/zero/1.0/legalcode): + +_No Copyright_ + +The person who associated a work with this deed has dedicated the work to the public domain by waiving all of his or her rights to the work worldwide under copyright law, including all related and neighboring rights, to the extent allowed by law. + +You can copy, modify, distribute and perform the work, even for commercial purposes, all without asking permission. + +_Other Information_ + +In no way are the patent or trademark rights of any person affected by CC0, nor are the rights that other persons may have in the work or in how the work is used, such as publicity or privacy rights. + +Unless expressly stated otherwise, the person who associated a work with this deed makes no warranties about the work, and disclaims liability for all uses of the work, to the fullest extent permitted by applicable law. When using or citing the work, you should not imply endorsement by the author or the affirmer. \ No newline at end of file diff --git a/README.md b/README.md index 769fae48..ddcac34c 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,10 @@ -[![PSL cataloged](https://img.shields.io/badge/PSL-cataloged-a0a0a0.svg)](https://www.PSLmodels.org) -[![Python 3.9](https://img.shields.io/badge/python-3.9-blue.svg)](https://www.python.org/downloads/release/python-3916/) -[![Python 3.10](https://img.shields.io/badge/python-3.10-blue.svg)](https://www.python.org/downloads/release/python-3108/) -[![Build Status](https://travis-ci.org/PSLmodels/Cost-of-Capital-Calculator.svg?branch=master)](https://travis-ci.org/PSLmodels/Cost-of-Capital-Calculator) -[![codecov](https://codecov.io/gh/PSLmodels/Cost-of-Capital-Calculator/branch/master/graph/badge.svg?token=vOrtCdGu1c)](https://codecov.io/gh/PSLmodels/Cost-of-Capital-Calculator) + + +| | | +| --- | --- | +| Org | [![PSL cataloged](https://img.shields.io/badge/PSL-cataloged-a0a0a0.svg)](https://www.PSLmodels.org) [![OS License: CCO-1.0](https://img.shields.io/badge/OS%20License-CCO%201.0-yellow)](https://github.com/PSLmodels/Cost-of-Capital-Calculator/blob/master/LICENSE) [![Jupyter Book Badge](https://jupyterbook.org/badge.svg)](https://ccc.pslmodels.org) | +| Package | [![Python 3.10](https://img.shields.io/badge/python-3.10-blue.svg)](https://www.python.org/downloads/release/python-3108/) [![Python 3.11](https://img.shields.io/badge/python-3.11-blue.svg)](https://www.python.org/downloads/release/python-3118/) [![Python 3.12](https://img.shields.io/badge/python-3.12-blue.svg)](https://www.python.org/downloads/release/python-3128/) [![PyPI Latest Release](https://img.shields.io/pypi/v/cost-of-capital-calculator.svg)](https://pypi.org/project/cost-of-capital-calculator/) [![PyPI Downloads](https://img.shields.io/pypi/dm/cost-of-capital-calculator.svg?label=PyPI%20downloads)](https://pypi.org/project/cost-of-capital-calculator/) [![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black) | +| Testing | ![example event parameter](https://github.com/PSLmodels/Cost-of-Capital-Calculator/actions/workflows/build_and_test.yml/badge.svg?branch=master) ![example event parameter](https://github.com/PSLmodels/Cost-of-Capital-Calculator/actions/workflows/deploy_docs.yml/badge.svg?branch=master) ![example event parameter](https://github.com/PSLmodels/Cost-of-Capital-Calculator/actions/workflows/check_black.yml/badge.svg?branch=master) [![Codecov](https://codecov.io/gh/PSLmodels/Cost-of-Capital-Calculator/branch/master/graph/badge.svg)](https://codecov.io/gh/PSLmodels/Cost-of-Capital-Calculator) | # Cost-of-Capital-Calculator Cost-of-Capital-Calculator is a model that can be used to evaluate the effect of US federal taxes on the investment incentives of corporate and non-corporate businesses. Specifically, Cost-of-Capital-Calculator uses data on the business assets and financial policy, as well as microdata on individual tax filers, to compute marginal effective tax rates on new investments. In modeling the effects of changes to the individual income tax code, Cost-of-Capital-Calculator works with [Tax-Calculator](https://github.com/PSLmodels/tax-calculator), another open-source model of US federal tax policy. Cost-of-Capital-Calculator is written in Python, an interpreted language that can execute on Windows, Mac, or Linux. From 78302ffe37bebc0d8663cdea7f0477c1c34c4778 Mon Sep 17 00:00:00 2001 From: jdebacker Date: Sun, 15 Sep 2024 18:00:34 -0400 Subject: [PATCH 08/10] update expected files --- example_output/baseline_byasset_expected.csv | 456 +++++++++--------- .../baseline_byindustry_expected.csv | 308 ++++++------ example_output/changed_byasset_expected.csv | 382 +++++++-------- .../changed_byindustry_expected.csv | 308 ++++++------ example_output/reform_byasset_expected.csv | 456 +++++++++--------- example_output/reform_byindustry_expected.csv | 308 ++++++------ 6 files changed, 1109 insertions(+), 1109 deletions(-) diff --git a/example_output/baseline_byasset_expected.csv b/example_output/baseline_byasset_expected.csv index 2a7994cf..55bf0651 100644 --- a/example_output/baseline_byasset_expected.csv +++ b/example_output/baseline_byasset_expected.csv @@ -1,229 +1,229 @@ ,index,Y,asset_name,assets,bea_asset_code,delta,eatr_d,eatr_e,eatr_mix,major_asset_group,metr_d,metr_e,metr_mix,mettr_d,mettr_e,mettr_mix,minor_asset_group,rho_d,rho_e,rho_mix,tax_treat,tax_wedge_d,tax_wedge_e,tax_wedge_mix,ucc_d,ucc_e,ucc_mix,z_d,z_e,z_mix -0,0,3.00000,Prepackaged software,72268924051.90823,ENS1,0.55000,0.09899,0.14910,0.13307,Equipment,-0.37858,0.00000,-0.08871,-0.05443,0.09137,0.05720,Computers and Software,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.58772,0.60800,0.60151,1.00000,1.00000,1.00000 -1,1,3.00000,Custom software,197240164682.67053,ENS2,0.33000,0.09899,0.14910,0.13307,Equipment,-0.37858,0.00000,-0.08871,-0.05443,0.09137,0.05720,Computers and Software,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.36772,0.38800,0.38151,1.00000,1.00000,1.00000 -2,2,5.00000,Mainframes,17413293619.14563,EP1A,0.46330,0.09899,0.14910,0.13307,Equipment,-0.37858,-0.00000,-0.08871,-0.05443,0.09137,0.05720,Computers and Software,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.50102,0.52130,0.51481,1.00000,1.00000,1.00000 -3,3,5.00000,PCs,53550810952.93879,EP1B,0.46330,0.09899,0.14910,0.13307,Equipment,-0.37858,-0.00000,-0.08871,-0.05443,0.09137,0.05720,Computers and Software,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.50102,0.52130,0.51481,1.00000,1.00000,1.00000 -4,4,5.00000,DASDs,0.00000,EP1C,0.46330,0.09899,0.14910,0.13307,Equipment,-0.37858,0.00000,-0.08871,-0.05443,0.09137,0.05720,Computers and Software,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.50102,0.52130,0.51481,1.00000,1.00000,1.00000 -5,5,5.00000,Printers,9260043911.05631,EP1D,0.46330,0.09899,0.14910,0.13307,Equipment,-0.37858,-0.00000,-0.08871,-0.05443,0.09137,0.05720,Computers and Software,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.50102,0.52130,0.51481,1.00000,1.00000,1.00000 -6,6,5.00000,Terminals,12396994618.63852,EP1E,0.46330,0.09899,0.14910,0.13307,Equipment,-0.37858,-0.00000,-0.08871,-0.05443,0.09137,0.05720,Computers and Software,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.50102,0.52130,0.51481,1.00000,1.00000,1.00000 -7,7,5.00000,Tape drives,0.00000,EP1F,0.46330,0.09899,0.14910,0.13307,Equipment,-0.37858,0.00000,-0.08871,-0.05443,0.09137,0.05720,Computers and Software,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.50102,0.52130,0.51481,1.00000,1.00000,1.00000 -8,8,5.00000,Storage devices,7998988409.07232,EP1G,0.46330,0.09899,0.14910,0.13307,Equipment,-0.37858,-0.00000,-0.08871,-0.05443,0.09137,0.05720,Computers and Software,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.50102,0.52130,0.51481,1.00000,1.00000,1.00000 -9,9,5.00000,System integrators,28310184525.09714,EP1H,0.46330,0.09899,0.14910,0.13307,Equipment,-0.37858,-0.00000,-0.08871,-0.05443,0.09137,0.05720,Computers and Software,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.50102,0.52130,0.51481,1.00000,1.00000,1.00000 -10,10,7.00000,Special industrial machinery,277678587239.93805,EI40,0.10310,0.09899,0.14910,0.13307,Equipment,-0.37858,0.00000,-0.08871,-0.05443,0.09137,0.05720,Industrial Machinery,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.14082,0.16110,0.15461,1.00000,1.00000,1.00000 -11,11,7.00000,General industrial equipment,476419502165.16602,EI50,0.10720,0.09899,0.14910,0.13307,Equipment,-0.37858,-0.00000,-0.08871,-0.05443,0.09137,0.05720,Industrial Machinery,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.14492,0.16520,0.15871,1.00000,1.00000,1.00000 -12,12,5.00000,Office and accounting equipment,7268611167.00189,EP12,0.31190,0.09899,0.14910,0.13307,Equipment,-0.37858,-0.00000,-0.08871,-0.05443,0.09137,0.05720,Instruments and Communications Equipment,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.34962,0.36990,0.36341,1.00000,1.00000,1.00000 -13,13,7.00000,Communications,498335724804.03143,EP20,0.11290,0.09899,0.14910,0.13307,Equipment,-0.37858,-0.00000,-0.08871,-0.05443,0.09137,0.05720,Instruments and Communications Equipment,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.15062,0.17090,0.16441,1.00000,1.00000,1.00000 -14,14,5.00000,Photocopy and related equipment,25020946205.42981,EP31,0.18000,0.09899,0.14910,0.13307,Equipment,-0.37858,0.00000,-0.08871,-0.05443,0.09137,0.05720,Instruments and Communications Equipment,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.21772,0.23800,0.23151,1.00000,1.00000,1.00000 -15,15,7.00000,Nonelectro medical instruments,133227504585.58267,EP34,0.13500,0.09899,0.14910,0.13307,Equipment,-0.37858,-0.00000,-0.08871,-0.05443,0.09137,0.05720,Instruments and Communications Equipment,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.17272,0.19300,0.18651,1.00000,1.00000,1.00000 -16,16,7.00000,Electro medical instruments,75049828222.78802,EP35,0.13500,0.09899,0.14910,0.13307,Equipment,-0.37858,-0.00000,-0.08871,-0.05443,0.09137,0.05720,Instruments and Communications Equipment,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.17272,0.19300,0.18651,1.00000,1.00000,1.00000 -17,17,7.00000,Nonmedical instruments,108363933020.24872,EP36,0.13500,0.09899,0.14910,0.13307,Equipment,-0.37858,-0.00000,-0.08871,-0.05443,0.09137,0.05720,Instruments and Communications Equipment,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.17272,0.19300,0.18651,1.00000,1.00000,1.00000 -18,18,5.00000,Household furniture,8900871527.19684,EO11,0.13750,0.09899,0.14910,0.13307,Equipment,-0.37858,-0.00000,-0.08871,-0.05443,0.09137,0.05720,Office and Residential Equipment,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.17522,0.19550,0.18901,1.00000,1.00000,1.00000 -19,19,7.00000,Other furniture,201600171017.50803,EO12,0.11790,0.09899,0.14910,0.13307,Equipment,-0.37858,-0.00000,-0.08871,-0.05443,0.09137,0.05720,Office and Residential Equipment,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.15562,0.17590,0.16941,1.00000,1.00000,1.00000 -20,20,5.00000,Household appliances,2759304252.31458,EO71,0.16500,0.09899,0.14910,0.13307,Equipment,-0.37858,-0.00000,-0.08871,-0.05443,0.09137,0.05720,Office and Residential Equipment,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.20272,0.22300,0.21651,1.00000,1.00000,1.00000 -21,21,7.00000,Service industry machinery,100661650547.22247,EO60,0.15280,0.09899,0.14910,0.13307,Equipment,-0.37858,-0.00000,-0.08871,-0.05443,0.09137,0.05720,Other Equipment,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.19052,0.21080,0.20431,1.00000,1.00000,1.00000 -22,22,7.00000,Other electrical,16821590672.86298,EO72,0.18340,0.09899,0.14910,0.13307,Equipment,-0.37858,-0.00000,-0.08871,-0.05443,0.09137,0.05720,Other Equipment,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.22112,0.24140,0.23491,1.00000,1.00000,1.00000 -23,23,7.00000,Other,219586535058.33942,EO80,0.14730,0.09899,0.14910,0.13307,Equipment,-0.37858,0.00000,-0.08871,-0.05443,0.09137,0.05720,Other Equipment,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.18502,0.20530,0.19881,1.00000,1.00000,1.00000 -24,24,5.00000,Nuclear fuel,6455272413.33420,EI11,0.25000,0.09899,0.14910,0.13307,Equipment,-0.37858,-0.00000,-0.08871,-0.05443,0.09137,0.05720,Other Industrial Equipment,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.28772,0.30800,0.30151,1.00000,1.00000,1.00000 -25,25,7.00000,Other fabricated metals,117546642592.42761,EI12,0.09170,0.09899,0.14910,0.13307,Equipment,-0.37858,-0.00000,-0.08871,-0.05443,0.09137,0.05720,Other Industrial Equipment,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.12942,0.14970,0.14321,1.00000,1.00000,1.00000 -26,26,7.00000,Metalworking machinery,218890188223.75763,EI30,0.12250,0.09899,0.14910,0.13307,Equipment,-0.37858,-0.00000,-0.08871,-0.05443,0.09137,0.05720,Other Industrial Equipment,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.16022,0.18050,0.17401,1.00000,1.00000,1.00000 -27,27,15.00000,Electric transmission and distribution,423453356310.35504,EI60,0.05000,0.09899,0.14910,0.13307,Equipment,-0.37858,0.00000,-0.08871,-0.05443,0.09137,0.05720,Other Industrial Equipment,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.08772,0.10800,0.10151,1.00000,1.00000,1.00000 -28,28,7.00000,Farm tractors,24563500689.01743,EO21,0.14520,0.09899,0.14910,0.13307,Equipment,-0.37858,-0.00000,-0.08871,-0.05443,0.09137,0.05720,Other Industrial Equipment,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.18292,0.20320,0.19671,1.00000,1.00000,1.00000 -29,29,5.00000,Construction tractors,9895536358.92141,EO22,0.16330,0.09899,0.14910,0.13307,Equipment,-0.37858,-0.00000,-0.08871,-0.05443,0.09137,0.05720,Other Industrial Equipment,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.20102,0.22130,0.21481,1.00000,1.00000,1.00000 -30,30,7.00000,Other agricultural machinery,46750113836.64255,EO30,0.11790,0.09899,0.14910,0.13307,Equipment,-0.37858,-0.00000,-0.08871,-0.05443,0.09137,0.05720,Other Industrial Equipment,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.15562,0.17590,0.16941,1.00000,1.00000,1.00000 -31,31,5.00000,Other construction machinery,123582273311.10860,EO40,0.15500,0.09899,0.14910,0.13307,Equipment,-0.37858,-0.00000,-0.08871,-0.05443,0.09137,0.05720,Other Industrial Equipment,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.19272,0.21300,0.20651,1.00000,1.00000,1.00000 -32,32,7.00000,Mining and oilfield machinery,84858812348.82649,EO50,0.15000,0.09899,0.14910,0.13307,Equipment,-0.37858,0.00000,-0.08871,-0.05443,0.09137,0.05720,Other Industrial Equipment,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.18772,0.20800,0.20151,1.00000,1.00000,1.00000 -33,33,15.00000,Steam engines,91645013950.18124,EI21,0.05160,0.09899,0.14910,0.13307,Equipment,-0.37858,0.00000,-0.08871,-0.05443,0.09137,0.05720,Transportation Equipment,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.08932,0.10960,0.10311,1.00000,1.00000,1.00000 -34,34,7.00000,Internal combustion engines,12363020746.63129,EI22,0.20630,0.09899,0.14910,0.13307,Equipment,-0.37858,0.00000,-0.08871,-0.05443,0.09137,0.05720,Transportation Equipment,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.24402,0.26430,0.25781,1.00000,1.00000,1.00000 -35,35,5.00000,Light trucks (including utility vehicles),167619978534.97446,ET11,0.17250,0.09899,0.14910,0.13307,Equipment,-0.37858,-0.00000,-0.08871,-0.05443,0.09137,0.05720,Transportation Equipment,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.21022,0.23050,0.22401,1.00000,1.00000,1.00000 -36,36,5.00000,"Other trucks, buses and truck trailers",119548128283.18022,ET12,0.17250,0.09899,0.14910,0.13307,Equipment,-0.37858,-0.00000,-0.08871,-0.05443,0.09137,0.05720,Transportation Equipment,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.21022,0.23050,0.22401,1.00000,1.00000,1.00000 -37,37,5.00000,Autos,136239832216.63460,ET20,0.33330,0.09899,0.14910,0.13307,Equipment,-0.37858,-0.00000,-0.08871,-0.05443,0.09137,0.05720,Transportation Equipment,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.37102,0.39130,0.38481,1.00000,1.00000,1.00000 -38,38,5.00000,Aircraft,265993981320.40247,ET30,0.08590,0.09899,0.14910,0.13307,Equipment,-0.37858,0.00000,-0.08871,-0.05443,0.09137,0.05720,Transportation Equipment,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.12362,0.14390,0.13741,1.00000,1.00000,1.00000 -39,39,10.00000,Ships and boats,62839620239.51455,ET40,0.06110,0.09899,0.14910,0.13307,Equipment,-0.37858,0.00000,-0.08871,-0.05443,0.09137,0.05720,Transportation Equipment,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.09882,0.11910,0.11261,1.00000,1.00000,1.00000 -40,40,7.00000,Railroad equipment,109045484545.80264,ET50,0.05890,0.09899,0.14910,0.13307,Equipment,-0.37858,-0.00000,-0.08871,-0.05443,0.09137,0.05720,Transportation Equipment,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.09662,0.11690,0.11041,1.00000,1.00000,1.00000 -41,41,15.00000,Theatrical movies,157833135207.60001,AE10,0.09300,0.09899,0.14910,0.13307,Intellectual Property,-0.37858,0.00000,-0.08871,-0.05443,0.09137,0.05720,Intellectual Property,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.13072,0.15100,0.14451,1.00000,1.00000,1.00000 -42,42,15.00000,Long-lived television programs,144610873940.84000,AE20,0.16800,0.09899,0.14910,0.13307,Intellectual Property,-0.37858,0.00000,-0.08871,-0.05443,0.09137,0.05720,Intellectual Property,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.20572,0.22600,0.21951,1.00000,1.00000,1.00000 -43,43,15.00000,Books,67646468506.22700,AE30,0.12100,0.09899,0.14910,0.13307,Intellectual Property,-0.37858,-0.00000,-0.08871,-0.05443,0.09137,0.05720,Intellectual Property,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.15872,0.17900,0.17251,1.00000,1.00000,1.00000 -44,44,15.00000,Music,15406510045.27200,AE40,0.26700,0.09899,0.14910,0.13307,Intellectual Property,-0.37858,-0.00000,-0.08871,-0.05443,0.09137,0.05720,Intellectual Property,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.30472,0.32500,0.31851,1.00000,1.00000,1.00000 -45,45,15.00000,Other entertainment originals,15413496806.95360,AE50,0.10900,0.09899,0.14910,0.13307,Intellectual Property,-0.37858,-0.00000,-0.08871,-0.05443,0.09137,0.05720,Intellectual Property,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.14672,0.16700,0.16051,1.00000,1.00000,1.00000 -46,46,3.00000,Own account software,198787829234.93384,ENS3,0.33000,0.09899,0.14910,0.13307,Intellectual Property,-0.37858,-0.00000,-0.08871,-0.05443,0.09137,0.05720,Intellectual Property,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.36772,0.38800,0.38151,1.00000,1.00000,1.00000 -47,47,5.00000,Pharmaceutical and medicine manufacturing,396355667406.76001,RD11,0.10000,0.09899,0.14910,0.13307,Intellectual Property,-0.37858,0.00000,-0.08871,-0.05443,0.09137,0.05720,Intellectual Property,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.13772,0.15800,0.15151,1.00000,1.00000,1.00000 -48,48,5.00000,"Chemical manufacturing, ex. pharma and med",54399224281.87000,RD12,0.16000,0.09899,0.14910,0.13307,Intellectual Property,-0.37858,0.00000,-0.08871,-0.05443,0.09137,0.05720,Intellectual Property,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.19772,0.21800,0.21151,1.00000,1.00000,1.00000 -49,49,5.00000,Computers and peripheral equipment manufacturing,9567048384.52970,RD21,0.40000,0.09899,0.14910,0.13307,Intellectual Property,-0.37858,-0.00000,-0.08871,-0.05443,0.09137,0.05720,Intellectual Property,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.43772,0.45800,0.45151,1.00000,1.00000,1.00000 -50,50,5.00000,Communications equipment manufacturing,38393784818.37000,RD22,0.27000,0.09899,0.14910,0.13307,Intellectual Property,-0.37858,-0.00000,-0.08871,-0.05443,0.09137,0.05720,Intellectual Property,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.30772,0.32800,0.32151,1.00000,1.00000,1.00000 -51,51,5.00000,Semiconductor and other component manufacturing,83580996525.54500,RD23,0.25000,0.09899,0.14910,0.13307,Intellectual Property,-0.37858,-0.00000,-0.08871,-0.05443,0.09137,0.05720,Intellectual Property,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.28772,0.30800,0.30151,1.00000,1.00000,1.00000 -52,52,5.00000,Navigational and other instruments manufacturing,30814085766.70850,RD24,0.29000,0.09899,0.14910,0.13307,Intellectual Property,-0.37858,-0.00000,-0.08871,-0.05443,0.09137,0.05720,Intellectual Property,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.32772,0.34800,0.34151,1.00000,1.00000,1.00000 -53,53,5.00000,"Other computer and electronic manufacturing, n.e.c.",1636224416.52115,RD25,0.40000,0.09899,0.14910,0.13307,Intellectual Property,-0.37858,-0.00000,-0.08871,-0.05443,0.09137,0.05720,Intellectual Property,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.43772,0.45800,0.45151,1.00000,1.00000,1.00000 -54,54,7.00000,Motor vehicles and parts manufacturing,39313793397.90000,RD31,0.31000,0.09899,0.14910,0.13307,Intellectual Property,-0.37858,-0.00000,-0.08871,-0.05443,0.09137,0.05720,Intellectual Property,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.34772,0.36800,0.36151,1.00000,1.00000,1.00000 -55,55,7.00000,Aerospace products and parts manufacturing,33211530575.70000,RD32,0.22000,0.09899,0.14910,0.13307,Intellectual Property,-0.37858,0.00000,-0.08871,-0.05443,0.09137,0.05720,Intellectual Property,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.25772,0.27800,0.27151,1.00000,1.00000,1.00000 -56,56,3.00000,Software publishers,20657269549.44800,RD40,0.22000,0.09899,0.14910,0.13307,Intellectual Property,-0.37858,0.00000,-0.08871,-0.05443,0.09137,0.05720,Intellectual Property,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.25772,0.27800,0.27151,1.00000,1.00000,1.00000 -57,57,5.00000,Financial and real estate services,6097212063.91973,RD50,0.16000,0.09899,0.14910,0.13307,Intellectual Property,-0.37858,0.00000,-0.08871,-0.05443,0.09137,0.05720,Intellectual Property,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.19772,0.21800,0.21151,1.00000,1.00000,1.00000 -58,58,3.00000,Computer systems design and related services,6318822870.57000,RD60,0.36000,0.09899,0.14910,0.13307,Intellectual Property,-0.37858,-0.00000,-0.08871,-0.05443,0.09137,0.05720,Intellectual Property,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.39772,0.41800,0.41151,1.00000,1.00000,1.00000 -59,59,5.00000,Scientific research and development services,22814623102.40300,RD70,0.16000,0.09899,0.14910,0.13307,Intellectual Property,-0.37858,0.00000,-0.08871,-0.05443,0.09137,0.05720,Intellectual Property,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.19772,0.21800,0.21151,1.00000,1.00000,1.00000 -60,60,5.00000,"All other nonmanufacturing, n.e.c.",86239268420.74191,RD80,0.16000,0.09899,0.14910,0.13307,Intellectual Property,-0.37858,0.00000,-0.08871,-0.05443,0.09137,0.05720,Intellectual Property,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.19772,0.21800,0.21151,1.00000,1.00000,1.00000 -61,61,3.00000,Private universities and colleges,8714364638.94000,RD91,0.16000,0.09899,0.14910,0.13307,Intellectual Property,-0.37858,0.00000,-0.08871,-0.05443,0.09137,0.05720,Intellectual Property,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.19772,0.21800,0.21151,1.00000,1.00000,1.00000 -62,62,3.00000,Other nonprofit institutions,36718605375.19618,RD92,0.16000,0.09899,0.14910,0.13307,Intellectual Property,-0.37858,0.00000,-0.08871,-0.05443,0.09137,0.05720,Intellectual Property,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.19772,0.21800,0.21151,1.00000,1.00000,1.00000 -63,63,7.00000,Other manufacturing,207322515563.45129,RDOM,0.16000,0.09899,0.14910,0.13307,Intellectual Property,-0.37858,0.00000,-0.08871,-0.05443,0.09137,0.05720,Intellectual Property,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.19772,0.21800,0.21151,1.00000,1.00000,1.00000 -64,64,100.00000,Inventories,1540550422351.17505,INV,0.00000,0.14653,0.21743,0.19476,Inventories,-0.04515,0.22974,0.16460,0.20060,0.30012,0.27656,Inventories,0.04975,0.07530,0.06713,corporate,0.00998,0.02260,0.01857,0.04975,0.07530,0.06713,0.00000,0.00000,0.00000 -65,65,100.00000,Land,3586506468628.54834,LAND,0.00000,0.13860,0.21000,0.18715,Land,-0.08908,0.21000,0.13992,0.16700,0.28218,0.25519,Land,0.04775,0.07342,0.06520,corporate,0.00797,0.02072,0.01664,0.04775,0.07342,0.06520,0.00000,0.00000,0.00000 -66,66,5.00000,Petroleum and natural gas,1033008886591.34497,SM01,0.07510,0.09899,0.14910,0.13307,Structures,-0.37858,-0.00000,-0.08871,-0.05443,0.09137,0.05720,Mining and Drilling Structures,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.11282,0.13310,0.12661,1.00000,1.00000,1.00000 -67,67,7.00000,Mining,82930242550.85606,SM02,0.04500,0.09899,0.14910,0.13307,Structures,-0.37858,0.00000,-0.08871,-0.05443,0.09137,0.05720,Mining and Drilling Structures,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.08272,0.10300,0.09651,1.00000,1.00000,1.00000 -68,68,15.00000,Communication,578746604536.45056,SU20,0.02370,0.09899,0.14910,0.13307,Structures,-0.37858,-0.00000,-0.08871,-0.05443,0.09137,0.05720,Mining and Drilling Structures,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.06142,0.08170,0.07521,1.00000,1.00000,1.00000 -69,69,5.00000,Gas,365538319906.67950,SU40,0.07510,0.09899,0.14910,0.13307,Structures,-0.37858,-0.00000,-0.08871,-0.05443,0.09137,0.05720,Mining and Drilling Structures,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.11282,0.13310,0.12661,1.00000,1.00000,1.00000 -70,70,5.00000,Petroleum pipelines,112623061581.40628,SU50,0.02370,0.09899,0.14910,0.13307,Structures,-0.37858,0.00000,-0.08871,-0.05443,0.09137,0.05720,Mining and Drilling Structures,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.06142,0.08170,0.07521,1.00000,1.00000,1.00000 -71,71,39.00000,Religious,100591058771.64963,SB10,0.01880,0.12835,0.19589,0.17412,Structures,-0.15167,0.16960,0.09407,0.11913,0.24547,0.21548,Nonresidential Buildings,0.04515,0.06985,0.06190,corporate,0.00538,0.01715,0.01334,0.06395,0.08865,0.08070,0.50534,0.41976,0.44395 -72,72,39.00000,Educational and vocational,282731611173.25391,SB20,0.01880,0.13350,0.20336,0.18087,Structures,-0.11935,0.19148,0.11841,0.14385,0.26535,0.23656,Nonresidential Buildings,0.04646,0.07174,0.06361,corporate,0.00668,0.01904,0.01505,0.06526,0.09054,0.08241,0.41857,0.32717,0.35251 -73,73,39.00000,Hospitals,321465607211.49677,SB31,0.01880,0.13350,0.20336,0.18087,Structures,-0.11935,0.19148,0.11841,0.14385,0.26535,0.23656,Nonresidential Buildings,0.04646,0.07174,0.06361,corporate,0.00668,0.01904,0.01505,0.06526,0.09054,0.08241,0.41857,0.32717,0.35251 -74,74,39.00000,Special care,70115662530.64020,SB32,0.01880,0.13350,0.20336,0.18087,Structures,-0.11935,0.19148,0.11841,0.14385,0.26535,0.23656,Nonresidential Buildings,0.04646,0.07174,0.06361,corporate,0.00668,0.01904,0.01505,0.06526,0.09054,0.08241,0.41857,0.32717,0.35251 -75,75,39.00000,Lodging,171809464720.12051,SB41,0.02810,0.13918,0.20993,0.18719,Structures,-0.08575,0.20980,0.14004,0.16954,0.28200,0.25530,Nonresidential Buildings,0.04789,0.07340,0.06521,corporate,0.00812,0.02070,0.01665,0.07599,0.10150,0.09331,0.41857,0.32717,0.35251 -76,76,39.00000,Air transportation,26676130902.06076,SB43,0.02370,0.13649,0.20682,0.18420,Structures,-0.10139,0.20124,0.12994,0.15758,0.27422,0.24655,Nonresidential Buildings,0.04721,0.07261,0.06446,corporate,0.00744,0.01991,0.01589,0.07091,0.09631,0.08816,0.41857,0.32717,0.35251 -77,77,39.00000,Other transportation,3546598618.33835,SB45,0.02370,0.13649,0.20682,0.18420,Structures,-0.10139,0.20124,0.12994,0.15758,0.27422,0.24655,Nonresidential Buildings,0.04721,0.07261,0.06446,corporate,0.00744,0.01991,0.01589,0.07091,0.09631,0.08816,0.41857,0.32717,0.35251 -78,78,39.00000,Warehouses,281416771190.75391,SC01,0.02250,0.13576,0.20597,0.18338,Structures,-0.10574,0.19887,0.12714,0.15426,0.27207,0.24413,Nonresidential Buildings,0.04703,0.07240,0.06425,corporate,0.00725,0.01970,0.01568,0.06953,0.09490,0.08675,0.41857,0.32717,0.35251 -79,79,39.00000,Other commercial,342925648724.17450,SC02,0.02620,0.13802,0.20859,0.18590,Structures,-0.09245,0.20613,0.13571,0.16442,0.27866,0.25155,Nonresidential Buildings,0.04760,0.07306,0.06489,corporate,0.00783,0.02036,0.01632,0.07380,0.09926,0.09109,0.41857,0.32717,0.35251 -80,80,39.00000,Multimerchandise shopping,424453104849.45978,SC03,0.02620,0.13802,0.20859,0.18590,Structures,-0.09245,0.20613,0.13571,0.16442,0.27866,0.25155,Nonresidential Buildings,0.04760,0.07306,0.06489,corporate,0.00783,0.02036,0.01632,0.07380,0.09926,0.09109,0.41857,0.32717,0.35251 -81,81,39.00000,Food and beverage establishments,177715537880.96967,SC04,0.02620,0.13802,0.20859,0.18590,Structures,-0.09245,0.20613,0.13571,0.16442,0.27866,0.25155,Nonresidential Buildings,0.04760,0.07306,0.06489,corporate,0.00783,0.02036,0.01632,0.07380,0.09926,0.09109,0.41857,0.32717,0.35251 -82,82,39.00000,Manufacturing,1098167248468.80334,SI00,0.03140,0.14119,0.21226,0.18943,Structures,-0.07431,0.21611,0.14747,0.17829,0.28773,0.26173,Nonresidential Buildings,0.04840,0.07399,0.06578,corporate,0.00863,0.02129,0.01722,0.07980,0.10539,0.09718,0.41857,0.32717,0.35251 -83,83,39.00000,Public safety,15488160357.00830,SO03,0.02370,0.13649,0.20682,0.18420,Structures,-0.10139,0.20124,0.12994,0.15758,0.27422,0.24655,Nonresidential Buildings,0.04721,0.07261,0.06446,corporate,0.00744,0.01991,0.01589,0.07091,0.09631,0.08816,0.41857,0.32717,0.35251 -84,84,39.00000,Office,1125363275874.33521,SOO1,0.02470,0.13710,0.20753,0.18488,Structures,-0.09780,0.20320,0.13226,0.16033,0.27600,0.24856,Nonresidential Buildings,0.04737,0.07279,0.06463,corporate,0.00759,0.02009,0.01606,0.07207,0.09749,0.08933,0.41857,0.32717,0.35251 -85,85,39.00000,Medical buildings,108684928850.30258,SOO2,0.02470,0.13710,0.20753,0.18488,Structures,-0.09780,0.20320,0.13226,0.16033,0.27600,0.24856,Nonresidential Buildings,0.04737,0.07279,0.06463,corporate,0.00759,0.02009,0.01606,0.07207,0.09749,0.08933,0.41857,0.32717,0.35251 -86,86,7.00000,Amusement and recreation,163173271952.98538,SB42,0.03000,0.09899,0.14910,0.13307,Structures,-0.37858,-0.00000,-0.08871,-0.05443,0.09137,0.05720,Other Structures,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.06772,0.08800,0.08151,1.00000,1.00000,1.00000 -87,87,39.00000,Local transit structures,9253082151.44273,SB44,0.02370,0.13649,0.20682,0.18420,Structures,-0.10139,0.20124,0.12994,0.15758,0.27422,0.24655,Other Structures,0.04721,0.07261,0.06446,corporate,0.00744,0.01991,0.01589,0.07091,0.09631,0.08816,0.41857,0.32717,0.35251 -88,88,5.00000,Other land transportation,7047759108.81892,SB46,0.02370,0.09899,0.14910,0.13307,Structures,-0.37858,0.00000,-0.08871,-0.05443,0.09137,0.05720,Other Structures,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.06142,0.08170,0.07521,1.00000,1.00000,1.00000 -89,89,20.00000,Farm,109520310583.21701,SN00,0.02390,0.09899,0.14910,0.13307,Structures,-0.37858,0.00000,-0.08871,-0.05443,0.09137,0.05720,Other Structures,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.06162,0.08190,0.07541,1.00000,1.00000,1.00000 -90,90,20.00000,Water supply,41285680278.03433,SO01,0.02250,0.09899,0.14910,0.13307,Structures,-0.37858,-0.00000,-0.08871,-0.05443,0.09137,0.05720,Other Structures,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.06022,0.08050,0.07401,1.00000,1.00000,1.00000 -91,91,20.00000,Sewage and waste disposal,37655287429.62462,SO02,0.02250,0.09899,0.14910,0.13307,Structures,-0.37858,0.00000,-0.08871,-0.05443,0.09137,0.05720,Other Structures,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.06022,0.08050,0.07401,1.00000,1.00000,1.00000 -92,92,15.00000,Highway and conservation and development,22901934534.09797,SO04,0.02250,0.09899,0.14910,0.13307,Structures,-0.37858,0.00000,-0.08871,-0.05443,0.09137,0.05720,Other Structures,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.06022,0.08050,0.07401,1.00000,1.00000,1.00000 -93,93,7.00000,Mobile structures,4708544169.52466,SOMO,0.05560,0.09899,0.14910,0.13307,Structures,-0.37858,0.00000,-0.08871,-0.05443,0.09137,0.05720,Other Structures,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.09332,0.11360,0.10711,1.00000,1.00000,1.00000 -94,94,20.00000,Other railroad,135810301223.62192,SU11,0.01760,0.09899,0.14910,0.13307,Structures,-0.37858,-0.00000,-0.08871,-0.05443,0.09137,0.05720,Other Structures,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.05532,0.07560,0.06911,1.00000,1.00000,1.00000 -95,95,7.00000,Track replacement,166460169103.56049,SU12,0.02490,0.09899,0.14910,0.13307,Structures,-0.37858,-0.00000,-0.08871,-0.05443,0.09137,0.05720,Other Structures,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.06262,0.08290,0.07641,1.00000,1.00000,1.00000 -96,96,15.00000,Electric,1052404941676.51135,SU30,0.02110,0.09899,0.14910,0.13307,Structures,-0.37858,0.00000,-0.08871,-0.05443,0.09137,0.05720,Other Structures,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.05882,0.07910,0.07261,1.00000,1.00000,1.00000 -97,97,5.00000,Wind and solar,119300186300.69254,SU60,0.03030,0.09899,0.14910,0.13307,Structures,-0.37858,0.00000,-0.08871,-0.05443,0.09137,0.05720,Other Structures,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.06802,0.08830,0.08181,1.00000,1.00000,1.00000 -98,98,27.50000,Residential,333776621894.00000,RES,0.01631,0.12609,0.19380,0.17191,Structures,-0.16644,0.16325,0.08583,0.10783,0.23970,0.20835,Residential Buildings,0.04458,0.06932,0.06135,corporate,0.00481,0.01661,0.01278,0.06089,0.08563,0.07766,0.52240,0.42718,0.45450 -99,99,3.00000,Prepackaged software,22158075947.24139,ENS1,0.55000,0.17937,0.14875,0.15763,Equipment,0.08380,0.00000,0.01917,0.08380,0.00000,0.01917,Computers and Software,0.03827,0.05270,0.04851,non-corporate,0.00321,0.00000,0.00093,0.58827,0.60270,0.59851,1.00000,1.00000,1.00000 -100,100,3.00000,Custom software,60800835314.35992,ENS2,0.33000,0.17937,0.14875,0.15763,Equipment,0.08380,-0.00000,0.01917,0.08380,-0.00000,0.01917,Computers and Software,0.03827,0.05270,0.04851,non-corporate,0.00321,-0.00000,0.00093,0.36827,0.38270,0.37851,1.00000,1.00000,1.00000 -101,101,5.00000,Mainframes,6190706381.18300,EP1A,0.46330,0.17937,0.14875,0.15763,Equipment,0.08380,-0.00000,0.01917,0.08380,-0.00000,0.01917,Computers and Software,0.03827,0.05270,0.04851,non-corporate,0.00321,-0.00000,0.00093,0.50157,0.51600,0.51181,1.00000,1.00000,1.00000 -102,102,5.00000,PCs,20612189046.26059,EP1B,0.46330,0.17937,0.14875,0.15763,Equipment,0.08380,-0.00000,0.01917,0.08380,-0.00000,0.01917,Computers and Software,0.03827,0.05270,0.04851,non-corporate,0.00321,-0.00000,0.00093,0.50157,0.51600,0.51181,1.00000,1.00000,1.00000 -103,103,5.00000,DASDs,0.00000,EP1C,0.46330,0.17937,0.14875,0.15763,Equipment,0.08380,-0.00000,0.01917,0.08380,-0.00000,0.01917,Computers and Software,0.03827,0.05270,0.04851,non-corporate,0.00321,-0.00000,0.00093,0.50157,0.51600,0.51181,1.00000,1.00000,1.00000 -104,104,5.00000,Printers,3876956088.97943,EP1D,0.46330,0.17937,0.14875,0.15763,Equipment,0.08380,-0.00000,0.01917,0.08380,-0.00000,0.01917,Computers and Software,0.03827,0.05270,0.04851,non-corporate,0.00321,-0.00000,0.00093,0.50157,0.51600,0.51181,1.00000,1.00000,1.00000 -105,105,5.00000,Terminals,5141005380.94880,EP1E,0.46330,0.17937,0.14875,0.15763,Equipment,0.08380,-0.00000,0.01917,0.08380,-0.00000,0.01917,Computers and Software,0.03827,0.05270,0.04851,non-corporate,0.00321,-0.00000,0.00093,0.50157,0.51600,0.51181,1.00000,1.00000,1.00000 -106,106,5.00000,Tape drives,0.00000,EP1F,0.46330,0.17937,0.14875,0.15763,Equipment,0.08380,-0.00000,0.01917,0.08380,-0.00000,0.01917,Computers and Software,0.03827,0.05270,0.04851,non-corporate,0.00321,-0.00000,0.00093,0.50157,0.51600,0.51181,1.00000,1.00000,1.00000 -107,107,5.00000,Storage devices,3192011590.92400,EP1G,0.46330,0.17937,0.14875,0.15763,Equipment,0.08380,-0.00000,0.01917,0.08380,-0.00000,0.01917,Computers and Software,0.03827,0.05270,0.04851,non-corporate,0.00321,-0.00000,0.00093,0.50157,0.51600,0.51181,1.00000,1.00000,1.00000 -108,108,5.00000,System integrators,11800815475.28772,EP1H,0.46330,0.17937,0.14875,0.15763,Equipment,0.08380,-0.00000,0.01917,0.08380,-0.00000,0.01917,Computers and Software,0.03827,0.05270,0.04851,non-corporate,0.00321,-0.00000,0.00093,0.50157,0.51600,0.51181,1.00000,1.00000,1.00000 -109,109,7.00000,Special industrial machinery,56031412759.69572,EI40,0.10310,0.17937,0.14875,0.15763,Equipment,0.08380,0.00000,0.01917,0.08380,0.00000,0.01917,Industrial Machinery,0.03827,0.05270,0.04851,non-corporate,0.00321,0.00000,0.00093,0.14137,0.15580,0.15161,1.00000,1.00000,1.00000 -110,110,7.00000,General industrial equipment,114662497838.17902,EI50,0.10720,0.17937,0.14875,0.15763,Equipment,0.08380,-0.00000,0.01917,0.08380,-0.00000,0.01917,Industrial Machinery,0.03827,0.05270,0.04851,non-corporate,0.00321,-0.00000,0.00093,0.14547,0.15990,0.15571,1.00000,1.00000,1.00000 -111,111,5.00000,Office and accounting equipment,2542388832.96892,EP12,0.31190,0.17937,0.14875,0.15763,Equipment,0.08380,-0.00000,0.01917,0.08380,-0.00000,0.01917,Instruments and Communications Equipment,0.03827,0.05270,0.04851,non-corporate,0.00321,-0.00000,0.00093,0.35017,0.36460,0.36041,1.00000,1.00000,1.00000 -112,112,7.00000,Communications,102468863895.39655,EP20,0.11290,0.17937,0.14875,0.15763,Equipment,0.08380,0.00000,0.01917,0.08380,0.00000,0.01917,Instruments and Communications Equipment,0.03827,0.05270,0.04851,non-corporate,0.00321,0.00000,0.00093,0.15117,0.16560,0.16141,1.00000,1.00000,1.00000 -113,113,5.00000,Photocopy and related equipment,10079053795.00768,EP31,0.18000,0.17937,0.14875,0.15763,Equipment,0.08380,-0.00000,0.01917,0.08380,-0.00000,0.01917,Instruments and Communications Equipment,0.03827,0.05270,0.04851,non-corporate,0.00321,-0.00000,0.00093,0.21827,0.23270,0.22851,1.00000,1.00000,1.00000 -114,114,7.00000,Nonelectro medical instruments,111916495412.21930,EP34,0.13500,0.17937,0.14875,0.15763,Equipment,0.08380,0.00000,0.01917,0.08380,0.00000,0.01917,Instruments and Communications Equipment,0.03827,0.05270,0.04851,non-corporate,0.00321,0.00000,0.00093,0.17327,0.18770,0.18351,1.00000,1.00000,1.00000 -115,115,7.00000,Electro medical instruments,65668171777.05855,EP35,0.13500,0.17937,0.14875,0.15763,Equipment,0.08380,0.00000,0.01917,0.08380,0.00000,0.01917,Instruments and Communications Equipment,0.03827,0.05270,0.04851,non-corporate,0.00321,0.00000,0.00093,0.17327,0.18770,0.18351,1.00000,1.00000,1.00000 -116,116,7.00000,Nonmedical instruments,59590066982.74078,EP36,0.13500,0.17937,0.14875,0.15763,Equipment,0.08380,0.00000,0.01917,0.08380,0.00000,0.01917,Instruments and Communications Equipment,0.03827,0.05270,0.04851,non-corporate,0.00321,0.00000,0.00093,0.17327,0.18770,0.18351,1.00000,1.00000,1.00000 -117,117,5.00000,Household furniture,8579128473.70233,EO11,0.13750,0.17937,0.14875,0.15763,Equipment,0.08380,0.00000,0.01917,0.08380,0.00000,0.01917,Office and Residential Equipment,0.03827,0.05270,0.04851,non-corporate,0.00321,0.00000,0.00093,0.17577,0.19020,0.18601,1.00000,1.00000,1.00000 -118,118,7.00000,Other furniture,97670828983.20677,EO12,0.11790,0.17937,0.14875,0.15763,Equipment,0.08380,-0.00000,0.01917,0.08380,-0.00000,0.01917,Office and Residential Equipment,0.03827,0.05270,0.04851,non-corporate,0.00321,-0.00000,0.00093,0.15617,0.17060,0.16641,1.00000,1.00000,1.00000 -119,119,5.00000,Household appliances,2193695747.80152,EO71,0.16500,0.17937,0.14875,0.15763,Equipment,0.08380,0.00000,0.01917,0.08380,0.00000,0.01917,Office and Residential Equipment,0.03827,0.05270,0.04851,non-corporate,0.00321,0.00000,0.00093,0.20327,0.21770,0.21351,1.00000,1.00000,1.00000 -120,120,7.00000,Service industry machinery,66122349452.24888,EO60,0.15280,0.17937,0.14875,0.15763,Equipment,0.08380,0.00000,0.01917,0.08380,0.00000,0.01917,Other Equipment,0.03827,0.05270,0.04851,non-corporate,0.00321,0.00000,0.00093,0.19107,0.20550,0.20131,1.00000,1.00000,1.00000 -121,121,7.00000,Other electrical,3542409326.71975,EO72,0.18340,0.17937,0.14875,0.15763,Equipment,0.08380,0.00000,0.01917,0.08380,0.00000,0.01917,Other Equipment,0.03827,0.05270,0.04851,non-corporate,0.00321,0.00000,0.00093,0.22167,0.23610,0.23191,1.00000,1.00000,1.00000 -122,122,7.00000,Other,106207464937.46689,EO80,0.14730,0.17937,0.14875,0.15763,Equipment,0.08380,0.00000,0.01917,0.08380,0.00000,0.01917,Other Equipment,0.03827,0.05270,0.04851,non-corporate,0.00321,0.00000,0.00093,0.18557,0.20000,0.19581,1.00000,1.00000,1.00000 -123,123,5.00000,Nuclear fuel,357727587.15623,EI11,0.25000,0.17937,0.14875,0.15763,Equipment,0.08380,0.00000,0.01917,0.08380,0.00000,0.01917,Other Industrial Equipment,0.03827,0.05270,0.04851,non-corporate,0.00321,0.00000,0.00093,0.28827,0.30270,0.29851,1.00000,1.00000,1.00000 -124,124,7.00000,Other fabricated metals,36269357406.68746,EI12,0.09170,0.17937,0.14875,0.15763,Equipment,0.08380,0.00000,0.01917,0.08380,0.00000,0.01917,Other Industrial Equipment,0.03827,0.05270,0.04851,non-corporate,0.00321,0.00000,0.00093,0.12997,0.14440,0.14021,1.00000,1.00000,1.00000 -125,125,7.00000,Metalworking machinery,40483811779.61037,EI30,0.12250,0.17937,0.14875,0.15763,Equipment,0.08380,0.00000,0.01917,0.08380,0.00000,0.01917,Other Industrial Equipment,0.03827,0.05270,0.04851,non-corporate,0.00321,0.00000,0.00093,0.16077,0.17520,0.17101,1.00000,1.00000,1.00000 -126,126,15.00000,Electric transmission and distribution,41257755573.28319,EI60,0.05000,0.17937,0.14875,0.15763,Equipment,0.08380,-0.00000,0.01917,0.08380,-0.00000,0.01917,Other Industrial Equipment,0.03827,0.05270,0.04851,non-corporate,0.00321,-0.00000,0.00093,0.08827,0.10270,0.09851,1.00000,1.00000,1.00000 -127,127,7.00000,Farm tractors,30621499311.60472,EO21,0.14520,0.17937,0.14875,0.15763,Equipment,0.08380,-0.00000,0.01917,0.08380,-0.00000,0.01917,Other Industrial Equipment,0.03827,0.05270,0.04851,non-corporate,0.00321,-0.00000,0.00093,0.18347,0.19790,0.19371,1.00000,1.00000,1.00000 -128,128,5.00000,Construction tractors,3719463640.44892,EO22,0.16330,0.17937,0.14875,0.15763,Equipment,0.08380,0.00000,0.01917,0.08380,0.00000,0.01917,Other Industrial Equipment,0.03827,0.05270,0.04851,non-corporate,0.00321,0.00000,0.00093,0.20157,0.21600,0.21181,1.00000,1.00000,1.00000 -129,129,7.00000,Other agricultural machinery,80549886162.69899,EO30,0.11790,0.17937,0.14875,0.15763,Equipment,0.08380,-0.00000,0.01917,0.08380,-0.00000,0.01917,Other Industrial Equipment,0.03827,0.05270,0.04851,non-corporate,0.00321,-0.00000,0.00093,0.15617,0.17060,0.16641,1.00000,1.00000,1.00000 -130,130,5.00000,Other construction machinery,98513726689.52679,EO40,0.15500,0.17937,0.14875,0.15763,Equipment,0.08380,-0.00000,0.01917,0.08380,-0.00000,0.01917,Other Industrial Equipment,0.03827,0.05270,0.04851,non-corporate,0.00321,-0.00000,0.00093,0.19327,0.20770,0.20351,1.00000,1.00000,1.00000 -131,131,7.00000,Mining and oilfield machinery,18092187649.22342,EO50,0.15000,0.17937,0.14875,0.15763,Equipment,0.08380,-0.00000,0.01917,0.08380,-0.00000,0.01917,Other Industrial Equipment,0.03827,0.05270,0.04851,non-corporate,0.00321,-0.00000,0.00093,0.18827,0.20270,0.19851,1.00000,1.00000,1.00000 -132,132,15.00000,Steam engines,6902986050.14308,EI21,0.05160,0.17937,0.14875,0.15763,Equipment,0.08380,-0.00000,0.01917,0.08380,-0.00000,0.01917,Transportation Equipment,0.03827,0.05270,0.04851,non-corporate,0.00321,-0.00000,0.00093,0.08987,0.10430,0.10011,1.00000,1.00000,1.00000 -133,133,7.00000,Internal combustion engines,1555979253.60812,EI22,0.20630,0.17937,0.14875,0.15763,Equipment,0.08380,-0.00000,0.01917,0.08380,-0.00000,0.01917,Transportation Equipment,0.03827,0.05270,0.04851,non-corporate,0.00321,-0.00000,0.00093,0.24457,0.25900,0.25481,1.00000,1.00000,1.00000 -134,134,5.00000,Light trucks (including utility vehicles),77738021463.51085,ET11,0.17250,0.17937,0.14875,0.15763,Equipment,0.08380,0.00000,0.01917,0.08380,0.00000,0.01917,Transportation Equipment,0.03827,0.05270,0.04851,non-corporate,0.00321,0.00000,0.00093,0.21077,0.22520,0.22101,1.00000,1.00000,1.00000 -135,135,5.00000,"Other trucks, buses and truck trailers",52902871715.14603,ET12,0.17250,0.17937,0.14875,0.15763,Equipment,0.08380,0.00000,0.01917,0.08380,0.00000,0.01917,Transportation Equipment,0.03827,0.05270,0.04851,non-corporate,0.00321,0.00000,0.00093,0.21077,0.22520,0.22101,1.00000,1.00000,1.00000 -136,136,5.00000,Autos,47539167782.38700,ET20,0.33330,0.17937,0.14875,0.15763,Equipment,0.08380,-0.00000,0.01917,0.08380,-0.00000,0.01917,Transportation Equipment,0.03827,0.05270,0.04851,non-corporate,0.00321,-0.00000,0.00093,0.37157,0.38600,0.38181,1.00000,1.00000,1.00000 -137,137,5.00000,Aircraft,86223598874.83788,ET30,0.08590,0.17937,0.14875,0.15763,Equipment,0.08380,-0.00000,0.01917,0.08380,-0.00000,0.01917,Transportation Equipment,0.03827,0.05270,0.04851,non-corporate,0.00321,-0.00000,0.00093,0.12417,0.13860,0.13441,1.00000,1.00000,1.00000 -138,138,10.00000,Ships and boats,16387379759.80567,ET40,0.06110,0.17937,0.14875,0.15763,Equipment,0.08380,-0.00000,0.01917,0.08380,-0.00000,0.01917,Transportation Equipment,0.03827,0.05270,0.04851,non-corporate,0.00321,-0.00000,0.00093,0.09937,0.11380,0.10961,1.00000,1.00000,1.00000 -139,139,7.00000,Railroad equipment,29964515454.02116,ET50,0.05890,0.17937,0.14875,0.15763,Equipment,0.08380,0.00000,0.01917,0.08380,0.00000,0.01917,Transportation Equipment,0.03827,0.05270,0.04851,non-corporate,0.00321,0.00000,0.00093,0.09717,0.11160,0.10741,1.00000,1.00000,1.00000 -140,140,15.00000,Theatrical movies,18409754458.46626,AE10,0.09300,0.17937,0.14875,0.15763,Intellectual Property,0.08380,0.00000,0.01917,0.08380,0.00000,0.01917,Intellectual Property,0.03827,0.05270,0.04851,non-corporate,0.00321,0.00000,0.00093,0.13127,0.14570,0.14151,1.00000,1.00000,1.00000 -141,141,15.00000,Long-lived television programs,14909126060.40839,AE20,0.16800,0.17937,0.14875,0.15763,Intellectual Property,0.08380,-0.00000,0.01917,0.08380,-0.00000,0.01917,Intellectual Property,0.03827,0.05270,0.04851,non-corporate,0.00321,-0.00000,0.00093,0.20627,0.22070,0.21651,1.00000,1.00000,1.00000 -142,142,15.00000,Books,14215531494.34945,AE30,0.12100,0.17937,0.14875,0.15763,Intellectual Property,0.08380,-0.00000,0.01917,0.08380,-0.00000,0.01917,Intellectual Property,0.03827,0.05270,0.04851,non-corporate,0.00321,-0.00000,0.00093,0.15927,0.17370,0.16951,1.00000,1.00000,1.00000 -143,143,15.00000,Music,8069489954.09881,AE40,0.26700,0.17937,0.14875,0.15763,Intellectual Property,0.08380,0.00000,0.01917,0.08380,0.00000,0.01917,Intellectual Property,0.03827,0.05270,0.04851,non-corporate,0.00321,0.00000,0.00093,0.30527,0.31970,0.31551,1.00000,1.00000,1.00000 -144,144,15.00000,Other entertainment originals,11674503193.39874,AE50,0.10900,0.17937,0.14875,0.15763,Intellectual Property,0.08380,0.00000,0.01917,0.08380,0.00000,0.01917,Intellectual Property,0.03827,0.05270,0.04851,non-corporate,0.00321,0.00000,0.00093,0.14727,0.16170,0.15751,1.00000,1.00000,1.00000 -145,145,3.00000,Own account software,63396170766.96828,ENS3,0.33000,0.17937,0.14875,0.15763,Intellectual Property,0.08380,-0.00000,0.01917,0.08380,-0.00000,0.01917,Intellectual Property,0.03827,0.05270,0.04851,non-corporate,0.00321,-0.00000,0.00093,0.36827,0.38270,0.37851,1.00000,1.00000,1.00000 -146,146,5.00000,Pharmaceutical and medicine manufacturing,68720410526.40900,RD11,0.10000,0.17937,0.14875,0.15763,Intellectual Property,0.08380,0.00000,0.01917,0.08380,0.00000,0.01917,Intellectual Property,0.03827,0.05270,0.04851,non-corporate,0.00321,0.00000,0.00093,0.13827,0.15270,0.14851,1.00000,1.00000,1.00000 -147,147,5.00000,"Chemical manufacturing, ex. pharma and med",9431775719.32930,RD12,0.16000,0.17937,0.14875,0.15763,Intellectual Property,0.08380,0.00000,0.01917,0.08380,0.00000,0.01917,Intellectual Property,0.03827,0.05270,0.04851,non-corporate,0.00321,0.00000,0.00093,0.19827,0.21270,0.20851,1.00000,1.00000,1.00000 -148,148,5.00000,Computers and peripheral equipment manufacturing,1249951615.14700,RD21,0.40000,0.17937,0.14875,0.15763,Intellectual Property,0.08380,0.00000,0.01917,0.08380,0.00000,0.01917,Intellectual Property,0.03827,0.05270,0.04851,non-corporate,0.00321,0.00000,0.00093,0.43827,0.45270,0.44851,1.00000,1.00000,1.00000 -149,149,5.00000,Communications equipment manufacturing,5016215180.93255,RD22,0.27000,0.17937,0.14875,0.15763,Intellectual Property,0.08380,0.00000,0.01917,0.08380,0.00000,0.01917,Intellectual Property,0.03827,0.05270,0.04851,non-corporate,0.00321,0.00000,0.00093,0.30827,0.32270,0.31851,1.00000,1.00000,1.00000 -150,150,5.00000,Semiconductor and other component manufacturing,10920003474.83112,RD23,0.25000,0.17937,0.14875,0.15763,Intellectual Property,0.08380,0.00000,0.01917,0.08380,0.00000,0.01917,Intellectual Property,0.03827,0.05270,0.04851,non-corporate,0.00321,0.00000,0.00093,0.28827,0.30270,0.29851,1.00000,1.00000,1.00000 -151,151,5.00000,Navigational and other instruments manufacturing,4025914234.82626,RD24,0.29000,0.17937,0.14875,0.15763,Intellectual Property,0.08380,-0.00000,0.01917,0.08380,-0.00000,0.01917,Intellectual Property,0.03827,0.05270,0.04851,non-corporate,0.00321,-0.00000,0.00093,0.32827,0.34270,0.33851,1.00000,1.00000,1.00000 -152,152,5.00000,"Other computer and electronic manufacturing, n.e.c.",213775583.63471,RD25,0.40000,0.17937,0.14875,0.15763,Intellectual Property,0.08380,0.00000,0.01917,0.08380,0.00000,0.01917,Intellectual Property,0.03827,0.05270,0.04851,non-corporate,0.00321,0.00000,0.00093,0.43827,0.45270,0.44851,1.00000,1.00000,1.00000 -153,153,7.00000,Motor vehicles and parts manufacturing,5835206602.12800,RD31,0.31000,0.17937,0.14875,0.15763,Intellectual Property,0.08380,-0.00000,0.01917,0.08380,-0.00000,0.01917,Intellectual Property,0.03827,0.05270,0.04851,non-corporate,0.00321,-0.00000,0.00093,0.34827,0.36270,0.35851,1.00000,1.00000,1.00000 -154,154,7.00000,Aerospace products and parts manufacturing,4929469423.57540,RD32,0.22000,0.17937,0.14875,0.15763,Intellectual Property,0.08380,0.00000,0.01917,0.08380,0.00000,0.01917,Intellectual Property,0.03827,0.05270,0.04851,non-corporate,0.00321,0.00000,0.00093,0.25827,0.27270,0.26851,1.00000,1.00000,1.00000 -155,155,3.00000,Software publishers,949730450.60092,RD40,0.22000,0.17937,0.14875,0.15763,Intellectual Property,0.08380,0.00000,0.01917,0.08380,0.00000,0.01917,Intellectual Property,0.03827,0.05270,0.04851,non-corporate,0.00321,0.00000,0.00093,0.25827,0.27270,0.26851,1.00000,1.00000,1.00000 -156,156,5.00000,Financial and real estate services,1540787936.30553,RD50,0.16000,0.17937,0.14875,0.15763,Intellectual Property,0.08380,0.00000,0.01917,0.08380,0.00000,0.01917,Intellectual Property,0.03827,0.05270,0.04851,non-corporate,0.00321,0.00000,0.00093,0.19827,0.21270,0.20851,1.00000,1.00000,1.00000 -157,157,3.00000,Computer systems design and related services,5115177129.21372,RD60,0.36000,0.17937,0.14875,0.15763,Intellectual Property,0.08380,0.00000,0.01917,0.08380,0.00000,0.01917,Intellectual Property,0.03827,0.05270,0.04851,non-corporate,0.00321,0.00000,0.00093,0.39827,0.41270,0.40851,1.00000,1.00000,1.00000 -158,158,5.00000,Scientific research and development services,22860376897.47077,RD70,0.16000,0.17937,0.14875,0.15763,Intellectual Property,0.08380,0.00000,0.01917,0.08380,0.00000,0.01917,Intellectual Property,0.03827,0.05270,0.04851,non-corporate,0.00321,0.00000,0.00093,0.19827,0.21270,0.20851,1.00000,1.00000,1.00000 -159,159,5.00000,"All other nonmanufacturing, n.e.c.",33402731579.63615,RD80,0.16000,0.17937,0.14875,0.15763,Intellectual Property,0.08380,0.00000,0.01917,0.08380,0.00000,0.01917,Intellectual Property,0.03827,0.05270,0.04851,non-corporate,0.00321,0.00000,0.00093,0.19827,0.21270,0.20851,1.00000,1.00000,1.00000 -160,160,3.00000,Private universities and colleges,6064635361.65000,RD91,0.16000,0.17937,0.14875,0.15763,Intellectual Property,0.08380,0.00000,0.01917,0.08380,0.00000,0.01917,Intellectual Property,0.03827,0.05270,0.04851,non-corporate,0.00321,0.00000,0.00093,0.19827,0.21270,0.20851,1.00000,1.00000,1.00000 -161,161,3.00000,Other nonprofit institutions,44957394625.31660,RD92,0.16000,0.17937,0.14875,0.15763,Intellectual Property,0.08380,0.00000,0.01917,0.08380,0.00000,0.01917,Intellectual Property,0.03827,0.05270,0.04851,non-corporate,0.00321,0.00000,0.00093,0.19827,0.21270,0.20851,1.00000,1.00000,1.00000 -162,162,7.00000,Other manufacturing,31261484438.19672,RDOM,0.16000,0.17937,0.14875,0.15763,Intellectual Property,0.08380,0.00000,0.01917,0.08380,0.00000,0.01917,Intellectual Property,0.03827,0.05270,0.04851,non-corporate,0.00321,0.00000,0.00093,0.19827,0.21270,0.20851,1.00000,1.00000,1.00000 -163,163,100.00000,Inventories,903249577643.82080,INV,0.00000,0.22563,0.20927,0.21402,Inventories,0.29684,0.22348,0.24044,0.29684,0.22348,0.24044,Inventories,0.04986,0.06787,0.06265,non-corporate,0.01480,0.01517,0.01506,0.04986,0.06787,0.06265,0.00000,0.00000,0.00000 -164,164,100.00000,Land,9085892640842.86914,LAND,0.00000,0.21801,0.20198,0.20663,Land,0.26885,0.20198,0.21727,0.26885,0.20198,0.21727,Land,0.04795,0.06604,0.06079,non-corporate,0.01289,0.01334,0.01321,0.04795,0.06604,0.06079,0.00000,0.00000,0.00000 -165,165,5.00000,Petroleum and natural gas,212937915737.62860,SM01,0.07510,0.17937,0.14875,0.15763,Structures,0.08380,0.00000,0.01917,0.08380,0.00000,0.01917,Mining and Drilling Structures,0.03827,0.05270,0.04851,non-corporate,0.00321,0.00000,0.00093,0.11337,0.12780,0.12361,1.00000,1.00000,1.00000 -166,166,7.00000,Mining,17079757447.87507,SM02,0.04500,0.17937,0.14875,0.15763,Structures,0.08380,0.00000,0.01917,0.08380,0.00000,0.01917,Mining and Drilling Structures,0.03827,0.05270,0.04851,non-corporate,0.00321,0.00000,0.00093,0.08327,0.09770,0.09351,1.00000,1.00000,1.00000 -167,167,15.00000,Communication,54922065479.18448,SU20,0.02370,0.17937,0.14875,0.15763,Structures,0.08380,-0.00000,0.01917,0.08380,-0.00000,0.01917,Mining and Drilling Structures,0.03827,0.05270,0.04851,non-corporate,0.00321,-0.00000,0.00093,0.06197,0.07640,0.07221,1.00000,1.00000,1.00000 -168,168,5.00000,Gas,31446708032.77039,SU40,0.07510,0.17937,0.14875,0.15763,Structures,0.08380,-0.00000,0.01917,0.08380,-0.00000,0.01917,Mining and Drilling Structures,0.03827,0.05270,0.04851,non-corporate,0.00321,-0.00000,0.00093,0.11337,0.12780,0.12361,1.00000,1.00000,1.00000 -169,169,5.00000,Petroleum pipelines,20777938418.31212,SU50,0.02370,0.17937,0.14875,0.15763,Structures,0.08380,0.00000,0.01917,0.08380,0.00000,0.01917,Mining and Drilling Structures,0.03827,0.05270,0.04851,non-corporate,0.00321,0.00000,0.00093,0.06197,0.07640,0.07221,1.00000,1.00000,1.00000 -170,170,39.00000,Religious,198115941229.36139,SB10,0.01880,0.20803,0.18924,0.19461,Structures,0.22861,0.16145,0.17648,0.22861,0.16145,0.17648,Nonresidential Buildings,0.04545,0.06285,0.05778,non-corporate,0.01039,0.01015,0.01020,0.06425,0.08165,0.07658,0.50261,0.43931,0.45605 -171,171,39.00000,Educational and vocational,212838725537.27460,SB20,0.01880,0.21304,0.19586,0.20078,Structures,0.24937,0.18302,0.19793,0.24937,0.18302,0.19793,Nonresidential Buildings,0.04671,0.06451,0.05933,non-corporate,0.01165,0.01181,0.01174,0.06551,0.08331,0.07813,0.41559,0.34762,0.36534 -172,172,39.00000,Hospitals,335377700162.39520,SB31,0.01880,0.21304,0.19586,0.20078,Structures,0.24937,0.18302,0.19793,0.24937,0.18302,0.19793,Nonresidential Buildings,0.04671,0.06451,0.05933,non-corporate,0.01165,0.01181,0.01174,0.06551,0.08331,0.07813,0.41559,0.34762,0.36534 -173,173,39.00000,Special care,75652337468.16002,SB32,0.01880,0.21304,0.19586,0.20078,Structures,0.24937,0.18302,0.19793,0.24937,0.18302,0.19793,Nonresidential Buildings,0.04671,0.06451,0.05933,non-corporate,0.01165,0.01181,0.01174,0.06551,0.08331,0.07813,0.41559,0.34762,0.36534 -174,174,39.00000,Lodging,333097535279.52374,SB41,0.02810,0.21853,0.20199,0.20674,Structures,0.27085,0.20201,0.21763,0.27085,0.20201,0.21763,Nonresidential Buildings,0.04808,0.06604,0.06082,non-corporate,0.01302,0.01334,0.01324,0.07618,0.09414,0.08892,0.41559,0.34762,0.36534 -175,175,39.00000,Air transportation,6522869098.36936,SB43,0.02370,0.21594,0.19909,0.20392,Structures,0.26084,0.19314,0.20843,0.26084,0.19314,0.20843,Nonresidential Buildings,0.04743,0.06532,0.06011,non-corporate,0.01237,0.01261,0.01253,0.07113,0.08902,0.08381,0.41559,0.34762,0.36534 -176,176,39.00000,Other transportation,1255401381.70107,SB45,0.02370,0.21594,0.19909,0.20392,Structures,0.26084,0.19314,0.20843,0.26084,0.19314,0.20843,Nonresidential Buildings,0.04743,0.06532,0.06011,non-corporate,0.01237,0.01261,0.01253,0.07113,0.08902,0.08381,0.41559,0.34762,0.36534 -177,177,39.00000,Warehouses,129247228808.96722,SC01,0.02250,0.21523,0.19830,0.20315,Structures,0.25807,0.19068,0.20588,0.25807,0.19068,0.20588,Nonresidential Buildings,0.04725,0.06512,0.05992,non-corporate,0.01219,0.01242,0.01234,0.06975,0.08762,0.08242,0.41559,0.34762,0.36534 -178,178,39.00000,Other commercial,167854351277.22626,SC02,0.02620,0.21741,0.20074,0.20552,Structures,0.26656,0.19820,0.21368,0.26656,0.19820,0.21368,Nonresidential Buildings,0.04780,0.06573,0.06052,non-corporate,0.01274,0.01303,0.01293,0.07400,0.09193,0.08672,0.41559,0.34762,0.36534 -179,179,39.00000,Multimerchandise shopping,242344895152.75317,SC03,0.02620,0.21741,0.20074,0.20552,Structures,0.26656,0.19820,0.21368,0.26656,0.19820,0.21368,Nonresidential Buildings,0.04780,0.06573,0.06052,non-corporate,0.01274,0.01303,0.01293,0.07400,0.09193,0.08672,0.41559,0.34762,0.36534 -180,180,39.00000,Food and beverage establishments,142536462115.36786,SC04,0.02620,0.21741,0.20074,0.20552,Structures,0.26656,0.19820,0.21368,0.26656,0.19820,0.21368,Nonresidential Buildings,0.04780,0.06573,0.06052,non-corporate,0.01274,0.01303,0.01293,0.07400,0.09193,0.08672,0.41559,0.34762,0.36534 -181,181,39.00000,Manufacturing,312763751528.73279,SI00,0.03140,0.22048,0.20416,0.20885,Structures,0.27817,0.20854,0.22439,0.27817,0.20854,0.22439,Nonresidential Buildings,0.04857,0.06659,0.06135,non-corporate,0.01351,0.01389,0.01377,0.07997,0.09799,0.09275,0.41559,0.34762,0.36534 -182,182,39.00000,Public safety,10144839642.53934,SO03,0.02370,0.21594,0.19909,0.20392,Structures,0.26084,0.19314,0.20843,0.26084,0.19314,0.20843,Nonresidential Buildings,0.04743,0.06532,0.06011,non-corporate,0.01237,0.01261,0.01253,0.07113,0.08902,0.08381,0.41559,0.34762,0.36534 -183,183,39.00000,Office,595428227069.28125,SOO1,0.02470,0.21653,0.19975,0.20456,Structures,0.26314,0.19517,0.21054,0.26314,0.19517,0.21054,Nonresidential Buildings,0.04758,0.06548,0.06027,non-corporate,0.01252,0.01278,0.01269,0.07228,0.09018,0.08497,0.41559,0.34762,0.36534 -184,184,39.00000,Medical buildings,100075071146.99706,SOO2,0.02470,0.21653,0.19975,0.20456,Structures,0.26314,0.19517,0.21054,0.26314,0.19517,0.21054,Nonresidential Buildings,0.04758,0.06548,0.06027,non-corporate,0.01252,0.01278,0.01269,0.07228,0.09018,0.08497,0.41559,0.34762,0.36534 -185,185,7.00000,Amusement and recreation,164426728047.02826,SB42,0.03000,0.17937,0.14875,0.15763,Structures,0.08380,0.00000,0.01917,0.08380,0.00000,0.01917,Other Structures,0.03827,0.05270,0.04851,non-corporate,0.00321,0.00000,0.00093,0.06827,0.08270,0.07851,1.00000,1.00000,1.00000 -186,186,39.00000,Local transit structures,2713917848.41494,SB44,0.02370,0.21594,0.19909,0.20392,Structures,0.26084,0.19314,0.20843,0.26084,0.19314,0.20843,Other Structures,0.04743,0.06532,0.06011,non-corporate,0.01237,0.01261,0.01253,0.07113,0.08902,0.08381,0.41559,0.34762,0.36534 -187,187,5.00000,Other land transportation,4956240890.72790,SB46,0.02370,0.17937,0.14875,0.15763,Structures,0.08380,0.00000,0.01917,0.08380,0.00000,0.01917,Other Structures,0.03827,0.05270,0.04851,non-corporate,0.00321,0.00000,0.00093,0.06197,0.07640,0.07221,1.00000,1.00000,1.00000 -188,188,20.00000,Farm,210718689415.62762,SN00,0.02390,0.17937,0.14875,0.15763,Structures,0.08380,0.00000,0.01917,0.08380,0.00000,0.01917,Other Structures,0.03827,0.05270,0.04851,non-corporate,0.00321,0.00000,0.00093,0.06217,0.07660,0.07241,1.00000,1.00000,1.00000 -189,189,20.00000,Water supply,17351319722.49404,SO01,0.02250,0.17937,0.14875,0.15763,Structures,0.08380,-0.00000,0.01917,0.08380,-0.00000,0.01917,Other Structures,0.03827,0.05270,0.04851,non-corporate,0.00321,-0.00000,0.00093,0.06077,0.07520,0.07101,1.00000,1.00000,1.00000 -190,190,20.00000,Sewage and waste disposal,18704712570.11411,SO02,0.02250,0.17937,0.14875,0.15763,Structures,0.08380,0.00000,0.01917,0.08380,0.00000,0.01917,Other Structures,0.03827,0.05270,0.04851,non-corporate,0.00321,0.00000,0.00093,0.06077,0.07520,0.07101,1.00000,1.00000,1.00000 -191,191,15.00000,Highway and conservation and development,14651065465.71158,SO04,0.02250,0.17937,0.14875,0.15763,Structures,0.08380,0.00000,0.01917,0.08380,0.00000,0.01917,Other Structures,0.03827,0.05270,0.04851,non-corporate,0.00321,0.00000,0.00093,0.06077,0.07520,0.07101,1.00000,1.00000,1.00000 -192,192,7.00000,Mobile structures,3986455830.48833,SOMO,0.05560,0.17937,0.14875,0.15763,Structures,0.08380,0.00000,0.01917,0.08380,0.00000,0.01917,Other Structures,0.03827,0.05270,0.04851,non-corporate,0.00321,0.00000,0.00093,0.09387,0.10830,0.10411,1.00000,1.00000,1.00000 -193,193,20.00000,Other railroad,35355401894.74462,SU11,0.01760,0.17937,0.14875,0.15763,Structures,0.08380,0.00000,0.01917,0.08380,0.00000,0.01917,Other Structures,0.03827,0.05270,0.04851,non-corporate,0.00321,0.00000,0.00093,0.05587,0.07030,0.06611,1.00000,1.00000,1.00000 -194,194,7.00000,Track replacement,41586561300.50691,SU12,0.02490,0.17937,0.14875,0.15763,Structures,0.08380,0.00000,0.01917,0.08380,0.00000,0.01917,Other Structures,0.03827,0.05270,0.04851,non-corporate,0.00321,0.00000,0.00093,0.06317,0.07760,0.07341,1.00000,1.00000,1.00000 -195,195,15.00000,Electric,70225622111.33885,SU30,0.02110,0.17937,0.14875,0.15763,Structures,0.08380,0.00000,0.01917,0.08380,0.00000,0.01917,Other Structures,0.03827,0.05270,0.04851,non-corporate,0.00321,0.00000,0.00093,0.05937,0.07380,0.06961,1.00000,1.00000,1.00000 -196,196,5.00000,Wind and solar,13828813701.93123,SU60,0.03030,0.17937,0.14875,0.15763,Structures,0.08380,0.00000,0.01917,0.08380,0.00000,0.01917,Other Structures,0.03827,0.05270,0.04851,non-corporate,0.00321,0.00000,0.00093,0.06857,0.08300,0.07881,1.00000,1.00000,1.00000 -197,197,27.50000,Residential,1251223923087.89990,RES,0.01631,0.20585,0.18714,0.19246,Structures,0.21925,0.15436,0.16872,0.21925,0.15436,0.16872,Residential Buildings,0.04490,0.06232,0.05724,non-corporate,0.00985,0.00962,0.00966,0.06122,0.07863,0.07356,0.51943,0.44928,0.46804 -198,198,3.64718,Computers and Software,398439404770.52747,,0.41304,0.09899,0.14910,0.13307,Equipment,-0.37858,0.00000,-0.08871,-0.05443,0.09137,0.05720,Computers and Software,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.45076,0.47104,0.46455,1.00000,1.00000,1.00000 -199,199,7.00000,Industrial Machinery,754098089405.10413,,0.10569,0.09899,0.14910,0.13307,Equipment,-0.37858,0.00000,-0.08871,-0.05443,0.09137,0.05720,Industrial Machinery,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.14341,0.16369,0.15720,1.00000,1.00000,1.00000 -200,200,6.92378,Instruments and Communications Equipment,847266548005.08252,,0.12485,0.09899,0.14910,0.13307,Equipment,-0.37858,-0.00000,-0.08871,-0.05443,0.09137,0.05720,Instruments and Communications Equipment,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.16257,0.18285,0.17636,1.00000,1.00000,1.00000 -201,201,7.39403,Intellectual Property,1681853350900.40088,,0.17644,0.09899,0.14910,0.13307,Intellectual Property,-0.37858,0.00000,-0.08871,-0.05443,0.09137,0.05720,Intellectual Property,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.21416,0.23444,0.22795,1.00000,1.00000,1.00000 -204,204,7.73987,Mining and Drilling Structures,2172847115166.73730,,0.05760,0.09899,0.14910,0.13307,Structures,-0.37858,-0.00000,-0.08871,-0.05443,0.09137,0.05720,Mining and Drilling Structures,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.09532,0.11560,0.10911,1.00000,1.00000,1.00000 -205,205,39.00000,Nonresidential Buildings,4551150810123.36719,,0.02561,0.13754,0.20800,0.18535,Structures,-0.09523,0.20452,0.13384,0.16230,0.27720,0.24993,Nonresidential Buildings,0.04748,0.07291,0.06475,corporate,0.00771,0.02021,0.01618,0.07308,0.09852,0.09035,0.42049,0.32921,0.35453 -206,206,6.89065,Office and Residential Equipment,213260346797.01944,,0.11933,0.09899,0.14910,0.13307,Equipment,-0.37858,-0.00000,-0.08871,-0.05443,0.09137,0.05720,Office and Residential Equipment,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.15705,0.17733,0.17084,1.00000,1.00000,1.00000 -207,207,7.00000,Other Equipment,337069776278.42487,,0.15074,0.09899,0.14910,0.13307,Equipment,-0.37858,-0.00000,-0.08871,-0.05443,0.09137,0.05720,Other Equipment,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.18846,0.20874,0.20225,1.00000,1.00000,1.00000 -208,208,9.94297,Other Industrial Equipment,1055995696084.39087,,0.09750,0.09899,0.14910,0.13307,Equipment,-0.37858,0.00000,-0.08871,-0.05443,0.09137,0.05720,Other Industrial Equipment,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.13522,0.15550,0.14901,1.00000,1.00000,1.00000 -209,209,13.87951,Other Structures,1869521468512.13208,,0.02290,0.09918,0.14939,0.13332,Structures,-0.37686,0.00125,-0.08736,-0.05312,0.09250,0.05837,Other Structures,0.03777,0.05807,0.05157,corporate,-0.00201,0.00537,0.00301,0.06066,0.08097,0.07447,0.99712,0.99667,0.99680 -210,210,27.50000,Residential Buildings,333776621894.00000,,0.01631,0.12609,0.19380,0.17191,Structures,-0.16644,0.16325,0.08583,0.10783,0.23970,0.20835,Residential Buildings,0.04458,0.06932,0.06135,corporate,0.00481,0.01661,0.01278,0.06089,0.08563,0.07766,0.52240,0.42718,0.45450 -211,211,6.52644,Transportation Equipment,965295059837.32141,,0.14020,0.09899,0.14910,0.13307,Equipment,-0.37858,-0.00000,-0.08871,-0.05443,0.09137,0.05720,Transportation Equipment,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.17792,0.19820,0.19171,1.00000,1.00000,1.00000 -212,212,3.75970,Computers and Software,133772595225.18484,,0.41707,0.17937,0.14875,0.15763,Equipment,0.08380,-0.00000,0.01917,0.08380,-0.00000,0.01917,Computers and Software,0.03827,0.05270,0.04851,non-corporate,0.00321,-0.00000,0.00093,0.45534,0.46978,0.46559,1.00000,1.00000,1.00000 -213,213,7.00000,Industrial Machinery,170693910597.87476,,0.10585,0.17937,0.14875,0.15763,Equipment,0.08380,-0.00000,0.01917,0.08380,-0.00000,0.01917,Industrial Machinery,0.03827,0.05270,0.04851,non-corporate,0.00321,-0.00000,0.00093,0.14412,0.15855,0.15437,1.00000,1.00000,1.00000 -214,214,6.92834,Instruments and Communications Equipment,352265040695.39178,,0.13114,0.17937,0.14875,0.15763,Equipment,0.08380,0.00000,0.01917,0.08380,0.00000,0.01917,Instruments and Communications Equipment,0.03827,0.05270,0.04851,non-corporate,0.00321,0.00000,0.00093,0.16940,0.18384,0.17965,1.00000,1.00000,1.00000 -215,215,6.33241,Intellectual Property,387169616706.89374,,0.18561,0.17937,0.14875,0.15763,Intellectual Property,0.08380,-0.00000,0.01917,0.08380,-0.00000,0.01917,Intellectual Property,0.03827,0.05270,0.04851,non-corporate,0.00321,-0.00000,0.00093,0.22387,0.23831,0.23412,1.00000,1.00000,1.00000 -218,218,6.73025,Mining and Drilling Structures,337164385115.77063,,0.06203,0.17937,0.14875,0.15763,Structures,0.08380,0.00000,0.01917,0.08380,0.00000,0.01917,Mining and Drilling Structures,0.03827,0.05270,0.04851,non-corporate,0.00321,0.00000,0.00093,0.10030,0.11474,0.11055,1.00000,1.00000,1.00000 -219,219,39.00000,Nonresidential Buildings,2863255336898.64990,,0.02432,0.21595,0.19904,0.20389,Structures,0.26091,0.19298,0.20833,0.26091,0.19298,0.20833,Nonresidential Buildings,0.04744,0.06530,0.06011,non-corporate,0.01238,0.01260,0.01252,0.07175,0.08962,0.08442,0.42161,0.35397,0.37162 -220,220,6.80132,Office and Residential Equipment,108443653204.71063,,0.12040,0.17937,0.14875,0.15763,Equipment,0.08380,0.00000,0.01917,0.08380,0.00000,0.01917,Office and Residential Equipment,0.03827,0.05270,0.04851,non-corporate,0.00321,0.00000,0.00093,0.15867,0.17310,0.16892,1.00000,1.00000,1.00000 -221,221,7.00000,Other Equipment,175872223716.43555,,0.15009,0.17937,0.14875,0.15763,Equipment,0.08380,-0.00000,0.01917,0.08380,-0.00000,0.01917,Other Equipment,0.03827,0.05270,0.04851,non-corporate,0.00321,-0.00000,0.00093,0.18836,0.20280,0.19861,1.00000,1.00000,1.00000 -222,222,7.35694,Other Industrial Equipment,349865415800.24005,,0.12282,0.17937,0.14875,0.15763,Equipment,0.08380,0.00000,0.01917,0.08380,0.00000,0.01917,Other Industrial Equipment,0.03827,0.05270,0.04851,non-corporate,0.00321,0.00000,0.00093,0.16109,0.17552,0.17134,1.00000,1.00000,1.00000 -223,223,14.34493,Other Structures,598505528799.12842,,0.02518,0.17953,0.14898,0.15784,Structures,0.08479,0.00108,0.02023,0.08479,0.00108,0.02023,Other Structures,0.03831,0.05276,0.04857,non-corporate,0.00325,0.00006,0.00098,0.06349,0.07794,0.07375,0.99735,0.99704,0.99712 -224,224,27.50000,Residential Buildings,1251223923087.89990,,0.01631,0.20585,0.18714,0.19246,Structures,0.21925,0.15436,0.16872,0.21925,0.15436,0.16872,Residential Buildings,0.04490,0.06232,0.05724,non-corporate,0.00985,0.00962,0.00966,0.06122,0.07863,0.07356,0.51943,0.44928,0.46804 -225,225,5.67042,Transportation Equipment,319214520353.45972,,0.15422,0.17937,0.14875,0.15763,Equipment,0.08380,0.00000,0.01917,0.08380,0.00000,0.01917,Transportation Equipment,0.03827,0.05270,0.04851,non-corporate,0.00321,0.00000,0.00093,0.19249,0.20692,0.20274,1.00000,1.00000,1.00000 -226,226,7.26837,Equipment,4571424921177.87109,,0.14538,0.09899,0.14910,0.13307,Equipment,-0.37858,-0.00000,-0.08871,-0.05443,0.09137,0.05720,Equipment,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.18310,0.20338,0.19689,1.00000,1.00000,1.00000 -230,230,25.70088,Structures,8927296015696.23438,,0.03248,0.11970,0.18086,0.16122,Structures,-0.21039,0.12175,0.04364,0.07421,0.20199,0.17181,Structures,0.04296,0.06604,0.05864,corporate,0.00319,0.01334,0.01008,0.07544,0.09852,0.09112,0.68611,0.63592,0.64987 -231,231,6.51570,Equipment,1610127359593.29712,,0.15633,0.17937,0.14875,0.15763,Equipment,0.08380,0.00000,0.01917,0.08380,0.00000,0.01917,Equipment,0.03827,0.05270,0.04851,non-corporate,0.00321,0.00000,0.00093,0.19460,0.20903,0.20485,1.00000,1.00000,1.00000 -235,235,31.07440,Structures,5050149173901.45020,,0.02496,0.20669,0.18680,0.19251,Structures,0.22288,0.15321,0.16891,0.22288,0.15321,0.16891,Structures,0.04511,0.06224,0.05726,non-corporate,0.01006,0.00953,0.00967,0.07007,0.08719,0.08221,0.55269,0.49693,0.51159 -236,236,38.79367,Overall,20307631178754.23438,,0.06162,0.11870,0.17900,0.15968,Overall,-0.21758,0.11545,0.03721,0.06872,0.19626,0.16625,Overall,0.04271,0.06557,0.05825,corporate,0.00293,0.01287,0.00968,0.10432,0.12719,0.11986,0.60954,0.58748,0.59361 -237,237,68.60454,Overall,17036588368688.33008,,0.02639,0.21053,0.19162,0.19709,Overall,0.23910,0.16935,0.18524,0.23910,0.16935,0.18524,Overall,0.04608,0.06344,0.05840,non-corporate,0.01102,0.01074,0.01082,0.07247,0.08984,0.08479,0.28107,0.26454,0.26889 +0,0,3.00000,Prepackaged software,72268924051.90823,ENS1,0.55000,0.09899,0.14910,0.13307,Equipment,-0.37858,0.00000,-0.08871,-0.05439,0.09141,0.05724,Computers and Software,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.58772,0.60800,0.60151,1.00000,1.00000,1.00000 +1,1,3.00000,Custom software,197240164682.67053,ENS2,0.33000,0.09899,0.14910,0.13307,Equipment,-0.37858,0.00000,-0.08871,-0.05439,0.09141,0.05724,Computers and Software,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.36772,0.38800,0.38151,1.00000,1.00000,1.00000 +2,2,5.00000,Mainframes,17413293619.14563,EP1A,0.46330,0.09899,0.14910,0.13307,Equipment,-0.37858,-0.00000,-0.08871,-0.05439,0.09141,0.05724,Computers and Software,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.50102,0.52130,0.51481,1.00000,1.00000,1.00000 +3,3,5.00000,PCs,53550810952.93879,EP1B,0.46330,0.09899,0.14910,0.13307,Equipment,-0.37858,-0.00000,-0.08871,-0.05439,0.09141,0.05724,Computers and Software,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.50102,0.52130,0.51481,1.00000,1.00000,1.00000 +4,4,5.00000,DASDs,0.00000,EP1C,0.46330,0.09899,0.14910,0.13307,Equipment,-0.37858,0.00000,-0.08871,-0.05439,0.09141,0.05724,Computers and Software,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.50102,0.52130,0.51481,1.00000,1.00000,1.00000 +5,5,5.00000,Printers,9260043911.05631,EP1D,0.46330,0.09899,0.14910,0.13307,Equipment,-0.37858,-0.00000,-0.08871,-0.05439,0.09141,0.05724,Computers and Software,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.50102,0.52130,0.51481,1.00000,1.00000,1.00000 +6,6,5.00000,Terminals,12396994618.63852,EP1E,0.46330,0.09899,0.14910,0.13307,Equipment,-0.37858,-0.00000,-0.08871,-0.05439,0.09141,0.05724,Computers and Software,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.50102,0.52130,0.51481,1.00000,1.00000,1.00000 +7,7,5.00000,Tape drives,0.00000,EP1F,0.46330,0.09899,0.14910,0.13307,Equipment,-0.37858,0.00000,-0.08871,-0.05439,0.09141,0.05724,Computers and Software,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.50102,0.52130,0.51481,1.00000,1.00000,1.00000 +8,8,5.00000,Storage devices,7998988409.07232,EP1G,0.46330,0.09899,0.14910,0.13307,Equipment,-0.37858,-0.00000,-0.08871,-0.05439,0.09141,0.05724,Computers and Software,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.50102,0.52130,0.51481,1.00000,1.00000,1.00000 +9,9,5.00000,System integrators,28310184525.09714,EP1H,0.46330,0.09899,0.14910,0.13307,Equipment,-0.37858,-0.00000,-0.08871,-0.05439,0.09141,0.05724,Computers and Software,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.50102,0.52130,0.51481,1.00000,1.00000,1.00000 +10,10,7.00000,Special industrial machinery,277678587239.93805,EI40,0.10310,0.09899,0.14910,0.13307,Equipment,-0.37858,0.00000,-0.08871,-0.05439,0.09141,0.05724,Industrial Machinery,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.14082,0.16110,0.15461,1.00000,1.00000,1.00000 +11,11,7.00000,General industrial equipment,476419502165.16602,EI50,0.10720,0.09899,0.14910,0.13307,Equipment,-0.37858,-0.00000,-0.08871,-0.05439,0.09141,0.05724,Industrial Machinery,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.14492,0.16520,0.15871,1.00000,1.00000,1.00000 +12,12,5.00000,Office and accounting equipment,7268611167.00189,EP12,0.31190,0.09899,0.14910,0.13307,Equipment,-0.37858,-0.00000,-0.08871,-0.05439,0.09141,0.05724,Instruments and Communications Equipment,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.34962,0.36990,0.36341,1.00000,1.00000,1.00000 +13,13,7.00000,Communications,498335724804.03143,EP20,0.11290,0.09899,0.14910,0.13307,Equipment,-0.37858,-0.00000,-0.08871,-0.05439,0.09141,0.05724,Instruments and Communications Equipment,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.15062,0.17090,0.16441,1.00000,1.00000,1.00000 +14,14,5.00000,Photocopy and related equipment,25020946205.42981,EP31,0.18000,0.09899,0.14910,0.13307,Equipment,-0.37858,0.00000,-0.08871,-0.05439,0.09141,0.05724,Instruments and Communications Equipment,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.21772,0.23800,0.23151,1.00000,1.00000,1.00000 +15,15,7.00000,Nonelectro medical instruments,133227504585.58267,EP34,0.13500,0.09899,0.14910,0.13307,Equipment,-0.37858,-0.00000,-0.08871,-0.05439,0.09141,0.05724,Instruments and Communications Equipment,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.17272,0.19300,0.18651,1.00000,1.00000,1.00000 +16,16,7.00000,Electro medical instruments,75049828222.78802,EP35,0.13500,0.09899,0.14910,0.13307,Equipment,-0.37858,-0.00000,-0.08871,-0.05439,0.09141,0.05724,Instruments and Communications Equipment,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.17272,0.19300,0.18651,1.00000,1.00000,1.00000 +17,17,7.00000,Nonmedical instruments,108363933020.24872,EP36,0.13500,0.09899,0.14910,0.13307,Equipment,-0.37858,-0.00000,-0.08871,-0.05439,0.09141,0.05724,Instruments and Communications Equipment,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.17272,0.19300,0.18651,1.00000,1.00000,1.00000 +18,18,5.00000,Household furniture,8900871527.19684,EO11,0.13750,0.09899,0.14910,0.13307,Equipment,-0.37858,-0.00000,-0.08871,-0.05439,0.09141,0.05724,Office and Residential Equipment,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.17522,0.19550,0.18901,1.00000,1.00000,1.00000 +19,19,7.00000,Other furniture,201600171017.50803,EO12,0.11790,0.09899,0.14910,0.13307,Equipment,-0.37858,-0.00000,-0.08871,-0.05439,0.09141,0.05724,Office and Residential Equipment,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.15562,0.17590,0.16941,1.00000,1.00000,1.00000 +20,20,5.00000,Household appliances,2759304252.31458,EO71,0.16500,0.09899,0.14910,0.13307,Equipment,-0.37858,-0.00000,-0.08871,-0.05439,0.09141,0.05724,Office and Residential Equipment,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.20272,0.22300,0.21651,1.00000,1.00000,1.00000 +21,21,7.00000,Service industry machinery,100661650547.22247,EO60,0.15280,0.09899,0.14910,0.13307,Equipment,-0.37858,-0.00000,-0.08871,-0.05439,0.09141,0.05724,Other Equipment,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.19052,0.21080,0.20431,1.00000,1.00000,1.00000 +22,22,7.00000,Other electrical,16821590672.86298,EO72,0.18340,0.09899,0.14910,0.13307,Equipment,-0.37858,-0.00000,-0.08871,-0.05439,0.09141,0.05724,Other Equipment,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.22112,0.24140,0.23491,1.00000,1.00000,1.00000 +23,23,7.00000,Other,219586535058.33942,EO80,0.14730,0.09899,0.14910,0.13307,Equipment,-0.37858,0.00000,-0.08871,-0.05439,0.09141,0.05724,Other Equipment,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.18502,0.20530,0.19881,1.00000,1.00000,1.00000 +24,24,5.00000,Nuclear fuel,6455272413.33420,EI11,0.25000,0.09899,0.14910,0.13307,Equipment,-0.37858,-0.00000,-0.08871,-0.05439,0.09141,0.05724,Other Industrial Equipment,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.28772,0.30800,0.30151,1.00000,1.00000,1.00000 +25,25,7.00000,Other fabricated metals,117546642592.42761,EI12,0.09170,0.09899,0.14910,0.13307,Equipment,-0.37858,-0.00000,-0.08871,-0.05439,0.09141,0.05724,Other Industrial Equipment,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.12942,0.14970,0.14321,1.00000,1.00000,1.00000 +26,26,7.00000,Metalworking machinery,218890188223.75763,EI30,0.12250,0.09899,0.14910,0.13307,Equipment,-0.37858,-0.00000,-0.08871,-0.05439,0.09141,0.05724,Other Industrial Equipment,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.16022,0.18050,0.17401,1.00000,1.00000,1.00000 +27,27,15.00000,Electric transmission and distribution,423453356310.35504,EI60,0.05000,0.09899,0.14910,0.13307,Equipment,-0.37858,0.00000,-0.08871,-0.05439,0.09141,0.05724,Other Industrial Equipment,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.08772,0.10800,0.10151,1.00000,1.00000,1.00000 +28,28,7.00000,Farm tractors,24563500689.01743,EO21,0.14520,0.09899,0.14910,0.13307,Equipment,-0.37858,-0.00000,-0.08871,-0.05439,0.09141,0.05724,Other Industrial Equipment,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.18292,0.20320,0.19671,1.00000,1.00000,1.00000 +29,29,5.00000,Construction tractors,9895536358.92141,EO22,0.16330,0.09899,0.14910,0.13307,Equipment,-0.37858,-0.00000,-0.08871,-0.05439,0.09141,0.05724,Other Industrial Equipment,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.20102,0.22130,0.21481,1.00000,1.00000,1.00000 +30,30,7.00000,Other agricultural machinery,46750113836.64255,EO30,0.11790,0.09899,0.14910,0.13307,Equipment,-0.37858,-0.00000,-0.08871,-0.05439,0.09141,0.05724,Other Industrial Equipment,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.15562,0.17590,0.16941,1.00000,1.00000,1.00000 +31,31,5.00000,Other construction machinery,123582273311.10860,EO40,0.15500,0.09899,0.14910,0.13307,Equipment,-0.37858,-0.00000,-0.08871,-0.05439,0.09141,0.05724,Other Industrial Equipment,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.19272,0.21300,0.20651,1.00000,1.00000,1.00000 +32,32,7.00000,Mining and oilfield machinery,84858812348.82649,EO50,0.15000,0.09899,0.14910,0.13307,Equipment,-0.37858,0.00000,-0.08871,-0.05439,0.09141,0.05724,Other Industrial Equipment,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.18772,0.20800,0.20151,1.00000,1.00000,1.00000 +33,33,15.00000,Steam engines,91645013950.18124,EI21,0.05160,0.09899,0.14910,0.13307,Equipment,-0.37858,0.00000,-0.08871,-0.05439,0.09141,0.05724,Transportation Equipment,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.08932,0.10960,0.10311,1.00000,1.00000,1.00000 +34,34,7.00000,Internal combustion engines,12363020746.63129,EI22,0.20630,0.09899,0.14910,0.13307,Equipment,-0.37858,0.00000,-0.08871,-0.05439,0.09141,0.05724,Transportation Equipment,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.24402,0.26430,0.25781,1.00000,1.00000,1.00000 +35,35,5.00000,Light trucks (including utility vehicles),167619978534.97446,ET11,0.17250,0.09899,0.14910,0.13307,Equipment,-0.37858,-0.00000,-0.08871,-0.05439,0.09141,0.05724,Transportation Equipment,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.21022,0.23050,0.22401,1.00000,1.00000,1.00000 +36,36,5.00000,"Other trucks, buses and truck trailers",119548128283.18022,ET12,0.17250,0.09899,0.14910,0.13307,Equipment,-0.37858,-0.00000,-0.08871,-0.05439,0.09141,0.05724,Transportation Equipment,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.21022,0.23050,0.22401,1.00000,1.00000,1.00000 +37,37,5.00000,Autos,136239832216.63460,ET20,0.33330,0.09899,0.14910,0.13307,Equipment,-0.37858,-0.00000,-0.08871,-0.05439,0.09141,0.05724,Transportation Equipment,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.37102,0.39130,0.38481,1.00000,1.00000,1.00000 +38,38,5.00000,Aircraft,265993981320.40247,ET30,0.08590,0.09899,0.14910,0.13307,Equipment,-0.37858,0.00000,-0.08871,-0.05439,0.09141,0.05724,Transportation Equipment,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.12362,0.14390,0.13741,1.00000,1.00000,1.00000 +39,39,10.00000,Ships and boats,62839620239.51455,ET40,0.06110,0.09899,0.14910,0.13307,Equipment,-0.37858,0.00000,-0.08871,-0.05439,0.09141,0.05724,Transportation Equipment,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.09882,0.11910,0.11261,1.00000,1.00000,1.00000 +40,40,7.00000,Railroad equipment,109045484545.80264,ET50,0.05890,0.09899,0.14910,0.13307,Equipment,-0.37858,-0.00000,-0.08871,-0.05439,0.09141,0.05724,Transportation Equipment,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.09662,0.11690,0.11041,1.00000,1.00000,1.00000 +41,41,15.00000,Theatrical movies,157833135207.60001,AE10,0.09300,0.09899,0.14910,0.13307,Intellectual Property,-0.37858,0.00000,-0.08871,-0.05439,0.09141,0.05724,Intellectual Property,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.13072,0.15100,0.14451,1.00000,1.00000,1.00000 +42,42,15.00000,Long-lived television programs,144610873940.84000,AE20,0.16800,0.09899,0.14910,0.13307,Intellectual Property,-0.37858,0.00000,-0.08871,-0.05439,0.09141,0.05724,Intellectual Property,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.20572,0.22600,0.21951,1.00000,1.00000,1.00000 +43,43,15.00000,Books,67646468506.22700,AE30,0.12100,0.09899,0.14910,0.13307,Intellectual Property,-0.37858,-0.00000,-0.08871,-0.05439,0.09141,0.05724,Intellectual Property,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.15872,0.17900,0.17251,1.00000,1.00000,1.00000 +44,44,15.00000,Music,15406510045.27200,AE40,0.26700,0.09899,0.14910,0.13307,Intellectual Property,-0.37858,-0.00000,-0.08871,-0.05439,0.09141,0.05724,Intellectual Property,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.30472,0.32500,0.31851,1.00000,1.00000,1.00000 +45,45,15.00000,Other entertainment originals,15413496806.95360,AE50,0.10900,0.09899,0.14910,0.13307,Intellectual Property,-0.37858,-0.00000,-0.08871,-0.05439,0.09141,0.05724,Intellectual Property,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.14672,0.16700,0.16051,1.00000,1.00000,1.00000 +46,46,3.00000,Own account software,198787829234.93384,ENS3,0.33000,0.09899,0.14910,0.13307,Intellectual Property,-0.37858,-0.00000,-0.08871,-0.05439,0.09141,0.05724,Intellectual Property,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.36772,0.38800,0.38151,1.00000,1.00000,1.00000 +47,47,5.00000,Pharmaceutical and medicine manufacturing,396355667406.76001,RD11,0.10000,0.09899,0.14910,0.13307,Intellectual Property,-0.37858,0.00000,-0.08871,-0.05439,0.09141,0.05724,Intellectual Property,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.13772,0.15800,0.15151,1.00000,1.00000,1.00000 +48,48,5.00000,"Chemical manufacturing, ex. pharma and med",54399224281.87000,RD12,0.16000,0.09899,0.14910,0.13307,Intellectual Property,-0.37858,0.00000,-0.08871,-0.05439,0.09141,0.05724,Intellectual Property,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.19772,0.21800,0.21151,1.00000,1.00000,1.00000 +49,49,5.00000,Computers and peripheral equipment manufacturing,9567048384.52970,RD21,0.40000,0.09899,0.14910,0.13307,Intellectual Property,-0.37858,-0.00000,-0.08871,-0.05439,0.09141,0.05724,Intellectual Property,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.43772,0.45800,0.45151,1.00000,1.00000,1.00000 +50,50,5.00000,Communications equipment manufacturing,38393784818.37000,RD22,0.27000,0.09899,0.14910,0.13307,Intellectual Property,-0.37858,-0.00000,-0.08871,-0.05439,0.09141,0.05724,Intellectual Property,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.30772,0.32800,0.32151,1.00000,1.00000,1.00000 +51,51,5.00000,Semiconductor and other component manufacturing,83580996525.54500,RD23,0.25000,0.09899,0.14910,0.13307,Intellectual Property,-0.37858,-0.00000,-0.08871,-0.05439,0.09141,0.05724,Intellectual Property,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.28772,0.30800,0.30151,1.00000,1.00000,1.00000 +52,52,5.00000,Navigational and other instruments manufacturing,30814085766.70850,RD24,0.29000,0.09899,0.14910,0.13307,Intellectual Property,-0.37858,-0.00000,-0.08871,-0.05439,0.09141,0.05724,Intellectual Property,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.32772,0.34800,0.34151,1.00000,1.00000,1.00000 +53,53,5.00000,"Other computer and electronic manufacturing, n.e.c.",1636224416.52115,RD25,0.40000,0.09899,0.14910,0.13307,Intellectual Property,-0.37858,-0.00000,-0.08871,-0.05439,0.09141,0.05724,Intellectual Property,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.43772,0.45800,0.45151,1.00000,1.00000,1.00000 +54,54,7.00000,Motor vehicles and parts manufacturing,39313793397.90000,RD31,0.31000,0.09899,0.14910,0.13307,Intellectual Property,-0.37858,-0.00000,-0.08871,-0.05439,0.09141,0.05724,Intellectual Property,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.34772,0.36800,0.36151,1.00000,1.00000,1.00000 +55,55,7.00000,Aerospace products and parts manufacturing,33211530575.70000,RD32,0.22000,0.09899,0.14910,0.13307,Intellectual Property,-0.37858,0.00000,-0.08871,-0.05439,0.09141,0.05724,Intellectual Property,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.25772,0.27800,0.27151,1.00000,1.00000,1.00000 +56,56,3.00000,Software publishers,20657269549.44800,RD40,0.22000,0.09899,0.14910,0.13307,Intellectual Property,-0.37858,0.00000,-0.08871,-0.05439,0.09141,0.05724,Intellectual Property,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.25772,0.27800,0.27151,1.00000,1.00000,1.00000 +57,57,5.00000,Financial and real estate services,6097212063.91973,RD50,0.16000,0.09899,0.14910,0.13307,Intellectual Property,-0.37858,0.00000,-0.08871,-0.05439,0.09141,0.05724,Intellectual Property,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.19772,0.21800,0.21151,1.00000,1.00000,1.00000 +58,58,3.00000,Computer systems design and related services,6318822870.57000,RD60,0.36000,0.09899,0.14910,0.13307,Intellectual Property,-0.37858,-0.00000,-0.08871,-0.05439,0.09141,0.05724,Intellectual Property,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.39772,0.41800,0.41151,1.00000,1.00000,1.00000 +59,59,5.00000,Scientific research and development services,22814623102.40300,RD70,0.16000,0.09899,0.14910,0.13307,Intellectual Property,-0.37858,0.00000,-0.08871,-0.05439,0.09141,0.05724,Intellectual Property,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.19772,0.21800,0.21151,1.00000,1.00000,1.00000 +60,60,5.00000,"All other nonmanufacturing, n.e.c.",86239268420.74191,RD80,0.16000,0.09899,0.14910,0.13307,Intellectual Property,-0.37858,0.00000,-0.08871,-0.05439,0.09141,0.05724,Intellectual Property,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.19772,0.21800,0.21151,1.00000,1.00000,1.00000 +61,61,3.00000,Private universities and colleges,8714364638.94000,RD91,0.16000,0.09899,0.14910,0.13307,Intellectual Property,-0.37858,0.00000,-0.08871,-0.05439,0.09141,0.05724,Intellectual Property,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.19772,0.21800,0.21151,1.00000,1.00000,1.00000 +62,62,3.00000,Other nonprofit institutions,36718605375.19618,RD92,0.16000,0.09899,0.14910,0.13307,Intellectual Property,-0.37858,0.00000,-0.08871,-0.05439,0.09141,0.05724,Intellectual Property,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.19772,0.21800,0.21151,1.00000,1.00000,1.00000 +63,63,7.00000,Other manufacturing,207322515563.45129,RDOM,0.16000,0.09899,0.14910,0.13307,Intellectual Property,-0.37858,0.00000,-0.08871,-0.05439,0.09141,0.05724,Intellectual Property,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.19772,0.21800,0.21151,1.00000,1.00000,1.00000 +64,64,100.00000,Inventories,1540550422351.17505,INV,0.00000,0.14653,0.21743,0.19476,Inventories,-0.04515,0.22974,0.16460,0.20063,0.30015,0.27660,Inventories,0.04975,0.07530,0.06713,corporate,0.00998,0.02260,0.01857,0.04975,0.07530,0.06713,0.00000,0.00000,0.00000 +65,65,100.00000,Land,3586506468628.54834,LAND,0.00000,0.13860,0.21000,0.18715,Land,-0.08908,0.21000,0.13992,0.16703,0.28221,0.25522,Land,0.04775,0.07342,0.06520,corporate,0.00798,0.02072,0.01664,0.04775,0.07342,0.06520,0.00000,0.00000,0.00000 +66,66,5.00000,Petroleum and natural gas,1033008886591.34497,SM01,0.07510,0.09899,0.14910,0.13307,Structures,-0.37858,-0.00000,-0.08871,-0.05439,0.09141,0.05724,Mining and Drilling Structures,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.11282,0.13310,0.12661,1.00000,1.00000,1.00000 +67,67,7.00000,Mining,82930242550.85606,SM02,0.04500,0.09899,0.14910,0.13307,Structures,-0.37858,0.00000,-0.08871,-0.05439,0.09141,0.05724,Mining and Drilling Structures,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.08272,0.10300,0.09651,1.00000,1.00000,1.00000 +68,68,15.00000,Communication,578746604536.45056,SU20,0.02370,0.09899,0.14910,0.13307,Structures,-0.37858,-0.00000,-0.08871,-0.05439,0.09141,0.05724,Mining and Drilling Structures,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.06142,0.08170,0.07521,1.00000,1.00000,1.00000 +69,69,5.00000,Gas,365538319906.67950,SU40,0.07510,0.09899,0.14910,0.13307,Structures,-0.37858,-0.00000,-0.08871,-0.05439,0.09141,0.05724,Mining and Drilling Structures,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.11282,0.13310,0.12661,1.00000,1.00000,1.00000 +70,70,5.00000,Petroleum pipelines,112623061581.40628,SU50,0.02370,0.09899,0.14910,0.13307,Structures,-0.37858,0.00000,-0.08871,-0.05439,0.09141,0.05724,Mining and Drilling Structures,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.06142,0.08170,0.07521,1.00000,1.00000,1.00000 +71,71,39.00000,Religious,100591058771.64963,SB10,0.01880,0.12835,0.19589,0.17412,Structures,-0.15167,0.16960,0.09407,0.11916,0.24550,0.21552,Nonresidential Buildings,0.04515,0.06985,0.06190,corporate,0.00538,0.01715,0.01334,0.06395,0.08865,0.08070,0.50534,0.41976,0.44395 +72,72,39.00000,Educational and vocational,282731611173.25391,SB20,0.01880,0.13350,0.20336,0.18087,Structures,-0.11935,0.19148,0.11841,0.14388,0.26538,0.23659,Nonresidential Buildings,0.04646,0.07174,0.06361,corporate,0.00668,0.01904,0.01505,0.06526,0.09054,0.08241,0.41857,0.32717,0.35251 +73,73,39.00000,Hospitals,321465607211.49677,SB31,0.01880,0.13350,0.20336,0.18087,Structures,-0.11935,0.19148,0.11841,0.14388,0.26538,0.23659,Nonresidential Buildings,0.04646,0.07174,0.06361,corporate,0.00668,0.01904,0.01505,0.06526,0.09054,0.08241,0.41857,0.32717,0.35251 +74,74,39.00000,Special care,70115662530.64020,SB32,0.01880,0.13350,0.20336,0.18087,Structures,-0.11935,0.19148,0.11841,0.14388,0.26538,0.23659,Nonresidential Buildings,0.04646,0.07174,0.06361,corporate,0.00668,0.01904,0.01505,0.06526,0.09054,0.08241,0.41857,0.32717,0.35251 +75,75,39.00000,Lodging,171809464720.12051,SB41,0.02810,0.13918,0.20993,0.18719,Structures,-0.08575,0.20980,0.14004,0.16958,0.28203,0.25533,Nonresidential Buildings,0.04789,0.07340,0.06521,corporate,0.00812,0.02070,0.01665,0.07599,0.10150,0.09331,0.41857,0.32717,0.35251 +76,76,39.00000,Air transportation,26676130902.06076,SB43,0.02370,0.13649,0.20682,0.18420,Structures,-0.10139,0.20124,0.12994,0.15761,0.27425,0.24658,Nonresidential Buildings,0.04721,0.07261,0.06446,corporate,0.00744,0.01991,0.01589,0.07091,0.09631,0.08816,0.41857,0.32717,0.35251 +77,77,39.00000,Other transportation,3546598618.33835,SB45,0.02370,0.13649,0.20682,0.18420,Structures,-0.10139,0.20124,0.12994,0.15761,0.27425,0.24658,Nonresidential Buildings,0.04721,0.07261,0.06446,corporate,0.00744,0.01991,0.01589,0.07091,0.09631,0.08816,0.41857,0.32717,0.35251 +78,78,39.00000,Warehouses,281416771190.75391,SC01,0.02250,0.13576,0.20597,0.18338,Structures,-0.10574,0.19887,0.12714,0.15429,0.27210,0.24416,Nonresidential Buildings,0.04703,0.07240,0.06425,corporate,0.00726,0.01970,0.01569,0.06953,0.09490,0.08675,0.41857,0.32717,0.35251 +79,79,39.00000,Other commercial,342925648724.17450,SC02,0.02620,0.13802,0.20859,0.18590,Structures,-0.09245,0.20613,0.13571,0.16445,0.27869,0.25158,Nonresidential Buildings,0.04760,0.07306,0.06489,corporate,0.00783,0.02036,0.01632,0.07380,0.09926,0.09109,0.41857,0.32717,0.35251 +80,80,39.00000,Multimerchandise shopping,424453104849.45978,SC03,0.02620,0.13802,0.20859,0.18590,Structures,-0.09245,0.20613,0.13571,0.16445,0.27869,0.25158,Nonresidential Buildings,0.04760,0.07306,0.06489,corporate,0.00783,0.02036,0.01632,0.07380,0.09926,0.09109,0.41857,0.32717,0.35251 +81,81,39.00000,Food and beverage establishments,177715537880.96967,SC04,0.02620,0.13802,0.20859,0.18590,Structures,-0.09245,0.20613,0.13571,0.16445,0.27869,0.25158,Nonresidential Buildings,0.04760,0.07306,0.06489,corporate,0.00783,0.02036,0.01632,0.07380,0.09926,0.09109,0.41857,0.32717,0.35251 +82,82,39.00000,Manufacturing,1098167248468.80334,SI00,0.03140,0.14119,0.21226,0.18943,Structures,-0.07431,0.21611,0.14747,0.17833,0.28776,0.26176,Nonresidential Buildings,0.04840,0.07399,0.06578,corporate,0.00863,0.02129,0.01722,0.07980,0.10539,0.09718,0.41857,0.32717,0.35251 +83,83,39.00000,Public safety,15488160357.00830,SO03,0.02370,0.13649,0.20682,0.18420,Structures,-0.10139,0.20124,0.12994,0.15761,0.27425,0.24658,Nonresidential Buildings,0.04721,0.07261,0.06446,corporate,0.00744,0.01991,0.01589,0.07091,0.09631,0.08816,0.41857,0.32717,0.35251 +84,84,39.00000,Office,1125363275874.33521,SOO1,0.02470,0.13710,0.20753,0.18488,Structures,-0.09780,0.20320,0.13226,0.16036,0.27603,0.24859,Nonresidential Buildings,0.04737,0.07279,0.06463,corporate,0.00760,0.02009,0.01607,0.07207,0.09749,0.08933,0.41857,0.32717,0.35251 +85,85,39.00000,Medical buildings,108684928850.30258,SOO2,0.02470,0.13710,0.20753,0.18488,Structures,-0.09780,0.20320,0.13226,0.16036,0.27603,0.24859,Nonresidential Buildings,0.04737,0.07279,0.06463,corporate,0.00760,0.02009,0.01607,0.07207,0.09749,0.08933,0.41857,0.32717,0.35251 +86,86,7.00000,Amusement and recreation,163173271952.98538,SB42,0.03000,0.09899,0.14910,0.13307,Structures,-0.37858,-0.00000,-0.08871,-0.05439,0.09141,0.05724,Other Structures,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.06772,0.08800,0.08151,1.00000,1.00000,1.00000 +87,87,39.00000,Local transit structures,9253082151.44273,SB44,0.02370,0.13649,0.20682,0.18420,Structures,-0.10139,0.20124,0.12994,0.15761,0.27425,0.24658,Other Structures,0.04721,0.07261,0.06446,corporate,0.00744,0.01991,0.01589,0.07091,0.09631,0.08816,0.41857,0.32717,0.35251 +88,88,5.00000,Other land transportation,7047759108.81892,SB46,0.02370,0.09899,0.14910,0.13307,Structures,-0.37858,0.00000,-0.08871,-0.05439,0.09141,0.05724,Other Structures,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.06142,0.08170,0.07521,1.00000,1.00000,1.00000 +89,89,20.00000,Farm,109520310583.21701,SN00,0.02390,0.09899,0.14910,0.13307,Structures,-0.37858,0.00000,-0.08871,-0.05439,0.09141,0.05724,Other Structures,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.06162,0.08190,0.07541,1.00000,1.00000,1.00000 +90,90,20.00000,Water supply,41285680278.03433,SO01,0.02250,0.09899,0.14910,0.13307,Structures,-0.37858,-0.00000,-0.08871,-0.05439,0.09141,0.05724,Other Structures,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.06022,0.08050,0.07401,1.00000,1.00000,1.00000 +91,91,20.00000,Sewage and waste disposal,37655287429.62462,SO02,0.02250,0.09899,0.14910,0.13307,Structures,-0.37858,0.00000,-0.08871,-0.05439,0.09141,0.05724,Other Structures,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.06022,0.08050,0.07401,1.00000,1.00000,1.00000 +92,92,15.00000,Highway and conservation and development,22901934534.09797,SO04,0.02250,0.09899,0.14910,0.13307,Structures,-0.37858,0.00000,-0.08871,-0.05439,0.09141,0.05724,Other Structures,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.06022,0.08050,0.07401,1.00000,1.00000,1.00000 +93,93,7.00000,Mobile structures,4708544169.52466,SOMO,0.05560,0.09899,0.14910,0.13307,Structures,-0.37858,0.00000,-0.08871,-0.05439,0.09141,0.05724,Other Structures,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.09332,0.11360,0.10711,1.00000,1.00000,1.00000 +94,94,20.00000,Other railroad,135810301223.62192,SU11,0.01760,0.09899,0.14910,0.13307,Structures,-0.37858,-0.00000,-0.08871,-0.05439,0.09141,0.05724,Other Structures,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.05532,0.07560,0.06911,1.00000,1.00000,1.00000 +95,95,7.00000,Track replacement,166460169103.56049,SU12,0.02490,0.09899,0.14910,0.13307,Structures,-0.37858,-0.00000,-0.08871,-0.05439,0.09141,0.05724,Other Structures,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.06262,0.08290,0.07641,1.00000,1.00000,1.00000 +96,96,15.00000,Electric,1052404941676.51135,SU30,0.02110,0.09899,0.14910,0.13307,Structures,-0.37858,0.00000,-0.08871,-0.05439,0.09141,0.05724,Other Structures,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.05882,0.07910,0.07261,1.00000,1.00000,1.00000 +97,97,5.00000,Wind and solar,119300186300.69254,SU60,0.03030,0.09899,0.14910,0.13307,Structures,-0.37858,0.00000,-0.08871,-0.05439,0.09141,0.05724,Other Structures,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.06802,0.08830,0.08181,1.00000,1.00000,1.00000 +98,98,27.50000,Residential,333776621894.00000,RES,0.01631,0.12609,0.19380,0.17191,Structures,-0.16644,0.16325,0.08583,0.10786,0.23973,0.20839,Residential Buildings,0.04458,0.06932,0.06135,corporate,0.00481,0.01662,0.01278,0.06089,0.08563,0.07766,0.52240,0.42718,0.45450 +99,99,3.00000,Prepackaged software,22158075947.24139,ENS1,0.55000,0.17882,0.14799,0.15693,Equipment,0.08554,0.00000,0.01959,0.08554,0.00000,0.01959,Computers and Software,0.03834,0.05270,0.04853,non-corporate,0.00328,0.00000,0.00095,0.58834,0.60270,0.59853,1.00000,1.00000,1.00000 +100,100,3.00000,Custom software,60800835314.35992,ENS2,0.33000,0.17882,0.14799,0.15693,Equipment,0.08554,0.00000,0.01959,0.08554,0.00000,0.01959,Computers and Software,0.03834,0.05270,0.04853,non-corporate,0.00328,0.00000,0.00095,0.36834,0.38270,0.37853,1.00000,1.00000,1.00000 +101,101,5.00000,Mainframes,6190706381.18300,EP1A,0.46330,0.17882,0.14799,0.15693,Equipment,0.08554,-0.00000,0.01959,0.08554,-0.00000,0.01959,Computers and Software,0.03834,0.05270,0.04853,non-corporate,0.00328,-0.00000,0.00095,0.50164,0.51600,0.51183,1.00000,1.00000,1.00000 +102,102,5.00000,PCs,20612189046.26059,EP1B,0.46330,0.17882,0.14799,0.15693,Equipment,0.08554,-0.00000,0.01959,0.08554,-0.00000,0.01959,Computers and Software,0.03834,0.05270,0.04853,non-corporate,0.00328,-0.00000,0.00095,0.50164,0.51600,0.51183,1.00000,1.00000,1.00000 +103,103,5.00000,DASDs,0.00000,EP1C,0.46330,0.17882,0.14799,0.15693,Equipment,0.08554,-0.00000,0.01959,0.08554,-0.00000,0.01959,Computers and Software,0.03834,0.05270,0.04853,non-corporate,0.00328,-0.00000,0.00095,0.50164,0.51600,0.51183,1.00000,1.00000,1.00000 +104,104,5.00000,Printers,3876956088.97943,EP1D,0.46330,0.17882,0.14799,0.15693,Equipment,0.08554,-0.00000,0.01959,0.08554,-0.00000,0.01959,Computers and Software,0.03834,0.05270,0.04853,non-corporate,0.00328,-0.00000,0.00095,0.50164,0.51600,0.51183,1.00000,1.00000,1.00000 +105,105,5.00000,Terminals,5141005380.94880,EP1E,0.46330,0.17882,0.14799,0.15693,Equipment,0.08554,-0.00000,0.01959,0.08554,-0.00000,0.01959,Computers and Software,0.03834,0.05270,0.04853,non-corporate,0.00328,-0.00000,0.00095,0.50164,0.51600,0.51183,1.00000,1.00000,1.00000 +106,106,5.00000,Tape drives,0.00000,EP1F,0.46330,0.17882,0.14799,0.15693,Equipment,0.08554,-0.00000,0.01959,0.08554,-0.00000,0.01959,Computers and Software,0.03834,0.05270,0.04853,non-corporate,0.00328,-0.00000,0.00095,0.50164,0.51600,0.51183,1.00000,1.00000,1.00000 +107,107,5.00000,Storage devices,3192011590.92400,EP1G,0.46330,0.17882,0.14799,0.15693,Equipment,0.08554,-0.00000,0.01959,0.08554,-0.00000,0.01959,Computers and Software,0.03834,0.05270,0.04853,non-corporate,0.00328,-0.00000,0.00095,0.50164,0.51600,0.51183,1.00000,1.00000,1.00000 +108,108,5.00000,System integrators,11800815475.28772,EP1H,0.46330,0.17882,0.14799,0.15693,Equipment,0.08554,-0.00000,0.01959,0.08554,-0.00000,0.01959,Computers and Software,0.03834,0.05270,0.04853,non-corporate,0.00328,-0.00000,0.00095,0.50164,0.51600,0.51183,1.00000,1.00000,1.00000 +109,109,7.00000,Special industrial machinery,56031412759.69572,EI40,0.10310,0.17882,0.14799,0.15693,Equipment,0.08554,-0.00000,0.01959,0.08554,-0.00000,0.01959,Industrial Machinery,0.03834,0.05270,0.04853,non-corporate,0.00328,-0.00000,0.00095,0.14144,0.15580,0.15163,1.00000,1.00000,1.00000 +110,110,7.00000,General industrial equipment,114662497838.17902,EI50,0.10720,0.17882,0.14799,0.15693,Equipment,0.08554,0.00000,0.01959,0.08554,0.00000,0.01959,Industrial Machinery,0.03834,0.05270,0.04853,non-corporate,0.00328,0.00000,0.00095,0.14554,0.15990,0.15573,1.00000,1.00000,1.00000 +111,111,5.00000,Office and accounting equipment,2542388832.96892,EP12,0.31190,0.17882,0.14799,0.15693,Equipment,0.08554,0.00000,0.01959,0.08554,0.00000,0.01959,Instruments and Communications Equipment,0.03834,0.05270,0.04853,non-corporate,0.00328,0.00000,0.00095,0.35024,0.36460,0.36043,1.00000,1.00000,1.00000 +112,112,7.00000,Communications,102468863895.39655,EP20,0.11290,0.17882,0.14799,0.15693,Equipment,0.08554,0.00000,0.01959,0.08554,0.00000,0.01959,Instruments and Communications Equipment,0.03834,0.05270,0.04853,non-corporate,0.00328,0.00000,0.00095,0.15124,0.16560,0.16143,1.00000,1.00000,1.00000 +113,113,5.00000,Photocopy and related equipment,10079053795.00768,EP31,0.18000,0.17882,0.14799,0.15693,Equipment,0.08554,-0.00000,0.01959,0.08554,-0.00000,0.01959,Instruments and Communications Equipment,0.03834,0.05270,0.04853,non-corporate,0.00328,-0.00000,0.00095,0.21834,0.23270,0.22853,1.00000,1.00000,1.00000 +114,114,7.00000,Nonelectro medical instruments,111916495412.21930,EP34,0.13500,0.17882,0.14799,0.15693,Equipment,0.08554,0.00000,0.01959,0.08554,0.00000,0.01959,Instruments and Communications Equipment,0.03834,0.05270,0.04853,non-corporate,0.00328,0.00000,0.00095,0.17334,0.18770,0.18353,1.00000,1.00000,1.00000 +115,115,7.00000,Electro medical instruments,65668171777.05855,EP35,0.13500,0.17882,0.14799,0.15693,Equipment,0.08554,0.00000,0.01959,0.08554,0.00000,0.01959,Instruments and Communications Equipment,0.03834,0.05270,0.04853,non-corporate,0.00328,0.00000,0.00095,0.17334,0.18770,0.18353,1.00000,1.00000,1.00000 +116,116,7.00000,Nonmedical instruments,59590066982.74078,EP36,0.13500,0.17882,0.14799,0.15693,Equipment,0.08554,0.00000,0.01959,0.08554,0.00000,0.01959,Instruments and Communications Equipment,0.03834,0.05270,0.04853,non-corporate,0.00328,0.00000,0.00095,0.17334,0.18770,0.18353,1.00000,1.00000,1.00000 +117,117,5.00000,Household furniture,8579128473.70233,EO11,0.13750,0.17882,0.14799,0.15693,Equipment,0.08554,0.00000,0.01959,0.08554,0.00000,0.01959,Office and Residential Equipment,0.03834,0.05270,0.04853,non-corporate,0.00328,0.00000,0.00095,0.17584,0.19020,0.18603,1.00000,1.00000,1.00000 +118,118,7.00000,Other furniture,97670828983.20677,EO12,0.11790,0.17882,0.14799,0.15693,Equipment,0.08554,0.00000,0.01959,0.08554,0.00000,0.01959,Office and Residential Equipment,0.03834,0.05270,0.04853,non-corporate,0.00328,0.00000,0.00095,0.15624,0.17060,0.16643,1.00000,1.00000,1.00000 +119,119,5.00000,Household appliances,2193695747.80152,EO71,0.16500,0.17882,0.14799,0.15693,Equipment,0.08554,-0.00000,0.01959,0.08554,-0.00000,0.01959,Office and Residential Equipment,0.03834,0.05270,0.04853,non-corporate,0.00328,-0.00000,0.00095,0.20334,0.21770,0.21353,1.00000,1.00000,1.00000 +120,120,7.00000,Service industry machinery,66122349452.24888,EO60,0.15280,0.17882,0.14799,0.15693,Equipment,0.08554,0.00000,0.01959,0.08554,0.00000,0.01959,Other Equipment,0.03834,0.05270,0.04853,non-corporate,0.00328,0.00000,0.00095,0.19114,0.20550,0.20133,1.00000,1.00000,1.00000 +121,121,7.00000,Other electrical,3542409326.71975,EO72,0.18340,0.17882,0.14799,0.15693,Equipment,0.08554,0.00000,0.01959,0.08554,0.00000,0.01959,Other Equipment,0.03834,0.05270,0.04853,non-corporate,0.00328,0.00000,0.00095,0.22174,0.23610,0.23193,1.00000,1.00000,1.00000 +122,122,7.00000,Other,106207464937.46689,EO80,0.14730,0.17882,0.14799,0.15693,Equipment,0.08554,0.00000,0.01959,0.08554,0.00000,0.01959,Other Equipment,0.03834,0.05270,0.04853,non-corporate,0.00328,0.00000,0.00095,0.18564,0.20000,0.19583,1.00000,1.00000,1.00000 +123,123,5.00000,Nuclear fuel,357727587.15623,EI11,0.25000,0.17882,0.14799,0.15693,Equipment,0.08554,0.00000,0.01959,0.08554,0.00000,0.01959,Other Industrial Equipment,0.03834,0.05270,0.04853,non-corporate,0.00328,0.00000,0.00095,0.28834,0.30270,0.29853,1.00000,1.00000,1.00000 +124,124,7.00000,Other fabricated metals,36269357406.68746,EI12,0.09170,0.17882,0.14799,0.15693,Equipment,0.08554,0.00000,0.01959,0.08554,0.00000,0.01959,Other Industrial Equipment,0.03834,0.05270,0.04853,non-corporate,0.00328,0.00000,0.00095,0.13004,0.14440,0.14023,1.00000,1.00000,1.00000 +125,125,7.00000,Metalworking machinery,40483811779.61037,EI30,0.12250,0.17882,0.14799,0.15693,Equipment,0.08554,0.00000,0.01959,0.08554,0.00000,0.01959,Other Industrial Equipment,0.03834,0.05270,0.04853,non-corporate,0.00328,0.00000,0.00095,0.16084,0.17520,0.17103,1.00000,1.00000,1.00000 +126,126,15.00000,Electric transmission and distribution,41257755573.28319,EI60,0.05000,0.17882,0.14799,0.15693,Equipment,0.08554,-0.00000,0.01959,0.08554,-0.00000,0.01959,Other Industrial Equipment,0.03834,0.05270,0.04853,non-corporate,0.00328,-0.00000,0.00095,0.08834,0.10270,0.09853,1.00000,1.00000,1.00000 +127,127,7.00000,Farm tractors,30621499311.60472,EO21,0.14520,0.17882,0.14799,0.15693,Equipment,0.08554,0.00000,0.01959,0.08554,0.00000,0.01959,Other Industrial Equipment,0.03834,0.05270,0.04853,non-corporate,0.00328,0.00000,0.00095,0.18354,0.19790,0.19373,1.00000,1.00000,1.00000 +128,128,5.00000,Construction tractors,3719463640.44892,EO22,0.16330,0.17882,0.14799,0.15693,Equipment,0.08554,0.00000,0.01959,0.08554,0.00000,0.01959,Other Industrial Equipment,0.03834,0.05270,0.04853,non-corporate,0.00328,0.00000,0.00095,0.20164,0.21600,0.21183,1.00000,1.00000,1.00000 +129,129,7.00000,Other agricultural machinery,80549886162.69899,EO30,0.11790,0.17882,0.14799,0.15693,Equipment,0.08554,0.00000,0.01959,0.08554,0.00000,0.01959,Other Industrial Equipment,0.03834,0.05270,0.04853,non-corporate,0.00328,0.00000,0.00095,0.15624,0.17060,0.16643,1.00000,1.00000,1.00000 +130,130,5.00000,Other construction machinery,98513726689.52679,EO40,0.15500,0.17882,0.14799,0.15693,Equipment,0.08554,0.00000,0.01959,0.08554,0.00000,0.01959,Other Industrial Equipment,0.03834,0.05270,0.04853,non-corporate,0.00328,0.00000,0.00095,0.19334,0.20770,0.20353,1.00000,1.00000,1.00000 +131,131,7.00000,Mining and oilfield machinery,18092187649.22342,EO50,0.15000,0.17882,0.14799,0.15693,Equipment,0.08554,-0.00000,0.01959,0.08554,-0.00000,0.01959,Other Industrial Equipment,0.03834,0.05270,0.04853,non-corporate,0.00328,-0.00000,0.00095,0.18834,0.20270,0.19853,1.00000,1.00000,1.00000 +132,132,15.00000,Steam engines,6902986050.14308,EI21,0.05160,0.17882,0.14799,0.15693,Equipment,0.08554,0.00000,0.01959,0.08554,0.00000,0.01959,Transportation Equipment,0.03834,0.05270,0.04853,non-corporate,0.00328,0.00000,0.00095,0.08994,0.10430,0.10013,1.00000,1.00000,1.00000 +133,133,7.00000,Internal combustion engines,1555979253.60812,EI22,0.20630,0.17882,0.14799,0.15693,Equipment,0.08554,-0.00000,0.01959,0.08554,-0.00000,0.01959,Transportation Equipment,0.03834,0.05270,0.04853,non-corporate,0.00328,-0.00000,0.00095,0.24464,0.25900,0.25483,1.00000,1.00000,1.00000 +134,134,5.00000,Light trucks (including utility vehicles),77738021463.51085,ET11,0.17250,0.17882,0.14799,0.15693,Equipment,0.08554,0.00000,0.01959,0.08554,0.00000,0.01959,Transportation Equipment,0.03834,0.05270,0.04853,non-corporate,0.00328,0.00000,0.00095,0.21084,0.22520,0.22103,1.00000,1.00000,1.00000 +135,135,5.00000,"Other trucks, buses and truck trailers",52902871715.14603,ET12,0.17250,0.17882,0.14799,0.15693,Equipment,0.08554,0.00000,0.01959,0.08554,0.00000,0.01959,Transportation Equipment,0.03834,0.05270,0.04853,non-corporate,0.00328,0.00000,0.00095,0.21084,0.22520,0.22103,1.00000,1.00000,1.00000 +136,136,5.00000,Autos,47539167782.38700,ET20,0.33330,0.17882,0.14799,0.15693,Equipment,0.08554,-0.00000,0.01959,0.08554,-0.00000,0.01959,Transportation Equipment,0.03834,0.05270,0.04853,non-corporate,0.00328,-0.00000,0.00095,0.37164,0.38600,0.38183,1.00000,1.00000,1.00000 +137,137,5.00000,Aircraft,86223598874.83788,ET30,0.08590,0.17882,0.14799,0.15693,Equipment,0.08554,-0.00000,0.01959,0.08554,-0.00000,0.01959,Transportation Equipment,0.03834,0.05270,0.04853,non-corporate,0.00328,-0.00000,0.00095,0.12424,0.13860,0.13443,1.00000,1.00000,1.00000 +138,138,10.00000,Ships and boats,16387379759.80567,ET40,0.06110,0.17882,0.14799,0.15693,Equipment,0.08554,-0.00000,0.01959,0.08554,-0.00000,0.01959,Transportation Equipment,0.03834,0.05270,0.04853,non-corporate,0.00328,-0.00000,0.00095,0.09944,0.11380,0.10963,1.00000,1.00000,1.00000 +139,139,7.00000,Railroad equipment,29964515454.02116,ET50,0.05890,0.17882,0.14799,0.15693,Equipment,0.08554,-0.00000,0.01959,0.08554,-0.00000,0.01959,Transportation Equipment,0.03834,0.05270,0.04853,non-corporate,0.00328,-0.00000,0.00095,0.09724,0.11160,0.10743,1.00000,1.00000,1.00000 +140,140,15.00000,Theatrical movies,18409754458.46626,AE10,0.09300,0.17882,0.14799,0.15693,Intellectual Property,0.08554,-0.00000,0.01959,0.08554,-0.00000,0.01959,Intellectual Property,0.03834,0.05270,0.04853,non-corporate,0.00328,-0.00000,0.00095,0.13134,0.14570,0.14153,1.00000,1.00000,1.00000 +141,141,15.00000,Long-lived television programs,14909126060.40839,AE20,0.16800,0.17882,0.14799,0.15693,Intellectual Property,0.08554,-0.00000,0.01959,0.08554,-0.00000,0.01959,Intellectual Property,0.03834,0.05270,0.04853,non-corporate,0.00328,-0.00000,0.00095,0.20634,0.22070,0.21653,1.00000,1.00000,1.00000 +142,142,15.00000,Books,14215531494.34945,AE30,0.12100,0.17882,0.14799,0.15693,Intellectual Property,0.08554,0.00000,0.01959,0.08554,0.00000,0.01959,Intellectual Property,0.03834,0.05270,0.04853,non-corporate,0.00328,0.00000,0.00095,0.15934,0.17370,0.16953,1.00000,1.00000,1.00000 +143,143,15.00000,Music,8069489954.09881,AE40,0.26700,0.17882,0.14799,0.15693,Intellectual Property,0.08554,0.00000,0.01959,0.08554,0.00000,0.01959,Intellectual Property,0.03834,0.05270,0.04853,non-corporate,0.00328,0.00000,0.00095,0.30534,0.31970,0.31553,1.00000,1.00000,1.00000 +144,144,15.00000,Other entertainment originals,11674503193.39874,AE50,0.10900,0.17882,0.14799,0.15693,Intellectual Property,0.08554,-0.00000,0.01959,0.08554,-0.00000,0.01959,Intellectual Property,0.03834,0.05270,0.04853,non-corporate,0.00328,-0.00000,0.00095,0.14734,0.16170,0.15753,1.00000,1.00000,1.00000 +145,145,3.00000,Own account software,63396170766.96828,ENS3,0.33000,0.17882,0.14799,0.15693,Intellectual Property,0.08554,0.00000,0.01959,0.08554,0.00000,0.01959,Intellectual Property,0.03834,0.05270,0.04853,non-corporate,0.00328,0.00000,0.00095,0.36834,0.38270,0.37853,1.00000,1.00000,1.00000 +146,146,5.00000,Pharmaceutical and medicine manufacturing,68720410526.40900,RD11,0.10000,0.17882,0.14799,0.15693,Intellectual Property,0.08554,-0.00000,0.01959,0.08554,-0.00000,0.01959,Intellectual Property,0.03834,0.05270,0.04853,non-corporate,0.00328,-0.00000,0.00095,0.13834,0.15270,0.14853,1.00000,1.00000,1.00000 +147,147,5.00000,"Chemical manufacturing, ex. pharma and med",9431775719.32930,RD12,0.16000,0.17882,0.14799,0.15693,Intellectual Property,0.08554,-0.00000,0.01959,0.08554,-0.00000,0.01959,Intellectual Property,0.03834,0.05270,0.04853,non-corporate,0.00328,-0.00000,0.00095,0.19834,0.21270,0.20853,1.00000,1.00000,1.00000 +148,148,5.00000,Computers and peripheral equipment manufacturing,1249951615.14700,RD21,0.40000,0.17882,0.14799,0.15693,Intellectual Property,0.08554,-0.00000,0.01959,0.08554,-0.00000,0.01959,Intellectual Property,0.03834,0.05270,0.04853,non-corporate,0.00328,-0.00000,0.00095,0.43834,0.45270,0.44853,1.00000,1.00000,1.00000 +149,149,5.00000,Communications equipment manufacturing,5016215180.93255,RD22,0.27000,0.17882,0.14799,0.15693,Intellectual Property,0.08554,0.00000,0.01959,0.08554,0.00000,0.01959,Intellectual Property,0.03834,0.05270,0.04853,non-corporate,0.00328,0.00000,0.00095,0.30834,0.32270,0.31853,1.00000,1.00000,1.00000 +150,150,5.00000,Semiconductor and other component manufacturing,10920003474.83112,RD23,0.25000,0.17882,0.14799,0.15693,Intellectual Property,0.08554,0.00000,0.01959,0.08554,0.00000,0.01959,Intellectual Property,0.03834,0.05270,0.04853,non-corporate,0.00328,0.00000,0.00095,0.28834,0.30270,0.29853,1.00000,1.00000,1.00000 +151,151,5.00000,Navigational and other instruments manufacturing,4025914234.82626,RD24,0.29000,0.17882,0.14799,0.15693,Intellectual Property,0.08554,0.00000,0.01959,0.08554,0.00000,0.01959,Intellectual Property,0.03834,0.05270,0.04853,non-corporate,0.00328,0.00000,0.00095,0.32834,0.34270,0.33853,1.00000,1.00000,1.00000 +152,152,5.00000,"Other computer and electronic manufacturing, n.e.c.",213775583.63471,RD25,0.40000,0.17882,0.14799,0.15693,Intellectual Property,0.08554,-0.00000,0.01959,0.08554,-0.00000,0.01959,Intellectual Property,0.03834,0.05270,0.04853,non-corporate,0.00328,-0.00000,0.00095,0.43834,0.45270,0.44853,1.00000,1.00000,1.00000 +153,153,7.00000,Motor vehicles and parts manufacturing,5835206602.12800,RD31,0.31000,0.17882,0.14799,0.15693,Intellectual Property,0.08554,0.00000,0.01959,0.08554,0.00000,0.01959,Intellectual Property,0.03834,0.05270,0.04853,non-corporate,0.00328,0.00000,0.00095,0.34834,0.36270,0.35853,1.00000,1.00000,1.00000 +154,154,7.00000,Aerospace products and parts manufacturing,4929469423.57540,RD32,0.22000,0.17882,0.14799,0.15693,Intellectual Property,0.08554,-0.00000,0.01959,0.08554,-0.00000,0.01959,Intellectual Property,0.03834,0.05270,0.04853,non-corporate,0.00328,-0.00000,0.00095,0.25834,0.27270,0.26853,1.00000,1.00000,1.00000 +155,155,3.00000,Software publishers,949730450.60092,RD40,0.22000,0.17882,0.14799,0.15693,Intellectual Property,0.08554,-0.00000,0.01959,0.08554,-0.00000,0.01959,Intellectual Property,0.03834,0.05270,0.04853,non-corporate,0.00328,-0.00000,0.00095,0.25834,0.27270,0.26853,1.00000,1.00000,1.00000 +156,156,5.00000,Financial and real estate services,1540787936.30553,RD50,0.16000,0.17882,0.14799,0.15693,Intellectual Property,0.08554,-0.00000,0.01959,0.08554,-0.00000,0.01959,Intellectual Property,0.03834,0.05270,0.04853,non-corporate,0.00328,-0.00000,0.00095,0.19834,0.21270,0.20853,1.00000,1.00000,1.00000 +157,157,3.00000,Computer systems design and related services,5115177129.21372,RD60,0.36000,0.17882,0.14799,0.15693,Intellectual Property,0.08554,0.00000,0.01959,0.08554,0.00000,0.01959,Intellectual Property,0.03834,0.05270,0.04853,non-corporate,0.00328,0.00000,0.00095,0.39834,0.41270,0.40853,1.00000,1.00000,1.00000 +158,158,5.00000,Scientific research and development services,22860376897.47077,RD70,0.16000,0.17882,0.14799,0.15693,Intellectual Property,0.08554,-0.00000,0.01959,0.08554,-0.00000,0.01959,Intellectual Property,0.03834,0.05270,0.04853,non-corporate,0.00328,-0.00000,0.00095,0.19834,0.21270,0.20853,1.00000,1.00000,1.00000 +159,159,5.00000,"All other nonmanufacturing, n.e.c.",33402731579.63615,RD80,0.16000,0.17882,0.14799,0.15693,Intellectual Property,0.08554,-0.00000,0.01959,0.08554,-0.00000,0.01959,Intellectual Property,0.03834,0.05270,0.04853,non-corporate,0.00328,-0.00000,0.00095,0.19834,0.21270,0.20853,1.00000,1.00000,1.00000 +160,160,3.00000,Private universities and colleges,6064635361.65000,RD91,0.16000,0.17882,0.14799,0.15693,Intellectual Property,0.08554,-0.00000,0.01959,0.08554,-0.00000,0.01959,Intellectual Property,0.03834,0.05270,0.04853,non-corporate,0.00328,-0.00000,0.00095,0.19834,0.21270,0.20853,1.00000,1.00000,1.00000 +161,161,3.00000,Other nonprofit institutions,44957394625.31660,RD92,0.16000,0.17882,0.14799,0.15693,Intellectual Property,0.08554,-0.00000,0.01959,0.08554,-0.00000,0.01959,Intellectual Property,0.03834,0.05270,0.04853,non-corporate,0.00328,-0.00000,0.00095,0.19834,0.21270,0.20853,1.00000,1.00000,1.00000 +162,162,7.00000,Other manufacturing,31261484438.19672,RDOM,0.16000,0.17882,0.14799,0.15693,Intellectual Property,0.08554,-0.00000,0.01959,0.08554,-0.00000,0.01959,Intellectual Property,0.03834,0.05270,0.04853,non-corporate,0.00328,-0.00000,0.00095,0.19834,0.21270,0.20853,1.00000,1.00000,1.00000 +163,163,100.00000,Inventories,903249577643.82080,INV,0.00000,0.22491,0.20820,0.21306,Inventories,0.29708,0.22237,0.23966,0.29708,0.22237,0.23966,Inventories,0.04987,0.06777,0.06258,non-corporate,0.01482,0.01507,0.01500,0.04987,0.06777,0.06258,0.00000,0.00000,0.00000 +164,164,100.00000,Land,9085892640842.86914,LAND,0.00000,0.21733,0.20094,0.20569,Land,0.26929,0.20094,0.21660,0.26929,0.20094,0.21660,Land,0.04798,0.06595,0.06074,non-corporate,0.01292,0.01325,0.01316,0.04798,0.06595,0.06074,0.00000,0.00000,0.00000 +165,165,5.00000,Petroleum and natural gas,212937915737.62860,SM01,0.07510,0.17882,0.14799,0.15693,Structures,0.08554,0.00000,0.01959,0.08554,0.00000,0.01959,Mining and Drilling Structures,0.03834,0.05270,0.04853,non-corporate,0.00328,0.00000,0.00095,0.11344,0.12780,0.12363,1.00000,1.00000,1.00000 +166,166,7.00000,Mining,17079757447.87507,SM02,0.04500,0.17882,0.14799,0.15693,Structures,0.08554,0.00000,0.01959,0.08554,0.00000,0.01959,Mining and Drilling Structures,0.03834,0.05270,0.04853,non-corporate,0.00328,0.00000,0.00095,0.08334,0.09770,0.09353,1.00000,1.00000,1.00000 +167,167,15.00000,Communication,54922065479.18448,SU20,0.02370,0.17882,0.14799,0.15693,Structures,0.08554,0.00000,0.01959,0.08554,0.00000,0.01959,Mining and Drilling Structures,0.03834,0.05270,0.04853,non-corporate,0.00328,0.00000,0.00095,0.06204,0.07640,0.07223,1.00000,1.00000,1.00000 +168,168,5.00000,Gas,31446708032.77039,SU40,0.07510,0.17882,0.14799,0.15693,Structures,0.08554,0.00000,0.01959,0.08554,0.00000,0.01959,Mining and Drilling Structures,0.03834,0.05270,0.04853,non-corporate,0.00328,0.00000,0.00095,0.11344,0.12780,0.12363,1.00000,1.00000,1.00000 +169,169,5.00000,Petroleum pipelines,20777938418.31212,SU50,0.02370,0.17882,0.14799,0.15693,Structures,0.08554,0.00000,0.01959,0.08554,0.00000,0.01959,Mining and Drilling Structures,0.03834,0.05270,0.04853,non-corporate,0.00328,0.00000,0.00095,0.06204,0.07640,0.07223,1.00000,1.00000,1.00000 +170,170,39.00000,Religious,198115941229.36139,SB10,0.01880,0.20739,0.18827,0.19374,Structures,0.22931,0.16058,0.17599,0.22931,0.16058,0.17599,Nonresidential Buildings,0.04549,0.06278,0.05775,non-corporate,0.01043,0.01008,0.01016,0.06429,0.08158,0.07655,0.50226,0.43932,0.45597 +171,171,39.00000,Educational and vocational,212838725537.27460,SB20,0.01880,0.21239,0.19486,0.19987,Structures,0.24993,0.18205,0.19734,0.24993,0.18205,0.19734,Nonresidential Buildings,0.04674,0.06443,0.05928,non-corporate,0.01168,0.01173,0.01170,0.06554,0.08323,0.07808,0.41520,0.34763,0.36526 +172,172,39.00000,Hospitals,335377700162.39520,SB31,0.01880,0.21239,0.19486,0.19987,Structures,0.24993,0.18205,0.19734,0.24993,0.18205,0.19734,Nonresidential Buildings,0.04674,0.06443,0.05928,non-corporate,0.01168,0.01173,0.01170,0.06554,0.08323,0.07808,0.41520,0.34763,0.36526 +173,173,39.00000,Special care,75652337468.16002,SB32,0.01880,0.21239,0.19486,0.19987,Structures,0.24993,0.18205,0.19734,0.24993,0.18205,0.19734,Nonresidential Buildings,0.04674,0.06443,0.05928,non-corporate,0.01168,0.01173,0.01170,0.06554,0.08323,0.07808,0.41520,0.34763,0.36526 +174,174,39.00000,Lodging,333097535279.52374,SB41,0.02810,0.21785,0.20095,0.20580,Structures,0.27126,0.20098,0.21695,0.27126,0.20098,0.21695,Nonresidential Buildings,0.04811,0.06595,0.06077,non-corporate,0.01305,0.01326,0.01318,0.07621,0.09405,0.08887,0.41520,0.34763,0.36526 +175,175,39.00000,Air transportation,6522869098.36936,SB43,0.02370,0.21527,0.19807,0.20300,Structures,0.26132,0.19213,0.20779,0.26132,0.19213,0.20779,Nonresidential Buildings,0.04746,0.06523,0.06006,non-corporate,0.01240,0.01253,0.01248,0.07116,0.08893,0.08376,0.41520,0.34763,0.36526 +176,176,39.00000,Other transportation,1255401381.70107,SB45,0.02370,0.21527,0.19807,0.20300,Structures,0.26132,0.19213,0.20779,0.26132,0.19213,0.20779,Nonresidential Buildings,0.04746,0.06523,0.06006,non-corporate,0.01240,0.01253,0.01248,0.07116,0.08893,0.08376,0.41520,0.34763,0.36526 +177,177,39.00000,Warehouses,129247228808.96722,SC01,0.02250,0.21456,0.19728,0.20223,Structures,0.25856,0.18969,0.20526,0.25856,0.18969,0.20526,Nonresidential Buildings,0.04728,0.06503,0.05987,non-corporate,0.01223,0.01234,0.01229,0.06978,0.08753,0.08237,0.41520,0.34763,0.36526 +178,178,39.00000,Other commercial,167854351277.22626,SC02,0.02620,0.21674,0.19971,0.20459,Structures,0.26700,0.19718,0.21302,0.26700,0.19718,0.21302,Nonresidential Buildings,0.04783,0.06564,0.06046,non-corporate,0.01277,0.01294,0.01288,0.07403,0.09184,0.08666,0.41520,0.34763,0.36526 +179,179,39.00000,Multimerchandise shopping,242344895152.75317,SC03,0.02620,0.21674,0.19971,0.20459,Structures,0.26700,0.19718,0.21302,0.26700,0.19718,0.21302,Nonresidential Buildings,0.04783,0.06564,0.06046,non-corporate,0.01277,0.01294,0.01288,0.07403,0.09184,0.08666,0.41520,0.34763,0.36526 +180,180,39.00000,Food and beverage establishments,142536462115.36786,SC04,0.02620,0.21674,0.19971,0.20459,Structures,0.26700,0.19718,0.21302,0.26700,0.19718,0.21302,Nonresidential Buildings,0.04783,0.06564,0.06046,non-corporate,0.01277,0.01294,0.01288,0.07403,0.09184,0.08666,0.41520,0.34763,0.36526 +181,181,39.00000,Manufacturing,312763751528.73279,SI00,0.03140,0.21979,0.20311,0.20791,Structures,0.27853,0.20748,0.22368,0.27853,0.20748,0.22368,Nonresidential Buildings,0.04859,0.06649,0.06129,non-corporate,0.01353,0.01380,0.01371,0.07999,0.09789,0.09269,0.41520,0.34763,0.36526 +182,182,39.00000,Public safety,10144839642.53934,SO03,0.02370,0.21527,0.19807,0.20300,Structures,0.26132,0.19213,0.20779,0.26132,0.19213,0.20779,Nonresidential Buildings,0.04746,0.06523,0.06006,non-corporate,0.01240,0.01253,0.01248,0.07116,0.08893,0.08376,0.41520,0.34763,0.36526 +183,183,39.00000,Office,595428227069.28125,SOO1,0.02470,0.21586,0.19872,0.20364,Structures,0.26360,0.19416,0.20989,0.26360,0.19416,0.20989,Nonresidential Buildings,0.04761,0.06540,0.06022,non-corporate,0.01255,0.01270,0.01264,0.07231,0.09010,0.08492,0.41520,0.34763,0.36526 +184,184,39.00000,Medical buildings,100075071146.99706,SOO2,0.02470,0.21586,0.19872,0.20364,Structures,0.26360,0.19416,0.20989,0.26360,0.19416,0.20989,Nonresidential Buildings,0.04761,0.06540,0.06022,non-corporate,0.01255,0.01270,0.01264,0.07231,0.09010,0.08492,0.41520,0.34763,0.36526 +185,185,7.00000,Amusement and recreation,164426728047.02826,SB42,0.03000,0.17882,0.14799,0.15693,Structures,0.08554,0.00000,0.01959,0.08554,0.00000,0.01959,Other Structures,0.03834,0.05270,0.04853,non-corporate,0.00328,0.00000,0.00095,0.06834,0.08270,0.07853,1.00000,1.00000,1.00000 +186,186,39.00000,Local transit structures,2713917848.41494,SB44,0.02370,0.21527,0.19807,0.20300,Structures,0.26132,0.19213,0.20779,0.26132,0.19213,0.20779,Other Structures,0.04746,0.06523,0.06006,non-corporate,0.01240,0.01253,0.01248,0.07116,0.08893,0.08376,0.41520,0.34763,0.36526 +187,187,5.00000,Other land transportation,4956240890.72790,SB46,0.02370,0.17882,0.14799,0.15693,Structures,0.08554,0.00000,0.01959,0.08554,0.00000,0.01959,Other Structures,0.03834,0.05270,0.04853,non-corporate,0.00328,0.00000,0.00095,0.06204,0.07640,0.07223,1.00000,1.00000,1.00000 +188,188,20.00000,Farm,210718689415.62762,SN00,0.02390,0.17882,0.14799,0.15693,Structures,0.08554,-0.00000,0.01959,0.08554,-0.00000,0.01959,Other Structures,0.03834,0.05270,0.04853,non-corporate,0.00328,-0.00000,0.00095,0.06224,0.07660,0.07243,1.00000,1.00000,1.00000 +189,189,20.00000,Water supply,17351319722.49404,SO01,0.02250,0.17882,0.14799,0.15693,Structures,0.08554,0.00000,0.01959,0.08554,0.00000,0.01959,Other Structures,0.03834,0.05270,0.04853,non-corporate,0.00328,0.00000,0.00095,0.06084,0.07520,0.07103,1.00000,1.00000,1.00000 +190,190,20.00000,Sewage and waste disposal,18704712570.11411,SO02,0.02250,0.17882,0.14799,0.15693,Structures,0.08554,0.00000,0.01959,0.08554,0.00000,0.01959,Other Structures,0.03834,0.05270,0.04853,non-corporate,0.00328,0.00000,0.00095,0.06084,0.07520,0.07103,1.00000,1.00000,1.00000 +191,191,15.00000,Highway and conservation and development,14651065465.71158,SO04,0.02250,0.17882,0.14799,0.15693,Structures,0.08554,0.00000,0.01959,0.08554,0.00000,0.01959,Other Structures,0.03834,0.05270,0.04853,non-corporate,0.00328,0.00000,0.00095,0.06084,0.07520,0.07103,1.00000,1.00000,1.00000 +192,192,7.00000,Mobile structures,3986455830.48833,SOMO,0.05560,0.17882,0.14799,0.15693,Structures,0.08554,0.00000,0.01959,0.08554,0.00000,0.01959,Other Structures,0.03834,0.05270,0.04853,non-corporate,0.00328,0.00000,0.00095,0.09394,0.10830,0.10413,1.00000,1.00000,1.00000 +193,193,20.00000,Other railroad,35355401894.74462,SU11,0.01760,0.17882,0.14799,0.15693,Structures,0.08554,0.00000,0.01959,0.08554,0.00000,0.01959,Other Structures,0.03834,0.05270,0.04853,non-corporate,0.00328,0.00000,0.00095,0.05594,0.07030,0.06613,1.00000,1.00000,1.00000 +194,194,7.00000,Track replacement,41586561300.50691,SU12,0.02490,0.17882,0.14799,0.15693,Structures,0.08554,0.00000,0.01959,0.08554,0.00000,0.01959,Other Structures,0.03834,0.05270,0.04853,non-corporate,0.00328,0.00000,0.00095,0.06324,0.07760,0.07343,1.00000,1.00000,1.00000 +195,195,15.00000,Electric,70225622111.33885,SU30,0.02110,0.17882,0.14799,0.15693,Structures,0.08554,0.00000,0.01959,0.08554,0.00000,0.01959,Other Structures,0.03834,0.05270,0.04853,non-corporate,0.00328,0.00000,0.00095,0.05944,0.07380,0.06963,1.00000,1.00000,1.00000 +196,196,5.00000,Wind and solar,13828813701.93123,SU60,0.03030,0.17882,0.14799,0.15693,Structures,0.08554,0.00000,0.01959,0.08554,0.00000,0.01959,Other Structures,0.03834,0.05270,0.04853,non-corporate,0.00328,0.00000,0.00095,0.06864,0.08300,0.07883,1.00000,1.00000,1.00000 +197,197,27.50000,Residential,1251223923087.89990,RES,0.01631,0.20523,0.18618,0.19160,Structures,0.22001,0.15352,0.16828,0.22001,0.15352,0.16828,Residential Buildings,0.04495,0.06226,0.05721,non-corporate,0.00989,0.00956,0.00963,0.06126,0.07857,0.07352,0.51905,0.44929,0.46795 +198,198,3.64718,Computers and Software,398439404770.52747,,0.41304,0.09899,0.14910,0.13307,Equipment,-0.37858,0.00000,-0.08871,-0.05439,0.09141,0.05724,Computers and Software,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.45076,0.47104,0.46455,1.00000,1.00000,1.00000 +199,199,7.00000,Industrial Machinery,754098089405.10413,,0.10569,0.09899,0.14910,0.13307,Equipment,-0.37858,0.00000,-0.08871,-0.05439,0.09141,0.05724,Industrial Machinery,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.14341,0.16369,0.15720,1.00000,1.00000,1.00000 +200,200,6.92378,Instruments and Communications Equipment,847266548005.08252,,0.12485,0.09899,0.14910,0.13307,Equipment,-0.37858,-0.00000,-0.08871,-0.05439,0.09141,0.05724,Instruments and Communications Equipment,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.16257,0.18285,0.17636,1.00000,1.00000,1.00000 +201,201,7.39403,Intellectual Property,1681853350900.40088,,0.17644,0.09899,0.14910,0.13307,Intellectual Property,-0.37858,0.00000,-0.08871,-0.05439,0.09141,0.05724,Intellectual Property,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.21416,0.23444,0.22795,1.00000,1.00000,1.00000 +204,204,7.73987,Mining and Drilling Structures,2172847115166.73730,,0.05760,0.09899,0.14910,0.13307,Structures,-0.37858,-0.00000,-0.08871,-0.05439,0.09141,0.05724,Mining and Drilling Structures,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.09532,0.11560,0.10911,1.00000,1.00000,1.00000 +205,205,39.00000,Nonresidential Buildings,4551150810123.36719,,0.02561,0.13754,0.20800,0.18535,Structures,-0.09523,0.20452,0.13384,0.16233,0.27723,0.24996,Nonresidential Buildings,0.04748,0.07291,0.06475,corporate,0.00771,0.02021,0.01618,0.07308,0.09852,0.09035,0.42049,0.32921,0.35453 +206,206,6.89065,Office and Residential Equipment,213260346797.01944,,0.11933,0.09899,0.14910,0.13307,Equipment,-0.37858,-0.00000,-0.08871,-0.05439,0.09141,0.05724,Office and Residential Equipment,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.15705,0.17733,0.17084,1.00000,1.00000,1.00000 +207,207,7.00000,Other Equipment,337069776278.42487,,0.15074,0.09899,0.14910,0.13307,Equipment,-0.37858,-0.00000,-0.08871,-0.05439,0.09141,0.05724,Other Equipment,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.18846,0.20874,0.20225,1.00000,1.00000,1.00000 +208,208,9.94297,Other Industrial Equipment,1055995696084.39087,,0.09750,0.09899,0.14910,0.13307,Equipment,-0.37858,0.00000,-0.08871,-0.05439,0.09141,0.05724,Other Industrial Equipment,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.13522,0.15550,0.14901,1.00000,1.00000,1.00000 +209,209,13.87951,Other Structures,1869521468512.13208,,0.02290,0.09918,0.14939,0.13332,Structures,-0.37686,0.00125,-0.08736,-0.05308,0.09254,0.05841,Other Structures,0.03777,0.05807,0.05157,corporate,-0.00200,0.00537,0.00301,0.06066,0.08097,0.07447,0.99712,0.99667,0.99680 +210,210,27.50000,Residential Buildings,333776621894.00000,,0.01631,0.12609,0.19380,0.17191,Structures,-0.16644,0.16325,0.08583,0.10786,0.23973,0.20839,Residential Buildings,0.04458,0.06932,0.06135,corporate,0.00481,0.01662,0.01278,0.06089,0.08563,0.07766,0.52240,0.42718,0.45450 +211,211,6.52644,Transportation Equipment,965295059837.32141,,0.14020,0.09899,0.14910,0.13307,Equipment,-0.37858,-0.00000,-0.08871,-0.05439,0.09141,0.05724,Transportation Equipment,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.17792,0.19820,0.19171,1.00000,1.00000,1.00000 +212,212,3.75970,Computers and Software,133772595225.18484,,0.41707,0.17882,0.14799,0.15693,Equipment,0.08554,0.00000,0.01959,0.08554,0.00000,0.01959,Computers and Software,0.03834,0.05270,0.04853,non-corporate,0.00328,0.00000,0.00095,0.45541,0.46977,0.46561,1.00000,1.00000,1.00000 +213,213,7.00000,Industrial Machinery,170693910597.87476,,0.10585,0.17882,0.14799,0.15693,Equipment,0.08554,-0.00000,0.01959,0.08554,-0.00000,0.01959,Industrial Machinery,0.03834,0.05270,0.04853,non-corporate,0.00328,-0.00000,0.00095,0.14419,0.15855,0.15439,1.00000,1.00000,1.00000 +214,214,6.92834,Instruments and Communications Equipment,352265040695.39178,,0.13114,0.17882,0.14799,0.15693,Equipment,0.08554,0.00000,0.01959,0.08554,0.00000,0.01959,Instruments and Communications Equipment,0.03834,0.05270,0.04853,non-corporate,0.00328,0.00000,0.00095,0.16947,0.18383,0.17967,1.00000,1.00000,1.00000 +215,215,6.33241,Intellectual Property,387169616706.89374,,0.18561,0.17882,0.14799,0.15693,Intellectual Property,0.08554,-0.00000,0.01959,0.08554,-0.00000,0.01959,Intellectual Property,0.03834,0.05270,0.04853,non-corporate,0.00328,-0.00000,0.00095,0.22394,0.23830,0.23414,1.00000,1.00000,1.00000 +218,218,6.73025,Mining and Drilling Structures,337164385115.77063,,0.06203,0.17882,0.14799,0.15693,Structures,0.08554,0.00000,0.01959,0.08554,0.00000,0.01959,Mining and Drilling Structures,0.03834,0.05270,0.04853,non-corporate,0.00328,0.00000,0.00095,0.10037,0.11473,0.11057,1.00000,1.00000,1.00000 +219,219,39.00000,Nonresidential Buildings,2863255336898.64990,,0.02432,0.21528,0.19802,0.20297,Structures,0.26139,0.19198,0.20769,0.26139,0.19198,0.20769,Nonresidential Buildings,0.04746,0.06522,0.06006,non-corporate,0.01241,0.01252,0.01247,0.07178,0.08954,0.08437,0.42123,0.35397,0.37153 +220,220,6.80132,Office and Residential Equipment,108443653204.71063,,0.12040,0.17882,0.14799,0.15693,Equipment,0.08554,0.00000,0.01959,0.08554,0.00000,0.01959,Office and Residential Equipment,0.03834,0.05270,0.04853,non-corporate,0.00328,0.00000,0.00095,0.15874,0.17310,0.16894,1.00000,1.00000,1.00000 +221,221,7.00000,Other Equipment,175872223716.43555,,0.15009,0.17882,0.14799,0.15693,Equipment,0.08554,-0.00000,0.01959,0.08554,-0.00000,0.01959,Other Equipment,0.03834,0.05270,0.04853,non-corporate,0.00328,-0.00000,0.00095,0.18843,0.20279,0.19863,1.00000,1.00000,1.00000 +222,222,7.35694,Other Industrial Equipment,349865415800.24005,,0.12282,0.17882,0.14799,0.15693,Equipment,0.08554,0.00000,0.01959,0.08554,0.00000,0.01959,Other Industrial Equipment,0.03834,0.05270,0.04853,non-corporate,0.00328,0.00000,0.00095,0.16116,0.17552,0.17136,1.00000,1.00000,1.00000 +223,223,14.34493,Other Structures,598505528799.12842,,0.02518,0.17898,0.14822,0.15714,Structures,0.08652,0.00108,0.02065,0.08652,0.00108,0.02065,Other Structures,0.03838,0.05276,0.04859,non-corporate,0.00332,0.00006,0.00100,0.06356,0.07794,0.07377,0.99735,0.99704,0.99712 +224,224,27.50000,Residential Buildings,1251223923087.89990,,0.01631,0.20523,0.18618,0.19160,Structures,0.22001,0.15352,0.16828,0.22001,0.15352,0.16828,Residential Buildings,0.04495,0.06226,0.05721,non-corporate,0.00989,0.00956,0.00963,0.06126,0.07857,0.07352,0.51905,0.44929,0.46795 +225,225,5.67042,Transportation Equipment,319214520353.45972,,0.15422,0.17882,0.14799,0.15693,Equipment,0.08554,0.00000,0.01959,0.08554,0.00000,0.01959,Transportation Equipment,0.03834,0.05270,0.04853,non-corporate,0.00328,0.00000,0.00095,0.19256,0.20692,0.20276,1.00000,1.00000,1.00000 +226,226,7.26837,Equipment,4571424921177.87109,,0.14538,0.09899,0.14910,0.13307,Equipment,-0.37858,-0.00000,-0.08871,-0.05439,0.09141,0.05724,Equipment,0.03772,0.05800,0.05151,corporate,-0.00205,0.00530,0.00295,0.18310,0.20338,0.19689,1.00000,1.00000,1.00000 +230,230,25.70088,Structures,8927296015696.23438,,0.03248,0.11970,0.18086,0.16122,Structures,-0.21039,0.12175,0.04364,0.07425,0.20202,0.17185,Structures,0.04296,0.06604,0.05864,corporate,0.00319,0.01334,0.01008,0.07544,0.09852,0.09112,0.68611,0.63592,0.64987 +231,231,6.51570,Equipment,1610127359593.29712,,0.15633,0.17882,0.14799,0.15693,Equipment,0.08554,0.00000,0.01959,0.08554,0.00000,0.01959,Equipment,0.03834,0.05270,0.04853,non-corporate,0.00328,0.00000,0.00095,0.19467,0.20903,0.20486,1.00000,1.00000,1.00000 +235,235,31.07440,Structures,5050149173901.45020,,0.02496,0.20606,0.18584,0.19165,Structures,0.22360,0.15237,0.16846,0.22360,0.15237,0.16846,Structures,0.04515,0.06217,0.05722,non-corporate,0.01010,0.00947,0.00964,0.07011,0.08713,0.08218,0.55238,0.49693,0.51152 +236,236,38.79367,Overall,20307631178754.23438,,0.06162,0.11870,0.17900,0.15968,Overall,-0.21758,0.11545,0.03721,0.06875,0.19630,0.16628,Overall,0.04271,0.06557,0.05825,corporate,0.00294,0.01287,0.00969,0.10432,0.12719,0.11986,0.60954,0.58748,0.59361 +237,237,68.60454,Overall,17036588368688.33008,,0.02639,0.20988,0.19064,0.19620,Overall,0.23971,0.16844,0.18471,0.23971,0.16844,0.18471,Overall,0.04611,0.06337,0.05836,non-corporate,0.01105,0.01067,0.01078,0.07250,0.08976,0.08475,0.28098,0.26454,0.26887 diff --git a/example_output/baseline_byindustry_expected.csv b/example_output/baseline_byindustry_expected.csv index 79aeb2a2..61f87ca0 100644 --- a/example_output/baseline_byindustry_expected.csv +++ b/example_output/baseline_byindustry_expected.csv @@ -1,155 +1,155 @@ ,index,Industry,Y,assets,bea_ind_code,delta,eatr_d,eatr_e,eatr_mix,major_industry,metr_d,metr_e,metr_mix,mettr_d,mettr_e,mettr_mix,rho_d,rho_e,rho_mix,tax_treat,tax_wedge_d,tax_wedge_e,tax_wedge_mix,ucc_d,ucc_e,ucc_mix,z_d,z_e,z_mix -0,0,Accommodation,66.19342,251468621610.90228,7210,0.02163,0.13655,0.20638,0.18399,Accommodation and food services,-0.10104,0.20002,0.12923,0.15785,0.27311,0.24594,0.04723,0.07250,0.06440,corporate,0.00745,0.01980,0.01584,0.06886,0.09413,0.08603,0.25323,0.21088,0.22262 -1,1,Food services and drinking places,44.78708,170870560831.60550,7220,0.05189,0.12681,0.19153,0.17077,Accommodation and food services,-0.16173,0.15627,0.08150,0.11144,0.23335,0.20460,0.04476,0.06874,0.06106,corporate,0.00499,0.01604,0.01249,0.09665,0.12063,0.11295,0.48560,0.44407,0.45559 -2,2,Administrative and support services,21.90018,106492097790.52309,5610,0.14921,0.11293,0.17044,0.15200,Administrative and waste management services,-0.26063,0.08520,0.00399,0.03579,0.16878,0.13748,0.04125,0.06340,0.05630,corporate,0.00148,0.01070,0.00774,0.19046,0.21261,0.20551,0.75976,0.73336,0.74068 -3,3,Waste management and remediation services,30.79958,69464866307.19232,5620,0.04823,0.11034,0.16644,0.14847,Administrative and waste management services,-0.28107,0.07035,-0.01209,0.02016,0.15529,0.12355,0.04059,0.06239,0.05541,corporate,0.00082,0.00969,0.00685,0.08882,0.11062,0.10364,0.77151,0.75868,0.76224 -4,4,Farms,56.63261,359601192716.54291,110C,0.03762,0.12049,0.18106,0.16168,"Agriculture, forestry, fishing, and hunting",-0.20476,0.12243,0.04553,0.07852,0.20261,0.17345,0.04316,0.06609,0.05876,corporate,0.00339,0.01339,0.01019,0.08078,0.10371,0.09637,0.50322,0.50322,0.50322 -5,5,"Forestry, fishing, and related activities",58.69871,34352705962.83144,113F,0.04638,0.12369,0.18690,0.16666,"Agriculture, forestry, fishing, and hunting",-0.18255,0.14162,0.06558,0.09551,0.22005,0.19081,0.04397,0.06757,0.06002,corporate,0.00420,0.01487,0.01145,0.09035,0.11395,0.10640,0.42324,0.41370,0.41634 -6,6,"Performing arts, spectator sports, museums, and related activities",26.45100,79922779339.33067,711A,0.07496,0.11230,0.16969,0.15129,"Arts, entertainment, and recreation",-0.26555,0.08245,0.00079,0.03202,0.16628,0.13471,0.04109,0.06321,0.05612,corporate,0.00132,0.01051,0.00756,0.11605,0.13817,0.13108,0.75428,0.72980,0.73659 -7,7,"Amusements, gambling, and recreation industries",36.30666,103100531850.12755,7130,0.04042,0.11583,0.17485,0.15595,"Arts, entertainment, and recreation",-0.23861,0.10105,0.02136,0.05263,0.18319,0.15252,0.04198,0.06452,0.05730,corporate,0.00221,0.01182,0.00874,0.08240,0.10494,0.09772,0.64523,0.62993,0.63417 -8,8,Construction,50.93484,167674309864.19751,2300,0.06772,0.12179,0.18337,0.16366,Construction,-0.19563,0.13012,0.05358,0.08550,0.20960,0.18042,0.04349,0.06668,0.05925,corporate,0.00372,0.01398,0.01069,0.11122,0.13440,0.12698,0.50021,0.48986,0.49273 -9,9,Educational services,34.22480,321852335173.16290,6100,0.04393,0.12800,0.19462,0.17319,Educational services,-0.15394,0.16576,0.09063,0.11739,0.24198,0.21251,0.04506,0.06952,0.06167,corporate,0.00529,0.01682,0.01311,0.08900,0.11346,0.10560,0.51031,0.43513,0.45598 -10,10,Credit intermediation and related activities,22.91675,742471769336.48633,5220,0.11423,0.11696,0.17659,0.15746,Finance and insurance,-0.23022,0.10715,0.02786,0.05904,0.18873,0.15815,0.04227,0.06496,0.05769,corporate,0.00250,0.01226,0.00912,0.15649,0.17919,0.17191,0.71724,0.67708,0.68822 -11,11,"Securities, commodity contracts, and investments",54.61699,117288646632.75099,5230,0.05913,0.13023,0.19681,0.17546,Finance and insurance,-0.13964,0.17236,0.09902,0.12833,0.24798,0.21977,0.04563,0.07008,0.06224,corporate,0.00586,0.01738,0.01368,0.10476,0.12921,0.12138,0.38446,0.34588,0.35658 -12,12,Insurance carriers and related activities,29.98132,242704259871.50098,5240,0.11475,0.12397,0.18724,0.16693,Finance and insurance,-0.18066,0.14271,0.06663,0.09695,0.22104,0.19172,0.04404,0.06766,0.06008,corporate,0.00427,0.01495,0.01152,0.15879,0.18240,0.17483,0.60457,0.55064,0.56559 -13,13,"Funds, trusts, and other financial vehicles",54.39351,34266597921.94995,5250,0.02110,0.13665,0.20686,0.18432,Finance and insurance,-0.10043,0.20135,0.13034,0.15832,0.27432,0.24690,0.04725,0.07262,0.06448,corporate,0.00748,0.01992,0.01592,0.06835,0.09372,0.08558,0.32142,0.25642,0.27444 -14,14,Ambulatory health care services,27.21407,187676386626.35760,6210,0.07631,0.12060,0.18244,0.16259,Health care and social assistance,-0.20397,0.12703,0.04923,0.07912,0.20679,0.17665,0.04319,0.06644,0.05898,corporate,0.00342,0.01374,0.01042,0.11950,0.14275,0.13530,0.65052,0.60004,0.61404 -15,15,Hospitals,33.81604,476870682069.54419,622H,0.05038,0.12534,0.19042,0.16950,Health care and social assistance,-0.17142,0.15281,0.07664,0.10402,0.23021,0.20039,0.04439,0.06846,0.06073,corporate,0.00462,0.01576,0.01217,0.09477,0.11884,0.11111,0.54272,0.47799,0.49594 -16,16,Nursing and residential care facilities,30.33509,45367688456.12007,6230,0.04907,0.12503,0.18968,0.16890,Health care and social assistance,-0.17349,0.15048,0.07432,0.10244,0.22810,0.19839,0.04431,0.06827,0.06058,corporate,0.00454,0.01557,0.01202,0.09338,0.11734,0.10965,0.57605,0.50939,0.52788 -17,17,Social assistance,34.19701,32821172821.68540,6240,0.05176,0.12490,0.18906,0.16846,Health care and social assistance,-0.17436,0.14852,0.07260,0.10177,0.22631,0.19690,0.04428,0.06812,0.06047,corporate,0.00451,0.01542,0.01191,0.09604,0.11988,0.11223,0.56209,0.50631,0.52178 -18,18,Publishing industries (including software),25.89745,205722166040.08698,5110,0.14041,0.11244,0.16950,0.15122,Information,-0.26444,0.08177,0.00047,0.03287,0.16566,0.13443,0.04112,0.06316,0.05611,corporate,0.00135,0.01046,0.00754,0.18154,0.20358,0.19652,0.75755,0.73740,0.74299 -19,19,Motion picture and sound recording industries,20.76147,275276618185.14124,5120,0.10233,0.10380,0.15630,0.13950,Information,-0.33549,0.03047,-0.05536,-0.02147,0.11906,0.08609,0.03894,0.05982,0.05314,corporate,-0.00084,0.00712,0.00457,0.14127,0.16215,0.15547,0.90643,0.90171,0.90302 -20,20,Broadcasting and telecommunications,17.19061,1290507877813.33496,5130,0.07035,0.10392,0.15661,0.13974,Information,-0.33446,0.03173,-0.05415,-0.02069,0.12020,0.08713,0.03897,0.05990,0.05320,corporate,-0.00081,0.00720,0.00464,0.10931,0.13025,0.12354,0.91292,0.90465,0.90694 -21,21,Information and data processing services,13.10574,118194411065.61374,5140,0.21016,0.10594,0.15978,0.14254,Information,-0.31714,0.04455,-0.04029,-0.00743,0.13184,0.09913,0.03948,0.06070,0.05391,corporate,-0.00029,0.00800,0.00534,0.24964,0.27086,0.26406,0.88144,0.86742,0.87131 -22,22,Management of companies and enterprises,44.32188,424413435043.75659,5500,0.07542,0.12872,0.19460,0.17346,Management of companies and enterprises,-0.14931,0.16568,0.09161,0.12093,0.24191,0.21336,0.04524,0.06952,0.06174,corporate,0.00547,0.01682,0.01317,0.12067,0.14494,0.13716,0.46401,0.41428,0.42807 -23,23,"Food, beverage, and tobacco products",42.79805,382744557828.22290,311A,0.06063,0.12397,0.18618,0.16625,Manufacturing,-0.18066,0.13931,0.06396,0.09695,0.21795,0.18941,0.04404,0.06739,0.05991,corporate,0.00427,0.01469,0.01135,0.10467,0.12802,0.12054,0.54553,0.51851,0.52600 -24,24,Textile mills and textile product mills,37.17402,39763433350.66293,313T,0.05621,0.12642,0.18997,0.16959,Manufacturing,-0.16428,0.15137,0.07698,0.10948,0.22891,0.20069,0.04466,0.06835,0.06076,corporate,0.00489,0.01564,0.01219,0.10088,0.12456,0.11697,0.56036,0.51575,0.52812 -25,25,Apparel and leather and allied products,56.66281,23802489967.04707,315A,0.03920,0.13328,0.19968,0.17840,Manufacturing,-0.12067,0.18085,0.10967,0.14284,0.25569,0.22900,0.04640,0.07080,0.06299,corporate,0.00663,0.01810,0.01442,0.08560,0.11000,0.10219,0.37636,0.34144,0.35112 -26,26,Wood products,48.66972,45996624948.89117,3210,0.04991,0.12813,0.19257,0.17192,Manufacturing,-0.15311,0.15950,0.08587,0.11803,0.23629,0.20838,0.04510,0.06901,0.06135,corporate,0.00532,0.01631,0.01278,0.09501,0.11892,0.11126,0.46695,0.43399,0.44313 -27,27,Paper products,32.30789,129541595783.70657,3220,0.07437,0.11798,0.17737,0.15835,Manufacturing,-0.22273,0.10985,0.03161,0.06478,0.19118,0.16140,0.04253,0.06516,0.05791,corporate,0.00275,0.01246,0.00935,0.11690,0.13953,0.13228,0.66768,0.64354,0.65024 -28,28,Printing and related support activities,27.31311,49933189821.85918,3230,0.08738,0.11734,0.17648,0.15753,Manufacturing,-0.22743,0.10674,0.02813,0.06118,0.18836,0.15838,0.04236,0.06493,0.05770,corporate,0.00259,0.01223,0.00914,0.12975,0.15231,0.14509,0.70411,0.67447,0.68269 -29,29,Petroleum and coal products,59.57314,329428164622.01349,3240,0.04248,0.12696,0.19128,0.17068,Manufacturing,-0.16069,0.15548,0.08117,0.11223,0.23264,0.20432,0.04480,0.06868,0.06103,corporate,0.00503,0.01598,0.01247,0.08728,0.11116,0.10351,0.39609,0.38096,0.38516 -30,30,Chemical products,25.25661,863500170455.36816,3250,0.08141,0.11219,0.16868,0.15059,Manufacturing,-0.26638,0.07873,-0.00237,0.03139,0.16290,0.13197,0.04106,0.06296,0.05595,corporate,0.00129,0.01026,0.00738,0.12247,0.14436,0.13735,0.75755,0.74391,0.74769 -31,31,Plastics and rubber products,35.77905,110331312312.70663,3260,0.07510,0.11968,0.17969,0.16047,Manufacturing,-0.21050,0.11779,0.04051,0.07413,0.19839,0.16910,0.04296,0.06574,0.05845,corporate,0.00318,0.01304,0.00988,0.11806,0.14085,0.13355,0.63110,0.60828,0.61461 -32,32,Nonmetallic mineral products,49.77944,116582519996.16560,3270,0.05528,0.12497,0.18821,0.16795,Manufacturing,-0.17388,0.14581,0.07064,0.10214,0.22385,0.19520,0.04430,0.06790,0.06034,corporate,0.00452,0.01520,0.01178,0.09958,0.12318,0.11562,0.48036,0.45775,0.46402 -33,33,Primary metals,39.02286,186378975799.42520,3310,0.06098,0.12254,0.18404,0.16434,Manufacturing,-0.19047,0.13234,0.05633,0.08945,0.21162,0.18280,0.04368,0.06685,0.05943,corporate,0.00391,0.01415,0.01086,0.10466,0.12782,0.12040,0.58554,0.55704,0.56494 -34,34,Fabricated metal products,36.46005,185026333665.73004,3320,0.07307,0.12037,0.18076,0.16142,Manufacturing,-0.20559,0.12143,0.04444,0.07788,0.20170,0.17251,0.04313,0.06602,0.05869,corporate,0.00336,0.01332,0.01012,0.11620,0.13909,0.13176,0.62014,0.59563,0.60242 -35,35,Machinery,38.17436,272319888397.28802,3330,0.08052,0.11999,0.18009,0.16084,Manufacturing,-0.20828,0.11915,0.04206,0.07582,0.19963,0.17045,0.04304,0.06585,0.05854,corporate,0.00326,0.01314,0.00998,0.12356,0.14637,0.13906,0.61339,0.59327,0.59885 -36,36,Computer and electronic products,26.26678,503974938260.46338,3340,0.14992,0.11503,0.17302,0.15444,Manufacturing,-0.24460,0.09454,0.01480,0.04805,0.17726,0.14684,0.04178,0.06406,0.05692,corporate,0.00201,0.01135,0.00836,0.19170,0.21398,0.20684,0.72574,0.70325,0.70949 -37,37,"Electrical equipment, appliances, and components",46.30998,97409347475.05879,3350,0.06863,0.12475,0.18721,0.16720,Manufacturing,-0.17540,0.14261,0.06770,0.10098,0.22095,0.19265,0.04424,0.06765,0.06015,corporate,0.00447,0.01495,0.01159,0.11287,0.13628,0.12878,0.51716,0.49324,0.49987 -38,38,"Motor vehicles, bodies and trailers, and parts",35.25214,238664334578.38879,336M,0.10965,0.11835,0.17770,0.15869,Manufacturing,-0.22011,0.11097,0.03306,0.06678,0.19220,0.16265,0.04262,0.06524,0.05800,corporate,0.00285,0.01254,0.00943,0.15227,0.17489,0.16765,0.64638,0.62709,0.63244 -39,39,Other transportation equipment,49.50530,222225359206.18329,336O,0.07733,0.12599,0.18871,0.16862,Manufacturing,-0.16714,0.14740,0.07325,0.10730,0.22530,0.19746,0.04455,0.06803,0.06051,corporate,0.00478,0.01533,0.01195,0.12189,0.14536,0.13785,0.48840,0.46819,0.47379 -40,40,Furniture and related products,43.14781,27298970230.41120,3370,0.06489,0.12569,0.18879,0.16857,Manufacturing,-0.16908,0.14766,0.07304,0.10581,0.22553,0.19728,0.04448,0.06805,0.06050,corporate,0.00471,0.01535,0.01194,0.10937,0.13293,0.12539,0.52685,0.49450,0.50347 -41,41,Miscellaneous manufacturing,39.11052,132809342156.77454,338A,0.08377,0.12055,0.18094,0.16160,Manufacturing,-0.20437,0.12201,0.04518,0.07882,0.20223,0.17315,0.04318,0.06606,0.05873,corporate,0.00340,0.01336,0.01017,0.12695,0.14983,0.14250,0.60160,0.58116,0.58683 -42,42,Oil and gas extraction,8.69835,1206378685719.62354,2110,0.07337,0.10222,0.15395,0.13739,Mining,-0.34941,0.02072,-0.06607,-0.03211,0.11019,0.07681,0.03854,0.05923,0.05260,corporate,-0.00124,0.00653,0.00404,0.11190,0.13259,0.12597,0.94869,0.94293,0.94452 -43,43,"Mining, except oil and gas",31.00869,190223523014.26080,2120,0.05531,0.11392,0.17161,0.15314,Mining,-0.25305,0.08947,0.00904,0.04158,0.17266,0.14185,0.04150,0.06370,0.05659,corporate,0.00173,0.01100,0.00803,0.09681,0.11901,0.11191,0.70500,0.69076,0.69471 -44,44,Support activities for mining,14.80506,120225750256.28439,2130,0.09587,0.10430,0.15706,0.14017,Mining,-0.33120,0.03357,-0.05199,-0.01819,0.12187,0.08900,0.03906,0.06001,0.05331,corporate,-0.00071,0.00731,0.00474,0.13494,0.15589,0.14918,0.90111,0.89488,0.89661 -45,45,"Other services, except government",38.49273,227393671624.08221,8100,0.04298,0.12455,0.18905,0.16831,"Other services, except government",-0.17672,0.14847,0.07205,0.09997,0.22627,0.19642,0.04419,0.06811,0.06043,corporate,0.00442,0.01541,0.01187,0.08717,0.11110,0.10342,0.54407,0.48734,0.50327 -46,46,Legal services,28.84422,20028299847.23765,5411,0.10067,0.12207,0.18445,0.16443,"Professional, scientific, and technical services",-0.19371,0.13366,0.05668,0.08697,0.21282,0.18311,0.04356,0.06695,0.05945,corporate,0.00379,0.01425,0.01089,0.14423,0.16762,0.16012,0.62964,0.57928,0.59325 -47,47,"Miscellaneous professional, scientific, and technical services",19.64137,249009155856.58878,5412,0.14708,0.11129,0.16774,0.14965,"Professional, scientific, and technical services",-0.27350,0.07523,-0.00667,0.02595,0.15972,0.12825,0.04083,0.06272,0.05571,corporate,0.00106,0.01002,0.00714,0.18791,0.20980,0.20279,0.79378,0.77159,0.77774 -48,48,Computer systems design and related services,22.08806,42903264705.68482,5415,0.20021,0.11472,0.17305,0.15435,"Professional, scientific, and technical services",-0.24698,0.09465,0.01438,0.04622,0.17737,0.14647,0.04170,0.06406,0.05690,corporate,0.00193,0.01136,0.00833,0.24191,0.26427,0.25711,0.74157,0.71025,0.71893 -49,49,Real estate,84.50235,2545926908840.65576,5310,0.00522,0.13635,0.20688,0.18427,Real estate and rental and leasing,-0.10225,0.20140,0.13019,0.15693,0.27437,0.24676,0.04718,0.07263,0.06447,corporate,0.00740,0.01993,0.01591,0.05239,0.07784,0.06969,0.11545,0.09598,0.10150 -50,50,Rental and leasing services and lessors of intangible assets,12.60970,248115752512.01251,5320,0.13613,0.10322,0.15554,0.13879,Real estate and rental and leasing,-0.34056,0.02734,-0.05892,-0.02535,0.11621,0.08300,0.03879,0.05963,0.05296,corporate,-0.00098,0.00693,0.00440,0.17492,0.19576,0.18909,0.91543,0.91066,0.91198 -51,51,Retail trade,59.09235,1608593695005.15381,44RT,0.03643,0.13361,0.20120,0.17953,Retail trade,-0.11867,0.18527,0.11368,0.14437,0.25971,0.23247,0.04648,0.07119,0.06327,corporate,0.00671,0.01849,0.01471,0.08291,0.10762,0.09970,0.33693,0.29760,0.30851 -52,52,Air transportation,14.66966,190656359022.74890,4810,0.07385,0.10830,0.16339,0.14574,Transportation and warehousing,-0.29752,0.05872,-0.02489,0.00757,0.14472,0.11247,0.04008,0.06162,0.05472,corporate,0.00030,0.00892,0.00615,0.11393,0.13547,0.12857,0.85021,0.82922,0.83504 -53,53,Railroad transportation,14.87954,331352975210.21057,4820,0.03044,0.10054,0.15146,0.13517,Transportation and warehousing,-0.36443,0.01021,-0.07758,-0.04361,0.10065,0.06684,0.03811,0.05860,0.05204,corporate,-0.00166,0.00590,0.00348,0.06855,0.08904,0.08248,0.96257,0.96231,0.96238 -54,54,Water transportation,17.09966,36714023796.14972,4830,0.06970,0.10622,0.16013,0.14286,Transportation and warehousing,-0.31484,0.04595,-0.03869,-0.00568,0.13311,0.10052,0.03955,0.06079,0.05399,corporate,-0.00022,0.00809,0.00543,0.10925,0.13049,0.12369,0.87537,0.86206,0.86575 -55,55,Truck transportation,20.61584,108471874449.86627,4840,0.12901,0.10941,0.16491,0.14714,Transportation and warehousing,-0.28847,0.06454,-0.01830,0.01449,0.15001,0.11818,0.04036,0.06200,0.05507,corporate,0.00058,0.00930,0.00651,0.16936,0.19101,0.18408,0.80572,0.79205,0.79584 -56,56,Transit and ground passenger transportation,25.85441,35034660346.86049,4850,0.08027,0.11872,0.17938,0.15991,Transportation and warehousing,-0.21742,0.11674,0.03820,0.06884,0.19744,0.16710,0.04271,0.06567,0.05831,corporate,0.00294,0.01296,0.00974,0.12299,0.14594,0.13858,0.68421,0.63988,0.65217 -57,57,Pipeline transportation,8.41826,169678725932.06000,4860,0.05383,0.10223,0.15405,0.13745,Transportation and warehousing,-0.34929,0.02113,-0.06572,-0.03203,0.11056,0.07711,0.03854,0.05925,0.05262,corporate,-0.00123,0.00655,0.00406,0.09237,0.11308,0.10645,0.94970,0.94237,0.94441 -58,58,Other transportation and support activities,23.59937,110872018726.73232,487S,0.06367,0.10937,0.16499,0.14717,Transportation and warehousing,-0.28883,0.06487,-0.01812,0.01422,0.15031,0.11833,0.04035,0.06202,0.05508,corporate,0.00057,0.00932,0.00652,0.10401,0.12569,0.11875,0.80805,0.79138,0.79600 -59,59,Warehousing and storage,40.27303,33575803410.77195,4930,0.04356,0.12891,0.19513,0.17386,Transportation and warehousing,-0.14809,0.16729,0.09311,0.12186,0.24337,0.21465,0.04529,0.06965,0.06184,corporate,0.00552,0.01695,0.01327,0.08885,0.11321,0.10539,0.48545,0.42500,0.44176 -60,60,Utilities,15.06813,2043225324419.22656,2200,0.04186,0.10063,0.15157,0.13527,Utilities,-0.36362,0.01066,-0.07707,-0.04299,0.10105,0.06729,0.03813,0.05863,0.05207,corporate,-0.00164,0.00592,0.00350,0.08000,0.10049,0.09393,0.96767,0.96596,0.96644 -61,61,Wholesale trade,62.56787,973137443870.90881,4200,0.05422,0.13148,0.19695,0.17598,Wholesale trade,-0.13179,0.17276,0.10093,0.13433,0.24835,0.22143,0.04594,0.07011,0.06238,corporate,0.00617,0.01741,0.01381,0.10017,0.12434,0.11660,0.34860,0.32912,0.33452 -62,62,Accommodation,57.79905,321835229078.19275,7210,0.02700,0.21546,0.19805,0.20307,Accommodation and food services,0.25899,0.18991,0.20564,0.25899,0.18991,0.20564,0.04731,0.06506,0.05990,non-corporate,0.01225,0.01236,0.01232,0.07431,0.09206,0.08690,0.31438,0.27507,0.28532 -63,63,Food services and drinking places,37.79544,131618330778.79922,7220,0.05846,0.20501,0.18379,0.18992,Accommodation and food services,0.21555,0.14283,0.15937,0.21555,0.14283,0.15937,0.04469,0.06148,0.05661,non-corporate,0.00963,0.00878,0.00902,0.10315,0.11994,0.11507,0.54557,0.51078,0.51985 -64,64,Administrative and support services,22.90398,87779837154.60233,5610,0.14729,0.19330,0.16786,0.17522,Administrative and waste management services,0.16044,0.08327,0.10086,0.16044,0.08327,0.10086,0.04176,0.05749,0.05292,non-corporate,0.00670,0.00479,0.00534,0.18905,0.20478,0.20021,0.74915,0.72977,0.73482 -65,65,Waste management and remediation services,28.00786,45442362954.18396,5620,0.05017,0.18933,0.16239,0.17020,Administrative and waste management services,0.13994,0.06090,0.07895,0.13994,0.06090,0.07895,0.04076,0.05612,0.05166,non-corporate,0.00570,0.00342,0.00408,0.09094,0.10629,0.10184,0.80220,0.79227,0.79486 -66,66,Farms,61.51678,695254770987.64246,110C,0.03338,0.20258,0.17996,0.18652,"Agriculture, forestry, fishing, and hunting",0.20472,0.12922,0.14654,0.20472,0.12922,0.14654,0.04408,0.06052,0.05576,non-corporate,0.00902,0.00782,0.00817,0.07746,0.09390,0.08914,0.44654,0.44654,0.44654 -67,67,"Forestry, fishing, and related activities",80.96268,182890160759.96515,113F,0.02138,0.21129,0.19267,0.19807,"Agriculture, forestry, fishing, and hunting",0.24225,0.17277,0.18865,0.24225,0.17277,0.18865,0.04627,0.06371,0.05865,non-corporate,0.01121,0.01101,0.01106,0.06765,0.08509,0.08003,0.19494,0.19167,0.19253 -68,68,"Performing arts, spectator sports, museums, and related activities",24.88765,85913620169.51553,711A,0.07655,0.19181,0.16596,0.17344,"Arts, entertainment, and recreation",0.15286,0.07563,0.09322,0.15286,0.07563,0.09322,0.04139,0.05701,0.05248,non-corporate,0.00633,0.00431,0.00489,0.11794,0.13356,0.12903,0.76949,0.75090,0.75575 -69,69,"Amusements, gambling, and recreation industries",35.67483,103963170327.32812,7130,0.04082,0.19560,0.17100,0.17813,"Arts, entertainment, and recreation",0.17187,0.09567,0.11307,0.17187,0.09567,0.11307,0.04234,0.05828,0.05365,non-corporate,0.00728,0.00558,0.00607,0.08315,0.09909,0.09447,0.65113,0.63964,0.64263 -70,70,Construction,61.58594,416883328406.94965,2300,0.05302,0.20480,0.18352,0.18968,Construction,0.21464,0.14186,0.15850,0.21464,0.14186,0.15850,0.04464,0.06141,0.05655,non-corporate,0.00958,0.00871,0.00896,0.09766,0.11444,0.10957,0.39136,0.38534,0.38691 -71,71,Educational services,34.08224,223504365062.32428,6100,0.04403,0.20766,0.18827,0.19384,Educational services,0.22703,0.15819,0.17370,0.22703,0.15819,0.17370,0.04536,0.06260,0.05759,non-corporate,0.01030,0.00990,0.01000,0.08938,0.10663,0.10162,0.50896,0.45293,0.46754 -72,72,Credit intermediation and related activities,29.58426,75859556179.73862,5220,0.10435,0.19910,0.17566,0.18244,Finance and insurance,0.18866,0.11344,0.13057,0.18866,0.11344,0.13057,0.04321,0.05944,0.05473,non-corporate,0.00815,0.00674,0.00715,0.14756,0.16379,0.15908,0.65400,0.62672,0.63384 -73,73,"Securities, commodity contracts, and investments",68.67047,178435565511.13712,5230,0.04082,0.21273,0.19438,0.19969,Finance and insurance,0.24812,0.17830,0.19423,0.24812,0.17830,0.19423,0.04663,0.06414,0.05906,non-corporate,0.01157,0.01144,0.01147,0.08745,0.10496,0.09988,0.26454,0.24474,0.24990 -74,74,Insurance carriers and related activities,34.29784,22117554581.34229,5240,0.10767,0.20463,0.18333,0.18948,Finance and insurance,0.21389,0.14121,0.15774,0.21389,0.14121,0.15774,0.04460,0.06137,0.05650,non-corporate,0.00954,0.00867,0.00891,0.15227,0.16904,0.16417,0.56564,0.52802,0.53783 -75,75,"Funds, trusts, and other financial vehicles",58.69939,32975922704.02256,5250,0.01910,0.21630,0.19948,0.20432,Finance and insurance,0.26227,0.19434,0.20977,0.26227,0.19434,0.20977,0.04752,0.06541,0.06022,non-corporate,0.01246,0.01271,0.01263,0.06663,0.08452,0.07932,0.28915,0.24538,0.25679 -76,76,Ambulatory health care services,26.88893,165185547973.71588,6210,0.07665,0.20037,0.17771,0.18425,Health care and social assistance,0.19458,0.12104,0.13773,0.19458,0.12104,0.13773,0.04353,0.05996,0.05519,non-corporate,0.00847,0.00726,0.00760,0.12018,0.13661,0.13184,0.65177,0.61407,0.62390 -77,77,Hospitals,33.25928,468740246235.20782,622H,0.05080,0.20497,0.18451,0.19040,Health care and social assistance,0.21539,0.14533,0.16115,0.21539,0.14533,0.16115,0.04468,0.06166,0.05673,non-corporate,0.00962,0.00896,0.00914,0.09548,0.11246,0.10753,0.54516,0.49662,0.50927 -78,78,Nursing and residential care facilities,30.33509,44969311542.03897,6230,0.04907,0.20477,0.18405,0.19001,Health care and social assistance,0.21451,0.14373,0.15973,0.21451,0.14373,0.15973,0.04463,0.06155,0.05663,non-corporate,0.00957,0.00885,0.00905,0.09370,0.11062,0.10570,0.57387,0.52431,0.53723 -79,79,Social assistance,36.92941,33500693280.97236,6240,0.04961,0.20516,0.18432,0.19033,Health care and social assistance,0.21620,0.14468,0.16090,0.21620,0.14468,0.16090,0.04473,0.06161,0.05671,non-corporate,0.00967,0.00891,0.00912,0.09434,0.11123,0.10632,0.53701,0.49725,0.50762 -80,80,Publishing industries (including software),33.44919,10531454693.98520,5110,0.12610,0.19528,0.17041,0.17761,Information,0.17029,0.09336,0.11093,0.17029,0.09336,0.11093,0.04225,0.05813,0.05352,non-corporate,0.00720,0.00543,0.00594,0.16836,0.18423,0.17962,0.67976,0.66630,0.66981 -81,81,Motion picture and sound recording industries,22.07241,32648570358.87631,5120,0.10064,0.18472,0.15595,0.16429,Information,0.11481,0.03309,0.05178,0.11481,0.03309,0.05178,0.03961,0.05450,0.05018,non-corporate,0.00455,0.00180,0.00260,0.14024,0.15514,0.15082,0.89128,0.88783,0.88873 -82,82,Broadcasting and telecommunications,19.11518,114376654728.14319,5130,0.06871,0.18505,0.15649,0.16477,Information,0.11667,0.03549,0.05404,0.11667,0.03549,0.05404,0.03969,0.05464,0.05030,non-corporate,0.00463,0.00194,0.00272,0.10840,0.12335,0.11901,0.89143,0.88543,0.88700 -83,83,Information and data processing services,17.05502,9622690881.11265,5140,0.20060,0.18760,0.16008,0.16805,Information,0.13070,0.05111,0.06928,0.13070,0.05111,0.06928,0.04033,0.05554,0.05113,non-corporate,0.00527,0.00284,0.00354,0.24093,0.25614,0.25173,0.84094,0.83099,0.83359 -84,84,Management of companies and enterprises,43.27634,90403382551.37852,5500,0.07684,0.20828,0.18835,0.19410,Management of companies and enterprises,0.22966,0.15845,0.17464,0.22966,0.15845,0.17464,0.04551,0.06262,0.05765,non-corporate,0.01045,0.00992,0.01007,0.12235,0.13946,0.13449,0.47106,0.43340,0.44322 -85,85,"Food, beverage, and tobacco products",48.30489,75311838089.07274,311A,0.05479,0.20575,0.18400,0.19030,Manufacturing,0.21881,0.14353,0.16078,0.21881,0.14353,0.16078,0.04488,0.06153,0.05670,non-corporate,0.00982,0.00883,0.00912,0.09967,0.11632,0.11149,0.49221,0.47406,0.47879 -86,86,Textile mills and textile product mills,40.68702,7854948624.36963,313T,0.05307,0.20715,0.18600,0.19211,Manufacturing,0.22485,0.15046,0.16746,0.22485,0.15046,0.16746,0.04523,0.06203,0.05716,non-corporate,0.01017,0.00933,0.00957,0.09830,0.11511,0.11023,0.52765,0.49634,0.50450 -87,87,Apparel and leather and allied products,57.59360,5338390836.40291,315A,0.03836,0.21306,0.19365,0.19927,Manufacturing,0.24945,0.17595,0.19279,0.24945,0.17595,0.19279,0.04671,0.06395,0.05895,non-corporate,0.01165,0.01125,0.01136,0.08507,0.10231,0.09731,0.36716,0.34175,0.34838 -88,88,Wood products,49.75998,13100141973.21793,3210,0.04885,0.20817,0.18745,0.19345,Manufacturing,0.22921,0.15542,0.17230,0.22921,0.15542,0.17230,0.04548,0.06240,0.05749,non-corporate,0.01043,0.00970,0.00991,0.09434,0.11125,0.10634,0.45598,0.43199,0.43825 -89,89,Paper products,35.24665,18990987477.75871,3220,0.07114,0.19914,0.17521,0.18214,Manufacturing,0.18887,0.11176,0.12941,0.18887,0.11176,0.12941,0.04322,0.05933,0.05466,non-corporate,0.00816,0.00663,0.00707,0.11437,0.13048,0.12580,0.63794,0.62077,0.62525 -90,90,Printing and related support activities,29.64849,7652157518.59406,3230,0.08458,0.19822,0.17403,0.18103,Manufacturing,0.18450,0.10730,0.12494,0.18450,0.10730,0.12494,0.04299,0.05904,0.05438,non-corporate,0.00793,0.00633,0.00679,0.12757,0.14361,0.13895,0.68055,0.65922,0.66478 -91,91,Petroleum and coal products,57.31094,36804972259.27284,3240,0.04485,0.20631,0.18514,0.19127,Manufacturing,0.22125,0.14750,0.16438,0.22125,0.14750,0.16438,0.04502,0.06182,0.05695,non-corporate,0.00996,0.00912,0.00936,0.08987,0.10667,0.10180,0.41773,0.40585,0.40895 -92,92,Chemical products,28.24831,155956627360.72098,3250,0.07815,0.19357,0.16772,0.17521,Manufacturing,0.16179,0.08271,0.10082,0.16179,0.08271,0.10082,0.04183,0.05745,0.05292,non-corporate,0.00677,0.00475,0.00534,0.11997,0.13560,0.13107,0.72680,0.71707,0.71960 -93,93,Plastics and rubber products,41.70295,18759113941.02066,3260,0.06817,0.20193,0.17877,0.18548,Manufacturing,0.20174,0.12491,0.14251,0.20174,0.12491,0.14251,0.04392,0.06022,0.05549,non-corporate,0.00886,0.00752,0.00791,0.11209,0.12840,0.12367,0.57221,0.55681,0.56082 -94,94,Nonmetallic mineral products,50.65769,17930326841.17467,3270,0.05431,0.20528,0.18373,0.18997,Manufacturing,0.21675,0.14260,0.15956,0.21675,0.14260,0.15956,0.04476,0.06147,0.05662,non-corporate,0.00970,0.00876,0.00903,0.09908,0.11578,0.11093,0.47124,0.45472,0.45902 -95,95,Primary metals,43.39133,31384946425.55616,3310,0.05661,0.20406,0.18169,0.18817,Manufacturing,0.21133,0.13543,0.15281,0.21133,0.13543,0.15281,0.04445,0.06096,0.05617,non-corporate,0.00939,0.00826,0.00858,0.10106,0.11756,0.11277,0.54272,0.52305,0.52818 -96,96,Fabricated metal products,40.57109,33868174282.69432,3320,0.06834,0.20188,0.17877,0.18546,Manufacturing,0.20155,0.12489,0.14245,0.20155,0.12489,0.14245,0.04391,0.06022,0.05549,non-corporate,0.00885,0.00752,0.00790,0.11225,0.12857,0.12383,0.57926,0.56222,0.56666 -97,97,Machinery,45.59719,44994036766.73473,3330,0.07085,0.20289,0.18000,0.18663,Manufacturing,0.20612,0.12938,0.14697,0.20612,0.12938,0.14697,0.04416,0.06053,0.05578,non-corporate,0.00910,0.00783,0.00820,0.11501,0.13139,0.12664,0.53917,0.52601,0.52944 -98,98,Computer and electronic products,27.75599,67202508361.14622,3340,0.14689,0.19571,0.17066,0.17791,Manufacturing,0.17241,0.09434,0.11219,0.17241,0.09434,0.11219,0.04236,0.05819,0.05360,non-corporate,0.00730,0.00549,0.00601,0.18926,0.20508,0.20049,0.71036,0.69398,0.69825 -99,99,"Electrical equipment, appliances, and components",51.19822,13457767002.27841,3350,0.06238,0.20650,0.18485,0.19112,Manufacturing,0.22204,0.14652,0.16383,0.22204,0.14652,0.16383,0.04507,0.06175,0.05691,non-corporate,0.01001,0.00905,0.00932,0.10745,0.12413,0.11929,0.46936,0.45320,0.45741 -100,100,"Motor vehicles, bodies and trailers, and parts",39.59103,37968439962.33989,336M,0.10231,0.20009,0.17633,0.18321,Manufacturing,0.19330,0.11593,0.13365,0.19330,0.11593,0.13365,0.04346,0.05961,0.05493,non-corporate,0.00840,0.00691,0.00734,0.14577,0.16192,0.15723,0.60248,0.58909,0.59258 -101,101,Other transportation equipment,55.71089,37605705698.82620,336O,0.06783,0.20814,0.18685,0.19302,Manufacturing,0.22909,0.15338,0.17076,0.22909,0.15338,0.17076,0.04548,0.06225,0.05738,non-corporate,0.01042,0.00955,0.00980,0.11331,0.13008,0.12521,0.42779,0.41461,0.41805 -102,102,Furniture and related products,46.12348,3398491339.24600,3370,0.06149,0.20659,0.18513,0.19134,Manufacturing,0.22246,0.14749,0.16465,0.22246,0.14749,0.16465,0.04509,0.06182,0.05696,non-corporate,0.01003,0.00912,0.00938,0.10658,0.12331,0.11845,0.49827,0.47548,0.48142 -103,103,Miscellaneous manufacturing,44.10283,21983133311.41251,338A,0.07690,0.20257,0.17958,0.18624,Manufacturing,0.20468,0.12785,0.14546,0.20468,0.12785,0.14546,0.04408,0.06043,0.05568,non-corporate,0.00902,0.00773,0.00810,0.12098,0.13733,0.13259,0.55166,0.53771,0.54135 -104,104,Oil and gas extraction,9.26036,250060628349.92041,2110,0.07292,0.18272,0.15330,0.16183,Mining,0.10348,0.02115,0.03997,0.10348,0.02115,0.03997,0.03911,0.05384,0.04957,non-corporate,0.00405,0.00114,0.00198,0.11202,0.12676,0.12248,0.94266,0.93840,0.93951 -105,105,"Mining, except oil and gas",36.47161,42556976403.16281,2120,0.05093,0.19574,0.17106,0.17821,Mining,0.17254,0.09590,0.11342,0.17254,0.09590,0.11342,0.04237,0.05829,0.05367,non-corporate,0.00731,0.00559,0.00609,0.09330,0.10923,0.10461,0.64875,0.63900,0.64154 -106,106,Support activities for mining,15.74712,25044165259.30807,2130,0.09481,0.18484,0.15619,0.16450,Mining,0.11554,0.03416,0.05276,0.11554,0.03416,0.05276,0.03964,0.05456,0.05024,non-corporate,0.00458,0.00186,0.00265,0.13445,0.14938,0.14505,0.89095,0.88636,0.88756 -107,107,"Other services, except government",36.31857,434659499245.39331,8100,0.04450,0.20378,0.18279,0.18883,"Other services, except government",0.21011,0.13929,0.15529,0.21011,0.13929,0.15529,0.04438,0.06123,0.05633,non-corporate,0.00933,0.00853,0.00875,0.08889,0.10573,0.10084,0.56141,0.51789,0.52934 -108,108,Legal services,29.93984,24694671280.08685,5411,0.09912,0.20212,0.17996,0.18636,"Professional, scientific, and technical services",0.20262,0.12923,0.14590,0.20262,0.12923,0.14590,0.04397,0.06052,0.05571,non-corporate,0.00891,0.00782,0.00813,0.14308,0.15964,0.15483,0.61832,0.58146,0.59107 -109,109,"Miscellaneous professional, scientific, and technical services",19.84614,250145961935.08807,5412,0.14671,0.19134,0.16508,0.17268,"Professional, scientific, and technical services",0.15043,0.07206,0.08994,0.15043,0.07206,0.08994,0.04127,0.05679,0.05229,non-corporate,0.00621,0.00409,0.00470,0.18797,0.20350,0.19899,0.79104,0.77458,0.77887 -110,110,Computer systems design and related services,22.66047,34987856978.92335,5415,0.19874,0.19482,0.16988,0.17709,"Professional, scientific, and technical services",0.16800,0.09130,0.10877,0.16800,0.09130,0.10877,0.04214,0.05800,0.05339,non-corporate,0.00708,0.00529,0.00581,0.24088,0.25673,0.25213,0.73511,0.71199,0.71802 -111,111,Real estate,84.96022,10194539931205.20117,5310,0.00516,0.21591,0.19928,0.20408,Real estate and rental and leasing,0.26075,0.19371,0.20898,0.26075,0.19371,0.20898,0.04743,0.06536,0.06016,non-corporate,0.01237,0.01266,0.01257,0.05258,0.07052,0.06531,0.11165,0.09771,0.10140 -112,112,Rental and leasing services and lessors of intangible assets,14.26025,187611316433.88910,5320,0.13356,0.18418,0.15532,0.16369,Real estate and rental and leasing,0.11180,0.03030,0.04893,0.11180,0.03030,0.04893,0.03947,0.05435,0.05003,non-corporate,0.00441,0.00165,0.00245,0.17304,0.18791,0.18360,0.89798,0.89450,0.89541 -113,113,Retail trade,68.40422,599107994988.67297,44RT,0.02814,0.21608,0.19793,0.20318,Retail trade,0.26142,0.18955,0.20600,0.26142,0.18955,0.20600,0.04747,0.06503,0.05993,non-corporate,0.01241,0.01233,0.01235,0.07560,0.09316,0.08807,0.25924,0.23666,0.24254 -114,114,Air transportation,14.96155,47796425035.43796,4810,0.07360,0.18857,0.16139,0.16925,Transportation and warehousing,0.13587,0.05667,0.07473,0.13587,0.05667,0.07473,0.04057,0.05587,0.05143,non-corporate,0.00551,0.00317,0.00384,0.11417,0.12947,0.12503,0.84661,0.83106,0.83512 -115,115,Railroad transportation,15.14169,83039763589.18028,4820,0.03034,0.18099,0.15098,0.15969,Transportation and warehousing,0.09346,0.01050,0.02947,0.09346,0.01050,0.02947,0.03867,0.05326,0.04903,non-corporate,0.00361,0.00056,0.00144,0.06902,0.08360,0.07937,0.95960,0.95940,0.95945 -116,116,Water transportation,17.50642,9217710064.52573,4830,0.06936,0.18658,0.15863,0.16673,Transportation and warehousing,0.12515,0.04485,0.06318,0.12515,0.04485,0.06318,0.04007,0.05518,0.05079,non-corporate,0.00502,0.00247,0.00321,0.10943,0.12453,0.12015,0.87064,0.86079,0.86336 -117,117,Truck transportation,19.74733,37317255861.67974,4840,0.13042,0.18923,0.16218,0.17001,Transportation and warehousing,0.13939,0.06000,0.07814,0.13939,0.06000,0.07814,0.04074,0.05606,0.05162,non-corporate,0.00568,0.00336,0.00403,0.17115,0.18648,0.18204,0.81408,0.80380,0.80648 -118,118,Transit and ground passenger transportation,25.50512,10233125938.31284,4850,0.08065,0.19852,0.17506,0.18184,Transportation and warehousing,0.18594,0.11120,0.12819,0.18594,0.11120,0.12819,0.04307,0.05929,0.05458,non-corporate,0.00801,0.00659,0.00700,0.12372,0.13995,0.13523,0.68598,0.65286,0.66149 -119,119,Pipeline transportation,8.49334,33708295455.20280,4860,0.05378,0.18255,0.15312,0.16165,Transportation and warehousing,0.10252,0.02032,0.03910,0.10252,0.02032,0.03910,0.03906,0.05379,0.04952,non-corporate,0.00400,0.00109,0.00194,0.09285,0.10758,0.10330,0.94869,0.94324,0.94466 -120,120,Other transportation and support activities,23.54062,34235605978.81979,487S,0.06371,0.18950,0.16264,0.17042,Transportation and warehousing,0.14081,0.06194,0.07994,0.14081,0.06194,0.07994,0.04080,0.05618,0.05172,non-corporate,0.00575,0.00348,0.00413,0.10452,0.11990,0.11543,0.80813,0.79572,0.79896 -121,121,Warehousing and storage,38.87182,15189477206.55462,4930,0.04458,0.20832,0.18860,0.19428,Transportation and warehousing,0.22984,0.15930,0.17529,0.22984,0.15930,0.17529,0.04552,0.06269,0.05770,non-corporate,0.01046,0.00999,0.01011,0.09010,0.10727,0.10228,0.49482,0.44881,0.46081 -122,122,Utilities,16.13995,110848021471.90637,2200,0.04133,0.18144,0.15157,0.16023,Utilities,0.09607,0.01323,0.03218,0.09607,0.01323,0.03218,0.03879,0.05341,0.04917,non-corporate,0.00373,0.00071,0.00158,0.08012,0.09474,0.09050,0.95541,0.95415,0.95448 -123,123,Wholesale trade,74.90337,387578651034.04889,4200,0.03635,0.21565,0.19678,0.20225,Wholesale trade,0.25970,0.18594,0.20290,0.25970,0.18594,0.20290,0.04736,0.06474,0.05970,non-corporate,0.01230,0.01204,0.01211,0.08371,0.10109,0.09605,0.23329,0.22358,0.22611 -124,124,Accommodation and food services,57.53282,422339182442.50781,,0.03387,0.13261,0.20037,0.17864,Accommodation and food services,-0.12481,0.18288,0.11053,0.13967,0.25753,0.22974,0.04623,0.07098,0.06305,corporate,0.00646,0.01828,0.01448,0.08010,0.10485,0.09692,0.34724,0.30523,0.31688 -125,125,Administrative and waste management services,25.41352,175956964097.71542,,0.10934,0.11191,0.16886,0.15061,Administrative and waste management services,-0.26862,0.07939,-0.00230,0.02968,0.16351,0.13204,0.04099,0.06300,0.05595,corporate,0.00122,0.01030,0.00739,0.15033,0.17234,0.16529,0.76440,0.74336,0.74919 -126,126,"Agriculture, forestry, fishing, and hunting",56.81278,393953898679.37433,,0.03838,0.12077,0.18157,0.16212,"Agriculture, forestry, fishing, and hunting",-0.20279,0.12414,0.04731,0.08003,0.20416,0.17500,0.04323,0.06622,0.05887,corporate,0.00346,0.01352,0.01030,0.08161,0.10460,0.09725,0.49624,0.49541,0.49564 -127,127,"Arts, entertainment, and recreation",32.00288,183023311189.45822,,0.05550,0.11429,0.17260,0.15392,"Arts, entertainment, and recreation",-0.25023,0.09302,0.01248,0.04374,0.17589,0.14483,0.04159,0.06395,0.05679,corporate,0.00182,0.01125,0.00822,0.09709,0.11945,0.11229,0.69285,0.67354,0.67889 -130,130,Finance and insurance,28.64482,1136731273762.68823,,0.10585,0.12042,0.18187,0.16215,Finance and insurance,-0.20525,0.12512,0.04745,0.07815,0.20506,0.17512,0.04314,0.06630,0.05887,corporate,0.00337,0.01359,0.01031,0.14899,0.17214,0.16472,0.64691,0.60323,0.61534 -131,131,Health care and social assistance,31.95205,742735929973.70728,,0.05691,0.12411,0.18830,0.16767,Health care and social assistance,-0.17974,0.14610,0.06954,0.09766,0.22412,0.19424,0.04408,0.06792,0.06027,corporate,0.00430,0.01522,0.01171,0.10099,0.12484,0.11718,0.57285,0.51200,0.52887 -132,132,Information,18.40316,1889701073104.17749,,0.09138,0.10496,0.15816,0.14113,Information,-0.32553,0.03806,-0.04722,-0.01385,0.12595,0.09313,0.03923,0.06029,0.05355,corporate,-0.00054,0.00759,0.00499,0.13061,0.15167,0.14493,0.89309,0.88368,0.88629 -133,133,Management of companies and enterprises,44.32188,424413435043.75659,,0.07542,0.12872,0.19460,0.17346,Management of companies and enterprises,-0.14931,0.16568,0.09161,0.12093,0.24191,0.21336,0.04524,0.06952,0.06174,corporate,0.00547,0.01682,0.01317,0.12067,0.14494,0.13716,0.46401,0.41428,0.42807 -134,134,Manufacturing,36.92289,3957731548856.36719,,0.08262,0.11945,0.17950,0.16027,Manufacturing,-0.21214,0.11714,0.03966,0.07288,0.19780,0.16837,0.04290,0.06570,0.05840,corporate,0.00313,0.01299,0.00983,0.12552,0.14832,0.14102,0.62095,0.60006,0.60585 -135,135,Mining,11.98029,1516827958990.16870,,0.07289,0.10385,0.15641,0.13958,Mining,-0.33508,0.03091,-0.05493,-0.02116,0.11946,0.08646,0.03895,0.05985,0.05316,corporate,-0.00082,0.00715,0.00460,0.11184,0.13274,0.12605,0.91436,0.90749,0.90940 -136,136,"Other services, except government",38.49273,227393671624.08221,,0.04298,0.12455,0.18905,0.16831,"Other services, except government",-0.17672,0.14847,0.07205,0.09997,0.22627,0.19642,0.04419,0.06811,0.06043,corporate,0.00442,0.01541,0.01187,0.08717,0.11110,0.10342,0.54407,0.48734,0.50327 -137,137,"Professional, scientific, and technical services",20.56875,311940720409.51123,,0.15141,0.11245,0.16954,0.15124,"Professional, scientific, and technical services",-0.26437,0.08191,0.00057,0.03292,0.16579,0.13452,0.04113,0.06317,0.05611,corporate,0.00135,0.01047,0.00755,0.19253,0.21458,0.20752,0.77606,0.75081,0.75781 -138,138,Real estate and rental and leasing,78.11816,2794042661352.66748,,0.01684,0.13340,0.20232,0.18023,Real estate and rental and leasing,-0.11993,0.18851,0.11617,0.14340,0.26265,0.23463,0.04643,0.07147,0.06345,corporate,0.00666,0.01877,0.01489,0.06327,0.08832,0.08029,0.18649,0.16832,0.17347 -140,140,Transportation and warehousing,16.62231,1016356440895.40027,,0.06020,0.10596,0.15976,0.14253,Transportation and warehousing,-0.31703,0.04446,-0.04033,-0.00736,0.13177,0.09910,0.03948,0.06070,0.05391,corporate,-0.00029,0.00800,0.00534,0.09968,0.12090,0.11411,0.87724,0.86471,0.86818 -143,143,Accommodation and food services,51.99285,453453559856.99200,,0.03613,0.21243,0.19391,0.19925,Accommodation and food services,0.24688,0.17679,0.19274,0.24688,0.17679,0.19274,0.04655,0.06402,0.05895,non-corporate,0.01149,0.01132,0.01136,0.08268,0.10015,0.09508,0.38148,0.34349,0.35339 -144,144,Administrative and waste management services,24.64493,133222200108.78630,,0.11416,0.19195,0.16599,0.17351,Administrative and waste management services,0.15356,0.07576,0.09350,0.15356,0.07576,0.09350,0.04142,0.05702,0.05249,non-corporate,0.00636,0.00432,0.00491,0.15558,0.17118,0.16666,0.76724,0.75109,0.75530 -145,145,"Agriculture, forestry, fishing, and hunting",65.56676,878144931747.60754,,0.03088,0.20439,0.18261,0.18893,"Agriculture, forestry, fishing, and hunting",0.21284,0.13867,0.15567,0.21284,0.13867,0.15567,0.04454,0.06119,0.05636,non-corporate,0.00948,0.00848,0.00877,0.07542,0.09207,0.08724,0.39414,0.39346,0.39364 -146,146,"Arts, entertainment, and recreation",30.79395,189876790496.84369,,0.05699,0.19389,0.16872,0.17601,"Arts, entertainment, and recreation",0.16338,0.08671,0.10420,0.16338,0.08671,0.10420,0.04191,0.05770,0.05312,non-corporate,0.00685,0.00500,0.00553,0.09889,0.11469,0.11011,0.70468,0.68998,0.69382 -149,149,Finance and insurance,55.56686,309388598976.24060,,0.05886,0.20919,0.18955,0.19522,Finance and insurance,0.23353,0.16247,0.17866,0.23353,0.16247,0.17866,0.04574,0.06292,0.05794,non-corporate,0.01068,0.01022,0.01035,0.10460,0.12179,0.11680,0.38418,0.35872,0.36535 -150,150,Health care and social assistance,31.77017,712395799031.93506,,0.05663,0.20390,0.18290,0.18894,Health care and social assistance,0.21065,0.13968,0.15573,0.21065,0.13968,0.15573,0.04441,0.06126,0.05636,non-corporate,0.00936,0.00856,0.00878,0.10105,0.11789,0.11299,0.57131,0.52563,0.53754 -151,151,Information,20.47709,167179370662.11737,,0.08615,0.18577,0.15747,0.16567,Information,0.12071,0.03979,0.05829,0.12071,0.03979,0.05829,0.03987,0.05488,0.05053,non-corporate,0.00481,0.00218,0.00295,0.12602,0.14104,0.13668,0.87516,0.86896,0.87058 -152,152,Management of companies and enterprises,43.27634,90403382551.37852,,0.07684,0.20828,0.18835,0.19410,Management of companies and enterprises,0.22966,0.15845,0.17464,0.22966,0.15845,0.17464,0.04551,0.06262,0.05765,non-corporate,0.01045,0.00992,0.01007,0.12235,0.13946,0.13449,0.47106,0.43340,0.44322 -153,153,Manufacturing,40.15757,649562708071.83960,,0.07667,0.20078,0.17734,0.18413,Manufacturing,0.19649,0.11968,0.13727,0.19649,0.11968,0.13727,0.04363,0.05987,0.05516,non-corporate,0.00857,0.00716,0.00757,0.12030,0.13654,0.13183,0.58828,0.57353,0.57737 -154,154,Mining,13.41725,317661770012.39130,,0.07170,0.18463,0.15591,0.16423,Mining,0.11433,0.03289,0.05151,0.11433,0.03289,0.05151,0.03958,0.05449,0.05017,non-corporate,0.00453,0.00179,0.00258,0.11128,0.12619,0.12187,0.89921,0.89419,0.89550 -155,155,"Other services, except government",36.31857,434659499245.39331,,0.04450,0.20378,0.18279,0.18883,"Other services, except government",0.21011,0.13929,0.15529,0.21011,0.13929,0.15529,0.04438,0.06123,0.05633,non-corporate,0.00933,0.00853,0.00875,0.08889,0.10573,0.10084,0.56141,0.51789,0.52934 -156,156,"Professional, scientific, and technical services",20.96846,309828490194.09827,,0.14879,0.19259,0.16681,0.17427,"Professional, scientific, and technical services",0.15684,0.07908,0.09681,0.15684,0.07908,0.09681,0.04158,0.05723,0.05269,non-corporate,0.00652,0.00453,0.00510,0.19037,0.20601,0.20147,0.77095,0.75212,0.75703 -157,157,Real estate and rental and leasing,83.68263,10382151247639.08984,,0.00748,0.21534,0.19848,0.20335,Real estate and rental and leasing,0.25850,0.19125,0.20657,0.25850,0.19125,0.20657,0.04728,0.06516,0.05997,non-corporate,0.01222,0.01246,0.01239,0.05476,0.07264,0.06745,0.12586,0.11211,0.11575 -159,159,Transportation and warehousing,17.78260,270737659129.71378,,0.06294,0.18712,0.15938,0.16742,Transportation and warehousing,0.12808,0.04811,0.06637,0.12808,0.04811,0.06637,0.04021,0.05536,0.05097,non-corporate,0.00515,0.00266,0.00338,0.10315,0.11831,0.11391,0.85964,0.84900,0.85177 -162,162,Overall,38.79367,20307631178754.23438,,0.06162,0.11870,0.17900,0.15968,Overall,-0.21758,0.11545,0.03721,0.06872,0.19626,0.16625,0.04271,0.06557,0.05825,corporate,0.00293,0.01287,0.00968,0.10432,0.12719,0.11986,0.60954,0.58748,0.59361 -163,163,Overall,68.60454,17036588368688.33008,,0.02639,0.21053,0.19162,0.19709,Overall,0.23910,0.16935,0.18524,0.23910,0.16935,0.18524,0.04608,0.06344,0.05840,non-corporate,0.01102,0.01074,0.01082,0.07247,0.08984,0.08479,0.28107,0.26454,0.26889 +0,0,Accommodation,66.19342,251468621610.90228,7210,0.02163,0.13655,0.20638,0.18399,Accommodation and food services,-0.10104,0.20002,0.12923,0.15788,0.27314,0.24597,0.04723,0.07250,0.06440,corporate,0.00746,0.01980,0.01584,0.06886,0.09413,0.08603,0.25323,0.21088,0.22262 +1,1,Food services and drinking places,44.78708,170870560831.60550,7220,0.05189,0.12681,0.19153,0.17077,Accommodation and food services,-0.16173,0.15627,0.08150,0.11147,0.23339,0.20464,0.04476,0.06874,0.06106,corporate,0.00499,0.01604,0.01249,0.09665,0.12063,0.11295,0.48560,0.44407,0.45559 +2,2,Administrative and support services,21.90018,106492097790.52309,5610,0.14921,0.11293,0.17044,0.15200,Administrative and waste management services,-0.26063,0.08520,0.00399,0.03583,0.16882,0.13752,0.04125,0.06340,0.05630,corporate,0.00148,0.01070,0.00774,0.19046,0.21261,0.20551,0.75976,0.73336,0.74068 +3,3,Waste management and remediation services,30.79958,69464866307.19232,5620,0.04823,0.11034,0.16644,0.14847,Administrative and waste management services,-0.28107,0.07035,-0.01209,0.02019,0.15533,0.12359,0.04059,0.06239,0.05541,corporate,0.00082,0.00969,0.00685,0.08882,0.11062,0.10364,0.77151,0.75868,0.76224 +4,4,Farms,56.63261,359601192716.54291,110C,0.03762,0.12049,0.18106,0.16168,"Agriculture, forestry, fishing, and hunting",-0.20476,0.12243,0.04553,0.07856,0.20264,0.17349,0.04316,0.06609,0.05876,corporate,0.00339,0.01339,0.01019,0.08078,0.10371,0.09637,0.50322,0.50322,0.50322 +5,5,"Forestry, fishing, and related activities",58.69871,34352705962.83144,113F,0.04638,0.12369,0.18690,0.16666,"Agriculture, forestry, fishing, and hunting",-0.18255,0.14162,0.06558,0.09554,0.22008,0.19085,0.04397,0.06757,0.06002,corporate,0.00420,0.01487,0.01145,0.09035,0.11395,0.10640,0.42324,0.41370,0.41634 +6,6,"Performing arts, spectator sports, museums, and related activities",26.45100,79922779339.33067,711A,0.07496,0.11230,0.16969,0.15129,"Arts, entertainment, and recreation",-0.26555,0.08245,0.00079,0.03206,0.16632,0.13474,0.04109,0.06321,0.05612,corporate,0.00132,0.01051,0.00756,0.11605,0.13817,0.13108,0.75428,0.72980,0.73659 +7,7,"Amusements, gambling, and recreation industries",36.30666,103100531850.12755,7130,0.04042,0.11583,0.17485,0.15595,"Arts, entertainment, and recreation",-0.23861,0.10105,0.02136,0.05267,0.18322,0.15255,0.04198,0.06452,0.05730,corporate,0.00221,0.01182,0.00874,0.08240,0.10494,0.09772,0.64523,0.62993,0.63417 +8,8,Construction,50.93484,167674309864.19751,2300,0.06772,0.12179,0.18337,0.16366,Construction,-0.19563,0.13012,0.05358,0.08554,0.20963,0.18045,0.04349,0.06668,0.05925,corporate,0.00372,0.01398,0.01069,0.11122,0.13440,0.12698,0.50021,0.48986,0.49273 +9,9,Educational services,34.22480,321852335173.16290,6100,0.04393,0.12800,0.19462,0.17319,Educational services,-0.15394,0.16576,0.09063,0.11743,0.24202,0.21254,0.04506,0.06952,0.06167,corporate,0.00529,0.01683,0.01311,0.08900,0.11346,0.10560,0.51031,0.43513,0.45598 +10,10,Credit intermediation and related activities,22.91675,742471769336.48633,5220,0.11423,0.11696,0.17659,0.15746,Finance and insurance,-0.23022,0.10715,0.02786,0.05908,0.18876,0.15819,0.04227,0.06496,0.05769,corporate,0.00250,0.01226,0.00913,0.15649,0.17919,0.17191,0.71724,0.67708,0.68822 +11,11,"Securities, commodity contracts, and investments",54.61699,117288646632.75099,5230,0.05913,0.13023,0.19681,0.17546,Finance and insurance,-0.13964,0.17236,0.09902,0.12836,0.24801,0.21980,0.04563,0.07008,0.06224,corporate,0.00586,0.01738,0.01368,0.10476,0.12921,0.12138,0.38446,0.34588,0.35658 +12,12,Insurance carriers and related activities,29.98132,242704259871.50098,5240,0.11475,0.12397,0.18724,0.16693,Finance and insurance,-0.18066,0.14271,0.06663,0.09699,0.22107,0.19176,0.04404,0.06766,0.06008,corporate,0.00427,0.01496,0.01152,0.15879,0.18240,0.17483,0.60457,0.55064,0.56559 +13,13,"Funds, trusts, and other financial vehicles",54.39351,34266597921.94995,5250,0.02110,0.13665,0.20686,0.18432,Finance and insurance,-0.10043,0.20135,0.13034,0.15835,0.27435,0.24693,0.04725,0.07262,0.06448,corporate,0.00748,0.01992,0.01592,0.06835,0.09372,0.08558,0.32142,0.25642,0.27444 +14,14,Ambulatory health care services,27.21407,187676386626.35760,6210,0.07631,0.12060,0.18244,0.16259,Health care and social assistance,-0.20397,0.12703,0.04923,0.07916,0.20683,0.17669,0.04319,0.06644,0.05898,corporate,0.00342,0.01374,0.01042,0.11950,0.14275,0.13530,0.65052,0.60004,0.61404 +15,15,Hospitals,33.81604,476870682069.54419,622H,0.05038,0.12534,0.19042,0.16950,Health care and social assistance,-0.17142,0.15281,0.07664,0.10405,0.23025,0.20043,0.04439,0.06846,0.06073,corporate,0.00462,0.01576,0.01217,0.09477,0.11884,0.11111,0.54272,0.47799,0.49594 +16,16,Nursing and residential care facilities,30.33509,45367688456.12007,6230,0.04907,0.12503,0.18968,0.16890,Health care and social assistance,-0.17349,0.15048,0.07432,0.10247,0.22813,0.19842,0.04431,0.06827,0.06058,corporate,0.00454,0.01558,0.01202,0.09338,0.11734,0.10965,0.57605,0.50939,0.52788 +17,17,Social assistance,34.19701,32821172821.68540,6240,0.05176,0.12490,0.18906,0.16846,Health care and social assistance,-0.17436,0.14852,0.07260,0.10181,0.22635,0.19693,0.04428,0.06812,0.06047,corporate,0.00451,0.01542,0.01191,0.09604,0.11988,0.11223,0.56209,0.50631,0.52178 +18,18,Publishing industries (including software),25.89745,205722166040.08698,5110,0.14041,0.11244,0.16950,0.15122,Information,-0.26444,0.08177,0.00047,0.03291,0.16570,0.13447,0.04112,0.06316,0.05611,corporate,0.00135,0.01047,0.00754,0.18154,0.20358,0.19652,0.75755,0.73740,0.74299 +19,19,Motion picture and sound recording industries,20.76147,275276618185.14124,5120,0.10233,0.10380,0.15630,0.13950,Information,-0.33549,0.03047,-0.05536,-0.02143,0.11910,0.08613,0.03894,0.05982,0.05314,corporate,-0.00083,0.00712,0.00458,0.14127,0.16215,0.15547,0.90643,0.90171,0.90302 +20,20,Broadcasting and telecommunications,17.19061,1290507877813.33496,5130,0.07035,0.10392,0.15661,0.13974,Information,-0.33446,0.03173,-0.05415,-0.02065,0.12023,0.08717,0.03897,0.05990,0.05320,corporate,-0.00080,0.00720,0.00464,0.10931,0.13025,0.12354,0.91292,0.90465,0.90694 +21,21,Information and data processing services,13.10574,118194411065.61374,5140,0.21016,0.10594,0.15978,0.14254,Information,-0.31714,0.04455,-0.04029,-0.00739,0.13188,0.09917,0.03948,0.06070,0.05391,corporate,-0.00029,0.00801,0.00535,0.24964,0.27086,0.26406,0.88144,0.86742,0.87131 +22,22,Management of companies and enterprises,44.32188,424413435043.75659,5500,0.07542,0.12872,0.19460,0.17346,Management of companies and enterprises,-0.14931,0.16568,0.09161,0.12097,0.24195,0.21339,0.04524,0.06952,0.06174,corporate,0.00547,0.01682,0.01317,0.12067,0.14494,0.13716,0.46401,0.41428,0.42807 +23,23,"Food, beverage, and tobacco products",42.79805,382744557828.22290,311A,0.06063,0.12397,0.18618,0.16625,Manufacturing,-0.18066,0.13931,0.06396,0.09699,0.21798,0.18945,0.04404,0.06739,0.05991,corporate,0.00427,0.01469,0.01135,0.10467,0.12802,0.12054,0.54553,0.51851,0.52600 +24,24,Textile mills and textile product mills,37.17402,39763433350.66293,313T,0.05621,0.12642,0.18997,0.16959,Manufacturing,-0.16428,0.15137,0.07698,0.10952,0.22894,0.20072,0.04466,0.06835,0.06076,corporate,0.00489,0.01565,0.01220,0.10088,0.12456,0.11697,0.56036,0.51575,0.52812 +25,25,Apparel and leather and allied products,56.66281,23802489967.04707,315A,0.03920,0.13328,0.19968,0.17840,Manufacturing,-0.12067,0.18085,0.10967,0.14287,0.25572,0.22903,0.04640,0.07080,0.06299,corporate,0.00663,0.01811,0.01443,0.08560,0.11000,0.10219,0.37636,0.34144,0.35112 +26,26,Wood products,48.66972,45996624948.89117,3210,0.04991,0.12813,0.19257,0.17192,Manufacturing,-0.15311,0.15950,0.08587,0.11806,0.23632,0.20842,0.04510,0.06901,0.06135,corporate,0.00532,0.01631,0.01279,0.09501,0.11892,0.11126,0.46695,0.43399,0.44313 +27,27,Paper products,32.30789,129541595783.70657,3220,0.07437,0.11798,0.17737,0.15835,Manufacturing,-0.22273,0.10985,0.03161,0.06481,0.19121,0.16144,0.04253,0.06516,0.05791,corporate,0.00276,0.01246,0.00935,0.11690,0.13953,0.13228,0.66768,0.64354,0.65024 +28,28,Printing and related support activities,27.31311,49933189821.85918,3230,0.08738,0.11734,0.17648,0.15753,Manufacturing,-0.22743,0.10674,0.02813,0.06122,0.18839,0.15842,0.04236,0.06493,0.05770,corporate,0.00259,0.01223,0.00914,0.12975,0.15231,0.14509,0.70411,0.67447,0.68269 +29,29,Petroleum and coal products,59.57314,329428164622.01349,3240,0.04248,0.12696,0.19128,0.17068,Manufacturing,-0.16069,0.15548,0.08117,0.11226,0.23267,0.20435,0.04480,0.06868,0.06103,corporate,0.00503,0.01598,0.01247,0.08728,0.11116,0.10351,0.39609,0.38096,0.38516 +30,30,Chemical products,25.25661,863500170455.36816,3250,0.08141,0.11219,0.16868,0.15059,Manufacturing,-0.26638,0.07873,-0.00237,0.03143,0.16294,0.13201,0.04106,0.06296,0.05595,corporate,0.00129,0.01026,0.00739,0.12247,0.14436,0.13735,0.75755,0.74391,0.74769 +31,31,Plastics and rubber products,35.77905,110331312312.70663,3260,0.07510,0.11968,0.17969,0.16047,Manufacturing,-0.21050,0.11779,0.04051,0.07417,0.19843,0.16914,0.04296,0.06574,0.05845,corporate,0.00319,0.01305,0.00989,0.11806,0.14085,0.13355,0.63110,0.60828,0.61461 +32,32,Nonmetallic mineral products,49.77944,116582519996.16560,3270,0.05528,0.12497,0.18821,0.16795,Manufacturing,-0.17388,0.14581,0.07064,0.10217,0.22389,0.19523,0.04430,0.06790,0.06034,corporate,0.00453,0.01520,0.01178,0.09958,0.12318,0.11562,0.48036,0.45775,0.46402 +33,33,Primary metals,39.02286,186378975799.42520,3310,0.06098,0.12254,0.18404,0.16434,Manufacturing,-0.19047,0.13234,0.05633,0.08949,0.21165,0.18284,0.04368,0.06685,0.05943,corporate,0.00391,0.01415,0.01087,0.10466,0.12782,0.12040,0.58554,0.55704,0.56494 +34,34,Fabricated metal products,36.46005,185026333665.73004,3320,0.07307,0.12037,0.18076,0.16142,Manufacturing,-0.20559,0.12143,0.04444,0.07792,0.20173,0.17254,0.04313,0.06602,0.05869,corporate,0.00336,0.01332,0.01013,0.11620,0.13909,0.13176,0.62014,0.59563,0.60242 +35,35,Machinery,38.17436,272319888397.28802,3330,0.08052,0.11999,0.18009,0.16084,Manufacturing,-0.20828,0.11915,0.04206,0.07586,0.19966,0.17048,0.04304,0.06585,0.05854,corporate,0.00326,0.01315,0.00998,0.12356,0.14637,0.13906,0.61339,0.59327,0.59885 +36,36,Computer and electronic products,26.26678,503974938260.46338,3340,0.14992,0.11503,0.17302,0.15444,Manufacturing,-0.24460,0.09454,0.01480,0.04808,0.17730,0.14688,0.04178,0.06406,0.05692,corporate,0.00201,0.01136,0.00836,0.19170,0.21398,0.20684,0.72574,0.70325,0.70949 +37,37,"Electrical equipment, appliances, and components",46.30998,97409347475.05879,3350,0.06863,0.12475,0.18721,0.16720,Manufacturing,-0.17540,0.14261,0.06770,0.10101,0.22098,0.19268,0.04424,0.06765,0.06015,corporate,0.00447,0.01495,0.01159,0.11287,0.13628,0.12878,0.51716,0.49324,0.49987 +38,38,"Motor vehicles, bodies and trailers, and parts",35.25214,238664334578.38879,336M,0.10965,0.11835,0.17770,0.15869,Manufacturing,-0.22011,0.11097,0.03306,0.06682,0.19223,0.16269,0.04262,0.06524,0.05800,corporate,0.00285,0.01254,0.00944,0.15227,0.17489,0.16765,0.64638,0.62709,0.63244 +39,39,Other transportation equipment,49.50530,222225359206.18329,336O,0.07733,0.12599,0.18871,0.16862,Manufacturing,-0.16714,0.14740,0.07325,0.10733,0.22533,0.19749,0.04455,0.06803,0.06051,corporate,0.00478,0.01533,0.01195,0.12189,0.14536,0.13785,0.48840,0.46819,0.47379 +40,40,Furniture and related products,43.14781,27298970230.41120,3370,0.06489,0.12569,0.18879,0.16857,Manufacturing,-0.16908,0.14766,0.07304,0.10585,0.22557,0.19731,0.04448,0.06805,0.06050,corporate,0.00471,0.01535,0.01194,0.10937,0.13293,0.12539,0.52685,0.49450,0.50347 +41,41,Miscellaneous manufacturing,39.11052,132809342156.77454,338A,0.08377,0.12055,0.18094,0.16160,Manufacturing,-0.20437,0.12201,0.04518,0.07885,0.20227,0.17318,0.04318,0.06606,0.05873,corporate,0.00340,0.01336,0.01017,0.12695,0.14983,0.14250,0.60160,0.58116,0.58683 +42,42,Oil and gas extraction,8.69835,1206378685719.62354,2110,0.07337,0.10222,0.15395,0.13739,Mining,-0.34941,0.02072,-0.06607,-0.03207,0.11023,0.07685,0.03854,0.05923,0.05260,corporate,-0.00124,0.00653,0.00404,0.11190,0.13259,0.12597,0.94869,0.94293,0.94452 +43,43,"Mining, except oil and gas",31.00869,190223523014.26080,2120,0.05531,0.11392,0.17161,0.15314,Mining,-0.25305,0.08947,0.00904,0.04162,0.17269,0.14189,0.04150,0.06370,0.05659,corporate,0.00173,0.01100,0.00803,0.09681,0.11901,0.11191,0.70500,0.69076,0.69471 +44,44,Support activities for mining,14.80506,120225750256.28439,2130,0.09587,0.10430,0.15706,0.14017,Mining,-0.33120,0.03357,-0.05199,-0.01815,0.12190,0.08904,0.03906,0.06001,0.05331,corporate,-0.00071,0.00732,0.00475,0.13494,0.15589,0.14918,0.90111,0.89488,0.89661 +45,45,"Other services, except government",38.49273,227393671624.08221,8100,0.04298,0.12455,0.18905,0.16831,"Other services, except government",-0.17672,0.14847,0.07205,0.10000,0.22631,0.19645,0.04419,0.06811,0.06043,corporate,0.00442,0.01541,0.01187,0.08717,0.11110,0.10342,0.54407,0.48734,0.50327 +46,46,Legal services,28.84422,20028299847.23765,5411,0.10067,0.12207,0.18445,0.16443,"Professional, scientific, and technical services",-0.19371,0.13366,0.05668,0.08701,0.21285,0.18314,0.04356,0.06695,0.05945,corporate,0.00379,0.01425,0.01089,0.14423,0.16762,0.16012,0.62964,0.57928,0.59325 +47,47,"Miscellaneous professional, scientific, and technical services",19.64137,249009155856.58878,5412,0.14708,0.11129,0.16774,0.14965,"Professional, scientific, and technical services",-0.27350,0.07523,-0.00667,0.02598,0.15976,0.12829,0.04083,0.06272,0.05571,corporate,0.00106,0.01002,0.00715,0.18791,0.20980,0.20279,0.79378,0.77159,0.77774 +48,48,Computer systems design and related services,22.08806,42903264705.68482,5415,0.20021,0.11472,0.17305,0.15435,"Professional, scientific, and technical services",-0.24698,0.09465,0.01438,0.04626,0.17740,0.14651,0.04170,0.06406,0.05690,corporate,0.00193,0.01136,0.00834,0.24191,0.26427,0.25711,0.74157,0.71025,0.71893 +49,49,Real estate,84.50235,2545926908840.65576,5310,0.00522,0.13635,0.20688,0.18427,Real estate and rental and leasing,-0.10225,0.20140,0.13019,0.15696,0.27440,0.24680,0.04718,0.07263,0.06447,corporate,0.00740,0.01993,0.01591,0.05239,0.07784,0.06969,0.11545,0.09598,0.10150 +50,50,Rental and leasing services and lessors of intangible assets,12.60970,248115752512.01251,5320,0.13613,0.10322,0.15554,0.13879,Real estate and rental and leasing,-0.34056,0.02734,-0.05892,-0.02531,0.11624,0.08304,0.03879,0.05963,0.05296,corporate,-0.00098,0.00693,0.00440,0.17492,0.19576,0.18909,0.91543,0.91066,0.91198 +51,51,Retail trade,59.09235,1608593695005.15381,44RT,0.03643,0.13361,0.20120,0.17953,Retail trade,-0.11867,0.18527,0.11368,0.14440,0.25974,0.23250,0.04648,0.07119,0.06327,corporate,0.00671,0.01849,0.01471,0.08291,0.10762,0.09970,0.33693,0.29760,0.30851 +52,52,Air transportation,14.66966,190656359022.74890,4810,0.07385,0.10830,0.16339,0.14574,Transportation and warehousing,-0.29752,0.05872,-0.02489,0.00761,0.14476,0.11251,0.04008,0.06162,0.05472,corporate,0.00031,0.00892,0.00616,0.11393,0.13547,0.12857,0.85021,0.82922,0.83504 +53,53,Railroad transportation,14.87954,331352975210.21057,4820,0.03044,0.10054,0.15146,0.13517,Transportation and warehousing,-0.36443,0.01021,-0.07758,-0.04357,0.10069,0.06688,0.03811,0.05860,0.05204,corporate,-0.00166,0.00590,0.00348,0.06855,0.08904,0.08248,0.96257,0.96231,0.96238 +54,54,Water transportation,17.09966,36714023796.14972,4830,0.06970,0.10622,0.16013,0.14286,Transportation and warehousing,-0.31484,0.04595,-0.03869,-0.00564,0.13315,0.10055,0.03955,0.06079,0.05399,corporate,-0.00022,0.00809,0.00543,0.10925,0.13049,0.12369,0.87537,0.86206,0.86575 +55,55,Truck transportation,20.61584,108471874449.86627,4840,0.12901,0.10941,0.16491,0.14714,Transportation and warehousing,-0.28847,0.06454,-0.01830,0.01453,0.15005,0.11822,0.04036,0.06200,0.05507,corporate,0.00059,0.00930,0.00651,0.16936,0.19101,0.18408,0.80572,0.79205,0.79584 +56,56,Transit and ground passenger transportation,25.85441,35034660346.86049,4850,0.08027,0.11872,0.17938,0.15991,Transportation and warehousing,-0.21742,0.11674,0.03820,0.06888,0.19747,0.16714,0.04271,0.06567,0.05831,corporate,0.00294,0.01297,0.00975,0.12299,0.14594,0.13858,0.68421,0.63988,0.65217 +57,57,Pipeline transportation,8.41826,169678725932.06000,4860,0.05383,0.10223,0.15405,0.13745,Transportation and warehousing,-0.34929,0.02113,-0.06572,-0.03199,0.11060,0.07715,0.03854,0.05925,0.05262,corporate,-0.00123,0.00655,0.00406,0.09237,0.11308,0.10645,0.94970,0.94237,0.94441 +58,58,Other transportation and support activities,23.59937,110872018726.73232,487S,0.06367,0.10937,0.16499,0.14717,Transportation and warehousing,-0.28883,0.06487,-0.01812,0.01426,0.15035,0.11837,0.04035,0.06202,0.05508,corporate,0.00058,0.00933,0.00652,0.10401,0.12569,0.11875,0.80805,0.79138,0.79600 +59,59,Warehousing and storage,40.27303,33575803410.77195,4930,0.04356,0.12891,0.19513,0.17386,Transportation and warehousing,-0.14809,0.16729,0.09311,0.12190,0.24340,0.21469,0.04529,0.06965,0.06184,corporate,0.00552,0.01695,0.01328,0.08885,0.11321,0.10539,0.48545,0.42500,0.44176 +60,60,Utilities,15.06813,2043225324419.22656,2200,0.04186,0.10063,0.15157,0.13527,Utilities,-0.36362,0.01066,-0.07707,-0.04295,0.10109,0.06733,0.03813,0.05863,0.05207,corporate,-0.00164,0.00593,0.00351,0.08000,0.10049,0.09393,0.96767,0.96596,0.96644 +61,61,Wholesale trade,62.56787,973137443870.90881,4200,0.05422,0.13148,0.19695,0.17598,Wholesale trade,-0.13179,0.17276,0.10093,0.13436,0.24838,0.22146,0.04594,0.07011,0.06238,corporate,0.00617,0.01741,0.01381,0.10017,0.12434,0.11660,0.34860,0.32912,0.33452 +62,62,Accommodation,57.79905,321835229078.19275,7210,0.02700,0.21479,0.19704,0.20216,Accommodation and food services,0.25947,0.18893,0.20501,0.25947,0.18893,0.20501,0.04734,0.06497,0.05985,non-corporate,0.01228,0.01228,0.01227,0.07434,0.09197,0.08685,0.31416,0.27508,0.28527 +63,63,Food services and drinking places,37.79544,131618330778.79922,7220,0.05846,0.20438,0.18285,0.18907,Accommodation and food services,0.21631,0.14204,0.15897,0.21631,0.14204,0.15897,0.04473,0.06142,0.05658,non-corporate,0.00968,0.00872,0.00899,0.10319,0.11988,0.11504,0.54537,0.51078,0.51980 +64,64,Administrative and support services,22.90398,87779837154.60233,5610,0.14729,0.19271,0.16700,0.17444,Administrative and waste management services,0.16158,0.08278,0.10077,0.16158,0.08278,0.10077,0.04181,0.05745,0.05291,non-corporate,0.00676,0.00476,0.00533,0.18910,0.20474,0.20020,0.74904,0.72977,0.73480 +65,65,Waste management and remediation services,28.00786,45442362954.18396,5620,0.05017,0.18875,0.16156,0.16944,Administrative and waste management services,0.14123,0.06053,0.07899,0.14123,0.06053,0.07899,0.04082,0.05609,0.05166,non-corporate,0.00577,0.00340,0.00408,0.09100,0.10627,0.10184,0.80214,0.79228,0.79485 +66,66,Farms,61.51678,695254770987.64246,110C,0.03338,0.20195,0.17904,0.18569,"Agriculture, forestry, fishing, and hunting",0.20554,0.12850,0.14620,0.20554,0.12850,0.14620,0.04413,0.06047,0.05573,non-corporate,0.00907,0.00777,0.00815,0.07751,0.09385,0.08911,0.44654,0.44654,0.44654 +67,67,"Forestry, fishing, and related activities",80.96268,182890160759.96515,113F,0.02138,0.21064,0.19168,0.19718,"Agriculture, forestry, fishing, and hunting",0.24285,0.17185,0.18811,0.24285,0.17185,0.18811,0.04630,0.06363,0.05861,non-corporate,0.01124,0.01094,0.01102,0.06768,0.08501,0.07999,0.19492,0.19167,0.19252 +68,68,"Performing arts, spectator sports, museums, and related activities",24.88765,85913620169.51553,711A,0.07655,0.19123,0.16511,0.17267,"Arts, entertainment, and recreation",0.15406,0.07518,0.09317,0.15406,0.07518,0.09317,0.04144,0.05698,0.05247,non-corporate,0.00638,0.00428,0.00489,0.11799,0.13353,0.12902,0.76939,0.75091,0.75573 +69,69,"Amusements, gambling, and recreation industries",35.67483,103963170327.32812,7130,0.04082,0.19500,0.17012,0.17733,"Arts, entertainment, and recreation",0.17293,0.09511,0.11291,0.17293,0.09511,0.11291,0.04239,0.05824,0.05364,non-corporate,0.00733,0.00554,0.00606,0.08321,0.09906,0.09446,0.65106,0.63964,0.64262 +70,70,Construction,61.58594,416883328406.94965,2300,0.05302,0.20417,0.18257,0.18883,Construction,0.21540,0.14107,0.15810,0.21540,0.14107,0.15810,0.04468,0.06135,0.05652,non-corporate,0.00962,0.00866,0.00894,0.09770,0.11438,0.10954,0.39132,0.38534,0.38690 +71,71,Educational services,34.08224,223504365062.32428,6100,0.04403,0.20702,0.18730,0.19297,Educational services,0.22772,0.15733,0.17323,0.22772,0.15733,0.17323,0.04539,0.06254,0.05755,non-corporate,0.01034,0.00984,0.00997,0.08942,0.10657,0.10158,0.50864,0.45294,0.46747 +72,72,Credit intermediation and related activities,29.58426,75859556179.73862,5220,0.10435,0.19849,0.17476,0.18162,Finance and insurance,0.18960,0.11279,0.13031,0.18960,0.11279,0.13031,0.04326,0.05940,0.05471,non-corporate,0.00820,0.00670,0.00713,0.14760,0.16374,0.15906,0.65384,0.62673,0.63380 +73,73,"Securities, commodity contracts, and investments",68.67047,178435565511.13712,5230,0.04082,0.21207,0.19339,0.19879,Finance and insurance,0.24867,0.17736,0.19366,0.24867,0.17736,0.19366,0.04666,0.06406,0.05901,non-corporate,0.01160,0.01136,0.01143,0.08748,0.10488,0.09983,0.26443,0.24474,0.24987 +74,74,Insurance carriers and related activities,34.29784,22117554581.34229,5240,0.10767,0.20400,0.18239,0.18863,Finance and insurance,0.21465,0.14043,0.15734,0.21465,0.14043,0.15734,0.04464,0.06131,0.05647,non-corporate,0.00958,0.00861,0.00888,0.15231,0.16898,0.16414,0.56543,0.52802,0.53778 +75,75,"Funds, trusts, and other financial vehicles",58.69939,32975922704.02256,5250,0.01910,0.21563,0.19846,0.20340,Finance and insurance,0.26274,0.19334,0.20912,0.26274,0.19334,0.20912,0.04755,0.06533,0.06016,non-corporate,0.01249,0.01263,0.01258,0.06666,0.08443,0.07927,0.28890,0.24539,0.25674 +76,76,Ambulatory health care services,26.88893,165185547973.71588,6210,0.07665,0.19975,0.17680,0.18342,Health care and social assistance,0.19548,0.12035,0.13743,0.19548,0.12035,0.13743,0.04358,0.05991,0.05516,non-corporate,0.00852,0.00721,0.00758,0.12023,0.13656,0.13182,0.65156,0.61407,0.62385 +77,77,Hospitals,33.25928,468740246235.20782,622H,0.05080,0.20434,0.18356,0.18954,Health care and social assistance,0.21616,0.14453,0.16073,0.21616,0.14453,0.16073,0.04472,0.06160,0.05670,non-corporate,0.00967,0.00890,0.00911,0.09553,0.11240,0.10750,0.54488,0.49662,0.50921 +78,78,Nursing and residential care facilities,30.33509,44969311542.03897,6230,0.04907,0.20414,0.18311,0.18916,Health care and social assistance,0.21528,0.14294,0.15932,0.21528,0.14294,0.15932,0.04467,0.06149,0.05660,non-corporate,0.00962,0.00879,0.00902,0.09374,0.11056,0.10567,0.57359,0.52432,0.53717 +79,79,Social assistance,36.92941,33500693280.97236,6240,0.04961,0.20452,0.18338,0.18948,Health care and social assistance,0.21695,0.14388,0.16049,0.21695,0.14388,0.16049,0.04477,0.06155,0.05668,non-corporate,0.00971,0.00886,0.00910,0.09438,0.11117,0.10629,0.53678,0.49726,0.50757 +80,80,Publishing industries (including software),33.44919,10531454693.98520,5110,0.12610,0.19468,0.16953,0.17682,Information,0.17135,0.09282,0.11078,0.17135,0.09282,0.11078,0.04231,0.05809,0.05351,non-corporate,0.00725,0.00539,0.00593,0.16841,0.18419,0.17961,0.67968,0.66631,0.66980 +81,81,Motion picture and sound recording industries,22.07241,32648570358.87631,5120,0.10064,0.18415,0.15515,0.16356,Information,0.11630,0.03288,0.05199,0.11630,0.03288,0.05199,0.03967,0.05449,0.05019,non-corporate,0.00461,0.00179,0.00261,0.14031,0.15513,0.15083,0.89126,0.88783,0.88873 +82,82,Broadcasting and telecommunications,19.11518,114376654728.14319,5130,0.06871,0.18448,0.15569,0.16404,Information,0.11814,0.03527,0.05424,0.11814,0.03527,0.05424,0.03975,0.05462,0.05031,non-corporate,0.00470,0.00193,0.00273,0.10846,0.12334,0.11902,0.89140,0.88543,0.88699 +83,83,Information and data processing services,17.05502,9622690881.11265,5140,0.20060,0.18703,0.15926,0.16731,Information,0.13206,0.05080,0.06938,0.13206,0.05080,0.06938,0.04039,0.05552,0.05113,non-corporate,0.00533,0.00282,0.00355,0.24100,0.25612,0.25173,0.84088,0.83099,0.83357 +84,84,Management of companies and enterprises,43.27634,90403382551.37852,5500,0.07684,0.20763,0.18738,0.19322,Management of companies and enterprises,0.23033,0.15759,0.17416,0.23033,0.15759,0.17416,0.04555,0.06256,0.05762,non-corporate,0.01049,0.00986,0.01003,0.12239,0.13940,0.13446,0.47085,0.43340,0.44317 +85,85,"Food, beverage, and tobacco products",48.30489,75311838089.07274,311A,0.05479,0.20512,0.18305,0.18944,Manufacturing,0.21953,0.14274,0.16036,0.21953,0.14274,0.16036,0.04492,0.06147,0.05667,non-corporate,0.00986,0.00878,0.00909,0.09971,0.11626,0.11146,0.49211,0.47406,0.47877 +86,86,Textile mills and textile product mills,40.68702,7854948624.36963,313T,0.05307,0.20650,0.18504,0.19125,Manufacturing,0.22553,0.14964,0.16701,0.22553,0.14964,0.16701,0.04527,0.06197,0.05712,non-corporate,0.01021,0.00927,0.00954,0.09834,0.11504,0.11019,0.52748,0.49634,0.50446 +87,87,Apparel and leather and allied products,57.59360,5338390836.40291,315A,0.03836,0.21240,0.19266,0.19837,Manufacturing,0.24997,0.17502,0.19221,0.24997,0.17502,0.19221,0.04674,0.06388,0.05890,non-corporate,0.01168,0.01118,0.01132,0.08510,0.10223,0.09726,0.36702,0.34175,0.34835 +88,88,Wood products,49.75998,13100141973.21793,3210,0.04885,0.20752,0.18649,0.19258,Manufacturing,0.22987,0.15458,0.17183,0.22987,0.15458,0.17183,0.04552,0.06233,0.05745,non-corporate,0.01046,0.00964,0.00987,0.09437,0.11119,0.10631,0.45585,0.43200,0.43822 +89,89,Paper products,35.24665,18990987477.75871,3220,0.07114,0.19853,0.17432,0.18133,Manufacturing,0.18979,0.11113,0.12915,0.18979,0.11113,0.12915,0.04327,0.05929,0.05464,non-corporate,0.00821,0.00659,0.00706,0.11441,0.13043,0.12578,0.63784,0.62077,0.62523 +90,90,Printing and related support activities,29.64849,7652157518.59406,3230,0.08458,0.19761,0.17314,0.18022,Manufacturing,0.18545,0.10668,0.12471,0.18545,0.10668,0.12471,0.04304,0.05899,0.05436,non-corporate,0.00798,0.00629,0.00678,0.12761,0.14357,0.13894,0.68043,0.65922,0.66475 +91,91,Petroleum and coal products,57.31094,36804972259.27284,3240,0.04485,0.20568,0.18419,0.19041,Manufacturing,0.22196,0.14669,0.16395,0.22196,0.14669,0.16395,0.04506,0.06176,0.05691,non-corporate,0.01000,0.00906,0.00933,0.08991,0.10661,0.10177,0.41766,0.40585,0.40893 +92,92,Chemical products,28.24831,155956627360.72098,3250,0.07815,0.19298,0.16686,0.17443,Manufacturing,0.16291,0.08223,0.10072,0.16291,0.08223,0.10072,0.04188,0.05742,0.05291,non-corporate,0.00682,0.00472,0.00533,0.12003,0.13557,0.13106,0.72674,0.71707,0.71959 +93,93,Plastics and rubber products,41.70295,18759113941.02066,3260,0.06817,0.20130,0.17785,0.18465,Manufacturing,0.20258,0.12421,0.14219,0.20258,0.12421,0.14219,0.04396,0.06017,0.05547,non-corporate,0.00891,0.00747,0.00789,0.11214,0.12835,0.12364,0.57212,0.55681,0.56080 +94,94,Nonmetallic mineral products,50.65769,17930326841.17467,3270,0.05431,0.20465,0.18279,0.18912,Manufacturing,0.21749,0.14181,0.15915,0.21749,0.14181,0.15915,0.04480,0.06141,0.05659,non-corporate,0.00974,0.00871,0.00901,0.09912,0.11572,0.11090,0.47114,0.45472,0.45900 +95,95,Primary metals,43.39133,31384946425.55616,3310,0.05661,0.20342,0.18076,0.18732,Manufacturing,0.21210,0.13468,0.15243,0.21210,0.13468,0.15243,0.04449,0.06090,0.05614,non-corporate,0.00944,0.00820,0.00856,0.10110,0.11751,0.11275,0.54261,0.52305,0.52816 +96,96,Fabricated metal products,40.57109,33868174282.69432,3320,0.06834,0.20126,0.17785,0.18463,Manufacturing,0.20238,0.12419,0.14212,0.20238,0.12419,0.14212,0.04395,0.06017,0.05547,non-corporate,0.00890,0.00747,0.00788,0.11230,0.12852,0.12381,0.57917,0.56222,0.56664 +97,97,Machinery,45.59719,44994036766.73473,3330,0.07085,0.20226,0.17908,0.18580,Manufacturing,0.20692,0.12865,0.14662,0.20692,0.12865,0.14662,0.04420,0.06048,0.05576,non-corporate,0.00915,0.00778,0.00818,0.11506,0.13133,0.12661,0.53910,0.52601,0.52942 +98,98,Computer and electronic products,27.75599,67202508361.14622,3340,0.14689,0.19511,0.16978,0.17712,Manufacturing,0.17345,0.09379,0.11203,0.17345,0.09379,0.11203,0.04241,0.05815,0.05359,non-corporate,0.00736,0.00545,0.00600,0.18931,0.20504,0.20048,0.71027,0.69398,0.69823 +99,99,"Electrical equipment, appliances, and components",51.19822,13457767002.27841,3350,0.06238,0.20585,0.18391,0.19026,Manufacturing,0.22273,0.14571,0.16339,0.22273,0.14571,0.16339,0.04510,0.06169,0.05688,non-corporate,0.01005,0.00899,0.00929,0.10748,0.12407,0.11926,0.46927,0.45320,0.45739 +100,100,"Motor vehicles, bodies and trailers, and parts",39.59103,37968439962.33989,336M,0.10231,0.19947,0.17542,0.18239,Manufacturing,0.19418,0.11527,0.13338,0.19418,0.11527,0.13338,0.04351,0.05956,0.05491,non-corporate,0.00845,0.00687,0.00732,0.14581,0.16187,0.15721,0.60240,0.58910,0.59257 +101,101,Other transportation equipment,55.71089,37605705698.82620,336O,0.06783,0.20749,0.18589,0.19215,Manufacturing,0.22974,0.15254,0.17029,0.22974,0.15254,0.17029,0.04551,0.06218,0.05735,non-corporate,0.01046,0.00949,0.00977,0.11334,0.13001,0.12518,0.42772,0.41462,0.41803 +102,102,Furniture and related products,46.12348,3398491339.24600,3370,0.06149,0.20595,0.18418,0.19048,Manufacturing,0.22316,0.14668,0.16421,0.22316,0.14668,0.16421,0.04513,0.06176,0.05693,non-corporate,0.01007,0.00906,0.00935,0.10662,0.12325,0.11842,0.49814,0.47548,0.48139 +103,103,Miscellaneous manufacturing,44.10283,21983133311.41251,338A,0.07690,0.20194,0.17866,0.18541,Manufacturing,0.20549,0.12713,0.14512,0.20549,0.12713,0.14512,0.04412,0.06037,0.05566,non-corporate,0.00907,0.00768,0.00808,0.12103,0.13728,0.13256,0.55158,0.53771,0.54133 +104,104,Oil and gas extraction,9.26036,250060628349.92041,2110,0.07292,0.18216,0.15251,0.16111,Mining,0.10505,0.02102,0.04026,0.10505,0.02102,0.04026,0.03917,0.05383,0.04958,non-corporate,0.00412,0.00113,0.00200,0.11209,0.12675,0.12249,0.94264,0.93840,0.93951 +105,105,"Mining, except oil and gas",36.47161,42556976403.16281,2120,0.05093,0.19514,0.17018,0.17741,Mining,0.17359,0.09535,0.11326,0.17359,0.09535,0.11326,0.04242,0.05825,0.05366,non-corporate,0.00736,0.00555,0.00608,0.09335,0.10919,0.10459,0.64869,0.63900,0.64153 +106,106,Support activities for mining,15.74712,25044165259.30807,2130,0.09481,0.18428,0.15539,0.16377,Mining,0.11702,0.03394,0.05297,0.11702,0.03394,0.05297,0.03970,0.05455,0.05024,non-corporate,0.00465,0.00185,0.00266,0.13452,0.14936,0.14506,0.89092,0.88637,0.88755 +107,107,"Other services, except government",36.31857,434659499245.39331,8100,0.04450,0.20315,0.18185,0.18798,"Other services, except government",0.21091,0.13852,0.15490,0.21091,0.13852,0.15490,0.04443,0.06117,0.05630,non-corporate,0.00937,0.00847,0.00872,0.08893,0.10568,0.10081,0.56117,0.51790,0.52929 +108,108,Legal services,29.93984,24694671280.08685,5411,0.09912,0.20149,0.17904,0.18552,"Professional, scientific, and technical services",0.20346,0.12850,0.14556,0.20346,0.12850,0.14556,0.04401,0.06047,0.05569,non-corporate,0.00895,0.00777,0.00811,0.14313,0.15959,0.15481,0.61812,0.58146,0.59103 +109,109,"Miscellaneous professional, scientific, and technical services",19.84614,250145961935.08807,5412,0.14671,0.19075,0.16424,0.17191,"Professional, scientific, and technical services",0.15164,0.07163,0.08991,0.15164,0.07163,0.08991,0.04132,0.05676,0.05228,non-corporate,0.00627,0.00407,0.00470,0.18803,0.20347,0.19899,0.79094,0.77458,0.77885 +110,110,Computer systems design and related services,22.66047,34987856978.92335,5415,0.19874,0.19422,0.16901,0.17630,"Professional, scientific, and technical services",0.16908,0.09076,0.10864,0.16908,0.09076,0.10864,0.04219,0.05796,0.05338,non-corporate,0.00713,0.00526,0.00580,0.24093,0.25670,0.25212,0.73498,0.71199,0.71799 +111,111,Real estate,84.96022,10194539931205.20117,5310,0.00516,0.21525,0.19825,0.20316,Real estate and rental and leasing,0.26124,0.19271,0.20834,0.26124,0.19271,0.20834,0.04745,0.06528,0.06010,non-corporate,0.01240,0.01258,0.01252,0.05261,0.07044,0.06526,0.11157,0.09771,0.10139 +112,112,Rental and leasing services and lessors of intangible assets,14.26025,187611316433.88910,5320,0.13356,0.18362,0.15453,0.16296,Real estate and rental and leasing,0.11331,0.03011,0.04916,0.11331,0.03011,0.04916,0.03954,0.05433,0.05004,non-corporate,0.00448,0.00164,0.00246,0.17310,0.18790,0.18361,0.89796,0.89450,0.89541 +113,113,Retail trade,68.40422,599107994988.67297,44RT,0.02814,0.21541,0.19692,0.20227,Retail trade,0.26188,0.18856,0.20537,0.26188,0.18856,0.20537,0.04749,0.06494,0.05988,non-corporate,0.01244,0.01225,0.01230,0.07563,0.09308,0.08802,0.25912,0.23666,0.24252 +114,114,Air transportation,14.96155,47796425035.43796,4810,0.07360,0.18799,0.16056,0.16850,Transportation and warehousing,0.13719,0.05632,0.07479,0.13719,0.05632,0.07479,0.04063,0.05584,0.05143,non-corporate,0.00557,0.00315,0.00385,0.11423,0.12944,0.12503,0.84653,0.83107,0.83510 +115,115,Railroad transportation,15.14169,83039763589.18028,4820,0.03034,0.18044,0.15021,0.15898,Transportation and warehousing,0.09511,0.01043,0.02983,0.09511,0.01043,0.02983,0.03874,0.05325,0.04905,non-corporate,0.00368,0.00056,0.00146,0.06909,0.08360,0.07939,0.95960,0.95940,0.95945 +116,116,Water transportation,17.50642,9217710064.52573,4830,0.06936,0.18601,0.15782,0.16598,Transportation and warehousing,0.12656,0.04457,0.06332,0.12656,0.04457,0.06332,0.04014,0.05516,0.05080,non-corporate,0.00508,0.00246,0.00322,0.10950,0.12452,0.12016,0.87058,0.86079,0.86335 +117,117,Truck transportation,19.74733,37317255861.67974,4840,0.13042,0.18865,0.16135,0.16926,Transportation and warehousing,0.14068,0.05964,0.07818,0.14068,0.05964,0.07818,0.04080,0.05604,0.05162,non-corporate,0.00574,0.00334,0.00404,0.17121,0.18646,0.18204,0.81402,0.80381,0.80647 +118,118,Transit and ground passenger transportation,25.50512,10233125938.31284,4850,0.08065,0.19791,0.17417,0.18103,Transportation and warehousing,0.18690,0.11057,0.12795,0.18690,0.11057,0.12795,0.04312,0.05925,0.05456,non-corporate,0.00806,0.00655,0.00698,0.12377,0.13990,0.13522,0.68579,0.65287,0.66145 +119,119,Pipeline transportation,8.49334,33708295455.20280,4860,0.05378,0.18199,0.15233,0.16093,Transportation and warehousing,0.10410,0.02019,0.03939,0.10410,0.02019,0.03939,0.03913,0.05378,0.04953,non-corporate,0.00407,0.00109,0.00195,0.09291,0.10757,0.10332,0.94865,0.94324,0.94465 +120,120,Other transportation and support activities,23.54062,34235605978.81979,487S,0.06371,0.18892,0.16181,0.16966,Transportation and warehousing,0.14210,0.06157,0.07997,0.14210,0.06157,0.07997,0.04086,0.05616,0.05172,non-corporate,0.00581,0.00346,0.00414,0.10458,0.11987,0.11543,0.80806,0.79573,0.79894 +121,121,Warehousing and storage,38.87182,15189477206.55462,4930,0.04458,0.20767,0.18763,0.19341,Transportation and warehousing,0.23051,0.15844,0.17481,0.23051,0.15844,0.17481,0.04556,0.06262,0.05766,non-corporate,0.01050,0.00992,0.01008,0.09014,0.10720,0.10224,0.49456,0.44882,0.46075 +122,122,Utilities,16.13995,110848021471.90637,2200,0.04133,0.18089,0.15080,0.15952,Utilities,0.09771,0.01315,0.03252,0.09771,0.01315,0.03252,0.03885,0.05340,0.04918,non-corporate,0.00380,0.00070,0.00160,0.08019,0.09473,0.09051,0.95540,0.95415,0.95447 +123,123,Wholesale trade,74.90337,387578651034.04889,4200,0.03635,0.21497,0.19578,0.20134,Wholesale trade,0.26016,0.18497,0.20228,0.26016,0.18497,0.20228,0.04738,0.06466,0.05965,non-corporate,0.01233,0.01196,0.01207,0.08374,0.10101,0.09600,0.23324,0.22358,0.22610 +124,124,Accommodation and food services,57.53282,422339182442.50781,,0.03387,0.13261,0.20037,0.17864,Accommodation and food services,-0.12481,0.18288,0.11053,0.13970,0.25757,0.22977,0.04623,0.07098,0.06305,corporate,0.00646,0.01828,0.01449,0.08010,0.10485,0.09692,0.34724,0.30523,0.31688 +125,125,Administrative and waste management services,25.41352,175956964097.71542,,0.10934,0.11191,0.16886,0.15061,Administrative and waste management services,-0.26862,0.07939,-0.00230,0.02972,0.16354,0.13207,0.04099,0.06300,0.05595,corporate,0.00122,0.01030,0.00739,0.15033,0.17234,0.16529,0.76440,0.74336,0.74919 +126,126,"Agriculture, forestry, fishing, and hunting",56.81278,393953898679.37433,,0.03838,0.12077,0.18157,0.16212,"Agriculture, forestry, fishing, and hunting",-0.20279,0.12414,0.04731,0.08006,0.20420,0.17503,0.04323,0.06622,0.05887,corporate,0.00346,0.01352,0.01030,0.08161,0.10460,0.09725,0.49624,0.49541,0.49564 +127,127,"Arts, entertainment, and recreation",32.00288,183023311189.45822,,0.05550,0.11429,0.17260,0.15392,"Arts, entertainment, and recreation",-0.25023,0.09302,0.01248,0.04378,0.17593,0.14487,0.04159,0.06395,0.05679,corporate,0.00182,0.01125,0.00823,0.09709,0.11945,0.11229,0.69285,0.67354,0.67889 +130,130,Finance and insurance,28.64482,1136731273762.68823,,0.10585,0.12042,0.18187,0.16215,Finance and insurance,-0.20525,0.12512,0.04745,0.07818,0.20509,0.17515,0.04314,0.06630,0.05887,corporate,0.00337,0.01360,0.01031,0.14899,0.17214,0.16472,0.64691,0.60323,0.61534 +131,131,Health care and social assistance,31.95205,742735929973.70728,,0.05691,0.12411,0.18830,0.16767,Health care and social assistance,-0.17974,0.14610,0.06954,0.09769,0.22416,0.19428,0.04408,0.06792,0.06027,corporate,0.00431,0.01523,0.01171,0.10099,0.12484,0.11718,0.57285,0.51200,0.52887 +132,132,Information,18.40316,1889701073104.17749,,0.09138,0.10496,0.15816,0.14113,Information,-0.32553,0.03806,-0.04722,-0.01381,0.12599,0.09317,0.03923,0.06029,0.05355,corporate,-0.00054,0.00760,0.00499,0.13061,0.15167,0.14493,0.89309,0.88368,0.88629 +133,133,Management of companies and enterprises,44.32188,424413435043.75659,,0.07542,0.12872,0.19460,0.17346,Management of companies and enterprises,-0.14931,0.16568,0.09161,0.12097,0.24195,0.21339,0.04524,0.06952,0.06174,corporate,0.00547,0.01682,0.01317,0.12067,0.14494,0.13716,0.46401,0.41428,0.42807 +134,134,Manufacturing,36.92289,3957731548856.36719,,0.08262,0.11945,0.17950,0.16027,Manufacturing,-0.21214,0.11714,0.03966,0.07291,0.19784,0.16841,0.04290,0.06570,0.05840,corporate,0.00313,0.01300,0.00983,0.12552,0.14832,0.14102,0.62095,0.60006,0.60585 +135,135,Mining,11.98029,1516827958990.16870,,0.07289,0.10385,0.15641,0.13958,Mining,-0.33508,0.03091,-0.05493,-0.02112,0.11949,0.08650,0.03895,0.05985,0.05316,corporate,-0.00082,0.00715,0.00460,0.11184,0.13274,0.12605,0.91436,0.90749,0.90940 +136,136,"Other services, except government",38.49273,227393671624.08221,,0.04298,0.12455,0.18905,0.16831,"Other services, except government",-0.17672,0.14847,0.07205,0.10000,0.22631,0.19645,0.04419,0.06811,0.06043,corporate,0.00442,0.01541,0.01187,0.08717,0.11110,0.10342,0.54407,0.48734,0.50327 +137,137,"Professional, scientific, and technical services",20.56875,311940720409.51123,,0.15141,0.11245,0.16954,0.15124,"Professional, scientific, and technical services",-0.26437,0.08191,0.00057,0.03296,0.16583,0.13456,0.04113,0.06317,0.05611,corporate,0.00136,0.01048,0.00755,0.19253,0.21458,0.20752,0.77606,0.75081,0.75781 +138,138,Real estate and rental and leasing,78.11816,2794042661352.66748,,0.01684,0.13340,0.20232,0.18023,Real estate and rental and leasing,-0.11993,0.18851,0.11617,0.14344,0.26268,0.23466,0.04643,0.07147,0.06345,corporate,0.00666,0.01877,0.01489,0.06327,0.08832,0.08029,0.18649,0.16832,0.17347 +140,140,Transportation and warehousing,16.62231,1016356440895.40027,,0.06020,0.10596,0.15976,0.14253,Transportation and warehousing,-0.31703,0.04446,-0.04033,-0.00732,0.13181,0.09914,0.03948,0.06070,0.05391,corporate,-0.00029,0.00800,0.00534,0.09968,0.12090,0.11411,0.87724,0.86471,0.86818 +143,143,Accommodation and food services,51.99285,453453559856.99200,,0.03613,0.21177,0.19292,0.19836,Accommodation and food services,0.24744,0.17585,0.19217,0.24744,0.17585,0.19217,0.04658,0.06394,0.05890,non-corporate,0.01153,0.01124,0.01132,0.08272,0.10007,0.09503,0.38127,0.34349,0.35335 +144,144,Administrative and waste management services,24.64493,133222200108.78630,,0.11416,0.19136,0.16514,0.17273,Administrative and waste management services,0.15475,0.07531,0.09346,0.15475,0.07531,0.09346,0.04148,0.05699,0.05249,non-corporate,0.00642,0.00429,0.00491,0.15564,0.17115,0.16665,0.76715,0.75109,0.75528 +145,145,"Agriculture, forestry, fishing, and hunting",65.56676,878144931747.60754,,0.03088,0.20376,0.18167,0.18808,"Agriculture, forestry, fishing, and hunting",0.21361,0.13790,0.15528,0.21361,0.13790,0.15528,0.04458,0.06113,0.05633,non-corporate,0.00952,0.00843,0.00875,0.07546,0.09201,0.08721,0.39414,0.39346,0.39364 +146,146,"Arts, entertainment, and recreation",30.79395,189876790496.84369,,0.05699,0.19329,0.16785,0.17522,"Arts, entertainment, and recreation",0.16450,0.08620,0.10409,0.16450,0.08620,0.10409,0.04196,0.05767,0.05311,non-corporate,0.00690,0.00497,0.00553,0.09895,0.11466,0.11010,0.70460,0.68998,0.69380 +149,149,Finance and insurance,55.56686,309388598976.24060,,0.05886,0.20854,0.18857,0.19435,Finance and insurance,0.23417,0.16160,0.17816,0.23417,0.16160,0.17816,0.04578,0.06286,0.05790,non-corporate,0.01072,0.01016,0.01032,0.10464,0.12172,0.11676,0.38404,0.35872,0.36532 +150,150,Health care and social assistance,31.77017,712395799031.93506,,0.05663,0.20327,0.18196,0.18810,Health care and social assistance,0.21144,0.13891,0.15534,0.21144,0.13891,0.15534,0.04446,0.06120,0.05633,non-corporate,0.00940,0.00850,0.00875,0.10109,0.11783,0.11296,0.57105,0.52564,0.53748 +151,151,Information,20.47709,167179370662.11737,,0.08615,0.18521,0.15666,0.16494,Information,0.12214,0.03955,0.05845,0.12214,0.03955,0.05845,0.03993,0.05487,0.05054,non-corporate,0.00488,0.00217,0.00295,0.12609,0.14102,0.13669,0.87513,0.86896,0.87057 +152,152,Management of companies and enterprises,43.27634,90403382551.37852,,0.07684,0.20763,0.18738,0.19322,Management of companies and enterprises,0.23033,0.15759,0.17416,0.23033,0.15759,0.17416,0.04555,0.06256,0.05762,non-corporate,0.01049,0.00986,0.01003,0.12239,0.13940,0.13446,0.47085,0.43340,0.44317 +153,153,Manufacturing,40.15757,649562708071.83960,,0.07667,0.20016,0.17643,0.18331,Manufacturing,0.19736,0.11901,0.13698,0.19736,0.11901,0.13698,0.04368,0.05982,0.05513,non-corporate,0.00862,0.00712,0.00755,0.12035,0.13649,0.13181,0.58820,0.57353,0.57736 +154,154,Mining,13.41725,317661770012.39130,,0.07170,0.18406,0.15511,0.16350,Mining,0.11582,0.03268,0.05172,0.11582,0.03268,0.05172,0.03965,0.05448,0.05018,non-corporate,0.00459,0.00178,0.00260,0.11135,0.12618,0.12187,0.89918,0.89419,0.89549 +155,155,"Other services, except government",36.31857,434659499245.39331,,0.04450,0.20315,0.18185,0.18798,"Other services, except government",0.21091,0.13852,0.15490,0.21091,0.13852,0.15490,0.04443,0.06117,0.05630,non-corporate,0.00937,0.00847,0.00872,0.08893,0.10568,0.10081,0.56117,0.51790,0.52929 +156,156,"Professional, scientific, and technical services",20.96846,309828490194.09827,,0.14879,0.19200,0.16596,0.17349,"Professional, scientific, and technical services",0.15800,0.07861,0.09674,0.15800,0.07861,0.09674,0.04164,0.05719,0.05268,non-corporate,0.00658,0.00450,0.00510,0.19042,0.20598,0.20147,0.77085,0.75212,0.75701 +157,157,Real estate and rental and leasing,83.68263,10382151247639.08984,,0.00748,0.21467,0.19746,0.20244,Real estate and rental and leasing,0.25900,0.19026,0.20594,0.25900,0.19026,0.20594,0.04731,0.06508,0.05992,non-corporate,0.01225,0.01238,0.01234,0.05479,0.07256,0.06740,0.12578,0.11211,0.11573 +159,159,Transportation and warehousing,17.78260,270737659129.71378,,0.06294,0.18655,0.15857,0.16667,Transportation and warehousing,0.12946,0.04782,0.06649,0.12946,0.04782,0.06649,0.04027,0.05535,0.05097,non-corporate,0.00521,0.00265,0.00339,0.10321,0.11829,0.11391,0.85958,0.84900,0.85176 +162,162,Overall,38.79367,20307631178754.23438,,0.06162,0.11870,0.17900,0.15968,Overall,-0.21758,0.11545,0.03721,0.06875,0.19630,0.16628,0.04271,0.06557,0.05825,corporate,0.00294,0.01287,0.00969,0.10432,0.12719,0.11986,0.60954,0.58748,0.59361 +163,163,Overall,68.60454,17036588368688.33008,,0.02639,0.20988,0.19064,0.19620,Overall,0.23971,0.16844,0.18471,0.23971,0.16844,0.18471,0.04611,0.06337,0.05836,non-corporate,0.01105,0.01067,0.01078,0.07250,0.08976,0.08475,0.28098,0.26454,0.26887 diff --git a/example_output/changed_byasset_expected.csv b/example_output/changed_byasset_expected.csv index 9808a2a2..74a6e9aa 100644 --- a/example_output/changed_byasset_expected.csv +++ b/example_output/changed_byasset_expected.csv @@ -1,149 +1,149 @@ ,Y,asset_name,assets,bea_asset_code,delta,eatr_d,eatr_e,eatr_mix,major_asset_group,metr_d,metr_e,metr_mix,mettr_d,mettr_e,mettr_mix,minor_asset_group,rho_d,rho_e,rho_mix,tax_treat,tax_wedge_d,tax_wedge_e,tax_wedge_mix,ucc_d,ucc_e,ucc_mix,z_d,z_e,z_mix -0,0.00000,Prepackaged software,0.00000,ENS1,0.00000,0.50666,0.55795,0.54148,Equipment,1.05084,0.70868,0.78743,0.80375,0.64393,0.68189,Computers and Software,0.12094,0.14109,0.13463,corporate,0.12094,0.14109,0.13463,0.12094,0.14109,0.13463,-0.03173,-0.05161,-0.04538 -1,0.00000,Custom software,0.00000,ENS2,0.00000,0.34533,0.39203,0.37700,Equipment,0.90162,0.60821,0.67492,0.68962,0.55264,0.58447,Computers and Software,0.07130,0.09004,0.08402,corporate,0.07130,0.09004,0.08402,0.07130,0.09004,0.08402,-0.03173,-0.05161,-0.04538 -2,0.00000,Mainframes,0.00000,EP1A,0.00000,0.44845,0.50126,0.48432,Equipment,1.00914,0.68070,0.75599,0.77185,0.61851,0.65467,Computers and Software,0.10303,0.12365,0.11704,corporate,0.10303,0.12365,0.11704,0.10303,0.12365,0.11704,-0.04214,-0.06750,-0.05963 -3,0.00000,PCs,0.00000,EP1B,0.00000,0.44845,0.50126,0.48432,Equipment,1.00914,0.68070,0.75599,0.77185,0.61851,0.65467,Computers and Software,0.10303,0.12365,0.11704,corporate,0.10303,0.12365,0.11704,0.10303,0.12365,0.11704,-0.04214,-0.06750,-0.05963 -4,0.00000,DASDs,0.00000,EP1C,0.00000,0.44845,0.50126,0.48432,Equipment,1.00914,0.68070,0.75599,0.77185,0.61851,0.65467,Computers and Software,0.10303,0.12365,0.11704,corporate,0.10303,0.12365,0.11704,0.10303,0.12365,0.11704,-0.04214,-0.06750,-0.05963 -5,0.00000,Printers,0.00000,EP1D,0.00000,0.44845,0.50126,0.48432,Equipment,1.00914,0.68070,0.75599,0.77185,0.61851,0.65467,Computers and Software,0.10303,0.12365,0.11704,corporate,0.10303,0.12365,0.11704,0.10303,0.12365,0.11704,-0.04214,-0.06750,-0.05963 -6,0.00000,Terminals,0.00000,EP1E,0.00000,0.44845,0.50126,0.48432,Equipment,1.00914,0.68070,0.75599,0.77185,0.61851,0.65467,Computers and Software,0.10303,0.12365,0.11704,corporate,0.10303,0.12365,0.11704,0.10303,0.12365,0.11704,-0.04214,-0.06750,-0.05963 -7,0.00000,Tape drives,0.00000,EP1F,0.00000,0.44845,0.50126,0.48432,Equipment,1.00914,0.68070,0.75599,0.77185,0.61851,0.65467,Computers and Software,0.10303,0.12365,0.11704,corporate,0.10303,0.12365,0.11704,0.10303,0.12365,0.11704,-0.04214,-0.06750,-0.05963 -8,0.00000,Storage devices,0.00000,EP1G,0.00000,0.44845,0.50126,0.48432,Equipment,1.00914,0.68070,0.75599,0.77185,0.61851,0.65467,Computers and Software,0.10303,0.12365,0.11704,corporate,0.10303,0.12365,0.11704,0.10303,0.12365,0.11704,-0.04214,-0.06750,-0.05963 -9,0.00000,System integrators,0.00000,EP1H,0.00000,0.44845,0.50126,0.48432,Equipment,1.00914,0.68070,0.75599,0.77185,0.61851,0.65467,Computers and Software,0.10303,0.12365,0.11704,corporate,0.10303,0.12365,0.11704,0.10303,0.12365,0.11704,-0.04214,-0.06750,-0.05963 -10,0.00000,Special industrial machinery,0.00000,EI40,0.00000,0.18249,0.22749,0.21293,Equipment,0.49599,0.40459,0.42930,0.37936,0.36762,0.37176,Industrial Machinery,0.02120,0.03941,0.03354,corporate,0.02120,0.03941,0.03354,0.02120,0.03941,0.03354,-0.05746,-0.09055,-0.08040 -11,0.00000,General industrial equipment,0.00000,EI50,0.00000,0.18561,0.23075,0.21615,Equipment,0.51013,0.41066,0.43689,0.39018,0.37313,0.37833,Industrial Machinery,0.02216,0.04041,0.03452,corporate,0.02216,0.04041,0.03452,0.02216,0.04041,0.03452,-0.05746,-0.09055,-0.08040 -12,0.00000,Office and accounting equipment,0.00000,EP12,0.00000,0.33577,0.38455,0.36886,Equipment,0.88839,0.60202,0.66713,0.67950,0.54702,0.57772,Instruments and Communications Equipment,0.06836,0.08774,0.08151,corporate,0.06836,0.08774,0.08151,0.06836,0.08774,0.08151,-0.04214,-0.06750,-0.05963 -13,0.00000,Communications,0.00000,EP20,0.00000,0.18994,0.23528,0.22062,Equipment,0.52905,0.41889,0.44715,0.40465,0.38062,0.38722,Instruments and Communications Equipment,0.02349,0.04181,0.03590,corporate,0.02349,0.04181,0.03590,0.02349,0.04181,0.03590,-0.05746,-0.09055,-0.08040 -14,0.00000,Photocopy and related equipment,0.00000,EP31,0.00000,0.23761,0.28287,0.26827,Equipment,0.69326,0.49324,0.53930,0.53025,0.44817,0.46702,Instruments and Communications Equipment,0.03816,0.05645,0.05056,corporate,0.03816,0.05645,0.05056,0.03816,0.05645,0.05056,-0.04214,-0.06750,-0.05963 -15,0.00000,Nonelectro medical instruments,0.00000,EP34,0.00000,0.20674,0.25285,0.23796,Equipment,0.59522,0.44875,0.48404,0.45526,0.40775,0.41917,Instruments and Communications Equipment,0.02866,0.04722,0.04123,corporate,0.02866,0.04722,0.04123,0.02866,0.04722,0.04123,-0.05746,-0.09055,-0.08040 -16,0.00000,Electro medical instruments,0.00000,EP35,0.00000,0.20674,0.25285,0.23796,Equipment,0.59522,0.44875,0.48404,0.45526,0.40775,0.41917,Instruments and Communications Equipment,0.02866,0.04722,0.04123,corporate,0.02866,0.04722,0.04123,0.02866,0.04722,0.04123,-0.05746,-0.09055,-0.08040 -17,0.00000,Nonmedical instruments,0.00000,EP36,0.00000,0.20674,0.25285,0.23796,Equipment,0.59522,0.44875,0.48404,0.45526,0.40775,0.41917,Instruments and Communications Equipment,0.02866,0.04722,0.04123,corporate,0.02866,0.04722,0.04123,0.02866,0.04722,0.04123,-0.05746,-0.09055,-0.08040 -18,0.00000,Household furniture,0.00000,EO11,0.00000,0.20598,0.25011,0.23586,Equipment,0.59243,0.44429,0.47981,0.45313,0.40370,0.41551,Office and Residential Equipment,0.02843,0.04637,0.04059,corporate,0.02843,0.04637,0.04059,0.02843,0.04637,0.04059,-0.04214,-0.06750,-0.05963 -19,0.00000,Other furniture,0.00000,EO12,0.00000,0.19374,0.23925,0.22454,Equipment,0.54498,0.42592,0.45588,0.41683,0.38701,0.39478,Office and Residential Equipment,0.02466,0.04303,0.03711,corporate,0.02466,0.04303,0.03711,0.02466,0.04303,0.03711,-0.05746,-0.09055,-0.08040 -20,0.00000,Household appliances,0.00000,EO71,0.00000,0.22644,0.27131,0.25683,Equipment,0.66077,0.47698,0.51968,0.50540,0.43340,0.45003,Office and Residential Equipment,0.03472,0.05289,0.04704,corporate,0.03472,0.05289,0.04704,0.03472,0.05289,0.04704,-0.04214,-0.06750,-0.05963 -21,0.00000,Service industry machinery,0.00000,EO60,0.00000,0.22028,0.26700,0.25192,Equipment,0.64146,0.47066,0.51081,0.49063,0.42766,0.44235,Other Equipment,0.03282,0.05157,0.04553,corporate,0.03282,0.05157,0.04553,0.03282,0.05157,0.04553,-0.05746,-0.09055,-0.08040 -22,0.00000,Other electrical,0.00000,EO72,0.00000,0.24354,0.29133,0.27592,Equipment,0.70937,0.50451,0.55169,0.54257,0.45841,0.47775,Other Equipment,0.03998,0.05906,0.05292,corporate,0.03998,0.05906,0.05292,0.03998,0.05906,0.05292,-0.05746,-0.09055,-0.08040 -23,0.00000,Other,0.00000,EO80,0.00000,0.21609,0.26263,0.24760,Equipment,0.62776,0.46408,0.50280,0.48015,0.42168,0.43541,Other Equipment,0.03154,0.05022,0.04420,corporate,0.03154,0.05022,0.04420,0.03154,0.05022,0.04420,-0.05746,-0.09055,-0.08040 -24,0.00000,Nuclear fuel,0.00000,EI11,0.00000,0.28970,0.33683,0.32165,Equipment,0.81279,0.55744,0.61546,0.62168,0.50651,0.53297,Other Industrial Equipment,0.05419,0.07306,0.06699,corporate,0.05419,0.07306,0.06699,0.05419,0.07306,0.06699,-0.04214,-0.06750,-0.05963 -25,0.00000,Other fabricated metals,0.00000,EI12,0.00000,0.17382,0.21842,0.20399,Equipment,0.45414,0.38704,0.40725,0.34736,0.35168,0.35267,Other Industrial Equipment,0.01853,0.03662,0.03078,corporate,0.01853,0.03662,0.03078,0.01853,0.03662,0.03078,-0.05746,-0.09055,-0.08040 -26,0.00000,Metalworking machinery,0.00000,EI30,0.00000,0.19724,0.24291,0.22815,Equipment,0.55911,0.43225,0.46371,0.42765,0.39276,0.40156,Other Industrial Equipment,0.02574,0.04416,0.03822,corporate,0.02574,0.04416,0.03822,0.02574,0.04416,0.03822,-0.05746,-0.09055,-0.08040 -27,0.00000,Electric transmission and distribution,0.00000,EI60,0.00000,0.14769,0.19598,0.18030,Equipment,0.29997,0.33878,0.34102,0.22943,0.30783,0.29532,Other Industrial Equipment,0.01049,0.02972,0.02349,corporate,0.01049,0.02972,0.02349,0.01049,0.02972,0.02349,-0.12535,-0.18502,-0.16763 -28,0.00000,Farm tractors,0.00000,EO21,0.00000,0.21450,0.26096,0.24596,Equipment,0.62240,0.46152,0.49968,0.47605,0.41935,0.43271,Other Industrial Equipment,0.03105,0.04971,0.04370,corporate,0.03105,0.04971,0.04370,0.03105,0.04971,0.04370,-0.05746,-0.09055,-0.08040 -29,0.00000,Construction tractors,0.00000,EO22,0.00000,0.22518,0.26999,0.25554,Equipment,0.65689,0.47507,0.51737,0.50243,0.43166,0.44803,Other Industrial Equipment,0.03433,0.05249,0.04664,corporate,0.03433,0.05249,0.04664,0.03433,0.05249,0.04664,-0.04214,-0.06750,-0.05963 -30,0.00000,Other agricultural machinery,0.00000,EO30,0.00000,0.19374,0.23925,0.22454,Equipment,0.54498,0.42592,0.45588,0.41683,0.38701,0.39478,Other Industrial Equipment,0.02466,0.04303,0.03711,corporate,0.02466,0.04303,0.03711,0.02466,0.04303,0.03711,-0.05746,-0.09055,-0.08040 -31,0.00000,Other construction machinery,0.00000,EO40,0.00000,0.21900,0.26360,0.24921,Equipment,0.63734,0.46555,0.50580,0.48748,0.42301,0.43801,Other Industrial Equipment,0.03243,0.05052,0.04470,corporate,0.03243,0.05052,0.04470,0.03243,0.05052,0.04470,-0.04214,-0.06750,-0.05963 -32,0.00000,Mining and oilfield machinery,0.00000,EO50,0.00000,0.21815,0.26478,0.24972,Equipment,0.63455,0.46733,0.50676,0.48534,0.42463,0.43884,Other Industrial Equipment,0.03217,0.05088,0.04486,corporate,0.03217,0.05088,0.04486,0.03217,0.05088,0.04486,-0.05746,-0.09055,-0.08040 -33,0.00000,Steam engines,0.00000,EI21,0.00000,0.14902,0.19741,0.18170,Equipment,0.30905,0.34209,0.34530,0.23638,0.31083,0.29902,Transportation Equipment,0.01090,0.03016,0.02393,corporate,0.01090,0.03016,0.02393,0.01090,0.03016,0.02393,-0.12535,-0.18502,-0.16763 -34,0.00000,Internal combustion engines,0.00000,EI22,0.00000,0.26095,0.30954,0.29388,Equipment,0.75253,0.52714,0.57868,0.57559,0.47898,0.50112,Transportation Equipment,0.04534,0.06466,0.05844,corporate,0.04534,0.06466,0.05844,0.04534,0.06466,0.05844,-0.05746,-0.09055,-0.08040 -35,0.00000,Light trucks (including utility vehicles),0.00000,ET11,0.00000,0.23203,0.27709,0.26255,Equipment,0.67739,0.48524,0.52966,0.51811,0.44090,0.45868,Transportation Equipment,0.03644,0.05467,0.04880,corporate,0.03644,0.05467,0.04880,0.03644,0.05467,0.04880,-0.04214,-0.06750,-0.05963 -36,0.00000,"Other trucks, buses and truck trailers",0.00000,ET12,0.00000,0.23203,0.27709,0.26255,Equipment,0.67739,0.48524,0.52966,0.51811,0.44090,0.45868,Transportation Equipment,0.03644,0.05467,0.04880,corporate,0.03644,0.05467,0.04880,0.03644,0.05467,0.04880,-0.04214,-0.06750,-0.05963 -37,0.00000,Autos,0.00000,ET20,0.00000,0.35170,0.40104,0.38518,Equipment,0.91004,0.61542,0.68247,0.69606,0.55919,0.59100,Transportation Equipment,0.07326,0.09281,0.08653,corporate,0.07326,0.09281,0.08653,0.07326,0.09281,0.08653,-0.04214,-0.06750,-0.05963 -38,0.00000,Aircraft,0.00000,ET30,0.00000,0.16757,0.21033,0.19651,Equipment,0.42144,0.37047,0.38765,0.32235,0.33662,0.33569,Transportation Equipment,0.01661,0.03413,0.02848,corporate,0.01661,0.03413,0.02848,0.01661,0.03413,0.02848,-0.04214,-0.06750,-0.05963 -39,0.00000,Ships and boats,0.00000,ET40,0.00000,0.15257,0.19797,0.18325,Equipment,0.33256,0.34337,0.34996,0.25436,0.31200,0.30305,Transportation Equipment,0.01199,0.03033,0.02440,corporate,0.01199,0.03033,0.02440,0.01199,0.03033,0.02440,-0.07897,-0.12158,-0.10874 -40,0.00000,Railroad equipment,0.00000,ET50,0.00000,0.14888,0.19234,0.17826,Equipment,0.30811,0.33024,0.33472,0.23566,0.30007,0.28986,Transportation Equipment,0.01086,0.02860,0.02287,corporate,0.01086,0.02860,0.02287,0.01086,0.02860,0.02287,-0.05746,-0.09055,-0.08040 -41,0.00000,Theatrical movies,0.00000,AE10,0.00000,0.18456,0.23641,0.21966,Intellectual Property,0.50544,0.42090,0.44497,0.38660,0.38245,0.38533,Intellectual Property,0.02184,0.04216,0.03561,corporate,0.02184,0.04216,0.03561,0.02184,0.04216,0.03561,-0.13410,-0.19745,-0.17904 -42,0.00000,Long-lived television programs,0.00000,AE20,0.00000,0.24478,0.29983,0.28219,Intellectual Property,0.71264,0.51534,0.56143,0.54508,0.46825,0.48618,Intellectual Property,0.04037,0.06167,0.05485,corporate,0.04037,0.06167,0.05485,0.04037,0.06167,0.05485,-0.12033,-0.17797,-0.16114 -43,0.00000,Books,0.00000,AE30,0.00000,0.20190,0.25515,0.23811,Intellectual Property,0.57723,0.45243,0.48435,0.44151,0.41110,0.41944,Intellectual Property,0.02717,0.04792,0.04128,corporate,0.02717,0.04792,0.04128,0.02717,0.04792,0.04128,-0.09450,-0.16201,-0.14299 -44,0.00000,Music,0.00000,AE40,0.00000,0.30410,0.35735,0.34031,Intellectual Property,0.83881,0.57778,0.63732,0.64157,0.52499,0.55191,Intellectual Property,0.05862,0.07937,0.07273,corporate,0.05862,0.07937,0.07273,0.05862,0.07937,0.07273,-0.04776,-0.08923,-0.07681 -45,0.00000,Other entertainment originals,0.00000,AE50,0.00000,0.19350,0.24675,0.22971,Intellectual Property,0.54399,0.43874,0.46704,0.41608,0.39865,0.40444,Intellectual Property,0.02459,0.04534,0.03870,corporate,0.02459,0.04534,0.03870,0.02459,0.04534,0.03870,-0.10277,-0.17365,-0.15389 -46,0.00000,Own account software,0.00000,ENS3,0.00000,0.33340,0.37100,0.35897,Intellectual Property,0.88499,0.59031,0.65726,0.67690,0.53637,0.56917,Intellectual Property,0.06763,0.08357,0.07847,corporate,0.06763,0.08357,0.07847,0.06763,0.08357,0.07847,0.00000,0.00000,0.00000 -47,0.00000,Pharmaceutical and medicine manufacturing,0.00000,RD11,0.00000,0.17240,0.21000,0.19797,Intellectual Property,0.44688,0.36978,0.39155,0.34181,0.33599,0.33908,Intellectual Property,0.01809,0.03403,0.02893,corporate,0.01809,0.03403,0.02893,0.01809,0.03403,0.02893,0.00000,0.00000,0.00000 -48,0.00000,"Chemical manufacturing, ex. pharma and med",0.00000,RD12,0.00000,0.21440,0.25200,0.23997,Intellectual Property,0.62205,0.44738,0.48805,0.47579,0.40650,0.42264,Intellectual Property,0.03102,0.04695,0.04185,corporate,0.03102,0.04695,0.04185,0.03102,0.04695,0.04185,0.00000,0.00000,0.00000 -49,0.00000,Computers and peripheral equipment manufacturing,0.00000,RD21,0.00000,0.38240,0.42000,0.40797,Intellectual Property,0.94678,0.62974,0.70210,0.72416,0.57220,0.60800,Intellectual Property,0.08271,0.09865,0.09355,corporate,0.08271,0.09865,0.09355,0.08271,0.09865,0.09355,0.00000,0.00000,0.00000 -50,0.00000,Communications equipment manufacturing,0.00000,RD22,0.00000,0.29140,0.32900,0.31697,Intellectual Property,0.81598,0.54915,0.60963,0.62411,0.49898,0.52792,Intellectual Property,0.05471,0.07065,0.06555,corporate,0.05471,0.07065,0.06555,0.05471,0.07065,0.06555,0.00000,0.00000,0.00000 -51,0.00000,Semiconductor and other component manufacturing,0.00000,RD23,0.00000,0.27740,0.31500,0.30297,Intellectual Property,0.78847,0.53353,0.59132,0.60308,0.48478,0.51207,Intellectual Property,0.05040,0.06634,0.06124,corporate,0.05040,0.06634,0.06124,0.05040,0.06634,0.06124,0.00000,0.00000,0.00000 -52,0.00000,Navigational and other instruments manufacturing,0.00000,RD24,0.00000,0.30540,0.34300,0.33097,Intellectual Property,0.84103,0.56376,0.62663,0.64328,0.51225,0.54265,Intellectual Property,0.05902,0.07495,0.06985,corporate,0.05902,0.07495,0.06985,0.05902,0.07495,0.06985,0.00000,0.00000,0.00000 -53,0.00000,"Other computer and electronic manufacturing, n.e.c.",0.00000,RD25,0.00000,0.38240,0.42000,0.40797,Intellectual Property,0.94678,0.62974,0.70210,0.72416,0.57220,0.60800,Intellectual Property,0.08271,0.09865,0.09355,corporate,0.08271,0.09865,0.09355,0.08271,0.09865,0.09355,0.00000,0.00000,0.00000 -54,0.00000,Motor vehicles and parts manufacturing,0.00000,RD31,0.00000,0.31940,0.35700,0.34497,Intellectual Property,0.86395,0.57745,0.64247,0.66080,0.52469,0.55636,Intellectual Property,0.06332,0.07926,0.07416,corporate,0.06332,0.07926,0.07416,0.06332,0.07926,0.07416,0.00000,0.00000,0.00000 -55,0.00000,Aerospace products and parts manufacturing,0.00000,RD32,0.00000,0.25640,0.29400,0.28197,Intellectual Property,0.74178,0.50796,0.56108,0.56736,0.46155,0.48588,Intellectual Property,0.04394,0.05988,0.05478,corporate,0.04394,0.05988,0.05478,0.04394,0.05988,0.05478,0.00000,0.00000,0.00000 -56,0.00000,Software publishers,0.00000,RD40,0.00000,0.26467,0.30907,0.29476,Intellectual Property,0.76102,0.52658,0.57992,0.58208,0.47847,0.50220,Intellectual Property,0.04648,0.06451,0.05871,corporate,0.04648,0.06451,0.05871,0.04648,0.06451,0.05871,-0.03173,-0.05161,-0.04538 -57,0.00000,Financial and real estate services,0.00000,RD50,0.00000,0.21440,0.25200,0.23997,Intellectual Property,0.62205,0.44738,0.48805,0.47579,0.40650,0.42264,Intellectual Property,0.03102,0.04695,0.04185,corporate,0.03102,0.04695,0.04185,0.03102,0.04695,0.04185,0.00000,0.00000,0.00000 -58,0.00000,Computer systems design and related services,0.00000,RD60,0.00000,0.36733,0.41465,0.39943,Intellectual Property,0.92950,0.62581,0.69497,0.71094,0.56863,0.60183,Intellectual Property,0.07807,0.09700,0.09092,corporate,0.07807,0.09700,0.09092,0.07807,0.09700,0.09092,-0.03173,-0.05161,-0.04538 -59,0.00000,Scientific research and development services,0.00000,RD70,0.00000,0.21440,0.25200,0.23997,Intellectual Property,0.62205,0.44738,0.48805,0.47579,0.40650,0.42264,Intellectual Property,0.03102,0.04695,0.04185,corporate,0.03102,0.04695,0.04185,0.03102,0.04695,0.04185,0.00000,0.00000,0.00000 -60,0.00000,"All other nonmanufacturing, n.e.c.",0.00000,RD80,0.00000,0.21440,0.25200,0.23997,Intellectual Property,0.62205,0.44738,0.48805,0.47579,0.40650,0.42264,Intellectual Property,0.03102,0.04695,0.04185,corporate,0.03102,0.04695,0.04185,0.03102,0.04695,0.04185,0.00000,0.00000,0.00000 -61,0.00000,Private universities and colleges,0.00000,RD91,0.00000,0.22067,0.26381,0.24990,Intellectual Property,0.64271,0.46588,0.50709,0.49159,0.42331,0.43913,Intellectual Property,0.03294,0.05059,0.04491,corporate,0.03294,0.05059,0.04491,0.03294,0.05059,0.04491,-0.03173,-0.05161,-0.04538 -62,0.00000,Other nonprofit institutions,0.00000,RD92,0.00000,0.22067,0.26381,0.24990,Intellectual Property,0.64271,0.46588,0.50709,0.49159,0.42331,0.43913,Intellectual Property,0.03294,0.05059,0.04491,corporate,0.03294,0.05059,0.04491,0.03294,0.05059,0.04491,-0.03173,-0.05161,-0.04538 -63,0.00000,Other manufacturing,0.00000,RDOM,0.00000,0.21440,0.25200,0.23997,Intellectual Property,0.62205,0.44738,0.48805,0.47579,0.40650,0.42264,Intellectual Property,0.03102,0.04695,0.04185,corporate,0.03102,0.04695,0.04185,0.03102,0.04695,0.04185,0.00000,0.00000,0.00000 -64,0.00000,Inventories,0.00000,INV,0.00000,0.09786,0.14462,0.12972,Inventories,-0.04949,0.14619,0.12032,-0.03785,0.13283,0.10419,Inventories,-0.00225,0.01764,0.01130,corporate,-0.00225,0.01764,0.01130,-0.00225,0.01764,0.01130,0.00000,0.00000,0.00000 -65,0.00000,Land,0.00000,LAND,0.00000,0.09240,0.14000,0.12477,Land,-0.10950,0.14000,0.10794,-0.08376,0.12721,0.09347,Land,-0.00436,0.01581,0.00936,corporate,-0.00436,0.01581,0.00936,-0.00436,0.01581,0.00936,0.00000,0.00000,0.00000 -66,0.00000,Petroleum and natural gas,0.00000,SM01,0.00000,0.15954,0.20200,0.18827,Structures,0.37579,0.35246,0.36471,0.28743,0.32026,0.31583,Mining and Drilling Structures,0.01414,0.03157,0.02595,corporate,0.01414,0.03157,0.02595,0.01414,0.03157,0.02595,-0.04214,-0.06750,-0.05963 -67,0.00000,Mining,0.00000,SM02,0.00000,0.13831,0.18129,0.16736,Structures,0.23131,0.30287,0.29910,0.17692,0.27519,0.25902,Mining and Drilling Structures,0.00761,0.02520,0.01951,corporate,0.00761,0.02520,0.01951,0.00761,0.02520,0.01951,-0.05746,-0.09055,-0.08040 -68,0.00000,Communication,0.00000,SU20,0.00000,0.12582,0.17246,0.15726,Structures,0.12497,0.27933,0.26298,0.09559,0.25381,0.22773,Mining and Drilling Structures,0.00376,0.02248,0.01640,corporate,0.00376,0.02248,0.01640,0.00376,0.02248,0.01640,-0.12535,-0.18502,-0.16763 -69,0.00000,Gas,0.00000,SU40,0.00000,0.15954,0.20200,0.18827,Structures,0.37579,0.35246,0.36471,0.28743,0.32026,0.31583,Mining and Drilling Structures,0.01414,0.03157,0.02595,corporate,0.01414,0.03157,0.02595,0.01414,0.03157,0.02595,-0.04214,-0.06750,-0.05963 -70,0.00000,Petroleum pipelines,0.00000,SU50,0.00000,0.12128,0.16238,0.14908,Structures,0.08134,0.25044,0.23118,0.06221,0.22756,0.20020,Mining and Drilling Structures,0.00237,0.01938,0.01389,corporate,0.00237,0.01938,0.01389,0.00237,0.01938,0.01389,-0.04214,-0.06750,-0.05963 -71,0.00000,Religious,0.00000,SB10,0.00000,0.10802,0.15316,0.13848,Structures,-0.00291,0.17827,0.15588,-0.00222,0.16198,0.13499,Nonresidential Buildings,-0.00011,0.01909,0.01286,corporate,-0.00011,0.01909,0.01286,-0.00011,0.01909,0.01286,0.05243,0.00000,0.01231 -72,0.00000,Educational and vocational,0.00000,SB20,0.00000,0.10688,0.15316,0.13813,Structures,-0.00448,0.17281,0.15080,-0.00343,0.15702,0.13059,Nonresidential Buildings,-0.00019,0.01950,0.01313,corporate,-0.00019,0.01950,0.01313,-0.00019,0.01950,0.01313,0.05806,0.00000,0.01305 -73,0.00000,Hospitals,0.00000,SB31,0.00000,0.10688,0.15316,0.13813,Structures,-0.00448,0.17281,0.15080,-0.00343,0.15702,0.13059,Nonresidential Buildings,-0.00019,0.01950,0.01313,corporate,-0.00019,0.01950,0.01313,-0.00019,0.01950,0.01313,0.05806,0.00000,0.01305 -74,0.00000,Special care,0.00000,SB32,0.00000,0.10688,0.15316,0.13813,Structures,-0.00448,0.17281,0.15080,-0.00343,0.15702,0.13059,Nonresidential Buildings,-0.00019,0.01950,0.01313,corporate,-0.00019,0.01950,0.01313,-0.00019,0.01950,0.01313,0.05806,0.00000,0.01305 -75,0.00000,Lodging,0.00000,SB41,0.00000,0.11282,0.15967,0.14452,Structures,0.04254,0.18134,0.16459,0.03254,0.16477,0.14253,Nonresidential Buildings,0.00195,0.02186,0.01544,corporate,0.00195,0.02186,0.01544,0.00195,0.02186,0.01544,0.05806,0.00000,0.01305 -76,0.00000,Air transportation,0.00000,SB43,0.00000,0.11001,0.15659,0.14150,Structures,0.02153,0.17749,0.15837,0.01647,0.16127,0.13715,Nonresidential Buildings,0.00094,0.02074,0.01434,corporate,0.00094,0.02074,0.01434,0.00094,0.02074,0.01434,0.05806,0.00000,0.01305 -77,0.00000,Other transportation,0.00000,SB45,0.00000,0.11001,0.15659,0.14150,Structures,0.02153,0.17749,0.15837,0.01647,0.16127,0.13715,Nonresidential Buildings,0.00094,0.02074,0.01434,corporate,0.00094,0.02074,0.01434,0.00094,0.02074,0.01434,0.05806,0.00000,0.01305 -78,0.00000,Warehouses,0.00000,SC01,0.00000,0.10924,0.15575,0.14067,Structures,0.01543,0.17638,0.15658,0.01180,0.16027,0.13560,Nonresidential Buildings,0.00067,0.02044,0.01405,corporate,0.00067,0.02044,0.01405,0.00067,0.02044,0.01405,0.05806,0.00000,0.01305 -79,0.00000,Other commercial,0.00000,SC02,0.00000,0.11161,0.15834,0.14321,Structures,0.03372,0.17972,0.16197,0.02579,0.16330,0.14026,Nonresidential Buildings,0.00152,0.02138,0.01496,corporate,0.00152,0.02138,0.01496,0.00152,0.02138,0.01496,0.05806,0.00000,0.01305 -80,0.00000,Multimerchandise shopping,0.00000,SC03,0.00000,0.11161,0.15834,0.14321,Structures,0.03372,0.17972,0.16197,0.02579,0.16330,0.14026,Nonresidential Buildings,0.00152,0.02138,0.01496,corporate,0.00152,0.02138,0.01496,0.00152,0.02138,0.01496,0.05806,0.00000,0.01305 -81,0.00000,Food and beverage establishments,0.00000,SC04,0.00000,0.11161,0.15834,0.14321,Structures,0.03372,0.17972,0.16197,0.02579,0.16330,0.14026,Nonresidential Buildings,0.00152,0.02138,0.01496,corporate,0.00152,0.02138,0.01496,0.00152,0.02138,0.01496,0.05806,0.00000,0.01305 -82,0.00000,Manufacturing,0.00000,SI00,0.00000,0.11493,0.16198,0.14678,Structures,0.05699,0.18403,0.16892,0.04359,0.16722,0.14628,Nonresidential Buildings,0.00271,0.02270,0.01625,corporate,0.00271,0.02270,0.01625,0.00271,0.02270,0.01625,0.05806,0.00000,0.01305 -83,0.00000,Public safety,0.00000,SO03,0.00000,0.11001,0.15659,0.14150,Structures,0.02153,0.17749,0.15837,0.01647,0.16127,0.13715,Nonresidential Buildings,0.00094,0.02074,0.01434,corporate,0.00094,0.02074,0.01434,0.00094,0.02074,0.01434,0.05806,0.00000,0.01305 -84,0.00000,Office,0.00000,SOO1,0.00000,0.11065,0.15729,0.14218,Structures,0.02649,0.17839,0.15983,0.02026,0.16209,0.13841,Nonresidential Buildings,0.00117,0.02100,0.01459,corporate,0.00117,0.02100,0.01459,0.00117,0.02100,0.01459,0.05806,0.00000,0.01305 -85,0.00000,Medical buildings,0.00000,SOO2,0.00000,0.11065,0.15729,0.14218,Structures,0.02649,0.17839,0.15983,0.02026,0.16209,0.13841,Nonresidential Buildings,0.00117,0.02100,0.01459,corporate,0.00117,0.02100,0.01459,0.00117,0.02100,0.01459,0.05806,0.00000,0.01305 -86,0.00000,Amusement and recreation,0.00000,SB42,0.00000,0.12691,0.16937,0.15559,Structures,0.13503,0.27070,0.25669,0.10328,0.24597,0.22229,Other Structures,0.00410,0.02153,0.01589,corporate,0.00410,0.02153,0.01589,0.00410,0.02153,0.01589,-0.05746,-0.09055,-0.08040 -87,0.00000,Local transit structures,0.00000,SB44,0.00000,0.11001,0.15659,0.14150,Structures,0.02153,0.17749,0.15837,0.01647,0.16127,0.13715,Other Structures,0.00094,0.02074,0.01434,corporate,0.00094,0.02074,0.01434,0.00094,0.02074,0.01434,0.05806,0.00000,0.01305 -88,0.00000,Other land transportation,0.00000,SB46,0.00000,0.12128,0.16238,0.14908,Structures,0.08134,0.25044,0.23118,0.06221,0.22756,0.20020,Other Structures,0.00237,0.01938,0.01389,corporate,0.00237,0.01938,0.01389,0.00237,0.01938,0.01389,-0.04214,-0.06750,-0.05963 -89,0.00000,Farm,0.00000,SN00,0.00000,0.12771,0.17598,0.16026,Structures,0.14230,0.28889,0.27406,0.10884,0.26249,0.23733,Other Structures,0.00434,0.02356,0.01733,corporate,0.00434,0.02356,0.01733,0.00434,0.02356,0.01733,-0.15685,-0.22382,-0.20485 -90,0.00000,Water supply,0.00000,SO01,0.00000,0.12650,0.17467,0.15898,Structures,0.13125,0.28536,0.26937,0.10039,0.25929,0.23327,Other Structures,0.00397,0.02316,0.01693,corporate,0.00397,0.02316,0.01693,0.00397,0.02316,0.01693,-0.15685,-0.22382,-0.20485 -91,0.00000,Sewage and waste disposal,0.00000,SO02,0.00000,0.12650,0.17467,0.15898,Structures,0.13125,0.28536,0.26937,0.10039,0.25929,0.23327,Other Structures,0.00397,0.02316,0.01693,corporate,0.00397,0.02316,0.01693,0.00397,0.02316,0.01693,-0.15685,-0.22382,-0.20485 -92,0.00000,Highway and conservation and development,0.00000,SO04,0.00000,0.12482,0.17139,0.15621,Structures,0.11562,0.27636,0.25903,0.08844,0.25111,0.22431,Other Structures,0.00345,0.02215,0.01608,corporate,0.00345,0.02215,0.01608,0.00345,0.02215,0.01608,-0.12535,-0.18502,-0.16763 -93,0.00000,Mobile structures,0.00000,SOMO,0.00000,0.14637,0.18972,0.17567,Structures,0.29082,0.32394,0.32656,0.22244,0.29434,0.28279,Other Structures,0.01008,0.02779,0.02207,corporate,0.01008,0.02779,0.02207,0.01008,0.02779,0.02207,-0.05746,-0.09055,-0.08040 -94,0.00000,Other railroad,0.00000,SU11,0.00000,0.12226,0.17009,0.15450,Structures,0.09099,0.27273,0.25251,0.06959,0.24781,0.21867,Other Structures,0.00267,0.02175,0.01555,corporate,0.00267,0.02175,0.01555,0.00267,0.02175,0.01555,-0.15685,-0.22382,-0.20485 -95,0.00000,Track replacement,0.00000,SU12,0.00000,0.12303,0.16531,0.15159,Structures,0.09851,0.25908,0.24121,0.07534,0.23540,0.20889,Other Structures,0.00290,0.02028,0.01466,corporate,0.00290,0.02028,0.01466,0.00290,0.02028,0.01466,-0.05746,-0.09055,-0.08040 -96,0.00000,Electric,0.00000,SU30,0.00000,0.12365,0.17014,0.15498,Structures,0.10454,0.27286,0.25437,0.07996,0.24793,0.22028,Other Structures,0.00310,0.02177,0.01570,corporate,0.00310,0.02177,0.01570,0.00310,0.02177,0.01570,-0.12535,-0.18502,-0.16763 -97,0.00000,Wind and solar,0.00000,SU60,0.00000,0.12619,0.16747,0.15411,Structures,0.12847,0.26530,0.25102,0.09826,0.24106,0.21738,Other Structures,0.00388,0.02094,0.01544,corporate,0.00388,0.02094,0.01544,0.00388,0.02094,0.01544,-0.04214,-0.06750,-0.05963 +0,0.00000,Prepackaged software,0.00000,ENS1,0.00000,0.50666,0.55795,0.54148,Equipment,1.05084,0.70868,0.78743,0.80372,0.64390,0.68187,Computers and Software,0.12094,0.14109,0.13463,corporate,0.12094,0.14109,0.13463,0.12094,0.14109,0.13463,-0.03173,-0.05161,-0.04538 +1,0.00000,Custom software,0.00000,ENS2,0.00000,0.34533,0.39203,0.37700,Equipment,0.90162,0.60821,0.67492,0.68959,0.55262,0.58444,Computers and Software,0.07130,0.09004,0.08402,corporate,0.07130,0.09004,0.08402,0.07130,0.09004,0.08402,-0.03173,-0.05161,-0.04538 +2,0.00000,Mainframes,0.00000,EP1A,0.00000,0.44845,0.50126,0.48432,Equipment,1.00914,0.68070,0.75599,0.77182,0.61848,0.65464,Computers and Software,0.10303,0.12365,0.11704,corporate,0.10303,0.12365,0.11704,0.10303,0.12365,0.11704,-0.04214,-0.06750,-0.05963 +3,0.00000,PCs,0.00000,EP1B,0.00000,0.44845,0.50126,0.48432,Equipment,1.00914,0.68070,0.75599,0.77182,0.61848,0.65464,Computers and Software,0.10303,0.12365,0.11704,corporate,0.10303,0.12365,0.11704,0.10303,0.12365,0.11704,-0.04214,-0.06750,-0.05963 +4,0.00000,DASDs,0.00000,EP1C,0.00000,0.44845,0.50126,0.48432,Equipment,1.00914,0.68070,0.75599,0.77182,0.61848,0.65464,Computers and Software,0.10303,0.12365,0.11704,corporate,0.10303,0.12365,0.11704,0.10303,0.12365,0.11704,-0.04214,-0.06750,-0.05963 +5,0.00000,Printers,0.00000,EP1D,0.00000,0.44845,0.50126,0.48432,Equipment,1.00914,0.68070,0.75599,0.77182,0.61848,0.65464,Computers and Software,0.10303,0.12365,0.11704,corporate,0.10303,0.12365,0.11704,0.10303,0.12365,0.11704,-0.04214,-0.06750,-0.05963 +6,0.00000,Terminals,0.00000,EP1E,0.00000,0.44845,0.50126,0.48432,Equipment,1.00914,0.68070,0.75599,0.77182,0.61848,0.65464,Computers and Software,0.10303,0.12365,0.11704,corporate,0.10303,0.12365,0.11704,0.10303,0.12365,0.11704,-0.04214,-0.06750,-0.05963 +7,0.00000,Tape drives,0.00000,EP1F,0.00000,0.44845,0.50126,0.48432,Equipment,1.00914,0.68070,0.75599,0.77182,0.61848,0.65464,Computers and Software,0.10303,0.12365,0.11704,corporate,0.10303,0.12365,0.11704,0.10303,0.12365,0.11704,-0.04214,-0.06750,-0.05963 +8,0.00000,Storage devices,0.00000,EP1G,0.00000,0.44845,0.50126,0.48432,Equipment,1.00914,0.68070,0.75599,0.77182,0.61848,0.65464,Computers and Software,0.10303,0.12365,0.11704,corporate,0.10303,0.12365,0.11704,0.10303,0.12365,0.11704,-0.04214,-0.06750,-0.05963 +9,0.00000,System integrators,0.00000,EP1H,0.00000,0.44845,0.50126,0.48432,Equipment,1.00914,0.68070,0.75599,0.77182,0.61848,0.65464,Computers and Software,0.10303,0.12365,0.11704,corporate,0.10303,0.12365,0.11704,0.10303,0.12365,0.11704,-0.04214,-0.06750,-0.05963 +10,0.00000,Special industrial machinery,0.00000,EI40,0.00000,0.18249,0.22749,0.21293,Equipment,0.49599,0.40459,0.42930,0.37935,0.36761,0.37175,Industrial Machinery,0.02120,0.03941,0.03354,corporate,0.02120,0.03941,0.03354,0.02120,0.03941,0.03354,-0.05746,-0.09055,-0.08040 +11,0.00000,General industrial equipment,0.00000,EI50,0.00000,0.18561,0.23075,0.21615,Equipment,0.51013,0.41066,0.43689,0.39016,0.37312,0.37832,Industrial Machinery,0.02216,0.04041,0.03452,corporate,0.02216,0.04041,0.03452,0.02216,0.04041,0.03452,-0.05746,-0.09055,-0.08040 +12,0.00000,Office and accounting equipment,0.00000,EP12,0.00000,0.33577,0.38455,0.36886,Equipment,0.88839,0.60202,0.66713,0.67948,0.54700,0.57770,Instruments and Communications Equipment,0.06836,0.08774,0.08151,corporate,0.06836,0.08774,0.08151,0.06836,0.08774,0.08151,-0.04214,-0.06750,-0.05963 +13,0.00000,Communications,0.00000,EP20,0.00000,0.18994,0.23528,0.22062,Equipment,0.52905,0.41889,0.44715,0.40463,0.38060,0.38720,Instruments and Communications Equipment,0.02349,0.04181,0.03590,corporate,0.02349,0.04181,0.03590,0.02349,0.04181,0.03590,-0.05746,-0.09055,-0.08040 +14,0.00000,Photocopy and related equipment,0.00000,EP31,0.00000,0.23761,0.28287,0.26827,Equipment,0.69326,0.49324,0.53930,0.53023,0.44815,0.46700,Instruments and Communications Equipment,0.03816,0.05645,0.05056,corporate,0.03816,0.05645,0.05056,0.03816,0.05645,0.05056,-0.04214,-0.06750,-0.05963 +15,0.00000,Nonelectro medical instruments,0.00000,EP34,0.00000,0.20674,0.25285,0.23796,Equipment,0.59522,0.44875,0.48404,0.45524,0.40773,0.41915,Instruments and Communications Equipment,0.02866,0.04722,0.04123,corporate,0.02866,0.04722,0.04123,0.02866,0.04722,0.04123,-0.05746,-0.09055,-0.08040 +16,0.00000,Electro medical instruments,0.00000,EP35,0.00000,0.20674,0.25285,0.23796,Equipment,0.59522,0.44875,0.48404,0.45524,0.40773,0.41915,Instruments and Communications Equipment,0.02866,0.04722,0.04123,corporate,0.02866,0.04722,0.04123,0.02866,0.04722,0.04123,-0.05746,-0.09055,-0.08040 +17,0.00000,Nonmedical instruments,0.00000,EP36,0.00000,0.20674,0.25285,0.23796,Equipment,0.59522,0.44875,0.48404,0.45524,0.40773,0.41915,Instruments and Communications Equipment,0.02866,0.04722,0.04123,corporate,0.02866,0.04722,0.04123,0.02866,0.04722,0.04123,-0.05746,-0.09055,-0.08040 +18,0.00000,Household furniture,0.00000,EO11,0.00000,0.20598,0.25011,0.23586,Equipment,0.59243,0.44429,0.47981,0.45311,0.40368,0.41549,Office and Residential Equipment,0.02843,0.04637,0.04059,corporate,0.02843,0.04637,0.04059,0.02843,0.04637,0.04059,-0.04214,-0.06750,-0.05963 +19,0.00000,Other furniture,0.00000,EO12,0.00000,0.19374,0.23925,0.22454,Equipment,0.54498,0.42592,0.45588,0.41682,0.38699,0.39477,Office and Residential Equipment,0.02466,0.04303,0.03711,corporate,0.02466,0.04303,0.03711,0.02466,0.04303,0.03711,-0.05746,-0.09055,-0.08040 +20,0.00000,Household appliances,0.00000,EO71,0.00000,0.22644,0.27131,0.25683,Equipment,0.66077,0.47698,0.51968,0.50538,0.43338,0.45001,Office and Residential Equipment,0.03472,0.05289,0.04704,corporate,0.03472,0.05289,0.04704,0.03472,0.05289,0.04704,-0.04214,-0.06750,-0.05963 +21,0.00000,Service industry machinery,0.00000,EO60,0.00000,0.22028,0.26700,0.25192,Equipment,0.64146,0.47066,0.51081,0.49061,0.42764,0.44233,Other Equipment,0.03282,0.05157,0.04553,corporate,0.03282,0.05157,0.04553,0.03282,0.05157,0.04553,-0.05746,-0.09055,-0.08040 +22,0.00000,Other electrical,0.00000,EO72,0.00000,0.24354,0.29133,0.27592,Equipment,0.70937,0.50451,0.55169,0.54255,0.45839,0.47773,Other Equipment,0.03998,0.05906,0.05292,corporate,0.03998,0.05906,0.05292,0.03998,0.05906,0.05292,-0.05746,-0.09055,-0.08040 +23,0.00000,Other,0.00000,EO80,0.00000,0.21609,0.26263,0.24760,Equipment,0.62776,0.46408,0.50280,0.48014,0.42166,0.43539,Other Equipment,0.03154,0.05022,0.04420,corporate,0.03154,0.05022,0.04420,0.03154,0.05022,0.04420,-0.05746,-0.09055,-0.08040 +24,0.00000,Nuclear fuel,0.00000,EI11,0.00000,0.28970,0.33683,0.32165,Equipment,0.81279,0.55744,0.61546,0.62165,0.50649,0.53295,Other Industrial Equipment,0.05419,0.07306,0.06699,corporate,0.05419,0.07306,0.06699,0.05419,0.07306,0.06699,-0.04214,-0.06750,-0.05963 +25,0.00000,Other fabricated metals,0.00000,EI12,0.00000,0.17382,0.21842,0.20399,Equipment,0.45414,0.38704,0.40725,0.34734,0.35166,0.35266,Other Industrial Equipment,0.01853,0.03662,0.03078,corporate,0.01853,0.03662,0.03078,0.01853,0.03662,0.03078,-0.05746,-0.09055,-0.08040 +26,0.00000,Metalworking machinery,0.00000,EI30,0.00000,0.19724,0.24291,0.22815,Equipment,0.55911,0.43225,0.46371,0.42763,0.39274,0.40155,Other Industrial Equipment,0.02574,0.04416,0.03822,corporate,0.02574,0.04416,0.03822,0.02574,0.04416,0.03822,-0.05746,-0.09055,-0.08040 +27,0.00000,Electric transmission and distribution,0.00000,EI60,0.00000,0.14769,0.19598,0.18030,Equipment,0.29997,0.33878,0.34102,0.22943,0.30782,0.29530,Other Industrial Equipment,0.01049,0.02972,0.02349,corporate,0.01049,0.02972,0.02349,0.01049,0.02972,0.02349,-0.12535,-0.18502,-0.16763 +28,0.00000,Farm tractors,0.00000,EO21,0.00000,0.21450,0.26096,0.24596,Equipment,0.62240,0.46152,0.49968,0.47603,0.41933,0.43269,Other Industrial Equipment,0.03105,0.04971,0.04370,corporate,0.03105,0.04971,0.04370,0.03105,0.04971,0.04370,-0.05746,-0.09055,-0.08040 +29,0.00000,Construction tractors,0.00000,EO22,0.00000,0.22518,0.26999,0.25554,Equipment,0.65689,0.47507,0.51737,0.50241,0.43164,0.44801,Other Industrial Equipment,0.03433,0.05249,0.04664,corporate,0.03433,0.05249,0.04664,0.03433,0.05249,0.04664,-0.04214,-0.06750,-0.05963 +30,0.00000,Other agricultural machinery,0.00000,EO30,0.00000,0.19374,0.23925,0.22454,Equipment,0.54498,0.42592,0.45588,0.41682,0.38699,0.39477,Other Industrial Equipment,0.02466,0.04303,0.03711,corporate,0.02466,0.04303,0.03711,0.02466,0.04303,0.03711,-0.05746,-0.09055,-0.08040 +31,0.00000,Other construction machinery,0.00000,EO40,0.00000,0.21900,0.26360,0.24921,Equipment,0.63734,0.46555,0.50580,0.48746,0.42299,0.43799,Other Industrial Equipment,0.03243,0.05052,0.04470,corporate,0.03243,0.05052,0.04470,0.03243,0.05052,0.04470,-0.04214,-0.06750,-0.05963 +32,0.00000,Mining and oilfield machinery,0.00000,EO50,0.00000,0.21815,0.26478,0.24972,Equipment,0.63455,0.46733,0.50676,0.48533,0.42461,0.43882,Other Industrial Equipment,0.03217,0.05088,0.04486,corporate,0.03217,0.05088,0.04486,0.03217,0.05088,0.04486,-0.05746,-0.09055,-0.08040 +33,0.00000,Steam engines,0.00000,EI21,0.00000,0.14902,0.19741,0.18170,Equipment,0.30905,0.34209,0.34530,0.23637,0.31082,0.29900,Transportation Equipment,0.01090,0.03016,0.02393,corporate,0.01090,0.03016,0.02393,0.01090,0.03016,0.02393,-0.12535,-0.18502,-0.16763 +34,0.00000,Internal combustion engines,0.00000,EI22,0.00000,0.26095,0.30954,0.29388,Equipment,0.75253,0.52714,0.57868,0.57556,0.47896,0.50110,Transportation Equipment,0.04534,0.06466,0.05844,corporate,0.04534,0.06466,0.05844,0.04534,0.06466,0.05844,-0.05746,-0.09055,-0.08040 +35,0.00000,Light trucks (including utility vehicles),0.00000,ET11,0.00000,0.23203,0.27709,0.26255,Equipment,0.67739,0.48524,0.52966,0.51809,0.44088,0.45866,Transportation Equipment,0.03644,0.05467,0.04880,corporate,0.03644,0.05467,0.04880,0.03644,0.05467,0.04880,-0.04214,-0.06750,-0.05963 +36,0.00000,"Other trucks, buses and truck trailers",0.00000,ET12,0.00000,0.23203,0.27709,0.26255,Equipment,0.67739,0.48524,0.52966,0.51809,0.44088,0.45866,Transportation Equipment,0.03644,0.05467,0.04880,corporate,0.03644,0.05467,0.04880,0.03644,0.05467,0.04880,-0.04214,-0.06750,-0.05963 +37,0.00000,Autos,0.00000,ET20,0.00000,0.35170,0.40104,0.38518,Equipment,0.91004,0.61542,0.68247,0.69603,0.55917,0.59097,Transportation Equipment,0.07326,0.09281,0.08653,corporate,0.07326,0.09281,0.08653,0.07326,0.09281,0.08653,-0.04214,-0.06750,-0.05963 +38,0.00000,Aircraft,0.00000,ET30,0.00000,0.16757,0.21033,0.19651,Equipment,0.42144,0.37047,0.38765,0.32233,0.33661,0.33568,Transportation Equipment,0.01661,0.03413,0.02848,corporate,0.01661,0.03413,0.02848,0.01661,0.03413,0.02848,-0.04214,-0.06750,-0.05963 +39,0.00000,Ships and boats,0.00000,ET40,0.00000,0.15257,0.19797,0.18325,Equipment,0.33256,0.34337,0.34996,0.25435,0.31199,0.30304,Transportation Equipment,0.01199,0.03033,0.02440,corporate,0.01199,0.03033,0.02440,0.01199,0.03033,0.02440,-0.07897,-0.12158,-0.10874 +40,0.00000,Railroad equipment,0.00000,ET50,0.00000,0.14888,0.19234,0.17826,Equipment,0.30811,0.33024,0.33472,0.23565,0.30005,0.28985,Transportation Equipment,0.01086,0.02860,0.02287,corporate,0.01086,0.02860,0.02287,0.01086,0.02860,0.02287,-0.05746,-0.09055,-0.08040 +41,0.00000,Theatrical movies,0.00000,AE10,0.00000,0.18456,0.23641,0.21966,Intellectual Property,0.50544,0.42090,0.44497,0.38658,0.38243,0.38532,Intellectual Property,0.02184,0.04216,0.03561,corporate,0.02184,0.04216,0.03561,0.02184,0.04216,0.03561,-0.13410,-0.19745,-0.17904 +42,0.00000,Long-lived television programs,0.00000,AE20,0.00000,0.24478,0.29983,0.28219,Intellectual Property,0.71264,0.51534,0.56143,0.54506,0.46823,0.48616,Intellectual Property,0.04037,0.06167,0.05485,corporate,0.04037,0.06167,0.05485,0.04037,0.06167,0.05485,-0.12033,-0.17797,-0.16114 +43,0.00000,Books,0.00000,AE30,0.00000,0.20190,0.25515,0.23811,Intellectual Property,0.57723,0.45243,0.48435,0.44149,0.41108,0.41942,Intellectual Property,0.02717,0.04792,0.04128,corporate,0.02717,0.04792,0.04128,0.02717,0.04792,0.04128,-0.09450,-0.16201,-0.14299 +44,0.00000,Music,0.00000,AE40,0.00000,0.30410,0.35735,0.34031,Intellectual Property,0.83881,0.57778,0.63732,0.64155,0.52497,0.55188,Intellectual Property,0.05862,0.07937,0.07273,corporate,0.05862,0.07937,0.07273,0.05862,0.07937,0.07273,-0.04776,-0.08923,-0.07681 +45,0.00000,Other entertainment originals,0.00000,AE50,0.00000,0.19350,0.24675,0.22971,Intellectual Property,0.54399,0.43874,0.46704,0.41606,0.39863,0.40443,Intellectual Property,0.02459,0.04534,0.03870,corporate,0.02459,0.04534,0.03870,0.02459,0.04534,0.03870,-0.10277,-0.17365,-0.15389 +46,0.00000,Own account software,0.00000,ENS3,0.00000,0.33340,0.37100,0.35897,Intellectual Property,0.88499,0.59031,0.65726,0.67687,0.53635,0.56915,Intellectual Property,0.06763,0.08357,0.07847,corporate,0.06763,0.08357,0.07847,0.06763,0.08357,0.07847,0.00000,0.00000,0.00000 +47,0.00000,Pharmaceutical and medicine manufacturing,0.00000,RD11,0.00000,0.17240,0.21000,0.19797,Intellectual Property,0.44688,0.36978,0.39155,0.34179,0.33598,0.33906,Intellectual Property,0.01809,0.03403,0.02893,corporate,0.01809,0.03403,0.02893,0.01809,0.03403,0.02893,0.00000,0.00000,0.00000 +48,0.00000,"Chemical manufacturing, ex. pharma and med",0.00000,RD12,0.00000,0.21440,0.25200,0.23997,Intellectual Property,0.62205,0.44738,0.48805,0.47577,0.40648,0.42262,Intellectual Property,0.03102,0.04695,0.04185,corporate,0.03102,0.04695,0.04185,0.03102,0.04695,0.04185,0.00000,0.00000,0.00000 +49,0.00000,Computers and peripheral equipment manufacturing,0.00000,RD21,0.00000,0.38240,0.42000,0.40797,Intellectual Property,0.94678,0.62974,0.70210,0.72414,0.57218,0.60798,Intellectual Property,0.08271,0.09865,0.09355,corporate,0.08271,0.09865,0.09355,0.08271,0.09865,0.09355,0.00000,0.00000,0.00000 +50,0.00000,Communications equipment manufacturing,0.00000,RD22,0.00000,0.29140,0.32900,0.31697,Intellectual Property,0.81598,0.54915,0.60963,0.62409,0.49896,0.52790,Intellectual Property,0.05471,0.07065,0.06555,corporate,0.05471,0.07065,0.06555,0.05471,0.07065,0.06555,0.00000,0.00000,0.00000 +51,0.00000,Semiconductor and other component manufacturing,0.00000,RD23,0.00000,0.27740,0.31500,0.30297,Intellectual Property,0.78847,0.53353,0.59132,0.60305,0.48476,0.51205,Intellectual Property,0.05040,0.06634,0.06124,corporate,0.05040,0.06634,0.06124,0.05040,0.06634,0.06124,0.00000,0.00000,0.00000 +52,0.00000,Navigational and other instruments manufacturing,0.00000,RD24,0.00000,0.30540,0.34300,0.33097,Intellectual Property,0.84103,0.56376,0.62663,0.64325,0.51223,0.54262,Intellectual Property,0.05902,0.07495,0.06985,corporate,0.05902,0.07495,0.06985,0.05902,0.07495,0.06985,0.00000,0.00000,0.00000 +53,0.00000,"Other computer and electronic manufacturing, n.e.c.",0.00000,RD25,0.00000,0.38240,0.42000,0.40797,Intellectual Property,0.94678,0.62974,0.70210,0.72414,0.57218,0.60798,Intellectual Property,0.08271,0.09865,0.09355,corporate,0.08271,0.09865,0.09355,0.08271,0.09865,0.09355,0.00000,0.00000,0.00000 +54,0.00000,Motor vehicles and parts manufacturing,0.00000,RD31,0.00000,0.31940,0.35700,0.34497,Intellectual Property,0.86395,0.57745,0.64247,0.66078,0.52467,0.55634,Intellectual Property,0.06332,0.07926,0.07416,corporate,0.06332,0.07926,0.07416,0.06332,0.07926,0.07416,0.00000,0.00000,0.00000 +55,0.00000,Aerospace products and parts manufacturing,0.00000,RD32,0.00000,0.25640,0.29400,0.28197,Intellectual Property,0.74178,0.50796,0.56108,0.56734,0.46153,0.48586,Intellectual Property,0.04394,0.05988,0.05478,corporate,0.04394,0.05988,0.05478,0.04394,0.05988,0.05478,0.00000,0.00000,0.00000 +56,0.00000,Software publishers,0.00000,RD40,0.00000,0.26467,0.30907,0.29476,Intellectual Property,0.76102,0.52658,0.57992,0.58206,0.47845,0.50218,Intellectual Property,0.04648,0.06451,0.05871,corporate,0.04648,0.06451,0.05871,0.04648,0.06451,0.05871,-0.03173,-0.05161,-0.04538 +57,0.00000,Financial and real estate services,0.00000,RD50,0.00000,0.21440,0.25200,0.23997,Intellectual Property,0.62205,0.44738,0.48805,0.47577,0.40648,0.42262,Intellectual Property,0.03102,0.04695,0.04185,corporate,0.03102,0.04695,0.04185,0.03102,0.04695,0.04185,0.00000,0.00000,0.00000 +58,0.00000,Computer systems design and related services,0.00000,RD60,0.00000,0.36733,0.41465,0.39943,Intellectual Property,0.92950,0.62581,0.69497,0.71091,0.56861,0.60180,Intellectual Property,0.07807,0.09700,0.09092,corporate,0.07807,0.09700,0.09092,0.07807,0.09700,0.09092,-0.03173,-0.05161,-0.04538 +59,0.00000,Scientific research and development services,0.00000,RD70,0.00000,0.21440,0.25200,0.23997,Intellectual Property,0.62205,0.44738,0.48805,0.47577,0.40648,0.42262,Intellectual Property,0.03102,0.04695,0.04185,corporate,0.03102,0.04695,0.04185,0.03102,0.04695,0.04185,0.00000,0.00000,0.00000 +60,0.00000,"All other nonmanufacturing, n.e.c.",0.00000,RD80,0.00000,0.21440,0.25200,0.23997,Intellectual Property,0.62205,0.44738,0.48805,0.47577,0.40648,0.42262,Intellectual Property,0.03102,0.04695,0.04185,corporate,0.03102,0.04695,0.04185,0.03102,0.04695,0.04185,0.00000,0.00000,0.00000 +61,0.00000,Private universities and colleges,0.00000,RD91,0.00000,0.22067,0.26381,0.24990,Intellectual Property,0.64271,0.46588,0.50709,0.49157,0.42329,0.43911,Intellectual Property,0.03294,0.05059,0.04491,corporate,0.03294,0.05059,0.04491,0.03294,0.05059,0.04491,-0.03173,-0.05161,-0.04538 +62,0.00000,Other nonprofit institutions,0.00000,RD92,0.00000,0.22067,0.26381,0.24990,Intellectual Property,0.64271,0.46588,0.50709,0.49157,0.42329,0.43911,Intellectual Property,0.03294,0.05059,0.04491,corporate,0.03294,0.05059,0.04491,0.03294,0.05059,0.04491,-0.03173,-0.05161,-0.04538 +63,0.00000,Other manufacturing,0.00000,RDOM,0.00000,0.21440,0.25200,0.23997,Intellectual Property,0.62205,0.44738,0.48805,0.47577,0.40648,0.42262,Intellectual Property,0.03102,0.04695,0.04185,corporate,0.03102,0.04695,0.04185,0.03102,0.04695,0.04185,0.00000,0.00000,0.00000 +64,0.00000,Inventories,0.00000,INV,0.00000,0.09786,0.14462,0.12972,Inventories,-0.04949,0.14619,0.12032,-0.03785,0.13282,0.10419,Inventories,-0.00225,0.01764,0.01130,corporate,-0.00225,0.01764,0.01130,-0.00225,0.01764,0.01130,0.00000,0.00000,0.00000 +65,0.00000,Land,0.00000,LAND,0.00000,0.09240,0.14000,0.12477,Land,-0.10950,0.14000,0.10794,-0.08375,0.12720,0.09347,Land,-0.00436,0.01581,0.00936,corporate,-0.00436,0.01581,0.00936,-0.00436,0.01581,0.00936,0.00000,0.00000,0.00000 +66,0.00000,Petroleum and natural gas,0.00000,SM01,0.00000,0.15954,0.20200,0.18827,Structures,0.37579,0.35246,0.36471,0.28742,0.32025,0.31582,Mining and Drilling Structures,0.01414,0.03157,0.02595,corporate,0.01414,0.03157,0.02595,0.01414,0.03157,0.02595,-0.04214,-0.06750,-0.05963 +67,0.00000,Mining,0.00000,SM02,0.00000,0.13831,0.18129,0.16736,Structures,0.23131,0.30287,0.29910,0.17691,0.27518,0.25901,Mining and Drilling Structures,0.00761,0.02520,0.01951,corporate,0.00761,0.02520,0.01951,0.00761,0.02520,0.01951,-0.05746,-0.09055,-0.08040 +68,0.00000,Communication,0.00000,SU20,0.00000,0.12582,0.17246,0.15726,Structures,0.12497,0.27933,0.26298,0.09558,0.25380,0.22772,Mining and Drilling Structures,0.00376,0.02248,0.01640,corporate,0.00376,0.02248,0.01640,0.00376,0.02248,0.01640,-0.12535,-0.18502,-0.16763 +69,0.00000,Gas,0.00000,SU40,0.00000,0.15954,0.20200,0.18827,Structures,0.37579,0.35246,0.36471,0.28742,0.32025,0.31582,Mining and Drilling Structures,0.01414,0.03157,0.02595,corporate,0.01414,0.03157,0.02595,0.01414,0.03157,0.02595,-0.04214,-0.06750,-0.05963 +70,0.00000,Petroleum pipelines,0.00000,SU50,0.00000,0.12128,0.16238,0.14908,Structures,0.08134,0.25044,0.23118,0.06221,0.22755,0.20019,Mining and Drilling Structures,0.00237,0.01938,0.01389,corporate,0.00237,0.01938,0.01389,0.00237,0.01938,0.01389,-0.04214,-0.06750,-0.05963 +71,0.00000,Religious,0.00000,SB10,0.00000,0.10802,0.15316,0.13848,Structures,-0.00291,0.17827,0.15588,-0.00222,0.16197,0.13498,Nonresidential Buildings,-0.00011,0.01909,0.01286,corporate,-0.00011,0.01909,0.01286,-0.00011,0.01909,0.01286,0.05243,0.00000,0.01231 +72,0.00000,Educational and vocational,0.00000,SB20,0.00000,0.10688,0.15316,0.13813,Structures,-0.00448,0.17281,0.15080,-0.00343,0.15701,0.13059,Nonresidential Buildings,-0.00019,0.01950,0.01313,corporate,-0.00019,0.01950,0.01313,-0.00019,0.01950,0.01313,0.05806,0.00000,0.01305 +73,0.00000,Hospitals,0.00000,SB31,0.00000,0.10688,0.15316,0.13813,Structures,-0.00448,0.17281,0.15080,-0.00343,0.15701,0.13059,Nonresidential Buildings,-0.00019,0.01950,0.01313,corporate,-0.00019,0.01950,0.01313,-0.00019,0.01950,0.01313,0.05806,0.00000,0.01305 +74,0.00000,Special care,0.00000,SB32,0.00000,0.10688,0.15316,0.13813,Structures,-0.00448,0.17281,0.15080,-0.00343,0.15701,0.13059,Nonresidential Buildings,-0.00019,0.01950,0.01313,corporate,-0.00019,0.01950,0.01313,-0.00019,0.01950,0.01313,0.05806,0.00000,0.01305 +75,0.00000,Lodging,0.00000,SB41,0.00000,0.11282,0.15967,0.14452,Structures,0.04254,0.18134,0.16459,0.03254,0.16477,0.14252,Nonresidential Buildings,0.00195,0.02186,0.01544,corporate,0.00195,0.02186,0.01544,0.00195,0.02186,0.01544,0.05806,0.00000,0.01305 +76,0.00000,Air transportation,0.00000,SB43,0.00000,0.11001,0.15659,0.14150,Structures,0.02153,0.17749,0.15837,0.01647,0.16126,0.13714,Nonresidential Buildings,0.00094,0.02074,0.01434,corporate,0.00094,0.02074,0.01434,0.00094,0.02074,0.01434,0.05806,0.00000,0.01305 +77,0.00000,Other transportation,0.00000,SB45,0.00000,0.11001,0.15659,0.14150,Structures,0.02153,0.17749,0.15837,0.01647,0.16126,0.13714,Nonresidential Buildings,0.00094,0.02074,0.01434,corporate,0.00094,0.02074,0.01434,0.00094,0.02074,0.01434,0.05806,0.00000,0.01305 +78,0.00000,Warehouses,0.00000,SC01,0.00000,0.10924,0.15575,0.14067,Structures,0.01543,0.17638,0.15658,0.01180,0.16026,0.13559,Nonresidential Buildings,0.00067,0.02044,0.01405,corporate,0.00067,0.02044,0.01405,0.00067,0.02044,0.01405,0.05806,0.00000,0.01305 +79,0.00000,Other commercial,0.00000,SC02,0.00000,0.11161,0.15834,0.14321,Structures,0.03372,0.17972,0.16197,0.02579,0.16329,0.14025,Nonresidential Buildings,0.00152,0.02138,0.01496,corporate,0.00152,0.02138,0.01496,0.00152,0.02138,0.01496,0.05806,0.00000,0.01305 +80,0.00000,Multimerchandise shopping,0.00000,SC03,0.00000,0.11161,0.15834,0.14321,Structures,0.03372,0.17972,0.16197,0.02579,0.16329,0.14025,Nonresidential Buildings,0.00152,0.02138,0.01496,corporate,0.00152,0.02138,0.01496,0.00152,0.02138,0.01496,0.05806,0.00000,0.01305 +81,0.00000,Food and beverage establishments,0.00000,SC04,0.00000,0.11161,0.15834,0.14321,Structures,0.03372,0.17972,0.16197,0.02579,0.16329,0.14025,Nonresidential Buildings,0.00152,0.02138,0.01496,corporate,0.00152,0.02138,0.01496,0.00152,0.02138,0.01496,0.05806,0.00000,0.01305 +82,0.00000,Manufacturing,0.00000,SI00,0.00000,0.11493,0.16198,0.14678,Structures,0.05699,0.18403,0.16892,0.04359,0.16721,0.14628,Nonresidential Buildings,0.00271,0.02270,0.01625,corporate,0.00271,0.02270,0.01625,0.00271,0.02270,0.01625,0.05806,0.00000,0.01305 +83,0.00000,Public safety,0.00000,SO03,0.00000,0.11001,0.15659,0.14150,Structures,0.02153,0.17749,0.15837,0.01647,0.16126,0.13714,Nonresidential Buildings,0.00094,0.02074,0.01434,corporate,0.00094,0.02074,0.01434,0.00094,0.02074,0.01434,0.05806,0.00000,0.01305 +84,0.00000,Office,0.00000,SOO1,0.00000,0.11065,0.15729,0.14218,Structures,0.02649,0.17839,0.15983,0.02026,0.16209,0.13840,Nonresidential Buildings,0.00117,0.02100,0.01459,corporate,0.00117,0.02100,0.01459,0.00117,0.02100,0.01459,0.05806,0.00000,0.01305 +85,0.00000,Medical buildings,0.00000,SOO2,0.00000,0.11065,0.15729,0.14218,Structures,0.02649,0.17839,0.15983,0.02026,0.16209,0.13840,Nonresidential Buildings,0.00117,0.02100,0.01459,corporate,0.00117,0.02100,0.01459,0.00117,0.02100,0.01459,0.05806,0.00000,0.01305 +86,0.00000,Amusement and recreation,0.00000,SB42,0.00000,0.12691,0.16937,0.15559,Structures,0.13503,0.27070,0.25669,0.10328,0.24596,0.22228,Other Structures,0.00410,0.02153,0.01589,corporate,0.00410,0.02153,0.01589,0.00410,0.02153,0.01589,-0.05746,-0.09055,-0.08040 +87,0.00000,Local transit structures,0.00000,SB44,0.00000,0.11001,0.15659,0.14150,Structures,0.02153,0.17749,0.15837,0.01647,0.16126,0.13714,Other Structures,0.00094,0.02074,0.01434,corporate,0.00094,0.02074,0.01434,0.00094,0.02074,0.01434,0.05806,0.00000,0.01305 +88,0.00000,Other land transportation,0.00000,SB46,0.00000,0.12128,0.16238,0.14908,Structures,0.08134,0.25044,0.23118,0.06221,0.22755,0.20019,Other Structures,0.00237,0.01938,0.01389,corporate,0.00237,0.01938,0.01389,0.00237,0.01938,0.01389,-0.04214,-0.06750,-0.05963 +89,0.00000,Farm,0.00000,SN00,0.00000,0.12771,0.17598,0.16026,Structures,0.14230,0.28889,0.27406,0.10884,0.26248,0.23732,Other Structures,0.00434,0.02356,0.01733,corporate,0.00434,0.02356,0.01733,0.00434,0.02356,0.01733,-0.15685,-0.22382,-0.20485 +90,0.00000,Water supply,0.00000,SO01,0.00000,0.12650,0.17467,0.15898,Structures,0.13125,0.28536,0.26937,0.10039,0.25928,0.23326,Other Structures,0.00397,0.02316,0.01693,corporate,0.00397,0.02316,0.01693,0.00397,0.02316,0.01693,-0.15685,-0.22382,-0.20485 +91,0.00000,Sewage and waste disposal,0.00000,SO02,0.00000,0.12650,0.17467,0.15898,Structures,0.13125,0.28536,0.26937,0.10039,0.25928,0.23326,Other Structures,0.00397,0.02316,0.01693,corporate,0.00397,0.02316,0.01693,0.00397,0.02316,0.01693,-0.15685,-0.22382,-0.20485 +92,0.00000,Highway and conservation and development,0.00000,SO04,0.00000,0.12482,0.17139,0.15621,Structures,0.11562,0.27636,0.25903,0.08843,0.25110,0.22430,Other Structures,0.00345,0.02215,0.01608,corporate,0.00345,0.02215,0.01608,0.00345,0.02215,0.01608,-0.12535,-0.18502,-0.16763 +93,0.00000,Mobile structures,0.00000,SOMO,0.00000,0.14637,0.18972,0.17567,Structures,0.29082,0.32394,0.32656,0.22243,0.29433,0.28278,Other Structures,0.01008,0.02779,0.02207,corporate,0.01008,0.02779,0.02207,0.01008,0.02779,0.02207,-0.05746,-0.09055,-0.08040 +94,0.00000,Other railroad,0.00000,SU11,0.00000,0.12226,0.17009,0.15450,Structures,0.09099,0.27273,0.25251,0.06959,0.24780,0.21866,Other Structures,0.00267,0.02175,0.01555,corporate,0.00267,0.02175,0.01555,0.00267,0.02175,0.01555,-0.15685,-0.22382,-0.20485 +95,0.00000,Track replacement,0.00000,SU12,0.00000,0.12303,0.16531,0.15159,Structures,0.09851,0.25908,0.24121,0.07534,0.23539,0.20888,Other Structures,0.00290,0.02028,0.01466,corporate,0.00290,0.02028,0.01466,0.00290,0.02028,0.01466,-0.05746,-0.09055,-0.08040 +96,0.00000,Electric,0.00000,SU30,0.00000,0.12365,0.17014,0.15498,Structures,0.10454,0.27286,0.25437,0.07996,0.24792,0.22027,Other Structures,0.00310,0.02177,0.01570,corporate,0.00310,0.02177,0.01570,0.00310,0.02177,0.01570,-0.12535,-0.18502,-0.16763 +97,0.00000,Wind and solar,0.00000,SU60,0.00000,0.12619,0.16747,0.15411,Structures,0.12847,0.26530,0.25102,0.09826,0.24105,0.21737,Other Structures,0.00388,0.02094,0.01544,corporate,0.00388,0.02094,0.01544,0.00388,0.02094,0.01544,-0.04214,-0.06750,-0.05963 98,0.00000,Residential,0.00000,RES,0.00000,0.10641,0.15142,0.13670,Structures,-0.01952,0.17585,0.15163,-0.01493,0.15978,0.13131,Residential Buildings,-0.00073,0.01844,0.01220,corporate,-0.00073,0.01844,0.01220,-0.00073,0.01844,0.01220,0.05632,0.00000,0.01378 -99,0.00000,Prepackaged software,0.00000,ENS1,0.00000,0.02292,0.02931,0.02745,Equipment,0.11957,0.12235,0.12180,0.11957,0.12235,0.12180,Computers and Software,0.00574,0.00735,0.00688,non-corporate,0.00574,0.00735,0.00688,0.00574,0.00735,0.00688,-0.03858,-0.04816,-0.04541 -100,0.00000,Custom software,0.00000,ENS2,0.00000,0.01435,0.01861,0.01736,Equipment,0.07870,0.08132,0.08071,0.07870,0.08132,0.08071,Computers and Software,0.00360,0.00466,0.00435,non-corporate,0.00360,0.00466,0.00435,0.00360,0.00466,0.00435,-0.03858,-0.04816,-0.04541 -101,0.00000,Mainframes,0.00000,EP1A,0.00000,0.02581,0.03291,0.03084,Equipment,0.13249,0.13533,0.13480,0.13249,0.13533,0.13480,Computers and Software,0.00647,0.00825,0.00773,non-corporate,0.00647,0.00825,0.00773,0.00647,0.00825,0.00773,-0.05096,-0.06316,-0.05967 -102,0.00000,PCs,0.00000,EP1B,0.00000,0.02581,0.03291,0.03084,Equipment,0.13249,0.13533,0.13480,0.13249,0.13533,0.13480,Computers and Software,0.00647,0.00825,0.00773,non-corporate,0.00647,0.00825,0.00773,0.00647,0.00825,0.00773,-0.05096,-0.06316,-0.05967 -103,0.00000,DASDs,0.00000,EP1C,0.00000,0.02581,0.03291,0.03084,Equipment,0.13249,0.13533,0.13480,0.13249,0.13533,0.13480,Computers and Software,0.00647,0.00825,0.00773,non-corporate,0.00647,0.00825,0.00773,0.00647,0.00825,0.00773,-0.05096,-0.06316,-0.05967 -104,0.00000,Printers,0.00000,EP1D,0.00000,0.02581,0.03291,0.03084,Equipment,0.13249,0.13533,0.13480,0.13249,0.13533,0.13480,Computers and Software,0.00647,0.00825,0.00773,non-corporate,0.00647,0.00825,0.00773,0.00647,0.00825,0.00773,-0.05096,-0.06316,-0.05967 -105,0.00000,Terminals,0.00000,EP1E,0.00000,0.02581,0.03291,0.03084,Equipment,0.13249,0.13533,0.13480,0.13249,0.13533,0.13480,Computers and Software,0.00647,0.00825,0.00773,non-corporate,0.00647,0.00825,0.00773,0.00647,0.00825,0.00773,-0.05096,-0.06316,-0.05967 -106,0.00000,Tape drives,0.00000,EP1F,0.00000,0.02581,0.03291,0.03084,Equipment,0.13249,0.13533,0.13480,0.13249,0.13533,0.13480,Computers and Software,0.00647,0.00825,0.00773,non-corporate,0.00647,0.00825,0.00773,0.00647,0.00825,0.00773,-0.05096,-0.06316,-0.05967 -107,0.00000,Storage devices,0.00000,EP1G,0.00000,0.02581,0.03291,0.03084,Equipment,0.13249,0.13533,0.13480,0.13249,0.13533,0.13480,Computers and Software,0.00647,0.00825,0.00773,non-corporate,0.00647,0.00825,0.00773,0.00647,0.00825,0.00773,-0.05096,-0.06316,-0.05967 -108,0.00000,System integrators,0.00000,EP1H,0.00000,0.02581,0.03291,0.03084,Equipment,0.13249,0.13533,0.13480,0.13249,0.13533,0.13480,Computers and Software,0.00647,0.00825,0.00773,non-corporate,0.00647,0.00825,0.00773,0.00647,0.00825,0.00773,-0.05096,-0.06316,-0.05967 -109,0.00000,Special industrial machinery,0.00000,EI40,0.00000,0.00986,0.01337,0.01232,Equipment,0.05560,0.05977,0.05868,0.05560,0.05977,0.05868,Industrial Machinery,0.00247,0.00335,0.00309,non-corporate,0.00247,0.00335,0.00309,0.00247,0.00335,0.00309,-0.06910,-0.08496,-0.08046 -110,0.00000,General industrial equipment,0.00000,EI50,0.00000,0.01015,0.01372,0.01265,Equipment,0.05711,0.06125,0.06017,0.05711,0.06125,0.06017,Industrial Machinery,0.00254,0.00344,0.00317,non-corporate,0.00254,0.00344,0.00317,0.00254,0.00344,0.00317,-0.06910,-0.08496,-0.08046 -111,0.00000,Office and accounting equipment,0.00000,EP12,0.00000,0.01802,0.02325,0.02172,Equipment,0.09672,0.09957,0.09895,0.09672,0.09957,0.09895,Instruments and Communications Equipment,0.00452,0.00583,0.00544,non-corporate,0.00452,0.00583,0.00544,0.00452,0.00583,0.00544,-0.05096,-0.06316,-0.05967 -112,0.00000,Communications,0.00000,EP20,0.00000,0.01055,0.01421,0.01312,Equipment,0.05921,0.06329,0.06224,0.05921,0.06329,0.06224,Instruments and Communications Equipment,0.00264,0.00356,0.00329,non-corporate,0.00264,0.00356,0.00329,0.00264,0.00356,0.00329,-0.06910,-0.08496,-0.08046 -113,0.00000,Photocopy and related equipment,0.00000,EP31,0.00000,0.01123,0.01484,0.01377,Equipment,0.06279,0.06593,0.06514,0.06279,0.06593,0.06514,Instruments and Communications Equipment,0.00282,0.00372,0.00345,non-corporate,0.00282,0.00372,0.00345,0.00282,0.00372,0.00345,-0.05096,-0.06316,-0.05967 -114,0.00000,Nonelectro medical instruments,0.00000,EP34,0.00000,0.01209,0.01610,0.01491,Equipment,0.06723,0.07114,0.07015,0.06723,0.07114,0.07015,Instruments and Communications Equipment,0.00303,0.00404,0.00374,non-corporate,0.00303,0.00404,0.00374,0.00303,0.00404,0.00374,-0.06910,-0.08496,-0.08046 -115,0.00000,Electro medical instruments,0.00000,EP35,0.00000,0.01209,0.01610,0.01491,Equipment,0.06723,0.07114,0.07015,0.06723,0.07114,0.07015,Instruments and Communications Equipment,0.00303,0.00404,0.00374,non-corporate,0.00303,0.00404,0.00374,0.00303,0.00404,0.00374,-0.06910,-0.08496,-0.08046 -116,0.00000,Nonmedical instruments,0.00000,EP36,0.00000,0.01209,0.01610,0.01491,Equipment,0.06723,0.07114,0.07015,0.06723,0.07114,0.07015,Instruments and Communications Equipment,0.00303,0.00404,0.00374,non-corporate,0.00303,0.00404,0.00374,0.00303,0.00404,0.00374,-0.06910,-0.08496,-0.08046 -117,0.00000,Household furniture,0.00000,EO11,0.00000,0.00905,0.01213,0.01121,Equipment,0.05124,0.05454,0.05369,0.05124,0.05454,0.05369,Office and Residential Equipment,0.00227,0.00304,0.00281,non-corporate,0.00227,0.00304,0.00281,0.00227,0.00304,0.00281,-0.05096,-0.06316,-0.05967 -118,0.00000,Other furniture,0.00000,EO12,0.00000,0.01090,0.01464,0.01352,Equipment,0.06104,0.06508,0.06404,0.06104,0.06508,0.06404,Office and Residential Equipment,0.00273,0.00367,0.00339,non-corporate,0.00273,0.00367,0.00339,0.00273,0.00367,0.00339,-0.06910,-0.08496,-0.08046 -119,0.00000,Household appliances,0.00000,EO71,0.00000,0.01046,0.01388,0.01287,Equipment,0.05875,0.06194,0.06113,0.05875,0.06194,0.06113,Office and Residential Equipment,0.00262,0.00348,0.00322,non-corporate,0.00262,0.00348,0.00322,0.00262,0.00348,0.00322,-0.05096,-0.06316,-0.05967 -120,0.00000,Service industry machinery,0.00000,EO60,0.00000,0.01333,0.01763,0.01636,Equipment,0.07358,0.07736,0.07642,0.07358,0.07736,0.07642,Other Equipment,0.00334,0.00442,0.00410,non-corporate,0.00334,0.00442,0.00410,0.00334,0.00442,0.00410,-0.06910,-0.08496,-0.08046 -121,0.00000,Other electrical,0.00000,EO72,0.00000,0.01547,0.02026,0.01884,Equipment,0.08428,0.08787,0.08701,0.08428,0.08787,0.08701,Other Equipment,0.00388,0.00508,0.00472,non-corporate,0.00388,0.00508,0.00472,0.00388,0.00508,0.00472,-0.06910,-0.08496,-0.08046 -122,0.00000,Other,0.00000,EO80,0.00000,0.01295,0.01716,0.01591,Equipment,0.07163,0.07545,0.07449,0.07163,0.07545,0.07449,Other Equipment,0.00325,0.00430,0.00399,non-corporate,0.00325,0.00430,0.00399,0.00325,0.00430,0.00399,-0.06910,-0.08496,-0.08046 -123,0.00000,Nuclear fuel,0.00000,EI11,0.00000,0.01484,0.01931,0.01799,Equipment,0.08114,0.08409,0.08340,0.08114,0.08409,0.08340,Other Industrial Equipment,0.00372,0.00484,0.00451,non-corporate,0.00372,0.00484,0.00451,0.00372,0.00484,0.00451,-0.05096,-0.06316,-0.05967 -124,0.00000,Other fabricated metals,0.00000,EI12,0.00000,0.00907,0.01239,0.01139,Equipment,0.05137,0.05564,0.05452,0.05137,0.05564,0.05452,Other Industrial Equipment,0.00227,0.00311,0.00286,non-corporate,0.00227,0.00311,0.00286,0.00227,0.00311,0.00286,-0.06910,-0.08496,-0.08046 -125,0.00000,Metalworking machinery,0.00000,EI30,0.00000,0.01122,0.01503,0.01390,Equipment,0.06271,0.06672,0.06569,0.06271,0.06672,0.06569,Other Industrial Equipment,0.00281,0.00377,0.00348,non-corporate,0.00281,0.00377,0.00348,0.00281,0.00377,0.00348,-0.06910,-0.08496,-0.08046 -126,0.00000,Electric transmission and distribution,0.00000,EI60,0.00000,0.01313,0.01821,0.01669,Equipment,0.07256,0.07968,0.07784,0.07256,0.07968,0.07784,Other Industrial Equipment,0.00329,0.00456,0.00418,non-corporate,0.00329,0.00456,0.00418,0.00329,0.00456,0.00418,-0.14733,-0.17554,-0.16773 -127,0.00000,Farm tractors,0.00000,EO21,0.00000,0.01280,0.01698,0.01574,Equipment,0.07088,0.07472,0.07375,0.07088,0.07472,0.07375,Other Industrial Equipment,0.00321,0.00426,0.00394,non-corporate,0.00321,0.00426,0.00394,0.00321,0.00426,0.00394,-0.06910,-0.08496,-0.08046 -128,0.00000,Construction tractors,0.00000,EO22,0.00000,0.01037,0.01378,0.01276,Equipment,0.05829,0.06149,0.06068,0.05829,0.06149,0.06068,Other Industrial Equipment,0.00260,0.00345,0.00320,non-corporate,0.00260,0.00345,0.00320,0.00260,0.00345,0.00320,-0.05096,-0.06316,-0.05967 -129,0.00000,Other agricultural machinery,0.00000,EO30,0.00000,0.01090,0.01464,0.01352,Equipment,0.06104,0.06508,0.06404,0.06104,0.06508,0.06404,Other Industrial Equipment,0.00273,0.00367,0.00339,non-corporate,0.00273,0.00367,0.00339,0.00273,0.00367,0.00339,-0.06910,-0.08496,-0.08046 -130,0.00000,Other construction machinery,0.00000,EO40,0.00000,0.00995,0.01325,0.01226,Equipment,0.05603,0.05926,0.05844,0.05603,0.05926,0.05844,Other Industrial Equipment,0.00249,0.00332,0.00307,non-corporate,0.00249,0.00332,0.00307,0.00249,0.00332,0.00307,-0.05096,-0.06316,-0.05967 -131,0.00000,Mining and oilfield machinery,0.00000,EO50,0.00000,0.01314,0.01739,0.01613,Equipment,0.07259,0.07639,0.07544,0.07259,0.07639,0.07544,Other Industrial Equipment,0.00329,0.00436,0.00404,non-corporate,0.00329,0.00436,0.00404,0.00329,0.00436,0.00404,-0.06910,-0.08496,-0.08046 -132,0.00000,Steam engines,0.00000,EI21,0.00000,0.01337,0.01849,0.01696,Equipment,0.07377,0.08082,0.07900,0.07377,0.08082,0.07900,Transportation Equipment,0.00335,0.00463,0.00425,non-corporate,0.00335,0.00463,0.00425,0.00335,0.00463,0.00425,-0.14733,-0.17554,-0.16773 -133,0.00000,Internal combustion engines,0.00000,EI22,0.00000,0.01707,0.02222,0.02070,Equipment,0.09211,0.09558,0.09477,0.09211,0.09558,0.09477,Transportation Equipment,0.00428,0.00557,0.00519,non-corporate,0.00428,0.00557,0.00519,0.00428,0.00557,0.00519,-0.06910,-0.08496,-0.08046 -134,0.00000,Light trucks (including utility vehicles),0.00000,ET11,0.00000,0.01085,0.01436,0.01332,Equipment,0.06077,0.06394,0.06314,0.06077,0.06394,0.06314,Transportation Equipment,0.00272,0.00360,0.00334,non-corporate,0.00272,0.00360,0.00334,0.00272,0.00360,0.00334,-0.05096,-0.06316,-0.05967 -135,0.00000,"Other trucks, buses and truck trailers",0.00000,ET12,0.00000,0.01085,0.01436,0.01332,Equipment,0.06077,0.06394,0.06314,0.06077,0.06394,0.06314,Transportation Equipment,0.00272,0.00360,0.00334,non-corporate,0.00272,0.00360,0.00334,0.00272,0.00360,0.00334,-0.05096,-0.06316,-0.05967 -136,0.00000,Autos,0.00000,ET20,0.00000,0.01912,0.02462,0.02301,Equipment,0.10198,0.10480,0.10420,0.10198,0.10480,0.10420,Transportation Equipment,0.00479,0.00617,0.00577,non-corporate,0.00479,0.00617,0.00577,0.00479,0.00617,0.00577,-0.05096,-0.06316,-0.05967 -137,0.00000,Aircraft,0.00000,ET30,0.00000,0.00639,0.00884,0.00810,Equipment,0.03680,0.04034,0.03939,0.03680,0.04034,0.03939,Transportation Equipment,0.00160,0.00222,0.00203,non-corporate,0.00160,0.00222,0.00203,0.00160,0.00222,0.00203,-0.05096,-0.06316,-0.05967 -138,0.00000,Ships and boats,0.00000,ET40,0.00000,0.00945,0.01316,0.01204,Equipment,0.05341,0.05891,0.05745,0.05341,0.05891,0.05745,Transportation Equipment,0.00237,0.00330,0.00302,non-corporate,0.00237,0.00330,0.00302,0.00237,0.00330,0.00302,-0.09420,-0.11453,-0.10881 -139,0.00000,Railroad equipment,0.00000,ET50,0.00000,0.00678,0.00958,0.00873,Equipment,0.03896,0.04355,0.04231,0.03896,0.04355,0.04231,Transportation Equipment,0.00170,0.00240,0.00219,non-corporate,0.00170,0.00240,0.00219,0.00170,0.00240,0.00219,-0.06910,-0.08496,-0.08046 -140,0.00000,Theatrical movies,0.00000,AE10,0.00000,0.02088,0.02758,0.02560,Intellectual Property,0.11020,0.11594,0.11457,0.11020,0.11594,0.11457,Intellectual Property,0.00523,0.00691,0.00642,non-corporate,0.00523,0.00691,0.00642,0.00523,0.00691,0.00642,-0.15748,-0.18742,-0.17914 -141,0.00000,Long-lived television programs,0.00000,AE20,0.00000,0.02948,0.03762,0.03525,Intellectual Property,0.14827,0.15175,0.15111,0.14827,0.15175,0.15111,Intellectual Property,0.00739,0.00943,0.00884,non-corporate,0.00739,0.00943,0.00884,0.00739,0.00943,0.00884,-0.14152,-0.16879,-0.16123 -142,0.00000,Books,0.00000,AE30,0.00000,0.01932,0.02661,0.02450,Intellectual Property,0.10292,0.11233,0.11018,0.10292,0.11233,0.11018,Intellectual Property,0.00484,0.00667,0.00614,non-corporate,0.00484,0.00667,0.00614,0.00484,0.00667,0.00614,-0.12013,-0.15170,-0.14310 -143,0.00000,Music,0.00000,AE40,0.00000,0.01932,0.02661,0.02450,Intellectual Property,0.10292,0.11233,0.11018,0.10292,0.11233,0.11018,Intellectual Property,0.00484,0.00667,0.00614,non-corporate,0.00484,0.00667,0.00614,0.00484,0.00667,0.00614,-0.06268,-0.08242,-0.07688 -144,0.00000,Other entertainment originals,0.00000,AE50,0.00000,0.01932,0.02661,0.02450,Intellectual Property,0.10292,0.11233,0.11018,0.10292,0.11233,0.11018,Intellectual Property,0.00484,0.00667,0.00614,non-corporate,0.00484,0.00667,0.00614,0.00484,0.00667,0.00614,-0.12992,-0.16296,-0.15400 +99,0.00000,Prepackaged software,0.00000,ENS1,0.00000,0.02283,0.02916,0.02731,Equipment,0.11863,0.12166,0.12105,0.11863,0.12166,0.12105,Computers and Software,0.00571,0.00730,0.00684,non-corporate,0.00571,0.00730,0.00684,0.00571,0.00730,0.00684,-0.03863,-0.04816,-0.04542 +100,0.00000,Custom software,0.00000,ENS2,0.00000,0.01429,0.01852,0.01727,Equipment,0.07806,0.08084,0.08020,0.07806,0.08084,0.08020,Computers and Software,0.00358,0.00463,0.00432,non-corporate,0.00358,0.00463,0.00432,0.00358,0.00463,0.00432,-0.03863,-0.04816,-0.04542 +101,0.00000,Mainframes,0.00000,EP1A,0.00000,0.02571,0.03274,0.03069,Equipment,0.13146,0.13457,0.13398,0.13146,0.13457,0.13398,Computers and Software,0.00644,0.00819,0.00768,non-corporate,0.00644,0.00819,0.00768,0.00644,0.00819,0.00768,-0.05102,-0.06315,-0.05969 +102,0.00000,PCs,0.00000,EP1B,0.00000,0.02571,0.03274,0.03069,Equipment,0.13146,0.13457,0.13398,0.13146,0.13457,0.13398,Computers and Software,0.00644,0.00819,0.00768,non-corporate,0.00644,0.00819,0.00768,0.00644,0.00819,0.00768,-0.05102,-0.06315,-0.05969 +103,0.00000,DASDs,0.00000,EP1C,0.00000,0.02571,0.03274,0.03069,Equipment,0.13146,0.13457,0.13398,0.13146,0.13457,0.13398,Computers and Software,0.00644,0.00819,0.00768,non-corporate,0.00644,0.00819,0.00768,0.00644,0.00819,0.00768,-0.05102,-0.06315,-0.05969 +104,0.00000,Printers,0.00000,EP1D,0.00000,0.02571,0.03274,0.03069,Equipment,0.13146,0.13457,0.13398,0.13146,0.13457,0.13398,Computers and Software,0.00644,0.00819,0.00768,non-corporate,0.00644,0.00819,0.00768,0.00644,0.00819,0.00768,-0.05102,-0.06315,-0.05969 +105,0.00000,Terminals,0.00000,EP1E,0.00000,0.02571,0.03274,0.03069,Equipment,0.13146,0.13457,0.13398,0.13146,0.13457,0.13398,Computers and Software,0.00644,0.00819,0.00768,non-corporate,0.00644,0.00819,0.00768,0.00644,0.00819,0.00768,-0.05102,-0.06315,-0.05969 +106,0.00000,Tape drives,0.00000,EP1F,0.00000,0.02571,0.03274,0.03069,Equipment,0.13146,0.13457,0.13398,0.13146,0.13457,0.13398,Computers and Software,0.00644,0.00819,0.00768,non-corporate,0.00644,0.00819,0.00768,0.00644,0.00819,0.00768,-0.05102,-0.06315,-0.05969 +107,0.00000,Storage devices,0.00000,EP1G,0.00000,0.02571,0.03274,0.03069,Equipment,0.13146,0.13457,0.13398,0.13146,0.13457,0.13398,Computers and Software,0.00644,0.00819,0.00768,non-corporate,0.00644,0.00819,0.00768,0.00644,0.00819,0.00768,-0.05102,-0.06315,-0.05969 +108,0.00000,System integrators,0.00000,EP1H,0.00000,0.02571,0.03274,0.03069,Equipment,0.13146,0.13457,0.13398,0.13146,0.13457,0.13398,Computers and Software,0.00644,0.00819,0.00768,non-corporate,0.00644,0.00819,0.00768,0.00644,0.00819,0.00768,-0.05102,-0.06315,-0.05969 +109,0.00000,Special industrial machinery,0.00000,EI40,0.00000,0.00983,0.01330,0.01226,Equipment,0.05515,0.05941,0.05830,0.05515,0.05941,0.05830,Industrial Machinery,0.00246,0.00333,0.00307,non-corporate,0.00246,0.00333,0.00307,0.00246,0.00333,0.00307,-0.06918,-0.08496,-0.08048 +110,0.00000,General industrial equipment,0.00000,EI50,0.00000,0.01012,0.01365,0.01259,Equipment,0.05665,0.06088,0.05978,0.05665,0.06088,0.05978,Industrial Machinery,0.00253,0.00342,0.00315,non-corporate,0.00253,0.00342,0.00315,0.00253,0.00342,0.00315,-0.06918,-0.08496,-0.08048 +111,0.00000,Office and accounting equipment,0.00000,EP12,0.00000,0.01795,0.02313,0.02162,Equipment,0.09595,0.09900,0.09833,0.09595,0.09900,0.09833,Instruments and Communications Equipment,0.00449,0.00579,0.00541,non-corporate,0.00449,0.00579,0.00541,0.00449,0.00579,0.00541,-0.05102,-0.06315,-0.05969 +112,0.00000,Communications,0.00000,EP20,0.00000,0.01051,0.01414,0.01305,Equipment,0.05873,0.06291,0.06183,0.05873,0.06291,0.06183,Instruments and Communications Equipment,0.00263,0.00354,0.00327,non-corporate,0.00263,0.00354,0.00327,0.00263,0.00354,0.00327,-0.06918,-0.08496,-0.08048 +113,0.00000,Photocopy and related equipment,0.00000,EP31,0.00000,0.01119,0.01476,0.01371,Equipment,0.06227,0.06553,0.06472,0.06227,0.06553,0.06472,Instruments and Communications Equipment,0.00280,0.00370,0.00343,non-corporate,0.00280,0.00370,0.00343,0.00280,0.00370,0.00343,-0.05102,-0.06315,-0.05969 +114,0.00000,Nonelectro medical instruments,0.00000,EP34,0.00000,0.01205,0.01602,0.01484,Equipment,0.06668,0.07071,0.06970,0.06668,0.07071,0.06970,Instruments and Communications Equipment,0.00302,0.00401,0.00371,non-corporate,0.00302,0.00401,0.00371,0.00302,0.00401,0.00371,-0.06918,-0.08496,-0.08048 +115,0.00000,Electro medical instruments,0.00000,EP35,0.00000,0.01205,0.01602,0.01484,Equipment,0.06668,0.07071,0.06970,0.06668,0.07071,0.06970,Instruments and Communications Equipment,0.00302,0.00401,0.00371,non-corporate,0.00302,0.00401,0.00371,0.00302,0.00401,0.00371,-0.06918,-0.08496,-0.08048 +116,0.00000,Nonmedical instruments,0.00000,EP36,0.00000,0.01205,0.01602,0.01484,Equipment,0.06668,0.07071,0.06970,0.06668,0.07071,0.06970,Instruments and Communications Equipment,0.00302,0.00401,0.00371,non-corporate,0.00302,0.00401,0.00371,0.00302,0.00401,0.00371,-0.06918,-0.08496,-0.08048 +117,0.00000,Household furniture,0.00000,EO11,0.00000,0.00901,0.01207,0.01116,Equipment,0.05082,0.05421,0.05334,0.05082,0.05421,0.05334,Office and Residential Equipment,0.00226,0.00302,0.00279,non-corporate,0.00226,0.00302,0.00279,0.00226,0.00302,0.00279,-0.05102,-0.06315,-0.05969 +118,0.00000,Other furniture,0.00000,EO12,0.00000,0.01086,0.01456,0.01346,Equipment,0.06054,0.06469,0.06363,0.06054,0.06469,0.06363,Office and Residential Equipment,0.00272,0.00364,0.00337,non-corporate,0.00272,0.00364,0.00337,0.00272,0.00364,0.00337,-0.06918,-0.08496,-0.08048 +119,0.00000,Household appliances,0.00000,EO71,0.00000,0.01042,0.01381,0.01281,Equipment,0.05827,0.06157,0.06073,0.05827,0.06157,0.06073,Office and Residential Equipment,0.00261,0.00346,0.00321,non-corporate,0.00261,0.00346,0.00321,0.00261,0.00346,0.00321,-0.05102,-0.06315,-0.05969 +120,0.00000,Service industry machinery,0.00000,EO60,0.00000,0.01328,0.01754,0.01628,Equipment,0.07299,0.07690,0.07593,0.07299,0.07690,0.07593,Other Equipment,0.00333,0.00439,0.00407,non-corporate,0.00333,0.00439,0.00407,0.00333,0.00439,0.00407,-0.06918,-0.08496,-0.08048 +121,0.00000,Other electrical,0.00000,EO72,0.00000,0.01541,0.02015,0.01875,Equipment,0.08360,0.08736,0.08646,0.08360,0.08736,0.08646,Other Equipment,0.00386,0.00504,0.00469,non-corporate,0.00386,0.00504,0.00469,0.00386,0.00504,0.00469,-0.06918,-0.08496,-0.08048 +122,0.00000,Other,0.00000,EO80,0.00000,0.01290,0.01707,0.01583,Equipment,0.07105,0.07500,0.07402,0.07105,0.07500,0.07402,Other Equipment,0.00323,0.00427,0.00396,non-corporate,0.00323,0.00427,0.00396,0.00323,0.00427,0.00396,-0.06918,-0.08496,-0.08048 +123,0.00000,Nuclear fuel,0.00000,EI11,0.00000,0.01478,0.01921,0.01790,Equipment,0.08048,0.08360,0.08287,0.08048,0.08360,0.08287,Other Industrial Equipment,0.00370,0.00481,0.00448,non-corporate,0.00370,0.00481,0.00448,0.00370,0.00481,0.00448,-0.05102,-0.06315,-0.05969 +124,0.00000,Other fabricated metals,0.00000,EI12,0.00000,0.00904,0.01233,0.01134,Equipment,0.05095,0.05530,0.05416,0.05095,0.05530,0.05416,Other Industrial Equipment,0.00226,0.00308,0.00284,non-corporate,0.00226,0.00308,0.00284,0.00226,0.00308,0.00284,-0.06918,-0.08496,-0.08048 +125,0.00000,Metalworking machinery,0.00000,EI30,0.00000,0.01118,0.01495,0.01383,Equipment,0.06220,0.06632,0.06527,0.06220,0.06632,0.06527,Other Industrial Equipment,0.00280,0.00374,0.00346,non-corporate,0.00280,0.00374,0.00346,0.00280,0.00374,0.00346,-0.06918,-0.08496,-0.08048 +126,0.00000,Electric transmission and distribution,0.00000,EI60,0.00000,0.01309,0.01811,0.01661,Equipment,0.07199,0.07921,0.07735,0.07199,0.07921,0.07735,Other Industrial Equipment,0.00328,0.00453,0.00416,non-corporate,0.00328,0.00453,0.00416,0.00328,0.00453,0.00416,-0.14747,-0.17553,-0.16776 +127,0.00000,Farm tractors,0.00000,EO21,0.00000,0.01276,0.01689,0.01566,Equipment,0.07031,0.07427,0.07328,0.07031,0.07427,0.07328,Other Industrial Equipment,0.00319,0.00423,0.00392,non-corporate,0.00319,0.00423,0.00392,0.00319,0.00423,0.00392,-0.06918,-0.08496,-0.08048 +128,0.00000,Construction tractors,0.00000,EO22,0.00000,0.01034,0.01371,0.01270,Equipment,0.05781,0.06111,0.06028,0.05781,0.06111,0.06028,Other Industrial Equipment,0.00259,0.00343,0.00318,non-corporate,0.00259,0.00343,0.00318,0.00259,0.00343,0.00318,-0.05102,-0.06315,-0.05969 +129,0.00000,Other agricultural machinery,0.00000,EO30,0.00000,0.01086,0.01456,0.01346,Equipment,0.06054,0.06469,0.06363,0.06054,0.06469,0.06363,Other Industrial Equipment,0.00272,0.00364,0.00337,non-corporate,0.00272,0.00364,0.00337,0.00272,0.00364,0.00337,-0.06918,-0.08496,-0.08048 +130,0.00000,Other construction machinery,0.00000,EO40,0.00000,0.00991,0.01318,0.01221,Equipment,0.05558,0.05890,0.05806,0.05558,0.05890,0.05806,Other Industrial Equipment,0.00248,0.00330,0.00306,non-corporate,0.00248,0.00330,0.00306,0.00248,0.00330,0.00306,-0.05102,-0.06315,-0.05969 +131,0.00000,Mining and oilfield machinery,0.00000,EO50,0.00000,0.01309,0.01730,0.01605,Equipment,0.07200,0.07594,0.07496,0.07200,0.07594,0.07496,Other Industrial Equipment,0.00328,0.00433,0.00402,non-corporate,0.00328,0.00433,0.00402,0.00328,0.00433,0.00402,-0.06918,-0.08496,-0.08048 +132,0.00000,Steam engines,0.00000,EI21,0.00000,0.01333,0.01839,0.01688,Equipment,0.07319,0.08034,0.07850,0.07319,0.08034,0.07850,Transportation Equipment,0.00334,0.00460,0.00422,non-corporate,0.00334,0.00460,0.00422,0.00334,0.00460,0.00422,-0.14747,-0.17553,-0.16776 +133,0.00000,Internal combustion engines,0.00000,EI22,0.00000,0.01700,0.02211,0.02061,Equipment,0.09137,0.09502,0.09417,0.09137,0.09502,0.09417,Transportation Equipment,0.00426,0.00553,0.00516,non-corporate,0.00426,0.00553,0.00516,0.00426,0.00553,0.00516,-0.06918,-0.08496,-0.08048 +134,0.00000,Light trucks (including utility vehicles),0.00000,ET11,0.00000,0.01081,0.01429,0.01326,Equipment,0.06027,0.06355,0.06273,0.06027,0.06355,0.06273,Transportation Equipment,0.00271,0.00358,0.00332,non-corporate,0.00271,0.00358,0.00332,0.00271,0.00358,0.00332,-0.05102,-0.06315,-0.05969 +135,0.00000,"Other trucks, buses and truck trailers",0.00000,ET12,0.00000,0.01081,0.01429,0.01326,Equipment,0.06027,0.06355,0.06273,0.06027,0.06355,0.06273,Transportation Equipment,0.00271,0.00358,0.00332,non-corporate,0.00271,0.00358,0.00332,0.00271,0.00358,0.00332,-0.05102,-0.06315,-0.05969 +136,0.00000,Autos,0.00000,ET20,0.00000,0.01905,0.02449,0.02290,Equipment,0.10116,0.10420,0.10355,0.10116,0.10420,0.10355,Transportation Equipment,0.00477,0.00613,0.00573,non-corporate,0.00477,0.00613,0.00573,0.00477,0.00613,0.00573,-0.05102,-0.06315,-0.05969 +137,0.00000,Aircraft,0.00000,ET30,0.00000,0.00637,0.00879,0.00806,Equipment,0.03651,0.04009,0.03913,0.03651,0.04009,0.03913,Transportation Equipment,0.00159,0.00220,0.00202,non-corporate,0.00159,0.00220,0.00202,0.00159,0.00220,0.00202,-0.05102,-0.06315,-0.05969 +138,0.00000,Ships and boats,0.00000,ET40,0.00000,0.00942,0.01309,0.01199,Equipment,0.05299,0.05855,0.05708,0.05299,0.05855,0.05708,Transportation Equipment,0.00236,0.00328,0.00300,non-corporate,0.00236,0.00328,0.00300,0.00236,0.00328,0.00300,-0.09430,-0.11453,-0.10883 +139,0.00000,Railroad equipment,0.00000,ET50,0.00000,0.00676,0.00953,0.00869,Equipment,0.03865,0.04328,0.04204,0.03865,0.04328,0.04204,Transportation Equipment,0.00169,0.00238,0.00217,non-corporate,0.00169,0.00238,0.00217,0.00169,0.00238,0.00217,-0.06918,-0.08496,-0.08048 +140,0.00000,Theatrical movies,0.00000,AE10,0.00000,0.02080,0.02743,0.02548,Intellectual Property,0.10934,0.11528,0.11386,0.10934,0.11528,0.11386,Intellectual Property,0.00521,0.00687,0.00638,non-corporate,0.00521,0.00687,0.00638,0.00521,0.00687,0.00638,-0.15763,-0.18741,-0.17918 +141,0.00000,Long-lived television programs,0.00000,AE20,0.00000,0.02937,0.03743,0.03508,Intellectual Property,0.14713,0.15093,0.15021,0.14713,0.15093,0.15021,Intellectual Property,0.00735,0.00937,0.00878,non-corporate,0.00735,0.00937,0.00878,0.00735,0.00937,0.00878,-0.14166,-0.16878,-0.16127 +142,0.00000,Books,0.00000,AE30,0.00000,0.01926,0.02647,0.02438,Intellectual Property,0.10214,0.11169,0.10950,0.10214,0.11169,0.10950,Intellectual Property,0.00482,0.00663,0.00610,non-corporate,0.00482,0.00663,0.00610,0.00482,0.00663,0.00610,-0.12030,-0.15170,-0.14314 +143,0.00000,Music,0.00000,AE40,0.00000,0.01926,0.02647,0.02438,Intellectual Property,0.10214,0.11169,0.10950,0.10214,0.11169,0.10950,Intellectual Property,0.00482,0.00663,0.00610,non-corporate,0.00482,0.00663,0.00610,0.00482,0.00663,0.00610,-0.06278,-0.08242,-0.07691 +144,0.00000,Other entertainment originals,0.00000,AE50,0.00000,0.01926,0.02647,0.02438,Intellectual Property,0.10214,0.11169,0.10950,0.10214,0.11169,0.10950,Intellectual Property,0.00482,0.00663,0.00610,non-corporate,0.00482,0.00663,0.00610,0.00482,0.00663,0.00610,-0.13010,-0.16295,-0.15404 145,0.00000,Own account software,0.00000,ENS3,0.00000,0.00000,0.00000,0.00000,Intellectual Property,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000,Intellectual Property,0.00000,0.00000,0.00000,non-corporate,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000 146,0.00000,Pharmaceutical and medicine manufacturing,0.00000,RD11,0.00000,0.00000,0.00000,0.00000,Intellectual Property,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000,Intellectual Property,0.00000,0.00000,0.00000,non-corporate,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000 147,0.00000,"Chemical manufacturing, ex. pharma and med",0.00000,RD12,0.00000,0.00000,0.00000,0.00000,Intellectual Property,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000,Intellectual Property,0.00000,0.00000,0.00000,non-corporate,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000 @@ -154,21 +154,21 @@ 152,0.00000,"Other computer and electronic manufacturing, n.e.c.",0.00000,RD25,0.00000,0.00000,0.00000,0.00000,Intellectual Property,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000,Intellectual Property,0.00000,0.00000,0.00000,non-corporate,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000 153,0.00000,Motor vehicles and parts manufacturing,0.00000,RD31,0.00000,0.00000,0.00000,0.00000,Intellectual Property,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000,Intellectual Property,0.00000,0.00000,0.00000,non-corporate,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000 154,0.00000,Aerospace products and parts manufacturing,0.00000,RD32,0.00000,0.00000,0.00000,0.00000,Intellectual Property,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000,Intellectual Property,0.00000,0.00000,0.00000,non-corporate,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000 -155,0.00000,Software publishers,0.00000,RD40,0.00000,0.01006,0.01326,0.01231,Intellectual Property,0.05664,0.05933,0.05866,0.05664,0.05933,0.05866,Intellectual Property,0.00252,0.00332,0.00309,non-corporate,0.00252,0.00332,0.00309,0.00252,0.00332,0.00309,-0.03858,-0.04816,-0.04541 +155,0.00000,Software publishers,0.00000,RD40,0.00000,0.01003,0.01319,0.01225,Intellectual Property,0.05618,0.05897,0.05828,0.05618,0.05897,0.05828,Intellectual Property,0.00251,0.00330,0.00307,non-corporate,0.00251,0.00330,0.00307,0.00251,0.00330,0.00307,-0.03863,-0.04816,-0.04542 156,0.00000,Financial and real estate services,0.00000,RD50,0.00000,0.00000,0.00000,0.00000,Intellectual Property,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000,Intellectual Property,0.00000,0.00000,0.00000,non-corporate,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000 -157,0.00000,Computer systems design and related services,0.00000,RD60,0.00000,0.01552,0.02007,0.01873,Intellectual Property,0.08452,0.08714,0.08655,0.08452,0.08714,0.08655,Intellectual Property,0.00389,0.00503,0.00470,non-corporate,0.00389,0.00503,0.00470,0.00389,0.00503,0.00470,-0.03858,-0.04816,-0.04541 +157,0.00000,Computer systems design and related services,0.00000,RD60,0.00000,0.01546,0.01997,0.01864,Intellectual Property,0.08383,0.08663,0.08600,0.08383,0.08663,0.08600,Intellectual Property,0.00387,0.00500,0.00467,non-corporate,0.00387,0.00500,0.00467,0.00387,0.00500,0.00467,-0.03863,-0.04816,-0.04542 158,0.00000,Scientific research and development services,0.00000,RD70,0.00000,0.00000,0.00000,0.00000,Intellectual Property,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000,Intellectual Property,0.00000,0.00000,0.00000,non-corporate,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000 159,0.00000,"All other nonmanufacturing, n.e.c.",0.00000,RD80,0.00000,0.00000,0.00000,0.00000,Intellectual Property,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000,Intellectual Property,0.00000,0.00000,0.00000,non-corporate,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000 -160,0.00000,Private universities and colleges,0.00000,RD91,0.00000,0.00772,0.01035,0.00956,Intellectual Property,0.04412,0.04689,0.04617,0.04412,0.04689,0.04617,Intellectual Property,0.00194,0.00259,0.00240,non-corporate,0.00194,0.00259,0.00240,0.00194,0.00259,0.00240,-0.03858,-0.04816,-0.04541 -161,0.00000,Other nonprofit institutions,0.00000,RD92,0.00000,0.00772,0.01035,0.00956,Intellectual Property,0.04412,0.04689,0.04617,0.04412,0.04689,0.04617,Intellectual Property,0.00194,0.00259,0.00240,non-corporate,0.00194,0.00259,0.00240,0.00194,0.00259,0.00240,-0.03858,-0.04816,-0.04541 +160,0.00000,Private universities and colleges,0.00000,RD91,0.00000,0.00770,0.01029,0.00952,Intellectual Property,0.04375,0.04660,0.04587,0.04375,0.04660,0.04587,Intellectual Property,0.00193,0.00258,0.00238,non-corporate,0.00193,0.00258,0.00238,0.00193,0.00258,0.00238,-0.03863,-0.04816,-0.04542 +161,0.00000,Other nonprofit institutions,0.00000,RD92,0.00000,0.00770,0.01029,0.00952,Intellectual Property,0.04375,0.04660,0.04587,0.04375,0.04660,0.04587,Intellectual Property,0.00193,0.00258,0.00238,non-corporate,0.00193,0.00258,0.00238,0.00193,0.00258,0.00238,-0.03863,-0.04816,-0.04542 162,0.00000,Other manufacturing,0.00000,RDOM,0.00000,0.00000,0.00000,0.00000,Intellectual Property,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000,Intellectual Property,0.00000,0.00000,0.00000,non-corporate,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000 163,0.00000,Inventories,0.00000,INV,0.00000,0.00000,0.00000,0.00000,Inventories,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000,Inventories,0.00000,0.00000,0.00000,non-corporate,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000 164,0.00000,Land,0.00000,LAND,0.00000,0.00000,0.00000,0.00000,Land,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000,Land,0.00000,0.00000,0.00000,non-corporate,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000 -165,0.00000,Petroleum and natural gas,0.00000,SM01,0.00000,0.00583,0.00815,0.00745,Structures,0.03372,0.03732,0.03635,0.03372,0.03732,0.03635,Mining and Drilling Structures,0.00146,0.00204,0.00187,non-corporate,0.00146,0.00204,0.00187,0.00146,0.00204,0.00187,-0.05096,-0.06316,-0.05967 -166,0.00000,Mining,0.00000,SM02,0.00000,0.00581,0.00838,0.00760,Structures,0.03359,0.03834,0.03705,0.03359,0.03834,0.03705,Mining and Drilling Structures,0.00146,0.00210,0.00190,non-corporate,0.00146,0.00210,0.00190,0.00146,0.00210,0.00190,-0.06910,-0.08496,-0.08046 -167,0.00000,Communication,0.00000,SU20,0.00000,0.00922,0.01354,0.01223,Structures,0.05217,0.06051,0.05829,0.05217,0.06051,0.05829,Mining and Drilling Structures,0.00231,0.00339,0.00307,non-corporate,0.00231,0.00339,0.00307,0.00231,0.00339,0.00307,-0.14733,-0.17554,-0.16773 -168,0.00000,Gas,0.00000,SU40,0.00000,0.00583,0.00815,0.00745,Structures,0.03372,0.03732,0.03635,0.03372,0.03732,0.03635,Mining and Drilling Structures,0.00146,0.00204,0.00187,non-corporate,0.00146,0.00204,0.00187,0.00146,0.00204,0.00187,-0.05096,-0.06316,-0.05967 -169,0.00000,Petroleum pipelines,0.00000,SU50,0.00000,0.00319,0.00487,0.00435,Structures,0.01874,0.02265,0.02157,0.01874,0.02265,0.02157,Mining and Drilling Structures,0.00080,0.00122,0.00109,non-corporate,0.00080,0.00122,0.00109,0.00080,0.00122,0.00109,-0.05096,-0.06316,-0.05967 +165,0.00000,Petroleum and natural gas,0.00000,SM01,0.00000,0.00581,0.00811,0.00741,Structures,0.03345,0.03708,0.03611,0.03345,0.03708,0.03611,Mining and Drilling Structures,0.00146,0.00203,0.00186,non-corporate,0.00146,0.00203,0.00186,0.00146,0.00203,0.00186,-0.05102,-0.06315,-0.05969 +166,0.00000,Mining,0.00000,SM02,0.00000,0.00579,0.00834,0.00756,Structures,0.03332,0.03810,0.03680,0.03332,0.03810,0.03680,Mining and Drilling Structures,0.00145,0.00209,0.00189,non-corporate,0.00145,0.00209,0.00189,0.00145,0.00209,0.00189,-0.06918,-0.08496,-0.08048 +167,0.00000,Communication,0.00000,SU20,0.00000,0.00919,0.01347,0.01218,Structures,0.05177,0.06014,0.05792,0.05177,0.06014,0.05792,Mining and Drilling Structures,0.00230,0.00337,0.00305,non-corporate,0.00230,0.00337,0.00305,0.00230,0.00337,0.00305,-0.14747,-0.17553,-0.16776 +168,0.00000,Gas,0.00000,SU40,0.00000,0.00581,0.00811,0.00741,Structures,0.03345,0.03708,0.03611,0.03345,0.03708,0.03611,Mining and Drilling Structures,0.00146,0.00203,0.00186,non-corporate,0.00146,0.00203,0.00186,0.00146,0.00203,0.00186,-0.05102,-0.06315,-0.05969 +169,0.00000,Petroleum pipelines,0.00000,SU50,0.00000,0.00318,0.00485,0.00433,Structures,0.01860,0.02251,0.02142,0.01860,0.02251,0.02142,Mining and Drilling Structures,0.00080,0.00121,0.00108,non-corporate,0.00080,0.00121,0.00108,0.00080,0.00121,0.00108,-0.05102,-0.06315,-0.05969 170,0.00000,Religious,0.00000,SB10,0.00000,0.00000,0.00000,0.00000,Structures,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000,Nonresidential Buildings,0.00000,0.00000,0.00000,non-corporate,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000 171,0.00000,Educational and vocational,0.00000,SB20,0.00000,0.00000,0.00000,0.00000,Structures,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000,Nonresidential Buildings,0.00000,0.00000,0.00000,non-corporate,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000 172,0.00000,Hospitals,0.00000,SB31,0.00000,0.00000,0.00000,0.00000,Structures,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000,Nonresidential Buildings,0.00000,0.00000,0.00000,non-corporate,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000 @@ -184,46 +184,46 @@ 182,0.00000,Public safety,0.00000,SO03,0.00000,0.00000,0.00000,0.00000,Structures,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000,Nonresidential Buildings,0.00000,0.00000,0.00000,non-corporate,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000 183,0.00000,Office,0.00000,SOO1,0.00000,0.00000,0.00000,0.00000,Structures,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000,Nonresidential Buildings,0.00000,0.00000,0.00000,non-corporate,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000 184,0.00000,Medical buildings,0.00000,SOO2,0.00000,0.00000,0.00000,0.00000,Structures,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000,Nonresidential Buildings,0.00000,0.00000,0.00000,non-corporate,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000 -185,0.00000,Amusement and recreation,0.00000,SB42,0.00000,0.00476,0.00710,0.00638,Structures,0.02772,0.03264,0.03129,0.02772,0.03264,0.03129,Other Structures,0.00119,0.00178,0.00160,non-corporate,0.00119,0.00178,0.00160,0.00119,0.00178,0.00160,-0.06910,-0.08496,-0.08046 +185,0.00000,Amusement and recreation,0.00000,SB42,0.00000,0.00475,0.00706,0.00635,Structures,0.02750,0.03244,0.03109,0.02750,0.03244,0.03109,Other Structures,0.00119,0.00177,0.00159,non-corporate,0.00119,0.00177,0.00159,0.00119,0.00177,0.00159,-0.06918,-0.08496,-0.08048 186,0.00000,Local transit structures,0.00000,SB44,0.00000,0.00000,0.00000,0.00000,Structures,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000,Other Structures,0.00000,0.00000,0.00000,non-corporate,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000 -187,0.00000,Other land transportation,0.00000,SB46,0.00000,0.00319,0.00487,0.00435,Structures,0.01874,0.02265,0.02157,0.01874,0.02265,0.02157,Other Structures,0.00080,0.00122,0.00109,non-corporate,0.00080,0.00122,0.00109,0.00080,0.00122,0.00109,-0.05096,-0.06316,-0.05967 -188,0.00000,Farm,0.00000,SN00,0.00000,0.01143,0.01652,0.01499,Structures,0.06383,0.07283,0.07049,0.06383,0.07283,0.07049,Other Structures,0.00287,0.00414,0.00376,non-corporate,0.00287,0.00414,0.00376,0.00287,0.00414,0.00376,-0.18212,-0.21353,-0.20495 -189,0.00000,Water supply,0.00000,SO01,0.00000,0.01118,0.01622,0.01470,Structures,0.06249,0.07160,0.06922,0.06249,0.07160,0.06922,Other Structures,0.00280,0.00406,0.00368,non-corporate,0.00280,0.00406,0.00368,0.00280,0.00406,0.00368,-0.18212,-0.21353,-0.20495 -190,0.00000,Sewage and waste disposal,0.00000,SO02,0.00000,0.01118,0.01622,0.01470,Structures,0.06249,0.07160,0.06922,0.06249,0.07160,0.06922,Other Structures,0.00280,0.00406,0.00368,non-corporate,0.00280,0.00406,0.00368,0.00280,0.00406,0.00368,-0.18212,-0.21353,-0.20495 -191,0.00000,Highway and conservation and development,0.00000,SO04,0.00000,0.00904,0.01333,0.01203,Structures,0.05122,0.05962,0.05738,0.05122,0.05962,0.05738,Other Structures,0.00227,0.00334,0.00301,non-corporate,0.00227,0.00334,0.00301,0.00227,0.00334,0.00301,-0.14733,-0.17554,-0.16773 -192,0.00000,Mobile structures,0.00000,SOMO,0.00000,0.00655,0.00929,0.00846,Structures,0.03769,0.04232,0.04107,0.03769,0.04232,0.04107,Other Structures,0.00164,0.00233,0.00212,non-corporate,0.00164,0.00233,0.00212,0.00164,0.00233,0.00212,-0.06910,-0.08496,-0.08046 -193,0.00000,Other railroad,0.00000,SU11,0.00000,0.01027,0.01516,0.01368,Structures,0.05777,0.06724,0.06476,0.05777,0.06724,0.06476,Other Structures,0.00258,0.00380,0.00343,non-corporate,0.00258,0.00380,0.00343,0.00258,0.00380,0.00343,-0.18212,-0.21353,-0.20495 -194,0.00000,Track replacement,0.00000,SU12,0.00000,0.00441,0.00666,0.00597,Structures,0.02571,0.03069,0.02932,0.02571,0.03069,0.02932,Other Structures,0.00110,0.00167,0.00149,non-corporate,0.00110,0.00167,0.00149,0.00110,0.00167,0.00149,-0.06910,-0.08496,-0.08046 -195,0.00000,Electric,0.00000,SU30,0.00000,0.00883,0.01308,0.01179,Structures,0.05010,0.05857,0.05632,0.05010,0.05857,0.05632,Other Structures,0.00221,0.00328,0.00296,non-corporate,0.00221,0.00328,0.00296,0.00221,0.00328,0.00296,-0.14733,-0.17554,-0.16773 -196,0.00000,Wind and solar,0.00000,SU60,0.00000,0.00353,0.00529,0.00475,Structures,0.02070,0.02456,0.02349,0.02070,0.02456,0.02349,Other Structures,0.00088,0.00133,0.00119,non-corporate,0.00088,0.00133,0.00119,0.00088,0.00133,0.00119,-0.05096,-0.06316,-0.05967 +187,0.00000,Other land transportation,0.00000,SB46,0.00000,0.00318,0.00485,0.00433,Structures,0.01860,0.02251,0.02142,0.01860,0.02251,0.02142,Other Structures,0.00080,0.00121,0.00108,non-corporate,0.00080,0.00121,0.00108,0.00080,0.00121,0.00108,-0.05102,-0.06315,-0.05969 +188,0.00000,Farm,0.00000,SN00,0.00000,0.01140,0.01643,0.01492,Structures,0.06334,0.07240,0.07004,0.06334,0.07240,0.07004,Other Structures,0.00285,0.00411,0.00373,non-corporate,0.00285,0.00411,0.00373,0.00285,0.00411,0.00373,-0.18229,-0.21353,-0.20499 +189,0.00000,Water supply,0.00000,SO01,0.00000,0.01114,0.01613,0.01463,Structures,0.06201,0.07117,0.06878,0.06201,0.07117,0.06878,Other Structures,0.00279,0.00404,0.00366,non-corporate,0.00279,0.00404,0.00366,0.00279,0.00404,0.00366,-0.18229,-0.21353,-0.20499 +190,0.00000,Sewage and waste disposal,0.00000,SO02,0.00000,0.01114,0.01613,0.01463,Structures,0.06201,0.07117,0.06878,0.06201,0.07117,0.06878,Other Structures,0.00279,0.00404,0.00366,non-corporate,0.00279,0.00404,0.00366,0.00279,0.00404,0.00366,-0.18229,-0.21353,-0.20499 +191,0.00000,Highway and conservation and development,0.00000,SO04,0.00000,0.00901,0.01326,0.01197,Structures,0.05083,0.05926,0.05702,0.05083,0.05926,0.05702,Other Structures,0.00226,0.00332,0.00300,non-corporate,0.00226,0.00332,0.00300,0.00226,0.00332,0.00300,-0.14747,-0.17553,-0.16776 +192,0.00000,Mobile structures,0.00000,SOMO,0.00000,0.00653,0.00924,0.00842,Structures,0.03739,0.04206,0.04080,0.03739,0.04206,0.04080,Other Structures,0.00163,0.00231,0.00211,non-corporate,0.00163,0.00231,0.00211,0.00163,0.00231,0.00211,-0.06918,-0.08496,-0.08048 +193,0.00000,Other railroad,0.00000,SU11,0.00000,0.01024,0.01508,0.01362,Structures,0.05733,0.06684,0.06435,0.05733,0.06684,0.06435,Other Structures,0.00256,0.00377,0.00341,non-corporate,0.00256,0.00377,0.00341,0.00256,0.00377,0.00341,-0.18229,-0.21353,-0.20499 +194,0.00000,Track replacement,0.00000,SU12,0.00000,0.00440,0.00662,0.00594,Structures,0.02551,0.03050,0.02913,0.02551,0.03050,0.02913,Other Structures,0.00110,0.00166,0.00149,non-corporate,0.00110,0.00166,0.00149,0.00110,0.00166,0.00149,-0.06918,-0.08496,-0.08048 +195,0.00000,Electric,0.00000,SU30,0.00000,0.00881,0.01301,0.01174,Structures,0.04972,0.05822,0.05596,0.04972,0.05822,0.05596,Other Structures,0.00220,0.00326,0.00294,non-corporate,0.00220,0.00326,0.00294,0.00220,0.00326,0.00294,-0.14747,-0.17553,-0.16776 +196,0.00000,Wind and solar,0.00000,SU60,0.00000,0.00352,0.00527,0.00473,Structures,0.02053,0.02440,0.02333,0.02053,0.02440,0.02333,Other Structures,0.00088,0.00132,0.00118,non-corporate,0.00088,0.00132,0.00118,0.00088,0.00132,0.00118,-0.05102,-0.06315,-0.05969 197,0.00000,Residential,0.00000,RES,0.00000,0.00000,0.00000,0.00000,Structures,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000,Residential Buildings,0.00000,0.00000,0.00000,non-corporate,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000 -198,0.00000,Computers and Software,0.00000,,0.00000,0.40796,0.45747,0.44156,Equipment,0.97326,0.65512,0.72782,0.74441,0.59526,0.63027,Computers and Software,0.09057,0.11017,0.10388,corporate,0.09057,0.11017,0.10388,0.09057,0.11017,0.10388,-0.03510,-0.05675,-0.04999 -199,0.00000,Industrial Machinery,0.00000,,0.00000,0.18446,0.22955,0.21496,Equipment,0.50497,0.40844,0.43411,0.38624,0.37112,0.37593,Industrial Machinery,0.02180,0.04005,0.03416,corporate,0.02180,0.04005,0.03416,0.02180,0.04005,0.03416,-0.05746,-0.09055,-0.08040 -200,0.00000,Instruments and Communications Equipment,0.00000,,0.00000,0.19888,0.24453,0.22978,Equipment,0.56558,0.43500,0.46718,0.43259,0.39526,0.40457,Instruments and Communications Equipment,0.02624,0.04466,0.03872,corporate,0.02624,0.04466,0.03872,0.02624,0.04466,0.03872,-0.05688,-0.08967,-0.07961 -201,0.00000,Intellectual Property,0.00000,,0.00000,0.23082,0.27245,0.25911,Intellectual Property,0.67388,0.47863,0.52370,0.51543,0.43490,0.45351,Intellectual Property,0.03607,0.05325,0.04774,corporate,0.03607,0.05325,0.04774,0.03607,0.05325,0.04774,-0.02948,-0.04498,-0.04048 -204,0.00000,Mining and Drilling Structures,0.00000,,0.00000,0.14776,0.19129,0.17718,Structures,0.30047,0.32772,0.33134,0.22982,0.29778,0.28693,Mining and Drilling Structures,0.01051,0.02827,0.02254,corporate,0.01051,0.02827,0.02254,0.01051,0.02827,0.02254,-0.06489,-0.09968,-0.08919 -205,0.00000,Nonresidential Buildings,0.00000,,0.00000,0.11125,0.15792,0.14281,Structures,0.03096,0.17932,0.16125,0.02368,0.16294,0.13964,Nonresidential Buildings,0.00138,0.02122,0.01481,corporate,0.00138,0.02122,0.01481,0.00138,0.02122,0.01481,0.05793,0.00000,0.01304 -206,0.00000,Office and Residential Equipment,0.00000,,0.00000,0.19467,0.24012,0.22543,Equipment,0.54880,0.42744,0.45783,0.41976,0.38838,0.39647,Office and Residential Equipment,0.02495,0.04330,0.03738,corporate,0.02495,0.04330,0.03738,0.02495,0.04330,0.03738,-0.05662,-0.08929,-0.07927 -207,0.00000,Other Equipment,0.00000,,0.00000,0.21871,0.26537,0.25031,Equipment,0.63640,0.46822,0.50784,0.48676,0.42544,0.43978,Other Equipment,0.03234,0.05107,0.04503,corporate,0.03234,0.05107,0.04503,0.03234,0.05107,0.04503,-0.05746,-0.09055,-0.08040 -208,0.00000,Other Industrial Equipment,0.00000,,0.00000,0.18006,0.22663,0.21155,Equipment,0.48467,0.40297,0.42599,0.37071,0.36615,0.36890,Other Industrial Equipment,0.02045,0.03915,0.03311,corporate,0.02045,0.03915,0.03311,0.02045,0.03915,0.03311,-0.08265,-0.12538,-0.11263 -209,0.00000,Other Structures,0.00000,,0.00000,0.12430,0.16997,0.15510,Structures,0.11072,0.27195,0.25443,0.08468,0.24710,0.22033,Other Structures,0.00330,0.02173,0.01575,corporate,0.00330,0.02173,0.01575,0.00330,0.02173,0.01575,-0.11214,-0.16600,-0.15029 +198,0.00000,Computers and Software,0.00000,,0.00000,0.40796,0.45747,0.44156,Equipment,0.97326,0.65512,0.72782,0.74438,0.59524,0.63025,Computers and Software,0.09057,0.11017,0.10388,corporate,0.09057,0.11017,0.10388,0.09057,0.11017,0.10388,-0.03510,-0.05675,-0.04999 +199,0.00000,Industrial Machinery,0.00000,,0.00000,0.18446,0.22955,0.21496,Equipment,0.50497,0.40844,0.43411,0.38622,0.37110,0.37592,Industrial Machinery,0.02180,0.04005,0.03416,corporate,0.02180,0.04005,0.03416,0.02180,0.04005,0.03416,-0.05746,-0.09055,-0.08040 +200,0.00000,Instruments and Communications Equipment,0.00000,,0.00000,0.19888,0.24453,0.22978,Equipment,0.56558,0.43500,0.46718,0.43257,0.39524,0.40455,Instruments and Communications Equipment,0.02624,0.04466,0.03872,corporate,0.02624,0.04466,0.03872,0.02624,0.04466,0.03872,-0.05688,-0.08967,-0.07961 +201,0.00000,Intellectual Property,0.00000,,0.00000,0.23082,0.27245,0.25911,Intellectual Property,0.67388,0.47863,0.52370,0.51541,0.43488,0.45349,Intellectual Property,0.03607,0.05325,0.04774,corporate,0.03607,0.05325,0.04774,0.03607,0.05325,0.04774,-0.02948,-0.04498,-0.04048 +204,0.00000,Mining and Drilling Structures,0.00000,,0.00000,0.14776,0.19129,0.17718,Structures,0.30047,0.32772,0.33134,0.22981,0.29777,0.28692,Mining and Drilling Structures,0.01051,0.02827,0.02254,corporate,0.01051,0.02827,0.02254,0.01051,0.02827,0.02254,-0.06489,-0.09968,-0.08919 +205,0.00000,Nonresidential Buildings,0.00000,,0.00000,0.11125,0.15792,0.14281,Structures,0.03096,0.17932,0.16125,0.02368,0.16293,0.13963,Nonresidential Buildings,0.00138,0.02122,0.01481,corporate,0.00138,0.02122,0.01481,0.00138,0.02122,0.01481,0.05793,0.00000,0.01304 +206,0.00000,Office and Residential Equipment,0.00000,,0.00000,0.19467,0.24012,0.22543,Equipment,0.54880,0.42744,0.45783,0.41974,0.38837,0.39645,Office and Residential Equipment,0.02495,0.04330,0.03738,corporate,0.02495,0.04330,0.03738,0.02495,0.04330,0.03738,-0.05662,-0.08929,-0.07927 +207,0.00000,Other Equipment,0.00000,,0.00000,0.21871,0.26537,0.25031,Equipment,0.63640,0.46822,0.50784,0.48674,0.42542,0.43976,Other Equipment,0.03234,0.05107,0.04503,corporate,0.03234,0.05107,0.04503,0.03234,0.05107,0.04503,-0.05746,-0.09055,-0.08040 +208,0.00000,Other Industrial Equipment,0.00000,,0.00000,0.18006,0.22663,0.21155,Equipment,0.48467,0.40297,0.42599,0.37069,0.36614,0.36888,Other Industrial Equipment,0.02045,0.03915,0.03311,corporate,0.02045,0.03915,0.03311,0.02045,0.03915,0.03311,-0.08265,-0.12538,-0.11263 +209,0.00000,Other Structures,0.00000,,0.00000,0.12430,0.16997,0.15510,Structures,0.11072,0.27195,0.25443,0.08468,0.24709,0.22032,Other Structures,0.00330,0.02173,0.01575,corporate,0.00330,0.02173,0.01575,0.00330,0.02173,0.01575,-0.11214,-0.16600,-0.15029 210,0.00000,Residential Buildings,0.00000,,0.00000,0.10641,0.15142,0.13670,Structures,-0.01952,0.17585,0.15163,-0.01493,0.15978,0.13131,Residential Buildings,-0.00073,0.01844,0.01220,corporate,-0.00073,0.01844,0.01220,-0.00073,0.01844,0.01220,0.05632,0.00000,0.01378 -211,0.00000,Transportation Equipment,0.00000,,0.00000,0.20908,0.25431,0.23970,Equipment,0.60362,0.45110,0.48753,0.46169,0.40988,0.42219,Transportation Equipment,0.02938,0.04767,0.04177,corporate,0.02938,0.04767,0.04177,0.02938,0.04767,0.04177,-0.05436,-0.08508,-0.07569 -212,0.00000,Computers and Software,0.00000,,0.00000,0.02012,0.02582,0.02415,Equipment,0.10669,0.10935,0.10880,0.10669,0.10935,0.10880,Computers and Software,0.00504,0.00647,0.00605,non-corporate,0.00504,0.00647,0.00605,0.00504,0.00647,0.00605,-0.04328,-0.05386,-0.05083 -213,0.00000,Industrial Machinery,0.00000,,0.00000,0.01006,0.01360,0.01254,Equipment,0.05662,0.06076,0.05969,0.05662,0.06076,0.05969,Industrial Machinery,0.00252,0.00341,0.00314,non-corporate,0.00252,0.00341,0.00314,0.00252,0.00341,0.00314,-0.06910,-0.08496,-0.08046 -214,0.00000,Instruments and Communications Equipment,0.00000,,0.00000,0.01166,0.01557,0.01441,Equipment,0.06501,0.06893,0.06793,0.06501,0.06893,0.06793,Instruments and Communications Equipment,0.00292,0.00390,0.00361,non-corporate,0.00292,0.00390,0.00361,0.00292,0.00390,0.00361,-0.06845,-0.08418,-0.07971 -215,0.00000,Intellectual Property,0.00000,,0.00000,0.00507,0.00676,0.00626,Intellectual Property,0.02945,0.03112,0.03073,0.02945,0.03112,0.03073,Intellectual Property,0.00127,0.00169,0.00157,non-corporate,0.00127,0.00169,0.00157,0.00127,0.00169,0.00157,-0.02826,-0.03471,-0.03292 -218,0.00000,Mining and Drilling Structures,0.00000,,0.00000,0.00622,0.00884,0.00805,Structures,0.03587,0.04034,0.03914,0.03587,0.04034,0.03914,Mining and Drilling Structures,0.00156,0.00222,0.00202,non-corporate,0.00156,0.00222,0.00202,0.00156,0.00222,0.00202,-0.06758,-0.08257,-0.07833 +211,0.00000,Transportation Equipment,0.00000,,0.00000,0.20908,0.25431,0.23970,Equipment,0.60362,0.45110,0.48753,0.46167,0.40987,0.42217,Transportation Equipment,0.02938,0.04767,0.04177,corporate,0.02938,0.04767,0.04177,0.02938,0.04767,0.04177,-0.05436,-0.08508,-0.07569 +212,0.00000,Computers and Software,0.00000,,0.00000,0.02005,0.02568,0.02404,Equipment,0.10583,0.10872,0.10812,0.10583,0.10872,0.10812,Computers and Software,0.00502,0.00643,0.00602,non-corporate,0.00502,0.00643,0.00602,0.00502,0.00643,0.00602,-0.04333,-0.05385,-0.05084 +213,0.00000,Industrial Machinery,0.00000,,0.00000,0.01002,0.01353,0.01248,Equipment,0.05616,0.06040,0.05930,0.05616,0.06040,0.05930,Industrial Machinery,0.00251,0.00339,0.00312,non-corporate,0.00251,0.00339,0.00312,0.00251,0.00339,0.00312,-0.06918,-0.08496,-0.08048 +214,0.00000,Instruments and Communications Equipment,0.00000,,0.00000,0.01162,0.01549,0.01434,Equipment,0.06448,0.06852,0.06750,0.06448,0.06852,0.06750,Instruments and Communications Equipment,0.00291,0.00388,0.00359,non-corporate,0.00291,0.00388,0.00359,0.00291,0.00388,0.00359,-0.06853,-0.08418,-0.07973 +215,0.00000,Intellectual Property,0.00000,,0.00000,0.00505,0.00672,0.00623,Intellectual Property,0.02920,0.03093,0.03053,0.02920,0.03093,0.03053,Intellectual Property,0.00126,0.00168,0.00156,non-corporate,0.00126,0.00168,0.00156,0.00126,0.00168,0.00156,-0.02829,-0.03471,-0.03293 +218,0.00000,Mining and Drilling Structures,0.00000,,0.00000,0.00620,0.00879,0.00801,Structures,0.03558,0.04009,0.03888,0.03558,0.04009,0.03888,Mining and Drilling Structures,0.00155,0.00220,0.00200,non-corporate,0.00155,0.00220,0.00200,0.00155,0.00220,0.00200,-0.06765,-0.08256,-0.07835 219,0.00000,Nonresidential Buildings,0.00000,,0.00000,0.00000,0.00000,0.00000,Structures,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000,Nonresidential Buildings,0.00000,0.00000,0.00000,non-corporate,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000 -220,0.00000,Office and Residential Equipment,0.00000,,0.00000,0.01074,0.01442,0.01333,Equipment,0.06022,0.06419,0.06317,0.06022,0.06419,0.06317,Office and Residential Equipment,0.00269,0.00361,0.00334,non-corporate,0.00269,0.00361,0.00334,0.00269,0.00361,0.00334,-0.06730,-0.08279,-0.07839 -221,0.00000,Other Equipment,0.00000,,0.00000,0.01314,0.01740,0.01614,Equipment,0.07262,0.07642,0.07548,0.07262,0.07642,0.07548,Other Equipment,0.00329,0.00436,0.00404,non-corporate,0.00329,0.00436,0.00404,0.00329,0.00436,0.00404,-0.06910,-0.08496,-0.08046 -222,0.00000,Other Industrial Equipment,0.00000,,0.00000,0.01102,0.01482,0.01369,Equipment,0.06169,0.06585,0.06478,0.06169,0.06585,0.06478,Other Industrial Equipment,0.00276,0.00371,0.00343,non-corporate,0.00276,0.00371,0.00343,0.00276,0.00371,0.00343,-0.07301,-0.08925,-0.08465 -223,0.00000,Other Structures,0.00000,,0.00000,0.00833,0.01219,0.01102,Structures,0.04730,0.05466,0.05271,0.04730,0.05466,0.05271,Other Structures,0.00209,0.00305,0.00276,non-corporate,0.00209,0.00305,0.00276,0.00209,0.00305,0.00276,-0.13259,-0.15734,-0.15050 +220,0.00000,Office and Residential Equipment,0.00000,,0.00000,0.01070,0.01435,0.01326,Equipment,0.05974,0.06380,0.06276,0.05974,0.06380,0.06276,Office and Residential Equipment,0.00268,0.00359,0.00332,non-corporate,0.00268,0.00359,0.00332,0.00268,0.00359,0.00332,-0.06738,-0.08279,-0.07841 +221,0.00000,Other Equipment,0.00000,,0.00000,0.01310,0.01731,0.01606,Equipment,0.07203,0.07597,0.07499,0.07203,0.07597,0.07499,Other Equipment,0.00328,0.00433,0.00402,non-corporate,0.00328,0.00433,0.00402,0.00328,0.00433,0.00402,-0.06918,-0.08496,-0.08048 +222,0.00000,Other Industrial Equipment,0.00000,,0.00000,0.01098,0.01475,0.01362,Equipment,0.06119,0.06545,0.06436,0.06119,0.06545,0.06436,Other Industrial Equipment,0.00275,0.00369,0.00341,non-corporate,0.00275,0.00369,0.00341,0.00275,0.00369,0.00341,-0.07309,-0.08925,-0.08468 +223,0.00000,Other Structures,0.00000,,0.00000,0.00830,0.01212,0.01097,Structures,0.04693,0.05433,0.05237,0.04693,0.05433,0.05237,Other Structures,0.00208,0.00303,0.00274,non-corporate,0.00208,0.00303,0.00274,0.00208,0.00303,0.00274,-0.13272,-0.15734,-0.15053 224,0.00000,Residential Buildings,0.00000,,0.00000,0.00000,0.00000,0.00000,Structures,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000,Residential Buildings,0.00000,0.00000,0.00000,non-corporate,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000,0.00000 -225,0.00000,Transportation Equipment,0.00000,,0.00000,0.01051,0.01402,0.01297,Equipment,0.05899,0.06248,0.06159,0.05899,0.06248,0.06159,Transportation Equipment,0.00263,0.00351,0.00325,non-corporate,0.00263,0.00351,0.00325,0.00263,0.00351,0.00325,-0.05706,-0.07038,-0.06658 -226,0.00000,Equipment,0.00000,,0.00000,0.21380,0.25988,0.24499,Equipment,0.62002,0.45985,0.49783,0.47423,0.41784,0.43111,Equipment,0.03083,0.04938,0.04340,corporate,0.03083,0.04938,0.04340,0.03083,0.04938,0.04340,-0.06053,-0.09427,-0.08400 -230,0.00000,Structures,0.00000,,0.00000,0.12269,0.16832,0.15352,Structures,0.10137,0.22642,0.21289,0.07754,0.20573,0.18435,Structures,0.00393,0.02294,0.01679,corporate,0.00393,0.02294,0.01679,0.00393,0.02294,0.01679,-0.00764,-0.05902,-0.04602 -231,0.00000,Equipment,0.00000,,0.00000,0.01193,0.01586,0.01469,Equipment,0.06638,0.07015,0.06920,0.06638,0.07015,0.06920,Equipment,0.00299,0.00398,0.00368,non-corporate,0.00299,0.00398,0.00368,0.00299,0.00398,0.00368,-0.06515,-0.08010,-0.07586 -235,0.00000,Structures,0.00000,,0.00000,0.00140,0.00203,0.00184,Structures,0.00601,0.00688,0.00665,0.00601,0.00688,0.00665,Structures,0.00035,0.00051,0.00046,non-corporate,0.00035,0.00051,0.00046,0.00035,0.00051,0.00046,-0.02022,-0.02416,-0.02307 -236,0.00000,Overall,0.00000,,0.00000,0.14492,0.19076,0.17597,Overall,0.24417,0.27601,0.27773,0.18676,0.25080,0.24051,Overall,0.01071,0.02974,0.02361,corporate,0.01071,0.02974,0.02361,0.01071,0.02974,0.02361,-0.01942,-0.05089,-0.04249 -237,0.00000,Overall,0.00000,,0.00000,0.00166,0.00226,0.00208,Overall,0.00680,0.00734,0.00720,0.00680,0.00734,0.00720,Overall,0.00042,0.00057,0.00052,non-corporate,0.00042,0.00057,0.00052,0.00042,0.00057,0.00052,-0.01280,-0.01552,-0.01475 +225,0.00000,Transportation Equipment,0.00000,,0.00000,0.01047,0.01394,0.01291,Equipment,0.05851,0.06211,0.06119,0.05851,0.06211,0.06119,Transportation Equipment,0.00262,0.00349,0.00323,non-corporate,0.00262,0.00349,0.00323,0.00262,0.00349,0.00323,-0.05712,-0.07037,-0.06660 +226,0.00000,Equipment,0.00000,,0.00000,0.21380,0.25988,0.24499,Equipment,0.62002,0.45985,0.49783,0.47421,0.41782,0.43109,Equipment,0.03083,0.04938,0.04340,corporate,0.03083,0.04938,0.04340,0.03083,0.04938,0.04340,-0.06053,-0.09427,-0.08400 +230,0.00000,Structures,0.00000,,0.00000,0.12269,0.16832,0.15352,Structures,0.10137,0.22642,0.21289,0.07753,0.20572,0.18435,Structures,0.00393,0.02294,0.01679,corporate,0.00393,0.02294,0.01679,0.00393,0.02294,0.01679,-0.00764,-0.05902,-0.04602 +231,0.00000,Equipment,0.00000,,0.00000,0.01188,0.01578,0.01462,Equipment,0.06584,0.06973,0.06875,0.06584,0.06973,0.06875,Equipment,0.00297,0.00395,0.00366,non-corporate,0.00297,0.00395,0.00366,0.00297,0.00395,0.00366,-0.06523,-0.08010,-0.07588 +235,0.00000,Structures,0.00000,,0.00000,0.00140,0.00202,0.00183,Structures,0.00597,0.00685,0.00662,0.00597,0.00685,0.00662,Structures,0.00035,0.00051,0.00046,non-corporate,0.00035,0.00051,0.00046,0.00035,0.00051,0.00046,-0.02025,-0.02416,-0.02307 +236,0.00000,Overall,0.00000,,0.00000,0.14492,0.19076,0.17597,Overall,0.24417,0.27601,0.27773,0.18675,0.25078,0.24050,Overall,0.01071,0.02974,0.02361,corporate,0.01071,0.02974,0.02361,0.01071,0.02974,0.02361,-0.01942,-0.05089,-0.04249 +237,0.00000,Overall,0.00000,,0.00000,0.00165,0.00224,0.00207,Overall,0.00676,0.00731,0.00717,0.00676,0.00731,0.00717,Overall,0.00041,0.00056,0.00052,non-corporate,0.00041,0.00056,0.00052,0.00041,0.00056,0.00052,-0.01281,-0.01552,-0.01476 diff --git a/example_output/changed_byindustry_expected.csv b/example_output/changed_byindustry_expected.csv index 6ffd63c0..5eec1d17 100644 --- a/example_output/changed_byindustry_expected.csv +++ b/example_output/changed_byindustry_expected.csv @@ -1,155 +1,155 @@ ,Industry,Y,assets,bea_ind_code,delta,eatr_d,eatr_e,eatr_mix,major_industry,metr_d,metr_e,metr_mix,mettr_d,mettr_e,mettr_mix,rho_d,rho_e,rho_mix,tax_treat,tax_wedge_d,tax_wedge_e,tax_wedge_mix,ucc_d,ucc_e,ucc_mix,z_d,z_e,z_mix -0,Accommodation,0.00000,0.00000,7210,0.00000,0.10905,0.15618,0.14102,Accommodation and food services,0.01495,0.17696,0.15716,0.01143,0.16080,0.13610,0.00065,0.02059,0.01418,corporate,0.00065,0.02059,0.01418,0.00065,0.02059,0.01418,0.02374,-0.00497,0.00163 -1,Food services and drinking places,0.00000,0.00000,7220,0.00000,0.13499,0.18168,0.16662,Accommodation and food services,0.17800,0.24191,0.23790,0.13615,0.21981,0.20602,0.00810,0.02763,0.02134,corporate,0.00810,0.02763,0.02134,0.00810,0.02763,0.02134,0.00962,-0.02641,-0.01752 -2,Administrative and support services,0.00000,0.00000,5610,0.00000,0.20935,0.25501,0.24028,Administrative and waste management services,0.53306,0.39899,0.43118,0.40772,0.36254,0.37339,0.03022,0.04904,0.04298,corporate,0.03022,0.04904,0.04298,0.03022,0.04904,0.04298,-0.00967,-0.04188,-0.03336 -3,Waste management and remediation services,0.00000,0.00000,5620,0.00000,0.13941,0.18651,0.17126,Administrative and waste management services,0.22316,0.28620,0.28342,0.17069,0.26005,0.24543,0.00856,0.02775,0.02155,corporate,0.00856,0.02775,0.02155,0.00856,0.02775,0.02155,-0.07637,-0.12295,-0.11002 -4,Farms,0.00000,0.00000,110C,0.00000,0.12953,0.17669,0.16150,"Agriculture, forestry, fishing, and hunting",0.14862,0.24448,0.23574,0.11367,0.22215,0.20415,0.00607,0.02552,0.01927,corporate,0.00607,0.02552,0.01927,0.00607,0.02552,0.01927,-0.05515,-0.08069,-0.07328 -5,"Forestry, fishing, and related activities",0.00000,0.00000,113F,0.00000,0.13219,0.17891,0.16388,"Agriculture, forestry, fishing, and hunting",0.16373,0.24199,0.23596,0.12523,0.21988,0.20434,0.00707,0.02653,0.02028,corporate,0.00707,0.02653,0.02028,0.00707,0.02653,0.02028,-0.01872,-0.03828,-0.03283 -6,"Performing arts, spectator sports, museums, and related activities",0.00000,0.00000,711A,0.00000,0.15796,0.20554,0.19020,"Arts, entertainment, and recreation",0.32804,0.31957,0.32887,0.25091,0.29038,0.28480,0.01438,0.03378,0.02753,corporate,0.01438,0.03378,0.02753,0.01438,0.03378,0.02753,-0.03073,-0.07593,-0.06375 -7,"Amusements, gambling, and recreation industries",0.00000,0.00000,7130,0.00000,0.12969,0.17480,0.16024,"Arts, entertainment, and recreation",0.15191,0.24817,0.23951,0.11619,0.22550,0.20741,0.00587,0.02460,0.01857,corporate,0.00587,0.02460,0.01857,0.00587,0.02460,0.01857,-0.02336,-0.05208,-0.04407 -8,Construction,0.00000,0.00000,2300,0.00000,0.14919,0.19553,0.18063,Construction,0.26182,0.27879,0.28290,0.20026,0.25332,0.24498,0.01219,0.03145,0.02526,corporate,0.01219,0.03145,0.02526,0.01219,0.03145,0.02526,-0.01915,-0.03992,-0.03413 -9,Educational services,0.00000,0.00000,6100,0.00000,0.12729,0.17338,0.15844,Educational services,0.13148,0.22224,0.21380,0.10057,0.20193,0.18515,0.00579,0.02525,0.01896,corporate,0.00579,0.02525,0.01896,0.00579,0.02525,0.01896,0.03965,-0.01274,-0.00058 -10,Credit intermediation and related activities,0.00000,0.00000,5220,0.00000,0.18343,0.22970,0.21475,Finance and insurance,0.42696,0.34852,0.36986,0.32657,0.31667,0.32029,0.02247,0.04159,0.03543,corporate,0.02247,0.04159,0.03543,0.02247,0.04159,0.03543,0.00037,-0.03986,-0.02958 -11,"Securities, commodity contracts, and investments",0.00000,0.00000,5230,0.00000,0.13839,0.18508,0.17005,Finance and insurance,0.19352,0.24205,0.24040,0.14802,0.21993,0.20818,0.00933,0.02897,0.02265,corporate,0.00933,0.02897,0.02265,0.00933,0.02897,0.02265,0.01583,-0.01371,-0.00665 -12,Insurance carriers and related activities,0.00000,0.00000,5240,0.00000,0.18042,0.22672,0.21177,Finance and insurance,0.39237,0.32474,0.34372,0.30011,0.29507,0.29765,0.02192,0.04125,0.03502,corporate,0.02192,0.04125,0.03502,0.02192,0.04125,0.03502,0.02111,-0.02086,-0.01078 -13,"Funds, trusts, and other financial vehicles",0.00000,0.00000,5250,0.00000,0.10830,0.15516,0.14003,Finance and insurance,0.00976,0.17451,0.15420,0.00746,0.15856,0.13353,0.00042,0.02031,0.01390,corporate,0.00042,0.02031,0.01390,0.00042,0.02031,0.01390,0.04009,-0.00189,0.00761 -14,Ambulatory health care services,0.00000,0.00000,6210,0.00000,0.15473,0.20104,0.18606,Health care and social assistance,0.29208,0.29023,0.29761,0.22340,0.26372,0.25772,0.01383,0.03309,0.02688,corporate,0.01383,0.03309,0.02688,0.01383,0.03309,0.02688,0.00940,-0.03573,-0.02451 -15,Hospitals,0.00000,0.00000,622H,0.00000,0.13347,0.17975,0.16475,Health care and social assistance,0.17028,0.23947,0.23469,0.13024,0.21759,0.20324,0.00755,0.02698,0.02070,corporate,0.00755,0.02698,0.02070,0.00755,0.02698,0.02070,0.02752,-0.02143,-0.00978 -16,Nursing and residential care facilities,0.00000,0.00000,6230,0.00000,0.13260,0.17868,0.16375,Health care and social assistance,0.16535,0.23822,0.23280,0.12647,0.21646,0.20160,0.00727,0.02661,0.02035,corporate,0.00727,0.02661,0.02035,0.00727,0.02661,0.02035,0.02718,-0.02379,-0.01163 -17,Social assistance,0.00000,0.00000,6240,0.00000,0.13475,0.18077,0.16588,Health care and social assistance,0.17819,0.24309,0.23895,0.13629,0.22088,0.20692,0.00792,0.02722,0.02099,corporate,0.00792,0.02722,0.02099,0.00792,0.02722,0.02099,0.01911,-0.02568,-0.01484 -18,Publishing industries (including software),0.00000,0.00000,5110,0.00000,0.20495,0.25261,0.23730,Information,0.52122,0.39768,0.42803,0.39866,0.36135,0.37066,0.02884,0.04826,0.04202,corporate,0.02884,0.04826,0.04202,0.02884,0.04826,0.04202,-0.02596,-0.06509,-0.05461 -19,Motion picture and sound recording industries,0.00000,0.00000,5120,0.00000,0.18820,0.23919,0.22275,Information,0.49884,0.40766,0.43257,0.38155,0.37041,0.37459,0.02322,0.04340,0.03691,corporate,0.02322,0.04340,0.03691,0.02322,0.04340,0.03691,-0.10152,-0.15541,-0.13987 -20,Broadcasting and telecommunications,0.00000,0.00000,5130,0.00000,0.15826,0.20496,0.18983,Information,0.35292,0.34321,0.35305,0.26994,0.31185,0.30573,0.01401,0.03289,0.02679,corporate,0.01401,0.03289,0.02679,0.01401,0.03289,0.02679,-0.07889,-0.12605,-0.11249 -21,Information and data processing services,0.00000,0.00000,5140,0.00000,0.25378,0.29785,0.28366,Information,0.69056,0.48139,0.52918,0.52819,0.43741,0.45826,0.04351,0.06164,0.05581,corporate,0.04351,0.06164,0.05581,0.04351,0.06164,0.05581,-0.01646,-0.03976,-0.03336 -22,Management of companies and enterprises,0.00000,0.00000,5500,0.00000,0.14992,0.19618,0.18126,Management of companies and enterprises,0.25340,0.26444,0.26914,0.19382,0.24028,0.23307,0.01280,0.03226,0.02599,corporate,0.01280,0.03226,0.02599,0.01280,0.03226,0.02599,0.02343,-0.01285,-0.00431 -23,"Food, beverage, and tobacco products",0.00000,0.00000,311A,0.00000,0.14332,0.18921,0.17444,Manufacturing,0.22744,0.26303,0.26373,0.17396,0.23900,0.22838,0.01051,0.02966,0.02350,corporate,0.01051,0.02966,0.02350,0.01051,0.02966,0.02350,-0.00425,-0.03360,-0.02601 -24,Textile mills and textile product mills,0.00000,0.00000,313T,0.00000,0.13893,0.18502,0.17016,Manufacturing,0.20050,0.25020,0.24836,0.15336,0.22734,0.21508,0.00929,0.02857,0.02237,corporate,0.00929,0.02857,0.02237,0.00929,0.02857,0.02237,0.00942,-0.02968,-0.02002 -25,Apparel and leather and allied products,0.00000,0.00000,315A,0.00000,0.12560,0.17172,0.15690,Manufacturing,0.11996,0.21381,0.20436,0.09175,0.19428,0.17697,0.00556,0.02501,0.01877,corporate,0.00556,0.02501,0.01877,0.00556,0.02501,0.01877,0.01228,-0.01539,-0.00874 -26,Wood products,0.00000,0.00000,3210,0.00000,0.13391,0.18013,0.16526,Manufacturing,0.17078,0.23770,0.23299,0.13062,0.21598,0.20177,0.00784,0.02721,0.02098,corporate,0.00784,0.02721,0.02098,0.00784,0.02721,0.02098,0.00480,-0.02529,-0.01779 -27,Paper products,0.00000,0.00000,3220,0.00000,0.15467,0.20010,0.18546,Manufacturing,0.29751,0.29639,0.30370,0.22755,0.26931,0.26300,0.01367,0.03253,0.02646,corporate,0.01367,0.03253,0.02646,0.01367,0.03253,0.02646,-0.01338,-0.04482,-0.03646 -28,Printing and related support activities,0.00000,0.00000,3230,0.00000,0.16381,0.20907,0.19448,Manufacturing,0.34330,0.31423,0.32648,0.26258,0.28552,0.28273,0.01645,0.03524,0.02919,corporate,0.01645,0.03524,0.02919,0.01645,0.03524,0.02919,-0.00720,-0.04093,-0.03213 -29,Petroleum and coal products,0.00000,0.00000,3240,0.00000,0.12858,0.17495,0.16005,Manufacturing,0.13982,0.22897,0.22088,0.10694,0.20805,0.19127,0.00614,0.02555,0.01932,corporate,0.00614,0.02555,0.01932,0.00614,0.02555,0.01932,-0.00777,-0.02724,-0.02207 -30,Chemical products,0.00000,0.00000,3250,0.00000,0.15850,0.20035,0.18692,Manufacturing,0.33112,0.31129,0.32206,0.25326,0.28285,0.27890,0.01454,0.03213,0.02649,corporate,0.01454,0.03213,0.02649,0.01454,0.03213,0.02649,-0.00167,-0.01618,-0.01245 -31,Plastics and rubber products,0.00000,0.00000,3260,0.00000,0.15475,0.19991,0.18537,Manufacturing,0.29417,0.29241,0.29971,0.22500,0.26570,0.25954,0.01379,0.03259,0.02655,corporate,0.01379,0.03259,0.02655,0.01379,0.03259,0.02655,-0.00873,-0.03655,-0.02921 -32,Nonmetallic mineral products,0.00000,0.00000,3270,0.00000,0.13824,0.18430,0.16948,Manufacturing,0.19820,0.25101,0.24887,0.15159,0.22807,0.21552,0.00900,0.02826,0.02207,corporate,0.00900,0.02826,0.02207,0.00900,0.02826,0.02207,-0.00366,-0.02838,-0.02198 -33,Primary metals,0.00000,0.00000,3310,0.00000,0.14449,0.19072,0.17582,Manufacturing,0.23583,0.26879,0.27003,0.18038,0.24423,0.23384,0.01079,0.03000,0.02382,corporate,0.01079,0.03000,0.02382,0.01079,0.03000,0.02382,-0.00969,-0.04320,-0.03445 -34,Fabricated metal products,0.00000,0.00000,3320,0.00000,0.15366,0.19944,0.18469,Manufacturing,0.28729,0.28988,0.29642,0.21974,0.26340,0.25669,0.01349,0.03251,0.02639,corporate,0.01349,0.03251,0.02639,0.01349,0.03251,0.02639,-0.01058,-0.04103,-0.03298 -35,Machinery,0.00000,0.00000,3330,0.00000,0.15825,0.20300,0.18861,Manufacturing,0.31049,0.29742,0.30666,0.23748,0.27024,0.26556,0.01488,0.03357,0.02757,corporate,0.01488,0.03357,0.02757,0.01488,0.03357,0.02757,-0.00691,-0.03079,-0.02453 -36,Computer and electronic products,0.00000,0.00000,3340,0.00000,0.20676,0.25015,0.23620,Manufacturing,0.51549,0.38642,0.41748,0.39428,0.35112,0.36153,0.02954,0.04769,0.04186,corporate,0.02954,0.04769,0.04186,0.02954,0.04769,0.04186,-0.00094,-0.02379,-0.01797 -37,"Electrical equipment, appliances, and components",0.00000,0.00000,3350,0.00000,0.14807,0.19302,0.17858,Manufacturing,0.25098,0.26874,0.27237,0.19197,0.24418,0.23586,0.01201,0.03088,0.02483,corporate,0.01201,0.03088,0.02483,0.01201,0.03088,0.02483,0.00153,-0.02114,-0.01546 -38,"Motor vehicles, bodies and trailers, and parts",0.00000,0.00000,336M,0.00000,0.17948,0.22446,0.20999,Manufacturing,0.40691,0.33812,0.35754,0.31123,0.30722,0.30962,0.02133,0.04004,0.03403,corporate,0.02133,0.04004,0.03403,0.02133,0.04004,0.03403,-0.01058,-0.03587,-0.02913 -39,Other transportation equipment,0.00000,0.00000,336O,0.00000,0.15419,0.19902,0.18463,Manufacturing,0.27849,0.27742,0.28421,0.21301,0.25207,0.24612,0.01396,0.03281,0.02677,corporate,0.01396,0.03281,0.02677,0.01396,0.03281,0.02677,0.00179,-0.01740,-0.01257 -40,Furniture and related products,0.00000,0.00000,3370,0.00000,0.14541,0.19119,0.17645,Manufacturing,0.23592,0.26323,0.26522,0.18045,0.23918,0.22967,0.01125,0.03041,0.02425,corporate,0.01125,0.03041,0.02425,0.01125,0.03041,0.02425,0.00418,-0.02572,-0.01824 -41,Miscellaneous manufacturing,0.00000,0.00000,338A,0.00000,0.15938,0.20340,0.18926,Manufacturing,0.31457,0.29680,0.30681,0.24061,0.26968,0.26569,0.01526,0.03374,0.02781,corporate,0.01526,0.03374,0.02781,0.01526,0.03374,0.02781,0.00044,-0.01969,-0.01458 -42,Oil and gas extraction,0.00000,0.00000,2110,0.00000,0.15745,0.20043,0.18654,Mining,0.35333,0.33895,0.34943,0.27025,0.30798,0.30260,0.01367,0.03135,0.02565,corporate,0.01367,0.03135,0.02565,0.01367,0.03135,0.02565,-0.03634,-0.06390,-0.05568 -43,"Mining, except oil and gas",0.00000,0.00000,2120,0.00000,0.14174,0.18688,0.17231,Mining,0.23291,0.27902,0.27857,0.17815,0.25352,0.24124,0.00947,0.02814,0.02213,corporate,0.00947,0.02814,0.02213,0.00947,0.02814,0.02213,-0.02784,-0.05786,-0.04942 -44,Support activities for mining,0.00000,0.00000,2130,0.00000,0.17526,0.22043,0.20583,Mining,0.43964,0.37271,0.39259,0.33626,0.33865,0.33997,0.01926,0.03767,0.03174,corporate,0.01926,0.03767,0.03174,0.01926,0.03767,0.03174,-0.04661,-0.07909,-0.06950 -45,"Other services, except government",0.00000,0.00000,8100,0.00000,0.12802,0.17366,0.15888,"Other services, except government",0.13719,0.22881,0.22040,0.10493,0.20790,0.19086,0.00583,0.02503,0.01883,corporate,0.00583,0.02503,0.01883,0.00583,0.02503,0.01883,0.02263,-0.01973,-0.00940 -46,Legal services,0.00000,0.00000,5411,0.00000,0.17182,0.21850,0.20341,"Professional, scientific, and technical services",0.36481,0.31668,0.33220,0.27903,0.28775,0.28768,0.01917,0.03857,0.03232,corporate,0.01917,0.03857,0.03232,0.01917,0.03857,0.03232,0.01262,-0.03067,-0.02000 -47,"Miscellaneous professional, scientific, and technical services",0.00000,0.00000,5412,0.00000,0.20736,0.25179,0.23748,"Professional, scientific, and technical services",0.53438,0.40048,0.43268,0.40873,0.36389,0.37469,0.02952,0.04791,0.04199,corporate,0.02952,0.04791,0.04199,0.02952,0.04791,0.04199,-0.00838,-0.03593,-0.02866 -48,Computer systems design and related services,0.00000,0.00000,5415,0.00000,0.24663,0.29372,0.27855,"Professional, scientific, and technical services",0.62418,0.44195,0.48394,0.47741,0.40157,0.41908,0.04179,0.06110,0.05488,corporate,0.04179,0.06110,0.05488,0.04179,0.06110,0.05488,-0.00354,-0.03735,-0.02858 -49,Real estate,0.00000,0.00000,5310,0.00000,0.09673,0.14389,0.12875,Real estate and rental and leasing,-0.07892,0.15032,0.12106,-0.06036,0.13659,0.10483,-0.00315,0.01684,0.01042,corporate,-0.00315,0.01684,0.01042,-0.00315,0.01684,0.01042,0.01048,-0.00200,0.00100 -50,Rental and leasing services and lessors of intangible assets,0.00000,0.00000,5320,0.00000,0.20448,0.24983,0.23519,Real estate and rental and leasing,0.56428,0.42687,0.46014,0.43160,0.38786,0.39847,0.02820,0.04664,0.04070,corporate,0.02820,0.04664,0.04070,0.02820,0.04664,0.04070,-0.03988,-0.06816,-0.05969 -51,Retail trade,0.00000,0.00000,44RT,0.00000,0.12243,0.16918,0.15413,Retail trade,0.10084,0.20740,0.19610,0.07713,0.18845,0.16982,0.00461,0.02431,0.01798,corporate,0.00461,0.02431,0.01798,0.00461,0.02431,0.01798,0.01678,-0.01294,-0.00587 -52,Air transportation,0.00000,0.00000,4810,0.00000,0.15610,0.20011,0.18588,Transportation and warehousing,0.32850,0.32019,0.32927,0.25126,0.29094,0.28514,0.01359,0.03177,0.02590,corporate,0.01359,0.03177,0.02590,0.01359,0.03177,0.02590,-0.02086,-0.05437,-0.04514 -53,Railroad transportation,0.00000,0.00000,4820,0.00000,0.12842,0.17310,0.15859,Transportation and warehousing,0.14822,0.27730,0.26450,0.11337,0.25197,0.22905,0.00464,0.02281,0.01693,corporate,0.00464,0.02281,0.01693,0.00464,0.02281,0.01693,-0.08923,-0.13287,-0.12004 -54,Water transportation,0.00000,0.00000,4830,0.00000,0.15588,0.20158,0.18678,Transportation and warehousing,0.33286,0.32929,0.33782,0.25459,0.29920,0.29254,0.01341,0.03204,0.02602,corporate,0.01341,0.03204,0.02602,0.01341,0.03204,0.02602,-0.05063,-0.09139,-0.07972 -55,Truck transportation,0.00000,0.00000,4840,0.00000,0.19702,0.24279,0.22803,Transportation and warehousing,0.50763,0.39332,0.42184,0.38827,0.35739,0.36530,0.02624,0.04498,0.03895,corporate,0.02624,0.04498,0.03895,0.02624,0.04498,0.03895,-0.02515,-0.05386,-0.04572 -56,Transit and ground passenger transportation,0.00000,0.00000,4850,0.00000,0.15817,0.20436,0.18942,Transportation and warehousing,0.31311,0.30100,0.31025,0.23949,0.27350,0.26867,0.01479,0.03395,0.02776,corporate,0.01479,0.03395,0.02776,0.01479,0.03395,0.02776,-0.00132,-0.04545,-0.03428 -57,Pipeline transportation,0.00000,0.00000,4860,0.00000,0.14309,0.18575,0.17195,Transportation and warehousing,0.26123,0.30517,0.30569,0.19980,0.27729,0.26472,0.00925,0.02684,0.02116,corporate,0.00925,0.02684,0.02116,0.00925,0.02684,0.02116,-0.03661,-0.06576,-0.05714 -58,Other transportation and support activities,0.00000,0.00000,487S,0.00000,0.14991,0.19582,0.18095,Transportation and warehousing,0.29049,0.30848,0.31312,0.22219,0.28030,0.27116,0.01174,0.03053,0.02446,corporate,0.01174,0.03053,0.02446,0.01174,0.03053,0.02446,-0.05255,-0.09419,-0.08264 -59,Warehousing and storage,0.00000,0.00000,4930,0.00000,0.12760,0.17408,0.15905,Transportation and warehousing,0.13312,0.22308,0.21470,0.10182,0.20270,0.18593,0.00594,0.02549,0.01918,corporate,0.00594,0.02549,0.01918,0.00594,0.02549,0.01918,0.02634,-0.01886,-0.00815 -60,Utilities,0.00000,0.00000,2200,0.00000,0.13811,0.18417,0.16920,Utilities,0.22737,0.30573,0.30106,0.17391,0.27780,0.26071,0.00763,0.02622,0.02020,corporate,0.00763,0.02622,0.02020,0.00763,0.02622,0.02020,-0.10062,-0.15122,-0.13645 -61,Wholesale trade,0.00000,0.00000,4200,0.00000,0.13779,0.18416,0.16928,Wholesale trade,0.18909,0.24021,0.23791,0.14463,0.21826,0.20603,0.00922,0.02869,0.02245,corporate,0.00922,0.02869,0.02245,0.00922,0.02869,0.02245,0.00065,-0.01854,-0.01366 -62,Accommodation,0.00000,0.00000,7210,0.00000,0.00083,0.00111,0.00103,Accommodation and food services,0.00325,0.00345,0.00340,0.00325,0.00345,0.00340,0.00021,0.00028,0.00026,non-corporate,0.00021,0.00028,0.00026,0.00021,0.00028,0.00026,-0.00473,-0.00582,-0.00551 -63,Food services and drinking places,0.00000,0.00000,7220,0.00000,0.00391,0.00521,0.00482,Accommodation and food services,0.01681,0.01783,0.01757,0.01681,0.01783,0.01757,0.00098,0.00131,0.00121,non-corporate,0.00098,0.00131,0.00121,0.00098,0.00131,0.00121,-0.02271,-0.02792,-0.02644 -64,Administrative and support services,0.00000,0.00000,5610,0.00000,0.00692,0.00913,0.00848,Administrative and waste management services,0.03350,0.03508,0.03470,0.03350,0.03508,0.03470,0.00174,0.00229,0.00212,non-corporate,0.00174,0.00229,0.00212,0.00174,0.00229,0.00212,-0.03144,-0.03875,-0.03667 -65,Waste management and remediation services,0.00000,0.00000,5620,0.00000,0.00808,0.01142,0.01042,Administrative and waste management services,0.04071,0.04559,0.04432,0.04071,0.04559,0.04432,0.00203,0.00286,0.00261,non-corporate,0.00203,0.00286,0.00261,0.00203,0.00286,0.00261,-0.10278,-0.12163,-0.11643 -66,Farms,0.00000,0.00000,110C,0.00000,0.00513,0.00715,0.00654,"Agriculture, forestry, fishing, and hunting",0.02254,0.02503,0.02438,0.02254,0.02503,0.02438,0.00129,0.00179,0.00164,non-corporate,0.00129,0.00179,0.00164,0.00129,0.00179,0.00164,-0.05732,-0.06802,-0.06506 -67,"Forestry, fishing, and related activities",0.00000,0.00000,113F,0.00000,0.00187,0.00254,0.00234,"Agriculture, forestry, fishing, and hunting",0.00760,0.00817,0.00802,0.00760,0.00817,0.00802,0.00047,0.00064,0.00059,non-corporate,0.00047,0.00064,0.00059,0.00047,0.00064,0.00059,-0.01364,-0.01661,-0.01577 -68,"Performing arts, spectator sports, museums, and related activities",0.00000,0.00000,711A,0.00000,0.00840,0.01161,0.01067,"Arts, entertainment, and recreation",0.04100,0.04490,0.04396,0.04100,0.04490,0.04396,0.00210,0.00291,0.00267,non-corporate,0.00210,0.00291,0.00267,0.00210,0.00291,0.00267,-0.05838,-0.07270,-0.06873 -69,"Amusements, gambling, and recreation industries",0.00000,0.00000,7130,0.00000,0.00401,0.00565,0.00515,"Arts, entertainment, and recreation",0.01920,0.02145,0.02084,0.01920,0.02145,0.02084,0.00100,0.00142,0.00129,non-corporate,0.00100,0.00142,0.00129,0.00100,0.00142,0.00129,-0.04016,-0.04936,-0.04675 -70,Construction,0.00000,0.00000,2300,0.00000,0.00377,0.00507,0.00468,Construction,0.01629,0.01739,0.01711,0.01629,0.01739,0.01711,0.00095,0.00127,0.00117,non-corporate,0.00095,0.00127,0.00117,0.00095,0.00127,0.00117,-0.02408,-0.02940,-0.02789 -71,Educational services,0.00000,0.00000,6100,0.00000,0.00173,0.00231,0.00214,Educational services,0.00733,0.00772,0.00762,0.00733,0.00772,0.00762,0.00043,0.00058,0.00054,non-corporate,0.00043,0.00058,0.00054,0.00043,0.00058,0.00054,-0.00975,-0.01198,-0.01135 -72,Credit intermediation and related activities,0.00000,0.00000,5220,0.00000,0.00593,0.00783,0.00726,Finance and insurance,0.02696,0.02832,0.02798,0.02696,0.02832,0.02798,0.00149,0.00196,0.00182,non-corporate,0.00149,0.00196,0.00182,0.00149,0.00196,0.00182,-0.02767,-0.03412,-0.03229 -73,"Securities, commodity contracts, and investments",0.00000,0.00000,5230,0.00000,0.00163,0.00214,0.00199,Finance and insurance,0.00653,0.00683,0.00675,0.00653,0.00683,0.00675,0.00041,0.00054,0.00050,non-corporate,0.00041,0.00054,0.00050,0.00041,0.00054,0.00050,-0.00721,-0.00887,-0.00840 -74,Insurance carriers and related activities,0.00000,0.00000,5240,0.00000,0.00405,0.00529,0.00492,Finance and insurance,0.01748,0.01814,0.01799,0.01748,0.01814,0.01799,0.00101,0.00132,0.00123,non-corporate,0.00101,0.00132,0.00123,0.00101,0.00132,0.00123,-0.01487,-0.01834,-0.01735 -75,"Funds, trusts, and other financial vehicles",0.00000,0.00000,5250,0.00000,0.00022,0.00030,0.00028,Finance and insurance,0.00087,0.00092,0.00091,0.00087,0.00092,0.00091,0.00006,0.00008,0.00007,non-corporate,0.00006,0.00008,0.00007,0.00006,0.00008,0.00007,-0.00130,-0.00160,-0.00152 -76,Ambulatory health care services,0.00000,0.00000,6210,0.00000,0.00505,0.00671,0.00622,Health care and social assistance,0.02276,0.02397,0.02367,0.02276,0.02397,0.02367,0.00127,0.00168,0.00156,non-corporate,0.00127,0.00168,0.00156,0.00127,0.00168,0.00156,-0.02738,-0.03367,-0.03189 -77,Hospitals,0.00000,0.00000,622H,0.00000,0.00299,0.00397,0.00368,Health care and social assistance,0.01292,0.01358,0.01341,0.01292,0.01358,0.01341,0.00075,0.00100,0.00092,non-corporate,0.00075,0.00100,0.00092,0.00075,0.00100,0.00092,-0.01649,-0.02028,-0.01920 -78,Nursing and residential care facilities,0.00000,0.00000,6230,0.00000,0.00281,0.00379,0.00350,Health care and social assistance,0.01222,0.01300,0.01280,0.01222,0.01300,0.01280,0.00071,0.00095,0.00088,non-corporate,0.00071,0.00095,0.00088,0.00071,0.00095,0.00088,-0.01820,-0.02234,-0.02116 -79,Social assistance,0.00000,0.00000,6240,0.00000,0.00277,0.00375,0.00346,Health care and social assistance,0.01200,0.01287,0.01264,0.01200,0.01287,0.01264,0.00070,0.00094,0.00087,non-corporate,0.00070,0.00094,0.00087,0.00070,0.00094,0.00087,-0.01880,-0.02310,-0.02188 -80,Publishing industries (including software),0.00000,0.00000,5110,0.00000,0.00829,0.01120,0.01035,Information,0.03889,0.04175,0.04109,0.03889,0.04175,0.04109,0.00208,0.00281,0.00259,non-corporate,0.00208,0.00281,0.00259,0.00208,0.00281,0.00259,-0.04360,-0.05474,-0.05167 -81,Motion picture and sound recording industries,0.00000,0.00000,5120,0.00000,0.01809,0.02378,0.02211,Information,0.09093,0.09530,0.09428,0.09093,0.09530,0.09428,0.00453,0.00596,0.00554,non-corporate,0.00453,0.00596,0.00554,0.00453,0.00596,0.00554,-0.12119,-0.14487,-0.13830 -82,Broadcasting and telecommunications,0.00000,0.00000,5130,0.00000,0.00963,0.01331,0.01221,Information,0.05066,0.05551,0.05425,0.05066,0.05551,0.05425,0.00241,0.00334,0.00306,non-corporate,0.00241,0.00334,0.00306,0.00241,0.00334,0.00306,-0.09708,-0.11651,-0.11110 -83,Information and data processing services,0.00000,0.00000,5140,0.00000,0.00689,0.00904,0.00840,Information,0.03567,0.03719,0.03682,0.03567,0.03719,0.03682,0.00173,0.00227,0.00211,non-corporate,0.00173,0.00227,0.00211,0.00173,0.00227,0.00211,-0.02906,-0.03564,-0.03377 -84,Management of companies and enterprises,0.00000,0.00000,5500,0.00000,0.00230,0.00303,0.00281,Management of companies and enterprises,0.00965,0.01008,0.00998,0.00965,0.01008,0.00998,0.00058,0.00076,0.00071,non-corporate,0.00058,0.00076,0.00071,0.00058,0.00076,0.00071,-0.00999,-0.01228,-0.01163 -85,"Food, beverage, and tobacco products",0.00000,0.00000,311A,0.00000,0.00348,0.00470,0.00433,Manufacturing,0.01490,0.01607,0.01577,0.01490,0.01607,0.01577,0.00087,0.00118,0.00109,non-corporate,0.00087,0.00118,0.00109,0.00087,0.00118,0.00109,-0.02323,-0.02851,-0.02701 -86,Textile mills and textile product mills,0.00000,0.00000,313T,0.00000,0.00312,0.00422,0.00389,Manufacturing,0.01317,0.01423,0.01396,0.01317,0.01423,0.01396,0.00078,0.00106,0.00097,non-corporate,0.00078,0.00106,0.00097,0.00078,0.00106,0.00097,-0.02144,-0.02631,-0.02493 -87,Apparel and leather and allied products,0.00000,0.00000,315A,0.00000,0.00166,0.00224,0.00207,Manufacturing,0.00662,0.00717,0.00703,0.00662,0.00717,0.00703,0.00042,0.00056,0.00052,non-corporate,0.00042,0.00056,0.00052,0.00042,0.00056,0.00052,-0.01160,-0.01416,-0.01344 -88,Wood products,0.00000,0.00000,3210,0.00000,0.00283,0.00381,0.00352,Manufacturing,0.01183,0.01274,0.01251,0.01183,0.01274,0.01251,0.00071,0.00096,0.00088,non-corporate,0.00071,0.00096,0.00088,0.00071,0.00096,0.00088,-0.01895,-0.02324,-0.02203 -89,Paper products,0.00000,0.00000,3220,0.00000,0.00467,0.00631,0.00582,Manufacturing,0.02137,0.02306,0.02263,0.02137,0.02306,0.02263,0.00117,0.00158,0.00146,non-corporate,0.00117,0.00158,0.00146,0.00117,0.00158,0.00146,-0.03291,-0.04029,-0.03820 -90,Printing and related support activities,0.00000,0.00000,3230,0.00000,0.00478,0.00643,0.00594,Manufacturing,0.02213,0.02372,0.02331,0.02213,0.02372,0.02331,0.00120,0.00161,0.00149,non-corporate,0.00120,0.00161,0.00149,0.00120,0.00161,0.00149,-0.03027,-0.03718,-0.03522 -91,Petroleum and coal products,0.00000,0.00000,3240,0.00000,0.00318,0.00430,0.00396,Manufacturing,0.01354,0.01459,0.01432,0.01354,0.01459,0.01432,0.00080,0.00108,0.00099,non-corporate,0.00080,0.00108,0.00099,0.00080,0.00108,0.00099,-0.02203,-0.02702,-0.02560 -92,Chemical products,0.00000,0.00000,3250,0.00000,0.00180,0.00242,0.00223,Manufacturing,0.00893,0.00958,0.00941,0.00893,0.00958,0.00941,0.00045,0.00061,0.00056,non-corporate,0.00045,0.00061,0.00056,0.00045,0.00061,0.00056,-0.01190,-0.01459,-0.01383 -93,Plastics and rubber products,0.00000,0.00000,3260,0.00000,0.00385,0.00519,0.00479,Manufacturing,0.01717,0.01851,0.01817,0.01717,0.01851,0.01817,0.00097,0.00130,0.00120,non-corporate,0.00097,0.00130,0.00120,0.00097,0.00130,0.00120,-0.02534,-0.03114,-0.02949 -94,Nonmetallic mineral products,0.00000,0.00000,3270,0.00000,0.00330,0.00444,0.00410,Manufacturing,0.01420,0.01525,0.01498,0.01420,0.01525,0.01498,0.00083,0.00111,0.00103,non-corporate,0.00083,0.00111,0.00103,0.00083,0.00111,0.00103,-0.02129,-0.02617,-0.02478 -95,Primary metals,0.00000,0.00000,3310,0.00000,0.00438,0.00591,0.00546,Manufacturing,0.01900,0.02052,0.02013,0.01900,0.02052,0.02013,0.00110,0.00148,0.00137,non-corporate,0.00110,0.00148,0.00137,0.00110,0.00148,0.00137,-0.03087,-0.03771,-0.03578 -96,Fabricated metal products,0.00000,0.00000,3320,0.00000,0.00458,0.00615,0.00568,Manufacturing,0.02032,0.02183,0.02145,0.02032,0.02183,0.02145,0.00115,0.00154,0.00142,non-corporate,0.00115,0.00154,0.00142,0.00115,0.00154,0.00142,-0.02936,-0.03603,-0.03414 -97,Machinery,0.00000,0.00000,3330,0.00000,0.00326,0.00437,0.00404,Manufacturing,0.01441,0.01548,0.01520,0.01441,0.01548,0.01520,0.00082,0.00110,0.00101,non-corporate,0.00082,0.00110,0.00101,0.00082,0.00110,0.00101,-0.02078,-0.02545,-0.02413 -98,Computer and electronic products,0.00000,0.00000,3340,0.00000,0.00311,0.00415,0.00384,Manufacturing,0.01496,0.01590,0.01567,0.01496,0.01590,0.01567,0.00078,0.00104,0.00096,non-corporate,0.00078,0.00104,0.00096,0.00078,0.00104,0.00096,-0.01789,-0.02190,-0.02077 -99,"Electrical equipment, appliances, and components",0.00000,0.00000,3350,0.00000,0.00228,0.00306,0.00283,Manufacturing,0.00974,0.01046,0.01028,0.00974,0.01046,0.01028,0.00057,0.00077,0.00071,non-corporate,0.00057,0.00077,0.00071,0.00057,0.00077,0.00071,-0.01484,-0.01809,-0.01717 -100,"Motor vehicles, bodies and trailers, and parts",0.00000,0.00000,336M,0.00000,0.00422,0.00565,0.00522,Manufacturing,0.01917,0.02050,0.02016,0.01917,0.02050,0.02016,0.00106,0.00142,0.00131,non-corporate,0.00106,0.00142,0.00131,0.00106,0.00142,0.00131,-0.02559,-0.03142,-0.02976 -101,Other transportation equipment,0.00000,0.00000,336O,0.00000,0.00194,0.00260,0.00240,Manufacturing,0.00814,0.00875,0.00860,0.00814,0.00875,0.00860,0.00049,0.00065,0.00060,non-corporate,0.00049,0.00065,0.00060,0.00049,0.00065,0.00060,-0.01165,-0.01432,-0.01357 -102,Furniture and related products,0.00000,0.00000,3370,0.00000,0.00307,0.00411,0.00380,Manufacturing,0.01304,0.01397,0.01374,0.01304,0.01397,0.01374,0.00077,0.00103,0.00095,non-corporate,0.00077,0.00103,0.00095,0.00077,0.00103,0.00095,-0.01863,-0.02288,-0.02167 -103,Miscellaneous manufacturing,0.00000,0.00000,338A,0.00000,0.00231,0.00308,0.00285,Manufacturing,0.01029,0.01102,0.01083,0.01029,0.01102,0.01083,0.00058,0.00077,0.00071,non-corporate,0.00058,0.00077,0.00071,0.00058,0.00077,0.00071,-0.01383,-0.01697,-0.01608 -104,Oil and gas extraction,0.00000,0.00000,2110,0.00000,0.00559,0.00779,0.00712,Mining,0.03102,0.03425,0.03338,0.03102,0.03425,0.03338,0.00140,0.00195,0.00179,non-corporate,0.00140,0.00195,0.00179,0.00140,0.00195,0.00179,-0.04803,-0.05945,-0.05619 -105,"Mining, except oil and gas",0.00000,0.00000,2120,0.00000,0.00457,0.00635,0.00581,Mining,0.02178,0.02402,0.02342,0.02178,0.02402,0.02342,0.00115,0.00159,0.00146,non-corporate,0.00115,0.00159,0.00146,0.00115,0.00159,0.00146,-0.04078,-0.05003,-0.04741 -106,Support activities for mining,0.00000,0.00000,2130,0.00000,0.00840,0.01138,0.01049,Mining,0.04461,0.04799,0.04711,0.04461,0.04799,0.04711,0.00211,0.00285,0.00263,non-corporate,0.00211,0.00285,0.00263,0.00211,0.00285,0.00263,-0.05998,-0.07348,-0.06965 -107,"Other services, except government",0.00000,0.00000,8100,0.00000,0.00235,0.00317,0.00292,"Other services, except government",0.01033,0.01103,0.01085,0.01033,0.01103,0.01085,0.00059,0.00079,0.00073,non-corporate,0.00059,0.00079,0.00073,0.00059,0.00079,0.00073,-0.01562,-0.01918,-0.01817 -108,Legal services,0.00000,0.00000,5411,0.00000,0.00530,0.00697,0.00647,"Professional, scientific, and technical services",0.02340,0.02442,0.02417,0.02340,0.02442,0.02417,0.00133,0.00175,0.00162,non-corporate,0.00133,0.00175,0.00162,0.00133,0.00175,0.00162,-0.02297,-0.02831,-0.02679 -109,"Miscellaneous professional, scientific, and technical services",0.00000,0.00000,5412,0.00000,0.00577,0.00764,0.00709,"Professional, scientific, and technical services",0.02877,0.03027,0.02990,0.02877,0.03027,0.02990,0.00145,0.00192,0.00178,non-corporate,0.00145,0.00192,0.00178,0.00145,0.00192,0.00178,-0.02717,-0.03359,-0.03177 -110,Computer systems design and related services,0.00000,0.00000,5415,0.00000,0.00912,0.01183,0.01103,"Professional, scientific, and technical services",0.04282,0.04419,0.04388,0.04282,0.04419,0.04388,0.00229,0.00296,0.00277,non-corporate,0.00229,0.00296,0.00277,0.00229,0.00296,0.00277,-0.02808,-0.03472,-0.03283 -111,Real estate,0.00000,0.00000,5310,0.00000,0.00014,0.00020,0.00019,Real estate and rental and leasing,0.00056,0.00063,0.00061,0.00056,0.00063,0.00061,0.00004,0.00005,0.00005,non-corporate,0.00004,0.00005,0.00005,0.00004,0.00005,0.00005,-0.00162,-0.00194,-0.00185 -112,Rental and leasing services and lessors of intangible assets,0.00000,0.00000,5320,0.00000,0.00936,0.01247,0.01154,Real estate and rental and leasing,0.04980,0.05274,0.05199,0.04980,0.05274,0.05199,0.00234,0.00313,0.00289,non-corporate,0.00234,0.00313,0.00289,0.00234,0.00313,0.00289,-0.05077,-0.06266,-0.05927 -113,Retail trade,0.00000,0.00000,44RT,0.00000,0.00140,0.00187,0.00173,Retail trade,0.00543,0.00579,0.00570,0.00543,0.00579,0.00570,0.00035,0.00047,0.00043,non-corporate,0.00035,0.00047,0.00043,0.00035,0.00047,0.00043,-0.00762,-0.00937,-0.00888 -114,Air transportation,0.00000,0.00000,4810,0.00000,0.00526,0.00724,0.00665,Transportation and warehousing,0.02720,0.02969,0.02903,0.02720,0.02969,0.02903,0.00132,0.00182,0.00167,non-corporate,0.00132,0.00182,0.00167,0.00132,0.00182,0.00167,-0.04110,-0.05075,-0.04800 -115,Railroad transportation,0.00000,0.00000,4820,0.00000,0.00683,0.01002,0.00905,Transportation and warehousing,0.03842,0.04458,0.04293,0.03842,0.04458,0.04293,0.00171,0.00251,0.00227,non-corporate,0.00171,0.00251,0.00227,0.00171,0.00251,0.00227,-0.10496,-0.12549,-0.11978 -116,Water transportation,0.00000,0.00000,4830,0.00000,0.00801,0.01103,0.01012,Transportation and warehousing,0.04175,0.04556,0.04456,0.04175,0.04556,0.04456,0.00201,0.00276,0.00254,non-corporate,0.00201,0.00276,0.00254,0.00201,0.00276,0.00254,-0.07024,-0.08560,-0.08127 -117,Truck transportation,0.00000,0.00000,4840,0.00000,0.00835,0.01107,0.01026,Transportation and warehousing,0.04205,0.04433,0.04376,0.04205,0.04433,0.04376,0.00209,0.00278,0.00257,non-corporate,0.00209,0.00278,0.00257,0.00209,0.00278,0.00257,-0.04127,-0.05100,-0.04823 -118,Transit and ground passenger transportation,0.00000,0.00000,4850,0.00000,0.00533,0.00717,0.00662,Transportation and warehousing,0.02448,0.02615,0.02572,0.02448,0.02615,0.02572,0.00134,0.00180,0.00166,non-corporate,0.00134,0.00180,0.00166,0.00134,0.00180,0.00166,-0.03533,-0.04299,-0.04083 -119,Pipeline transportation,0.00000,0.00000,4860,0.00000,0.00489,0.00693,0.00631,Transportation and warehousing,0.02728,0.03065,0.02974,0.02728,0.03065,0.02974,0.00122,0.00174,0.00158,non-corporate,0.00122,0.00174,0.00158,0.00122,0.00174,0.00158,-0.04978,-0.06153,-0.05818 -120,Other transportation and support activities,0.00000,0.00000,487S,0.00000,0.00692,0.00969,0.00886,Transportation and warehousing,0.03505,0.03887,0.03787,0.03505,0.03887,0.03787,0.00174,0.00243,0.00222,non-corporate,0.00174,0.00243,0.00222,0.00174,0.00243,0.00222,-0.07451,-0.08924,-0.08514 -121,Warehousing and storage,0.00000,0.00000,4930,0.00000,0.00235,0.00316,0.00292,Transportation and warehousing,0.00986,0.01049,0.01033,0.00986,0.01049,0.01033,0.00059,0.00079,0.00073,non-corporate,0.00059,0.00079,0.00073,0.00059,0.00079,0.00073,-0.01480,-0.01813,-0.01719 -122,Utilities,0.00000,0.00000,2200,0.00000,0.00877,0.01258,0.01143,Utilities,0.04849,0.05501,0.05329,0.04849,0.05501,0.05329,0.00220,0.00315,0.00286,non-corporate,0.00220,0.00315,0.00286,0.00220,0.00315,0.00286,-0.11832,-0.14148,-0.13505 -123,Wholesale trade,0.00000,0.00000,4200,0.00000,0.00188,0.00249,0.00231,Wholesale trade,0.00728,0.00776,0.00764,0.00728,0.00776,0.00764,0.00047,0.00062,0.00058,non-corporate,0.00047,0.00062,0.00058,0.00047,0.00062,0.00058,-0.00946,-0.01165,-0.01103 -124,Accommodation and food services,0.00000,0.00000,,0.00000,0.11955,0.16650,0.15138,Accommodation and food services,0.08260,0.20286,0.18960,0.06318,0.18432,0.16419,0.00366,0.02344,0.01708,corporate,0.00366,0.02344,0.01708,0.00366,0.02344,0.01708,0.01803,-0.01364,-0.00612 -125,Administrative and waste management services,0.00000,0.00000,,0.00000,0.18174,0.22797,0.21303,Administrative and waste management services,0.43875,0.36097,0.38245,0.33559,0.32799,0.33119,0.02167,0.04064,0.03452,corporate,0.02167,0.04064,0.03452,0.02167,0.04064,0.03452,-0.03600,-0.07389,-0.06362 -126,"Agriculture, forestry, fishing, and hunting",0.00000,0.00000,,0.00000,0.12976,0.17688,0.16171,"Agriculture, forestry, fishing, and hunting",0.15001,0.24427,0.23577,0.11474,0.22195,0.20417,0.00616,0.02561,0.01936,corporate,0.00616,0.02561,0.01936,0.00616,0.02561,0.01936,-0.05198,-0.07700,-0.06975 -127,"Arts, entertainment, and recreation",0.00000,0.00000,,0.00000,0.14203,0.18823,0.17332,"Arts, entertainment, and recreation",0.23414,0.28036,0.28009,0.17909,0.25475,0.24255,0.00958,0.02861,0.02248,corporate,0.00958,0.02861,0.02248,0.00958,0.02861,0.02248,-0.02658,-0.06250,-0.05267 -130,Finance and insurance,0.00000,0.00000,,0.00000,0.17588,0.22221,0.20725,Finance and insurance,0.38604,0.32704,0.34461,0.29527,0.29716,0.29843,0.02033,0.03958,0.03337,corporate,0.02033,0.03958,0.03337,0.02033,0.03958,0.03337,0.00759,-0.03196,-0.02208 -131,Health care and social assistance,0.00000,0.00000,,0.00000,0.13884,0.18511,0.17013,Health care and social assistance,0.20257,0.25244,0.25088,0.15494,0.22938,0.21726,0.00914,0.02851,0.02225,corporate,0.00914,0.02851,0.02225,0.00914,0.02851,0.02225,0.02255,-0.02537,-0.01384 -132,Information,0.00000,0.00000,,0.00000,0.17368,0.22095,0.20566,Information,0.42961,0.37123,0.38969,0.32860,0.33732,0.33746,0.01881,0.03789,0.03174,corporate,0.01881,0.03789,0.03174,0.01881,0.03789,0.03174,-0.07252,-0.11829,-0.10523 -133,Management of companies and enterprises,0.00000,0.00000,,0.00000,0.14992,0.19618,0.18126,Management of companies and enterprises,0.25340,0.26444,0.26914,0.19382,0.24028,0.23307,0.01280,0.03226,0.02599,corporate,0.01280,0.03226,0.02599,0.01280,0.03226,0.02599,0.02343,-0.01285,-0.00431 -134,Manufacturing,0.00000,0.00000,,0.00000,0.15905,0.20348,0.18919,Manufacturing,0.31560,0.29923,0.30908,0.24139,0.27189,0.26766,0.01510,0.03368,0.02771,corporate,0.01510,0.03368,0.02771,0.01510,0.03368,0.02771,-0.00408,-0.02717,-0.02119 -135,Mining,0.00000,0.00000,,0.00000,0.15689,0.20032,0.18628,Mining,0.34528,0.33382,0.34371,0.26409,0.30332,0.29765,0.01359,0.03145,0.02569,corporate,0.01359,0.03145,0.02569,0.01359,0.03145,0.02569,-0.03609,-0.06435,-0.05599 -136,"Other services, except government",0.00000,0.00000,,0.00000,0.12802,0.17366,0.15888,"Other services, except government",0.13719,0.22881,0.22040,0.10493,0.20790,0.19086,0.00583,0.02503,0.01883,corporate,0.00583,0.02503,0.01883,0.00583,0.02503,0.01883,0.02263,-0.01973,-0.00940 -137,"Professional, scientific, and technical services",0.00000,0.00000,,0.00000,0.21048,0.25542,0.24094,"Professional, scientific, and technical services",0.53885,0.40160,0.43443,0.41214,0.36491,0.37621,0.03054,0.04912,0.04315,corporate,0.03054,0.04912,0.04315,0.03054,0.04912,0.04315,-0.00637,-0.03579,-0.02809 -138,Real estate and rental and leasing,0.00000,0.00000,,0.00000,0.10630,0.15330,0.13820,Real estate and rental and leasing,-0.00895,0.17385,0.15136,-0.00685,0.15797,0.13108,-0.00037,0.01949,0.01311,corporate,-0.00037,0.01949,0.01311,-0.00037,0.01949,0.01311,0.00601,-0.00787,-0.00439 -140,Transportation and warehousing,0.00000,0.00000,,0.00000,0.14772,0.19233,0.17789,Transportation and warehousing,0.28449,0.31020,0.31366,0.21760,0.28186,0.27162,0.01088,0.02918,0.02327,corporate,0.01088,0.02918,0.02327,0.01088,0.02918,0.02327,-0.04854,-0.08601,-0.07537 -143,Accommodation and food services,0.00000,0.00000,,0.00000,0.00172,0.00230,0.00213,Accommodation and food services,0.00693,0.00735,0.00724,0.00693,0.00735,0.00724,0.00043,0.00058,0.00053,non-corporate,0.00043,0.00058,0.00053,0.00043,0.00058,0.00053,-0.00995,-0.01223,-0.01159 -144,Administrative and waste management services,0.00000,0.00000,,0.00000,0.00732,0.00991,0.00914,Administrative and waste management services,0.03590,0.03858,0.03790,0.03590,0.03858,0.03790,0.00183,0.00248,0.00229,non-corporate,0.00183,0.00248,0.00229,0.00183,0.00248,0.00229,-0.05578,-0.06702,-0.06388 -145,"Agriculture, forestry, fishing, and hunting",0.00000,0.00000,,0.00000,0.00445,0.00619,0.00567,"Agriculture, forestry, fishing, and hunting",0.01923,0.02128,0.02075,0.01923,0.02128,0.02075,0.00112,0.00155,0.00142,non-corporate,0.00112,0.00155,0.00142,0.00112,0.00155,0.00142,-0.04822,-0.05731,-0.05480 -146,"Arts, entertainment, and recreation",0.00000,0.00000,,0.00000,0.00599,0.00835,0.00765,"Arts, entertainment, and recreation",0.02896,0.03195,0.03120,0.02896,0.03195,0.03120,0.00150,0.00209,0.00192,non-corporate,0.00150,0.00209,0.00192,0.00150,0.00209,0.00192,-0.04840,-0.05992,-0.05669 -149,Finance and insurance,0.00000,0.00000,,0.00000,0.00271,0.00357,0.00331,Finance and insurance,0.01120,0.01173,0.01160,0.01120,0.01173,0.01160,0.00068,0.00089,0.00083,non-corporate,0.00068,0.00089,0.00083,0.00068,0.00089,0.00083,-0.01214,-0.01497,-0.01416 -150,Health care and social assistance,0.00000,0.00000,,0.00000,0.00344,0.00458,0.00425,Health care and social assistance,0.01505,0.01584,0.01564,0.01505,0.01584,0.01564,0.00086,0.00115,0.00106,non-corporate,0.00086,0.00115,0.00106,0.00086,0.00115,0.00106,-0.01923,-0.02364,-0.02239 -151,Information,0.00000,0.00000,,0.00000,0.01104,0.01498,0.01381,Information,0.05707,0.06147,0.06036,0.05707,0.06147,0.06036,0.00277,0.00375,0.00346,non-corporate,0.00277,0.00375,0.00346,0.00277,0.00375,0.00346,-0.09451,-0.11350,-0.10822 -152,Management of companies and enterprises,0.00000,0.00000,,0.00000,0.00230,0.00303,0.00281,Management of companies and enterprises,0.00965,0.01008,0.00998,0.00965,0.01008,0.00998,0.00058,0.00076,0.00071,non-corporate,0.00058,0.00076,0.00071,0.00058,0.00076,0.00071,-0.00999,-0.01228,-0.01163 -153,Manufacturing,0.00000,0.00000,,0.00000,0.00302,0.00406,0.00375,Manufacturing,0.01369,0.01470,0.01444,0.01369,0.01470,0.01444,0.00076,0.00102,0.00094,non-corporate,0.00076,0.00102,0.00094,0.00076,0.00102,0.00094,-0.01953,-0.02394,-0.02269 -154,Mining,0.00000,0.00000,,0.00000,0.00568,0.00788,0.00721,Mining,0.03073,0.03382,0.03299,0.03073,0.03382,0.03299,0.00142,0.00197,0.00181,non-corporate,0.00142,0.00197,0.00181,0.00142,0.00197,0.00181,-0.04800,-0.05929,-0.05608 -155,"Other services, except government",0.00000,0.00000,,0.00000,0.00235,0.00317,0.00292,"Other services, except government",0.01033,0.01103,0.01085,0.01033,0.01103,0.01085,0.00059,0.00079,0.00073,non-corporate,0.00059,0.00079,0.00073,0.00059,0.00079,0.00073,-0.01562,-0.01918,-0.01817 -156,"Professional, scientific, and technical services",0.00000,0.00000,,0.00000,0.00611,0.00806,0.00748,"Professional, scientific, and technical services",0.02996,0.03140,0.03105,0.02996,0.03140,0.03105,0.00153,0.00202,0.00188,non-corporate,0.00153,0.00202,0.00188,0.00153,0.00202,0.00188,-0.02694,-0.03329,-0.03149 -157,Real estate and rental and leasing,0.00000,0.00000,,0.00000,0.00031,0.00042,0.00039,Real estate and rental and leasing,0.00122,0.00132,0.00129,0.00122,0.00132,0.00129,0.00008,0.00011,0.00010,non-corporate,0.00008,0.00011,0.00010,0.00008,0.00011,0.00010,-0.00251,-0.00303,-0.00289 -159,Transportation and warehousing,0.00000,0.00000,,0.00000,0.00626,0.00879,0.00803,Transportation and warehousing,0.03277,0.03643,0.03546,0.03277,0.03643,0.03546,0.00157,0.00220,0.00201,non-corporate,0.00157,0.00220,0.00201,0.00157,0.00220,0.00201,-0.06531,-0.07898,-0.07515 -162,Overall,0.00000,0.00000,,0.00000,0.14492,0.19076,0.17597,Overall,0.24417,0.27601,0.27773,0.18676,0.25080,0.24051,0.01071,0.02974,0.02361,corporate,0.01071,0.02974,0.02361,0.01071,0.02974,0.02361,-0.01942,-0.05089,-0.04249 -163,Overall,0.00000,0.00000,,0.00000,0.00166,0.00226,0.00208,Overall,0.00680,0.00734,0.00720,0.00680,0.00734,0.00720,0.00042,0.00057,0.00052,non-corporate,0.00042,0.00057,0.00052,0.00042,0.00057,0.00052,-0.01280,-0.01552,-0.01475 +0,Accommodation,0.00000,0.00000,7210,0.00000,0.10905,0.15618,0.14102,Accommodation and food services,0.01495,0.17696,0.15716,0.01143,0.16079,0.13609,0.00065,0.02059,0.01418,corporate,0.00065,0.02059,0.01418,0.00065,0.02059,0.01418,0.02374,-0.00497,0.00163 +1,Food services and drinking places,0.00000,0.00000,7220,0.00000,0.13499,0.18168,0.16662,Accommodation and food services,0.17800,0.24191,0.23790,0.13614,0.21980,0.20601,0.00810,0.02763,0.02134,corporate,0.00810,0.02763,0.02134,0.00810,0.02763,0.02134,0.00962,-0.02641,-0.01752 +2,Administrative and support services,0.00000,0.00000,5610,0.00000,0.20935,0.25501,0.24028,Administrative and waste management services,0.53306,0.39899,0.43118,0.40770,0.36252,0.37338,0.03022,0.04904,0.04298,corporate,0.03022,0.04904,0.04298,0.03022,0.04904,0.04298,-0.00967,-0.04188,-0.03336 +3,Waste management and remediation services,0.00000,0.00000,5620,0.00000,0.13941,0.18651,0.17126,Administrative and waste management services,0.22316,0.28620,0.28342,0.17068,0.26004,0.24542,0.00856,0.02775,0.02155,corporate,0.00856,0.02775,0.02155,0.00856,0.02775,0.02155,-0.07637,-0.12295,-0.11002 +4,Farms,0.00000,0.00000,110C,0.00000,0.12953,0.17669,0.16150,"Agriculture, forestry, fishing, and hunting",0.14862,0.24448,0.23574,0.11367,0.22214,0.20414,0.00607,0.02552,0.01927,corporate,0.00607,0.02552,0.01927,0.00607,0.02552,0.01927,-0.05515,-0.08069,-0.07328 +5,"Forestry, fishing, and related activities",0.00000,0.00000,113F,0.00000,0.13219,0.17891,0.16388,"Agriculture, forestry, fishing, and hunting",0.16373,0.24199,0.23596,0.12523,0.21987,0.20433,0.00707,0.02653,0.02028,corporate,0.00707,0.02653,0.02028,0.00707,0.02653,0.02028,-0.01872,-0.03828,-0.03283 +6,"Performing arts, spectator sports, museums, and related activities",0.00000,0.00000,711A,0.00000,0.15796,0.20554,0.19020,"Arts, entertainment, and recreation",0.32804,0.31957,0.32887,0.25090,0.29036,0.28478,0.01438,0.03378,0.02753,corporate,0.01438,0.03378,0.02753,0.01438,0.03378,0.02753,-0.03073,-0.07593,-0.06375 +7,"Amusements, gambling, and recreation industries",0.00000,0.00000,7130,0.00000,0.12969,0.17480,0.16024,"Arts, entertainment, and recreation",0.15191,0.24817,0.23951,0.11619,0.22549,0.20740,0.00587,0.02460,0.01857,corporate,0.00587,0.02460,0.01857,0.00587,0.02460,0.01857,-0.02336,-0.05208,-0.04407 +8,Construction,0.00000,0.00000,2300,0.00000,0.14919,0.19553,0.18063,Construction,0.26182,0.27879,0.28290,0.20025,0.25330,0.24497,0.01219,0.03145,0.02526,corporate,0.01219,0.03145,0.02526,0.01219,0.03145,0.02526,-0.01915,-0.03992,-0.03413 +9,Educational services,0.00000,0.00000,6100,0.00000,0.12729,0.17338,0.15844,Educational services,0.13148,0.22224,0.21380,0.10056,0.20192,0.18514,0.00579,0.02525,0.01896,corporate,0.00579,0.02525,0.01896,0.00579,0.02525,0.01896,0.03965,-0.01274,-0.00058 +10,Credit intermediation and related activities,0.00000,0.00000,5220,0.00000,0.18343,0.22970,0.21475,Finance and insurance,0.42696,0.34852,0.36986,0.32656,0.31666,0.32028,0.02247,0.04159,0.03543,corporate,0.02247,0.04159,0.03543,0.02247,0.04159,0.03543,0.00037,-0.03986,-0.02958 +11,"Securities, commodity contracts, and investments",0.00000,0.00000,5230,0.00000,0.13839,0.18508,0.17005,Finance and insurance,0.19352,0.24205,0.24040,0.14801,0.21992,0.20817,0.00933,0.02897,0.02265,corporate,0.00933,0.02897,0.02265,0.00933,0.02897,0.02265,0.01583,-0.01371,-0.00665 +12,Insurance carriers and related activities,0.00000,0.00000,5240,0.00000,0.18042,0.22672,0.21177,Finance and insurance,0.39237,0.32474,0.34372,0.30010,0.29506,0.29764,0.02192,0.04125,0.03502,corporate,0.02192,0.04125,0.03502,0.02192,0.04125,0.03502,0.02111,-0.02086,-0.01078 +13,"Funds, trusts, and other financial vehicles",0.00000,0.00000,5250,0.00000,0.10830,0.15516,0.14003,Finance and insurance,0.00976,0.17451,0.15420,0.00746,0.15856,0.13352,0.00042,0.02031,0.01390,corporate,0.00042,0.02031,0.01390,0.00042,0.02031,0.01390,0.04009,-0.00189,0.00761 +14,Ambulatory health care services,0.00000,0.00000,6210,0.00000,0.15473,0.20104,0.18606,Health care and social assistance,0.29208,0.29023,0.29761,0.22339,0.26371,0.25771,0.01383,0.03309,0.02688,corporate,0.01383,0.03309,0.02688,0.01383,0.03309,0.02688,0.00940,-0.03573,-0.02451 +15,Hospitals,0.00000,0.00000,622H,0.00000,0.13347,0.17975,0.16475,Health care and social assistance,0.17028,0.23947,0.23469,0.13024,0.21758,0.20323,0.00755,0.02698,0.02070,corporate,0.00755,0.02698,0.02070,0.00755,0.02698,0.02070,0.02752,-0.02143,-0.00978 +16,Nursing and residential care facilities,0.00000,0.00000,6230,0.00000,0.13260,0.17868,0.16375,Health care and social assistance,0.16535,0.23822,0.23280,0.12647,0.21645,0.20159,0.00727,0.02661,0.02035,corporate,0.00727,0.02661,0.02035,0.00727,0.02661,0.02035,0.02718,-0.02379,-0.01163 +17,Social assistance,0.00000,0.00000,6240,0.00000,0.13475,0.18077,0.16588,Health care and social assistance,0.17819,0.24309,0.23895,0.13629,0.22087,0.20692,0.00792,0.02722,0.02099,corporate,0.00792,0.02722,0.02099,0.00792,0.02722,0.02099,0.01911,-0.02568,-0.01484 +18,Publishing industries (including software),0.00000,0.00000,5110,0.00000,0.20495,0.25261,0.23730,Information,0.52122,0.39768,0.42803,0.39865,0.36133,0.37065,0.02884,0.04826,0.04202,corporate,0.02884,0.04826,0.04202,0.02884,0.04826,0.04202,-0.02596,-0.06509,-0.05461 +19,Motion picture and sound recording industries,0.00000,0.00000,5120,0.00000,0.18820,0.23919,0.22275,Information,0.49884,0.40766,0.43257,0.38153,0.37040,0.37458,0.02322,0.04340,0.03691,corporate,0.02322,0.04340,0.03691,0.02322,0.04340,0.03691,-0.10152,-0.15541,-0.13987 +20,Broadcasting and telecommunications,0.00000,0.00000,5130,0.00000,0.15826,0.20496,0.18983,Information,0.35292,0.34321,0.35305,0.26993,0.31184,0.30572,0.01401,0.03289,0.02679,corporate,0.01401,0.03289,0.02679,0.01401,0.03289,0.02679,-0.07889,-0.12605,-0.11249 +21,Information and data processing services,0.00000,0.00000,5140,0.00000,0.25378,0.29785,0.28366,Information,0.69056,0.48139,0.52918,0.52817,0.43739,0.45824,0.04351,0.06164,0.05581,corporate,0.04351,0.06164,0.05581,0.04351,0.06164,0.05581,-0.01646,-0.03976,-0.03336 +22,Management of companies and enterprises,0.00000,0.00000,5500,0.00000,0.14992,0.19618,0.18126,Management of companies and enterprises,0.25340,0.26444,0.26914,0.19381,0.24027,0.23306,0.01280,0.03226,0.02599,corporate,0.01280,0.03226,0.02599,0.01280,0.03226,0.02599,0.02343,-0.01285,-0.00431 +23,"Food, beverage, and tobacco products",0.00000,0.00000,311A,0.00000,0.14332,0.18921,0.17444,Manufacturing,0.22744,0.26303,0.26373,0.17395,0.23899,0.22837,0.01051,0.02966,0.02350,corporate,0.01051,0.02966,0.02350,0.01051,0.02966,0.02350,-0.00425,-0.03360,-0.02601 +24,Textile mills and textile product mills,0.00000,0.00000,313T,0.00000,0.13893,0.18502,0.17016,Manufacturing,0.20050,0.25020,0.24836,0.15335,0.22733,0.21507,0.00929,0.02857,0.02237,corporate,0.00929,0.02857,0.02237,0.00929,0.02857,0.02237,0.00942,-0.02968,-0.02002 +25,Apparel and leather and allied products,0.00000,0.00000,315A,0.00000,0.12560,0.17172,0.15690,Manufacturing,0.11996,0.21381,0.20436,0.09175,0.19427,0.17697,0.00556,0.02501,0.01877,corporate,0.00556,0.02501,0.01877,0.00556,0.02501,0.01877,0.01228,-0.01539,-0.00874 +26,Wood products,0.00000,0.00000,3210,0.00000,0.13391,0.18013,0.16526,Manufacturing,0.17078,0.23770,0.23299,0.13062,0.21598,0.20176,0.00784,0.02721,0.02098,corporate,0.00784,0.02721,0.02098,0.00784,0.02721,0.02098,0.00480,-0.02529,-0.01779 +27,Paper products,0.00000,0.00000,3220,0.00000,0.15467,0.20010,0.18546,Manufacturing,0.29751,0.29639,0.30370,0.22754,0.26930,0.26299,0.01367,0.03253,0.02646,corporate,0.01367,0.03253,0.02646,0.01367,0.03253,0.02646,-0.01338,-0.04482,-0.03646 +28,Printing and related support activities,0.00000,0.00000,3230,0.00000,0.16381,0.20907,0.19448,Manufacturing,0.34330,0.31423,0.32648,0.26257,0.28551,0.28271,0.01645,0.03524,0.02919,corporate,0.01645,0.03524,0.02919,0.01645,0.03524,0.02919,-0.00720,-0.04093,-0.03213 +29,Petroleum and coal products,0.00000,0.00000,3240,0.00000,0.12858,0.17495,0.16005,Manufacturing,0.13982,0.22897,0.22088,0.10694,0.20804,0.19127,0.00614,0.02555,0.01932,corporate,0.00614,0.02555,0.01932,0.00614,0.02555,0.01932,-0.00777,-0.02724,-0.02207 +30,Chemical products,0.00000,0.00000,3250,0.00000,0.15850,0.20035,0.18692,Manufacturing,0.33112,0.31129,0.32206,0.25325,0.28284,0.27889,0.01454,0.03213,0.02649,corporate,0.01454,0.03213,0.02649,0.01454,0.03213,0.02649,-0.00167,-0.01618,-0.01245 +31,Plastics and rubber products,0.00000,0.00000,3260,0.00000,0.15475,0.19991,0.18537,Manufacturing,0.29417,0.29241,0.29971,0.22499,0.26569,0.25953,0.01379,0.03259,0.02655,corporate,0.01379,0.03259,0.02655,0.01379,0.03259,0.02655,-0.00873,-0.03655,-0.02921 +32,Nonmetallic mineral products,0.00000,0.00000,3270,0.00000,0.13824,0.18430,0.16948,Manufacturing,0.19820,0.25101,0.24887,0.15159,0.22806,0.21551,0.00900,0.02826,0.02207,corporate,0.00900,0.02826,0.02207,0.00900,0.02826,0.02207,-0.00366,-0.02838,-0.02198 +33,Primary metals,0.00000,0.00000,3310,0.00000,0.14449,0.19072,0.17582,Manufacturing,0.23583,0.26879,0.27003,0.18037,0.24422,0.23383,0.01079,0.03000,0.02382,corporate,0.01079,0.03000,0.02382,0.01079,0.03000,0.02382,-0.00969,-0.04320,-0.03445 +34,Fabricated metal products,0.00000,0.00000,3320,0.00000,0.15366,0.19944,0.18469,Manufacturing,0.28729,0.28988,0.29642,0.21973,0.26338,0.25668,0.01349,0.03251,0.02639,corporate,0.01349,0.03251,0.02639,0.01349,0.03251,0.02639,-0.01058,-0.04103,-0.03298 +35,Machinery,0.00000,0.00000,3330,0.00000,0.15825,0.20300,0.18861,Manufacturing,0.31049,0.29742,0.30666,0.23747,0.27023,0.26555,0.01488,0.03357,0.02757,corporate,0.01488,0.03357,0.02757,0.01488,0.03357,0.02757,-0.00691,-0.03079,-0.02453 +36,Computer and electronic products,0.00000,0.00000,3340,0.00000,0.20676,0.25015,0.23620,Manufacturing,0.51549,0.38642,0.41748,0.39427,0.35110,0.36151,0.02954,0.04769,0.04186,corporate,0.02954,0.04769,0.04186,0.02954,0.04769,0.04186,-0.00094,-0.02379,-0.01797 +37,"Electrical equipment, appliances, and components",0.00000,0.00000,3350,0.00000,0.14807,0.19302,0.17858,Manufacturing,0.25098,0.26874,0.27237,0.19196,0.24417,0.23585,0.01201,0.03088,0.02483,corporate,0.01201,0.03088,0.02483,0.01201,0.03088,0.02483,0.00153,-0.02114,-0.01546 +38,"Motor vehicles, bodies and trailers, and parts",0.00000,0.00000,336M,0.00000,0.17948,0.22446,0.20999,Manufacturing,0.40691,0.33812,0.35754,0.31122,0.30721,0.30961,0.02133,0.04004,0.03403,corporate,0.02133,0.04004,0.03403,0.02133,0.04004,0.03403,-0.01058,-0.03587,-0.02913 +39,Other transportation equipment,0.00000,0.00000,336O,0.00000,0.15419,0.19902,0.18463,Manufacturing,0.27849,0.27742,0.28421,0.21300,0.25206,0.24611,0.01396,0.03281,0.02677,corporate,0.01396,0.03281,0.02677,0.01396,0.03281,0.02677,0.00179,-0.01740,-0.01257 +40,Furniture and related products,0.00000,0.00000,3370,0.00000,0.14541,0.19119,0.17645,Manufacturing,0.23592,0.26323,0.26522,0.18044,0.23917,0.22966,0.01125,0.03041,0.02425,corporate,0.01125,0.03041,0.02425,0.01125,0.03041,0.02425,0.00418,-0.02572,-0.01824 +41,Miscellaneous manufacturing,0.00000,0.00000,338A,0.00000,0.15938,0.20340,0.18926,Manufacturing,0.31457,0.29680,0.30681,0.24060,0.26967,0.26568,0.01526,0.03374,0.02781,corporate,0.01526,0.03374,0.02781,0.01526,0.03374,0.02781,0.00044,-0.01969,-0.01458 +42,Oil and gas extraction,0.00000,0.00000,2110,0.00000,0.15745,0.20043,0.18654,Mining,0.35333,0.33895,0.34943,0.27024,0.30797,0.30259,0.01367,0.03135,0.02565,corporate,0.01367,0.03135,0.02565,0.01367,0.03135,0.02565,-0.03634,-0.06390,-0.05568 +43,"Mining, except oil and gas",0.00000,0.00000,2120,0.00000,0.14174,0.18688,0.17231,Mining,0.23291,0.27902,0.27857,0.17814,0.25351,0.24123,0.00947,0.02814,0.02213,corporate,0.00947,0.02814,0.02213,0.00947,0.02814,0.02213,-0.02784,-0.05786,-0.04942 +44,Support activities for mining,0.00000,0.00000,2130,0.00000,0.17526,0.22043,0.20583,Mining,0.43964,0.37271,0.39259,0.33625,0.33864,0.33996,0.01926,0.03767,0.03174,corporate,0.01926,0.03767,0.03174,0.01926,0.03767,0.03174,-0.04661,-0.07909,-0.06950 +45,"Other services, except government",0.00000,0.00000,8100,0.00000,0.12802,0.17366,0.15888,"Other services, except government",0.13719,0.22881,0.22040,0.10493,0.20789,0.19085,0.00583,0.02503,0.01883,corporate,0.00583,0.02503,0.01883,0.00583,0.02503,0.01883,0.02263,-0.01973,-0.00940 +46,Legal services,0.00000,0.00000,5411,0.00000,0.17182,0.21850,0.20341,"Professional, scientific, and technical services",0.36481,0.31668,0.33220,0.27902,0.28774,0.28767,0.01917,0.03857,0.03232,corporate,0.01917,0.03857,0.03232,0.01917,0.03857,0.03232,0.01262,-0.03067,-0.02000 +47,"Miscellaneous professional, scientific, and technical services",0.00000,0.00000,5412,0.00000,0.20736,0.25179,0.23748,"Professional, scientific, and technical services",0.53438,0.40048,0.43268,0.40871,0.36387,0.37468,0.02952,0.04791,0.04199,corporate,0.02952,0.04791,0.04199,0.02952,0.04791,0.04199,-0.00838,-0.03593,-0.02866 +48,Computer systems design and related services,0.00000,0.00000,5415,0.00000,0.24663,0.29372,0.27855,"Professional, scientific, and technical services",0.62418,0.44195,0.48394,0.47739,0.40156,0.41906,0.04179,0.06110,0.05488,corporate,0.04179,0.06110,0.05488,0.04179,0.06110,0.05488,-0.00354,-0.03735,-0.02858 +49,Real estate,0.00000,0.00000,5310,0.00000,0.09673,0.14389,0.12875,Real estate and rental and leasing,-0.07892,0.15032,0.12106,-0.06036,0.13658,0.10483,-0.00315,0.01684,0.01042,corporate,-0.00315,0.01684,0.01042,-0.00315,0.01684,0.01042,0.01048,-0.00200,0.00100 +50,Rental and leasing services and lessors of intangible assets,0.00000,0.00000,5320,0.00000,0.20448,0.24983,0.23519,Real estate and rental and leasing,0.56428,0.42687,0.46014,0.43158,0.38785,0.39845,0.02820,0.04664,0.04070,corporate,0.02820,0.04664,0.04070,0.02820,0.04664,0.04070,-0.03988,-0.06816,-0.05969 +51,Retail trade,0.00000,0.00000,44RT,0.00000,0.12243,0.16918,0.15413,Retail trade,0.10084,0.20740,0.19610,0.07712,0.18844,0.16981,0.00461,0.02431,0.01798,corporate,0.00461,0.02431,0.01798,0.00461,0.02431,0.01798,0.01678,-0.01294,-0.00587 +52,Air transportation,0.00000,0.00000,4810,0.00000,0.15610,0.20011,0.18588,Transportation and warehousing,0.32850,0.32019,0.32927,0.25125,0.29092,0.28513,0.01359,0.03177,0.02590,corporate,0.01359,0.03177,0.02590,0.01359,0.03177,0.02590,-0.02086,-0.05437,-0.04514 +53,Railroad transportation,0.00000,0.00000,4820,0.00000,0.12842,0.17310,0.15859,Transportation and warehousing,0.14822,0.27730,0.26450,0.11336,0.25196,0.22904,0.00464,0.02281,0.01693,corporate,0.00464,0.02281,0.01693,0.00464,0.02281,0.01693,-0.08923,-0.13287,-0.12004 +54,Water transportation,0.00000,0.00000,4830,0.00000,0.15588,0.20158,0.18678,Transportation and warehousing,0.33286,0.32929,0.33782,0.25458,0.29919,0.29253,0.01341,0.03204,0.02602,corporate,0.01341,0.03204,0.02602,0.01341,0.03204,0.02602,-0.05063,-0.09139,-0.07972 +55,Truck transportation,0.00000,0.00000,4840,0.00000,0.19702,0.24279,0.22803,Transportation and warehousing,0.50763,0.39332,0.42184,0.38825,0.35737,0.36528,0.02624,0.04498,0.03895,corporate,0.02624,0.04498,0.03895,0.02624,0.04498,0.03895,-0.02515,-0.05386,-0.04572 +56,Transit and ground passenger transportation,0.00000,0.00000,4850,0.00000,0.15817,0.20436,0.18942,Transportation and warehousing,0.31311,0.30100,0.31025,0.23948,0.27349,0.26866,0.01479,0.03395,0.02776,corporate,0.01479,0.03395,0.02776,0.01479,0.03395,0.02776,-0.00132,-0.04545,-0.03428 +57,Pipeline transportation,0.00000,0.00000,4860,0.00000,0.14309,0.18575,0.17195,Transportation and warehousing,0.26123,0.30517,0.30569,0.19979,0.27727,0.26471,0.00925,0.02684,0.02116,corporate,0.00925,0.02684,0.02116,0.00925,0.02684,0.02116,-0.03661,-0.06576,-0.05714 +58,Other transportation and support activities,0.00000,0.00000,487S,0.00000,0.14991,0.19582,0.18095,Transportation and warehousing,0.29049,0.30848,0.31312,0.22218,0.28029,0.27115,0.01174,0.03053,0.02446,corporate,0.01174,0.03053,0.02446,0.01174,0.03053,0.02446,-0.05255,-0.09419,-0.08264 +59,Warehousing and storage,0.00000,0.00000,4930,0.00000,0.12760,0.17408,0.15905,Transportation and warehousing,0.13312,0.22308,0.21470,0.10181,0.20269,0.18592,0.00594,0.02549,0.01918,corporate,0.00594,0.02549,0.01918,0.00594,0.02549,0.01918,0.02634,-0.01886,-0.00815 +60,Utilities,0.00000,0.00000,2200,0.00000,0.13811,0.18417,0.16920,Utilities,0.22737,0.30573,0.30106,0.17390,0.27779,0.26070,0.00763,0.02622,0.02020,corporate,0.00763,0.02622,0.02020,0.00763,0.02622,0.02020,-0.10062,-0.15122,-0.13645 +61,Wholesale trade,0.00000,0.00000,4200,0.00000,0.13779,0.18416,0.16928,Wholesale trade,0.18909,0.24021,0.23791,0.14462,0.21825,0.20602,0.00922,0.02869,0.02245,corporate,0.00922,0.02869,0.02245,0.00922,0.02869,0.02245,0.00065,-0.01854,-0.01366 +62,Accommodation,0.00000,0.00000,7210,0.00000,0.00083,0.00111,0.00102,Accommodation and food services,0.00324,0.00344,0.00339,0.00324,0.00344,0.00339,0.00021,0.00028,0.00026,non-corporate,0.00021,0.00028,0.00026,0.00021,0.00028,0.00026,-0.00474,-0.00582,-0.00551 +63,Food services and drinking places,0.00000,0.00000,7220,0.00000,0.00389,0.00518,0.00480,Accommodation and food services,0.01670,0.01775,0.01749,0.01670,0.01775,0.01749,0.00097,0.00130,0.00120,non-corporate,0.00097,0.00130,0.00120,0.00097,0.00130,0.00120,-0.02273,-0.02792,-0.02644 +64,Administrative and support services,0.00000,0.00000,5610,0.00000,0.00690,0.00908,0.00843,Administrative and waste management services,0.03325,0.03490,0.03450,0.03325,0.03490,0.03450,0.00173,0.00227,0.00211,non-corporate,0.00173,0.00227,0.00211,0.00173,0.00227,0.00211,-0.03148,-0.03875,-0.03668 +65,Waste management and remediation services,0.00000,0.00000,5620,0.00000,0.00806,0.01136,0.01037,Administrative and waste management services,0.04042,0.04534,0.04406,0.04042,0.04534,0.04406,0.00202,0.00284,0.00260,non-corporate,0.00202,0.00284,0.00260,0.00202,0.00284,0.00260,-0.10288,-0.12163,-0.11646 +66,Farms,0.00000,0.00000,110C,0.00000,0.00511,0.00711,0.00651,"Agriculture, forestry, fishing, and hunting",0.02239,0.02491,0.02426,0.02239,0.02491,0.02426,0.00128,0.00178,0.00163,non-corporate,0.00128,0.00178,0.00163,0.00128,0.00178,0.00163,-0.05737,-0.06802,-0.06508 +67,"Forestry, fishing, and related activities",0.00000,0.00000,113F,0.00000,0.00186,0.00252,0.00233,"Agriculture, forestry, fishing, and hunting",0.00756,0.00814,0.00799,0.00756,0.00814,0.00799,0.00047,0.00063,0.00058,non-corporate,0.00047,0.00063,0.00058,0.00047,0.00063,0.00058,-0.01365,-0.01661,-0.01578 +68,"Performing arts, spectator sports, museums, and related activities",0.00000,0.00000,711A,0.00000,0.00837,0.01155,0.01062,"Arts, entertainment, and recreation",0.04071,0.04467,0.04371,0.04071,0.04467,0.04371,0.00210,0.00289,0.00266,non-corporate,0.00210,0.00289,0.00266,0.00210,0.00289,0.00266,-0.05845,-0.07270,-0.06874 +69,"Amusements, gambling, and recreation industries",0.00000,0.00000,7130,0.00000,0.00400,0.00562,0.00513,"Arts, entertainment, and recreation",0.01906,0.02134,0.02073,0.01906,0.02134,0.02073,0.00100,0.00141,0.00128,non-corporate,0.00100,0.00141,0.00128,0.00100,0.00141,0.00128,-0.04021,-0.04936,-0.04676 +70,Construction,0.00000,0.00000,2300,0.00000,0.00376,0.00504,0.00466,Construction,0.01618,0.01732,0.01703,0.01618,0.01732,0.01703,0.00094,0.00126,0.00117,non-corporate,0.00094,0.00126,0.00117,0.00094,0.00126,0.00117,-0.02410,-0.02939,-0.02790 +71,Educational services,0.00000,0.00000,6100,0.00000,0.00173,0.00230,0.00213,Educational services,0.00728,0.00768,0.00758,0.00728,0.00768,0.00758,0.00043,0.00058,0.00053,non-corporate,0.00043,0.00058,0.00053,0.00043,0.00058,0.00053,-0.00976,-0.01198,-0.01135 +72,Credit intermediation and related activities,0.00000,0.00000,5220,0.00000,0.00591,0.00779,0.00723,Finance and insurance,0.02678,0.02818,0.02784,0.02678,0.02818,0.02784,0.00148,0.00195,0.00181,non-corporate,0.00148,0.00195,0.00181,0.00148,0.00195,0.00181,-0.02770,-0.03412,-0.03229 +73,"Securities, commodity contracts, and investments",0.00000,0.00000,5230,0.00000,0.00162,0.00213,0.00198,Finance and insurance,0.00649,0.00680,0.00672,0.00649,0.00680,0.00672,0.00041,0.00053,0.00050,non-corporate,0.00041,0.00053,0.00050,0.00041,0.00053,0.00050,-0.00721,-0.00887,-0.00840 +74,Insurance carriers and related activities,0.00000,0.00000,5240,0.00000,0.00403,0.00526,0.00490,Finance and insurance,0.01736,0.01806,0.01790,0.01736,0.01806,0.01790,0.00101,0.00132,0.00123,non-corporate,0.00101,0.00132,0.00123,0.00101,0.00132,0.00123,-0.01488,-0.01834,-0.01736 +75,"Funds, trusts, and other financial vehicles",0.00000,0.00000,5250,0.00000,0.00022,0.00030,0.00028,Finance and insurance,0.00087,0.00092,0.00091,0.00087,0.00092,0.00091,0.00006,0.00007,0.00007,non-corporate,0.00006,0.00007,0.00007,0.00006,0.00007,0.00007,-0.00130,-0.00160,-0.00152 +76,Ambulatory health care services,0.00000,0.00000,6210,0.00000,0.00503,0.00667,0.00619,Health care and social assistance,0.02260,0.02386,0.02355,0.02260,0.02386,0.02355,0.00126,0.00167,0.00155,non-corporate,0.00126,0.00167,0.00155,0.00126,0.00167,0.00155,-0.02742,-0.03367,-0.03189 +77,Hospitals,0.00000,0.00000,622H,0.00000,0.00298,0.00395,0.00366,Health care and social assistance,0.01284,0.01352,0.01335,0.01284,0.01352,0.01335,0.00074,0.00099,0.00092,non-corporate,0.00074,0.00099,0.00092,0.00074,0.00099,0.00092,-0.01651,-0.02028,-0.01921 +78,Nursing and residential care facilities,0.00000,0.00000,6230,0.00000,0.00280,0.00377,0.00348,Health care and social assistance,0.01214,0.01294,0.01274,0.01214,0.01294,0.01274,0.00070,0.00094,0.00087,non-corporate,0.00070,0.00094,0.00087,0.00070,0.00094,0.00087,-0.01822,-0.02234,-0.02117 +79,Social assistance,0.00000,0.00000,6240,0.00000,0.00276,0.00373,0.00344,Health care and social assistance,0.01192,0.01281,0.01258,0.01192,0.01281,0.01258,0.00069,0.00093,0.00086,non-corporate,0.00069,0.00093,0.00086,0.00069,0.00093,0.00086,-0.01882,-0.02310,-0.02188 +80,Publishing industries (including software),0.00000,0.00000,5110,0.00000,0.00826,0.01114,0.01030,Information,0.03862,0.04154,0.04087,0.03862,0.04154,0.04087,0.00207,0.00279,0.00258,non-corporate,0.00207,0.00279,0.00258,0.00207,0.00279,0.00258,-0.04366,-0.05473,-0.05168 +81,Motion picture and sound recording industries,0.00000,0.00000,5120,0.00000,0.01803,0.02365,0.02200,Information,0.09024,0.09478,0.09373,0.09024,0.09478,0.09373,0.00451,0.00592,0.00551,non-corporate,0.00451,0.00592,0.00551,0.00451,0.00592,0.00551,-0.12131,-0.14486,-0.13833 +82,Broadcasting and telecommunications,0.00000,0.00000,5130,0.00000,0.00960,0.01324,0.01215,Information,0.05028,0.05520,0.05392,0.05028,0.05520,0.05392,0.00240,0.00332,0.00304,non-corporate,0.00240,0.00332,0.00304,0.00240,0.00332,0.00304,-0.09718,-0.11651,-0.11112 +83,Information and data processing services,0.00000,0.00000,5140,0.00000,0.00686,0.00899,0.00836,Information,0.03539,0.03698,0.03660,0.03539,0.03698,0.03660,0.00172,0.00225,0.00209,non-corporate,0.00172,0.00225,0.00209,0.00172,0.00225,0.00209,-0.02909,-0.03564,-0.03378 +84,Management of companies and enterprises,0.00000,0.00000,5500,0.00000,0.00229,0.00301,0.00280,Management of companies and enterprises,0.00958,0.01004,0.00993,0.00958,0.01004,0.00993,0.00057,0.00075,0.00070,non-corporate,0.00057,0.00075,0.00070,0.00057,0.00075,0.00070,-0.01000,-0.01228,-0.01163 +85,"Food, beverage, and tobacco products",0.00000,0.00000,311A,0.00000,0.00347,0.00467,0.00431,Manufacturing,0.01481,0.01600,0.01569,0.01481,0.01600,0.01569,0.00087,0.00117,0.00108,non-corporate,0.00087,0.00117,0.00108,0.00087,0.00117,0.00108,-0.02326,-0.02851,-0.02702 +86,Textile mills and textile product mills,0.00000,0.00000,313T,0.00000,0.00311,0.00419,0.00387,Manufacturing,0.01309,0.01417,0.01389,0.01309,0.01417,0.01389,0.00078,0.00105,0.00097,non-corporate,0.00078,0.00105,0.00097,0.00078,0.00105,0.00097,-0.02147,-0.02631,-0.02494 +87,Apparel and leather and allied products,0.00000,0.00000,315A,0.00000,0.00165,0.00223,0.00206,Manufacturing,0.00658,0.00714,0.00700,0.00658,0.00714,0.00700,0.00041,0.00056,0.00051,non-corporate,0.00041,0.00056,0.00051,0.00041,0.00056,0.00051,-0.01161,-0.01416,-0.01344 +88,Wood products,0.00000,0.00000,3210,0.00000,0.00282,0.00379,0.00350,Manufacturing,0.01175,0.01269,0.01245,0.01175,0.01269,0.01245,0.00071,0.00095,0.00088,non-corporate,0.00071,0.00095,0.00088,0.00071,0.00095,0.00088,-0.01898,-0.02324,-0.02203 +89,Paper products,0.00000,0.00000,3220,0.00000,0.00465,0.00628,0.00579,Manufacturing,0.02122,0.02295,0.02251,0.02122,0.02295,0.02251,0.00116,0.00157,0.00145,non-corporate,0.00116,0.00157,0.00145,0.00116,0.00157,0.00145,-0.03295,-0.04029,-0.03821 +90,Printing and related support activities,0.00000,0.00000,3230,0.00000,0.00477,0.00640,0.00591,Manufacturing,0.02198,0.02360,0.02319,0.02198,0.02360,0.02319,0.00119,0.00160,0.00148,non-corporate,0.00119,0.00160,0.00148,0.00119,0.00160,0.00148,-0.03031,-0.03718,-0.03523 +91,Petroleum and coal products,0.00000,0.00000,3240,0.00000,0.00317,0.00427,0.00394,Manufacturing,0.01345,0.01453,0.01425,0.01345,0.01453,0.01425,0.00079,0.00107,0.00099,non-corporate,0.00079,0.00107,0.00099,0.00079,0.00107,0.00099,-0.02205,-0.02702,-0.02561 +92,Chemical products,0.00000,0.00000,3250,0.00000,0.00179,0.00241,0.00222,Manufacturing,0.00886,0.00953,0.00936,0.00886,0.00953,0.00936,0.00045,0.00060,0.00056,non-corporate,0.00045,0.00060,0.00056,0.00045,0.00060,0.00056,-0.01191,-0.01459,-0.01383 +93,Plastics and rubber products,0.00000,0.00000,3260,0.00000,0.00384,0.00517,0.00477,Manufacturing,0.01706,0.01842,0.01807,0.01706,0.01842,0.01807,0.00096,0.00129,0.00119,non-corporate,0.00096,0.00129,0.00119,0.00096,0.00129,0.00119,-0.02537,-0.03113,-0.02950 +94,Nonmetallic mineral products,0.00000,0.00000,3270,0.00000,0.00329,0.00442,0.00408,Manufacturing,0.01411,0.01518,0.01490,0.01411,0.01518,0.01490,0.00082,0.00111,0.00102,non-corporate,0.00082,0.00111,0.00102,0.00082,0.00111,0.00102,-0.02131,-0.02616,-0.02479 +95,Primary metals,0.00000,0.00000,3310,0.00000,0.00436,0.00588,0.00543,Manufacturing,0.01888,0.02043,0.02003,0.01888,0.02043,0.02003,0.00109,0.00147,0.00136,non-corporate,0.00109,0.00147,0.00136,0.00109,0.00147,0.00136,-0.03091,-0.03771,-0.03579 +96,Fabricated metal products,0.00000,0.00000,3320,0.00000,0.00456,0.00612,0.00565,Manufacturing,0.02019,0.02173,0.02134,0.02019,0.02173,0.02134,0.00114,0.00153,0.00141,non-corporate,0.00114,0.00153,0.00141,0.00114,0.00153,0.00141,-0.02940,-0.03603,-0.03415 +97,Machinery,0.00000,0.00000,3330,0.00000,0.00325,0.00435,0.00402,Manufacturing,0.01431,0.01540,0.01513,0.01431,0.01540,0.01513,0.00081,0.00109,0.00101,non-corporate,0.00081,0.00109,0.00101,0.00081,0.00109,0.00101,-0.02080,-0.02545,-0.02413 +98,Computer and electronic products,0.00000,0.00000,3340,0.00000,0.00310,0.00413,0.00382,Manufacturing,0.01486,0.01582,0.01558,0.01486,0.01582,0.01558,0.00078,0.00103,0.00096,non-corporate,0.00078,0.00103,0.00096,0.00078,0.00103,0.00096,-0.01791,-0.02190,-0.02077 +99,"Electrical equipment, appliances, and components",0.00000,0.00000,3350,0.00000,0.00227,0.00304,0.00281,Manufacturing,0.00968,0.01041,0.01022,0.00968,0.01041,0.01022,0.00057,0.00076,0.00070,non-corporate,0.00057,0.00076,0.00070,0.00057,0.00076,0.00070,-0.01485,-0.01809,-0.01717 +100,"Motor vehicles, bodies and trailers, and parts",0.00000,0.00000,336M,0.00000,0.00421,0.00562,0.00520,Manufacturing,0.01904,0.02040,0.02005,0.01904,0.02040,0.02005,0.00105,0.00141,0.00130,non-corporate,0.00105,0.00141,0.00130,0.00105,0.00141,0.00130,-0.02562,-0.03141,-0.02977 +101,Other transportation equipment,0.00000,0.00000,336O,0.00000,0.00193,0.00258,0.00239,Manufacturing,0.00809,0.00872,0.00856,0.00809,0.00872,0.00856,0.00048,0.00065,0.00060,non-corporate,0.00048,0.00065,0.00060,0.00048,0.00065,0.00060,-0.01167,-0.01432,-0.01357 +102,Furniture and related products,0.00000,0.00000,3370,0.00000,0.00306,0.00409,0.00378,Manufacturing,0.01296,0.01391,0.01367,0.01296,0.01391,0.01367,0.00077,0.00102,0.00095,non-corporate,0.00077,0.00102,0.00095,0.00077,0.00102,0.00095,-0.01865,-0.02288,-0.02168 +103,Miscellaneous manufacturing,0.00000,0.00000,338A,0.00000,0.00230,0.00307,0.00284,Manufacturing,0.01023,0.01096,0.01078,0.01023,0.01096,0.01078,0.00058,0.00077,0.00071,non-corporate,0.00058,0.00077,0.00071,0.00058,0.00077,0.00071,-0.01384,-0.01697,-0.01608 +104,Oil and gas extraction,0.00000,0.00000,2110,0.00000,0.00557,0.00775,0.00709,Mining,0.03078,0.03405,0.03317,0.03078,0.03405,0.03317,0.00140,0.00194,0.00177,non-corporate,0.00140,0.00194,0.00177,0.00140,0.00194,0.00177,-0.04809,-0.05945,-0.05621 +105,"Mining, except oil and gas",0.00000,0.00000,2120,0.00000,0.00455,0.00631,0.00578,Mining,0.02163,0.02390,0.02329,0.02163,0.02390,0.02329,0.00114,0.00158,0.00145,non-corporate,0.00114,0.00158,0.00145,0.00114,0.00158,0.00145,-0.04083,-0.05003,-0.04742 +106,Support activities for mining,0.00000,0.00000,2130,0.00000,0.00837,0.01132,0.01044,Mining,0.04426,0.04772,0.04683,0.04426,0.04772,0.04683,0.00210,0.00283,0.00261,non-corporate,0.00210,0.00283,0.00261,0.00210,0.00283,0.00261,-0.06005,-0.07347,-0.06967 +107,"Other services, except government",0.00000,0.00000,8100,0.00000,0.00234,0.00315,0.00291,"Other services, except government",0.01026,0.01098,0.01080,0.01026,0.01098,0.01080,0.00059,0.00079,0.00073,non-corporate,0.00059,0.00079,0.00073,0.00059,0.00079,0.00073,-0.01564,-0.01918,-0.01817 +108,Legal services,0.00000,0.00000,5411,0.00000,0.00528,0.00693,0.00644,"Professional, scientific, and technical services",0.02324,0.02430,0.02405,0.02324,0.02430,0.02405,0.00132,0.00173,0.00161,non-corporate,0.00132,0.00173,0.00161,0.00132,0.00173,0.00161,-0.02300,-0.02831,-0.02680 +109,"Miscellaneous professional, scientific, and technical services",0.00000,0.00000,5412,0.00000,0.00575,0.00760,0.00705,"Professional, scientific, and technical services",0.02856,0.03011,0.02973,0.02856,0.03011,0.02973,0.00144,0.00190,0.00177,non-corporate,0.00144,0.00190,0.00177,0.00144,0.00190,0.00177,-0.02720,-0.03359,-0.03178 +110,Computer systems design and related services,0.00000,0.00000,5415,0.00000,0.00909,0.01177,0.01098,"Professional, scientific, and technical services",0.04251,0.04397,0.04364,0.04251,0.04397,0.04364,0.00227,0.00295,0.00275,non-corporate,0.00227,0.00295,0.00275,0.00227,0.00295,0.00275,-0.02812,-0.03472,-0.03284 +111,Real estate,0.00000,0.00000,5310,0.00000,0.00014,0.00020,0.00018,Real estate and rental and leasing,0.00056,0.00062,0.00061,0.00056,0.00062,0.00061,0.00004,0.00005,0.00005,non-corporate,0.00004,0.00005,0.00005,0.00004,0.00005,0.00005,-0.00162,-0.00194,-0.00185 +112,Rental and leasing services and lessors of intangible assets,0.00000,0.00000,5320,0.00000,0.00932,0.01241,0.01149,Real estate and rental and leasing,0.04941,0.05244,0.05167,0.04941,0.05244,0.05167,0.00233,0.00311,0.00288,non-corporate,0.00233,0.00311,0.00288,0.00233,0.00311,0.00288,-0.05082,-0.06265,-0.05929 +113,Retail trade,0.00000,0.00000,44RT,0.00000,0.00140,0.00186,0.00172,Retail trade,0.00540,0.00577,0.00567,0.00540,0.00577,0.00567,0.00035,0.00046,0.00043,non-corporate,0.00035,0.00046,0.00043,0.00035,0.00046,0.00043,-0.00763,-0.00937,-0.00888 +114,Air transportation,0.00000,0.00000,4810,0.00000,0.00524,0.00721,0.00662,Transportation and warehousing,0.02700,0.02953,0.02886,0.02700,0.02953,0.02886,0.00131,0.00180,0.00166,non-corporate,0.00131,0.00180,0.00166,0.00131,0.00180,0.00166,-0.04115,-0.05075,-0.04802 +115,Railroad transportation,0.00000,0.00000,4820,0.00000,0.00681,0.00997,0.00901,Transportation and warehousing,0.03812,0.04431,0.04266,0.03812,0.04431,0.04266,0.00170,0.00250,0.00226,non-corporate,0.00170,0.00250,0.00226,0.00170,0.00250,0.00226,-0.10506,-0.12549,-0.11981 +116,Water transportation,0.00000,0.00000,4830,0.00000,0.00799,0.01097,0.01007,Transportation and warehousing,0.04143,0.04531,0.04429,0.04143,0.04531,0.04429,0.00200,0.00275,0.00252,non-corporate,0.00200,0.00275,0.00252,0.00200,0.00275,0.00252,-0.07032,-0.08560,-0.08129 +117,Truck transportation,0.00000,0.00000,4840,0.00000,0.00832,0.01102,0.01022,Transportation and warehousing,0.04174,0.04409,0.04350,0.04174,0.04409,0.04350,0.00208,0.00276,0.00256,non-corporate,0.00208,0.00276,0.00256,0.00208,0.00276,0.00256,-0.04132,-0.05100,-0.04824 +118,Transit and ground passenger transportation,0.00000,0.00000,4850,0.00000,0.00531,0.00713,0.00659,Transportation and warehousing,0.02431,0.02602,0.02559,0.02431,0.02602,0.02559,0.00133,0.00179,0.00165,non-corporate,0.00133,0.00179,0.00165,0.00133,0.00179,0.00165,-0.03537,-0.04299,-0.04084 +119,Pipeline transportation,0.00000,0.00000,4860,0.00000,0.00487,0.00690,0.00628,Transportation and warehousing,0.02707,0.03047,0.02955,0.02707,0.03047,0.02955,0.00122,0.00173,0.00157,non-corporate,0.00122,0.00173,0.00157,0.00122,0.00173,0.00157,-0.04984,-0.06153,-0.05820 +120,Other transportation and support activities,0.00000,0.00000,487S,0.00000,0.00690,0.00964,0.00882,Transportation and warehousing,0.03479,0.03866,0.03765,0.03479,0.03866,0.03765,0.00173,0.00241,0.00221,non-corporate,0.00173,0.00241,0.00221,0.00173,0.00241,0.00221,-0.07458,-0.08924,-0.08516 +121,Warehousing and storage,0.00000,0.00000,4930,0.00000,0.00235,0.00314,0.00291,Transportation and warehousing,0.00979,0.01044,0.01028,0.00979,0.01044,0.01028,0.00059,0.00079,0.00073,non-corporate,0.00059,0.00079,0.00073,0.00059,0.00079,0.00073,-0.01482,-0.01813,-0.01719 +122,Utilities,0.00000,0.00000,2200,0.00000,0.00875,0.01252,0.01138,Utilities,0.04812,0.05469,0.05295,0.04812,0.05469,0.05295,0.00219,0.00313,0.00285,non-corporate,0.00219,0.00313,0.00285,0.00219,0.00313,0.00285,-0.11844,-0.14148,-0.13508 +123,Wholesale trade,0.00000,0.00000,4200,0.00000,0.00187,0.00247,0.00229,Wholesale trade,0.00724,0.00773,0.00761,0.00724,0.00773,0.00761,0.00047,0.00062,0.00057,non-corporate,0.00047,0.00062,0.00057,0.00047,0.00062,0.00057,-0.00948,-0.01165,-0.01104 +124,Accommodation and food services,0.00000,0.00000,,0.00000,0.11955,0.16650,0.15138,Accommodation and food services,0.08260,0.20286,0.18960,0.06318,0.18432,0.16418,0.00366,0.02344,0.01708,corporate,0.00366,0.02344,0.01708,0.00366,0.02344,0.01708,0.01803,-0.01364,-0.00612 +125,Administrative and waste management services,0.00000,0.00000,,0.00000,0.18174,0.22797,0.21303,Administrative and waste management services,0.43875,0.36097,0.38245,0.33557,0.32797,0.33117,0.02167,0.04064,0.03452,corporate,0.02167,0.04064,0.03452,0.02167,0.04064,0.03452,-0.03600,-0.07389,-0.06362 +126,"Agriculture, forestry, fishing, and hunting",0.00000,0.00000,,0.00000,0.12976,0.17688,0.16171,"Agriculture, forestry, fishing, and hunting",0.15001,0.24427,0.23577,0.11473,0.22194,0.20416,0.00616,0.02561,0.01936,corporate,0.00616,0.02561,0.01936,0.00616,0.02561,0.01936,-0.05198,-0.07700,-0.06975 +127,"Arts, entertainment, and recreation",0.00000,0.00000,,0.00000,0.14203,0.18823,0.17332,"Arts, entertainment, and recreation",0.23414,0.28036,0.28009,0.17908,0.25474,0.24254,0.00958,0.02861,0.02248,corporate,0.00958,0.02861,0.02248,0.00958,0.02861,0.02248,-0.02658,-0.06250,-0.05267 +130,Finance and insurance,0.00000,0.00000,,0.00000,0.17588,0.22221,0.20725,Finance and insurance,0.38604,0.32704,0.34461,0.29526,0.29714,0.29841,0.02033,0.03958,0.03337,corporate,0.02033,0.03958,0.03337,0.02033,0.03958,0.03337,0.00759,-0.03196,-0.02208 +131,Health care and social assistance,0.00000,0.00000,,0.00000,0.13884,0.18511,0.17013,Health care and social assistance,0.20257,0.25244,0.25088,0.15493,0.22937,0.21725,0.00914,0.02851,0.02225,corporate,0.00914,0.02851,0.02225,0.00914,0.02851,0.02225,0.02255,-0.02537,-0.01384 +132,Information,0.00000,0.00000,,0.00000,0.17368,0.22095,0.20566,Information,0.42961,0.37123,0.38969,0.32858,0.33730,0.33745,0.01881,0.03789,0.03174,corporate,0.01881,0.03789,0.03174,0.01881,0.03789,0.03174,-0.07252,-0.11829,-0.10523 +133,Management of companies and enterprises,0.00000,0.00000,,0.00000,0.14992,0.19618,0.18126,Management of companies and enterprises,0.25340,0.26444,0.26914,0.19381,0.24027,0.23306,0.01280,0.03226,0.02599,corporate,0.01280,0.03226,0.02599,0.01280,0.03226,0.02599,0.02343,-0.01285,-0.00431 +134,Manufacturing,0.00000,0.00000,,0.00000,0.15905,0.20348,0.18919,Manufacturing,0.31560,0.29923,0.30908,0.24138,0.27188,0.26764,0.01510,0.03368,0.02771,corporate,0.01510,0.03368,0.02771,0.01510,0.03368,0.02771,-0.00408,-0.02717,-0.02119 +135,Mining,0.00000,0.00000,,0.00000,0.15689,0.20032,0.18628,Mining,0.34528,0.33382,0.34371,0.26408,0.30331,0.29763,0.01359,0.03145,0.02569,corporate,0.01359,0.03145,0.02569,0.01359,0.03145,0.02569,-0.03609,-0.06435,-0.05599 +136,"Other services, except government",0.00000,0.00000,,0.00000,0.12802,0.17366,0.15888,"Other services, except government",0.13719,0.22881,0.22040,0.10493,0.20789,0.19085,0.00583,0.02503,0.01883,corporate,0.00583,0.02503,0.01883,0.00583,0.02503,0.01883,0.02263,-0.01973,-0.00940 +137,"Professional, scientific, and technical services",0.00000,0.00000,,0.00000,0.21048,0.25542,0.24094,"Professional, scientific, and technical services",0.53885,0.40160,0.43443,0.41213,0.36489,0.37619,0.03054,0.04912,0.04315,corporate,0.03054,0.04912,0.04315,0.03054,0.04912,0.04315,-0.00637,-0.03579,-0.02809 +138,Real estate and rental and leasing,0.00000,0.00000,,0.00000,0.10630,0.15330,0.13820,Real estate and rental and leasing,-0.00895,0.17385,0.15136,-0.00685,0.15796,0.13107,-0.00037,0.01949,0.01311,corporate,-0.00037,0.01949,0.01311,-0.00037,0.01949,0.01311,0.00601,-0.00787,-0.00439 +140,Transportation and warehousing,0.00000,0.00000,,0.00000,0.14772,0.19233,0.17789,Transportation and warehousing,0.28449,0.31020,0.31366,0.21759,0.28184,0.27161,0.01088,0.02918,0.02327,corporate,0.01088,0.02918,0.02327,0.01088,0.02918,0.02327,-0.04854,-0.08601,-0.07537 +143,Accommodation and food services,0.00000,0.00000,,0.00000,0.00172,0.00229,0.00212,Accommodation and food services,0.00689,0.00732,0.00721,0.00689,0.00732,0.00721,0.00043,0.00057,0.00053,non-corporate,0.00043,0.00057,0.00053,0.00043,0.00057,0.00053,-0.00996,-0.01223,-0.01159 +144,Administrative and waste management services,0.00000,0.00000,,0.00000,0.00729,0.00986,0.00910,Administrative and waste management services,0.03564,0.03838,0.03768,0.03564,0.03838,0.03768,0.00183,0.00247,0.00228,non-corporate,0.00183,0.00247,0.00228,0.00183,0.00247,0.00228,-0.05583,-0.06702,-0.06389 +145,"Agriculture, forestry, fishing, and hunting",0.00000,0.00000,,0.00000,0.00444,0.00615,0.00564,"Agriculture, forestry, fishing, and hunting",0.01911,0.02119,0.02065,0.01911,0.02119,0.02065,0.00111,0.00154,0.00141,non-corporate,0.00111,0.00154,0.00141,0.00111,0.00154,0.00141,-0.04827,-0.05731,-0.05481 +146,"Arts, entertainment, and recreation",0.00000,0.00000,,0.00000,0.00598,0.00830,0.00761,"Arts, entertainment, and recreation",0.02875,0.03179,0.03102,0.02875,0.03179,0.03102,0.00150,0.00208,0.00191,non-corporate,0.00150,0.00208,0.00191,0.00150,0.00208,0.00191,-0.04846,-0.05992,-0.05671 +149,Finance and insurance,0.00000,0.00000,,0.00000,0.00270,0.00355,0.00329,Finance and insurance,0.01113,0.01168,0.01154,0.01113,0.01168,0.01154,0.00067,0.00089,0.00082,non-corporate,0.00067,0.00089,0.00082,0.00067,0.00089,0.00082,-0.01216,-0.01497,-0.01417 +150,Health care and social assistance,0.00000,0.00000,,0.00000,0.00343,0.00456,0.00422,Health care and social assistance,0.01495,0.01577,0.01556,0.01495,0.01577,0.01556,0.00086,0.00114,0.00106,non-corporate,0.00086,0.00114,0.00106,0.00086,0.00114,0.00106,-0.01925,-0.02364,-0.02240 +151,Information,0.00000,0.00000,,0.00000,0.01101,0.01490,0.01374,Information,0.05664,0.06113,0.06000,0.05664,0.06113,0.06000,0.00275,0.00373,0.00344,non-corporate,0.00275,0.00373,0.00344,0.00275,0.00373,0.00344,-0.09460,-0.11350,-0.10824 +152,Management of companies and enterprises,0.00000,0.00000,,0.00000,0.00229,0.00301,0.00280,Management of companies and enterprises,0.00958,0.01004,0.00993,0.00958,0.01004,0.00993,0.00057,0.00075,0.00070,non-corporate,0.00057,0.00075,0.00070,0.00057,0.00075,0.00070,-0.01000,-0.01228,-0.01163 +153,Manufacturing,0.00000,0.00000,,0.00000,0.00301,0.00403,0.00373,Manufacturing,0.01359,0.01463,0.01436,0.01359,0.01463,0.01436,0.00075,0.00101,0.00093,non-corporate,0.00075,0.00101,0.00093,0.00075,0.00101,0.00093,-0.01955,-0.02394,-0.02270 +154,Mining,0.00000,0.00000,,0.00000,0.00566,0.00784,0.00718,Mining,0.03049,0.03362,0.03279,0.03049,0.03362,0.03279,0.00142,0.00196,0.00180,non-corporate,0.00142,0.00196,0.00180,0.00142,0.00196,0.00180,-0.04806,-0.05929,-0.05609 +155,"Other services, except government",0.00000,0.00000,,0.00000,0.00234,0.00315,0.00291,"Other services, except government",0.01026,0.01098,0.01080,0.01026,0.01098,0.01080,0.00059,0.00079,0.00073,non-corporate,0.00059,0.00079,0.00073,0.00059,0.00079,0.00073,-0.01564,-0.01918,-0.01817 +156,"Professional, scientific, and technical services",0.00000,0.00000,,0.00000,0.00609,0.00802,0.00745,"Professional, scientific, and technical services",0.02974,0.03124,0.03088,0.02974,0.03124,0.03088,0.00152,0.00201,0.00186,non-corporate,0.00152,0.00201,0.00186,0.00152,0.00201,0.00186,-0.02697,-0.03329,-0.03150 +157,Real estate and rental and leasing,0.00000,0.00000,,0.00000,0.00031,0.00042,0.00039,Real estate and rental and leasing,0.00121,0.00131,0.00129,0.00121,0.00131,0.00129,0.00008,0.00011,0.00010,non-corporate,0.00008,0.00011,0.00010,0.00008,0.00011,0.00010,-0.00251,-0.00303,-0.00289 +159,Transportation and warehousing,0.00000,0.00000,,0.00000,0.00624,0.00875,0.00799,Transportation and warehousing,0.03252,0.03623,0.03525,0.03252,0.03623,0.03525,0.00156,0.00219,0.00200,non-corporate,0.00156,0.00219,0.00200,0.00156,0.00219,0.00200,-0.06538,-0.07898,-0.07516 +162,Overall,0.00000,0.00000,,0.00000,0.14492,0.19076,0.17597,Overall,0.24417,0.27601,0.27773,0.18675,0.25078,0.24050,0.01071,0.02974,0.02361,corporate,0.01071,0.02974,0.02361,0.01071,0.02974,0.02361,-0.01942,-0.05089,-0.04249 +163,Overall,0.00000,0.00000,,0.00000,0.00165,0.00224,0.00207,Overall,0.00676,0.00731,0.00717,0.00676,0.00731,0.00717,0.00041,0.00056,0.00052,non-corporate,0.00041,0.00056,0.00052,0.00041,0.00056,0.00052,-0.01281,-0.01552,-0.01476 diff --git a/example_output/reform_byasset_expected.csv b/example_output/reform_byasset_expected.csv index e84a47ba..922c65c9 100644 --- a/example_output/reform_byasset_expected.csv +++ b/example_output/reform_byasset_expected.csv @@ -1,229 +1,229 @@ ,index,Y,asset_name,assets,bea_asset_code,delta,eatr_d,eatr_e,eatr_mix,major_asset_group,metr_d,metr_e,metr_mix,mettr_d,mettr_e,mettr_mix,minor_asset_group,rho_d,rho_e,rho_mix,tax_treat,tax_wedge_d,tax_wedge_e,tax_wedge_mix,ucc_d,ucc_e,ucc_mix,z_d,z_e,z_mix -0,0,3.00000,Prepackaged software,72268924051.90823,ENS1,0.55000,0.60565,0.70705,0.67455,Equipment,0.67226,0.70868,0.69872,0.74932,0.73529,0.73910,Computers and Software,0.15866,0.19909,0.18614,corporate,0.11889,0.14639,0.13757,0.70866,0.74909,0.73614,0.96827,0.94839,0.95462 -1,1,3.00000,Custom software,197240164682.67053,ENS2,0.33000,0.44432,0.54113,0.51006,Equipment,0.52304,0.60821,0.58621,0.63519,0.64401,0.64167,Computers and Software,0.10902,0.14804,0.13553,corporate,0.06925,0.09534,0.08696,0.43902,0.47804,0.46553,0.96827,0.94839,0.95462 -2,2,5.00000,Mainframes,17413293619.14563,EP1A,0.46330,0.54745,0.65036,0.61739,Equipment,0.63056,0.68070,0.66728,0.71743,0.70988,0.71187,Computers and Software,0.14075,0.18165,0.16855,corporate,0.10098,0.12895,0.11999,0.60405,0.64495,0.63185,0.95786,0.93250,0.94037 -3,3,5.00000,PCs,53550810952.93879,EP1B,0.46330,0.54745,0.65036,0.61739,Equipment,0.63056,0.68070,0.66728,0.71743,0.70988,0.71187,Computers and Software,0.14075,0.18165,0.16855,corporate,0.10098,0.12895,0.11999,0.60405,0.64495,0.63185,0.95786,0.93250,0.94037 -4,4,5.00000,DASDs,0.00000,EP1C,0.46330,0.54745,0.65036,0.61739,Equipment,0.63056,0.68070,0.66728,0.71743,0.70988,0.71187,Computers and Software,0.14075,0.18165,0.16855,corporate,0.10098,0.12895,0.11999,0.60405,0.64495,0.63185,0.95786,0.93250,0.94037 -5,5,5.00000,Printers,9260043911.05631,EP1D,0.46330,0.54745,0.65036,0.61739,Equipment,0.63056,0.68070,0.66728,0.71743,0.70988,0.71187,Computers and Software,0.14075,0.18165,0.16855,corporate,0.10098,0.12895,0.11999,0.60405,0.64495,0.63185,0.95786,0.93250,0.94037 -6,6,5.00000,Terminals,12396994618.63852,EP1E,0.46330,0.54745,0.65036,0.61739,Equipment,0.63056,0.68070,0.66728,0.71743,0.70988,0.71187,Computers and Software,0.14075,0.18165,0.16855,corporate,0.10098,0.12895,0.11999,0.60405,0.64495,0.63185,0.95786,0.93250,0.94037 -7,7,5.00000,Tape drives,0.00000,EP1F,0.46330,0.54745,0.65036,0.61739,Equipment,0.63056,0.68070,0.66728,0.71743,0.70988,0.71187,Computers and Software,0.14075,0.18165,0.16855,corporate,0.10098,0.12895,0.11999,0.60405,0.64495,0.63185,0.95786,0.93250,0.94037 -8,8,5.00000,Storage devices,7998988409.07232,EP1G,0.46330,0.54745,0.65036,0.61739,Equipment,0.63056,0.68070,0.66728,0.71743,0.70988,0.71187,Computers and Software,0.14075,0.18165,0.16855,corporate,0.10098,0.12895,0.11999,0.60405,0.64495,0.63185,0.95786,0.93250,0.94037 -9,9,5.00000,System integrators,28310184525.09714,EP1H,0.46330,0.54745,0.65036,0.61739,Equipment,0.63056,0.68070,0.66728,0.71743,0.70988,0.71187,Computers and Software,0.14075,0.18165,0.16855,corporate,0.10098,0.12895,0.11999,0.60405,0.64495,0.63185,0.95786,0.93250,0.94037 -10,10,7.00000,Special industrial machinery,277678587239.93805,EI40,0.10310,0.28148,0.37659,0.34600,Equipment,0.11741,0.40459,0.34059,0.32494,0.45899,0.42897,Industrial Machinery,0.05892,0.09741,0.08505,corporate,0.01914,0.04471,0.03648,0.16202,0.20051,0.18815,0.94254,0.90945,0.91960 -11,11,7.00000,General industrial equipment,476419502165.16602,EI50,0.10720,0.28460,0.37985,0.34921,Equipment,0.13155,0.41066,0.34817,0.33575,0.46450,0.43554,Industrial Machinery,0.05988,0.09841,0.08604,corporate,0.02010,0.04571,0.03747,0.16708,0.20561,0.19324,0.94254,0.90945,0.91960 -12,12,5.00000,Office and accounting equipment,7268611167.00189,EP12,0.31190,0.43477,0.53365,0.50193,Equipment,0.50981,0.60202,0.57842,0.62507,0.63839,0.63492,Instruments and Communications Equipment,0.10608,0.14574,0.13302,corporate,0.06631,0.09304,0.08446,0.41798,0.45764,0.44492,0.95786,0.93250,0.94037 -13,13,7.00000,Communications,498335724804.03143,EP20,0.11290,0.28893,0.38438,0.35369,Equipment,0.15047,0.41889,0.35843,0.35022,0.47198,0.44442,Instruments and Communications Equipment,0.06121,0.09981,0.08741,corporate,0.02144,0.04711,0.03885,0.17411,0.21271,0.20031,0.94254,0.90945,0.91960 -14,14,5.00000,Photocopy and related equipment,25020946205.42981,EP31,0.18000,0.33660,0.43197,0.40134,Equipment,0.31468,0.49324,0.45059,0.47583,0.53954,0.52422,Instruments and Communications Equipment,0.07588,0.11445,0.10207,corporate,0.03610,0.06175,0.05351,0.25588,0.29445,0.28207,0.95786,0.93250,0.94037 -15,15,7.00000,Nonelectro medical instruments,133227504585.58267,EP34,0.13500,0.30574,0.40195,0.37102,Equipment,0.21664,0.44875,0.39533,0.40083,0.49912,0.47637,Instruments and Communications Equipment,0.06638,0.10522,0.09275,corporate,0.02661,0.05251,0.04418,0.20138,0.24022,0.22775,0.94254,0.90945,0.91960 -16,16,7.00000,Electro medical instruments,75049828222.78802,EP35,0.13500,0.30574,0.40195,0.37102,Equipment,0.21664,0.44875,0.39533,0.40083,0.49912,0.47637,Instruments and Communications Equipment,0.06638,0.10522,0.09275,corporate,0.02661,0.05251,0.04418,0.20138,0.24022,0.22775,0.94254,0.90945,0.91960 -17,17,7.00000,Nonmedical instruments,108363933020.24872,EP36,0.13500,0.30574,0.40195,0.37102,Equipment,0.21664,0.44875,0.39533,0.40083,0.49912,0.47637,Instruments and Communications Equipment,0.06638,0.10522,0.09275,corporate,0.02661,0.05251,0.04418,0.20138,0.24022,0.22775,0.94254,0.90945,0.91960 -18,18,5.00000,Household furniture,8900871527.19684,EO11,0.13750,0.30497,0.39921,0.36893,Equipment,0.21385,0.44429,0.39110,0.39870,0.49506,0.47271,Office and Residential Equipment,0.06615,0.10437,0.09210,corporate,0.02637,0.05167,0.04354,0.20365,0.24187,0.22960,0.95786,0.93250,0.94037 -19,19,7.00000,Other furniture,201600171017.50803,EO12,0.11790,0.29273,0.38835,0.35761,Equipment,0.16640,0.42592,0.36717,0.36241,0.47838,0.45199,Office and Residential Equipment,0.06238,0.10103,0.08862,corporate,0.02261,0.04833,0.04005,0.18028,0.21893,0.20652,0.94254,0.90945,0.91960 -20,20,5.00000,Household appliances,2759304252.31458,EO71,0.16500,0.32544,0.42041,0.38990,Equipment,0.28219,0.47698,0.43097,0.45097,0.52476,0.50723,Office and Residential Equipment,0.07244,0.11089,0.09855,corporate,0.03267,0.05819,0.04999,0.23744,0.27589,0.26355,0.95786,0.93250,0.94037 -21,21,7.00000,Service industry machinery,100661650547.22247,EO60,0.15280,0.31927,0.41610,0.38498,Equipment,0.26288,0.47066,0.42210,0.43620,0.51902,0.49955,Other Equipment,0.07054,0.10957,0.09704,corporate,0.03077,0.05687,0.04848,0.22334,0.26237,0.24984,0.94254,0.90945,0.91960 -22,22,7.00000,Other electrical,16821590672.86298,EO72,0.18340,0.34254,0.44043,0.40899,Equipment,0.33079,0.50451,0.46297,0.48814,0.54978,0.53495,Other Equipment,0.07770,0.11706,0.10443,corporate,0.03793,0.06436,0.05586,0.26110,0.30046,0.28783,0.94254,0.90945,0.91960 -23,23,7.00000,Other,219586535058.33942,EO80,0.14730,0.31509,0.41173,0.38067,Equipment,0.24918,0.46408,0.41409,0.42573,0.51304,0.49261,Other Equipment,0.06926,0.10822,0.09571,corporate,0.02948,0.05552,0.04715,0.21656,0.25552,0.24301,0.94254,0.90945,0.91960 -24,24,5.00000,Nuclear fuel,6455272413.33420,EI11,0.25000,0.38870,0.48593,0.45472,Equipment,0.43421,0.55744,0.52675,0.56725,0.59787,0.59017,Other Industrial Equipment,0.09191,0.13106,0.11850,corporate,0.05213,0.07835,0.06993,0.34191,0.38106,0.36850,0.95786,0.93250,0.94037 -25,25,7.00000,Other fabricated metals,117546642592.42761,EI12,0.09170,0.27281,0.36752,0.33706,Equipment,0.07556,0.38704,0.31854,0.29293,0.44304,0.40987,Other Industrial Equipment,0.05625,0.09462,0.08229,corporate,0.01648,0.04192,0.03373,0.14795,0.18632,0.17399,0.94254,0.90945,0.91960 -26,26,7.00000,Metalworking machinery,218890188223.75763,EI30,0.12250,0.29623,0.39201,0.36122,Equipment,0.18053,0.43225,0.37500,0.37322,0.48412,0.45877,Other Industrial Equipment,0.06346,0.10216,0.08973,corporate,0.02368,0.04946,0.04116,0.18596,0.22466,0.21223,0.94254,0.90945,0.91960 -27,27,15.00000,Electric transmission and distribution,423453356310.35504,EI60,0.05000,0.24668,0.34508,0.31336,Equipment,-0.07861,0.33878,0.25231,0.17501,0.39920,0.35252,Other Industrial Equipment,0.04821,0.08772,0.07500,corporate,0.00844,0.03502,0.02644,0.09821,0.13772,0.12500,0.87465,0.81498,0.83237 -28,28,7.00000,Farm tractors,24563500689.01743,EO21,0.14520,0.31349,0.41006,0.37902,Equipment,0.24382,0.46152,0.41097,0.42162,0.51072,0.48991,Other Industrial Equipment,0.06877,0.10771,0.09521,corporate,0.02899,0.05501,0.04664,0.21397,0.25291,0.24041,0.94254,0.90945,0.91960 -29,29,5.00000,Construction tractors,9895536358.92141,EO22,0.16330,0.32417,0.41909,0.38860,Equipment,0.27831,0.47507,0.42866,0.44800,0.52303,0.50523,Other Industrial Equipment,0.07205,0.11049,0.09815,corporate,0.03228,0.05779,0.04959,0.23535,0.27379,0.26145,0.95786,0.93250,0.94037 -30,30,7.00000,Other agricultural machinery,46750113836.64255,EO30,0.11790,0.29273,0.38835,0.35761,Equipment,0.16640,0.42592,0.36717,0.36241,0.47838,0.45199,Other Industrial Equipment,0.06238,0.10103,0.08862,corporate,0.02261,0.04833,0.04005,0.18028,0.21893,0.20652,0.94254,0.90945,0.91960 -31,31,5.00000,Other construction machinery,123582273311.10860,EO40,0.15500,0.31800,0.41270,0.38227,Equipment,0.25876,0.46555,0.41709,0.43305,0.51438,0.49521,Other Industrial Equipment,0.07015,0.10852,0.09621,corporate,0.03038,0.05582,0.04764,0.22515,0.26352,0.25121,0.95786,0.93250,0.94037 -32,32,7.00000,Mining and oilfield machinery,84858812348.82649,EO50,0.15000,0.31714,0.41388,0.38279,Equipment,0.25597,0.46733,0.41805,0.43092,0.51600,0.49605,Other Industrial Equipment,0.06989,0.10888,0.09637,corporate,0.03012,0.05618,0.04780,0.21989,0.25888,0.24637,0.94254,0.90945,0.91960 -33,33,15.00000,Steam engines,91645013950.18124,EI21,0.05160,0.24801,0.34651,0.31477,Equipment,-0.06953,0.34209,0.25658,0.18195,0.40220,0.35622,Transportation Equipment,0.04862,0.08816,0.07544,corporate,0.00885,0.03546,0.02687,0.10022,0.13976,0.12704,0.87465,0.81498,0.83237 -34,34,7.00000,Internal combustion engines,12363020746.63129,EI22,0.20630,0.35995,0.45864,0.42695,Equipment,0.37395,0.52714,0.48997,0.52116,0.57034,0.55833,Transportation Equipment,0.08306,0.12266,0.10995,corporate,0.04329,0.06996,0.06139,0.28936,0.32896,0.31625,0.94254,0.90945,0.91960 -35,35,5.00000,Light trucks (including utility vehicles),167619978534.97446,ET11,0.17250,0.33102,0.42619,0.39562,Equipment,0.29881,0.48524,0.44095,0.46369,0.53227,0.51588,Transportation Equipment,0.07416,0.11267,0.10031,corporate,0.03439,0.05997,0.05175,0.24666,0.28517,0.27281,0.95786,0.93250,0.94037 -36,36,5.00000,"Other trucks, buses and truck trailers",119548128283.18022,ET12,0.17250,0.33102,0.42619,0.39562,Equipment,0.29881,0.48524,0.44095,0.46369,0.53227,0.51588,Transportation Equipment,0.07416,0.11267,0.10031,corporate,0.03439,0.05997,0.05175,0.24666,0.28517,0.27281,0.95786,0.93250,0.94037 -37,37,5.00000,Autos,136239832216.63460,ET20,0.33330,0.45069,0.55014,0.51825,Equipment,0.53146,0.61542,0.59376,0.64163,0.65056,0.64820,Transportation Equipment,0.11098,0.15081,0.13804,corporate,0.07121,0.09811,0.08948,0.44428,0.48411,0.47134,0.95786,0.93250,0.94037 -38,38,5.00000,Aircraft,265993981320.40247,ET30,0.08590,0.26657,0.35943,0.32958,Equipment,0.04286,0.37047,0.29893,0.26792,0.42799,0.39289,Transportation Equipment,0.05433,0.09213,0.07999,corporate,0.01456,0.03943,0.03143,0.14023,0.17803,0.16589,0.95786,0.93250,0.94037 -39,39,10.00000,Ships and boats,62839620239.51455,ET40,0.06110,0.25156,0.34707,0.31631,Equipment,-0.04602,0.34337,0.26124,0.19993,0.40337,0.36026,Transportation Equipment,0.04971,0.08833,0.07591,corporate,0.00994,0.03563,0.02735,0.11081,0.14943,0.13701,0.92103,0.87842,0.89126 -40,40,7.00000,Railroad equipment,109045484545.80264,ET50,0.05890,0.24787,0.34144,0.31133,Equipment,-0.07047,0.33024,0.24601,0.18124,0.39143,0.34706,Transportation Equipment,0.04858,0.08660,0.07438,corporate,0.00880,0.03390,0.02581,0.10748,0.14550,0.13328,0.94254,0.90945,0.91960 -41,41,15.00000,Theatrical movies,157833135207.60001,AE10,0.09300,0.28356,0.38551,0.35273,Intellectual Property,0.12687,0.42090,0.35626,0.33217,0.47381,0.44254,Intellectual Property,0.05956,0.10016,0.08712,corporate,0.01978,0.04746,0.03855,0.15256,0.19316,0.18012,0.86590,0.80255,0.82096 -42,42,15.00000,Long-lived television programs,144610873940.84000,AE20,0.16800,0.34378,0.44893,0.41526,Intellectual Property,0.33407,0.51534,0.47272,0.49065,0.55962,0.54338,Intellectual Property,0.07809,0.11967,0.10636,corporate,0.03831,0.06697,0.05779,0.24609,0.28767,0.27436,0.87967,0.82203,0.83886 -43,43,15.00000,Books,67646468506.22700,AE30,0.12100,0.30089,0.40425,0.37118,Intellectual Property,0.19865,0.45243,0.39564,0.38708,0.50246,0.47664,Intellectual Property,0.06489,0.10592,0.09279,corporate,0.02512,0.05322,0.04423,0.18589,0.22692,0.21379,0.90550,0.83799,0.85701 -44,44,15.00000,Music,15406510045.27200,AE40,0.26700,0.40309,0.50645,0.47338,Intellectual Property,0.46023,0.57778,0.54861,0.58715,0.61636,0.60911,Intellectual Property,0.09634,0.13737,0.12424,corporate,0.05656,0.08467,0.07568,0.36334,0.40437,0.39124,0.95224,0.91077,0.92319 -45,45,15.00000,Other entertainment originals,15413496806.95360,AE50,0.10900,0.29249,0.39585,0.36278,Intellectual Property,0.16541,0.43874,0.37833,0.36165,0.49002,0.46165,Intellectual Property,0.06231,0.10334,0.09021,corporate,0.02253,0.05064,0.04164,0.17131,0.21234,0.19921,0.89723,0.82635,0.84611 -46,46,3.00000,Own account software,198787829234.93384,ENS3,0.33000,0.43239,0.52010,0.49203,Intellectual Property,0.50641,0.59031,0.56855,0.62247,0.62774,0.62637,Intellectual Property,0.10535,0.14157,0.12998,corporate,0.06558,0.08887,0.08142,0.43535,0.47157,0.45998,1.00000,1.00000,1.00000 -47,47,5.00000,Pharmaceutical and medicine manufacturing,396355667406.76001,RD11,0.10000,0.27139,0.35910,0.33103,Intellectual Property,0.06831,0.36978,0.30284,0.28738,0.42736,0.39628,Intellectual Property,0.05581,0.09203,0.08044,corporate,0.01604,0.03933,0.03188,0.15581,0.19203,0.18044,1.00000,1.00000,1.00000 -48,48,5.00000,"Chemical manufacturing, ex. pharma and med",54399224281.87000,RD12,0.16000,0.31339,0.40110,0.37303,Intellectual Property,0.24348,0.44738,0.39934,0.42136,0.49787,0.47984,Intellectual Property,0.06874,0.10495,0.09336,corporate,0.02896,0.05225,0.04480,0.22874,0.26495,0.25336,1.00000,1.00000,1.00000 -49,49,5.00000,Computers and peripheral equipment manufacturing,9567048384.52970,RD21,0.40000,0.48139,0.56910,0.54103,Intellectual Property,0.56821,0.62974,0.61339,0.66974,0.66357,0.66521,Intellectual Property,0.12043,0.15665,0.14506,corporate,0.08065,0.10395,0.09649,0.52043,0.55665,0.54506,1.00000,1.00000,1.00000 -50,50,5.00000,Communications equipment manufacturing,38393784818.37000,RD22,0.27000,0.39039,0.47810,0.45003,Intellectual Property,0.43740,0.54915,0.52091,0.56968,0.59034,0.58512,Intellectual Property,0.09243,0.12865,0.11706,corporate,0.05265,0.07595,0.06849,0.36243,0.39865,0.38706,1.00000,1.00000,1.00000 -51,51,5.00000,Semiconductor and other component manufacturing,83580996525.54500,RD23,0.25000,0.37639,0.46410,0.43603,Intellectual Property,0.40990,0.53353,0.50261,0.54865,0.57615,0.56927,Intellectual Property,0.08812,0.12434,0.11275,corporate,0.04835,0.07164,0.06418,0.33812,0.37434,0.36275,1.00000,1.00000,1.00000 -52,52,5.00000,Navigational and other instruments manufacturing,30814085766.70850,RD24,0.29000,0.40439,0.49210,0.46403,Intellectual Property,0.46245,0.56376,0.53792,0.58885,0.60362,0.59985,Intellectual Property,0.09674,0.13295,0.12136,corporate,0.05696,0.08025,0.07280,0.38674,0.42295,0.41136,1.00000,1.00000,1.00000 -53,53,5.00000,"Other computer and electronic manufacturing, n.e.c.",1636224416.52115,RD25,0.40000,0.48139,0.56910,0.54103,Intellectual Property,0.56821,0.62974,0.61339,0.66974,0.66357,0.66521,Intellectual Property,0.12043,0.15665,0.14506,corporate,0.08065,0.10395,0.09649,0.52043,0.55665,0.54506,1.00000,1.00000,1.00000 -54,54,7.00000,Motor vehicles and parts manufacturing,39313793397.90000,RD31,0.31000,0.41839,0.50610,0.47803,Intellectual Property,0.48537,0.57745,0.55376,0.60638,0.61606,0.61357,Intellectual Property,0.10104,0.13726,0.12567,corporate,0.06127,0.08456,0.07711,0.41104,0.44726,0.43567,1.00000,1.00000,1.00000 -55,55,7.00000,Aerospace products and parts manufacturing,33211530575.70000,RD32,0.22000,0.35539,0.44310,0.41503,Intellectual Property,0.36320,0.50796,0.47237,0.51293,0.55292,0.54309,Intellectual Property,0.08166,0.11788,0.10629,corporate,0.04189,0.06518,0.05772,0.30166,0.33788,0.32629,1.00000,1.00000,1.00000 -56,56,3.00000,Software publishers,20657269549.44800,RD40,0.22000,0.36366,0.45817,0.42782,Intellectual Property,0.38244,0.52658,0.49121,0.52765,0.56983,0.55940,Intellectual Property,0.08420,0.12251,0.11022,corporate,0.04443,0.06981,0.06166,0.30420,0.34251,0.33022,0.96827,0.94839,0.95462 -57,57,5.00000,Financial and real estate services,6097212063.91973,RD50,0.16000,0.31339,0.40110,0.37303,Intellectual Property,0.24348,0.44738,0.39934,0.42136,0.49787,0.47984,Intellectual Property,0.06874,0.10495,0.09336,corporate,0.02896,0.05225,0.04480,0.22874,0.26495,0.25336,1.00000,1.00000,1.00000 -58,58,3.00000,Computer systems design and related services,6318822870.57000,RD60,0.36000,0.46632,0.56375,0.53249,Intellectual Property,0.55092,0.62581,0.60626,0.65651,0.66000,0.65903,Intellectual Property,0.11579,0.15500,0.14243,corporate,0.07602,0.10230,0.09387,0.47579,0.51500,0.50243,0.96827,0.94839,0.95462 -59,59,5.00000,Scientific research and development services,22814623102.40300,RD70,0.16000,0.31339,0.40110,0.37303,Intellectual Property,0.24348,0.44738,0.39934,0.42136,0.49787,0.47984,Intellectual Property,0.06874,0.10495,0.09336,corporate,0.02896,0.05225,0.04480,0.22874,0.26495,0.25336,1.00000,1.00000,1.00000 -60,60,5.00000,"All other nonmanufacturing, n.e.c.",86239268420.74191,RD80,0.16000,0.31339,0.40110,0.37303,Intellectual Property,0.24348,0.44738,0.39934,0.42136,0.49787,0.47984,Intellectual Property,0.06874,0.10495,0.09336,corporate,0.02896,0.05225,0.04480,0.22874,0.26495,0.25336,1.00000,1.00000,1.00000 -61,61,3.00000,Private universities and colleges,8714364638.94000,RD91,0.16000,0.31966,0.41291,0.38297,Intellectual Property,0.26413,0.46588,0.41838,0.43716,0.51468,0.49633,Intellectual Property,0.07066,0.10859,0.09642,corporate,0.03089,0.05589,0.04786,0.23066,0.26859,0.25642,0.96827,0.94839,0.95462 -62,62,3.00000,Other nonprofit institutions,36718605375.19618,RD92,0.16000,0.31966,0.41291,0.38297,Intellectual Property,0.26413,0.46588,0.41838,0.43716,0.51468,0.49633,Intellectual Property,0.07066,0.10859,0.09642,corporate,0.03089,0.05589,0.04786,0.23066,0.26859,0.25642,0.96827,0.94839,0.95462 -63,63,7.00000,Other manufacturing,207322515563.45129,RDOM,0.16000,0.31339,0.40110,0.37303,Intellectual Property,0.24348,0.44738,0.39934,0.42136,0.49787,0.47984,Intellectual Property,0.06874,0.10495,0.09336,corporate,0.02896,0.05225,0.04480,0.22874,0.26495,0.25336,1.00000,1.00000,1.00000 -64,64,100.00000,Inventories,1540550422351.17505,INV,0.00000,0.24439,0.36205,0.32448,Inventories,-0.09464,0.37593,0.28492,0.16275,0.43295,0.38076,Inventories,0.04750,0.09294,0.07842,corporate,0.00773,0.04024,0.02986,0.04750,0.09294,0.07842,0.00000,0.00000,0.00000 -65,65,100.00000,Land,3586506468628.54834,LAND,0.00000,0.23100,0.35000,0.31192,Land,-0.19858,0.35000,0.24785,0.08325,0.40939,0.34866,Land,0.04338,0.08923,0.07456,corporate,0.00361,0.03653,0.02600,0.04338,0.08923,0.07456,0.00000,0.00000,0.00000 -66,66,5.00000,Petroleum and natural gas,1033008886591.34497,SM01,0.07510,0.25853,0.35110,0.32134,Structures,-0.00279,0.35246,0.27600,0.23300,0.41163,0.37303,Mining and Drilling Structures,0.05186,0.08957,0.07746,corporate,0.01208,0.03687,0.02889,0.12696,0.16467,0.15256,0.95786,0.93250,0.94037 -67,67,7.00000,Mining,82930242550.85606,SM02,0.04500,0.23731,0.33039,0.30042,Structures,-0.14727,0.30287,0.21039,0.12249,0.36656,0.31622,Mining and Drilling Structures,0.04533,0.08320,0.07102,corporate,0.00555,0.03050,0.02246,0.09033,0.12820,0.11602,0.94254,0.90945,0.91960 -68,68,15.00000,Communication,578746604536.45056,SU20,0.02370,0.22481,0.32156,0.29032,Structures,-0.25361,0.27933,0.17427,0.04116,0.34517,0.28493,Mining and Drilling Structures,0.04148,0.08048,0.06792,corporate,0.00171,0.02778,0.01935,0.06518,0.10418,0.09162,0.87465,0.81498,0.83237 -69,69,5.00000,Gas,365538319906.67950,SU40,0.07510,0.25853,0.35110,0.32134,Structures,-0.00279,0.35246,0.27600,0.23300,0.41163,0.37303,Mining and Drilling Structures,0.05186,0.08957,0.07746,corporate,0.01208,0.03687,0.02889,0.12696,0.16467,0.15256,0.95786,0.93250,0.94037 -70,70,5.00000,Petroleum pipelines,112623061581.40628,SU50,0.02370,0.22028,0.31148,0.28214,Structures,-0.29724,0.25044,0.14247,0.00778,0.31892,0.25740,Mining and Drilling Structures,0.04009,0.07738,0.06540,corporate,0.00031,0.02468,0.01683,0.06379,0.10108,0.08910,0.95786,0.93250,0.94037 -71,71,39.00000,Religious,100591058771.64963,SB10,0.01880,0.23637,0.34905,0.31260,Structures,-0.15458,0.34787,0.24995,0.11690,0.40745,0.35047,Nonresidential Buildings,0.04504,0.08894,0.07477,corporate,0.00527,0.03624,0.02620,0.06384,0.10774,0.09357,0.55777,0.41976,0.45626 -72,72,39.00000,Educational and vocational,282731611173.25391,SB20,0.01880,0.24038,0.35652,0.31900,Structures,-0.12383,0.36429,0.26921,0.14042,0.42237,0.36715,Nonresidential Buildings,0.04627,0.09124,0.07674,corporate,0.00650,0.03854,0.02817,0.06507,0.11004,0.09554,0.47663,0.32717,0.36556 -73,73,39.00000,Hospitals,321465607211.49677,SB31,0.01880,0.24038,0.35652,0.31900,Structures,-0.12383,0.36429,0.26921,0.14042,0.42237,0.36715,Nonresidential Buildings,0.04627,0.09124,0.07674,corporate,0.00650,0.03854,0.02817,0.06507,0.11004,0.09554,0.47663,0.32717,0.36556 -74,74,39.00000,Special care,70115662530.64020,SB32,0.01880,0.24038,0.35652,0.31900,Structures,-0.12383,0.36429,0.26921,0.14042,0.42237,0.36715,Nonresidential Buildings,0.04627,0.09124,0.07674,corporate,0.00650,0.03854,0.02817,0.06507,0.11004,0.09554,0.47663,0.32717,0.36556 -75,75,39.00000,Lodging,171809464720.12051,SB41,0.02810,0.25200,0.36960,0.33171,Structures,-0.04322,0.39115,0.30463,0.20208,0.44677,0.39783,Nonresidential Buildings,0.04985,0.09526,0.08065,corporate,0.01007,0.04256,0.03208,0.07795,0.12336,0.10875,0.47663,0.32717,0.36556 -76,76,39.00000,Air transportation,26676130902.06076,SB43,0.02370,0.24650,0.36341,0.32570,Structures,-0.07986,0.37873,0.28831,0.17405,0.43549,0.38370,Nonresidential Buildings,0.04815,0.09336,0.07880,corporate,0.00838,0.04066,0.03023,0.07185,0.11706,0.10250,0.47663,0.32717,0.36556 -77,77,39.00000,Other transportation,3546598618.33835,SB45,0.02370,0.24650,0.36341,0.32570,Structures,-0.07986,0.37873,0.28831,0.17405,0.43549,0.38370,Nonresidential Buildings,0.04815,0.09336,0.07880,corporate,0.00838,0.04066,0.03023,0.07185,0.11706,0.10250,0.47663,0.32717,0.36556 -78,78,39.00000,Warehouses,281416771190.75391,SC01,0.02250,0.24500,0.36172,0.32406,Structures,-0.09031,0.37525,0.28373,0.16606,0.43233,0.37973,Nonresidential Buildings,0.04769,0.09284,0.07829,corporate,0.00792,0.04014,0.02973,0.07019,0.11534,0.10079,0.47663,0.32717,0.36556 -79,79,39.00000,Other commercial,342925648724.17450,SC02,0.02620,0.24962,0.36693,0.32911,Structures,-0.05873,0.38584,0.29768,0.19021,0.44196,0.39181,Nonresidential Buildings,0.04912,0.09444,0.07985,corporate,0.00934,0.04174,0.03129,0.07532,0.12064,0.10605,0.47663,0.32717,0.36556 -80,80,39.00000,Multimerchandise shopping,424453104849.45978,SC03,0.02620,0.24962,0.36693,0.32911,Structures,-0.05873,0.38584,0.29768,0.19021,0.44196,0.39181,Nonresidential Buildings,0.04912,0.09444,0.07985,corporate,0.00934,0.04174,0.03129,0.07532,0.12064,0.10605,0.47663,0.32717,0.36556 -81,81,39.00000,Food and beverage establishments,177715537880.96967,SC04,0.02620,0.24962,0.36693,0.32911,Structures,-0.05873,0.38584,0.29768,0.19021,0.44196,0.39181,Nonresidential Buildings,0.04912,0.09444,0.07985,corporate,0.00934,0.04174,0.03129,0.07532,0.12064,0.10605,0.47663,0.32717,0.36556 -82,82,39.00000,Manufacturing,1098167248468.80334,SI00,0.03140,0.25612,0.37424,0.33621,Structures,-0.01732,0.40014,0.31639,0.22189,0.45495,0.40801,Nonresidential Buildings,0.05111,0.09669,0.08204,corporate,0.01134,0.04399,0.03347,0.08251,0.12809,0.11344,0.47663,0.32717,0.36556 -83,83,39.00000,Public safety,15488160357.00830,SO03,0.02370,0.24650,0.36341,0.32570,Structures,-0.07986,0.37873,0.28831,0.17405,0.43549,0.38370,Nonresidential Buildings,0.04815,0.09336,0.07880,corporate,0.00838,0.04066,0.03023,0.07185,0.11706,0.10250,0.47663,0.32717,0.36556 -84,84,39.00000,Office,1125363275874.33521,SOO1,0.02470,0.24775,0.36482,0.32706,Structures,-0.07131,0.38159,0.29209,0.18059,0.43809,0.38697,Nonresidential Buildings,0.04854,0.09379,0.07922,corporate,0.00877,0.04109,0.03066,0.07324,0.11849,0.10392,0.47663,0.32717,0.36556 -85,85,39.00000,Medical buildings,108684928850.30258,SOO2,0.02470,0.24775,0.36482,0.32706,Structures,-0.07131,0.38159,0.29209,0.18059,0.43809,0.38697,Nonresidential Buildings,0.04854,0.09379,0.07922,corporate,0.00877,0.04109,0.03066,0.07324,0.11849,0.10392,0.47663,0.32717,0.36556 -86,86,7.00000,Amusement and recreation,163173271952.98538,SB42,0.03000,0.22590,0.31847,0.28866,Structures,-0.24355,0.27070,0.16798,0.04885,0.33733,0.27949,Other Structures,0.04182,0.07953,0.06740,corporate,0.00204,0.02683,0.01884,0.07182,0.10953,0.09740,0.94254,0.90945,0.91960 -87,87,39.00000,Local transit structures,9253082151.44273,SB44,0.02370,0.24650,0.36341,0.32570,Structures,-0.07986,0.37873,0.28831,0.17405,0.43549,0.38370,Other Structures,0.04815,0.09336,0.07880,corporate,0.00838,0.04066,0.03023,0.07185,0.11706,0.10250,0.47663,0.32717,0.36556 -88,88,5.00000,Other land transportation,7047759108.81892,SB46,0.02370,0.22028,0.31148,0.28214,Structures,-0.29724,0.25044,0.14247,0.00778,0.31892,0.25740,Other Structures,0.04009,0.07738,0.06540,corporate,0.00031,0.02468,0.01683,0.06379,0.10108,0.08910,0.95786,0.93250,0.94037 -89,89,20.00000,Farm,109520310583.21701,SN00,0.02390,0.22670,0.32508,0.29333,Structures,-0.23628,0.28889,0.18535,0.05441,0.35386,0.29453,Other Structures,0.04206,0.08156,0.06884,corporate,0.00229,0.02886,0.02028,0.06596,0.10546,0.09274,0.84315,0.77618,0.79515 -90,90,20.00000,Water supply,41285680278.03433,SO01,0.02250,0.22549,0.32377,0.29205,Structures,-0.24732,0.28536,0.18066,0.04596,0.35065,0.29047,Other Structures,0.04169,0.08116,0.06845,corporate,0.00192,0.02846,0.01988,0.06419,0.10366,0.09095,0.84315,0.77618,0.79515 -91,91,20.00000,Sewage and waste disposal,37655287429.62462,SO02,0.02250,0.22549,0.32377,0.29205,Structures,-0.24732,0.28536,0.18066,0.04596,0.35065,0.29047,Other Structures,0.04169,0.08116,0.06845,corporate,0.00192,0.02846,0.01988,0.06419,0.10366,0.09095,0.84315,0.77618,0.79515 -92,92,15.00000,Highway and conservation and development,22901934534.09797,SO04,0.02250,0.22381,0.32049,0.28927,Structures,-0.26295,0.27636,0.17031,0.03401,0.34248,0.28151,Other Structures,0.04117,0.08015,0.06759,corporate,0.00140,0.02745,0.01903,0.06367,0.10265,0.09009,0.87465,0.81498,0.83237 -93,93,7.00000,Mobile structures,4708544169.52466,SOMO,0.05560,0.24537,0.33882,0.30874,Structures,-0.08776,0.32394,0.23785,0.16801,0.38571,0.33999,Other Structures,0.04780,0.08579,0.07358,corporate,0.00803,0.03309,0.02502,0.10340,0.14139,0.12918,0.94254,0.90945,0.91960 -94,94,20.00000,Other railroad,135810301223.62192,SU11,0.01760,0.22125,0.31919,0.28756,Structures,-0.28759,0.27273,0.16380,0.01517,0.33917,0.27587,Other Structures,0.04039,0.07975,0.06707,corporate,0.00061,0.02705,0.01850,0.05799,0.09735,0.08467,0.84315,0.77618,0.79515 -95,95,7.00000,Track replacement,166460169103.56049,SU12,0.02490,0.22202,0.31441,0.28466,Structures,-0.28007,0.25908,0.15250,0.02092,0.32677,0.26609,Other Structures,0.04062,0.07828,0.06617,corporate,0.00085,0.02558,0.01761,0.06552,0.10318,0.09107,0.94254,0.90945,0.91960 -96,96,15.00000,Electric,1052404941676.51135,SU30,0.02110,0.22265,0.31924,0.28805,Structures,-0.27404,0.27286,0.16566,0.02553,0.33930,0.27748,Other Structures,0.04082,0.07977,0.06721,corporate,0.00104,0.02706,0.01865,0.06192,0.10087,0.08831,0.87465,0.81498,0.83237 -97,97,5.00000,Wind and solar,119300186300.69254,SU60,0.03030,0.22519,0.31657,0.28717,Structures,-0.25011,0.26530,0.16231,0.04383,0.33243,0.27458,Other Structures,0.04160,0.07894,0.06695,corporate,0.00182,0.02624,0.01838,0.07190,0.10924,0.09725,0.95786,0.93250,0.94037 -98,98,27.50000,Residential,333776621894.00000,RES,0.01631,0.23250,0.34522,0.30862,Structures,-0.18597,0.33910,0.23747,0.09289,0.39948,0.33966,Residential Buildings,0.04385,0.08776,0.07354,corporate,0.00407,0.03506,0.02498,0.06016,0.10407,0.08986,0.57872,0.42718,0.46827 -99,99,3.00000,Prepackaged software,22158075947.24139,ENS1,0.55000,0.20228,0.17807,0.18508,Equipment,0.20337,0.12235,0.14097,0.20337,0.12235,0.14097,Computers and Software,0.04401,0.06005,0.05539,non-corporate,0.00895,0.00735,0.00781,0.59401,0.61005,0.60539,0.96142,0.95184,0.95459 -100,100,3.00000,Custom software,60800835314.35992,ENS2,0.33000,0.19371,0.16737,0.17499,Equipment,0.16249,0.08132,0.09988,0.16249,0.08132,0.09988,Computers and Software,0.04186,0.05737,0.05286,non-corporate,0.00680,0.00466,0.00528,0.37186,0.38737,0.38286,0.96142,0.95184,0.95459 -101,101,5.00000,Mainframes,6190706381.18300,EP1A,0.46330,0.20518,0.18166,0.18848,Equipment,0.21629,0.13533,0.15397,0.21629,0.13533,0.15397,Computers and Software,0.04473,0.06095,0.05624,non-corporate,0.00968,0.00825,0.00866,0.50803,0.52425,0.51954,0.94904,0.93684,0.94033 -102,102,5.00000,PCs,20612189046.26059,EP1B,0.46330,0.20518,0.18166,0.18848,Equipment,0.21629,0.13533,0.15397,0.21629,0.13533,0.15397,Computers and Software,0.04473,0.06095,0.05624,non-corporate,0.00968,0.00825,0.00866,0.50803,0.52425,0.51954,0.94904,0.93684,0.94033 -103,103,5.00000,DASDs,0.00000,EP1C,0.46330,0.20518,0.18166,0.18848,Equipment,0.21629,0.13533,0.15397,0.21629,0.13533,0.15397,Computers and Software,0.04473,0.06095,0.05624,non-corporate,0.00968,0.00825,0.00866,0.50803,0.52425,0.51954,0.94904,0.93684,0.94033 -104,104,5.00000,Printers,3876956088.97943,EP1D,0.46330,0.20518,0.18166,0.18848,Equipment,0.21629,0.13533,0.15397,0.21629,0.13533,0.15397,Computers and Software,0.04473,0.06095,0.05624,non-corporate,0.00968,0.00825,0.00866,0.50803,0.52425,0.51954,0.94904,0.93684,0.94033 -105,105,5.00000,Terminals,5141005380.94880,EP1E,0.46330,0.20518,0.18166,0.18848,Equipment,0.21629,0.13533,0.15397,0.21629,0.13533,0.15397,Computers and Software,0.04473,0.06095,0.05624,non-corporate,0.00968,0.00825,0.00866,0.50803,0.52425,0.51954,0.94904,0.93684,0.94033 -106,106,5.00000,Tape drives,0.00000,EP1F,0.46330,0.20518,0.18166,0.18848,Equipment,0.21629,0.13533,0.15397,0.21629,0.13533,0.15397,Computers and Software,0.04473,0.06095,0.05624,non-corporate,0.00968,0.00825,0.00866,0.50803,0.52425,0.51954,0.94904,0.93684,0.94033 -107,107,5.00000,Storage devices,3192011590.92400,EP1G,0.46330,0.20518,0.18166,0.18848,Equipment,0.21629,0.13533,0.15397,0.21629,0.13533,0.15397,Computers and Software,0.04473,0.06095,0.05624,non-corporate,0.00968,0.00825,0.00866,0.50803,0.52425,0.51954,0.94904,0.93684,0.94033 -108,108,5.00000,System integrators,11800815475.28772,EP1H,0.46330,0.20518,0.18166,0.18848,Equipment,0.21629,0.13533,0.15397,0.21629,0.13533,0.15397,Computers and Software,0.04473,0.06095,0.05624,non-corporate,0.00968,0.00825,0.00866,0.50803,0.52425,0.51954,0.94904,0.93684,0.94033 -109,109,7.00000,Special industrial machinery,56031412759.69572,EI40,0.10310,0.18923,0.16212,0.16995,Equipment,0.13940,0.05977,0.07785,0.13940,0.05977,0.07785,Industrial Machinery,0.04074,0.05605,0.05160,non-corporate,0.00568,0.00335,0.00402,0.14384,0.15915,0.15470,0.93090,0.91504,0.91954 -110,110,7.00000,General industrial equipment,114662497838.17902,EI50,0.10720,0.18952,0.16247,0.17028,Equipment,0.14091,0.06125,0.07934,0.14091,0.06125,0.07934,Industrial Machinery,0.04081,0.05614,0.05169,non-corporate,0.00575,0.00344,0.00410,0.14801,0.16334,0.15889,0.93090,0.91504,0.91954 -111,111,5.00000,Office and accounting equipment,2542388832.96892,EP12,0.31190,0.19739,0.17201,0.17935,Equipment,0.18052,0.09957,0.11812,0.18052,0.09957,0.11812,Instruments and Communications Equipment,0.04278,0.05853,0.05396,non-corporate,0.00772,0.00583,0.00637,0.35468,0.37043,0.36586,0.94904,0.93684,0.94033 -112,112,7.00000,Communications,102468863895.39655,EP20,0.11290,0.18991,0.16296,0.17075,Equipment,0.14301,0.06329,0.08140,0.14301,0.06329,0.08140,Instruments and Communications Equipment,0.04091,0.05626,0.05180,non-corporate,0.00585,0.00356,0.00422,0.15381,0.16916,0.16470,0.93090,0.91504,0.91954 -113,113,5.00000,Photocopy and related equipment,10079053795.00768,EP31,0.18000,0.19060,0.16360,0.17140,Equipment,0.14658,0.06593,0.08431,0.14658,0.06593,0.08431,Instruments and Communications Equipment,0.04108,0.05642,0.05197,non-corporate,0.00602,0.00372,0.00438,0.22108,0.23642,0.23197,0.94904,0.93684,0.94033 -114,114,7.00000,Nonelectro medical instruments,111916495412.21930,EP34,0.13500,0.19146,0.16486,0.17254,Equipment,0.15103,0.07114,0.08932,0.15103,0.07114,0.08932,Instruments and Communications Equipment,0.04130,0.05674,0.05225,non-corporate,0.00624,0.00404,0.00467,0.17630,0.19174,0.18725,0.93090,0.91504,0.91954 -115,115,7.00000,Electro medical instruments,65668171777.05855,EP35,0.13500,0.19146,0.16486,0.17254,Equipment,0.15103,0.07114,0.08932,0.15103,0.07114,0.08932,Instruments and Communications Equipment,0.04130,0.05674,0.05225,non-corporate,0.00624,0.00404,0.00467,0.17630,0.19174,0.18725,0.93090,0.91504,0.91954 -116,116,7.00000,Nonmedical instruments,59590066982.74078,EP36,0.13500,0.19146,0.16486,0.17254,Equipment,0.15103,0.07114,0.08932,0.15103,0.07114,0.08932,Instruments and Communications Equipment,0.04130,0.05674,0.05225,non-corporate,0.00624,0.00404,0.00467,0.17630,0.19174,0.18725,0.93090,0.91504,0.91954 -117,117,5.00000,Household furniture,8579128473.70233,EO11,0.13750,0.18841,0.16089,0.16884,Equipment,0.13504,0.05454,0.07286,0.13504,0.05454,0.07286,Office and Residential Equipment,0.04053,0.05574,0.05132,non-corporate,0.00547,0.00304,0.00374,0.17803,0.19324,0.18882,0.94904,0.93684,0.94033 -118,118,7.00000,Other furniture,97670828983.20677,EO12,0.11790,0.19026,0.16339,0.17115,Equipment,0.14483,0.06508,0.08321,0.14483,0.06508,0.08321,Office and Residential Equipment,0.04100,0.05637,0.05190,non-corporate,0.00594,0.00367,0.00432,0.15890,0.17427,0.16980,0.93090,0.91504,0.91954 -119,119,5.00000,Household appliances,2193695747.80152,EO71,0.16500,0.18983,0.16264,0.17050,Equipment,0.14254,0.06194,0.08030,0.14254,0.06194,0.08030,Office and Residential Equipment,0.04089,0.05618,0.05174,non-corporate,0.00583,0.00348,0.00415,0.20589,0.22118,0.21674,0.94904,0.93684,0.94033 -120,120,7.00000,Service industry machinery,66122349452.24888,EO60,0.15280,0.19270,0.16639,0.17399,Equipment,0.15738,0.07736,0.09559,0.15738,0.07736,0.09559,Other Equipment,0.04161,0.05712,0.05261,non-corporate,0.00655,0.00442,0.00503,0.19441,0.20992,0.20541,0.93090,0.91504,0.91954 -121,121,7.00000,Other electrical,3542409326.71975,EO72,0.18340,0.19483,0.16901,0.17648,Equipment,0.16808,0.08787,0.10618,0.16808,0.08787,0.10618,Other Equipment,0.04214,0.05778,0.05324,non-corporate,0.00708,0.00508,0.00565,0.22554,0.24118,0.23664,0.93090,0.91504,0.91954 -122,122,7.00000,Other,106207464937.46689,EO80,0.14730,0.19231,0.16591,0.17354,Equipment,0.15543,0.07545,0.09366,0.15543,0.07545,0.09366,Other Equipment,0.04151,0.05700,0.05250,non-corporate,0.00645,0.00430,0.00492,0.18881,0.20430,0.19980,0.93090,0.91504,0.91954 -123,123,5.00000,Nuclear fuel,357727587.15623,EI11,0.25000,0.19420,0.16806,0.17562,Equipment,0.16494,0.08409,0.10257,0.16494,0.08409,0.10257,Other Industrial Equipment,0.04198,0.05754,0.05302,non-corporate,0.00692,0.00484,0.00544,0.29198,0.30754,0.30302,0.94904,0.93684,0.94033 -124,124,7.00000,Other fabricated metals,36269357406.68746,EI12,0.09170,0.18843,0.16114,0.16902,Equipment,0.13517,0.05564,0.07368,0.13517,0.05564,0.07368,Other Industrial Equipment,0.04054,0.05581,0.05137,non-corporate,0.00548,0.00311,0.00379,0.13224,0.14751,0.14307,0.93090,0.91504,0.91954 -125,125,7.00000,Metalworking machinery,40483811779.61037,EI30,0.12250,0.19058,0.16379,0.17153,Equipment,0.14651,0.06672,0.08486,0.14651,0.06672,0.08486,Other Industrial Equipment,0.04108,0.05647,0.05200,non-corporate,0.00602,0.00377,0.00441,0.16358,0.17897,0.17450,0.93090,0.91504,0.91954 -126,126,15.00000,Electric transmission and distribution,41257755573.28319,EI60,0.05000,0.19250,0.16696,0.17432,Equipment,0.15636,0.07968,0.09701,0.15636,0.07968,0.09701,Other Industrial Equipment,0.04156,0.05726,0.05270,non-corporate,0.00650,0.00456,0.00511,0.09156,0.10726,0.10270,0.85267,0.82446,0.83227 -127,127,7.00000,Farm tractors,30621499311.60472,EO21,0.14520,0.19217,0.16573,0.17337,Equipment,0.15468,0.07472,0.09292,0.15468,0.07472,0.09292,Other Industrial Equipment,0.04147,0.05696,0.05246,non-corporate,0.00642,0.00426,0.00487,0.18667,0.20216,0.19766,0.93090,0.91504,0.91954 -128,128,5.00000,Construction tractors,3719463640.44892,EO22,0.16330,0.18974,0.16253,0.17040,Equipment,0.14208,0.06149,0.07984,0.14208,0.06149,0.07984,Other Industrial Equipment,0.04087,0.05615,0.05171,non-corporate,0.00581,0.00345,0.00413,0.20417,0.21945,0.21501,0.94904,0.93684,0.94033 -129,129,7.00000,Other agricultural machinery,80549886162.69899,EO30,0.11790,0.19026,0.16339,0.17115,Equipment,0.14483,0.06508,0.08321,0.14483,0.06508,0.08321,Other Industrial Equipment,0.04100,0.05637,0.05190,non-corporate,0.00594,0.00367,0.00432,0.15890,0.17427,0.16980,0.93090,0.91504,0.91954 -130,130,5.00000,Other construction machinery,98513726689.52679,EO40,0.15500,0.18931,0.16200,0.16990,Equipment,0.13983,0.05926,0.07761,0.13983,0.05926,0.07761,Other Industrial Equipment,0.04076,0.05602,0.05159,non-corporate,0.00570,0.00332,0.00400,0.19576,0.21102,0.20659,0.94904,0.93684,0.94033 -131,131,7.00000,Mining and oilfield machinery,18092187649.22342,EO50,0.15000,0.19250,0.16615,0.17376,Equipment,0.15639,0.07639,0.09461,0.15639,0.07639,0.09461,Other Industrial Equipment,0.04156,0.05706,0.05256,non-corporate,0.00650,0.00436,0.00497,0.19156,0.20706,0.20256,0.93090,0.91504,0.91954 -132,132,15.00000,Steam engines,6902986050.14308,EI21,0.05160,0.19274,0.16724,0.17459,Equipment,0.15757,0.08082,0.09817,0.15757,0.08082,0.09817,Transportation Equipment,0.04162,0.05733,0.05276,non-corporate,0.00656,0.00463,0.00518,0.09322,0.10893,0.10436,0.85267,0.82446,0.83227 -133,133,7.00000,Internal combustion engines,1555979253.60812,EI22,0.20630,0.19643,0.17098,0.17834,Equipment,0.17591,0.09558,0.11394,0.17591,0.09558,0.11394,Transportation Equipment,0.04254,0.05827,0.05370,non-corporate,0.00748,0.00557,0.00612,0.24884,0.26457,0.26000,0.93090,0.91504,0.91954 -134,134,5.00000,Light trucks (including utility vehicles),77738021463.51085,ET11,0.17250,0.19021,0.16312,0.17095,Equipment,0.14457,0.06394,0.08231,0.14457,0.06394,0.08231,Transportation Equipment,0.04098,0.05630,0.05185,non-corporate,0.00593,0.00360,0.00427,0.21348,0.22880,0.22435,0.94904,0.93684,0.94033 -135,135,5.00000,"Other trucks, buses and truck trailers",52902871715.14603,ET12,0.17250,0.19021,0.16312,0.17095,Equipment,0.14457,0.06394,0.08231,0.14457,0.06394,0.08231,Transportation Equipment,0.04098,0.05630,0.05185,non-corporate,0.00593,0.00360,0.00427,0.21348,0.22880,0.22435,0.94904,0.93684,0.94033 -136,136,5.00000,Autos,47539167782.38700,ET20,0.33330,0.19849,0.17337,0.18064,Equipment,0.18577,0.10480,0.12337,0.18577,0.10480,0.12337,Transportation Equipment,0.04306,0.05887,0.05428,non-corporate,0.00800,0.00617,0.00670,0.37636,0.39217,0.38758,0.94904,0.93684,0.94033 -137,137,5.00000,Aircraft,86223598874.83788,ET30,0.08590,0.18576,0.15759,0.16573,Equipment,0.12060,0.04034,0.05856,0.12060,0.04034,0.05856,Transportation Equipment,0.03987,0.05492,0.05054,non-corporate,0.00481,0.00222,0.00296,0.12577,0.14082,0.13644,0.94904,0.93684,0.94033 -138,138,10.00000,Ships and boats,16387379759.80567,ET40,0.06110,0.18882,0.16192,0.16968,Equipment,0.13721,0.05891,0.07662,0.13721,0.05891,0.07662,Transportation Equipment,0.04063,0.05600,0.05153,non-corporate,0.00558,0.00330,0.00395,0.10173,0.11710,0.11263,0.90580,0.88547,0.89119 -139,139,7.00000,Railroad equipment,29964515454.02116,ET50,0.05890,0.18615,0.15833,0.16636,Equipment,0.12275,0.04355,0.06148,0.12275,0.04355,0.06148,Transportation Equipment,0.03996,0.05510,0.05070,non-corporate,0.00491,0.00240,0.00312,0.09886,0.11400,0.10960,0.93090,0.91504,0.91954 -140,140,15.00000,Theatrical movies,18409754458.46626,AE10,0.09300,0.20024,0.17633,0.18323,Intellectual Property,0.19400,0.11594,0.13373,0.19400,0.11594,0.13373,Intellectual Property,0.04350,0.05961,0.05493,non-corporate,0.00844,0.00691,0.00735,0.13650,0.15261,0.14793,0.84252,0.81258,0.82086 -141,141,15.00000,Long-lived television programs,14909126060.40839,AE20,0.16800,0.20884,0.18637,0.19289,Intellectual Property,0.23206,0.15175,0.17027,0.23206,0.15175,0.17027,Intellectual Property,0.04565,0.06213,0.05735,non-corporate,0.01059,0.00943,0.00977,0.21365,0.23013,0.22535,0.85848,0.83121,0.83877 -142,142,15.00000,Books,14215531494.34945,AE30,0.12100,0.19869,0.17537,0.18213,Intellectual Property,0.18672,0.11233,0.12935,0.18672,0.11233,0.12935,Intellectual Property,0.04311,0.05937,0.05465,non-corporate,0.00805,0.00667,0.00707,0.16411,0.18037,0.17565,0.87987,0.84830,0.85690 -143,143,15.00000,Music,8069489954.09881,AE40,0.26700,0.19869,0.17537,0.18213,Intellectual Property,0.18672,0.11233,0.12935,0.18672,0.11233,0.12935,Intellectual Property,0.04311,0.05937,0.05465,non-corporate,0.00805,0.00667,0.00707,0.31011,0.32637,0.32165,0.93732,0.91758,0.92312 -144,144,15.00000,Other entertainment originals,11674503193.39874,AE50,0.10900,0.19869,0.17537,0.18213,Intellectual Property,0.18672,0.11233,0.12935,0.18672,0.11233,0.12935,Intellectual Property,0.04311,0.05937,0.05465,non-corporate,0.00805,0.00667,0.00707,0.15211,0.16837,0.16365,0.87008,0.83704,0.84600 -145,145,3.00000,Own account software,63396170766.96828,ENS3,0.33000,0.17937,0.14875,0.15763,Intellectual Property,0.08380,-0.00000,0.01917,0.08380,-0.00000,0.01917,Intellectual Property,0.03827,0.05270,0.04851,non-corporate,0.00321,-0.00000,0.00093,0.36827,0.38270,0.37851,1.00000,1.00000,1.00000 -146,146,5.00000,Pharmaceutical and medicine manufacturing,68720410526.40900,RD11,0.10000,0.17937,0.14875,0.15763,Intellectual Property,0.08380,0.00000,0.01917,0.08380,0.00000,0.01917,Intellectual Property,0.03827,0.05270,0.04851,non-corporate,0.00321,0.00000,0.00093,0.13827,0.15270,0.14851,1.00000,1.00000,1.00000 -147,147,5.00000,"Chemical manufacturing, ex. pharma and med",9431775719.32930,RD12,0.16000,0.17937,0.14875,0.15763,Intellectual Property,0.08380,0.00000,0.01917,0.08380,0.00000,0.01917,Intellectual Property,0.03827,0.05270,0.04851,non-corporate,0.00321,0.00000,0.00093,0.19827,0.21270,0.20851,1.00000,1.00000,1.00000 -148,148,5.00000,Computers and peripheral equipment manufacturing,1249951615.14700,RD21,0.40000,0.17937,0.14875,0.15763,Intellectual Property,0.08380,0.00000,0.01917,0.08380,0.00000,0.01917,Intellectual Property,0.03827,0.05270,0.04851,non-corporate,0.00321,0.00000,0.00093,0.43827,0.45270,0.44851,1.00000,1.00000,1.00000 -149,149,5.00000,Communications equipment manufacturing,5016215180.93255,RD22,0.27000,0.17937,0.14875,0.15763,Intellectual Property,0.08380,0.00000,0.01917,0.08380,0.00000,0.01917,Intellectual Property,0.03827,0.05270,0.04851,non-corporate,0.00321,0.00000,0.00093,0.30827,0.32270,0.31851,1.00000,1.00000,1.00000 -150,150,5.00000,Semiconductor and other component manufacturing,10920003474.83112,RD23,0.25000,0.17937,0.14875,0.15763,Intellectual Property,0.08380,0.00000,0.01917,0.08380,0.00000,0.01917,Intellectual Property,0.03827,0.05270,0.04851,non-corporate,0.00321,0.00000,0.00093,0.28827,0.30270,0.29851,1.00000,1.00000,1.00000 -151,151,5.00000,Navigational and other instruments manufacturing,4025914234.82626,RD24,0.29000,0.17937,0.14875,0.15763,Intellectual Property,0.08380,-0.00000,0.01917,0.08380,-0.00000,0.01917,Intellectual Property,0.03827,0.05270,0.04851,non-corporate,0.00321,-0.00000,0.00093,0.32827,0.34270,0.33851,1.00000,1.00000,1.00000 -152,152,5.00000,"Other computer and electronic manufacturing, n.e.c.",213775583.63471,RD25,0.40000,0.17937,0.14875,0.15763,Intellectual Property,0.08380,0.00000,0.01917,0.08380,0.00000,0.01917,Intellectual Property,0.03827,0.05270,0.04851,non-corporate,0.00321,0.00000,0.00093,0.43827,0.45270,0.44851,1.00000,1.00000,1.00000 -153,153,7.00000,Motor vehicles and parts manufacturing,5835206602.12800,RD31,0.31000,0.17937,0.14875,0.15763,Intellectual Property,0.08380,-0.00000,0.01917,0.08380,-0.00000,0.01917,Intellectual Property,0.03827,0.05270,0.04851,non-corporate,0.00321,-0.00000,0.00093,0.34827,0.36270,0.35851,1.00000,1.00000,1.00000 -154,154,7.00000,Aerospace products and parts manufacturing,4929469423.57540,RD32,0.22000,0.17937,0.14875,0.15763,Intellectual Property,0.08380,0.00000,0.01917,0.08380,0.00000,0.01917,Intellectual Property,0.03827,0.05270,0.04851,non-corporate,0.00321,0.00000,0.00093,0.25827,0.27270,0.26851,1.00000,1.00000,1.00000 -155,155,3.00000,Software publishers,949730450.60092,RD40,0.22000,0.18943,0.16202,0.16995,Intellectual Property,0.14044,0.05933,0.07783,0.14044,0.05933,0.07783,Intellectual Property,0.04079,0.05602,0.05160,non-corporate,0.00573,0.00332,0.00402,0.26079,0.27602,0.27160,0.96142,0.95184,0.95459 -156,156,5.00000,Financial and real estate services,1540787936.30553,RD50,0.16000,0.17937,0.14875,0.15763,Intellectual Property,0.08380,0.00000,0.01917,0.08380,0.00000,0.01917,Intellectual Property,0.03827,0.05270,0.04851,non-corporate,0.00321,0.00000,0.00093,0.19827,0.21270,0.20851,1.00000,1.00000,1.00000 -157,157,3.00000,Computer systems design and related services,5115177129.21372,RD60,0.36000,0.19488,0.16883,0.17637,Intellectual Property,0.16831,0.08714,0.10571,0.16831,0.08714,0.10571,Intellectual Property,0.04215,0.05773,0.05321,non-corporate,0.00710,0.00503,0.00562,0.40215,0.41773,0.41321,0.96142,0.95184,0.95459 -158,158,5.00000,Scientific research and development services,22860376897.47077,RD70,0.16000,0.17937,0.14875,0.15763,Intellectual Property,0.08380,0.00000,0.01917,0.08380,0.00000,0.01917,Intellectual Property,0.03827,0.05270,0.04851,non-corporate,0.00321,0.00000,0.00093,0.19827,0.21270,0.20851,1.00000,1.00000,1.00000 -159,159,5.00000,"All other nonmanufacturing, n.e.c.",33402731579.63615,RD80,0.16000,0.17937,0.14875,0.15763,Intellectual Property,0.08380,0.00000,0.01917,0.08380,0.00000,0.01917,Intellectual Property,0.03827,0.05270,0.04851,non-corporate,0.00321,0.00000,0.00093,0.19827,0.21270,0.20851,1.00000,1.00000,1.00000 -160,160,3.00000,Private universities and colleges,6064635361.65000,RD91,0.16000,0.18709,0.15910,0.16719,Intellectual Property,0.12792,0.04689,0.06534,0.12792,0.04689,0.06534,Intellectual Property,0.04020,0.05529,0.05091,non-corporate,0.00514,0.00259,0.00333,0.20020,0.21529,0.21091,0.96142,0.95184,0.95459 -161,161,3.00000,Other nonprofit institutions,44957394625.31660,RD92,0.16000,0.18709,0.15910,0.16719,Intellectual Property,0.12792,0.04689,0.06534,0.12792,0.04689,0.06534,Intellectual Property,0.04020,0.05529,0.05091,non-corporate,0.00514,0.00259,0.00333,0.20020,0.21529,0.21091,0.96142,0.95184,0.95459 -162,162,7.00000,Other manufacturing,31261484438.19672,RDOM,0.16000,0.17937,0.14875,0.15763,Intellectual Property,0.08380,0.00000,0.01917,0.08380,0.00000,0.01917,Intellectual Property,0.03827,0.05270,0.04851,non-corporate,0.00321,0.00000,0.00093,0.19827,0.21270,0.20851,1.00000,1.00000,1.00000 -163,163,100.00000,Inventories,903249577643.82080,INV,0.00000,0.22563,0.20927,0.21402,Inventories,0.29684,0.22348,0.24044,0.29684,0.22348,0.24044,Inventories,0.04986,0.06787,0.06265,non-corporate,0.01480,0.01517,0.01506,0.04986,0.06787,0.06265,0.00000,0.00000,0.00000 -164,164,100.00000,Land,9085892640842.86914,LAND,0.00000,0.21801,0.20198,0.20663,Land,0.26885,0.20198,0.21727,0.26885,0.20198,0.21727,Land,0.04795,0.06604,0.06079,non-corporate,0.01289,0.01334,0.01321,0.04795,0.06604,0.06079,0.00000,0.00000,0.00000 -165,165,5.00000,Petroleum and natural gas,212937915737.62860,SM01,0.07510,0.18520,0.15691,0.16508,Structures,0.11752,0.03732,0.05551,0.11752,0.03732,0.05551,Mining and Drilling Structures,0.03973,0.05474,0.05038,non-corporate,0.00467,0.00204,0.00280,0.11483,0.12984,0.12548,0.94904,0.93684,0.94033 -166,166,7.00000,Mining,17079757447.87507,SM02,0.04500,0.18518,0.15714,0.16523,Structures,0.11739,0.03834,0.05621,0.11739,0.03834,0.05621,Mining and Drilling Structures,0.03972,0.05480,0.05042,non-corporate,0.00466,0.00210,0.00283,0.08472,0.09980,0.09542,0.93090,0.91504,0.91954 -167,167,15.00000,Communication,54922065479.18448,SU20,0.02370,0.18858,0.16230,0.16986,Structures,0.13597,0.06051,0.07746,0.13597,0.06051,0.07746,Mining and Drilling Structures,0.04058,0.05610,0.05158,non-corporate,0.00552,0.00339,0.00400,0.06428,0.07980,0.07528,0.85267,0.82446,0.83227 -168,168,5.00000,Gas,31446708032.77039,SU40,0.07510,0.18520,0.15691,0.16508,Structures,0.11752,0.03732,0.05551,0.11752,0.03732,0.05551,Mining and Drilling Structures,0.03973,0.05474,0.05038,non-corporate,0.00467,0.00204,0.00280,0.11483,0.12984,0.12548,0.94904,0.93684,0.94033 -169,169,5.00000,Petroleum pipelines,20777938418.31212,SU50,0.02370,0.18255,0.15363,0.16198,Structures,0.10254,0.02265,0.04073,0.10254,0.02265,0.04073,Mining and Drilling Structures,0.03906,0.05392,0.04961,non-corporate,0.00401,0.00122,0.00202,0.06276,0.07762,0.07331,0.94904,0.93684,0.94033 -170,170,39.00000,Religious,198115941229.36139,SB10,0.01880,0.20803,0.18924,0.19461,Structures,0.22861,0.16145,0.17648,0.22861,0.16145,0.17648,Nonresidential Buildings,0.04545,0.06285,0.05778,non-corporate,0.01039,0.01015,0.01020,0.06425,0.08165,0.07658,0.50261,0.43931,0.45605 -171,171,39.00000,Educational and vocational,212838725537.27460,SB20,0.01880,0.21304,0.19586,0.20078,Structures,0.24937,0.18302,0.19793,0.24937,0.18302,0.19793,Nonresidential Buildings,0.04671,0.06451,0.05933,non-corporate,0.01165,0.01181,0.01174,0.06551,0.08331,0.07813,0.41559,0.34762,0.36534 -172,172,39.00000,Hospitals,335377700162.39520,SB31,0.01880,0.21304,0.19586,0.20078,Structures,0.24937,0.18302,0.19793,0.24937,0.18302,0.19793,Nonresidential Buildings,0.04671,0.06451,0.05933,non-corporate,0.01165,0.01181,0.01174,0.06551,0.08331,0.07813,0.41559,0.34762,0.36534 -173,173,39.00000,Special care,75652337468.16002,SB32,0.01880,0.21304,0.19586,0.20078,Structures,0.24937,0.18302,0.19793,0.24937,0.18302,0.19793,Nonresidential Buildings,0.04671,0.06451,0.05933,non-corporate,0.01165,0.01181,0.01174,0.06551,0.08331,0.07813,0.41559,0.34762,0.36534 -174,174,39.00000,Lodging,333097535279.52374,SB41,0.02810,0.21853,0.20199,0.20674,Structures,0.27085,0.20201,0.21763,0.27085,0.20201,0.21763,Nonresidential Buildings,0.04808,0.06604,0.06082,non-corporate,0.01302,0.01334,0.01324,0.07618,0.09414,0.08892,0.41559,0.34762,0.36534 -175,175,39.00000,Air transportation,6522869098.36936,SB43,0.02370,0.21594,0.19909,0.20392,Structures,0.26084,0.19314,0.20843,0.26084,0.19314,0.20843,Nonresidential Buildings,0.04743,0.06532,0.06011,non-corporate,0.01237,0.01261,0.01253,0.07113,0.08902,0.08381,0.41559,0.34762,0.36534 -176,176,39.00000,Other transportation,1255401381.70107,SB45,0.02370,0.21594,0.19909,0.20392,Structures,0.26084,0.19314,0.20843,0.26084,0.19314,0.20843,Nonresidential Buildings,0.04743,0.06532,0.06011,non-corporate,0.01237,0.01261,0.01253,0.07113,0.08902,0.08381,0.41559,0.34762,0.36534 -177,177,39.00000,Warehouses,129247228808.96722,SC01,0.02250,0.21523,0.19830,0.20315,Structures,0.25807,0.19068,0.20588,0.25807,0.19068,0.20588,Nonresidential Buildings,0.04725,0.06512,0.05992,non-corporate,0.01219,0.01242,0.01234,0.06975,0.08762,0.08242,0.41559,0.34762,0.36534 -178,178,39.00000,Other commercial,167854351277.22626,SC02,0.02620,0.21741,0.20074,0.20552,Structures,0.26656,0.19820,0.21368,0.26656,0.19820,0.21368,Nonresidential Buildings,0.04780,0.06573,0.06052,non-corporate,0.01274,0.01303,0.01293,0.07400,0.09193,0.08672,0.41559,0.34762,0.36534 -179,179,39.00000,Multimerchandise shopping,242344895152.75317,SC03,0.02620,0.21741,0.20074,0.20552,Structures,0.26656,0.19820,0.21368,0.26656,0.19820,0.21368,Nonresidential Buildings,0.04780,0.06573,0.06052,non-corporate,0.01274,0.01303,0.01293,0.07400,0.09193,0.08672,0.41559,0.34762,0.36534 -180,180,39.00000,Food and beverage establishments,142536462115.36786,SC04,0.02620,0.21741,0.20074,0.20552,Structures,0.26656,0.19820,0.21368,0.26656,0.19820,0.21368,Nonresidential Buildings,0.04780,0.06573,0.06052,non-corporate,0.01274,0.01303,0.01293,0.07400,0.09193,0.08672,0.41559,0.34762,0.36534 -181,181,39.00000,Manufacturing,312763751528.73279,SI00,0.03140,0.22048,0.20416,0.20885,Structures,0.27817,0.20854,0.22439,0.27817,0.20854,0.22439,Nonresidential Buildings,0.04857,0.06659,0.06135,non-corporate,0.01351,0.01389,0.01377,0.07997,0.09799,0.09275,0.41559,0.34762,0.36534 -182,182,39.00000,Public safety,10144839642.53934,SO03,0.02370,0.21594,0.19909,0.20392,Structures,0.26084,0.19314,0.20843,0.26084,0.19314,0.20843,Nonresidential Buildings,0.04743,0.06532,0.06011,non-corporate,0.01237,0.01261,0.01253,0.07113,0.08902,0.08381,0.41559,0.34762,0.36534 -183,183,39.00000,Office,595428227069.28125,SOO1,0.02470,0.21653,0.19975,0.20456,Structures,0.26314,0.19517,0.21054,0.26314,0.19517,0.21054,Nonresidential Buildings,0.04758,0.06548,0.06027,non-corporate,0.01252,0.01278,0.01269,0.07228,0.09018,0.08497,0.41559,0.34762,0.36534 -184,184,39.00000,Medical buildings,100075071146.99706,SOO2,0.02470,0.21653,0.19975,0.20456,Structures,0.26314,0.19517,0.21054,0.26314,0.19517,0.21054,Nonresidential Buildings,0.04758,0.06548,0.06027,non-corporate,0.01252,0.01278,0.01269,0.07228,0.09018,0.08497,0.41559,0.34762,0.36534 -185,185,7.00000,Amusement and recreation,164426728047.02826,SB42,0.03000,0.18413,0.15585,0.16401,Structures,0.11152,0.03264,0.05046,0.11152,0.03264,0.05046,Other Structures,0.03946,0.05448,0.05011,non-corporate,0.00440,0.00178,0.00253,0.06946,0.08448,0.08011,0.93090,0.91504,0.91954 -186,186,39.00000,Local transit structures,2713917848.41494,SB44,0.02370,0.21594,0.19909,0.20392,Structures,0.26084,0.19314,0.20843,0.26084,0.19314,0.20843,Other Structures,0.04743,0.06532,0.06011,non-corporate,0.01237,0.01261,0.01253,0.07113,0.08902,0.08381,0.41559,0.34762,0.36534 -187,187,5.00000,Other land transportation,4956240890.72790,SB46,0.02370,0.18255,0.15363,0.16198,Structures,0.10254,0.02265,0.04073,0.10254,0.02265,0.04073,Other Structures,0.03906,0.05392,0.04961,non-corporate,0.00401,0.00122,0.00202,0.06276,0.07762,0.07331,0.94904,0.93684,0.94033 -188,188,20.00000,Farm,210718689415.62762,SN00,0.02390,0.19080,0.16527,0.17262,Structures,0.14763,0.07283,0.08965,0.14763,0.07283,0.08965,Other Structures,0.04113,0.05684,0.05227,non-corporate,0.00607,0.00414,0.00469,0.06503,0.08074,0.07617,0.81788,0.78647,0.79505 -189,189,20.00000,Water supply,17351319722.49404,SO01,0.02250,0.19054,0.16497,0.17233,Structures,0.14629,0.07160,0.08839,0.14629,0.07160,0.08839,Other Structures,0.04107,0.05676,0.05220,non-corporate,0.00601,0.00406,0.00461,0.06357,0.07926,0.07470,0.81788,0.78647,0.79505 -190,190,20.00000,Sewage and waste disposal,18704712570.11411,SO02,0.02250,0.19054,0.16497,0.17233,Structures,0.14629,0.07160,0.08839,0.14629,0.07160,0.08839,Other Structures,0.04107,0.05676,0.05220,non-corporate,0.00601,0.00406,0.00461,0.06357,0.07926,0.07470,0.81788,0.78647,0.79505 -191,191,15.00000,Highway and conservation and development,14651065465.71158,SO04,0.02250,0.18841,0.16209,0.16966,Structures,0.13501,0.05962,0.07655,0.13501,0.05962,0.07655,Other Structures,0.04053,0.05604,0.05153,non-corporate,0.00547,0.00334,0.00394,0.06303,0.07854,0.07403,0.85267,0.82446,0.83227 -192,192,7.00000,Mobile structures,3986455830.48833,SOMO,0.05560,0.18592,0.15805,0.16609,Structures,0.12149,0.04232,0.06024,0.12149,0.04232,0.06024,Other Structures,0.03991,0.05503,0.05063,non-corporate,0.00485,0.00233,0.00305,0.09551,0.11063,0.10623,0.93090,0.91504,0.91954 -193,193,20.00000,Other railroad,35355401894.74462,SU11,0.01760,0.18964,0.16391,0.17132,Structures,0.14156,0.06724,0.08393,0.14156,0.06724,0.08393,Other Structures,0.04084,0.05650,0.05194,non-corporate,0.00578,0.00380,0.00436,0.05844,0.07410,0.06954,0.81788,0.78647,0.79505 -194,194,7.00000,Track replacement,41586561300.50691,SU12,0.02490,0.18377,0.15541,0.16360,Structures,0.10951,0.03069,0.04849,0.10951,0.03069,0.04849,Other Structures,0.03937,0.05437,0.05001,non-corporate,0.00431,0.00167,0.00242,0.06427,0.07927,0.07491,0.93090,0.91504,0.91954 -195,195,15.00000,Electric,70225622111.33885,SU30,0.02110,0.18820,0.16184,0.16942,Structures,0.13390,0.05857,0.07548,0.13390,0.05857,0.07548,Other Structures,0.04048,0.05598,0.05147,non-corporate,0.00542,0.00328,0.00389,0.06158,0.07708,0.07257,0.85267,0.82446,0.83227 -196,196,5.00000,Wind and solar,13828813701.93123,SU60,0.03030,0.18289,0.15405,0.16238,Structures,0.10449,0.02456,0.04266,0.10449,0.02456,0.04266,Other Structures,0.03915,0.05403,0.04970,non-corporate,0.00409,0.00133,0.00212,0.06945,0.08433,0.08000,0.94904,0.93684,0.94033 -197,197,27.50000,Residential,1251223923087.89990,RES,0.01631,0.20585,0.18714,0.19246,Structures,0.21925,0.15436,0.16872,0.21925,0.15436,0.16872,Residential Buildings,0.04490,0.06232,0.05724,non-corporate,0.00985,0.00962,0.00966,0.06122,0.07863,0.07356,0.51943,0.44928,0.46804 -198,198,3.64718,Computers and Software,398439404770.52747,,0.41304,0.50696,0.60657,0.57463,Equipment,0.59468,0.65512,0.63911,0.68999,0.68663,0.68748,Computers and Software,0.12829,0.16817,0.15539,corporate,0.08852,0.11547,0.10683,0.54133,0.58121,0.56843,0.96490,0.94325,0.95001 -199,199,7.00000,Industrial Machinery,754098089405.10413,,0.10569,0.28345,0.37865,0.34803,Equipment,0.12639,0.40844,0.34540,0.33181,0.46248,0.43313,Industrial Machinery,0.05952,0.09805,0.08567,corporate,0.01975,0.04534,0.03711,0.16521,0.20374,0.19136,0.94254,0.90945,0.91960 -200,200,6.92378,Instruments and Communications Equipment,847266548005.08252,,0.12485,0.29787,0.39363,0.36284,Equipment,0.18700,0.43500,0.37847,0.37816,0.48663,0.46177,Instruments and Communications Equipment,0.06396,0.10266,0.09023,corporate,0.02419,0.04996,0.04166,0.18881,0.22750,0.21508,0.94312,0.91033,0.92039 -201,201,7.39403,Intellectual Property,1681853350900.40088,,0.17644,0.32982,0.42155,0.39217,Intellectual Property,0.29530,0.47863,0.43498,0.46100,0.52627,0.51071,Intellectual Property,0.07379,0.11125,0.09925,corporate,0.03402,0.05855,0.05069,0.25023,0.28769,0.27570,0.97052,0.95502,0.95952 -204,204,7.73987,Mining and Drilling Structures,2172847115166.73730,,0.05760,0.24676,0.34039,0.31025,Structures,-0.07811,0.32772,0.24263,0.17539,0.38915,0.34414,Mining and Drilling Structures,0.04823,0.08627,0.07405,corporate,0.00846,0.03357,0.02548,0.10583,0.14387,0.13164,0.93511,0.90032,0.91081 -205,205,39.00000,Nonresidential Buildings,4551150810123.36719,,0.02561,0.24879,0.36592,0.32816,Structures,-0.06427,0.38384,0.29509,0.18597,0.44013,0.38956,Nonresidential Buildings,0.04886,0.09413,0.07956,corporate,0.00909,0.04143,0.03099,0.07447,0.11974,0.10516,0.47842,0.32921,0.36757 -206,206,6.89065,Office and Residential Equipment,213260346797.01944,,0.11933,0.29367,0.38922,0.35850,Equipment,0.17022,0.42744,0.36912,0.36533,0.47975,0.45367,Office and Residential Equipment,0.06267,0.10130,0.08889,corporate,0.02289,0.04860,0.04033,0.18199,0.22063,0.20822,0.94338,0.91071,0.92073 -207,207,7.00000,Other Equipment,337069776278.42487,,0.15074,0.31771,0.41447,0.38337,Equipment,0.25782,0.46822,0.41913,0.43233,0.51680,0.49698,Other Equipment,0.07006,0.10907,0.09655,corporate,0.03029,0.05637,0.04798,0.22081,0.25981,0.24729,0.94254,0.90945,0.91960 -208,208,9.94297,Other Industrial Equipment,1055995696084.39087,,0.09750,0.27906,0.37573,0.34462,Equipment,0.10609,0.40297,0.33728,0.31628,0.45752,0.42610,Other Industrial Equipment,0.05817,0.09715,0.08462,corporate,0.01840,0.04445,0.03606,0.15567,0.19465,0.18212,0.91735,0.87462,0.88737 -209,209,13.87951,Other Structures,1869521468512.13208,,0.02290,0.22348,0.31935,0.28842,Structures,-0.26615,0.27319,0.16707,0.03157,0.33960,0.27870,Other Structures,0.04107,0.07980,0.06733,corporate,0.00130,0.02710,0.01876,0.06397,0.10270,0.09023,0.88498,0.83067,0.84650 -210,210,27.50000,Residential Buildings,333776621894.00000,,0.01631,0.23250,0.34522,0.30862,Structures,-0.18597,0.33910,0.23747,0.09289,0.39948,0.33966,Residential Buildings,0.04385,0.08776,0.07354,corporate,0.00407,0.03506,0.02498,0.06016,0.10407,0.08986,0.57872,0.42718,0.46827 -211,211,6.52644,Transportation Equipment,965295059837.32141,,0.14020,0.30808,0.40341,0.37277,Equipment,0.22504,0.45110,0.39881,0.40726,0.50125,0.47939,Transportation Equipment,0.06710,0.10567,0.09328,corporate,0.02733,0.05297,0.04472,0.20730,0.24587,0.23348,0.94564,0.91492,0.92431 -212,212,3.75970,Computers and Software,133772595225.18484,,0.41707,0.19949,0.17457,0.18178,Equipment,0.19048,0.10935,0.12797,0.19048,0.10935,0.12797,Computers and Software,0.04331,0.05917,0.05457,non-corporate,0.00825,0.00647,0.00698,0.46038,0.47625,0.47164,0.95672,0.94614,0.94917 -213,213,7.00000,Industrial Machinery,170693910597.87476,,0.10585,0.18942,0.16236,0.17017,Equipment,0.14042,0.06076,0.07885,0.14042,0.06076,0.07885,Industrial Machinery,0.04079,0.05611,0.05166,non-corporate,0.00573,0.00341,0.00407,0.14664,0.16196,0.15751,0.93090,0.91504,0.91954 -214,214,6.92834,Instruments and Communications Equipment,352265040695.39178,,0.13114,0.19103,0.16432,0.17204,Equipment,0.14880,0.06893,0.08710,0.14880,0.06893,0.08710,Instruments and Communications Equipment,0.04119,0.05660,0.05212,non-corporate,0.00613,0.00390,0.00454,0.17232,0.18774,0.18326,0.93155,0.91582,0.92029 -215,215,6.33241,Intellectual Property,387169616706.89374,,0.18561,0.18444,0.15551,0.16389,Intellectual Property,0.11324,0.03112,0.04990,0.11324,0.03112,0.04990,Intellectual Property,0.03954,0.05439,0.05008,non-corporate,0.00448,0.00169,0.00250,0.22514,0.24000,0.23569,0.97174,0.96529,0.96708 -218,218,6.73025,Mining and Drilling Structures,337164385115.77063,,0.06203,0.18559,0.15759,0.16568,Structures,0.11967,0.04034,0.05830,0.11967,0.04034,0.05830,Mining and Drilling Structures,0.03982,0.05492,0.05053,non-corporate,0.00477,0.00222,0.00295,0.10186,0.11695,0.11257,0.93242,0.91743,0.92167 -219,219,39.00000,Nonresidential Buildings,2863255336898.64990,,0.02432,0.21595,0.19904,0.20389,Structures,0.26091,0.19298,0.20833,0.26091,0.19298,0.20833,Nonresidential Buildings,0.04744,0.06530,0.06011,non-corporate,0.01238,0.01260,0.01252,0.07175,0.08962,0.08442,0.42161,0.35397,0.37162 -220,220,6.80132,Office and Residential Equipment,108443653204.71063,,0.12040,0.19011,0.16318,0.17096,Equipment,0.14402,0.06419,0.08234,0.14402,0.06419,0.08234,Office and Residential Equipment,0.04096,0.05632,0.05185,non-corporate,0.00590,0.00361,0.00427,0.16136,0.17672,0.17226,0.93270,0.91721,0.92161 -221,221,7.00000,Other Equipment,175872223716.43555,,0.15009,0.19251,0.16615,0.17377,Equipment,0.15642,0.07642,0.09464,0.15642,0.07642,0.09464,Other Equipment,0.04156,0.05706,0.05256,non-corporate,0.00650,0.00436,0.00497,0.19165,0.20716,0.20265,0.93090,0.91504,0.91954 -222,222,7.35694,Other Industrial Equipment,349865415800.24005,,0.12282,0.19039,0.16358,0.17132,Equipment,0.14548,0.06585,0.08395,0.14548,0.06585,0.08395,Other Industrial Equipment,0.04103,0.05642,0.05195,non-corporate,0.00597,0.00371,0.00436,0.16385,0.17924,0.17477,0.92699,0.91075,0.91535 -223,223,14.34493,Other Structures,598505528799.12842,,0.02518,0.18786,0.16117,0.16886,Structures,0.13209,0.05575,0.07294,0.13209,0.05575,0.07294,Other Structures,0.04039,0.05581,0.05133,non-corporate,0.00534,0.00311,0.00374,0.06558,0.08099,0.07651,0.86476,0.83970,0.84662 -224,224,27.50000,Residential Buildings,1251223923087.89990,,0.01631,0.20585,0.18714,0.19246,Structures,0.21925,0.15436,0.16872,0.21925,0.15436,0.16872,Residential Buildings,0.04490,0.06232,0.05724,non-corporate,0.00985,0.00962,0.00966,0.06122,0.07863,0.07356,0.51943,0.44928,0.46804 -225,225,5.67042,Transportation Equipment,319214520353.45972,,0.15422,0.18987,0.16277,0.17060,Equipment,0.14279,0.06248,0.08076,0.14279,0.06248,0.08076,Transportation Equipment,0.04090,0.05621,0.05177,non-corporate,0.00584,0.00351,0.00418,0.19512,0.21044,0.20599,0.94294,0.92962,0.93342 -226,226,7.26837,Equipment,4571424921177.87109,,0.14538,0.31279,0.40898,0.37806,Equipment,0.24144,0.45985,0.40912,0.41980,0.50921,0.48831,Equipment,0.06855,0.10738,0.09491,corporate,0.02878,0.05468,0.04635,0.21393,0.25276,0.24029,0.93947,0.90573,0.91600 -230,230,25.70088,Structures,8927296015696.23438,,0.03248,0.24239,0.34918,0.31475,Structures,-0.10902,0.34816,0.25652,0.15175,0.40772,0.35617,Structures,0.04689,0.08898,0.07543,corporate,0.00712,0.03628,0.02687,0.07937,0.12146,0.10791,0.67847,0.57689,0.60385 -231,231,6.51570,Equipment,1610127359593.29712,,0.15633,0.19129,0.16462,0.17233,Equipment,0.15018,0.07015,0.08837,0.15018,0.07015,0.08837,Equipment,0.04125,0.05668,0.05220,non-corporate,0.00620,0.00398,0.00461,0.19759,0.21301,0.20853,0.93485,0.91990,0.92414 -235,235,31.07440,Structures,5050149173901.45020,,0.02496,0.20809,0.18883,0.19435,Structures,0.22889,0.16009,0.17556,0.22889,0.16009,0.17556,Structures,0.04547,0.06275,0.05772,non-corporate,0.01041,0.01004,0.01013,0.07042,0.08770,0.08267,0.53247,0.47277,0.48852 -236,236,38.79367,Overall,20307631178754.23438,,0.06162,0.26362,0.36976,0.33565,Overall,0.02659,0.39146,0.31494,0.25548,0.44706,0.40675,Overall,0.05342,0.09531,0.08186,corporate,0.01365,0.04261,0.03330,0.11504,0.15693,0.14348,0.59012,0.53659,0.55112 -237,237,68.60454,Overall,17036588368688.33008,,0.02639,0.21219,0.19388,0.19917,Overall,0.24590,0.17668,0.19244,0.24590,0.17668,0.19244,Overall,0.04649,0.06401,0.05892,non-corporate,0.01143,0.01131,0.01134,0.07288,0.09040,0.08531,0.26827,0.24902,0.25413 +0,0,3.00000,Prepackaged software,72268924051.90823,ENS1,0.55000,0.60565,0.70705,0.67455,Equipment,0.67226,0.70868,0.69872,0.74933,0.73531,0.73911,Computers and Software,0.15866,0.19909,0.18614,corporate,0.11889,0.14639,0.13758,0.70866,0.74909,0.73614,0.96827,0.94839,0.95462 +1,1,3.00000,Custom software,197240164682.67053,ENS2,0.33000,0.44432,0.54113,0.51006,Equipment,0.52304,0.60821,0.58621,0.63520,0.64402,0.64168,Computers and Software,0.10902,0.14804,0.13553,corporate,0.06925,0.09534,0.08697,0.43902,0.47804,0.46553,0.96827,0.94839,0.95462 +2,2,5.00000,Mainframes,17413293619.14563,EP1A,0.46330,0.54745,0.65036,0.61739,Equipment,0.63056,0.68070,0.66728,0.71744,0.70989,0.71188,Computers and Software,0.14075,0.18165,0.16855,corporate,0.10098,0.12895,0.11999,0.60405,0.64495,0.63185,0.95786,0.93250,0.94037 +3,3,5.00000,PCs,53550810952.93879,EP1B,0.46330,0.54745,0.65036,0.61739,Equipment,0.63056,0.68070,0.66728,0.71744,0.70989,0.71188,Computers and Software,0.14075,0.18165,0.16855,corporate,0.10098,0.12895,0.11999,0.60405,0.64495,0.63185,0.95786,0.93250,0.94037 +4,4,5.00000,DASDs,0.00000,EP1C,0.46330,0.54745,0.65036,0.61739,Equipment,0.63056,0.68070,0.66728,0.71744,0.70989,0.71188,Computers and Software,0.14075,0.18165,0.16855,corporate,0.10098,0.12895,0.11999,0.60405,0.64495,0.63185,0.95786,0.93250,0.94037 +5,5,5.00000,Printers,9260043911.05631,EP1D,0.46330,0.54745,0.65036,0.61739,Equipment,0.63056,0.68070,0.66728,0.71744,0.70989,0.71188,Computers and Software,0.14075,0.18165,0.16855,corporate,0.10098,0.12895,0.11999,0.60405,0.64495,0.63185,0.95786,0.93250,0.94037 +6,6,5.00000,Terminals,12396994618.63852,EP1E,0.46330,0.54745,0.65036,0.61739,Equipment,0.63056,0.68070,0.66728,0.71744,0.70989,0.71188,Computers and Software,0.14075,0.18165,0.16855,corporate,0.10098,0.12895,0.11999,0.60405,0.64495,0.63185,0.95786,0.93250,0.94037 +7,7,5.00000,Tape drives,0.00000,EP1F,0.46330,0.54745,0.65036,0.61739,Equipment,0.63056,0.68070,0.66728,0.71744,0.70989,0.71188,Computers and Software,0.14075,0.18165,0.16855,corporate,0.10098,0.12895,0.11999,0.60405,0.64495,0.63185,0.95786,0.93250,0.94037 +8,8,5.00000,Storage devices,7998988409.07232,EP1G,0.46330,0.54745,0.65036,0.61739,Equipment,0.63056,0.68070,0.66728,0.71744,0.70989,0.71188,Computers and Software,0.14075,0.18165,0.16855,corporate,0.10098,0.12895,0.11999,0.60405,0.64495,0.63185,0.95786,0.93250,0.94037 +9,9,5.00000,System integrators,28310184525.09714,EP1H,0.46330,0.54745,0.65036,0.61739,Equipment,0.63056,0.68070,0.66728,0.71744,0.70989,0.71188,Computers and Software,0.14075,0.18165,0.16855,corporate,0.10098,0.12895,0.11999,0.60405,0.64495,0.63185,0.95786,0.93250,0.94037 +10,10,7.00000,Special industrial machinery,277678587239.93805,EI40,0.10310,0.28148,0.37659,0.34600,Equipment,0.11741,0.40459,0.34059,0.32496,0.45901,0.42899,Industrial Machinery,0.05892,0.09741,0.08505,corporate,0.01915,0.04471,0.03648,0.16202,0.20051,0.18815,0.94254,0.90945,0.91960 +11,11,7.00000,General industrial equipment,476419502165.16602,EI50,0.10720,0.28460,0.37985,0.34921,Equipment,0.13155,0.41066,0.34817,0.33578,0.46452,0.43556,Industrial Machinery,0.05988,0.09841,0.08604,corporate,0.02011,0.04572,0.03747,0.16708,0.20561,0.19324,0.94254,0.90945,0.91960 +12,12,5.00000,Office and accounting equipment,7268611167.00189,EP12,0.31190,0.43477,0.53365,0.50193,Equipment,0.50981,0.60202,0.57842,0.62509,0.63840,0.63494,Instruments and Communications Equipment,0.10608,0.14574,0.13302,corporate,0.06631,0.09304,0.08446,0.41798,0.45764,0.44492,0.95786,0.93250,0.94037 +13,13,7.00000,Communications,498335724804.03143,EP20,0.11290,0.28893,0.38438,0.35369,Equipment,0.15047,0.41889,0.35843,0.35025,0.47201,0.44444,Instruments and Communications Equipment,0.06121,0.09981,0.08741,corporate,0.02144,0.04711,0.03885,0.17411,0.21271,0.20031,0.94254,0.90945,0.91960 +14,14,5.00000,Photocopy and related equipment,25020946205.42981,EP31,0.18000,0.33660,0.43197,0.40134,Equipment,0.31468,0.49324,0.45059,0.47585,0.53956,0.52424,Instruments and Communications Equipment,0.07588,0.11445,0.10207,corporate,0.03611,0.06175,0.05351,0.25588,0.29445,0.28207,0.95786,0.93250,0.94037 +15,15,7.00000,Nonelectro medical instruments,133227504585.58267,EP34,0.13500,0.30574,0.40195,0.37102,Equipment,0.21664,0.44875,0.39533,0.40085,0.49914,0.47639,Instruments and Communications Equipment,0.06638,0.10522,0.09275,corporate,0.02661,0.05252,0.04418,0.20138,0.24022,0.22775,0.94254,0.90945,0.91960 +16,16,7.00000,Electro medical instruments,75049828222.78802,EP35,0.13500,0.30574,0.40195,0.37102,Equipment,0.21664,0.44875,0.39533,0.40085,0.49914,0.47639,Instruments and Communications Equipment,0.06638,0.10522,0.09275,corporate,0.02661,0.05252,0.04418,0.20138,0.24022,0.22775,0.94254,0.90945,0.91960 +17,17,7.00000,Nonmedical instruments,108363933020.24872,EP36,0.13500,0.30574,0.40195,0.37102,Equipment,0.21664,0.44875,0.39533,0.40085,0.49914,0.47639,Instruments and Communications Equipment,0.06638,0.10522,0.09275,corporate,0.02661,0.05252,0.04418,0.20138,0.24022,0.22775,0.94254,0.90945,0.91960 +18,18,5.00000,Household furniture,8900871527.19684,EO11,0.13750,0.30497,0.39921,0.36893,Equipment,0.21385,0.44429,0.39110,0.39872,0.49509,0.47273,Office and Residential Equipment,0.06615,0.10437,0.09210,corporate,0.02637,0.05167,0.04354,0.20365,0.24187,0.22960,0.95786,0.93250,0.94037 +19,19,7.00000,Other furniture,201600171017.50803,EO12,0.11790,0.29273,0.38835,0.35761,Equipment,0.16640,0.42592,0.36717,0.36243,0.47840,0.45201,Office and Residential Equipment,0.06238,0.10103,0.08862,corporate,0.02261,0.04833,0.04006,0.18028,0.21893,0.20652,0.94254,0.90945,0.91960 +20,20,5.00000,Household appliances,2759304252.31458,EO71,0.16500,0.32544,0.42041,0.38990,Equipment,0.28219,0.47698,0.43097,0.45099,0.52479,0.50725,Office and Residential Equipment,0.07244,0.11089,0.09855,corporate,0.03267,0.05820,0.04999,0.23744,0.27589,0.26355,0.95786,0.93250,0.94037 +21,21,7.00000,Service industry machinery,100661650547.22247,EO60,0.15280,0.31927,0.41610,0.38498,Equipment,0.26288,0.47066,0.42210,0.43622,0.51904,0.49958,Other Equipment,0.07054,0.10957,0.09704,corporate,0.03077,0.05687,0.04848,0.22334,0.26237,0.24984,0.94254,0.90945,0.91960 +22,22,7.00000,Other electrical,16821590672.86298,EO72,0.18340,0.34254,0.44043,0.40899,Equipment,0.33079,0.50451,0.46297,0.48816,0.54980,0.53497,Other Equipment,0.07770,0.11706,0.10443,corporate,0.03793,0.06436,0.05587,0.26110,0.30046,0.28783,0.94254,0.90945,0.91960 +23,23,7.00000,Other,219586535058.33942,EO80,0.14730,0.31509,0.41173,0.38067,Equipment,0.24918,0.46408,0.41409,0.42575,0.51306,0.49264,Other Equipment,0.06926,0.10822,0.09571,corporate,0.02949,0.05553,0.04715,0.21656,0.25552,0.24301,0.94254,0.90945,0.91960 +24,24,5.00000,Nuclear fuel,6455272413.33420,EI11,0.25000,0.38870,0.48593,0.45472,Equipment,0.43421,0.55744,0.52675,0.56727,0.59789,0.59019,Other Industrial Equipment,0.09191,0.13106,0.11850,corporate,0.05214,0.07836,0.06994,0.34191,0.38106,0.36850,0.95786,0.93250,0.94037 +25,25,7.00000,Other fabricated metals,117546642592.42761,EI12,0.09170,0.27281,0.36752,0.33706,Equipment,0.07556,0.38704,0.31854,0.29296,0.44307,0.40990,Other Industrial Equipment,0.05625,0.09462,0.08229,corporate,0.01648,0.04192,0.03373,0.14795,0.18632,0.17399,0.94254,0.90945,0.91960 +26,26,7.00000,Metalworking machinery,218890188223.75763,EI30,0.12250,0.29623,0.39201,0.36122,Equipment,0.18053,0.43225,0.37500,0.37324,0.48414,0.45879,Other Industrial Equipment,0.06346,0.10216,0.08973,corporate,0.02368,0.04946,0.04117,0.18596,0.22466,0.21223,0.94254,0.90945,0.91960 +27,27,15.00000,Electric transmission and distribution,423453356310.35504,EI60,0.05000,0.24668,0.34508,0.31336,Equipment,-0.07861,0.33878,0.25231,0.17504,0.39922,0.35255,Other Industrial Equipment,0.04821,0.08772,0.07500,corporate,0.00844,0.03502,0.02644,0.09821,0.13772,0.12500,0.87465,0.81498,0.83237 +28,28,7.00000,Farm tractors,24563500689.01743,EO21,0.14520,0.31349,0.41006,0.37902,Equipment,0.24382,0.46152,0.41097,0.42165,0.51074,0.48993,Other Industrial Equipment,0.06877,0.10771,0.09521,corporate,0.02900,0.05501,0.04665,0.21397,0.25291,0.24041,0.94254,0.90945,0.91960 +29,29,5.00000,Construction tractors,9895536358.92141,EO22,0.16330,0.32417,0.41909,0.38860,Equipment,0.27831,0.47507,0.42866,0.44803,0.52305,0.50525,Other Industrial Equipment,0.07205,0.11049,0.09815,corporate,0.03228,0.05779,0.04959,0.23535,0.27379,0.26145,0.95786,0.93250,0.94037 +30,30,7.00000,Other agricultural machinery,46750113836.64255,EO30,0.11790,0.29273,0.38835,0.35761,Equipment,0.16640,0.42592,0.36717,0.36243,0.47840,0.45201,Other Industrial Equipment,0.06238,0.10103,0.08862,corporate,0.02261,0.04833,0.04006,0.18028,0.21893,0.20652,0.94254,0.90945,0.91960 +31,31,5.00000,Other construction machinery,123582273311.10860,EO40,0.15500,0.31800,0.41270,0.38227,Equipment,0.25876,0.46555,0.41709,0.43307,0.51440,0.49524,Other Industrial Equipment,0.07015,0.10852,0.09621,corporate,0.03038,0.05582,0.04765,0.22515,0.26352,0.25121,0.95786,0.93250,0.94037 +32,32,7.00000,Mining and oilfield machinery,84858812348.82649,EO50,0.15000,0.31714,0.41388,0.38279,Equipment,0.25597,0.46733,0.41805,0.43094,0.51602,0.49607,Other Industrial Equipment,0.06989,0.10888,0.09637,corporate,0.03012,0.05619,0.04780,0.21989,0.25888,0.24637,0.94254,0.90945,0.91960 +33,33,15.00000,Steam engines,91645013950.18124,EI21,0.05160,0.24801,0.34651,0.31477,Equipment,-0.06953,0.34209,0.25658,0.18198,0.40222,0.35625,Transportation Equipment,0.04862,0.08816,0.07544,corporate,0.00885,0.03546,0.02687,0.10022,0.13976,0.12704,0.87465,0.81498,0.83237 +34,34,7.00000,Internal combustion engines,12363020746.63129,EI22,0.20630,0.35995,0.45864,0.42695,Equipment,0.37395,0.52714,0.48997,0.52118,0.57036,0.55834,Transportation Equipment,0.08306,0.12266,0.10995,corporate,0.04329,0.06996,0.06139,0.28936,0.32896,0.31625,0.94254,0.90945,0.91960 +35,35,5.00000,Light trucks (including utility vehicles),167619978534.97446,ET11,0.17250,0.33102,0.42619,0.39562,Equipment,0.29881,0.48524,0.44095,0.46371,0.53229,0.51590,Transportation Equipment,0.07416,0.11267,0.10031,corporate,0.03439,0.05997,0.05175,0.24666,0.28517,0.27281,0.95786,0.93250,0.94037 +36,36,5.00000,"Other trucks, buses and truck trailers",119548128283.18022,ET12,0.17250,0.33102,0.42619,0.39562,Equipment,0.29881,0.48524,0.44095,0.46371,0.53229,0.51590,Transportation Equipment,0.07416,0.11267,0.10031,corporate,0.03439,0.05997,0.05175,0.24666,0.28517,0.27281,0.95786,0.93250,0.94037 +37,37,5.00000,Autos,136239832216.63460,ET20,0.33330,0.45069,0.55014,0.51825,Equipment,0.53146,0.61542,0.59376,0.64164,0.65057,0.64822,Transportation Equipment,0.11098,0.15081,0.13804,corporate,0.07121,0.09811,0.08948,0.44428,0.48411,0.47134,0.95786,0.93250,0.94037 +38,38,5.00000,Aircraft,265993981320.40247,ET30,0.08590,0.26657,0.35943,0.32958,Equipment,0.04286,0.37047,0.29893,0.26795,0.42801,0.39292,Transportation Equipment,0.05433,0.09213,0.07999,corporate,0.01456,0.03943,0.03143,0.14023,0.17803,0.16589,0.95786,0.93250,0.94037 +39,39,10.00000,Ships and boats,62839620239.51455,ET40,0.06110,0.25156,0.34707,0.31631,Equipment,-0.04602,0.34337,0.26124,0.19996,0.40339,0.36028,Transportation Equipment,0.04971,0.08833,0.07591,corporate,0.00994,0.03563,0.02735,0.11081,0.14943,0.13701,0.92103,0.87842,0.89126 +40,40,7.00000,Railroad equipment,109045484545.80264,ET50,0.05890,0.24787,0.34144,0.31133,Equipment,-0.07047,0.33024,0.24601,0.18127,0.39146,0.34709,Transportation Equipment,0.04858,0.08660,0.07438,corporate,0.00881,0.03390,0.02582,0.10748,0.14550,0.13328,0.94254,0.90945,0.91960 +41,41,15.00000,Theatrical movies,157833135207.60001,AE10,0.09300,0.28356,0.38551,0.35273,Intellectual Property,0.12687,0.42090,0.35626,0.33220,0.47384,0.44256,Intellectual Property,0.05956,0.10016,0.08712,corporate,0.01978,0.04746,0.03855,0.15256,0.19316,0.18012,0.86590,0.80255,0.82096 +42,42,15.00000,Long-lived television programs,144610873940.84000,AE20,0.16800,0.34378,0.44893,0.41526,Intellectual Property,0.33407,0.51534,0.47272,0.49067,0.55964,0.54340,Intellectual Property,0.07809,0.11967,0.10636,corporate,0.03831,0.06697,0.05779,0.24609,0.28767,0.27436,0.87967,0.82203,0.83886 +43,43,15.00000,Books,67646468506.22700,AE30,0.12100,0.30089,0.40425,0.37118,Intellectual Property,0.19865,0.45243,0.39564,0.38710,0.50248,0.47666,Intellectual Property,0.06489,0.10592,0.09279,corporate,0.02512,0.05322,0.04423,0.18589,0.22692,0.21379,0.90550,0.83799,0.85701 +44,44,15.00000,Music,15406510045.27200,AE40,0.26700,0.40309,0.50645,0.47338,Intellectual Property,0.46023,0.57778,0.54861,0.58716,0.61637,0.60913,Intellectual Property,0.09634,0.13737,0.12424,corporate,0.05657,0.08467,0.07568,0.36334,0.40437,0.39124,0.95224,0.91077,0.92319 +45,45,15.00000,Other entertainment originals,15413496806.95360,AE50,0.10900,0.29249,0.39585,0.36278,Intellectual Property,0.16541,0.43874,0.37833,0.36168,0.49004,0.46167,Intellectual Property,0.06231,0.10334,0.09021,corporate,0.02253,0.05064,0.04165,0.17131,0.21234,0.19921,0.89723,0.82635,0.84611 +46,46,3.00000,Own account software,198787829234.93384,ENS3,0.33000,0.43239,0.52010,0.49203,Intellectual Property,0.50641,0.59031,0.56855,0.62249,0.62775,0.62639,Intellectual Property,0.10535,0.14157,0.12998,corporate,0.06558,0.08887,0.08142,0.43535,0.47157,0.45998,1.00000,1.00000,1.00000 +47,47,5.00000,Pharmaceutical and medicine manufacturing,396355667406.76001,RD11,0.10000,0.27139,0.35910,0.33103,Intellectual Property,0.06831,0.36978,0.30284,0.28741,0.42738,0.39630,Intellectual Property,0.05581,0.09203,0.08044,corporate,0.01604,0.03933,0.03188,0.15581,0.19203,0.18044,1.00000,1.00000,1.00000 +48,48,5.00000,"Chemical manufacturing, ex. pharma and med",54399224281.87000,RD12,0.16000,0.31339,0.40110,0.37303,Intellectual Property,0.24348,0.44738,0.39934,0.42138,0.49789,0.47987,Intellectual Property,0.06874,0.10495,0.09336,corporate,0.02896,0.05226,0.04480,0.22874,0.26495,0.25336,1.00000,1.00000,1.00000 +49,49,5.00000,Computers and peripheral equipment manufacturing,9567048384.52970,RD21,0.40000,0.48139,0.56910,0.54103,Intellectual Property,0.56821,0.62974,0.61339,0.66975,0.66358,0.66522,Intellectual Property,0.12043,0.15665,0.14506,corporate,0.08066,0.10395,0.09649,0.52043,0.55665,0.54506,1.00000,1.00000,1.00000 +50,50,5.00000,Communications equipment manufacturing,38393784818.37000,RD22,0.27000,0.39039,0.47810,0.45003,Intellectual Property,0.43740,0.54915,0.52091,0.56970,0.59036,0.58514,Intellectual Property,0.09243,0.12865,0.11706,corporate,0.05266,0.07595,0.06849,0.36243,0.39865,0.38706,1.00000,1.00000,1.00000 +51,51,5.00000,Semiconductor and other component manufacturing,83580996525.54500,RD23,0.25000,0.37639,0.46410,0.43603,Intellectual Property,0.40990,0.53353,0.50261,0.54867,0.57617,0.56929,Intellectual Property,0.08812,0.12434,0.11275,corporate,0.04835,0.07164,0.06419,0.33812,0.37434,0.36275,1.00000,1.00000,1.00000 +52,52,5.00000,Navigational and other instruments manufacturing,30814085766.70850,RD24,0.29000,0.40439,0.49210,0.46403,Intellectual Property,0.46245,0.56376,0.53792,0.58886,0.60363,0.59987,Intellectual Property,0.09674,0.13295,0.12136,corporate,0.05696,0.08026,0.07280,0.38674,0.42295,0.41136,1.00000,1.00000,1.00000 +53,53,5.00000,"Other computer and electronic manufacturing, n.e.c.",1636224416.52115,RD25,0.40000,0.48139,0.56910,0.54103,Intellectual Property,0.56821,0.62974,0.61339,0.66975,0.66358,0.66522,Intellectual Property,0.12043,0.15665,0.14506,corporate,0.08066,0.10395,0.09649,0.52043,0.55665,0.54506,1.00000,1.00000,1.00000 +54,54,7.00000,Motor vehicles and parts manufacturing,39313793397.90000,RD31,0.31000,0.41839,0.50610,0.47803,Intellectual Property,0.48537,0.57745,0.55376,0.60639,0.61607,0.61358,Intellectual Property,0.10104,0.13726,0.12567,corporate,0.06127,0.08456,0.07711,0.41104,0.44726,0.43567,1.00000,1.00000,1.00000 +55,55,7.00000,Aerospace products and parts manufacturing,33211530575.70000,RD32,0.22000,0.35539,0.44310,0.41503,Intellectual Property,0.36320,0.50796,0.47237,0.51295,0.55294,0.54311,Intellectual Property,0.08166,0.11788,0.10629,corporate,0.04189,0.06518,0.05773,0.30166,0.33788,0.32629,1.00000,1.00000,1.00000 +56,56,3.00000,Software publishers,20657269549.44800,RD40,0.22000,0.36366,0.45817,0.42782,Intellectual Property,0.38244,0.52658,0.49121,0.52767,0.56985,0.55942,Intellectual Property,0.08420,0.12251,0.11022,corporate,0.04443,0.06981,0.06166,0.30420,0.34251,0.33022,0.96827,0.94839,0.95462 +57,57,5.00000,Financial and real estate services,6097212063.91973,RD50,0.16000,0.31339,0.40110,0.37303,Intellectual Property,0.24348,0.44738,0.39934,0.42138,0.49789,0.47987,Intellectual Property,0.06874,0.10495,0.09336,corporate,0.02896,0.05226,0.04480,0.22874,0.26495,0.25336,1.00000,1.00000,1.00000 +58,58,3.00000,Computer systems design and related services,6318822870.57000,RD60,0.36000,0.46632,0.56375,0.53249,Intellectual Property,0.55092,0.62581,0.60626,0.65653,0.66001,0.65905,Intellectual Property,0.11579,0.15500,0.14243,corporate,0.07602,0.10230,0.09387,0.47579,0.51500,0.50243,0.96827,0.94839,0.95462 +59,59,5.00000,Scientific research and development services,22814623102.40300,RD70,0.16000,0.31339,0.40110,0.37303,Intellectual Property,0.24348,0.44738,0.39934,0.42138,0.49789,0.47987,Intellectual Property,0.06874,0.10495,0.09336,corporate,0.02896,0.05226,0.04480,0.22874,0.26495,0.25336,1.00000,1.00000,1.00000 +60,60,5.00000,"All other nonmanufacturing, n.e.c.",86239268420.74191,RD80,0.16000,0.31339,0.40110,0.37303,Intellectual Property,0.24348,0.44738,0.39934,0.42138,0.49789,0.47987,Intellectual Property,0.06874,0.10495,0.09336,corporate,0.02896,0.05226,0.04480,0.22874,0.26495,0.25336,1.00000,1.00000,1.00000 +61,61,3.00000,Private universities and colleges,8714364638.94000,RD91,0.16000,0.31966,0.41291,0.38297,Intellectual Property,0.26413,0.46588,0.41838,0.43718,0.51470,0.49635,Intellectual Property,0.07066,0.10859,0.09642,corporate,0.03089,0.05589,0.04786,0.23066,0.26859,0.25642,0.96827,0.94839,0.95462 +62,62,3.00000,Other nonprofit institutions,36718605375.19618,RD92,0.16000,0.31966,0.41291,0.38297,Intellectual Property,0.26413,0.46588,0.41838,0.43718,0.51470,0.49635,Intellectual Property,0.07066,0.10859,0.09642,corporate,0.03089,0.05589,0.04786,0.23066,0.26859,0.25642,0.96827,0.94839,0.95462 +63,63,7.00000,Other manufacturing,207322515563.45129,RDOM,0.16000,0.31339,0.40110,0.37303,Intellectual Property,0.24348,0.44738,0.39934,0.42138,0.49789,0.47987,Intellectual Property,0.06874,0.10495,0.09336,corporate,0.02896,0.05226,0.04480,0.22874,0.26495,0.25336,1.00000,1.00000,1.00000 +64,64,100.00000,Inventories,1540550422351.17505,INV,0.00000,0.24439,0.36205,0.32448,Inventories,-0.09464,0.37593,0.28492,0.16278,0.43297,0.38078,Inventories,0.04750,0.09294,0.07842,corporate,0.00773,0.04024,0.02986,0.04750,0.09294,0.07842,0.00000,0.00000,0.00000 +65,65,100.00000,Land,3586506468628.54834,LAND,0.00000,0.23100,0.35000,0.31192,Land,-0.19858,0.35000,0.24785,0.08328,0.40941,0.34869,Land,0.04338,0.08923,0.07456,corporate,0.00361,0.03653,0.02600,0.04338,0.08923,0.07456,0.00000,0.00000,0.00000 +66,66,5.00000,Petroleum and natural gas,1033008886591.34497,SM01,0.07510,0.25853,0.35110,0.32134,Structures,-0.00279,0.35246,0.27600,0.23303,0.41165,0.37306,Mining and Drilling Structures,0.05186,0.08957,0.07746,corporate,0.01208,0.03687,0.02890,0.12696,0.16467,0.15256,0.95786,0.93250,0.94037 +67,67,7.00000,Mining,82930242550.85606,SM02,0.04500,0.23731,0.33039,0.30042,Structures,-0.14727,0.30287,0.21039,0.12253,0.36659,0.31625,Mining and Drilling Structures,0.04533,0.08320,0.07102,corporate,0.00555,0.03050,0.02246,0.09033,0.12820,0.11602,0.94254,0.90945,0.91960 +68,68,15.00000,Communication,578746604536.45056,SU20,0.02370,0.22481,0.32156,0.29032,Structures,-0.25361,0.27933,0.17427,0.04120,0.34520,0.28496,Mining and Drilling Structures,0.04148,0.08048,0.06792,corporate,0.00171,0.02778,0.01935,0.06518,0.10418,0.09162,0.87465,0.81498,0.83237 +69,69,5.00000,Gas,365538319906.67950,SU40,0.07510,0.25853,0.35110,0.32134,Structures,-0.00279,0.35246,0.27600,0.23303,0.41165,0.37306,Mining and Drilling Structures,0.05186,0.08957,0.07746,corporate,0.01208,0.03687,0.02890,0.12696,0.16467,0.15256,0.95786,0.93250,0.94037 +70,70,5.00000,Petroleum pipelines,112623061581.40628,SU50,0.02370,0.22028,0.31148,0.28214,Structures,-0.29724,0.25044,0.14247,0.00782,0.31895,0.25743,Mining and Drilling Structures,0.04009,0.07738,0.06540,corporate,0.00031,0.02468,0.01684,0.06379,0.10108,0.08910,0.95786,0.93250,0.94037 +71,71,39.00000,Religious,100591058771.64963,SB10,0.01880,0.23637,0.34905,0.31260,Structures,-0.15458,0.34787,0.24995,0.11694,0.40747,0.35050,Nonresidential Buildings,0.04504,0.08894,0.07477,corporate,0.00527,0.03624,0.02621,0.06384,0.10774,0.09357,0.55777,0.41976,0.45626 +72,72,39.00000,Educational and vocational,282731611173.25391,SB20,0.01880,0.24038,0.35652,0.31900,Structures,-0.12383,0.36429,0.26921,0.14045,0.42239,0.36718,Nonresidential Buildings,0.04627,0.09124,0.07674,corporate,0.00650,0.03854,0.02818,0.06507,0.11004,0.09554,0.47663,0.32717,0.36556 +73,73,39.00000,Hospitals,321465607211.49677,SB31,0.01880,0.24038,0.35652,0.31900,Structures,-0.12383,0.36429,0.26921,0.14045,0.42239,0.36718,Nonresidential Buildings,0.04627,0.09124,0.07674,corporate,0.00650,0.03854,0.02818,0.06507,0.11004,0.09554,0.47663,0.32717,0.36556 +74,74,39.00000,Special care,70115662530.64020,SB32,0.01880,0.24038,0.35652,0.31900,Structures,-0.12383,0.36429,0.26921,0.14045,0.42239,0.36718,Nonresidential Buildings,0.04627,0.09124,0.07674,corporate,0.00650,0.03854,0.02818,0.06507,0.11004,0.09554,0.47663,0.32717,0.36556 +75,75,39.00000,Lodging,171809464720.12051,SB41,0.02810,0.25200,0.36960,0.33171,Structures,-0.04322,0.39115,0.30463,0.20211,0.44680,0.39786,Nonresidential Buildings,0.04985,0.09526,0.08065,corporate,0.01007,0.04256,0.03209,0.07795,0.12336,0.10875,0.47663,0.32717,0.36556 +76,76,39.00000,Air transportation,26676130902.06076,SB43,0.02370,0.24650,0.36341,0.32570,Structures,-0.07986,0.37873,0.28831,0.17408,0.43551,0.38372,Nonresidential Buildings,0.04815,0.09336,0.07880,corporate,0.00838,0.04066,0.03024,0.07185,0.11706,0.10250,0.47663,0.32717,0.36556 +77,77,39.00000,Other transportation,3546598618.33835,SB45,0.02370,0.24650,0.36341,0.32570,Structures,-0.07986,0.37873,0.28831,0.17408,0.43551,0.38372,Nonresidential Buildings,0.04815,0.09336,0.07880,corporate,0.00838,0.04066,0.03024,0.07185,0.11706,0.10250,0.47663,0.32717,0.36556 +78,78,39.00000,Warehouses,281416771190.75391,SC01,0.02250,0.24500,0.36172,0.32406,Structures,-0.09031,0.37525,0.28373,0.16609,0.43236,0.37975,Nonresidential Buildings,0.04769,0.09284,0.07829,corporate,0.00792,0.04014,0.02973,0.07019,0.11534,0.10079,0.47663,0.32717,0.36556 +79,79,39.00000,Other commercial,342925648724.17450,SC02,0.02620,0.24962,0.36693,0.32911,Structures,-0.05873,0.38584,0.29768,0.19024,0.44198,0.39183,Nonresidential Buildings,0.04912,0.09444,0.07985,corporate,0.00934,0.04174,0.03129,0.07532,0.12064,0.10605,0.47663,0.32717,0.36556 +80,80,39.00000,Multimerchandise shopping,424453104849.45978,SC03,0.02620,0.24962,0.36693,0.32911,Structures,-0.05873,0.38584,0.29768,0.19024,0.44198,0.39183,Nonresidential Buildings,0.04912,0.09444,0.07985,corporate,0.00934,0.04174,0.03129,0.07532,0.12064,0.10605,0.47663,0.32717,0.36556 +81,81,39.00000,Food and beverage establishments,177715537880.96967,SC04,0.02620,0.24962,0.36693,0.32911,Structures,-0.05873,0.38584,0.29768,0.19024,0.44198,0.39183,Nonresidential Buildings,0.04912,0.09444,0.07985,corporate,0.00934,0.04174,0.03129,0.07532,0.12064,0.10605,0.47663,0.32717,0.36556 +82,82,39.00000,Manufacturing,1098167248468.80334,SI00,0.03140,0.25612,0.37424,0.33621,Structures,-0.01732,0.40014,0.31639,0.22192,0.45497,0.40804,Nonresidential Buildings,0.05111,0.09669,0.08204,corporate,0.01134,0.04399,0.03347,0.08251,0.12809,0.11344,0.47663,0.32717,0.36556 +83,83,39.00000,Public safety,15488160357.00830,SO03,0.02370,0.24650,0.36341,0.32570,Structures,-0.07986,0.37873,0.28831,0.17408,0.43551,0.38372,Nonresidential Buildings,0.04815,0.09336,0.07880,corporate,0.00838,0.04066,0.03024,0.07185,0.11706,0.10250,0.47663,0.32717,0.36556 +84,84,39.00000,Office,1125363275874.33521,SOO1,0.02470,0.24775,0.36482,0.32706,Structures,-0.07131,0.38159,0.29209,0.18062,0.43812,0.38699,Nonresidential Buildings,0.04854,0.09379,0.07922,corporate,0.00877,0.04109,0.03066,0.07324,0.11849,0.10392,0.47663,0.32717,0.36556 +85,85,39.00000,Medical buildings,108684928850.30258,SOO2,0.02470,0.24775,0.36482,0.32706,Structures,-0.07131,0.38159,0.29209,0.18062,0.43812,0.38699,Nonresidential Buildings,0.04854,0.09379,0.07922,corporate,0.00877,0.04109,0.03066,0.07324,0.11849,0.10392,0.47663,0.32717,0.36556 +86,86,7.00000,Amusement and recreation,163173271952.98538,SB42,0.03000,0.22590,0.31847,0.28866,Structures,-0.24355,0.27070,0.16798,0.04889,0.33736,0.27952,Other Structures,0.04182,0.07953,0.06740,corporate,0.00204,0.02683,0.01884,0.07182,0.10953,0.09740,0.94254,0.90945,0.91960 +87,87,39.00000,Local transit structures,9253082151.44273,SB44,0.02370,0.24650,0.36341,0.32570,Structures,-0.07986,0.37873,0.28831,0.17408,0.43551,0.38372,Other Structures,0.04815,0.09336,0.07880,corporate,0.00838,0.04066,0.03024,0.07185,0.11706,0.10250,0.47663,0.32717,0.36556 +88,88,5.00000,Other land transportation,7047759108.81892,SB46,0.02370,0.22028,0.31148,0.28214,Structures,-0.29724,0.25044,0.14247,0.00782,0.31895,0.25743,Other Structures,0.04009,0.07738,0.06540,corporate,0.00031,0.02468,0.01684,0.06379,0.10108,0.08910,0.95786,0.93250,0.94037 +89,89,20.00000,Farm,109520310583.21701,SN00,0.02390,0.22670,0.32508,0.29333,Structures,-0.23628,0.28889,0.18535,0.05445,0.35389,0.29456,Other Structures,0.04206,0.08156,0.06884,corporate,0.00229,0.02886,0.02028,0.06596,0.10546,0.09274,0.84315,0.77618,0.79515 +90,90,20.00000,Water supply,41285680278.03433,SO01,0.02250,0.22549,0.32377,0.29205,Structures,-0.24732,0.28536,0.18066,0.04600,0.35068,0.29050,Other Structures,0.04169,0.08116,0.06845,corporate,0.00192,0.02846,0.01988,0.06419,0.10366,0.09095,0.84315,0.77618,0.79515 +91,91,20.00000,Sewage and waste disposal,37655287429.62462,SO02,0.02250,0.22549,0.32377,0.29205,Structures,-0.24732,0.28536,0.18066,0.04600,0.35068,0.29050,Other Structures,0.04169,0.08116,0.06845,corporate,0.00192,0.02846,0.01988,0.06419,0.10366,0.09095,0.84315,0.77618,0.79515 +92,92,15.00000,Highway and conservation and development,22901934534.09797,SO04,0.02250,0.22381,0.32049,0.28927,Structures,-0.26295,0.27636,0.17031,0.03405,0.34250,0.28154,Other Structures,0.04117,0.08015,0.06759,corporate,0.00140,0.02745,0.01903,0.06367,0.10265,0.09009,0.87465,0.81498,0.83237 +93,93,7.00000,Mobile structures,4708544169.52466,SOMO,0.05560,0.24537,0.33882,0.30874,Structures,-0.08776,0.32394,0.23785,0.16805,0.38573,0.34002,Other Structures,0.04780,0.08579,0.07358,corporate,0.00803,0.03309,0.02502,0.10340,0.14139,0.12918,0.94254,0.90945,0.91960 +94,94,20.00000,Other railroad,135810301223.62192,SU11,0.01760,0.22125,0.31919,0.28756,Structures,-0.28759,0.27273,0.16380,0.01520,0.33920,0.27590,Other Structures,0.04039,0.07975,0.06707,corporate,0.00061,0.02705,0.01850,0.05799,0.09735,0.08467,0.84315,0.77618,0.79515 +95,95,7.00000,Track replacement,166460169103.56049,SU12,0.02490,0.22202,0.31441,0.28466,Structures,-0.28007,0.25908,0.15250,0.02095,0.32680,0.26612,Other Structures,0.04062,0.07828,0.06617,corporate,0.00085,0.02558,0.01761,0.06552,0.10318,0.09107,0.94254,0.90945,0.91960 +96,96,15.00000,Electric,1052404941676.51135,SU30,0.02110,0.22265,0.31924,0.28805,Structures,-0.27404,0.27286,0.16566,0.02557,0.33933,0.27751,Other Structures,0.04082,0.07977,0.06721,corporate,0.00104,0.02707,0.01865,0.06192,0.10087,0.08831,0.87465,0.81498,0.83237 +97,97,5.00000,Wind and solar,119300186300.69254,SU60,0.03030,0.22519,0.31657,0.28717,Structures,-0.25011,0.26530,0.16231,0.04387,0.33246,0.27461,Other Structures,0.04160,0.07894,0.06695,corporate,0.00182,0.02625,0.01838,0.07190,0.10924,0.09725,0.95786,0.93250,0.94037 +98,98,27.50000,Residential,333776621894.00000,RES,0.01631,0.23250,0.34522,0.30862,Structures,-0.18597,0.33910,0.23747,0.09293,0.39951,0.33969,Residential Buildings,0.04385,0.08776,0.07354,corporate,0.00407,0.03506,0.02498,0.06016,0.10407,0.08986,0.57872,0.42718,0.46827 +99,99,3.00000,Prepackaged software,22158075947.24139,ENS1,0.55000,0.20165,0.17716,0.18425,Equipment,0.20417,0.12166,0.14065,0.20417,0.12166,0.14065,Computers and Software,0.04405,0.06000,0.05537,non-corporate,0.00899,0.00730,0.00779,0.59405,0.61000,0.60537,0.96137,0.95184,0.95458 +100,100,3.00000,Custom software,60800835314.35992,ENS2,0.33000,0.19311,0.16651,0.17421,Equipment,0.16359,0.08084,0.09979,0.16359,0.08084,0.09979,Computers and Software,0.04191,0.05733,0.05286,non-corporate,0.00686,0.00463,0.00527,0.37191,0.38733,0.38286,0.96137,0.95184,0.95458 +101,101,5.00000,Mainframes,6190706381.18300,EP1A,0.46330,0.20453,0.18073,0.18763,Equipment,0.21699,0.13457,0.15358,0.21699,0.13457,0.15358,Computers and Software,0.04477,0.06089,0.05622,non-corporate,0.00972,0.00819,0.00863,0.50807,0.52419,0.51952,0.94898,0.93685,0.94031 +102,102,5.00000,PCs,20612189046.26059,EP1B,0.46330,0.20453,0.18073,0.18763,Equipment,0.21699,0.13457,0.15358,0.21699,0.13457,0.15358,Computers and Software,0.04477,0.06089,0.05622,non-corporate,0.00972,0.00819,0.00863,0.50807,0.52419,0.51952,0.94898,0.93685,0.94031 +103,103,5.00000,DASDs,0.00000,EP1C,0.46330,0.20453,0.18073,0.18763,Equipment,0.21699,0.13457,0.15358,0.21699,0.13457,0.15358,Computers and Software,0.04477,0.06089,0.05622,non-corporate,0.00972,0.00819,0.00863,0.50807,0.52419,0.51952,0.94898,0.93685,0.94031 +104,104,5.00000,Printers,3876956088.97943,EP1D,0.46330,0.20453,0.18073,0.18763,Equipment,0.21699,0.13457,0.15358,0.21699,0.13457,0.15358,Computers and Software,0.04477,0.06089,0.05622,non-corporate,0.00972,0.00819,0.00863,0.50807,0.52419,0.51952,0.94898,0.93685,0.94031 +105,105,5.00000,Terminals,5141005380.94880,EP1E,0.46330,0.20453,0.18073,0.18763,Equipment,0.21699,0.13457,0.15358,0.21699,0.13457,0.15358,Computers and Software,0.04477,0.06089,0.05622,non-corporate,0.00972,0.00819,0.00863,0.50807,0.52419,0.51952,0.94898,0.93685,0.94031 +106,106,5.00000,Tape drives,0.00000,EP1F,0.46330,0.20453,0.18073,0.18763,Equipment,0.21699,0.13457,0.15358,0.21699,0.13457,0.15358,Computers and Software,0.04477,0.06089,0.05622,non-corporate,0.00972,0.00819,0.00863,0.50807,0.52419,0.51952,0.94898,0.93685,0.94031 +107,107,5.00000,Storage devices,3192011590.92400,EP1G,0.46330,0.20453,0.18073,0.18763,Equipment,0.21699,0.13457,0.15358,0.21699,0.13457,0.15358,Computers and Software,0.04477,0.06089,0.05622,non-corporate,0.00972,0.00819,0.00863,0.50807,0.52419,0.51952,0.94898,0.93685,0.94031 +108,108,5.00000,System integrators,11800815475.28772,EP1H,0.46330,0.20453,0.18073,0.18763,Equipment,0.21699,0.13457,0.15358,0.21699,0.13457,0.15358,Computers and Software,0.04477,0.06089,0.05622,non-corporate,0.00972,0.00819,0.00863,0.50807,0.52419,0.51952,0.94898,0.93685,0.94031 +109,109,7.00000,Special industrial machinery,56031412759.69572,EI40,0.10310,0.18865,0.16129,0.16919,Equipment,0.14069,0.05941,0.07790,0.14069,0.05941,0.07790,Industrial Machinery,0.04080,0.05603,0.05160,non-corporate,0.00574,0.00333,0.00402,0.14390,0.15913,0.15470,0.93082,0.91504,0.91952 +110,110,7.00000,General industrial equipment,114662497838.17902,EI50,0.10720,0.18893,0.16164,0.16952,Equipment,0.14219,0.06088,0.07938,0.14219,0.06088,0.07938,Industrial Machinery,0.04087,0.05611,0.05169,non-corporate,0.00581,0.00342,0.00410,0.14807,0.16331,0.15889,0.93082,0.91504,0.91952 +111,111,5.00000,Office and accounting equipment,2542388832.96892,EP12,0.31190,0.19677,0.17113,0.17855,Equipment,0.18148,0.09900,0.11792,0.18148,0.09900,0.11792,Instruments and Communications Equipment,0.04283,0.05849,0.05394,non-corporate,0.00777,0.00579,0.00636,0.35473,0.37039,0.36584,0.94898,0.93685,0.94031 +112,112,7.00000,Communications,102468863895.39655,EP20,0.11290,0.18933,0.16213,0.16999,Equipment,0.14426,0.06291,0.08143,0.14426,0.06291,0.08143,Instruments and Communications Equipment,0.04097,0.05624,0.05180,non-corporate,0.00591,0.00354,0.00422,0.15387,0.16914,0.16470,0.93082,0.91504,0.91952 +113,113,5.00000,Photocopy and related equipment,10079053795.00768,EP31,0.18000,0.19001,0.16276,0.17064,Equipment,0.14781,0.06553,0.08431,0.14781,0.06553,0.08431,Instruments and Communications Equipment,0.04114,0.05639,0.05196,non-corporate,0.00608,0.00370,0.00438,0.22114,0.23639,0.23196,0.94898,0.93685,0.94031 +114,114,7.00000,Nonelectro medical instruments,111916495412.21930,EP34,0.13500,0.19087,0.16401,0.17177,Equipment,0.15222,0.07071,0.08929,0.15222,0.07071,0.08929,Instruments and Communications Equipment,0.04135,0.05671,0.05225,non-corporate,0.00629,0.00401,0.00467,0.17635,0.19171,0.18725,0.93082,0.91504,0.91952 +115,115,7.00000,Electro medical instruments,65668171777.05855,EP35,0.13500,0.19087,0.16401,0.17177,Equipment,0.15222,0.07071,0.08929,0.15222,0.07071,0.08929,Instruments and Communications Equipment,0.04135,0.05671,0.05225,non-corporate,0.00629,0.00401,0.00467,0.17635,0.19171,0.18725,0.93082,0.91504,0.91952 +116,116,7.00000,Nonmedical instruments,59590066982.74078,EP36,0.13500,0.19087,0.16401,0.17177,Equipment,0.15222,0.07071,0.08929,0.15222,0.07071,0.08929,Instruments and Communications Equipment,0.04135,0.05671,0.05225,non-corporate,0.00629,0.00401,0.00467,0.17635,0.19171,0.18725,0.93082,0.91504,0.91952 +117,117,5.00000,Household furniture,8579128473.70233,EO11,0.13750,0.18783,0.16006,0.16809,Equipment,0.13636,0.05421,0.07293,0.13636,0.05421,0.07293,Office and Residential Equipment,0.04059,0.05572,0.05133,non-corporate,0.00554,0.00302,0.00374,0.17809,0.19322,0.18883,0.94898,0.93685,0.94031 +118,118,7.00000,Other furniture,97670828983.20677,EO12,0.11790,0.18968,0.16256,0.17039,Equipment,0.14608,0.06469,0.08322,0.14608,0.06469,0.08322,Office and Residential Equipment,0.04105,0.05634,0.05190,non-corporate,0.00600,0.00364,0.00432,0.15895,0.17424,0.16980,0.93082,0.91504,0.91952 +119,119,5.00000,Household appliances,2193695747.80152,EO71,0.16500,0.18924,0.16181,0.16974,Equipment,0.14380,0.06157,0.08033,0.14380,0.06157,0.08033,Office and Residential Equipment,0.04095,0.05616,0.05174,non-corporate,0.00589,0.00346,0.00416,0.20595,0.22116,0.21674,0.94898,0.93685,0.94031 +120,120,7.00000,Service industry machinery,66122349452.24888,EO60,0.15280,0.19210,0.16553,0.17321,Equipment,0.15852,0.07690,0.09553,0.15852,0.07690,0.09553,Other Equipment,0.04166,0.05709,0.05261,non-corporate,0.00660,0.00439,0.00503,0.19446,0.20989,0.20541,0.93082,0.91504,0.91952 +121,121,7.00000,Other electrical,3542409326.71975,EO72,0.18340,0.19423,0.16815,0.17569,Equipment,0.16914,0.08736,0.10605,0.16914,0.08736,0.10605,Other Equipment,0.04219,0.05774,0.05323,non-corporate,0.00714,0.00504,0.00564,0.22559,0.24114,0.23663,0.93082,0.91504,0.91952 +122,122,7.00000,Other,106207464937.46689,EO80,0.14730,0.19172,0.16506,0.17277,Equipment,0.15658,0.07500,0.09361,0.15658,0.07500,0.09361,Other Equipment,0.04157,0.05697,0.05250,non-corporate,0.00651,0.00427,0.00491,0.18887,0.20427,0.19980,0.93082,0.91504,0.91952 +123,123,5.00000,Nuclear fuel,357727587.15623,EI11,0.25000,0.19360,0.16720,0.17484,Equipment,0.16602,0.08360,0.10246,0.16602,0.08360,0.10246,Other Industrial Equipment,0.04204,0.05751,0.05301,non-corporate,0.00698,0.00481,0.00543,0.29204,0.30751,0.30301,0.94898,0.93685,0.94031 +124,124,7.00000,Other fabricated metals,36269357406.68746,EI12,0.09170,0.18786,0.16032,0.16827,Equipment,0.13649,0.05530,0.07376,0.13649,0.05530,0.07376,Other Industrial Equipment,0.04060,0.05578,0.05137,non-corporate,0.00554,0.00308,0.00379,0.13230,0.14748,0.14307,0.93082,0.91504,0.91952 +125,125,7.00000,Metalworking machinery,40483811779.61037,EI30,0.12250,0.19000,0.16295,0.17076,Equipment,0.14774,0.06632,0.08486,0.14774,0.06632,0.08486,Other Industrial Equipment,0.04113,0.05644,0.05199,non-corporate,0.00608,0.00374,0.00441,0.16363,0.17894,0.17449,0.93082,0.91504,0.91952 +126,126,15.00000,Electric transmission and distribution,41257755573.28319,EI60,0.05000,0.19191,0.16610,0.17354,Equipment,0.15753,0.07921,0.09694,0.15753,0.07921,0.09694,Other Industrial Equipment,0.04161,0.05723,0.05269,non-corporate,0.00656,0.00453,0.00511,0.09161,0.10723,0.10269,0.85253,0.82447,0.83224 +127,127,7.00000,Farm tractors,30621499311.60472,EO21,0.14520,0.19158,0.16489,0.17260,Equipment,0.15584,0.07427,0.09288,0.15584,0.07427,0.09288,Other Industrial Equipment,0.04153,0.05693,0.05245,non-corporate,0.00647,0.00423,0.00487,0.18673,0.20213,0.19765,0.93082,0.91504,0.91952 +128,128,5.00000,Construction tractors,3719463640.44892,EO22,0.16330,0.18915,0.16170,0.16964,Equipment,0.14335,0.06111,0.07987,0.14335,0.06111,0.07987,Other Industrial Equipment,0.04092,0.05613,0.05171,non-corporate,0.00587,0.00343,0.00413,0.20422,0.21943,0.21501,0.94898,0.93685,0.94031 +129,129,7.00000,Other agricultural machinery,80549886162.69899,EO30,0.11790,0.18968,0.16256,0.17039,Equipment,0.14608,0.06469,0.08322,0.14608,0.06469,0.08322,Other Industrial Equipment,0.04105,0.05634,0.05190,non-corporate,0.00600,0.00364,0.00432,0.15895,0.17424,0.16980,0.93082,0.91504,0.91952 +130,130,5.00000,Other construction machinery,98513726689.52679,EO40,0.15500,0.18873,0.16117,0.16914,Equipment,0.14111,0.05890,0.07765,0.14111,0.05890,0.07765,Other Industrial Equipment,0.04082,0.05600,0.05159,non-corporate,0.00576,0.00330,0.00401,0.19582,0.21100,0.20659,0.94898,0.93685,0.94031 +131,131,7.00000,Mining and oilfield machinery,18092187649.22342,EO50,0.15000,0.19191,0.16530,0.17299,Equipment,0.15754,0.07594,0.09455,0.15754,0.07594,0.09455,Other Industrial Equipment,0.04161,0.05703,0.05255,non-corporate,0.00656,0.00433,0.00497,0.19161,0.20703,0.20255,0.93082,0.91504,0.91952 +132,132,15.00000,Steam engines,6902986050.14308,EI21,0.05160,0.19214,0.16639,0.17381,Equipment,0.15873,0.08034,0.09810,0.15873,0.08034,0.09810,Transportation Equipment,0.04167,0.05730,0.05276,non-corporate,0.00661,0.00460,0.00518,0.09327,0.10890,0.10436,0.85253,0.82447,0.83224 +133,133,7.00000,Internal combustion engines,1555979253.60812,EI22,0.20630,0.19582,0.17010,0.17754,Equipment,0.17691,0.09502,0.11377,0.17691,0.09502,0.11377,Transportation Equipment,0.04259,0.05823,0.05369,non-corporate,0.00753,0.00553,0.00611,0.24889,0.26453,0.25999,0.93082,0.91504,0.91952 +134,134,5.00000,Light trucks (including utility vehicles),77738021463.51085,ET11,0.17250,0.18963,0.16228,0.17019,Equipment,0.14581,0.06355,0.08233,0.14581,0.06355,0.08233,Transportation Equipment,0.04104,0.05627,0.05185,non-corporate,0.00598,0.00358,0.00427,0.21354,0.22877,0.22435,0.94898,0.93685,0.94031 +135,135,5.00000,"Other trucks, buses and truck trailers",52902871715.14603,ET12,0.17250,0.18963,0.16228,0.17019,Equipment,0.14581,0.06355,0.08233,0.14581,0.06355,0.08233,Transportation Equipment,0.04104,0.05627,0.05185,non-corporate,0.00598,0.00358,0.00427,0.21354,0.22877,0.22435,0.94898,0.93685,0.94031 +136,136,5.00000,Autos,47539167782.38700,ET20,0.33330,0.19787,0.17248,0.17983,Equipment,0.18669,0.10420,0.12314,0.18669,0.10420,0.12314,Transportation Equipment,0.04310,0.05883,0.05426,non-corporate,0.00805,0.00613,0.00668,0.37640,0.39213,0.38756,0.94898,0.93685,0.94031 +137,137,5.00000,Aircraft,86223598874.83788,ET30,0.08590,0.18519,0.15679,0.16499,Equipment,0.12204,0.04009,0.05873,0.12204,0.04009,0.05873,Transportation Equipment,0.03993,0.05490,0.05055,non-corporate,0.00487,0.00220,0.00297,0.12583,0.14080,0.13645,0.94898,0.93685,0.94031 +138,138,10.00000,Ships and boats,16387379759.80567,ET40,0.06110,0.18824,0.16109,0.16892,Equipment,0.13852,0.05855,0.07668,0.13852,0.05855,0.07668,Transportation Equipment,0.04069,0.05598,0.05153,non-corporate,0.00564,0.00328,0.00395,0.10179,0.11708,0.11263,0.90570,0.88547,0.89117 +139,139,7.00000,Railroad equipment,29964515454.02116,ET50,0.05890,0.18558,0.15752,0.16562,Equipment,0.12418,0.04328,0.06163,0.12418,0.04328,0.06163,Transportation Equipment,0.04003,0.05508,0.05071,non-corporate,0.00497,0.00238,0.00313,0.09893,0.11398,0.10961,0.93082,0.91504,0.91952 +140,140,15.00000,Theatrical movies,18409754458.46626,AE10,0.09300,0.19962,0.17543,0.18241,Intellectual Property,0.19487,0.11528,0.13346,0.19487,0.11528,0.13346,Intellectual Property,0.04354,0.05957,0.05491,non-corporate,0.00849,0.00687,0.00733,0.13654,0.15257,0.14791,0.84237,0.81259,0.82082 +141,141,15.00000,Long-lived television programs,14909126060.40839,AE20,0.16800,0.20819,0.18542,0.19202,Intellectual Property,0.23266,0.15093,0.16980,0.23266,0.15093,0.16980,Intellectual Property,0.04569,0.06207,0.05731,non-corporate,0.01063,0.00937,0.00973,0.21369,0.23007,0.22531,0.85834,0.83122,0.83873 +142,142,15.00000,Books,14215531494.34945,AE30,0.12100,0.19808,0.17447,0.18131,Intellectual Property,0.18767,0.11169,0.12910,0.18767,0.11169,0.12910,Intellectual Property,0.04316,0.05932,0.05464,non-corporate,0.00810,0.00663,0.00705,0.16416,0.18032,0.17564,0.87970,0.84830,0.85686 +143,143,15.00000,Music,8069489954.09881,AE40,0.26700,0.19808,0.17447,0.18131,Intellectual Property,0.18767,0.11169,0.12910,0.18767,0.11169,0.12910,Intellectual Property,0.04316,0.05932,0.05464,non-corporate,0.00810,0.00663,0.00705,0.31016,0.32632,0.32164,0.93722,0.91758,0.92309 +144,144,15.00000,Other entertainment originals,11674503193.39874,AE50,0.10900,0.19808,0.17447,0.18131,Intellectual Property,0.18767,0.11169,0.12910,0.18767,0.11169,0.12910,Intellectual Property,0.04316,0.05932,0.05464,non-corporate,0.00810,0.00663,0.00705,0.15216,0.16832,0.16364,0.86990,0.83705,0.84596 +145,145,3.00000,Own account software,63396170766.96828,ENS3,0.33000,0.17882,0.14799,0.15693,Intellectual Property,0.08554,0.00000,0.01959,0.08554,0.00000,0.01959,Intellectual Property,0.03834,0.05270,0.04853,non-corporate,0.00328,0.00000,0.00095,0.36834,0.38270,0.37853,1.00000,1.00000,1.00000 +146,146,5.00000,Pharmaceutical and medicine manufacturing,68720410526.40900,RD11,0.10000,0.17882,0.14799,0.15693,Intellectual Property,0.08554,-0.00000,0.01959,0.08554,-0.00000,0.01959,Intellectual Property,0.03834,0.05270,0.04853,non-corporate,0.00328,-0.00000,0.00095,0.13834,0.15270,0.14853,1.00000,1.00000,1.00000 +147,147,5.00000,"Chemical manufacturing, ex. pharma and med",9431775719.32930,RD12,0.16000,0.17882,0.14799,0.15693,Intellectual Property,0.08554,-0.00000,0.01959,0.08554,-0.00000,0.01959,Intellectual Property,0.03834,0.05270,0.04853,non-corporate,0.00328,-0.00000,0.00095,0.19834,0.21270,0.20853,1.00000,1.00000,1.00000 +148,148,5.00000,Computers and peripheral equipment manufacturing,1249951615.14700,RD21,0.40000,0.17882,0.14799,0.15693,Intellectual Property,0.08554,-0.00000,0.01959,0.08554,-0.00000,0.01959,Intellectual Property,0.03834,0.05270,0.04853,non-corporate,0.00328,-0.00000,0.00095,0.43834,0.45270,0.44853,1.00000,1.00000,1.00000 +149,149,5.00000,Communications equipment manufacturing,5016215180.93255,RD22,0.27000,0.17882,0.14799,0.15693,Intellectual Property,0.08554,0.00000,0.01959,0.08554,0.00000,0.01959,Intellectual Property,0.03834,0.05270,0.04853,non-corporate,0.00328,0.00000,0.00095,0.30834,0.32270,0.31853,1.00000,1.00000,1.00000 +150,150,5.00000,Semiconductor and other component manufacturing,10920003474.83112,RD23,0.25000,0.17882,0.14799,0.15693,Intellectual Property,0.08554,0.00000,0.01959,0.08554,0.00000,0.01959,Intellectual Property,0.03834,0.05270,0.04853,non-corporate,0.00328,0.00000,0.00095,0.28834,0.30270,0.29853,1.00000,1.00000,1.00000 +151,151,5.00000,Navigational and other instruments manufacturing,4025914234.82626,RD24,0.29000,0.17882,0.14799,0.15693,Intellectual Property,0.08554,0.00000,0.01959,0.08554,0.00000,0.01959,Intellectual Property,0.03834,0.05270,0.04853,non-corporate,0.00328,0.00000,0.00095,0.32834,0.34270,0.33853,1.00000,1.00000,1.00000 +152,152,5.00000,"Other computer and electronic manufacturing, n.e.c.",213775583.63471,RD25,0.40000,0.17882,0.14799,0.15693,Intellectual Property,0.08554,-0.00000,0.01959,0.08554,-0.00000,0.01959,Intellectual Property,0.03834,0.05270,0.04853,non-corporate,0.00328,-0.00000,0.00095,0.43834,0.45270,0.44853,1.00000,1.00000,1.00000 +153,153,7.00000,Motor vehicles and parts manufacturing,5835206602.12800,RD31,0.31000,0.17882,0.14799,0.15693,Intellectual Property,0.08554,0.00000,0.01959,0.08554,0.00000,0.01959,Intellectual Property,0.03834,0.05270,0.04853,non-corporate,0.00328,0.00000,0.00095,0.34834,0.36270,0.35853,1.00000,1.00000,1.00000 +154,154,7.00000,Aerospace products and parts manufacturing,4929469423.57540,RD32,0.22000,0.17882,0.14799,0.15693,Intellectual Property,0.08554,-0.00000,0.01959,0.08554,-0.00000,0.01959,Intellectual Property,0.03834,0.05270,0.04853,non-corporate,0.00328,-0.00000,0.00095,0.25834,0.27270,0.26853,1.00000,1.00000,1.00000 +155,155,3.00000,Software publishers,949730450.60092,RD40,0.22000,0.18884,0.16119,0.16919,Intellectual Property,0.14171,0.05897,0.07787,0.14171,0.05897,0.07787,Intellectual Property,0.04085,0.05600,0.05160,non-corporate,0.00579,0.00330,0.00402,0.26085,0.27600,0.27160,0.96137,0.95184,0.95458 +156,156,5.00000,Financial and real estate services,1540787936.30553,RD50,0.16000,0.17882,0.14799,0.15693,Intellectual Property,0.08554,-0.00000,0.01959,0.08554,-0.00000,0.01959,Intellectual Property,0.03834,0.05270,0.04853,non-corporate,0.00328,-0.00000,0.00095,0.19834,0.21270,0.20853,1.00000,1.00000,1.00000 +157,157,3.00000,Computer systems design and related services,5115177129.21372,RD60,0.36000,0.19428,0.16796,0.17558,Intellectual Property,0.16937,0.08663,0.10559,0.16937,0.08663,0.10559,Intellectual Property,0.04221,0.05770,0.05320,non-corporate,0.00715,0.00500,0.00562,0.40221,0.41770,0.41320,0.96137,0.95184,0.95458 +158,158,5.00000,Scientific research and development services,22860376897.47077,RD70,0.16000,0.17882,0.14799,0.15693,Intellectual Property,0.08554,-0.00000,0.01959,0.08554,-0.00000,0.01959,Intellectual Property,0.03834,0.05270,0.04853,non-corporate,0.00328,-0.00000,0.00095,0.19834,0.21270,0.20853,1.00000,1.00000,1.00000 +159,159,5.00000,"All other nonmanufacturing, n.e.c.",33402731579.63615,RD80,0.16000,0.17882,0.14799,0.15693,Intellectual Property,0.08554,-0.00000,0.01959,0.08554,-0.00000,0.01959,Intellectual Property,0.03834,0.05270,0.04853,non-corporate,0.00328,-0.00000,0.00095,0.19834,0.21270,0.20853,1.00000,1.00000,1.00000 +160,160,3.00000,Private universities and colleges,6064635361.65000,RD91,0.16000,0.18652,0.15828,0.16645,Intellectual Property,0.12929,0.04660,0.06546,0.12929,0.04660,0.06546,Intellectual Property,0.04026,0.05527,0.05092,non-corporate,0.00521,0.00258,0.00333,0.20026,0.21527,0.21092,0.96137,0.95184,0.95458 +161,161,3.00000,Other nonprofit institutions,44957394625.31660,RD92,0.16000,0.18652,0.15828,0.16645,Intellectual Property,0.12929,0.04660,0.06546,0.12929,0.04660,0.06546,Intellectual Property,0.04026,0.05527,0.05092,non-corporate,0.00521,0.00258,0.00333,0.20026,0.21527,0.21092,0.96137,0.95184,0.95458 +162,162,7.00000,Other manufacturing,31261484438.19672,RDOM,0.16000,0.17882,0.14799,0.15693,Intellectual Property,0.08554,-0.00000,0.01959,0.08554,-0.00000,0.01959,Intellectual Property,0.03834,0.05270,0.04853,non-corporate,0.00328,-0.00000,0.00095,0.19834,0.21270,0.20853,1.00000,1.00000,1.00000 +163,163,100.00000,Inventories,903249577643.82080,INV,0.00000,0.22491,0.20820,0.21306,Inventories,0.29708,0.22237,0.23966,0.29708,0.22237,0.23966,Inventories,0.04987,0.06777,0.06258,non-corporate,0.01482,0.01507,0.01500,0.04987,0.06777,0.06258,0.00000,0.00000,0.00000 +164,164,100.00000,Land,9085892640842.86914,LAND,0.00000,0.21733,0.20094,0.20569,Land,0.26929,0.20094,0.21660,0.26929,0.20094,0.21660,Land,0.04798,0.06595,0.06074,non-corporate,0.01292,0.01325,0.01316,0.04798,0.06595,0.06074,0.00000,0.00000,0.00000 +165,165,5.00000,Petroleum and natural gas,212937915737.62860,SM01,0.07510,0.18463,0.15610,0.16435,Structures,0.11898,0.03708,0.05570,0.11898,0.03708,0.05570,Mining and Drilling Structures,0.03979,0.05473,0.05039,non-corporate,0.00473,0.00203,0.00281,0.11489,0.12983,0.12549,0.94898,0.93685,0.94031 +166,166,7.00000,Mining,17079757447.87507,SM02,0.04500,0.18461,0.15633,0.16450,Structures,0.11886,0.03810,0.05640,0.11886,0.03810,0.05640,Mining and Drilling Structures,0.03979,0.05479,0.05043,non-corporate,0.00473,0.00209,0.00284,0.08479,0.09979,0.09543,0.93082,0.91504,0.91952 +167,167,15.00000,Communication,54922065479.18448,SU20,0.02370,0.18801,0.16147,0.16911,Structures,0.13731,0.06014,0.07751,0.13731,0.06014,0.07751,Mining and Drilling Structures,0.04064,0.05607,0.05158,non-corporate,0.00558,0.00337,0.00400,0.06434,0.07977,0.07528,0.85253,0.82447,0.83224 +168,168,5.00000,Gas,31446708032.77039,SU40,0.07510,0.18463,0.15610,0.16435,Structures,0.11898,0.03708,0.05570,0.11898,0.03708,0.05570,Mining and Drilling Structures,0.03979,0.05473,0.05039,non-corporate,0.00473,0.00203,0.00281,0.11489,0.12983,0.12549,0.94898,0.93685,0.94031 +169,169,5.00000,Petroleum pipelines,20777938418.31212,SU50,0.02370,0.18200,0.15284,0.16126,Structures,0.10414,0.02251,0.04102,0.10414,0.02251,0.04102,Mining and Drilling Structures,0.03913,0.05391,0.04962,non-corporate,0.00408,0.00121,0.00204,0.06283,0.07761,0.07332,0.94898,0.93685,0.94031 +170,170,39.00000,Religious,198115941229.36139,SB10,0.01880,0.20739,0.18827,0.19374,Structures,0.22931,0.16058,0.17599,0.22931,0.16058,0.17599,Nonresidential Buildings,0.04549,0.06278,0.05775,non-corporate,0.01043,0.01008,0.01016,0.06429,0.08158,0.07655,0.50226,0.43932,0.45597 +171,171,39.00000,Educational and vocational,212838725537.27460,SB20,0.01880,0.21239,0.19486,0.19987,Structures,0.24993,0.18205,0.19734,0.24993,0.18205,0.19734,Nonresidential Buildings,0.04674,0.06443,0.05928,non-corporate,0.01168,0.01173,0.01170,0.06554,0.08323,0.07808,0.41520,0.34763,0.36526 +172,172,39.00000,Hospitals,335377700162.39520,SB31,0.01880,0.21239,0.19486,0.19987,Structures,0.24993,0.18205,0.19734,0.24993,0.18205,0.19734,Nonresidential Buildings,0.04674,0.06443,0.05928,non-corporate,0.01168,0.01173,0.01170,0.06554,0.08323,0.07808,0.41520,0.34763,0.36526 +173,173,39.00000,Special care,75652337468.16002,SB32,0.01880,0.21239,0.19486,0.19987,Structures,0.24993,0.18205,0.19734,0.24993,0.18205,0.19734,Nonresidential Buildings,0.04674,0.06443,0.05928,non-corporate,0.01168,0.01173,0.01170,0.06554,0.08323,0.07808,0.41520,0.34763,0.36526 +174,174,39.00000,Lodging,333097535279.52374,SB41,0.02810,0.21785,0.20095,0.20580,Structures,0.27126,0.20098,0.21695,0.27126,0.20098,0.21695,Nonresidential Buildings,0.04811,0.06595,0.06077,non-corporate,0.01305,0.01326,0.01318,0.07621,0.09405,0.08887,0.41520,0.34763,0.36526 +175,175,39.00000,Air transportation,6522869098.36936,SB43,0.02370,0.21527,0.19807,0.20300,Structures,0.26132,0.19213,0.20779,0.26132,0.19213,0.20779,Nonresidential Buildings,0.04746,0.06523,0.06006,non-corporate,0.01240,0.01253,0.01248,0.07116,0.08893,0.08376,0.41520,0.34763,0.36526 +176,176,39.00000,Other transportation,1255401381.70107,SB45,0.02370,0.21527,0.19807,0.20300,Structures,0.26132,0.19213,0.20779,0.26132,0.19213,0.20779,Nonresidential Buildings,0.04746,0.06523,0.06006,non-corporate,0.01240,0.01253,0.01248,0.07116,0.08893,0.08376,0.41520,0.34763,0.36526 +177,177,39.00000,Warehouses,129247228808.96722,SC01,0.02250,0.21456,0.19728,0.20223,Structures,0.25856,0.18969,0.20526,0.25856,0.18969,0.20526,Nonresidential Buildings,0.04728,0.06503,0.05987,non-corporate,0.01223,0.01234,0.01229,0.06978,0.08753,0.08237,0.41520,0.34763,0.36526 +178,178,39.00000,Other commercial,167854351277.22626,SC02,0.02620,0.21674,0.19971,0.20459,Structures,0.26700,0.19718,0.21302,0.26700,0.19718,0.21302,Nonresidential Buildings,0.04783,0.06564,0.06046,non-corporate,0.01277,0.01294,0.01288,0.07403,0.09184,0.08666,0.41520,0.34763,0.36526 +179,179,39.00000,Multimerchandise shopping,242344895152.75317,SC03,0.02620,0.21674,0.19971,0.20459,Structures,0.26700,0.19718,0.21302,0.26700,0.19718,0.21302,Nonresidential Buildings,0.04783,0.06564,0.06046,non-corporate,0.01277,0.01294,0.01288,0.07403,0.09184,0.08666,0.41520,0.34763,0.36526 +180,180,39.00000,Food and beverage establishments,142536462115.36786,SC04,0.02620,0.21674,0.19971,0.20459,Structures,0.26700,0.19718,0.21302,0.26700,0.19718,0.21302,Nonresidential Buildings,0.04783,0.06564,0.06046,non-corporate,0.01277,0.01294,0.01288,0.07403,0.09184,0.08666,0.41520,0.34763,0.36526 +181,181,39.00000,Manufacturing,312763751528.73279,SI00,0.03140,0.21979,0.20311,0.20791,Structures,0.27853,0.20748,0.22368,0.27853,0.20748,0.22368,Nonresidential Buildings,0.04859,0.06649,0.06129,non-corporate,0.01353,0.01380,0.01371,0.07999,0.09789,0.09269,0.41520,0.34763,0.36526 +182,182,39.00000,Public safety,10144839642.53934,SO03,0.02370,0.21527,0.19807,0.20300,Structures,0.26132,0.19213,0.20779,0.26132,0.19213,0.20779,Nonresidential Buildings,0.04746,0.06523,0.06006,non-corporate,0.01240,0.01253,0.01248,0.07116,0.08893,0.08376,0.41520,0.34763,0.36526 +183,183,39.00000,Office,595428227069.28125,SOO1,0.02470,0.21586,0.19872,0.20364,Structures,0.26360,0.19416,0.20989,0.26360,0.19416,0.20989,Nonresidential Buildings,0.04761,0.06540,0.06022,non-corporate,0.01255,0.01270,0.01264,0.07231,0.09010,0.08492,0.41520,0.34763,0.36526 +184,184,39.00000,Medical buildings,100075071146.99706,SOO2,0.02470,0.21586,0.19872,0.20364,Structures,0.26360,0.19416,0.20989,0.26360,0.19416,0.20989,Nonresidential Buildings,0.04761,0.06540,0.06022,non-corporate,0.01255,0.01270,0.01264,0.07231,0.09010,0.08492,0.41520,0.34763,0.36526 +185,185,7.00000,Amusement and recreation,164426728047.02826,SB42,0.03000,0.18357,0.15505,0.16328,Structures,0.11304,0.03244,0.05068,0.11304,0.03244,0.05068,Other Structures,0.03952,0.05447,0.05012,non-corporate,0.00447,0.00177,0.00254,0.06952,0.08447,0.08012,0.93082,0.91504,0.91952 +186,186,39.00000,Local transit structures,2713917848.41494,SB44,0.02370,0.21527,0.19807,0.20300,Structures,0.26132,0.19213,0.20779,0.26132,0.19213,0.20779,Other Structures,0.04746,0.06523,0.06006,non-corporate,0.01240,0.01253,0.01248,0.07116,0.08893,0.08376,0.41520,0.34763,0.36526 +187,187,5.00000,Other land transportation,4956240890.72790,SB46,0.02370,0.18200,0.15284,0.16126,Structures,0.10414,0.02251,0.04102,0.10414,0.02251,0.04102,Other Structures,0.03913,0.05391,0.04962,non-corporate,0.00408,0.00121,0.00204,0.06283,0.07761,0.07332,0.94898,0.93685,0.94031 +188,188,20.00000,Farm,210718689415.62762,SN00,0.02390,0.19022,0.16443,0.17185,Structures,0.14887,0.07240,0.08963,0.14887,0.07240,0.08963,Other Structures,0.04119,0.05681,0.05227,non-corporate,0.00613,0.00411,0.00468,0.06509,0.08071,0.07617,0.81771,0.78647,0.79501 +189,189,20.00000,Water supply,17351319722.49404,SO01,0.02250,0.18996,0.16413,0.17156,Structures,0.14755,0.07117,0.08837,0.14755,0.07117,0.08837,Other Structures,0.04112,0.05674,0.05220,non-corporate,0.00607,0.00404,0.00461,0.06362,0.07924,0.07470,0.81771,0.78647,0.79501 +190,190,20.00000,Sewage and waste disposal,18704712570.11411,SO02,0.02250,0.18996,0.16413,0.17156,Structures,0.14755,0.07117,0.08837,0.14755,0.07117,0.08837,Other Structures,0.04112,0.05674,0.05220,non-corporate,0.00607,0.00404,0.00461,0.06362,0.07924,0.07470,0.81771,0.78647,0.79501 +191,191,15.00000,Highway and conservation and development,14651065465.71158,SO04,0.02250,0.18783,0.16126,0.16891,Structures,0.13636,0.05926,0.07661,0.13636,0.05926,0.07661,Other Structures,0.04059,0.05602,0.05153,non-corporate,0.00554,0.00332,0.00395,0.06309,0.07852,0.07403,0.85253,0.82447,0.83224 +192,192,7.00000,Mobile structures,3986455830.48833,SOMO,0.05560,0.18535,0.15724,0.16535,Structures,0.12292,0.04206,0.06039,0.12292,0.04206,0.06039,Other Structures,0.03997,0.05501,0.05064,non-corporate,0.00491,0.00231,0.00306,0.09557,0.11061,0.10624,0.93082,0.91504,0.91952 +193,193,20.00000,Other railroad,35355401894.74462,SU11,0.01760,0.18906,0.16307,0.17055,Structures,0.14286,0.06684,0.08394,0.14286,0.06684,0.08394,Other Structures,0.04090,0.05647,0.05194,non-corporate,0.00584,0.00377,0.00436,0.05850,0.07407,0.06954,0.81771,0.78647,0.79501 +194,194,7.00000,Track replacement,41586561300.50691,SU12,0.02490,0.18321,0.15462,0.16287,Structures,0.11104,0.03050,0.04872,0.11104,0.03050,0.04872,Other Structures,0.03944,0.05436,0.05002,non-corporate,0.00438,0.00166,0.00244,0.06434,0.07926,0.07492,0.93082,0.91504,0.91952 +195,195,15.00000,Electric,70225622111.33885,SU30,0.02110,0.18762,0.16101,0.16867,Structures,0.13525,0.05822,0.07555,0.13525,0.05822,0.07555,Other Structures,0.04054,0.05596,0.05147,non-corporate,0.00548,0.00326,0.00389,0.06164,0.07706,0.07257,0.85253,0.82447,0.83224 +196,196,5.00000,Wind and solar,13828813701.93123,SU60,0.03030,0.18234,0.15326,0.16166,Structures,0.10607,0.02440,0.04293,0.10607,0.02440,0.04293,Other Structures,0.03922,0.05402,0.04972,non-corporate,0.00416,0.00132,0.00213,0.06952,0.08432,0.08002,0.94898,0.93685,0.94031 +197,197,27.50000,Residential,1251223923087.89990,RES,0.01631,0.20523,0.18618,0.19160,Structures,0.22001,0.15352,0.16828,0.22001,0.15352,0.16828,Residential Buildings,0.04495,0.06226,0.05721,non-corporate,0.00989,0.00956,0.00963,0.06126,0.07857,0.07352,0.51905,0.44929,0.46795 +198,198,3.64718,Computers and Software,398439404770.52747,,0.41304,0.50696,0.60657,0.57463,Equipment,0.59468,0.65512,0.63911,0.69000,0.68664,0.68749,Computers and Software,0.12829,0.16817,0.15539,corporate,0.08852,0.11548,0.10683,0.54133,0.58121,0.56843,0.96490,0.94325,0.95001 +199,199,7.00000,Industrial Machinery,754098089405.10413,,0.10569,0.28345,0.37865,0.34803,Equipment,0.12639,0.40844,0.34540,0.33183,0.46251,0.43316,Industrial Machinery,0.05952,0.09805,0.08567,corporate,0.01975,0.04535,0.03711,0.16521,0.20374,0.19136,0.94254,0.90945,0.91960 +200,200,6.92378,Instruments and Communications Equipment,847266548005.08252,,0.12485,0.29787,0.39363,0.36284,Equipment,0.18700,0.43500,0.37847,0.37819,0.48665,0.46179,Instruments and Communications Equipment,0.06396,0.10266,0.09023,corporate,0.02419,0.04996,0.04167,0.18881,0.22750,0.21508,0.94312,0.91033,0.92039 +201,201,7.39403,Intellectual Property,1681853350900.40088,,0.17644,0.32982,0.42155,0.39217,Intellectual Property,0.29530,0.47863,0.43498,0.46102,0.52629,0.51073,Intellectual Property,0.07379,0.11125,0.09925,corporate,0.03402,0.05855,0.05069,0.25023,0.28769,0.27570,0.97052,0.95502,0.95952 +204,204,7.73987,Mining and Drilling Structures,2172847115166.73730,,0.05760,0.24676,0.34039,0.31025,Structures,-0.07811,0.32772,0.24263,0.17543,0.38917,0.34416,Mining and Drilling Structures,0.04823,0.08627,0.07405,corporate,0.00846,0.03358,0.02548,0.10583,0.14387,0.13164,0.93511,0.90032,0.91081 +205,205,39.00000,Nonresidential Buildings,4551150810123.36719,,0.02561,0.24879,0.36592,0.32816,Structures,-0.06427,0.38384,0.29509,0.18601,0.44016,0.38959,Nonresidential Buildings,0.04886,0.09413,0.07956,corporate,0.00909,0.04143,0.03099,0.07447,0.11974,0.10516,0.47842,0.32921,0.36757 +206,206,6.89065,Office and Residential Equipment,213260346797.01944,,0.11933,0.29367,0.38922,0.35850,Equipment,0.17022,0.42744,0.36912,0.36535,0.47977,0.45370,Office and Residential Equipment,0.06267,0.10130,0.08889,corporate,0.02290,0.04860,0.04033,0.18199,0.22063,0.20822,0.94338,0.91071,0.92073 +207,207,7.00000,Other Equipment,337069776278.42487,,0.15074,0.31771,0.41447,0.38337,Equipment,0.25782,0.46822,0.41913,0.43235,0.51682,0.49700,Other Equipment,0.07006,0.10907,0.09655,corporate,0.03029,0.05637,0.04798,0.22081,0.25981,0.24729,0.94254,0.90945,0.91960 +208,208,9.94297,Other Industrial Equipment,1055995696084.39087,,0.09750,0.27906,0.37573,0.34462,Equipment,0.10609,0.40297,0.33728,0.31631,0.45754,0.42613,Other Industrial Equipment,0.05817,0.09715,0.08462,corporate,0.01840,0.04445,0.03606,0.15567,0.19465,0.18212,0.91735,0.87462,0.88737 +209,209,13.87951,Other Structures,1869521468512.13208,,0.02290,0.22348,0.31935,0.28842,Structures,-0.26615,0.27319,0.16707,0.03160,0.33963,0.27873,Other Structures,0.04107,0.07980,0.06733,corporate,0.00130,0.02710,0.01877,0.06397,0.10270,0.09023,0.88498,0.83067,0.84650 +210,210,27.50000,Residential Buildings,333776621894.00000,,0.01631,0.23250,0.34522,0.30862,Structures,-0.18597,0.33910,0.23747,0.09293,0.39951,0.33969,Residential Buildings,0.04385,0.08776,0.07354,corporate,0.00407,0.03506,0.02498,0.06016,0.10407,0.08986,0.57872,0.42718,0.46827 +211,211,6.52644,Transportation Equipment,965295059837.32141,,0.14020,0.30808,0.40341,0.37277,Equipment,0.22504,0.45110,0.39881,0.40728,0.50127,0.47941,Transportation Equipment,0.06710,0.10567,0.09328,corporate,0.02733,0.05297,0.04472,0.20730,0.24587,0.23348,0.94564,0.91492,0.92431 +212,212,3.75970,Computers and Software,133772595225.18484,,0.41707,0.19886,0.17368,0.18097,Equipment,0.19137,0.10872,0.12772,0.19137,0.10872,0.12772,Computers and Software,0.04335,0.05913,0.05455,non-corporate,0.00830,0.00643,0.00697,0.46043,0.47620,0.47162,0.95667,0.94615,0.94916 +213,213,7.00000,Industrial Machinery,170693910597.87476,,0.10585,0.18884,0.16153,0.16942,Equipment,0.14170,0.06040,0.07889,0.14170,0.06040,0.07889,Industrial Machinery,0.04084,0.05609,0.05166,non-corporate,0.00579,0.00339,0.00408,0.14670,0.16194,0.15751,0.93082,0.91504,0.91952 +214,214,6.92834,Instruments and Communications Equipment,352265040695.39178,,0.13114,0.19044,0.16348,0.17127,Equipment,0.15001,0.06852,0.08709,0.15001,0.06852,0.08709,Instruments and Communications Equipment,0.04124,0.05658,0.05212,non-corporate,0.00619,0.00388,0.00454,0.17238,0.18771,0.18326,0.93147,0.91582,0.92027 +215,215,6.33241,Intellectual Property,387169616706.89374,,0.18561,0.18387,0.15471,0.16316,Intellectual Property,0.11474,0.03093,0.05012,0.11474,0.03093,0.05012,Intellectual Property,0.03960,0.05438,0.05009,non-corporate,0.00454,0.00168,0.00251,0.22521,0.23999,0.23570,0.97171,0.96529,0.96707 +218,218,6.73025,Mining and Drilling Structures,337164385115.77063,,0.06203,0.18502,0.15679,0.16494,Structures,0.12112,0.04009,0.05847,0.12112,0.04009,0.05847,Mining and Drilling Structures,0.03989,0.05490,0.05054,non-corporate,0.00483,0.00220,0.00296,0.10192,0.11693,0.11257,0.93235,0.91744,0.92165 +219,219,39.00000,Nonresidential Buildings,2863255336898.64990,,0.02432,0.21528,0.19802,0.20297,Structures,0.26139,0.19198,0.20769,0.26139,0.19198,0.20769,Nonresidential Buildings,0.04746,0.06522,0.06006,non-corporate,0.01241,0.01252,0.01247,0.07178,0.08954,0.08437,0.42123,0.35397,0.37153 +220,220,6.80132,Office and Residential Equipment,108443653204.71063,,0.12040,0.18952,0.16234,0.17019,Equipment,0.14527,0.06380,0.08236,0.14527,0.06380,0.08236,Office and Residential Equipment,0.04102,0.05629,0.05185,non-corporate,0.00596,0.00359,0.00427,0.16142,0.17669,0.17226,0.93262,0.91721,0.92159 +221,221,7.00000,Other Equipment,175872223716.43555,,0.15009,0.19192,0.16530,0.17299,Equipment,0.15757,0.07597,0.09459,0.15757,0.07597,0.09459,Other Equipment,0.04161,0.05703,0.05255,non-corporate,0.00656,0.00433,0.00497,0.19171,0.20713,0.20265,0.93082,0.91504,0.91952 +222,222,7.35694,Other Industrial Equipment,349865415800.24005,,0.12282,0.18980,0.16274,0.17056,Equipment,0.14672,0.06545,0.08395,0.14672,0.06545,0.08395,Other Industrial Equipment,0.04109,0.05639,0.05194,non-corporate,0.00603,0.00369,0.00436,0.16391,0.17921,0.17477,0.92691,0.91075,0.91532 +223,223,14.34493,Other Structures,598505528799.12842,,0.02518,0.18729,0.16034,0.16811,Structures,0.13345,0.05541,0.07302,0.13345,0.05541,0.07302,Other Structures,0.04046,0.05579,0.05133,non-corporate,0.00540,0.00309,0.00375,0.06564,0.08097,0.07651,0.86463,0.83970,0.84659 +224,224,27.50000,Residential Buildings,1251223923087.89990,,0.01631,0.20523,0.18618,0.19160,Structures,0.22001,0.15352,0.16828,0.22001,0.15352,0.16828,Residential Buildings,0.04495,0.06226,0.05721,non-corporate,0.00989,0.00956,0.00963,0.06126,0.07857,0.07352,0.51905,0.44929,0.46795 +225,225,5.67042,Transportation Equipment,319214520353.45972,,0.15422,0.18929,0.16194,0.16984,Equipment,0.14404,0.06211,0.08079,0.14404,0.06211,0.08079,Transportation Equipment,0.04096,0.05619,0.05176,non-corporate,0.00590,0.00349,0.00418,0.19518,0.21041,0.20599,0.94288,0.92963,0.93340 +226,226,7.26837,Equipment,4571424921177.87109,,0.14538,0.31279,0.40898,0.37806,Equipment,0.24144,0.45985,0.40912,0.41983,0.50923,0.48833,Equipment,0.06855,0.10738,0.09491,corporate,0.02878,0.05468,0.04635,0.21393,0.25276,0.24029,0.93947,0.90573,0.91600 +230,230,25.70088,Structures,8927296015696.23438,,0.03248,0.24239,0.34918,0.31475,Structures,-0.10902,0.34816,0.25652,0.15178,0.40775,0.35620,Structures,0.04689,0.08898,0.07543,corporate,0.00712,0.03628,0.02687,0.07937,0.12146,0.10791,0.67847,0.57689,0.60385 +231,231,6.51570,Equipment,1610127359593.29712,,0.15633,0.19070,0.16378,0.17156,Equipment,0.15138,0.06973,0.08835,0.15138,0.06973,0.08835,Equipment,0.04131,0.05665,0.05219,non-corporate,0.00625,0.00395,0.00461,0.19764,0.21298,0.20852,0.93477,0.91990,0.92412 +235,235,31.07440,Structures,5050149173901.45020,,0.02496,0.20745,0.18787,0.19348,Structures,0.22957,0.15922,0.17507,0.22957,0.15922,0.17507,Structures,0.04550,0.06268,0.05768,non-corporate,0.01045,0.00998,0.01010,0.07046,0.08763,0.08264,0.53214,0.47277,0.48845 +236,236,38.79367,Overall,20307631178754.23438,,0.06162,0.26362,0.36976,0.33565,Overall,0.02659,0.39146,0.31494,0.25550,0.44708,0.40678,Overall,0.05342,0.09531,0.08186,corporate,0.01365,0.04261,0.03330,0.11504,0.15693,0.14348,0.59012,0.53659,0.55112 +237,237,68.60454,Overall,17036588368688.33008,,0.02639,0.21153,0.19289,0.19827,Overall,0.24647,0.17575,0.19187,0.24647,0.17575,0.19187,Overall,0.04652,0.06393,0.05888,non-corporate,0.01147,0.01124,0.01130,0.07291,0.09033,0.08527,0.26817,0.24902,0.25411 diff --git a/example_output/reform_byindustry_expected.csv b/example_output/reform_byindustry_expected.csv index 99c8d69d..635e2c27 100644 --- a/example_output/reform_byindustry_expected.csv +++ b/example_output/reform_byindustry_expected.csv @@ -1,155 +1,155 @@ ,index,Industry,Y,assets,bea_ind_code,delta,eatr_d,eatr_e,eatr_mix,major_industry,metr_d,metr_e,metr_mix,mettr_d,mettr_e,mettr_mix,rho_d,rho_e,rho_mix,tax_treat,tax_wedge_d,tax_wedge_e,tax_wedge_mix,ucc_d,ucc_e,ucc_mix,z_d,z_e,z_mix -0,0,Accommodation,66.19342,251468621610.90228,7210,0.02163,0.24560,0.36256,0.32501,Accommodation and food services,-0.08609,0.37699,0.28639,0.16928,0.43391,0.38203,0.04788,0.09310,0.07859,corporate,0.00810,0.04040,0.03002,0.06951,0.11473,0.10022,0.27697,0.20591,0.22426 -1,1,Food services and drinking places,44.78708,170870560831.60550,7220,0.05189,0.26180,0.37321,0.33739,Accommodation and food services,0.01628,0.39818,0.31940,0.24759,0.45316,0.41062,0.05286,0.09637,0.08240,corporate,0.01309,0.04367,0.03383,0.10475,0.14826,0.13429,0.49522,0.41767,0.43807 -2,2,Administrative and support services,21.90018,106492097790.52309,5610,0.14921,0.32228,0.42544,0.39228,Administrative and waste management services,0.27243,0.48419,0.43517,0.44351,0.53132,0.51087,0.07147,0.11244,0.09929,corporate,0.03170,0.05974,0.05072,0.22068,0.26165,0.24849,0.75009,0.69149,0.70733 -3,3,Waste management and remediation services,30.79958,69464866307.19232,5620,0.04823,0.24975,0.35295,0.31973,Administrative and waste management services,-0.05790,0.35655,0.27133,0.19085,0.41534,0.36899,0.04915,0.09014,0.07696,corporate,0.00938,0.03744,0.02840,0.09738,0.13837,0.12519,0.69514,0.63573,0.65221 -4,4,Farms,56.63261,359601192716.54291,110C,0.03762,0.25002,0.35775,0.32319,"Agriculture, forestry, fishing, and hunting",-0.05614,0.36691,0.28127,0.19219,0.42475,0.37760,0.04924,0.09161,0.07803,corporate,0.00946,0.03891,0.02946,0.08685,0.12923,0.11564,0.44806,0.42252,0.42994 -5,5,"Forestry, fishing, and related activities",58.69871,34352705962.83144,113F,0.04638,0.25588,0.36581,0.33055,"Agriculture, forestry, fishing, and hunting",-0.01882,0.38361,0.30154,0.22074,0.43993,0.39515,0.05104,0.09410,0.08029,corporate,0.01127,0.04140,0.03173,0.09742,0.14048,0.12667,0.40452,0.37541,0.38351 -6,6,"Performing arts, spectator sports, museums, and related activities",26.45100,79922779339.33067,711A,0.07496,0.27027,0.37523,0.34149,"Arts, entertainment, and recreation",0.06249,0.40202,0.32966,0.28293,0.45666,0.41950,0.05547,0.09699,0.08366,corporate,0.01569,0.04429,0.03509,0.13042,0.17195,0.15862,0.72355,0.65386,0.67283 -7,7,"Amusements, gambling, and recreation industries",36.30666,103100531850.12755,7130,0.04042,0.24552,0.34965,0.31619,"Arts, entertainment, and recreation",-0.08670,0.34923,0.26086,0.16882,0.40868,0.35993,0.04785,0.08912,0.07587,corporate,0.00808,0.03642,0.02731,0.08827,0.12954,0.11629,0.62187,0.57785,0.59010 -8,8,Construction,50.93484,167674309864.19751,2300,0.06772,0.27098,0.37890,0.34428,Construction,0.06619,0.40891,0.33647,0.28576,0.46291,0.42540,0.05569,0.09812,0.08452,corporate,0.01591,0.04542,0.03595,0.12341,0.16585,0.15224,0.48106,0.44994,0.45861 -9,9,Educational services,34.22480,321852335173.16290,6100,0.04393,0.25529,0.36801,0.33163,Educational services,-0.02245,0.38800,0.30443,0.21796,0.44392,0.39765,0.05086,0.09477,0.08062,corporate,0.01109,0.04207,0.03206,0.09479,0.13870,0.12456,0.54996,0.42239,0.45540 -10,10,Credit intermediation and related activities,22.91675,742471769336.48633,5220,0.11423,0.30039,0.40630,0.37222,Finance and insurance,0.19674,0.45567,0.39772,0.38562,0.50540,0.47844,0.06474,0.10655,0.09311,corporate,0.02496,0.05385,0.04455,0.17896,0.22078,0.20734,0.71761,0.63722,0.65863 -11,11,"Securities, commodity contracts, and investments",54.61699,117288646632.75099,5230,0.05913,0.26862,0.38189,0.34551,Finance and insurance,0.05388,0.41440,0.33942,0.27634,0.46791,0.42796,0.05496,0.09904,0.08490,corporate,0.01519,0.04634,0.03633,0.11409,0.15818,0.14403,0.40029,0.33218,0.34993 -12,12,Insurance carriers and related activities,29.98132,242704259871.50098,5240,0.11475,0.30439,0.41396,0.37870,Finance and insurance,0.21171,0.46745,0.41035,0.39706,0.51611,0.48938,0.06597,0.10891,0.09511,corporate,0.02619,0.05621,0.04654,0.18071,0.22366,0.20985,0.62568,0.52977,0.55481 -13,13,"Funds, trusts, and other financial vehicles",54.39351,34266597921.94995,5250,0.02110,0.24495,0.36202,0.32434,Finance and insurance,-0.09067,0.37586,0.28454,0.16578,0.43289,0.38043,0.04768,0.09293,0.07838,corporate,0.00790,0.04023,0.02982,0.06877,0.11402,0.09948,0.36151,0.25453,0.28205 -14,14,Ambulatory health care services,27.21407,187676386626.35760,6210,0.07631,0.27533,0.38348,0.34864,Health care and social assistance,0.08810,0.41727,0.34684,0.30252,0.47051,0.43438,0.05702,0.09953,0.08586,corporate,0.01725,0.04683,0.03730,0.13334,0.17585,0.16217,0.65992,0.56431,0.58952 -15,15,Hospitals,33.81604,476870682069.54419,622H,0.05038,0.25881,0.37017,0.33426,Health care and social assistance,-0.00114,0.39227,0.31133,0.23426,0.44780,0.40363,0.05194,0.09544,0.08143,corporate,0.01217,0.04274,0.03287,0.10232,0.14582,0.13181,0.57024,0.45656,0.48615 -16,16,Nursing and residential care facilities,30.33509,45367688456.12007,6230,0.04907,0.25764,0.36836,0.33265,Health care and social assistance,-0.00813,0.38870,0.30712,0.22891,0.44455,0.39998,0.05158,0.09488,0.08094,corporate,0.01181,0.04218,0.03237,0.10065,0.14395,0.13001,0.60323,0.48560,0.51625 -17,17,Social assistance,34.19701,32821172821.68540,6240,0.05176,0.25965,0.36983,0.33434,Health care and social assistance,0.00383,0.39161,0.31155,0.23807,0.44719,0.40382,0.05220,0.09533,0.08146,corporate,0.01243,0.04263,0.03289,0.10396,0.14709,0.13322,0.58120,0.48063,0.50694 -18,18,Publishing industries (including software),25.89745,205722166040.08698,5110,0.14041,0.31739,0.42211,0.38852,Information,0.25678,0.47945,0.42850,0.43154,0.52701,0.50510,0.06997,0.11142,0.09813,corporate,0.03019,0.05872,0.04956,0.21038,0.25183,0.23854,0.73159,0.67231,0.68838 -19,19,Motion picture and sound recording industries,20.76147,275276618185.14124,5120,0.10233,0.29200,0.39549,0.36225,Information,0.16335,0.43813,0.37721,0.36008,0.48947,0.46068,0.06215,0.10323,0.09005,corporate,0.02238,0.05053,0.04148,0.16448,0.20556,0.19238,0.80491,0.74630,0.76315 -20,20,Broadcasting and telecommunications,17.19061,1290507877813.33496,5130,0.07035,0.26218,0.36157,0.32956,Information,0.01846,0.37494,0.29890,0.24925,0.43205,0.39287,0.05298,0.09279,0.07999,corporate,0.01320,0.04009,0.03143,0.12332,0.16314,0.15033,0.83403,0.77860,0.79445 -21,21,Information and data processing services,13.10574,118194411065.61374,5140,0.21016,0.35972,0.45763,0.42620,Information,0.37342,0.52594,0.48889,0.52075,0.56925,0.55739,0.08299,0.12235,0.10972,corporate,0.04322,0.06965,0.06116,0.29315,0.33250,0.31988,0.86497,0.82766,0.83795 -22,22,Management of companies and enterprises,44.32188,424413435043.75659,5500,0.07542,0.27864,0.39078,0.35472,Management of companies and enterprises,0.10409,0.43013,0.36075,0.31475,0.48219,0.44643,0.05804,0.10178,0.08773,corporate,0.01827,0.04908,0.03916,0.13346,0.17720,0.16315,0.48744,0.40143,0.42376 -23,23,"Food, beverage, and tobacco products",42.79805,382744557828.22290,311A,0.06063,0.26729,0.37540,0.34070,Manufacturing,0.04678,0.40234,0.32769,0.27091,0.45695,0.41780,0.05455,0.09705,0.08341,corporate,0.01478,0.04434,0.03485,0.11518,0.15767,0.14404,0.54128,0.48491,0.49999 -24,24,Textile mills and textile product mills,37.17402,39763433350.66293,313T,0.05621,0.26535,0.37499,0.33975,Manufacturing,0.03622,0.40157,0.32534,0.26284,0.45624,0.41576,0.05395,0.09692,0.08312,corporate,0.01418,0.04422,0.03456,0.11017,0.15313,0.13934,0.56978,0.48607,0.50810 -25,25,Apparel and leather and allied products,56.66281,23802489967.04707,315A,0.03920,0.25888,0.37139,0.33530,Manufacturing,-0.00071,0.39466,0.31404,0.23459,0.44997,0.40597,0.05196,0.09581,0.08175,corporate,0.01219,0.04311,0.03319,0.09116,0.13501,0.12095,0.38864,0.32604,0.34238 -26,26,Wood products,48.66972,45996624948.89117,3210,0.04991,0.26204,0.37271,0.33718,Manufacturing,0.01767,0.39720,0.31886,0.24865,0.45228,0.41015,0.05294,0.09622,0.08233,corporate,0.01316,0.04352,0.03377,0.10285,0.14613,0.13225,0.47175,0.40870,0.42535 -27,27,Paper products,32.30789,129541595783.70657,3220,0.07437,0.27266,0.37747,0.34380,Manufacturing,0.07478,0.40624,0.33531,0.29233,0.46049,0.42440,0.05620,0.09768,0.08437,corporate,0.01643,0.04498,0.03581,0.13057,0.17205,0.15874,0.65430,0.59873,0.61377 -28,28,Printing and related support activities,27.31311,49933189821.85918,3230,0.08738,0.28115,0.38555,0.35200,Manufacturing,0.11587,0.42098,0.35461,0.32376,0.47388,0.44111,0.05882,0.10017,0.08689,corporate,0.01904,0.04747,0.03833,0.14620,0.18755,0.17428,0.69690,0.63354,0.65055 -29,29,Petroleum and coal products,59.57314,329428164622.01349,3240,0.04248,0.25554,0.36623,0.33073,Manufacturing,-0.02088,0.38444,0.30205,0.21917,0.44068,0.39559,0.05094,0.09422,0.08035,corporate,0.01116,0.04152,0.03179,0.09341,0.13670,0.12283,0.38831,0.35372,0.36308 -30,30,Chemical products,25.25661,863500170455.36816,3250,0.08141,0.27070,0.36903,0.33751,Manufacturing,0.06474,0.39002,0.31969,0.28465,0.44575,0.41087,0.05560,0.09508,0.08243,corporate,0.01583,0.04238,0.03387,0.13701,0.17649,0.16384,0.75588,0.72774,0.73525 -31,31,Plastics and rubber products,35.77905,110331312312.70663,3260,0.07510,0.27443,0.37960,0.34584,Manufacturing,0.08367,0.41020,0.34022,0.29913,0.46409,0.42864,0.05675,0.09834,0.08500,corporate,0.01698,0.04564,0.03643,0.13185,0.17344,0.16010,0.62236,0.57173,0.58540 -32,32,Nonmetallic mineral products,49.77944,116582519996.16560,3270,0.05528,0.26321,0.37251,0.33744,Manufacturing,0.02431,0.39682,0.31951,0.25373,0.45193,0.41071,0.05330,0.09616,0.08241,corporate,0.01352,0.04346,0.03385,0.10858,0.15144,0.13769,0.47670,0.42937,0.44204 -33,33,Primary metals,39.02286,186378975799.42520,3310,0.06098,0.26703,0.37476,0.34016,Manufacturing,0.04536,0.40113,0.32636,0.26983,0.45585,0.41664,0.05447,0.09685,0.08325,corporate,0.01470,0.04415,0.03469,0.11545,0.15782,0.14422,0.57585,0.51384,0.53049 -34,34,Fabricated metal products,36.46005,185026333665.73004,3320,0.07307,0.27404,0.38020,0.34611,Manufacturing,0.08170,0.41131,0.34086,0.29762,0.46509,0.42920,0.05663,0.09852,0.08508,corporate,0.01685,0.04582,0.03652,0.12970,0.17160,0.15815,0.60956,0.55459,0.56944 -35,35,Machinery,38.17436,272319888397.28802,3330,0.08052,0.27824,0.38309,0.34945,Manufacturing,0.10221,0.41656,0.34873,0.31331,0.46987,0.43601,0.05792,0.09941,0.08611,corporate,0.01815,0.04671,0.03754,0.13844,0.17993,0.16663,0.60648,0.56249,0.57432 -36,36,Computer and electronic products,26.26678,503974938260.46338,3340,0.14992,0.32179,0.42317,0.39064,Manufacturing,0.27089,0.48096,0.43228,0.44233,0.52838,0.50837,0.07132,0.11174,0.09878,corporate,0.03155,0.05904,0.05022,0.22124,0.26166,0.24870,0.72480,0.67946,0.69152 -37,37,"Electrical equipment, appliances, and components",46.30998,97409347475.05879,3350,0.06863,0.27282,0.38022,0.34578,Manufacturing,0.07558,0.41135,0.34006,0.29294,0.46513,0.42851,0.05625,0.09853,0.08498,corporate,0.01648,0.04583,0.03641,0.12488,0.16716,0.15361,0.51869,0.47210,0.48441 -38,38,"Motor vehicles, bodies and trailers, and parts",35.25214,238664334578.38879,336M,0.10965,0.29782,0.40216,0.36868,Manufacturing,0.18680,0.44908,0.39060,0.37801,0.49942,0.47227,0.06394,0.10528,0.09202,corporate,0.02417,0.05258,0.04346,0.17360,0.21493,0.20168,0.63580,0.59122,0.60331 -39,39,Other transportation equipment,49.50530,222225359206.18329,336O,0.07733,0.28018,0.38772,0.35326,Manufacturing,0.11136,0.42482,0.35746,0.32031,0.47737,0.44358,0.05852,0.10084,0.08728,corporate,0.01874,0.04814,0.03871,0.13585,0.17817,0.16461,0.49018,0.45078,0.46122 -40,40,Furniture and related products,43.14781,27298970230.41120,3370,0.06489,0.27111,0.37997,0.34503,Manufacturing,0.06684,0.41089,0.33826,0.28626,0.46472,0.42695,0.05572,0.09845,0.08475,corporate,0.01595,0.04575,0.03618,0.12061,0.16334,0.14963,0.53103,0.46878,0.48523 -41,41,Miscellaneous manufacturing,39.11052,132809342156.77454,338A,0.08377,0.27993,0.38434,0.35086,Manufacturing,0.11020,0.41881,0.35198,0.31942,0.47191,0.43884,0.05844,0.09980,0.08654,corporate,0.01867,0.04709,0.03798,0.14221,0.18357,0.17031,0.60204,0.56147,0.57224 -42,42,Oil and gas extraction,8.69835,1206378685719.62354,2110,0.07337,0.25967,0.35438,0.32393,Mining,0.00393,0.35967,0.28336,0.23814,0.41817,0.37941,0.05220,0.09058,0.07825,corporate,0.01243,0.03788,0.02969,0.12557,0.16395,0.15162,0.91235,0.87902,0.88885 -43,43,"Mining, except oil and gas",31.00869,190223523014.26080,2120,0.05531,0.25566,0.35849,0.32544,Mining,-0.02014,0.36848,0.28761,0.21973,0.42618,0.38309,0.05097,0.09184,0.07872,corporate,0.01120,0.03914,0.03016,0.10629,0.14716,0.13404,0.67716,0.63290,0.64529 -44,44,Support activities for mining,14.80506,120225750256.28439,2130,0.09587,0.27955,0.37749,0.34600,Mining,0.10843,0.40627,0.34060,0.31807,0.46052,0.42897,0.05832,0.09769,0.08505,corporate,0.01855,0.04499,0.03648,0.15420,0.19356,0.18092,0.85450,0.81579,0.82711 -45,45,"Other services, except government",38.49273,227393671624.08221,8100,0.04298,0.25257,0.36270,0.32719,"Other services, except government",-0.03953,0.37728,0.29245,0.20490,0.43418,0.38728,0.05002,0.09314,0.07926,corporate,0.01025,0.04044,0.03070,0.09301,0.13612,0.12224,0.56670,0.46760,0.49387 -46,46,Legal services,28.84422,20028299847.23765,5411,0.10067,0.29388,0.40294,0.36784,"Professional, scientific, and technical services",0.17110,0.45035,0.38888,0.36600,0.50057,0.47079,0.06273,0.10552,0.09177,corporate,0.02296,0.05282,0.04320,0.16340,0.20619,0.19243,0.64225,0.54861,0.57325 -47,47,"Miscellaneous professional, scientific, and technical services",19.64137,249009155856.58878,5412,0.14708,0.31865,0.41953,0.38713,"Professional, scientific, and technical services",0.26088,0.47571,0.42601,0.43467,0.52361,0.50294,0.07035,0.11062,0.09770,corporate,0.03058,0.05792,0.04914,0.21743,0.25771,0.24478,0.78540,0.73566,0.74908 -48,48,Computer systems design and related services,22.08806,42903264705.68482,5415,0.20021,0.36135,0.46677,0.43289,"Professional, scientific, and technical services",0.37719,0.53660,0.49831,0.52364,0.57894,0.56555,0.08349,0.12516,0.11178,corporate,0.04372,0.07246,0.06322,0.28370,0.32537,0.31199,0.73802,0.67290,0.69036 -49,49,Real estate,84.50235,2545926908840.65576,5310,0.00522,0.23308,0.35077,0.31302,Real estate and rental and leasing,-0.18117,0.35173,0.25124,0.09657,0.41096,0.35160,0.04402,0.08947,0.07490,corporate,0.00425,0.03677,0.02633,0.04924,0.09469,0.08011,0.12593,0.09398,0.10250 -50,50,Rental and leasing services and lessors of intangible assets,12.60970,248115752512.01251,5320,0.13613,0.30770,0.40537,0.37398,Real estate and rental and leasing,0.22372,0.45420,0.40122,0.40625,0.50407,0.48147,0.06699,0.10627,0.09366,corporate,0.02721,0.05357,0.04509,0.20312,0.24240,0.22979,0.87555,0.84250,0.85229 -51,51,Retail trade,59.09235,1608593695005.15381,44RT,0.03643,0.25604,0.37037,0.33366,Retail trade,-0.01783,0.39267,0.30978,0.22149,0.44816,0.40229,0.05109,0.09550,0.08125,corporate,0.01132,0.04280,0.03269,0.08752,0.13193,0.11768,0.35371,0.28466,0.30264 -52,52,Air transportation,14.66966,190656359022.74890,4810,0.07385,0.26440,0.36350,0.33161,Transportation and warehousing,0.03098,0.37891,0.30439,0.25883,0.43566,0.39762,0.05366,0.09338,0.08062,corporate,0.01389,0.04068,0.03206,0.12752,0.16724,0.15447,0.82935,0.77485,0.78990 -53,53,Railroad transportation,14.87954,331352975210.21057,4820,0.03044,0.22896,0.32457,0.29376,Transportation and warehousing,-0.21621,0.28752,0.18692,0.06976,0.35261,0.29589,0.04276,0.08141,0.06897,corporate,0.00298,0.02870,0.02041,0.07319,0.11184,0.09941,0.87334,0.82943,0.84234 -54,54,Water transportation,17.09966,36714023796.14972,4830,0.06970,0.26210,0.36171,0.32965,Transportation and warehousing,0.01802,0.37523,0.29913,0.24891,0.43232,0.39306,0.05295,0.09283,0.08001,corporate,0.01318,0.04013,0.03145,0.12265,0.16254,0.14971,0.82474,0.77067,0.78603 -55,55,Truck transportation,20.61584,108471874449.86627,4840,0.12901,0.30643,0.40770,0.37517,Transportation and warehousing,0.21915,0.45787,0.40354,0.40276,0.50740,0.48348,0.06659,0.10698,0.09402,corporate,0.02682,0.05428,0.04546,0.19560,0.23599,0.22303,0.78057,0.73818,0.75012 -56,56,Transit and ground passenger transportation,25.85441,35034660346.86049,4850,0.08027,0.27688,0.38374,0.34933,Transportation and warehousing,0.09569,0.41774,0.34844,0.30832,0.47094,0.43577,0.05750,0.09961,0.08607,corporate,0.01773,0.04691,0.03751,0.13778,0.17989,0.16634,0.68289,0.59443,0.61789 -57,57,Pipeline transportation,8.41826,169678725932.06000,4860,0.05383,0.24532,0.33980,0.30941,Transportation and warehousing,-0.08807,0.32630,0.23997,0.16777,0.38785,0.34183,0.04779,0.08609,0.07379,corporate,0.00802,0.03339,0.02522,0.10162,0.13992,0.12761,0.91309,0.87662,0.88727 -58,58,Other transportation and support activities,23.59937,110872018726.73232,487S,0.06367,0.25928,0.36081,0.32813,Transportation and warehousing,0.00166,0.37336,0.29500,0.23641,0.43061,0.38949,0.05209,0.09256,0.07955,corporate,0.01231,0.03986,0.03098,0.11575,0.15622,0.14321,0.75550,0.69719,0.71336 -59,59,Warehousing and storage,40.27303,33575803410.77195,4930,0.04356,0.25651,0.36920,0.33291,Transportation and warehousing,-0.01497,0.39037,0.30781,0.22368,0.44607,0.40058,0.05123,0.09514,0.08102,corporate,0.01146,0.04244,0.03245,0.09479,0.13870,0.12458,0.51179,0.40614,0.43361 -60,60,Utilities,15.06813,2043225324419.22656,2200,0.04186,0.23873,0.33574,0.30447,Utilities,-0.13626,0.31639,0.22399,0.13091,0.37885,0.32800,0.04576,0.08484,0.07227,corporate,0.00599,0.03214,0.02370,0.08763,0.12671,0.11413,0.86705,0.81474,0.82999 -61,61,Wholesale trade,62.56787,973137443870.90881,4200,0.05422,0.26927,0.38111,0.34527,Wholesale trade,0.05730,0.41297,0.33884,0.27896,0.46661,0.42745,0.05516,0.09880,0.08482,corporate,0.01539,0.04610,0.03626,0.10938,0.15303,0.13904,0.34924,0.31058,0.32086 -62,62,Accommodation,57.79905,321835229078.19275,7210,0.02700,0.21630,0.19916,0.20410,Accommodation and food services,0.26224,0.19337,0.20904,0.26224,0.19337,0.20904,0.04752,0.06533,0.06016,non-corporate,0.01246,0.01263,0.01258,0.07452,0.09233,0.08716,0.30965,0.26925,0.27981 -63,63,Food services and drinking places,37.79544,131618330778.79922,7220,0.05846,0.20891,0.18900,0.19474,Accommodation and food services,0.23236,0.16065,0.17695,0.23236,0.16065,0.17695,0.04567,0.06279,0.05781,non-corporate,0.01061,0.01009,0.01023,0.10413,0.12125,0.11628,0.52286,0.48286,0.49341 -64,64,Administrative and support services,22.90398,87779837154.60233,5610,0.14729,0.20023,0.17698,0.18369,Administrative and waste management services,0.19394,0.11835,0.13556,0.19394,0.11835,0.13556,0.04349,0.05978,0.05505,non-corporate,0.00844,0.00707,0.00746,0.19078,0.20706,0.20234,0.71771,0.69102,0.69815 -65,65,Waste management and remediation services,28.00786,45442362954.18396,5620,0.05017,0.19741,0.17382,0.18062,Administrative and waste management services,0.18065,0.10649,0.12327,0.18065,0.10649,0.12327,0.04279,0.05898,0.05427,non-corporate,0.00773,0.00628,0.00669,0.09296,0.10915,0.10445,0.69942,0.67065,0.67843 -66,66,Farms,61.51678,695254770987.64246,110C,0.03338,0.20771,0.18711,0.19306,"Agriculture, forestry, fishing, and hunting",0.22725,0.15425,0.17092,0.22725,0.15425,0.17092,0.04537,0.06231,0.05739,non-corporate,0.01031,0.00961,0.00981,0.07875,0.09569,0.09078,0.38922,0.37852,0.38148 -67,67,"Forestry, fishing, and related activities",80.96268,182890160759.96515,113F,0.02138,0.21316,0.19521,0.20041,"Agriculture, forestry, fishing, and hunting",0.24986,0.18094,0.19668,0.24986,0.18094,0.19668,0.04674,0.06434,0.05923,non-corporate,0.01168,0.01164,0.01165,0.06812,0.08572,0.08061,0.18131,0.17506,0.17675 -68,68,"Performing arts, spectator sports, museums, and related activities",24.88765,85913620169.51553,711A,0.07655,0.20021,0.17757,0.18411,"Arts, entertainment, and recreation",0.19386,0.12053,0.13718,0.19386,0.12053,0.13718,0.04349,0.05992,0.05515,non-corporate,0.00843,0.00722,0.00757,0.12004,0.13647,0.13170,0.71111,0.67820,0.68703 -69,69,"Amusements, gambling, and recreation industries",35.67483,103963170327.32812,7130,0.04082,0.19961,0.17665,0.18328,"Arts, entertainment, and recreation",0.19107,0.11711,0.13391,0.19107,0.11711,0.13391,0.04334,0.05969,0.05494,non-corporate,0.00828,0.00699,0.00736,0.08416,0.10051,0.09576,0.61097,0.59028,0.59588 -70,70,Construction,61.58594,416883328406.94965,2300,0.05302,0.20857,0.18859,0.19437,Construction,0.23093,0.15925,0.17561,0.23093,0.15925,0.17561,0.04559,0.06268,0.05772,non-corporate,0.01053,0.00998,0.01014,0.09861,0.11571,0.11074,0.36728,0.35594,0.35901 -71,71,Educational services,34.08224,223504365062.32428,6100,0.04403,0.20939,0.19058,0.19597,Educational services,0.23435,0.16590,0.18132,0.23435,0.16590,0.18132,0.04579,0.06318,0.05812,non-corporate,0.01073,0.01048,0.01054,0.08982,0.10721,0.10215,0.49921,0.44095,0.45619 -72,72,Credit intermediation and related activities,29.58426,75859556179.73862,5220,0.10435,0.20503,0.18349,0.18970,Finance and insurance,0.21562,0.14176,0.15856,0.21562,0.14176,0.15856,0.04470,0.06141,0.05655,non-corporate,0.00964,0.00870,0.00897,0.14904,0.16575,0.16090,0.62633,0.59260,0.60155 -73,73,"Securities, commodity contracts, and investments",68.67047,178435565511.13712,5230,0.04082,0.21436,0.19653,0.20168,Finance and insurance,0.25464,0.18513,0.20099,0.25464,0.18513,0.20099,0.04704,0.06467,0.05955,non-corporate,0.01198,0.01197,0.01197,0.08786,0.10550,0.10038,0.25733,0.23586,0.24150 -74,74,Insurance carriers and related activities,34.29784,22117554581.34229,5240,0.10767,0.20868,0.18862,0.19440,Finance and insurance,0.23137,0.15936,0.17573,0.23137,0.15936,0.17573,0.04561,0.06269,0.05773,non-corporate,0.01055,0.00999,0.01014,0.15328,0.17036,0.16540,0.55078,0.50967,0.52047 -75,75,"Funds, trusts, and other financial vehicles",58.69939,32975922704.02256,5250,0.01910,0.21653,0.19978,0.20460,Finance and insurance,0.26314,0.19527,0.21068,0.26314,0.19527,0.21068,0.04758,0.06549,0.06029,non-corporate,0.01252,0.01279,0.01270,0.06668,0.08459,0.07939,0.28785,0.24378,0.25528 -76,76,Ambulatory health care services,26.88893,165185547973.71588,6210,0.07665,0.20542,0.18442,0.19046,Health care and social assistance,0.21734,0.14501,0.16140,0.21734,0.14501,0.16140,0.04479,0.06164,0.05674,non-corporate,0.00974,0.00894,0.00916,0.12145,0.13829,0.13340,0.62439,0.58040,0.59201 -77,77,Hospitals,33.25928,468740246235.20782,622H,0.05080,0.20796,0.18848,0.19407,Health care and social assistance,0.22832,0.15890,0.17456,0.22832,0.15890,0.17456,0.04543,0.06266,0.05765,non-corporate,0.01037,0.00996,0.01006,0.09623,0.11346,0.10845,0.52867,0.47634,0.49007 -78,78,Nursing and residential care facilities,30.33509,44969311542.03897,6230,0.04907,0.20759,0.18784,0.19351,Health care and social assistance,0.22673,0.15673,0.17253,0.22673,0.15673,0.17253,0.04534,0.06250,0.05751,non-corporate,0.01028,0.00980,0.00992,0.09441,0.11157,0.10658,0.55567,0.50197,0.51607 -79,79,Social assistance,36.92941,33500693280.97236,6240,0.04961,0.20793,0.18808,0.19379,Health care and social assistance,0.22819,0.15754,0.17354,0.22819,0.15754,0.17354,0.04542,0.06256,0.05758,non-corporate,0.01037,0.00986,0.00999,0.09504,0.11217,0.10719,0.51821,0.47416,0.48574 -80,80,Publishing industries (including software),33.44919,10531454693.98520,5110,0.12610,0.20357,0.18160,0.18796,Information,0.20918,0.13511,0.15202,0.20918,0.13511,0.15202,0.04433,0.06093,0.05612,non-corporate,0.00927,0.00823,0.00853,0.17043,0.18703,0.18222,0.63616,0.61157,0.61815 -81,81,Motion picture and sound recording industries,22.07241,32648570358.87631,5120,0.10064,0.20281,0.17973,0.18640,Information,0.20574,0.12838,0.14606,0.20574,0.12838,0.14606,0.04414,0.06046,0.05572,non-corporate,0.00908,0.00776,0.00814,0.14478,0.16110,0.15636,0.77010,0.74297,0.75043 -82,82,Broadcasting and telecommunications,19.11518,114376654728.14319,5130,0.06871,0.19468,0.16980,0.17698,Information,0.16733,0.09100,0.10829,0.16733,0.09100,0.10829,0.04210,0.05798,0.05336,non-corporate,0.00705,0.00528,0.00578,0.11081,0.12669,0.12207,0.79435,0.76892,0.77590 -83,83,Information and data processing services,17.05502,9622690881.11265,5140,0.20060,0.19449,0.16912,0.17646,Information,0.16637,0.08830,0.10610,0.16637,0.08830,0.10610,0.04206,0.05780,0.05323,non-corporate,0.00700,0.00510,0.00565,0.24266,0.25841,0.25384,0.81188,0.79535,0.79981 -84,84,Management of companies and enterprises,43.27634,90403382551.37852,5500,0.07684,0.21058,0.19138,0.19691,Management of companies and enterprises,0.23931,0.16853,0.18462,0.23931,0.16853,0.18462,0.04609,0.06338,0.05836,non-corporate,0.01103,0.01068,0.01077,0.12293,0.14022,0.13520,0.46108,0.42111,0.43158 -85,85,"Food, beverage, and tobacco products",48.30489,75311838089.07274,311A,0.05479,0.20924,0.18869,0.19463,Manufacturing,0.23372,0.15961,0.17655,0.23372,0.15961,0.17655,0.04575,0.06271,0.05779,non-corporate,0.01069,0.01001,0.01020,0.10054,0.11750,0.11258,0.46898,0.44555,0.45178 -86,86,Textile mills and textile product mills,40.68702,7854948624.36963,313T,0.05307,0.21027,0.19021,0.19600,Manufacturing,0.23802,0.16469,0.18142,0.23802,0.16469,0.18142,0.04601,0.06309,0.05813,non-corporate,0.01095,0.01039,0.01055,0.09908,0.11616,0.11120,0.50621,0.47003,0.47957 -87,87,Apparel and leather and allied products,57.59360,5338390836.40291,315A,0.03836,0.21472,0.19589,0.20133,Manufacturing,0.25607,0.18312,0.19982,0.25607,0.18312,0.19982,0.04713,0.06451,0.05947,non-corporate,0.01207,0.01181,0.01188,0.08548,0.10287,0.09782,0.35557,0.32759,0.33494 -88,88,Wood products,49.75998,13100141973.21793,3210,0.04885,0.21100,0.19127,0.19697,Manufacturing,0.24104,0.16817,0.18481,0.24104,0.16817,0.18481,0.04619,0.06336,0.05837,non-corporate,0.01113,0.01065,0.01079,0.09505,0.11221,0.10722,0.43703,0.40875,0.41622 -89,89,Paper products,35.24665,18990987477.75871,3220,0.07114,0.20381,0.18152,0.18796,Manufacturing,0.21024,0.13483,0.15203,0.21024,0.13483,0.15203,0.04439,0.06091,0.05612,non-corporate,0.00933,0.00821,0.00853,0.11554,0.13206,0.12726,0.60502,0.58048,0.58705 -90,90,Printing and related support activities,29.64849,7652157518.59406,3230,0.08458,0.20300,0.18046,0.18697,Manufacturing,0.20663,0.13101,0.14825,0.20663,0.13101,0.14825,0.04419,0.06065,0.05587,non-corporate,0.00913,0.00795,0.00828,0.12877,0.14522,0.14044,0.65027,0.62203,0.62956 -91,91,Petroleum and coal products,57.31094,36804972259.27284,3240,0.04485,0.20949,0.18943,0.19523,Manufacturing,0.23479,0.16209,0.17870,0.23479,0.16209,0.17870,0.04582,0.06290,0.05794,non-corporate,0.01076,0.01019,0.01035,0.09067,0.10775,0.10279,0.39570,0.37884,0.38335 -92,92,Chemical products,28.24831,155956627360.72098,3250,0.07815,0.19537,0.17014,0.17744,Manufacturing,0.17072,0.09229,0.11023,0.17072,0.09229,0.11023,0.04228,0.05806,0.05348,non-corporate,0.00722,0.00536,0.00589,0.12043,0.13621,0.13163,0.71490,0.70248,0.70578 -93,93,Plastics and rubber products,41.70295,18759113941.02066,3260,0.06817,0.20578,0.18396,0.19027,Manufacturing,0.21892,0.14342,0.16068,0.21892,0.14342,0.16068,0.04489,0.06152,0.05669,non-corporate,0.00983,0.00882,0.00911,0.11306,0.12970,0.12487,0.54687,0.52567,0.53133 -94,94,Nonmetallic mineral products,50.65769,17930326841.17467,3270,0.05431,0.20858,0.18817,0.19407,Manufacturing,0.23095,0.15785,0.17454,0.23095,0.15785,0.17454,0.04559,0.06258,0.05765,non-corporate,0.01053,0.00988,0.01006,0.09990,0.11689,0.11196,0.44995,0.42855,0.43424 -95,95,Primary metals,43.39133,31384946425.55616,3310,0.05661,0.20843,0.18761,0.19362,Manufacturing,0.23033,0.15595,0.17294,0.23033,0.15595,0.17294,0.04555,0.06244,0.05753,non-corporate,0.01049,0.00974,0.00995,0.10216,0.11904,0.11414,0.51185,0.48534,0.49240 -96,96,Fabricated metal products,40.57109,33868174282.69432,3320,0.06834,0.20646,0.18491,0.19114,Manufacturing,0.22187,0.14673,0.16389,0.22187,0.14673,0.16389,0.04506,0.06176,0.05691,non-corporate,0.01000,0.00906,0.00933,0.11340,0.13011,0.12526,0.54990,0.52619,0.53252 -97,97,Machinery,45.59719,44994036766.73473,3330,0.07085,0.20615,0.18437,0.19067,Manufacturing,0.22053,0.14485,0.16217,0.22053,0.14485,0.16217,0.04498,0.06163,0.05680,non-corporate,0.00992,0.00893,0.00921,0.11583,0.13248,0.12765,0.51839,0.50055,0.50531 -98,98,Computer and electronic products,27.75599,67202508361.14622,3340,0.14689,0.19883,0.17481,0.18176,Manufacturing,0.18737,0.11024,0.12786,0.18737,0.11024,0.12786,0.04314,0.05923,0.05456,non-corporate,0.00808,0.00653,0.00698,0.19004,0.20612,0.20145,0.69248,0.67207,0.67748 -99,99,"Electrical equipment, appliances, and components",51.19822,13457767002.27841,3350,0.06238,0.20878,0.18791,0.19395,Manufacturing,0.23178,0.15697,0.17410,0.23178,0.15697,0.17410,0.04564,0.06251,0.05762,non-corporate,0.01058,0.00981,0.01003,0.10802,0.12489,0.12000,0.45453,0.43511,0.44024 -100,100,"Motor vehicles, bodies and trailers, and parts",39.59103,37968439962.33989,336M,0.10231,0.20431,0.18197,0.18843,Manufacturing,0.21246,0.13643,0.15381,0.21246,0.13643,0.15381,0.04452,0.06103,0.05623,non-corporate,0.00946,0.00833,0.00865,0.14682,0.16333,0.15854,0.57689,0.55768,0.56282 -101,101,Other transportation equipment,55.71089,37605705698.82620,336O,0.06783,0.21008,0.18945,0.19542,Manufacturing,0.23723,0.16213,0.17936,0.23723,0.16213,0.17936,0.04596,0.06290,0.05798,non-corporate,0.01090,0.01020,0.01040,0.11379,0.13073,0.12581,0.41614,0.40029,0.40449 -102,102,Furniture and related products,46.12348,3398491339.24600,3370,0.06149,0.20966,0.18924,0.19514,Manufacturing,0.23551,0.16146,0.17839,0.23551,0.16146,0.17839,0.04586,0.06285,0.05792,non-corporate,0.01080,0.01015,0.01033,0.10735,0.12434,0.11941,0.47964,0.45260,0.45975 -103,103,Miscellaneous manufacturing,44.10283,21983133311.41251,338A,0.07690,0.20488,0.18266,0.18909,Manufacturing,0.21497,0.13886,0.15629,0.21497,0.13886,0.15629,0.04466,0.06120,0.05640,non-corporate,0.00960,0.00850,0.00881,0.12156,0.13810,0.13330,0.53784,0.52074,0.52527 -104,104,Oil and gas extraction,9.26036,250060628349.92041,2110,0.07292,0.18831,0.16109,0.16895,Mining,0.13450,0.05540,0.07335,0.13450,0.05540,0.07335,0.04051,0.05579,0.05135,non-corporate,0.00545,0.00309,0.00377,0.11342,0.12871,0.12427,0.89463,0.87896,0.88332 -105,105,"Mining, except oil and gas",36.47161,42556976403.16281,2120,0.05093,0.20031,0.17741,0.18402,Mining,0.19432,0.11992,0.13684,0.19432,0.11992,0.13684,0.04351,0.05988,0.05513,non-corporate,0.00846,0.00718,0.00754,0.09445,0.11082,0.10606,0.60797,0.58897,0.59413 -106,106,Support activities for mining,15.74712,25044165259.30807,2130,0.09481,0.19325,0.16757,0.17499,Mining,0.16015,0.08215,0.09988,0.16015,0.08215,0.09988,0.04174,0.05742,0.05286,non-corporate,0.00669,0.00472,0.00528,0.13656,0.15223,0.14768,0.83097,0.81289,0.81791 -107,107,"Other services, except government",36.31857,434659499245.39331,8100,0.04450,0.20613,0.18596,0.19175,"Other services, except government",0.22044,0.15032,0.16614,0.22044,0.15032,0.16614,0.04497,0.06202,0.05707,non-corporate,0.00991,0.00932,0.00948,0.08948,0.10653,0.10157,0.54580,0.49871,0.51118 -108,108,Legal services,29.93984,24694671280.08685,5411,0.09912,0.20742,0.18693,0.19283,"Professional, scientific, and technical services",0.22601,0.15364,0.17007,0.22601,0.15364,0.17007,0.04530,0.06227,0.05734,non-corporate,0.01024,0.00957,0.00975,0.14441,0.16138,0.15645,0.59535,0.55315,0.56428 -109,109,"Miscellaneous professional, scientific, and technical services",19.84614,250145961935.08807,5412,0.14671,0.19711,0.17272,0.17977,"Professional, scientific, and technical services",0.17920,0.10233,0.11984,0.17920,0.10233,0.11984,0.04271,0.05871,0.05406,non-corporate,0.00765,0.00601,0.00648,0.18942,0.20541,0.20077,0.76387,0.74099,0.74710 -110,110,Computer systems design and related services,22.66047,34987856978.92335,5415,0.19874,0.20394,0.18171,0.18813,"Professional, scientific, and technical services",0.21082,0.13549,0.15266,0.21082,0.13549,0.15266,0.04442,0.06096,0.05616,non-corporate,0.00937,0.00826,0.00857,0.24316,0.25970,0.25490,0.70702,0.67727,0.68519 -111,111,Real estate,84.96022,10194539931205.20117,5310,0.00516,0.21606,0.19948,0.20427,Real estate and rental and leasing,0.26131,0.19434,0.20959,0.26131,0.19434,0.20959,0.04746,0.06541,0.06020,non-corporate,0.01240,0.01271,0.01262,0.05262,0.07057,0.06536,0.11003,0.09578,0.09955 -112,112,Rental and leasing services and lessors of intangible assets,14.26025,187611316433.88910,5320,0.13356,0.19353,0.16780,0.17523,Real estate and rental and leasing,0.16160,0.08304,0.10092,0.16160,0.08304,0.10092,0.04182,0.05747,0.05293,non-corporate,0.00676,0.00477,0.00534,0.17538,0.19104,0.18649,0.84722,0.83185,0.83614 -113,113,Retail trade,68.40422,599107994988.67297,44RT,0.02814,0.21749,0.19980,0.20491,Retail trade,0.26685,0.19533,0.21170,0.26685,0.19533,0.21170,0.04782,0.06549,0.06036,non-corporate,0.01276,0.01279,0.01278,0.07596,0.09363,0.08850,0.25162,0.22728,0.23367 -114,114,Air transportation,14.96155,47796425035.43796,4810,0.07360,0.19383,0.16863,0.17590,Transportation and warehousing,0.16307,0.08636,0.10376,0.16307,0.08636,0.10376,0.04189,0.05768,0.05309,non-corporate,0.00683,0.00498,0.00551,0.11549,0.13128,0.12669,0.80552,0.78031,0.78711 -115,115,Railroad transportation,15.14169,83039763589.18028,4820,0.03034,0.18782,0.16101,0.16874,Transportation and warehousing,0.13187,0.05507,0.07240,0.13187,0.05507,0.07240,0.04038,0.05577,0.05130,non-corporate,0.00533,0.00307,0.00371,0.07073,0.08612,0.08164,0.85464,0.83391,0.83967 -116,116,Water transportation,17.50642,9217710064.52573,4830,0.06936,0.19460,0.16966,0.17685,Transportation and warehousing,0.16690,0.09041,0.10774,0.16690,0.09041,0.10774,0.04208,0.05794,0.05333,non-corporate,0.00702,0.00524,0.00575,0.11144,0.12730,0.12269,0.80039,0.77519,0.78209 -117,117,Truck transportation,19.74733,37317255861.67974,4840,0.13042,0.19758,0.17325,0.18028,Transportation and warehousing,0.18144,0.10433,0.12190,0.18144,0.10433,0.12190,0.04283,0.05884,0.05419,non-corporate,0.00777,0.00614,0.00661,0.17325,0.18926,0.18461,0.77281,0.75281,0.75826 -118,118,Transit and ground passenger transportation,25.50512,10233125938.31284,4850,0.08065,0.20385,0.18224,0.18846,Transportation and warehousing,0.21041,0.13735,0.15391,0.21041,0.13735,0.15391,0.04440,0.06109,0.05624,non-corporate,0.00934,0.00839,0.00866,0.12505,0.14174,0.13689,0.65065,0.60987,0.62066 -119,119,Pipeline transportation,8.49334,33708295455.20280,4860,0.05378,0.18744,0.16005,0.16796,Transportation and warehousing,0.12979,0.05097,0.06884,0.12979,0.05097,0.06884,0.04029,0.05553,0.05110,non-corporate,0.00523,0.00283,0.00352,0.09407,0.10931,0.10489,0.89891,0.88171,0.88648 -120,120,Other transportation and support activities,23.54062,34235605978.81979,487S,0.06371,0.19642,0.17233,0.17928,Transportation and warehousing,0.17586,0.10081,0.11781,0.17586,0.10081,0.11781,0.04254,0.05861,0.05394,non-corporate,0.00748,0.00591,0.00635,0.10626,0.12232,0.11765,0.73362,0.70648,0.71382 -121,121,Warehousing and storage,38.87182,15189477206.55462,4930,0.04458,0.21067,0.19176,0.19720,Transportation and warehousing,0.23969,0.16979,0.18562,0.23969,0.16979,0.18562,0.04611,0.06348,0.05843,non-corporate,0.01105,0.01078,0.01085,0.09069,0.10806,0.10301,0.48002,0.43069,0.44362 -122,122,Utilities,16.13995,110848021471.90637,2200,0.04133,0.19021,0.16416,0.17167,Utilities,0.14457,0.06825,0.08547,0.14457,0.06825,0.08547,0.04098,0.05656,0.05203,non-corporate,0.00592,0.00386,0.00445,0.08232,0.09789,0.09336,0.83709,0.81267,0.81943 -123,123,Wholesale trade,74.90337,387578651034.04889,4200,0.03635,0.21752,0.19927,0.20456,Wholesale trade,0.26698,0.19370,0.21054,0.26698,0.19370,0.21054,0.04783,0.06536,0.06027,non-corporate,0.01277,0.01266,0.01269,0.08418,0.10171,0.09663,0.22383,0.21193,0.21508 -124,124,Accommodation and food services,57.53282,422339182442.50781,,0.03387,0.25215,0.36687,0.33002,Accommodation and food services,-0.04221,0.38574,0.30013,0.20285,0.44186,0.39393,0.04989,0.09442,0.08013,corporate,0.01012,0.04172,0.03156,0.08377,0.12829,0.11400,0.36527,0.29158,0.31076 -125,125,Administrative and waste management services,25.41352,175956964097.71542,,0.10934,0.29365,0.39682,0.36364,Administrative and waste management services,0.17013,0.44036,0.38015,0.36526,0.49149,0.46322,0.06266,0.10364,0.09047,corporate,0.02289,0.05094,0.04191,0.17200,0.21298,0.19981,0.72840,0.66947,0.68557 -126,126,"Agriculture, forestry, fishing, and hunting",56.81278,393953898679.37433,,0.03838,0.25053,0.35845,0.32383,"Agriculture, forestry, fishing, and hunting",-0.05278,0.36840,0.28309,0.19476,0.42611,0.37917,0.04939,0.09183,0.07822,corporate,0.00962,0.03913,0.02966,0.08778,0.13021,0.11661,0.44426,0.41841,0.42589 -127,127,"Arts, entertainment, and recreation",32.00288,183023311189.45822,,0.05550,0.25632,0.36082,0.32724,"Arts, entertainment, and recreation",-0.01609,0.37339,0.29257,0.22283,0.43064,0.38738,0.05118,0.09256,0.07927,corporate,0.01140,0.03986,0.03071,0.10668,0.14806,0.13477,0.66627,0.61104,0.62623 -130,130,Finance and insurance,28.64482,1136731273762.68823,,0.10585,0.29630,0.40408,0.36940,Finance and insurance,0.18079,0.45216,0.39207,0.37342,0.50221,0.47354,0.06348,0.10587,0.09225,corporate,0.02370,0.05317,0.04368,0.16932,0.21172,0.19809,0.65451,0.57127,0.59326 -131,131,Health care and social assistance,31.95205,742735929973.70728,,0.05691,0.26295,0.37341,0.33780,Health care and social assistance,0.02283,0.39855,0.32042,0.25259,0.45350,0.41150,0.05321,0.09643,0.08252,corporate,0.01344,0.04373,0.03396,0.11013,0.15335,0.13943,0.59540,0.48662,0.51503 -132,132,Information,18.40316,1889701073104.17749,,0.09138,0.27863,0.37911,0.34679,Information,0.10408,0.40929,0.34247,0.31474,0.46327,0.43059,0.05804,0.09819,0.08529,corporate,0.01827,0.04549,0.03672,0.14942,0.18956,0.17667,0.82057,0.76539,0.78106 -133,133,Management of companies and enterprises,44.32188,424413435043.75659,,0.07542,0.27864,0.39078,0.35472,Management of companies and enterprises,0.10409,0.43013,0.36075,0.31475,0.48219,0.44643,0.05804,0.10178,0.08773,corporate,0.01827,0.04908,0.03916,0.13346,0.17720,0.16315,0.48744,0.40143,0.42376 -134,134,Manufacturing,36.92289,3957731548856.36719,,0.08262,0.27850,0.38298,0.34946,Manufacturing,0.10346,0.41636,0.34874,0.31427,0.46969,0.43603,0.05800,0.09938,0.08611,corporate,0.01823,0.04668,0.03755,0.14062,0.18200,0.16873,0.61687,0.57289,0.58467 -135,135,Mining,11.98029,1516827958990.16870,,0.07289,0.26074,0.35673,0.32587,Mining,0.01019,0.36473,0.28878,0.24293,0.42277,0.38411,0.05254,0.09130,0.07885,corporate,0.01276,0.03860,0.03029,0.12542,0.16419,0.15174,0.87827,0.84315,0.85341 -136,136,"Other services, except government",38.49273,227393671624.08221,,0.04298,0.25257,0.36270,0.32719,"Other services, except government",-0.03953,0.37728,0.29245,0.20490,0.43418,0.38728,0.05002,0.09314,0.07926,corporate,0.01025,0.04044,0.03070,0.09301,0.13612,0.12224,0.56670,0.46760,0.49387 -137,137,"Professional, scientific, and technical services",20.56875,311940720409.51123,,0.15141,0.32293,0.42496,0.39219,"Professional, scientific, and technical services",0.27447,0.48351,0.43501,0.44507,0.53070,0.51073,0.07167,0.11230,0.09926,corporate,0.03190,0.05960,0.05069,0.22308,0.26370,0.25067,0.76970,0.71502,0.72972 -138,138,Real estate and rental and leasing,78.11816,2794042661352.66748,,0.01684,0.23971,0.35562,0.31843,Real estate and rental and leasing,-0.12888,0.36236,0.26754,0.13656,0.42062,0.36570,0.04606,0.09096,0.07656,corporate,0.00629,0.03826,0.02800,0.06291,0.10780,0.09341,0.19250,0.16045,0.16908 -140,140,Transportation and warehousing,16.62231,1016356440895.40027,,0.06020,0.25367,0.35210,0.32041,Transportation and warehousing,-0.03254,0.35466,0.27333,0.21024,0.41362,0.37072,0.05036,0.08988,0.07717,corporate,0.01059,0.03717,0.02861,0.11056,0.15008,0.13738,0.82870,0.77870,0.79282 -143,143,Accommodation and food services,51.99285,453453559856.99200,,0.03613,0.21415,0.19621,0.20138,Accommodation and food services,0.25381,0.18414,0.19999,0.25381,0.18414,0.19999,0.04698,0.06460,0.05948,non-corporate,0.01193,0.01189,0.01190,0.08312,0.10073,0.09561,0.37153,0.33125,0.34181 -144,144,Administrative and waste management services,24.64493,133222200108.78630,,0.11416,0.19927,0.17590,0.18264,Administrative and waste management services,0.18946,0.11434,0.13140,0.18946,0.11434,0.13140,0.04325,0.05950,0.05478,non-corporate,0.00819,0.00680,0.00720,0.15742,0.17367,0.16895,0.71147,0.68407,0.69142 -145,145,"Agriculture, forestry, fishing, and hunting",65.56676,878144931747.60754,,0.03088,0.20885,0.18879,0.19459,"Agriculture, forestry, fishing, and hunting",0.23207,0.15995,0.17642,0.23207,0.15995,0.17642,0.04565,0.06274,0.05778,non-corporate,0.01060,0.01003,0.01019,0.07654,0.09362,0.08866,0.34592,0.33615,0.33884 -146,146,"Arts, entertainment, and recreation",30.79395,189876790496.84369,,0.05699,0.19988,0.17707,0.18365,"Arts, entertainment, and recreation",0.19234,0.11866,0.13539,0.19234,0.11866,0.13539,0.04341,0.05980,0.05504,non-corporate,0.00835,0.00710,0.00745,0.10039,0.11678,0.11202,0.65628,0.63006,0.63712 -149,149,Finance and insurance,55.56686,309388598976.24060,,0.05886,0.21190,0.19311,0.19853,Finance and insurance,0.24473,0.17420,0.19026,0.24473,0.17420,0.19026,0.04642,0.06382,0.05877,non-corporate,0.01136,0.01112,0.01118,0.10528,0.12268,0.11763,0.37204,0.34375,0.35119 -150,150,Health care and social assistance,31.77017,712395799031.93506,,0.05663,0.20735,0.18748,0.19319,Health care and social assistance,0.22569,0.15552,0.17137,0.22569,0.15552,0.17137,0.04528,0.06241,0.05743,non-corporate,0.01022,0.00971,0.00984,0.10191,0.11904,0.11406,0.55208,0.50198,0.51515 -151,151,Information,20.47709,167179370662.11737,,0.08615,0.19682,0.17245,0.17948,Information,0.17778,0.10126,0.11864,0.17778,0.10126,0.11864,0.04264,0.05864,0.05399,non-corporate,0.00758,0.00594,0.00641,0.12879,0.14479,0.14014,0.78066,0.75546,0.76236 -152,152,Management of companies and enterprises,43.27634,90403382551.37852,,0.07684,0.21058,0.19138,0.19691,Management of companies and enterprises,0.23931,0.16853,0.18462,0.23931,0.16853,0.18462,0.04609,0.06338,0.05836,non-corporate,0.01103,0.01068,0.01077,0.12293,0.14022,0.13520,0.46108,0.42111,0.43158 -153,153,Manufacturing,40.15757,649562708071.83960,,0.07667,0.20380,0.18140,0.18788,Manufacturing,0.21018,0.13438,0.15171,0.21018,0.13438,0.15171,0.04439,0.06088,0.05609,non-corporate,0.00933,0.00818,0.00851,0.12106,0.13755,0.13277,0.56875,0.54958,0.55468 -154,154,Mining,13.41725,317661770012.39130,,0.07170,0.19031,0.16379,0.17145,Mining,0.14506,0.06671,0.08450,0.14506,0.06671,0.08450,0.04101,0.05647,0.05198,non-corporate,0.00595,0.00377,0.00439,0.11270,0.12816,0.12367,0.85121,0.83490,0.83942 -155,155,"Other services, except government",36.31857,434659499245.39331,,0.04450,0.20613,0.18596,0.19175,"Other services, except government",0.22044,0.15032,0.16614,0.22044,0.15032,0.16614,0.04497,0.06202,0.05707,non-corporate,0.00991,0.00932,0.00948,0.08948,0.10653,0.10157,0.54580,0.49871,0.51118 -156,156,"Professional, scientific, and technical services",20.96846,309828490194.09827,,0.14879,0.19870,0.17487,0.18176,"Professional, scientific, and technical services",0.18680,0.11048,0.12786,0.18680,0.11048,0.12786,0.04311,0.05925,0.05456,non-corporate,0.00805,0.00655,0.00698,0.19190,0.20803,0.20335,0.74402,0.71882,0.72554 -157,157,Real estate and rental and leasing,83.68263,10382151247639.08984,,0.00748,0.21565,0.19891,0.20374,Real estate and rental and leasing,0.25972,0.19257,0.20786,0.25972,0.19257,0.20786,0.04736,0.06527,0.06007,non-corporate,0.01230,0.01257,0.01249,0.05484,0.07275,0.06755,0.12335,0.10908,0.11286 -159,159,Transportation and warehousing,17.78260,270737659129.71378,,0.06294,0.19338,0.16818,0.17545,Transportation and warehousing,0.16085,0.08455,0.10183,0.16085,0.08455,0.10183,0.04178,0.05757,0.05298,non-corporate,0.00672,0.00487,0.00540,0.10472,0.12051,0.11592,0.79432,0.77001,0.77663 -162,162,Overall,38.79367,20307631178754.23438,,0.06162,0.26362,0.36976,0.33565,Overall,0.02659,0.39146,0.31494,0.25548,0.44706,0.40675,0.05342,0.09531,0.08186,corporate,0.01365,0.04261,0.03330,0.11504,0.15693,0.14348,0.59012,0.53659,0.55112 -163,163,Overall,68.60454,17036588368688.33008,,0.02639,0.21219,0.19388,0.19917,Overall,0.24590,0.17668,0.19244,0.24590,0.17668,0.19244,0.04649,0.06401,0.05892,non-corporate,0.01143,0.01131,0.01134,0.07288,0.09040,0.08531,0.26827,0.24902,0.25413 +0,0,Accommodation,66.19342,251468621610.90228,7210,0.02163,0.24560,0.36256,0.32501,Accommodation and food services,-0.08609,0.37699,0.28639,0.16932,0.43393,0.38206,0.04788,0.09310,0.07859,corporate,0.00811,0.04040,0.03002,0.06951,0.11473,0.10022,0.27697,0.20591,0.22426 +1,1,Food services and drinking places,44.78708,170870560831.60550,7220,0.05189,0.26180,0.37321,0.33739,Accommodation and food services,0.01628,0.39818,0.31940,0.24761,0.45319,0.41065,0.05286,0.09637,0.08240,corporate,0.01309,0.04368,0.03384,0.10475,0.14826,0.13429,0.49522,0.41767,0.43807 +2,2,Administrative and support services,21.90018,106492097790.52309,5610,0.14921,0.32228,0.42544,0.39228,Administrative and waste management services,0.27243,0.48419,0.43517,0.44353,0.53134,0.51089,0.07147,0.11244,0.09929,corporate,0.03170,0.05975,0.05073,0.22068,0.26165,0.24849,0.75009,0.69149,0.70733 +3,3,Waste management and remediation services,30.79958,69464866307.19232,5620,0.04823,0.24975,0.35295,0.31973,Administrative and waste management services,-0.05790,0.35655,0.27133,0.19088,0.41536,0.36902,0.04915,0.09014,0.07696,corporate,0.00938,0.03744,0.02840,0.09738,0.13837,0.12519,0.69514,0.63573,0.65221 +4,4,Farms,56.63261,359601192716.54291,110C,0.03762,0.25002,0.35775,0.32319,"Agriculture, forestry, fishing, and hunting",-0.05614,0.36691,0.28127,0.19222,0.42478,0.37763,0.04924,0.09161,0.07803,corporate,0.00946,0.03892,0.02946,0.08685,0.12923,0.11564,0.44806,0.42252,0.42994 +5,5,"Forestry, fishing, and related activities",58.69871,34352705962.83144,113F,0.04638,0.25588,0.36581,0.33055,"Agriculture, forestry, fishing, and hunting",-0.01882,0.38361,0.30154,0.22077,0.43995,0.39518,0.05104,0.09410,0.08029,corporate,0.01127,0.04140,0.03173,0.09742,0.14048,0.12667,0.40452,0.37541,0.38351 +6,6,"Performing arts, spectator sports, museums, and related activities",26.45100,79922779339.33067,711A,0.07496,0.27027,0.37523,0.34149,"Arts, entertainment, and recreation",0.06249,0.40202,0.32966,0.28296,0.45668,0.41953,0.05547,0.09699,0.08366,corporate,0.01569,0.04430,0.03510,0.13042,0.17195,0.15862,0.72355,0.65386,0.67283 +7,7,"Amusements, gambling, and recreation industries",36.30666,103100531850.12755,7130,0.04042,0.24552,0.34965,0.31619,"Arts, entertainment, and recreation",-0.08670,0.34923,0.26086,0.16886,0.40871,0.35995,0.04785,0.08912,0.07587,corporate,0.00808,0.03643,0.02731,0.08827,0.12954,0.11629,0.62187,0.57785,0.59010 +8,8,Construction,50.93484,167674309864.19751,2300,0.06772,0.27098,0.37890,0.34428,Construction,0.06619,0.40891,0.33647,0.28579,0.46294,0.42543,0.05569,0.09812,0.08452,corporate,0.01591,0.04542,0.03596,0.12341,0.16585,0.15224,0.48106,0.44994,0.45861 +9,9,Educational services,34.22480,321852335173.16290,6100,0.04393,0.25529,0.36801,0.33163,Educational services,-0.02245,0.38800,0.30443,0.21799,0.44394,0.39768,0.05086,0.09477,0.08062,corporate,0.01109,0.04207,0.03206,0.09479,0.13870,0.12456,0.54996,0.42239,0.45540 +10,10,Credit intermediation and related activities,22.91675,742471769336.48633,5220,0.11423,0.30039,0.40630,0.37222,Finance and insurance,0.19674,0.45567,0.39772,0.38564,0.50542,0.47846,0.06474,0.10655,0.09311,corporate,0.02496,0.05385,0.04455,0.17896,0.22078,0.20734,0.71761,0.63722,0.65863 +11,11,"Securities, commodity contracts, and investments",54.61699,117288646632.75099,5230,0.05913,0.26862,0.38189,0.34551,Finance and insurance,0.05388,0.41440,0.33942,0.27637,0.46793,0.42798,0.05496,0.09904,0.08490,corporate,0.01519,0.04635,0.03633,0.11409,0.15818,0.14403,0.40029,0.33218,0.34993 +12,12,Insurance carriers and related activities,29.98132,242704259871.50098,5240,0.11475,0.30439,0.41396,0.37870,Finance and insurance,0.21171,0.46745,0.41035,0.39709,0.51613,0.48940,0.06597,0.10891,0.09511,corporate,0.02619,0.05621,0.04655,0.18071,0.22366,0.20985,0.62568,0.52977,0.55481 +13,13,"Funds, trusts, and other financial vehicles",54.39351,34266597921.94995,5250,0.02110,0.24495,0.36202,0.32434,Finance and insurance,-0.09067,0.37586,0.28454,0.16582,0.43291,0.38045,0.04768,0.09293,0.07838,corporate,0.00791,0.04023,0.02982,0.06877,0.11402,0.09948,0.36151,0.25453,0.28205 +14,14,Ambulatory health care services,27.21407,187676386626.35760,6210,0.07631,0.27533,0.38348,0.34864,Health care and social assistance,0.08810,0.41727,0.34684,0.30255,0.47053,0.43440,0.05702,0.09953,0.08586,corporate,0.01725,0.04683,0.03730,0.13334,0.17585,0.16217,0.65992,0.56431,0.58952 +15,15,Hospitals,33.81604,476870682069.54419,622H,0.05038,0.25881,0.37017,0.33426,Health care and social assistance,-0.00114,0.39227,0.31133,0.23429,0.44782,0.40366,0.05194,0.09544,0.08143,corporate,0.01217,0.04274,0.03287,0.10232,0.14582,0.13181,0.57024,0.45656,0.48615 +16,16,Nursing and residential care facilities,30.33509,45367688456.12007,6230,0.04907,0.25764,0.36836,0.33265,Health care and social assistance,-0.00813,0.38870,0.30712,0.22894,0.44458,0.40001,0.05158,0.09488,0.08094,corporate,0.01181,0.04218,0.03238,0.10065,0.14395,0.13001,0.60323,0.48560,0.51625 +17,17,Social assistance,34.19701,32821172821.68540,6240,0.05176,0.25965,0.36983,0.33434,Health care and social assistance,0.00383,0.39161,0.31155,0.23810,0.44722,0.40385,0.05220,0.09533,0.08146,corporate,0.01243,0.04263,0.03290,0.10396,0.14709,0.13322,0.58120,0.48063,0.50694 +18,18,Publishing industries (including software),25.89745,205722166040.08698,5110,0.14041,0.31739,0.42211,0.38852,Information,0.25678,0.47945,0.42850,0.43156,0.52703,0.50512,0.06997,0.11142,0.09813,corporate,0.03019,0.05872,0.04957,0.21038,0.25183,0.23854,0.73159,0.67231,0.68838 +19,19,Motion picture and sound recording industries,20.76147,275276618185.14124,5120,0.10233,0.29200,0.39549,0.36225,Information,0.16335,0.43813,0.37721,0.36010,0.48949,0.46070,0.06215,0.10323,0.09005,corporate,0.02238,0.05053,0.04148,0.16448,0.20556,0.19238,0.80491,0.74630,0.76315 +20,20,Broadcasting and telecommunications,17.19061,1290507877813.33496,5130,0.07035,0.26218,0.36157,0.32956,Information,0.01846,0.37494,0.29890,0.24928,0.43207,0.39289,0.05298,0.09279,0.07999,corporate,0.01321,0.04009,0.03143,0.12332,0.16314,0.15033,0.83403,0.77860,0.79445 +21,21,Information and data processing services,13.10574,118194411065.61374,5140,0.21016,0.35972,0.45763,0.42620,Information,0.37342,0.52594,0.48889,0.52077,0.56927,0.55741,0.08299,0.12235,0.10972,corporate,0.04322,0.06965,0.06116,0.29315,0.33250,0.31988,0.86497,0.82766,0.83795 +22,22,Management of companies and enterprises,44.32188,424413435043.75659,5500,0.07542,0.27864,0.39078,0.35472,Management of companies and enterprises,0.10409,0.43013,0.36075,0.31478,0.48222,0.44645,0.05804,0.10178,0.08773,corporate,0.01827,0.04908,0.03917,0.13346,0.17720,0.16315,0.48744,0.40143,0.42376 +23,23,"Food, beverage, and tobacco products",42.79805,382744557828.22290,311A,0.06063,0.26729,0.37540,0.34070,Manufacturing,0.04678,0.40234,0.32769,0.27094,0.45697,0.41782,0.05455,0.09705,0.08341,corporate,0.01478,0.04435,0.03485,0.11518,0.15767,0.14404,0.54128,0.48491,0.49999 +24,24,Textile mills and textile product mills,37.17402,39763433350.66293,313T,0.05621,0.26535,0.37499,0.33975,Manufacturing,0.03622,0.40157,0.32534,0.26287,0.45627,0.41579,0.05395,0.09692,0.08312,corporate,0.01418,0.04422,0.03456,0.11017,0.15313,0.13934,0.56978,0.48607,0.50810 +25,25,Apparel and leather and allied products,56.66281,23802489967.04707,315A,0.03920,0.25888,0.37139,0.33530,Manufacturing,-0.00071,0.39466,0.31404,0.23462,0.44999,0.40600,0.05196,0.09581,0.08175,corporate,0.01219,0.04312,0.03319,0.09116,0.13501,0.12095,0.38864,0.32604,0.34238 +26,26,Wood products,48.66972,45996624948.89117,3210,0.04991,0.26204,0.37271,0.33718,Manufacturing,0.01767,0.39720,0.31886,0.24868,0.45230,0.41018,0.05294,0.09622,0.08233,corporate,0.01316,0.04352,0.03377,0.10285,0.14613,0.13225,0.47175,0.40870,0.42535 +27,27,Paper products,32.30789,129541595783.70657,3220,0.07437,0.27266,0.37747,0.34380,Manufacturing,0.07478,0.40624,0.33531,0.29236,0.46051,0.42442,0.05620,0.09768,0.08437,corporate,0.01643,0.04498,0.03581,0.13057,0.17205,0.15874,0.65430,0.59873,0.61377 +28,28,Printing and related support activities,27.31311,49933189821.85918,3230,0.08738,0.28115,0.38555,0.35200,Manufacturing,0.11587,0.42098,0.35461,0.32379,0.47390,0.44113,0.05882,0.10017,0.08689,corporate,0.01904,0.04747,0.03833,0.14620,0.18755,0.17428,0.69690,0.63354,0.65055 +29,29,Petroleum and coal products,59.57314,329428164622.01349,3240,0.04248,0.25554,0.36623,0.33073,Manufacturing,-0.02088,0.38444,0.30205,0.21920,0.44071,0.39562,0.05094,0.09422,0.08035,corporate,0.01117,0.04153,0.03179,0.09341,0.13670,0.12283,0.38831,0.35372,0.36308 +30,30,Chemical products,25.25661,863500170455.36816,3250,0.08141,0.27070,0.36903,0.33751,Manufacturing,0.06474,0.39002,0.31969,0.28468,0.44577,0.41090,0.05560,0.09508,0.08243,corporate,0.01583,0.04239,0.03387,0.13701,0.17649,0.16384,0.75588,0.72774,0.73525 +31,31,Plastics and rubber products,35.77905,110331312312.70663,3260,0.07510,0.27443,0.37960,0.34584,Manufacturing,0.08367,0.41020,0.34022,0.29916,0.46411,0.42867,0.05675,0.09834,0.08500,corporate,0.01698,0.04564,0.03644,0.13185,0.17344,0.16010,0.62236,0.57173,0.58540 +32,32,Nonmetallic mineral products,49.77944,116582519996.16560,3270,0.05528,0.26321,0.37251,0.33744,Manufacturing,0.02431,0.39682,0.31951,0.25376,0.45195,0.41074,0.05330,0.09616,0.08241,corporate,0.01352,0.04346,0.03385,0.10858,0.15144,0.13769,0.47670,0.42937,0.44204 +33,33,Primary metals,39.02286,186378975799.42520,3310,0.06098,0.26703,0.37476,0.34016,Manufacturing,0.04536,0.40113,0.32636,0.26986,0.45587,0.41667,0.05447,0.09685,0.08325,corporate,0.01470,0.04415,0.03469,0.11545,0.15782,0.14422,0.57585,0.51384,0.53049 +34,34,Fabricated metal products,36.46005,185026333665.73004,3320,0.07307,0.27404,0.38020,0.34611,Manufacturing,0.08170,0.41131,0.34086,0.29765,0.46512,0.42923,0.05663,0.09852,0.08508,corporate,0.01685,0.04582,0.03652,0.12970,0.17160,0.15815,0.60956,0.55459,0.56944 +35,35,Machinery,38.17436,272319888397.28802,3330,0.08052,0.27824,0.38309,0.34945,Manufacturing,0.10221,0.41656,0.34873,0.31333,0.46989,0.43604,0.05792,0.09941,0.08611,corporate,0.01815,0.04671,0.03755,0.13844,0.17993,0.16663,0.60648,0.56249,0.57432 +36,36,Computer and electronic products,26.26678,503974938260.46338,3340,0.14992,0.32179,0.42317,0.39064,Manufacturing,0.27089,0.48096,0.43228,0.44235,0.52840,0.50839,0.07132,0.11174,0.09878,corporate,0.03155,0.05905,0.05022,0.22124,0.26166,0.24870,0.72480,0.67946,0.69152 +37,37,"Electrical equipment, appliances, and components",46.30998,97409347475.05879,3350,0.06863,0.27282,0.38022,0.34578,Manufacturing,0.07558,0.41135,0.34006,0.29297,0.46515,0.42853,0.05625,0.09853,0.08498,corporate,0.01648,0.04583,0.03642,0.12488,0.16716,0.15361,0.51869,0.47210,0.48441 +38,38,"Motor vehicles, bodies and trailers, and parts",35.25214,238664334578.38879,336M,0.10965,0.29782,0.40216,0.36868,Manufacturing,0.18680,0.44908,0.39060,0.37804,0.49944,0.47229,0.06394,0.10528,0.09202,corporate,0.02417,0.05258,0.04346,0.17360,0.21493,0.20168,0.63580,0.59122,0.60331 +39,39,Other transportation equipment,49.50530,222225359206.18329,336O,0.07733,0.28018,0.38772,0.35326,Manufacturing,0.11136,0.42482,0.35746,0.32034,0.47740,0.44360,0.05852,0.10084,0.08728,corporate,0.01874,0.04814,0.03872,0.13585,0.17817,0.16461,0.49018,0.45078,0.46122 +40,40,Furniture and related products,43.14781,27298970230.41120,3370,0.06489,0.27111,0.37997,0.34503,Manufacturing,0.06684,0.41089,0.33826,0.28629,0.46474,0.42698,0.05572,0.09845,0.08475,corporate,0.01595,0.04576,0.03618,0.12061,0.16334,0.14963,0.53103,0.46878,0.48523 +41,41,Miscellaneous manufacturing,39.11052,132809342156.77454,338A,0.08377,0.27993,0.38434,0.35086,Manufacturing,0.11020,0.41881,0.35198,0.31945,0.47194,0.43886,0.05844,0.09980,0.08654,corporate,0.01867,0.04710,0.03798,0.14221,0.18357,0.17031,0.60204,0.56147,0.57224 +42,42,Oil and gas extraction,8.69835,1206378685719.62354,2110,0.07337,0.25967,0.35438,0.32393,Mining,0.00393,0.35967,0.28336,0.23817,0.41820,0.37943,0.05220,0.09058,0.07825,corporate,0.01243,0.03788,0.02969,0.12557,0.16395,0.15162,0.91235,0.87902,0.88885 +43,43,"Mining, except oil and gas",31.00869,190223523014.26080,2120,0.05531,0.25566,0.35849,0.32544,Mining,-0.02014,0.36848,0.28761,0.21976,0.42621,0.38312,0.05097,0.09184,0.07872,corporate,0.01120,0.03914,0.03016,0.10629,0.14716,0.13404,0.67716,0.63290,0.64529 +44,44,Support activities for mining,14.80506,120225750256.28439,2130,0.09587,0.27955,0.37749,0.34600,Mining,0.10843,0.40627,0.34060,0.31810,0.46054,0.42900,0.05832,0.09769,0.08505,corporate,0.01855,0.04499,0.03648,0.15420,0.19356,0.18092,0.85450,0.81579,0.82711 +45,45,"Other services, except government",38.49273,227393671624.08221,8100,0.04298,0.25257,0.36270,0.32719,"Other services, except government",-0.03953,0.37728,0.29245,0.20493,0.43420,0.38730,0.05002,0.09314,0.07926,corporate,0.01025,0.04044,0.03070,0.09301,0.13612,0.12224,0.56670,0.46760,0.49387 +46,46,Legal services,28.84422,20028299847.23765,5411,0.10067,0.29388,0.40294,0.36784,"Professional, scientific, and technical services",0.17110,0.45035,0.38888,0.36603,0.50059,0.47081,0.06273,0.10552,0.09177,corporate,0.02296,0.05282,0.04320,0.16340,0.20619,0.19243,0.64225,0.54861,0.57325 +47,47,"Miscellaneous professional, scientific, and technical services",19.64137,249009155856.58878,5412,0.14708,0.31865,0.41953,0.38713,"Professional, scientific, and technical services",0.26088,0.47571,0.42601,0.43470,0.52363,0.50296,0.07035,0.11062,0.09770,corporate,0.03058,0.05793,0.04914,0.21743,0.25771,0.24478,0.78540,0.73566,0.74908 +48,48,Computer systems design and related services,22.08806,42903264705.68482,5415,0.20021,0.36135,0.46677,0.43289,"Professional, scientific, and technical services",0.37719,0.53660,0.49831,0.52366,0.57896,0.56557,0.08349,0.12516,0.11178,corporate,0.04372,0.07246,0.06322,0.28370,0.32537,0.31199,0.73802,0.67290,0.69036 +49,49,Real estate,84.50235,2545926908840.65576,5310,0.00522,0.23308,0.35077,0.31302,Real estate and rental and leasing,-0.18117,0.35173,0.25124,0.09660,0.41098,0.35162,0.04402,0.08947,0.07490,corporate,0.00425,0.03677,0.02634,0.04924,0.09469,0.08011,0.12593,0.09398,0.10250 +50,50,Rental and leasing services and lessors of intangible assets,12.60970,248115752512.01251,5320,0.13613,0.30770,0.40537,0.37398,Real estate and rental and leasing,0.22372,0.45420,0.40122,0.40627,0.50409,0.48149,0.06699,0.10627,0.09366,corporate,0.02721,0.05357,0.04510,0.20312,0.24240,0.22979,0.87555,0.84250,0.85229 +51,51,Retail trade,59.09235,1608593695005.15381,44RT,0.03643,0.25604,0.37037,0.33366,Retail trade,-0.01783,0.39267,0.30978,0.22152,0.44818,0.40231,0.05109,0.09550,0.08125,corporate,0.01132,0.04280,0.03269,0.08752,0.13193,0.11768,0.35371,0.28466,0.30264 +52,52,Air transportation,14.66966,190656359022.74890,4810,0.07385,0.26440,0.36350,0.33161,Transportation and warehousing,0.03098,0.37891,0.30439,0.25886,0.43568,0.39764,0.05366,0.09338,0.08062,corporate,0.01389,0.04069,0.03206,0.12752,0.16724,0.15447,0.82935,0.77485,0.78990 +53,53,Railroad transportation,14.87954,331352975210.21057,4820,0.03044,0.22896,0.32457,0.29376,Transportation and warehousing,-0.21621,0.28752,0.18692,0.06979,0.35264,0.29592,0.04276,0.08141,0.06897,corporate,0.00298,0.02871,0.02041,0.07319,0.11184,0.09941,0.87334,0.82943,0.84234 +54,54,Water transportation,17.09966,36714023796.14972,4830,0.06970,0.26210,0.36171,0.32965,Transportation and warehousing,0.01802,0.37523,0.29913,0.24894,0.43234,0.39309,0.05295,0.09283,0.08001,corporate,0.01318,0.04014,0.03145,0.12265,0.16254,0.14971,0.82474,0.77067,0.78603 +55,55,Truck transportation,20.61584,108471874449.86627,4840,0.12901,0.30643,0.40770,0.37517,Transportation and warehousing,0.21915,0.45787,0.40354,0.40278,0.50742,0.48350,0.06659,0.10698,0.09402,corporate,0.02682,0.05429,0.04546,0.19560,0.23599,0.22303,0.78057,0.73818,0.75012 +56,56,Transit and ground passenger transportation,25.85441,35034660346.86049,4850,0.08027,0.27688,0.38374,0.34933,Transportation and warehousing,0.09569,0.41774,0.34844,0.30835,0.47096,0.43579,0.05750,0.09961,0.08607,corporate,0.01773,0.04691,0.03751,0.13778,0.17989,0.16634,0.68289,0.59443,0.61789 +57,57,Pipeline transportation,8.41826,169678725932.06000,4860,0.05383,0.24532,0.33980,0.30941,Transportation and warehousing,-0.08807,0.32630,0.23997,0.16781,0.38788,0.34186,0.04779,0.08609,0.07379,corporate,0.00802,0.03339,0.02522,0.10162,0.13992,0.12761,0.91309,0.87662,0.88727 +58,58,Other transportation and support activities,23.59937,110872018726.73232,487S,0.06367,0.25928,0.36081,0.32813,Transportation and warehousing,0.00166,0.37336,0.29500,0.23644,0.43064,0.38951,0.05209,0.09256,0.07955,corporate,0.01232,0.03986,0.03098,0.11575,0.15622,0.14321,0.75550,0.69719,0.71336 +59,59,Warehousing and storage,40.27303,33575803410.77195,4930,0.04356,0.25651,0.36920,0.33291,Transportation and warehousing,-0.01497,0.39037,0.30781,0.22371,0.44609,0.40060,0.05123,0.09514,0.08102,corporate,0.01146,0.04244,0.03246,0.09479,0.13870,0.12458,0.51179,0.40614,0.43361 +60,60,Utilities,15.06813,2043225324419.22656,2200,0.04186,0.23873,0.33574,0.30447,Utilities,-0.13626,0.31639,0.22399,0.13095,0.37888,0.32803,0.04576,0.08484,0.07227,corporate,0.00599,0.03215,0.02371,0.08763,0.12671,0.11413,0.86705,0.81474,0.82999 +61,61,Wholesale trade,62.56787,973137443870.90881,4200,0.05422,0.26927,0.38111,0.34527,Wholesale trade,0.05730,0.41297,0.33884,0.27899,0.46663,0.42748,0.05516,0.09880,0.08482,corporate,0.01539,0.04610,0.03626,0.10938,0.15303,0.13904,0.34924,0.31058,0.32086 +62,62,Accommodation,57.79905,321835229078.19275,7210,0.02700,0.21562,0.19814,0.20318,Accommodation and food services,0.26271,0.19236,0.20840,0.26271,0.19236,0.20840,0.04755,0.06525,0.06011,non-corporate,0.01249,0.01255,0.01253,0.07455,0.09225,0.08711,0.30942,0.26926,0.27976 +63,63,Food services and drinking places,37.79544,131618330778.79922,7220,0.05846,0.20827,0.18803,0.19386,Accommodation and food services,0.23301,0.15979,0.17645,0.23301,0.15979,0.17645,0.04571,0.06272,0.05778,non-corporate,0.01065,0.01002,0.01019,0.10417,0.12118,0.11624,0.52264,0.48287,0.49336 +64,64,Administrative and support services,22.90398,87779837154.60233,5610,0.14729,0.19961,0.17608,0.18287,Administrative and waste management services,0.19483,0.11768,0.13527,0.19483,0.11768,0.13527,0.04354,0.05973,0.05503,non-corporate,0.00848,0.00703,0.00744,0.19083,0.20702,0.20231,0.71756,0.69102,0.69812 +65,65,Waste management and remediation services,28.00786,45442362954.18396,5620,0.05017,0.19681,0.17292,0.17981,Administrative and waste management services,0.18165,0.10588,0.12305,0.18165,0.10588,0.12305,0.04284,0.05894,0.05426,non-corporate,0.00778,0.00624,0.00668,0.09301,0.10911,0.10443,0.69927,0.67065,0.67839 +66,66,Farms,61.51678,695254770987.64246,110C,0.03338,0.20707,0.18615,0.19220,"Agriculture, forestry, fishing, and hunting",0.22793,0.15341,0.17046,0.22793,0.15341,0.17046,0.04541,0.06225,0.05736,non-corporate,0.01035,0.00955,0.00978,0.07879,0.09563,0.09074,0.38917,0.37852,0.38147 +67,67,"Forestry, fishing, and related activities",80.96268,182890160759.96515,113F,0.02138,0.21251,0.19421,0.19950,"Agriculture, forestry, fishing, and hunting",0.25040,0.17999,0.19609,0.25040,0.17999,0.19609,0.04677,0.06427,0.05919,non-corporate,0.01171,0.01157,0.01161,0.06815,0.08564,0.08057,0.18127,0.17506,0.17675 +68,68,"Performing arts, spectator sports, museums, and related activities",24.88765,85913620169.51553,711A,0.07655,0.19960,0.17666,0.18328,"Arts, entertainment, and recreation",0.19477,0.11985,0.13688,0.19477,0.11985,0.13688,0.04354,0.05987,0.05513,non-corporate,0.00848,0.00718,0.00755,0.12009,0.13642,0.13168,0.71094,0.67821,0.68698 +69,69,"Amusements, gambling, and recreation industries",35.67483,103963170327.32812,7130,0.04082,0.19900,0.17574,0.18246,"Arts, entertainment, and recreation",0.19199,0.11645,0.13364,0.19199,0.11645,0.13364,0.04339,0.05964,0.05492,non-corporate,0.00833,0.00695,0.00734,0.08421,0.10046,0.09574,0.61085,0.59028,0.59586 +70,70,Construction,61.58594,416883328406.94965,2300,0.05302,0.20793,0.18762,0.19349,Construction,0.23158,0.15839,0.17512,0.23158,0.15839,0.17512,0.04562,0.06262,0.05768,non-corporate,0.01057,0.00992,0.01010,0.09865,0.11564,0.11071,0.36722,0.35594,0.35900 +71,71,Educational services,34.08224,223504365062.32428,6100,0.04403,0.20874,0.18960,0.19509,Educational services,0.23500,0.16501,0.18081,0.23500,0.16501,0.18081,0.04583,0.06311,0.05808,non-corporate,0.01077,0.01041,0.01050,0.08985,0.10714,0.10211,0.49888,0.44096,0.45612 +72,72,Credit intermediation and related activities,29.58426,75859556179.73862,5220,0.10435,0.20439,0.18255,0.18885,Finance and insurance,0.21637,0.14097,0.15815,0.21637,0.14097,0.15815,0.04474,0.06135,0.05652,non-corporate,0.00968,0.00865,0.00894,0.14908,0.16569,0.16087,0.62615,0.59261,0.60151 +73,73,"Securities, commodity contracts, and investments",68.67047,178435565511.13712,5230,0.04082,0.21370,0.19552,0.20077,Finance and insurance,0.25516,0.18416,0.20038,0.25516,0.18416,0.20038,0.04707,0.06459,0.05951,non-corporate,0.01201,0.01190,0.01192,0.08789,0.10542,0.10033,0.25721,0.23587,0.24147 +74,74,Insurance carriers and related activities,34.29784,22117554581.34229,5240,0.10767,0.20803,0.18765,0.19353,Finance and insurance,0.23202,0.15850,0.17524,0.23202,0.15850,0.17524,0.04565,0.06262,0.05769,non-corporate,0.01059,0.00993,0.01011,0.15332,0.17030,0.16536,0.55055,0.50968,0.52042 +75,75,"Funds, trusts, and other financial vehicles",58.69939,32975922704.02256,5250,0.01910,0.21586,0.19875,0.20368,Finance and insurance,0.26361,0.19426,0.21003,0.26361,0.19426,0.21003,0.04761,0.06540,0.06023,non-corporate,0.01255,0.01270,0.01265,0.06671,0.08451,0.07934,0.28760,0.24378,0.25522 +76,76,Ambulatory health care services,26.88893,165185547973.71588,6210,0.07665,0.20478,0.18347,0.18961,Health care and social assistance,0.21808,0.14421,0.16098,0.21808,0.14421,0.16098,0.04483,0.06158,0.05671,non-corporate,0.00978,0.00888,0.00913,0.12149,0.13823,0.13337,0.62414,0.58040,0.59196 +77,77,Hospitals,33.25928,468740246235.20782,622H,0.05080,0.20732,0.18751,0.19320,Health care and social assistance,0.22900,0.15804,0.17408,0.22900,0.15804,0.17408,0.04547,0.06259,0.05761,non-corporate,0.01041,0.00989,0.01003,0.09627,0.11339,0.10841,0.52837,0.47635,0.49001 +78,78,Nursing and residential care facilities,30.33509,44969311542.03897,6230,0.04907,0.20695,0.18688,0.19264,Health care and social assistance,0.22742,0.15588,0.17206,0.22742,0.15588,0.17206,0.04538,0.06243,0.05747,non-corporate,0.01032,0.00973,0.00989,0.09445,0.11150,0.10654,0.55537,0.50198,0.51600 +79,79,Social assistance,36.92941,33500693280.97236,6240,0.04961,0.20729,0.18711,0.19292,Health care and social assistance,0.22887,0.15669,0.17307,0.22887,0.15669,0.17307,0.04546,0.06249,0.05754,non-corporate,0.01041,0.00979,0.00996,0.09507,0.11210,0.10715,0.51797,0.47416,0.48569 +80,80,Publishing industries (including software),33.44919,10531454693.98520,5110,0.12610,0.20294,0.18067,0.18712,Information,0.20997,0.13436,0.15165,0.20997,0.13436,0.15165,0.04437,0.06088,0.05609,non-corporate,0.00932,0.00818,0.00851,0.17048,0.18698,0.18219,0.63602,0.61157,0.61812 +81,81,Motion picture and sound recording industries,22.07241,32648570358.87631,5120,0.10064,0.20218,0.17881,0.18556,Information,0.20654,0.12767,0.14572,0.20654,0.12767,0.14572,0.04418,0.06041,0.05570,non-corporate,0.00913,0.00771,0.00812,0.14482,0.16105,0.15634,0.76996,0.74297,0.75039 +82,82,Broadcasting and telecommunications,19.11518,114376654728.14319,5130,0.06871,0.19408,0.16893,0.17619,Information,0.16842,0.09046,0.10816,0.16842,0.09046,0.10816,0.04216,0.05794,0.05335,non-corporate,0.00710,0.00524,0.00577,0.11087,0.12665,0.12206,0.79422,0.76892,0.77587 +83,83,Information and data processing services,17.05502,9622690881.11265,5140,0.20060,0.19389,0.16825,0.17567,Information,0.16745,0.08778,0.10598,0.16745,0.08778,0.10598,0.04211,0.05777,0.05322,non-corporate,0.00705,0.00507,0.00564,0.24271,0.25837,0.25383,0.81179,0.79536,0.79979 +84,84,Management of companies and enterprises,43.27634,90403382551.37852,5500,0.07684,0.20993,0.19040,0.19603,Management of companies and enterprises,0.23991,0.16763,0.18409,0.23991,0.16763,0.18409,0.04612,0.06331,0.05832,non-corporate,0.01107,0.01061,0.01074,0.12296,0.14015,0.13516,0.46085,0.42112,0.43154 +85,85,"Food, beverage, and tobacco products",48.30489,75311838089.07274,311A,0.05479,0.20859,0.18772,0.19375,Manufacturing,0.23434,0.15874,0.17605,0.23434,0.15874,0.17605,0.04579,0.06264,0.05775,non-corporate,0.01073,0.00994,0.01017,0.10058,0.11743,0.11254,0.46885,0.44555,0.45175 +86,86,Textile mills and textile product mills,40.68702,7854948624.36963,313T,0.05307,0.20961,0.18924,0.19512,Manufacturing,0.23862,0.16381,0.18090,0.23862,0.16381,0.18090,0.04604,0.06302,0.05809,non-corporate,0.01099,0.01032,0.01051,0.09912,0.11609,0.11116,0.50601,0.47003,0.47953 +87,87,Apparel and leather and allied products,57.59360,5338390836.40291,315A,0.03836,0.21405,0.19489,0.20043,Manufacturing,0.25656,0.18216,0.19921,0.25656,0.18216,0.19921,0.04715,0.06444,0.05942,non-corporate,0.01210,0.01174,0.01184,0.08551,0.10279,0.09778,0.35541,0.32759,0.33490 +88,88,Wood products,49.75998,13100141973.21793,3210,0.04885,0.21034,0.19029,0.19608,Manufacturing,0.24162,0.16727,0.18428,0.24162,0.16727,0.18428,0.04623,0.06328,0.05833,non-corporate,0.01117,0.01059,0.01075,0.09508,0.11214,0.10718,0.43687,0.40875,0.41618 +89,89,Paper products,35.24665,18990987477.75871,3220,0.07114,0.20318,0.18059,0.18712,Manufacturing,0.21102,0.13408,0.15166,0.21102,0.13408,0.15166,0.04443,0.06086,0.05609,non-corporate,0.00938,0.00816,0.00851,0.11558,0.13200,0.12723,0.60489,0.58049,0.58702 +90,90,Printing and related support activities,29.64849,7652157518.59406,3230,0.08458,0.20237,0.17953,0.18613,Manufacturing,0.20743,0.13028,0.14790,0.20743,0.13028,0.14790,0.04423,0.06059,0.05584,non-corporate,0.00917,0.00789,0.00826,0.12881,0.14517,0.14042,0.65012,0.62204,0.62952 +91,91,Petroleum and coal products,57.31094,36804972259.27284,3240,0.04485,0.20884,0.18846,0.19436,Manufacturing,0.23541,0.16122,0.17820,0.23541,0.16122,0.17820,0.04585,0.06283,0.05790,non-corporate,0.01079,0.01013,0.01032,0.09071,0.10768,0.10276,0.39561,0.37884,0.38333 +92,92,Chemical products,28.24831,155956627360.72098,3250,0.07815,0.19477,0.16926,0.17665,Manufacturing,0.17177,0.09175,0.11008,0.17177,0.09175,0.11008,0.04233,0.05802,0.05347,non-corporate,0.00727,0.00532,0.00589,0.12048,0.13617,0.13162,0.71483,0.70248,0.70576 +93,93,Plastics and rubber products,41.70295,18759113941.02066,3260,0.06817,0.20514,0.18302,0.18942,Manufacturing,0.21963,0.14263,0.16026,0.21963,0.14263,0.16026,0.04492,0.06147,0.05666,non-corporate,0.00987,0.00877,0.00908,0.11310,0.12964,0.12484,0.54675,0.52567,0.53130 +94,94,Nonmetallic mineral products,50.65769,17930326841.17467,3270,0.05431,0.20793,0.18720,0.19320,Manufacturing,0.23160,0.15699,0.17406,0.23160,0.15699,0.17406,0.04562,0.06251,0.05761,non-corporate,0.01057,0.00981,0.01003,0.09994,0.11683,0.11192,0.44983,0.42855,0.43422 +95,95,Primary metals,43.39133,31384946425.55616,3310,0.05661,0.20779,0.18665,0.19275,Manufacturing,0.23098,0.15511,0.17246,0.23098,0.15511,0.17246,0.04559,0.06237,0.05750,non-corporate,0.01053,0.00967,0.00992,0.10219,0.11898,0.11411,0.51170,0.48534,0.49237 +96,96,Fabricated metal products,40.57109,33868174282.69432,3320,0.06834,0.20582,0.18397,0.19028,Manufacturing,0.22257,0.14592,0.16346,0.22257,0.14592,0.16346,0.04509,0.06170,0.05688,non-corporate,0.01004,0.00900,0.00930,0.11344,0.13005,0.12522,0.54977,0.52619,0.53249 +97,97,Machinery,45.59719,44994036766.73473,3330,0.07085,0.20551,0.18343,0.18982,Manufacturing,0.22124,0.14406,0.16175,0.22124,0.14406,0.16175,0.04502,0.06157,0.05676,non-corporate,0.00996,0.00887,0.00918,0.11587,0.13242,0.12762,0.51830,0.50056,0.50529 +98,98,Computer and electronic products,27.75599,67202508361.14622,3340,0.14689,0.19821,0.17391,0.18094,Manufacturing,0.18831,0.10961,0.12761,0.18831,0.10961,0.12761,0.04319,0.05919,0.05454,non-corporate,0.00813,0.00649,0.00696,0.19008,0.20608,0.20143,0.69236,0.67208,0.67746 +99,99,"Electrical equipment, appliances, and components",51.19822,13457767002.27841,3350,0.06238,0.20813,0.18695,0.19307,Manufacturing,0.23241,0.15612,0.17362,0.23241,0.15612,0.17362,0.04567,0.06245,0.05758,non-corporate,0.01061,0.00975,0.01000,0.10805,0.12483,0.11996,0.45442,0.43512,0.44022 +100,100,"Motor vehicles, bodies and trailers, and parts",39.59103,37968439962.33989,336M,0.10231,0.20368,0.18104,0.18759,Manufacturing,0.21322,0.13567,0.15343,0.21322,0.13567,0.15343,0.04456,0.06097,0.05621,non-corporate,0.00950,0.00827,0.00862,0.14686,0.16328,0.15851,0.57678,0.55768,0.56279 +101,101,Other transportation equipment,55.71089,37605705698.82620,336O,0.06783,0.20942,0.18847,0.19454,Manufacturing,0.23782,0.16126,0.17885,0.23782,0.16126,0.17885,0.04600,0.06283,0.05795,non-corporate,0.01094,0.01013,0.01036,0.11383,0.13066,0.12577,0.41605,0.40029,0.40447 +102,102,Furniture and related products,46.12348,3398491339.24600,3370,0.06149,0.20901,0.18827,0.19427,Manufacturing,0.23612,0.16059,0.17788,0.23612,0.16059,0.17788,0.04589,0.06278,0.05788,non-corporate,0.01084,0.01008,0.01030,0.10738,0.12427,0.11937,0.47949,0.45260,0.45971 +103,103,Miscellaneous manufacturing,44.10283,21983133311.41251,338A,0.07690,0.20424,0.18173,0.18824,Manufacturing,0.21571,0.13810,0.15590,0.21571,0.13810,0.15590,0.04470,0.06114,0.05637,non-corporate,0.00964,0.00844,0.00879,0.12160,0.13804,0.13327,0.53774,0.52074,0.52525 +104,104,Oil and gas extraction,9.26036,250060628349.92041,2110,0.07292,0.18773,0.16026,0.16820,Mining,0.13583,0.05506,0.07343,0.13583,0.05506,0.07343,0.04057,0.05577,0.05135,non-corporate,0.00551,0.00307,0.00377,0.11348,0.12868,0.12427,0.89455,0.87896,0.88330 +105,105,"Mining, except oil and gas",36.47161,42556976403.16281,2120,0.05093,0.19969,0.17650,0.18320,Mining,0.19522,0.11924,0.13655,0.19522,0.11924,0.13655,0.04356,0.05983,0.05511,non-corporate,0.00850,0.00713,0.00753,0.09449,0.11077,0.10604,0.60787,0.58897,0.59411 +106,106,Support activities for mining,15.74712,25044165259.30807,2130,0.09481,0.19265,0.16672,0.17421,Mining,0.16128,0.08166,0.09979,0.16128,0.08166,0.09979,0.04180,0.05738,0.05286,non-corporate,0.00674,0.00469,0.00527,0.13661,0.15220,0.14767,0.83088,0.81289,0.81788 +107,107,"Other services, except government",36.31857,434659499245.39331,8100,0.04450,0.20549,0.18500,0.19089,"Other services, except government",0.22117,0.14950,0.16570,0.22117,0.14950,0.16570,0.04501,0.06196,0.05703,non-corporate,0.00996,0.00926,0.00945,0.08952,0.10646,0.10154,0.54554,0.49872,0.51112 +108,108,Legal services,29.93984,24694671280.08685,5411,0.09912,0.20678,0.18597,0.19196,"Professional, scientific, and technical services",0.22670,0.15281,0.16961,0.22670,0.15281,0.16961,0.04533,0.06220,0.05730,non-corporate,0.01028,0.00951,0.00972,0.14445,0.16132,0.15642,0.59512,0.55315,0.56423 +109,109,"Miscellaneous professional, scientific, and technical services",19.84614,250145961935.08807,5412,0.14671,0.19650,0.17184,0.17897,"Professional, scientific, and technical services",0.18019,0.10174,0.11964,0.18019,0.10174,0.11964,0.04276,0.05867,0.05405,non-corporate,0.00771,0.00597,0.00647,0.18947,0.20537,0.20075,0.76374,0.74099,0.74707 +110,110,Computer systems design and related services,22.66047,34987856978.92335,5415,0.19874,0.20331,0.18078,0.18728,"Professional, scientific, and technical services",0.21160,0.13473,0.15228,0.21160,0.13473,0.15228,0.04447,0.06090,0.05613,non-corporate,0.00941,0.00821,0.00855,0.24320,0.25964,0.25487,0.70686,0.67727,0.68515 +111,111,Real estate,84.96022,10194539931205.20117,5310,0.00516,0.21539,0.19845,0.20335,Real estate and rental and leasing,0.26180,0.19333,0.20895,0.26180,0.19333,0.20895,0.04749,0.06533,0.06015,non-corporate,0.01243,0.01263,0.01257,0.05265,0.07049,0.06531,0.10995,0.09578,0.09954 +112,112,Rental and leasing services and lessors of intangible assets,14.26025,187611316433.88910,5320,0.13356,0.19294,0.16694,0.17445,Real estate and rental and leasing,0.16272,0.08255,0.10083,0.16272,0.08255,0.10083,0.04187,0.05744,0.05292,non-corporate,0.00681,0.00474,0.00534,0.17543,0.19100,0.18648,0.84714,0.83185,0.83612 +113,113,Retail trade,68.40422,599107994988.67297,44RT,0.02814,0.21681,0.19878,0.20399,Retail trade,0.26727,0.19432,0.21105,0.26727,0.19432,0.21105,0.04784,0.06541,0.06031,non-corporate,0.01279,0.01271,0.01273,0.07598,0.09355,0.08845,0.25148,0.22728,0.23364 +114,114,Air transportation,14.96155,47796425035.43796,4810,0.07360,0.19323,0.16777,0.17512,Transportation and warehousing,0.16419,0.08585,0.10365,0.16419,0.08585,0.10365,0.04194,0.05765,0.05308,non-corporate,0.00689,0.00495,0.00550,0.11554,0.13125,0.12669,0.80538,0.78031,0.78708 +115,115,Railroad transportation,15.14169,83039763589.18028,4820,0.03034,0.18725,0.16019,0.16799,Transportation and warehousing,0.13324,0.05474,0.07248,0.13324,0.05474,0.07248,0.04045,0.05575,0.05130,non-corporate,0.00539,0.00305,0.00372,0.07079,0.08609,0.08165,0.85453,0.83391,0.83965 +116,116,Water transportation,17.50642,9217710064.52573,4830,0.06936,0.19400,0.16879,0.17606,Transportation and warehousing,0.16799,0.08988,0.10761,0.16799,0.08988,0.10761,0.04214,0.05790,0.05332,non-corporate,0.00708,0.00520,0.00574,0.11149,0.12726,0.12268,0.80026,0.77520,0.78206 +117,117,Truck transportation,19.74733,37317255861.67974,4840,0.13042,0.19697,0.17236,0.17947,Transportation and warehousing,0.18242,0.10373,0.12169,0.18242,0.10373,0.12169,0.04288,0.05880,0.05417,non-corporate,0.00782,0.00610,0.00659,0.17330,0.18922,0.18459,0.77270,0.75281,0.75823 +118,118,Transit and ground passenger transportation,25.50512,10233125938.31284,4850,0.08065,0.20322,0.18130,0.18762,Transportation and warehousing,0.21120,0.13659,0.15353,0.21120,0.13659,0.15353,0.04444,0.06104,0.05621,non-corporate,0.00939,0.00834,0.00863,0.12510,0.14169,0.13687,0.65042,0.60987,0.62061 +119,119,Pipeline transportation,8.49334,33708295455.20280,4860,0.05378,0.18686,0.15923,0.16721,Transportation and warehousing,0.13117,0.05066,0.06894,0.13117,0.05066,0.06894,0.04035,0.05551,0.05111,non-corporate,0.00529,0.00281,0.00352,0.09413,0.10929,0.10489,0.89882,0.88171,0.88646 +120,120,Other transportation and support activities,23.54062,34235605978.81979,487S,0.06371,0.19582,0.17145,0.17847,Transportation and warehousing,0.17689,0.10023,0.11762,0.17689,0.10023,0.11762,0.04259,0.05857,0.05393,non-corporate,0.00753,0.00587,0.00634,0.10631,0.12228,0.11764,0.73348,0.70648,0.71379 +121,121,Warehousing and storage,38.87182,15189477206.55462,4930,0.04458,0.21002,0.19078,0.19631,Transportation and warehousing,0.24030,0.16888,0.18508,0.24030,0.16888,0.18508,0.04615,0.06341,0.05839,non-corporate,0.01109,0.01071,0.01081,0.09073,0.10799,0.10297,0.47974,0.43069,0.44356 +122,122,Utilities,16.13995,110848021471.90637,2200,0.04133,0.18963,0.16332,0.17090,Utilities,0.14583,0.06784,0.08547,0.14583,0.06784,0.08547,0.04104,0.05653,0.05203,non-corporate,0.00599,0.00384,0.00445,0.08238,0.09787,0.09336,0.83696,0.81267,0.81940 +123,123,Wholesale trade,74.90337,387578651034.04889,4200,0.03635,0.21684,0.19825,0.20363,Wholesale trade,0.26740,0.19270,0.20989,0.26740,0.19270,0.20989,0.04785,0.06528,0.06022,non-corporate,0.01280,0.01258,0.01264,0.08421,0.10163,0.09658,0.22376,0.21193,0.21507 +124,124,Accommodation and food services,57.53282,422339182442.50781,,0.03387,0.25215,0.36687,0.33002,Accommodation and food services,-0.04221,0.38574,0.30013,0.20288,0.44188,0.39395,0.04989,0.09442,0.08013,corporate,0.01012,0.04172,0.03157,0.08377,0.12829,0.11400,0.36527,0.29158,0.31076 +125,125,Administrative and waste management services,25.41352,175956964097.71542,,0.10934,0.29365,0.39682,0.36364,Administrative and waste management services,0.17013,0.44036,0.38015,0.36529,0.49152,0.46325,0.06266,0.10364,0.09047,corporate,0.02289,0.05094,0.04191,0.17200,0.21298,0.19981,0.72840,0.66947,0.68557 +126,126,"Agriculture, forestry, fishing, and hunting",56.81278,393953898679.37433,,0.03838,0.25053,0.35845,0.32383,"Agriculture, forestry, fishing, and hunting",-0.05278,0.36840,0.28309,0.19480,0.42614,0.37920,0.04939,0.09183,0.07822,corporate,0.00962,0.03913,0.02966,0.08778,0.13021,0.11661,0.44426,0.41841,0.42589 +127,127,"Arts, entertainment, and recreation",32.00288,183023311189.45822,,0.05550,0.25632,0.36082,0.32724,"Arts, entertainment, and recreation",-0.01609,0.37339,0.29257,0.22286,0.43066,0.38741,0.05118,0.09256,0.07927,corporate,0.01141,0.03986,0.03071,0.10668,0.14806,0.13477,0.66627,0.61104,0.62623 +130,130,Finance and insurance,28.64482,1136731273762.68823,,0.10585,0.29630,0.40408,0.36940,Finance and insurance,0.18079,0.45216,0.39207,0.37344,0.50224,0.47357,0.06348,0.10587,0.09225,corporate,0.02370,0.05317,0.04369,0.16932,0.21172,0.19809,0.65451,0.57127,0.59326 +131,131,Health care and social assistance,31.95205,742735929973.70728,,0.05691,0.26295,0.37341,0.33780,Health care and social assistance,0.02283,0.39855,0.32042,0.25262,0.45352,0.41153,0.05321,0.09643,0.08252,corporate,0.01344,0.04373,0.03396,0.11013,0.15335,0.13943,0.59540,0.48662,0.51503 +132,132,Information,18.40316,1889701073104.17749,,0.09138,0.27863,0.37911,0.34679,Information,0.10408,0.40929,0.34247,0.31477,0.46329,0.43062,0.05804,0.09819,0.08529,corporate,0.01827,0.04549,0.03673,0.14942,0.18956,0.17667,0.82057,0.76539,0.78106 +133,133,Management of companies and enterprises,44.32188,424413435043.75659,,0.07542,0.27864,0.39078,0.35472,Management of companies and enterprises,0.10409,0.43013,0.36075,0.31478,0.48222,0.44645,0.05804,0.10178,0.08773,corporate,0.01827,0.04908,0.03917,0.13346,0.17720,0.16315,0.48744,0.40143,0.42376 +134,134,Manufacturing,36.92289,3957731548856.36719,,0.08262,0.27850,0.38298,0.34946,Manufacturing,0.10346,0.41636,0.34874,0.31429,0.46971,0.43605,0.05800,0.09938,0.08611,corporate,0.01823,0.04668,0.03755,0.14062,0.18200,0.16873,0.61687,0.57289,0.58467 +135,135,Mining,11.98029,1516827958990.16870,,0.07289,0.26074,0.35673,0.32587,Mining,0.01019,0.36473,0.28878,0.24296,0.42280,0.38413,0.05254,0.09130,0.07885,corporate,0.01276,0.03860,0.03029,0.12542,0.16419,0.15174,0.87827,0.84315,0.85341 +136,136,"Other services, except government",38.49273,227393671624.08221,,0.04298,0.25257,0.36270,0.32719,"Other services, except government",-0.03953,0.37728,0.29245,0.20493,0.43420,0.38730,0.05002,0.09314,0.07926,corporate,0.01025,0.04044,0.03070,0.09301,0.13612,0.12224,0.56670,0.46760,0.49387 +137,137,"Professional, scientific, and technical services",20.56875,311940720409.51123,,0.15141,0.32293,0.42496,0.39219,"Professional, scientific, and technical services",0.27447,0.48351,0.43501,0.44509,0.53072,0.51075,0.07167,0.11230,0.09926,corporate,0.03190,0.05960,0.05070,0.22308,0.26370,0.25067,0.76970,0.71502,0.72972 +138,138,Real estate and rental and leasing,78.11816,2794042661352.66748,,0.01684,0.23971,0.35562,0.31843,Real estate and rental and leasing,-0.12888,0.36236,0.26754,0.13659,0.42064,0.36573,0.04606,0.09096,0.07656,corporate,0.00629,0.03826,0.02800,0.06291,0.10780,0.09341,0.19250,0.16045,0.16908 +140,140,Transportation and warehousing,16.62231,1016356440895.40027,,0.06020,0.25367,0.35210,0.32041,Transportation and warehousing,-0.03254,0.35466,0.27333,0.21027,0.41365,0.37075,0.05036,0.08988,0.07717,corporate,0.01059,0.03718,0.02861,0.11056,0.15008,0.13738,0.82870,0.77870,0.79282 +143,143,Accommodation and food services,51.99285,453453559856.99200,,0.03613,0.21349,0.19521,0.20048,Accommodation and food services,0.25433,0.18317,0.19938,0.25433,0.18317,0.19938,0.04701,0.06452,0.05943,non-corporate,0.01196,0.01182,0.01185,0.08315,0.10065,0.09556,0.37131,0.33126,0.34176 +144,144,Administrative and waste management services,24.64493,133222200108.78630,,0.11416,0.19865,0.17500,0.18183,Administrative and waste management services,0.19038,0.11369,0.13114,0.19038,0.11369,0.13114,0.04330,0.05946,0.05476,non-corporate,0.00824,0.00676,0.00718,0.15746,0.17362,0.16893,0.71132,0.68407,0.69139 +145,145,"Agriculture, forestry, fishing, and hunting",65.56676,878144931747.60754,,0.03088,0.20820,0.18783,0.19372,"Agriculture, forestry, fishing, and hunting",0.23272,0.15909,0.17593,0.23272,0.15909,0.17593,0.04569,0.06267,0.05774,non-corporate,0.01063,0.00997,0.01016,0.07657,0.09355,0.08862,0.34587,0.33615,0.33883 +146,146,"Arts, entertainment, and recreation",30.79395,189876790496.84369,,0.05699,0.19927,0.17616,0.18283,"Arts, entertainment, and recreation",0.19325,0.11799,0.13511,0.19325,0.11799,0.13511,0.04345,0.05975,0.05502,non-corporate,0.00840,0.00705,0.00743,0.10044,0.11673,0.11200,0.65614,0.63006,0.63709 +149,149,Finance and insurance,55.56686,309388598976.24060,,0.05886,0.21124,0.19212,0.19764,Finance and insurance,0.24529,0.17327,0.18970,0.24529,0.17327,0.18970,0.04645,0.06374,0.05872,non-corporate,0.01139,0.01104,0.01114,0.10531,0.12260,0.11758,0.37188,0.34375,0.35116 +150,150,Health care and social assistance,31.77017,712395799031.93506,,0.05663,0.20671,0.18652,0.19232,Health care and social assistance,0.22639,0.15467,0.17091,0.22639,0.15467,0.17091,0.04532,0.06234,0.05739,non-corporate,0.01026,0.00964,0.00981,0.10195,0.11897,0.11402,0.55180,0.50199,0.51509 +151,151,Information,20.47709,167179370662.11737,,0.08615,0.19621,0.17156,0.17868,Information,0.17879,0.10067,0.11845,0.17879,0.10067,0.11845,0.04269,0.05860,0.05398,non-corporate,0.00763,0.00590,0.00639,0.12884,0.14475,0.14013,0.78052,0.75546,0.76233 +152,152,Management of companies and enterprises,43.27634,90403382551.37852,,0.07684,0.20993,0.19040,0.19603,Management of companies and enterprises,0.23991,0.16763,0.18409,0.23991,0.16763,0.18409,0.04612,0.06331,0.05832,non-corporate,0.01107,0.01061,0.01074,0.12296,0.14015,0.13516,0.46085,0.42112,0.43154 +153,153,Manufacturing,40.15757,649562708071.83960,,0.07667,0.20316,0.18047,0.18703,Manufacturing,0.21095,0.13363,0.15134,0.21095,0.13363,0.15134,0.04443,0.06083,0.05607,non-corporate,0.00937,0.00813,0.00849,0.12110,0.13750,0.13274,0.56865,0.54958,0.55466 +154,154,Mining,13.41725,317661770012.39130,,0.07170,0.18972,0.16295,0.17068,Mining,0.14631,0.06631,0.08451,0.14631,0.06631,0.08451,0.04107,0.05644,0.05197,non-corporate,0.00601,0.00374,0.00439,0.11276,0.12814,0.12367,0.85112,0.83490,0.83940 +155,155,"Other services, except government",36.31857,434659499245.39331,,0.04450,0.20549,0.18500,0.19089,"Other services, except government",0.22117,0.14950,0.16570,0.22117,0.14950,0.16570,0.04501,0.06196,0.05703,non-corporate,0.00996,0.00926,0.00945,0.08952,0.10646,0.10154,0.54554,0.49872,0.51112 +156,156,"Professional, scientific, and technical services",20.96846,309828490194.09827,,0.14879,0.19809,0.17398,0.18094,"Professional, scientific, and technical services",0.18774,0.10985,0.12762,0.18774,0.10985,0.12762,0.04316,0.05920,0.05454,non-corporate,0.00810,0.00650,0.00696,0.19195,0.20799,0.20333,0.74388,0.71883,0.72551 +157,157,Real estate and rental and leasing,83.68263,10382151247639.08984,,0.00748,0.21498,0.19788,0.20283,Real estate and rental and leasing,0.26022,0.19157,0.20723,0.26022,0.19157,0.20723,0.04739,0.06519,0.06002,non-corporate,0.01233,0.01249,0.01244,0.05487,0.07266,0.06750,0.12327,0.10908,0.11285 +159,159,Transportation and warehousing,17.78260,270737659129.71378,,0.06294,0.19279,0.16731,0.17466,Transportation and warehousing,0.16198,0.08405,0.10174,0.16198,0.08405,0.10174,0.04183,0.05753,0.05297,non-corporate,0.00678,0.00484,0.00539,0.10477,0.12048,0.11591,0.79419,0.77002,0.77660 +162,162,Overall,38.79367,20307631178754.23438,,0.06162,0.26362,0.36976,0.33565,Overall,0.02659,0.39146,0.31494,0.25550,0.44708,0.40678,0.05342,0.09531,0.08186,corporate,0.01365,0.04261,0.03330,0.11504,0.15693,0.14348,0.59012,0.53659,0.55112 +163,163,Overall,68.60454,17036588368688.33008,,0.02639,0.21153,0.19289,0.19827,Overall,0.24647,0.17575,0.19187,0.24647,0.17575,0.19187,0.04652,0.06393,0.05888,non-corporate,0.01147,0.01124,0.01130,0.07291,0.09033,0.08527,0.26817,0.24902,0.25411 From e0914b285f60540a52c9195411e33dda25bafd1d Mon Sep 17 00:00:00 2001 From: jdebacker Date: Sun, 15 Sep 2024 18:02:13 -0400 Subject: [PATCH 09/10] update expected test results for new taxcalc --- ccc/tests/run_ccc_asset_output.json | 2 +- ccc/tests/run_ccc_industry_output.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ccc/tests/run_ccc_asset_output.json b/ccc/tests/run_ccc_asset_output.json index 90dfb803..d8c3cedb 100644 --- a/ccc/tests/run_ccc_asset_output.json +++ b/ccc/tests/run_ccc_asset_output.json @@ -1 +1 @@ -{"index":{"0":0,"1":1,"2":2,"3":3,"4":4,"5":5,"6":6,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"26":26,"27":27,"28":28,"29":29,"30":30,"31":31,"32":32,"33":33,"34":34,"35":35,"36":36,"37":37,"38":38,"39":39,"40":40,"41":41,"42":42,"43":43,"44":44,"45":45,"46":46,"47":47,"48":48,"49":49,"50":50,"51":51,"52":52,"53":53,"54":54,"55":55,"56":56,"57":57,"58":58,"59":59,"60":60,"61":61,"62":62,"63":63,"64":64,"65":65,"66":66,"67":67,"68":68,"69":69,"70":70,"71":71,"72":72,"73":73,"74":74,"75":75,"76":76,"77":77,"78":78,"79":79,"80":80,"81":81,"82":82,"83":83,"84":84,"85":85,"86":86,"87":87,"88":88,"89":89,"90":90,"91":91,"92":92,"93":93,"94":94,"95":95,"96":96,"97":97,"98":98,"99":99,"100":100,"101":101,"102":102,"103":103,"104":104,"105":105,"106":106,"107":107,"108":108,"109":109,"110":110,"111":111,"112":112,"113":113,"114":114,"115":115,"116":116,"117":117,"118":118,"119":119,"120":120,"121":121,"122":122,"123":123,"124":124,"125":125,"126":126,"127":127,"128":128,"129":129,"130":130,"131":131,"132":132,"133":133,"134":134,"135":135,"136":136,"137":137,"138":138,"139":139,"140":140,"141":141,"142":142,"143":143,"144":144,"145":145,"146":146,"147":147,"148":148,"149":149,"150":150,"151":151,"152":152,"153":153,"154":154,"155":155,"156":156,"157":157,"158":158,"159":159,"160":160,"161":161,"162":162,"163":163,"164":164,"165":165,"166":166,"167":167,"168":168,"169":169,"170":170,"171":171,"172":172,"173":173,"174":174,"175":175,"176":176,"177":177,"178":178,"179":179,"180":180,"181":181,"182":182,"183":183,"184":184,"185":185,"186":186,"187":187,"188":188,"189":189,"190":190,"191":191,"192":192,"193":193,"194":194,"195":195,"196":196,"197":197,"198":198,"199":199,"200":200,"201":201,"204":204,"205":205,"206":206,"207":207,"208":208,"209":209,"210":210,"211":211,"212":212,"213":213,"214":214,"215":215,"218":218,"219":219,"220":220,"221":221,"222":222,"223":223,"224":224,"225":225,"226":226,"230":230,"231":231,"235":235,"236":236,"237":237},"Y":{"0":3.0,"1":3.0,"2":5.0,"3":5.0,"4":5.0,"5":5.0,"6":5.0,"7":5.0,"8":5.0,"9":5.0,"10":7.0,"11":7.0,"12":5.0,"13":7.0,"14":5.0,"15":7.0,"16":7.0,"17":7.0,"18":5.0,"19":7.0,"20":5.0,"21":7.0,"22":7.0,"23":7.0,"24":5.0,"25":7.0,"26":7.0,"27":15.0,"28":7.0,"29":5.0,"30":7.0,"31":5.0,"32":7.0,"33":15.0,"34":7.0,"35":5.0,"36":5.0,"37":5.0,"38":5.0,"39":10.0,"40":7.0,"41":15.0,"42":15.0,"43":15.0,"44":15.0,"45":15.0,"46":3.0,"47":5.0,"48":5.0,"49":5.0,"50":5.0,"51":5.0,"52":5.0,"53":5.0,"54":7.0,"55":7.0,"56":3.0,"57":5.0,"58":3.0,"59":5.0,"60":5.0,"61":3.0,"62":3.0,"63":7.0,"64":100.0,"65":100.0,"66":5.0,"67":7.0,"68":15.0,"69":5.0,"70":5.0,"71":39.0,"72":39.0,"73":39.0,"74":39.0,"75":39.0,"76":39.0,"77":39.0,"78":39.0,"79":39.0,"80":39.0,"81":39.0,"82":39.0,"83":39.0,"84":39.0,"85":39.0,"86":7.0,"87":39.0,"88":5.0,"89":20.0,"90":20.0,"91":20.0,"92":15.0,"93":7.0,"94":20.0,"95":7.0,"96":15.0,"97":5.0,"98":27.5,"99":3.0,"100":3.0,"101":5.0,"102":5.0,"103":5.0,"104":5.0,"105":5.0,"106":5.0,"107":5.0,"108":5.0,"109":7.0,"110":7.0,"111":5.0,"112":7.0,"113":5.0,"114":7.0,"115":7.0,"116":7.0,"117":5.0,"118":7.0,"119":5.0,"120":7.0,"121":7.0,"122":7.0,"123":5.0,"124":7.0,"125":7.0,"126":15.0,"127":7.0,"128":5.0,"129":7.0,"130":5.0,"131":7.0,"132":15.0,"133":7.0,"134":5.0,"135":5.0,"136":5.0,"137":5.0,"138":10.0,"139":7.0,"140":15.0,"141":15.0,"142":15.0,"143":15.0,"144":15.0,"145":3.0,"146":5.0,"147":5.0,"148":5.0,"149":5.0,"150":5.0,"151":5.0,"152":5.0,"153":7.0,"154":7.0,"155":3.0,"156":5.0,"157":3.0,"158":5.0,"159":5.0,"160":3.0,"161":3.0,"162":7.0,"163":100.0,"164":100.0,"165":5.0,"166":7.0,"167":15.0,"168":5.0,"169":5.0,"170":39.0,"171":39.0,"172":39.0,"173":39.0,"174":39.0,"175":39.0,"176":39.0,"177":39.0,"178":39.0,"179":39.0,"180":39.0,"181":39.0,"182":39.0,"183":39.0,"184":39.0,"185":7.0,"186":39.0,"187":5.0,"188":20.0,"189":20.0,"190":20.0,"191":15.0,"192":7.0,"193":20.0,"194":7.0,"195":15.0,"196":5.0,"197":27.5,"198":3.6471765317,"199":7.0,"200":6.9237794589,"201":7.3940296213,"204":7.7398736381,"205":39.0,"206":6.8906484402,"207":7.0,"208":9.94296719,"209":13.8795082047,"210":27.5,"211":6.5264402695,"212":3.7597024469,"213":7.0,"214":6.9283412137,"215":6.3324138404,"218":6.7302544262,"219":39.0,"220":6.8013194151,"221":7.0,"222":7.3569378484,"223":14.3449285894,"224":27.5,"225":5.6704198433,"226":7.2683713253,"230":25.7008772825,"231":6.5156950627,"235":31.0743963765,"236":38.7936686872,"237":68.6045439892},"asset_name":{"0":"Prepackaged software","1":"Custom software","2":"Mainframes","3":"PCs","4":"DASDs","5":"Printers","6":"Terminals","7":"Tape drives","8":"Storage devices","9":"System integrators","10":"Special industrial machinery","11":"General industrial equipment","12":"Office and accounting equipment","13":"Communications","14":"Photocopy and related equipment","15":"Nonelectro medical instruments","16":"Electro medical instruments","17":"Nonmedical instruments","18":"Household furniture","19":"Other furniture","20":"Household appliances","21":"Service industry machinery","22":"Other electrical","23":"Other","24":"Nuclear fuel","25":"Other fabricated metals","26":"Metalworking machinery","27":"Electric transmission and distribution","28":"Farm tractors","29":"Construction tractors","30":"Other agricultural machinery","31":"Other construction machinery","32":"Mining and oilfield machinery","33":"Steam engines","34":"Internal combustion engines","35":"Light trucks (including utility vehicles)","36":"Other trucks, buses and truck trailers","37":"Autos","38":"Aircraft","39":"Ships and boats","40":"Railroad equipment","41":"Theatrical movies","42":"Long-lived television programs","43":"Books","44":"Music","45":"Other entertainment originals","46":"Own account software","47":"Pharmaceutical and medicine manufacturing","48":"Chemical manufacturing, ex. pharma and med","49":"Computers and peripheral equipment manufacturing","50":"Communications equipment manufacturing","51":"Semiconductor and other component manufacturing","52":"Navigational and other instruments manufacturing","53":"Other computer and electronic manufacturing, n.e.c.","54":"Motor vehicles and parts manufacturing","55":"Aerospace products and parts manufacturing","56":"Software publishers","57":"Financial and real estate services","58":"Computer systems design and related services","59":"Scientific research and development services","60":"All other nonmanufacturing, n.e.c.","61":"Private universities and colleges","62":"Other nonprofit institutions","63":"Other manufacturing","64":"Inventories","65":"Land","66":"Petroleum and natural gas","67":"Mining","68":"Communication","69":"Gas","70":"Petroleum pipelines","71":"Religious","72":"Educational and vocational","73":"Hospitals","74":"Special care","75":"Lodging","76":"Air transportation","77":"Other transportation","78":"Warehouses","79":"Other commercial","80":"Multimerchandise shopping","81":"Food and beverage establishments","82":"Manufacturing","83":"Public safety","84":"Office","85":"Medical buildings","86":"Amusement and recreation","87":"Local transit structures","88":"Other land transportation","89":"Farm","90":"Water supply","91":"Sewage and waste disposal","92":"Highway and conservation and development","93":"Mobile structures","94":"Other railroad","95":"Track replacement","96":"Electric","97":"Wind and solar","98":"Residential","99":"Prepackaged software","100":"Custom software","101":"Mainframes","102":"PCs","103":"DASDs","104":"Printers","105":"Terminals","106":"Tape drives","107":"Storage devices","108":"System integrators","109":"Special industrial machinery","110":"General industrial equipment","111":"Office and accounting equipment","112":"Communications","113":"Photocopy and related equipment","114":"Nonelectro medical instruments","115":"Electro medical instruments","116":"Nonmedical instruments","117":"Household furniture","118":"Other furniture","119":"Household appliances","120":"Service industry machinery","121":"Other electrical","122":"Other","123":"Nuclear fuel","124":"Other fabricated metals","125":"Metalworking machinery","126":"Electric transmission and distribution","127":"Farm tractors","128":"Construction tractors","129":"Other agricultural machinery","130":"Other construction machinery","131":"Mining and oilfield machinery","132":"Steam engines","133":"Internal combustion engines","134":"Light trucks (including utility vehicles)","135":"Other trucks, buses and truck trailers","136":"Autos","137":"Aircraft","138":"Ships and boats","139":"Railroad equipment","140":"Theatrical movies","141":"Long-lived television programs","142":"Books","143":"Music","144":"Other entertainment originals","145":"Own account software","146":"Pharmaceutical and medicine manufacturing","147":"Chemical manufacturing, ex. pharma and med","148":"Computers and peripheral equipment manufacturing","149":"Communications equipment manufacturing","150":"Semiconductor and other component manufacturing","151":"Navigational and other instruments manufacturing","152":"Other computer and electronic manufacturing, n.e.c.","153":"Motor vehicles and parts manufacturing","154":"Aerospace products and parts manufacturing","155":"Software publishers","156":"Financial and real estate services","157":"Computer systems design and related services","158":"Scientific research and development services","159":"All other nonmanufacturing, n.e.c.","160":"Private universities and colleges","161":"Other nonprofit institutions","162":"Other manufacturing","163":"Inventories","164":"Land","165":"Petroleum and natural gas","166":"Mining","167":"Communication","168":"Gas","169":"Petroleum pipelines","170":"Religious","171":"Educational and vocational","172":"Hospitals","173":"Special care","174":"Lodging","175":"Air transportation","176":"Other transportation","177":"Warehouses","178":"Other commercial","179":"Multimerchandise shopping","180":"Food and beverage establishments","181":"Manufacturing","182":"Public safety","183":"Office","184":"Medical buildings","185":"Amusement and recreation","186":"Local transit structures","187":"Other land transportation","188":"Farm","189":"Water supply","190":"Sewage and waste disposal","191":"Highway and conservation and development","192":"Mobile structures","193":"Other railroad","194":"Track replacement","195":"Electric","196":"Wind and solar","197":"Residential","198":"Computers and Software","199":"Industrial Machinery","200":"Instruments and Communications Equipment","201":"Intellectual Property","204":"Mining and Drilling Structures","205":"Nonresidential Buildings","206":"Office and Residential Equipment","207":"Other Equipment","208":"Other Industrial Equipment","209":"Other Structures","210":"Residential Buildings","211":"Transportation Equipment","212":"Computers and Software","213":"Industrial Machinery","214":"Instruments and Communications Equipment","215":"Intellectual Property","218":"Mining and Drilling Structures","219":"Nonresidential Buildings","220":"Office and Residential Equipment","221":"Other Equipment","222":"Other Industrial Equipment","223":"Other Structures","224":"Residential Buildings","225":"Transportation Equipment","226":"Equipment","230":"Structures","231":"Equipment","235":"Structures","236":"Overall","237":"Overall"},"assets":{"0":72268924051.9082336426,"1":197240164682.6705322266,"2":17413293619.1456260681,"3":53550810952.9387893677,"4":0.0,"5":9260043911.0563106537,"6":12396994618.6385192871,"7":0.0,"8":7998988409.0723161697,"9":28310184525.0971412659,"10":277678587239.9380493164,"11":476419502165.166015625,"12":7268611167.0018863678,"13":498335724804.0314331055,"14":25020946205.429813385,"15":133227504585.5826721191,"16":75049828222.7880249023,"17":108363933020.2487182617,"18":8900871527.196844101,"19":201600171017.508026123,"20":2759304252.314576149,"21":100661650547.2224731445,"22":16821590672.8629779816,"23":219586535058.3394165039,"24":6455272413.3341999054,"25":117546642592.4276123047,"26":218890188223.7576293945,"27":423453356310.3550415039,"28":24563500689.0174293518,"29":9895536358.9214134216,"30":46750113836.6425476074,"31":123582273311.1085968018,"32":84858812348.8264923096,"33":91645013950.1812438965,"34":12363020746.6312923431,"35":167619978534.9744567871,"36":119548128283.1802215576,"37":136239832216.6345977783,"38":265993981320.4024658203,"39":62839620239.5145492554,"40":109045484545.8026428223,"41":157833135207.6000061035,"42":144610873940.8399963379,"43":67646468506.2269973755,"44":15406510045.2719993591,"45":15413496806.9536018372,"46":198787829234.9338378906,"47":396355667406.7600097656,"48":54399224281.8699951172,"49":9567048384.5297012329,"50":38393784818.3699951172,"51":83580996525.5449981689,"52":30814085766.7084999084,"53":1636224416.5211501122,"54":39313793397.9000015259,"55":33211530575.7000007629,"56":20657269549.4479980469,"57":6097212063.9197349548,"58":6318822870.5699996948,"59":22814623102.4029998779,"60":86239268420.7419128418,"61":8714364638.9400005341,"62":36718605375.196182251,"63":207322515563.4512939453,"64":1540550422351.1750488281,"65":3586506468628.5483398438,"66":1033008886591.3449707031,"67":82930242550.8560638428,"68":578746604536.4505615234,"69":365538319906.6795043945,"70":112623061581.4062805176,"71":100591058771.6496276855,"72":282731611173.25390625,"73":321465607211.4967651367,"74":70115662530.6401977539,"75":171809464720.120513916,"76":26676130902.0607643127,"77":3546598618.338347435,"78":281416771190.75390625,"79":342925648724.1744995117,"80":424453104849.459777832,"81":177715537880.9696655273,"82":1098167248468.8033447266,"83":15488160357.0082950592,"84":1125363275874.3352050781,"85":108684928850.3025817871,"86":163173271952.9853820801,"87":9253082151.44272995,"88":7047759108.8189249039,"89":109520310583.217010498,"90":41285680278.0343322754,"91":37655287429.6246185303,"92":22901934534.0979652405,"93":4708544169.5246629715,"94":135810301223.6219177246,"95":166460169103.5604858398,"96":1052404941676.5113525391,"97":119300186300.6925354004,"98":333776621894.0,"99":22158075947.241394043,"100":60800835314.359916687,"101":6190706381.1830024719,"102":20612189046.2605934143,"103":0.0,"104":3876956088.9794268608,"105":5141005380.9487981796,"106":0.0,"107":3192011590.9239988327,"108":11800815475.2877197266,"109":56031412759.6957244873,"110":114662497838.1790161133,"111":2542388832.9689154625,"112":102468863895.3965454102,"113":10079053795.0076828003,"114":111916495412.2192993164,"115":65668171777.0585479736,"116":59590066982.740776062,"117":8579128473.702334404,"118":97670828983.2067718506,"119":2193695747.8015151024,"120":66122349452.248878479,"121":3542409326.7197475433,"122":106207464937.4668884277,"123":357727587.1562304497,"124":36269357406.687461853,"125":40483811779.6103668213,"126":41257755573.2831878662,"127":30621499311.6047172546,"128":3719463640.4489221573,"129":80549886162.6989898682,"130":98513726689.5267944336,"131":18092187649.2234191895,"132":6902986050.143081665,"133":1555979253.6081163883,"134":77738021463.510848999,"135":52902871715.1460266113,"136":47539167782.3870010376,"137":86223598874.8378753662,"138":16387379759.8056716919,"139":29964515454.0211639404,"140":18409754458.466255188,"141":14909126060.4083938599,"142":14215531494.3494510651,"143":8069489954.0988121033,"144":11674503193.3987407684,"145":63396170766.9682846069,"146":68720410526.408996582,"147":9431775719.3292999268,"148":1249951615.1470029354,"149":5016215180.9325504303,"150":10920003474.8311214447,"151":4025914234.826259613,"152":213775583.6347059011,"153":5835206602.1280002594,"154":4929469423.5754003525,"155":949730450.6009244919,"156":1540787936.3055326939,"157":5115177129.213716507,"158":22860376897.4707717896,"159":33402731579.6361465454,"160":6064635361.6499996185,"161":44957394625.3166046143,"162":31261484438.196723938,"163":903249577643.8208007812,"164":9085892640842.869140625,"165":212937915737.6286010742,"166":17079757447.8750705719,"167":54922065479.1844787598,"168":31446708032.7703895569,"169":20777938418.3121185303,"170":198115941229.3613891602,"171":212838725537.274597168,"172":335377700162.3952026367,"173":75652337468.1600189209,"174":333097535279.5237426758,"175":6522869098.3693552017,"176":1255401381.7010712624,"177":129247228808.9672241211,"178":167854351277.2262573242,"179":242344895152.7531738281,"180":142536462115.3678588867,"181":312763751528.7327880859,"182":10144839642.5393390656,"183":595428227069.28125,"184":100075071146.9970550537,"185":164426728047.0282592773,"186":2713917848.414937973,"187":4956240890.7279005051,"188":210718689415.6276245117,"189":17351319722.4940376282,"190":18704712570.114112854,"191":14651065465.7115840912,"192":3986455830.48832798,"193":35355401894.7446212769,"194":41586561300.5069122314,"195":70225622111.3388519287,"196":13828813701.9312324524,"197":1251223923087.8999023438,"198":398439404770.5274658203,"199":754098089405.1041259766,"200":847266548005.0825195312,"201":1681853350900.4008789062,"204":2172847115166.7373046875,"205":4551150810123.3671875,"206":213260346797.0194396973,"207":337069776278.4248657227,"208":1055995696084.3908691406,"209":1869521468512.1320800781,"210":333776621894.0,"211":965295059837.3214111328,"212":133772595225.1848449707,"213":170693910597.8747558594,"214":352265040695.391784668,"215":387169616706.893737793,"218":337164385115.7706298828,"219":2863255336898.6499023438,"220":108443653204.7106323242,"221":175872223716.435546875,"222":349865415800.2400512695,"223":598505528799.1284179688,"224":1251223923087.8999023438,"225":319214520353.4597167969,"226":4571424921177.87109375,"230":8927296015696.234375,"231":1610127359593.2971191406,"235":5050149173901.4501953125,"236":20307631178754.234375,"237":17036588368688.330078125},"bea_asset_code":{"0":"ENS1","1":"ENS2","2":"EP1A","3":"EP1B","4":"EP1C","5":"EP1D","6":"EP1E","7":"EP1F","8":"EP1G","9":"EP1H","10":"EI40","11":"EI50","12":"EP12","13":"EP20","14":"EP31","15":"EP34","16":"EP35","17":"EP36","18":"EO11","19":"EO12","20":"EO71","21":"EO60","22":"EO72","23":"EO80","24":"EI11","25":"EI12","26":"EI30","27":"EI60","28":"EO21","29":"EO22","30":"EO30","31":"EO40","32":"EO50","33":"EI21","34":"EI22","35":"ET11","36":"ET12","37":"ET20","38":"ET30","39":"ET40","40":"ET50","41":"AE10","42":"AE20","43":"AE30","44":"AE40","45":"AE50","46":"ENS3","47":"RD11","48":"RD12","49":"RD21","50":"RD22","51":"RD23","52":"RD24","53":"RD25","54":"RD31","55":"RD32","56":"RD40","57":"RD50","58":"RD60","59":"RD70","60":"RD80","61":"RD91","62":"RD92","63":"RDOM","64":"INV","65":"LAND","66":"SM01","67":"SM02","68":"SU20","69":"SU40","70":"SU50","71":"SB10","72":"SB20","73":"SB31","74":"SB32","75":"SB41","76":"SB43","77":"SB45","78":"SC01","79":"SC02","80":"SC03","81":"SC04","82":"SI00","83":"SO03","84":"SOO1","85":"SOO2","86":"SB42","87":"SB44","88":"SB46","89":"SN00","90":"SO01","91":"SO02","92":"SO04","93":"SOMO","94":"SU11","95":"SU12","96":"SU30","97":"SU60","98":"RES","99":"ENS1","100":"ENS2","101":"EP1A","102":"EP1B","103":"EP1C","104":"EP1D","105":"EP1E","106":"EP1F","107":"EP1G","108":"EP1H","109":"EI40","110":"EI50","111":"EP12","112":"EP20","113":"EP31","114":"EP34","115":"EP35","116":"EP36","117":"EO11","118":"EO12","119":"EO71","120":"EO60","121":"EO72","122":"EO80","123":"EI11","124":"EI12","125":"EI30","126":"EI60","127":"EO21","128":"EO22","129":"EO30","130":"EO40","131":"EO50","132":"EI21","133":"EI22","134":"ET11","135":"ET12","136":"ET20","137":"ET30","138":"ET40","139":"ET50","140":"AE10","141":"AE20","142":"AE30","143":"AE40","144":"AE50","145":"ENS3","146":"RD11","147":"RD12","148":"RD21","149":"RD22","150":"RD23","151":"RD24","152":"RD25","153":"RD31","154":"RD32","155":"RD40","156":"RD50","157":"RD60","158":"RD70","159":"RD80","160":"RD91","161":"RD92","162":"RDOM","163":"INV","164":"LAND","165":"SM01","166":"SM02","167":"SU20","168":"SU40","169":"SU50","170":"SB10","171":"SB20","172":"SB31","173":"SB32","174":"SB41","175":"SB43","176":"SB45","177":"SC01","178":"SC02","179":"SC03","180":"SC04","181":"SI00","182":"SO03","183":"SOO1","184":"SOO2","185":"SB42","186":"SB44","187":"SB46","188":"SN00","189":"SO01","190":"SO02","191":"SO04","192":"SOMO","193":"SU11","194":"SU12","195":"SU30","196":"SU60","197":"RES","198":null,"199":null,"200":null,"201":null,"204":null,"205":null,"206":null,"207":null,"208":null,"209":null,"210":null,"211":null,"212":null,"213":null,"214":null,"215":null,"218":null,"219":null,"220":null,"221":null,"222":null,"223":null,"224":null,"225":null,"226":null,"230":null,"231":null,"235":null,"236":null,"237":null},"delta":{"0":0.55,"1":0.33,"2":0.4633,"3":0.4633,"4":0.4633,"5":0.4633,"6":0.4633,"7":0.4633,"8":0.4633,"9":0.4633,"10":0.1031,"11":0.1072,"12":0.3119,"13":0.1129,"14":0.18,"15":0.135,"16":0.135,"17":0.135,"18":0.1375,"19":0.1179,"20":0.165,"21":0.1528,"22":0.1834,"23":0.1473,"24":0.25,"25":0.0917,"26":0.1225,"27":0.05,"28":0.1452,"29":0.1633,"30":0.1179,"31":0.155,"32":0.15,"33":0.0516,"34":0.2063,"35":0.1725,"36":0.1725,"37":0.3333,"38":0.0859,"39":0.0611,"40":0.0589,"41":0.093,"42":0.168,"43":0.121,"44":0.267,"45":0.109,"46":0.33,"47":0.1,"48":0.16,"49":0.4,"50":0.27,"51":0.25,"52":0.29,"53":0.4,"54":0.31,"55":0.22,"56":0.22,"57":0.16,"58":0.36,"59":0.16,"60":0.16,"61":0.16,"62":0.16,"63":0.16,"64":0.0,"65":0.0,"66":0.0751,"67":0.045,"68":0.0237,"69":0.0751,"70":0.0237,"71":0.0188,"72":0.0188,"73":0.0188,"74":0.0188,"75":0.0281,"76":0.0237,"77":0.0237,"78":0.0225,"79":0.0262,"80":0.0262,"81":0.0262,"82":0.0314,"83":0.0237,"84":0.0247,"85":0.0247,"86":0.03,"87":0.0237,"88":0.0237,"89":0.0239,"90":0.0225,"91":0.0225,"92":0.0225,"93":0.0556,"94":0.0176,"95":0.0249,"96":0.0211,"97":0.0303,"98":0.01631376,"99":0.55,"100":0.33,"101":0.4633,"102":0.4633,"103":0.4633,"104":0.4633,"105":0.4633,"106":0.4633,"107":0.4633,"108":0.4633,"109":0.1031,"110":0.1072,"111":0.3119,"112":0.1129,"113":0.18,"114":0.135,"115":0.135,"116":0.135,"117":0.1375,"118":0.1179,"119":0.165,"120":0.1528,"121":0.1834,"122":0.1473,"123":0.25,"124":0.0917,"125":0.1225,"126":0.05,"127":0.1452,"128":0.1633,"129":0.1179,"130":0.155,"131":0.15,"132":0.0516,"133":0.2063,"134":0.1725,"135":0.1725,"136":0.3333,"137":0.0859,"138":0.0611,"139":0.0589,"140":0.093,"141":0.168,"142":0.121,"143":0.267,"144":0.109,"145":0.33,"146":0.1,"147":0.16,"148":0.4,"149":0.27,"150":0.25,"151":0.29,"152":0.4,"153":0.31,"154":0.22,"155":0.22,"156":0.16,"157":0.36,"158":0.16,"159":0.16,"160":0.16,"161":0.16,"162":0.16,"163":0.0,"164":0.0,"165":0.0751,"166":0.045,"167":0.0237,"168":0.0751,"169":0.0237,"170":0.0188,"171":0.0188,"172":0.0188,"173":0.0188,"174":0.0281,"175":0.0237,"176":0.0237,"177":0.0225,"178":0.0262,"179":0.0262,"180":0.0262,"181":0.0314,"182":0.0237,"183":0.0247,"184":0.0247,"185":0.03,"186":0.0237,"187":0.0237,"188":0.0239,"189":0.0225,"190":0.0225,"191":0.0225,"192":0.0556,"193":0.0176,"194":0.0249,"195":0.0211,"196":0.0303,"197":0.01631376,"198":0.4130379075,"199":0.1056902731,"200":0.1248479886,"201":0.1764414085,"204":0.057596421,"205":0.0256058705,"206":0.1193274586,"207":0.1507440896,"208":0.0974985367,"209":0.0228978292,"210":0.01631376,"211":0.1402014543,"212":0.4170749406,"213":0.1058541477,"214":0.1311357054,"215":0.1856060632,"218":0.0620349163,"219":0.0243176295,"220":0.1204033645,"221":0.150094949,"222":0.122822669,"223":0.0251824776,"224":0.01631376,"225":0.1542233644,"226":0.1453822047,"230":0.0324776427,"231":0.1563308849,"235":0.0249552164,"236":0.0616167355,"237":0.0263903323},"eatr_d":{"0":0.104244,"1":0.104244,"2":0.104244,"3":0.104244,"4":0.104244,"5":0.104244,"6":0.104244,"7":0.104244,"8":0.104244,"9":0.104244,"10":0.104244,"11":0.104244,"12":0.104244,"13":0.104244,"14":0.104244,"15":0.104244,"16":0.104244,"17":0.104244,"18":0.104244,"19":0.104244,"20":0.104244,"21":0.104244,"22":0.104244,"23":0.104244,"24":0.104244,"25":0.104244,"26":0.104244,"27":0.104244,"28":0.104244,"29":0.104244,"30":0.104244,"31":0.104244,"32":0.104244,"33":0.104244,"34":0.104244,"35":0.104244,"36":0.104244,"37":0.104244,"38":0.104244,"39":0.104244,"40":0.104244,"41":0.104244,"42":0.104244,"43":0.104244,"44":0.104244,"45":0.104244,"46":0.104244,"47":0.104244,"48":0.104244,"49":0.104244,"50":0.104244,"51":0.104244,"52":0.104244,"53":0.104244,"54":0.104244,"55":0.104244,"56":0.104244,"57":0.104244,"58":0.104244,"59":0.104244,"60":0.104244,"61":0.104244,"62":0.104244,"63":0.104244,"64":0.1491903836,"65":0.1386,"66":0.104244,"67":0.104244,"68":0.104244,"69":0.104244,"70":0.104244,"71":0.1310030438,"72":0.1356969865,"73":0.1356969865,"74":0.1356969865,"75":0.1413746413,"76":0.138688439,"77":0.138688439,"78":0.1379558384,"79":0.1402146903,"80":0.1402146903,"81":0.1402146903,"82":0.143389293,"83":0.138688439,"84":0.1392989396,"85":0.1392989396,"86":0.104244,"87":0.138688439,"88":0.104244,"89":0.104244,"90":0.104244,"91":0.104244,"92":0.104244,"93":0.104244,"94":0.104244,"95":0.104244,"96":0.104244,"97":0.104244,"98":0.1288332639,"99":0.186913389,"100":0.186913389,"101":0.186913389,"102":0.186913389,"103":0.186913389,"104":0.186913389,"105":0.186913389,"106":0.186913389,"107":0.186913389,"108":0.186913389,"109":0.186913389,"110":0.186913389,"111":0.186913389,"112":0.186913389,"113":0.186913389,"114":0.186913389,"115":0.186913389,"116":0.186913389,"117":0.186913389,"118":0.186913389,"119":0.186913389,"120":0.186913389,"121":0.186913389,"122":0.186913389,"123":0.186913389,"124":0.186913389,"125":0.186913389,"126":0.186913389,"127":0.186913389,"128":0.186913389,"129":0.186913389,"130":0.186913389,"131":0.186913389,"132":0.186913389,"133":0.186913389,"134":0.186913389,"135":0.186913389,"136":0.186913389,"137":0.186913389,"138":0.186913389,"139":0.186913389,"140":0.186913389,"141":0.186913389,"142":0.186913389,"143":0.186913389,"144":0.186913389,"145":0.186913389,"146":0.186913389,"147":0.186913389,"148":0.186913389,"149":0.186913389,"150":0.186913389,"151":0.186913389,"152":0.186913389,"153":0.186913389,"154":0.186913389,"155":0.186913389,"156":0.186913389,"157":0.186913389,"158":0.186913389,"159":0.186913389,"160":0.186913389,"161":0.186913389,"162":0.186913389,"163":0.2311407974,"164":0.2208040001,"165":0.186913389,"166":0.186913389,"167":0.186913389,"168":0.186913389,"169":0.186913389,"170":0.2133015517,"171":0.2179230958,"172":0.2179230958,"173":0.2179230958,"174":0.223484348,"175":0.2208532179,"176":0.2208532179,"177":0.220135637,"178":0.2223481782,"179":0.2223481782,"180":0.2223481782,"181":0.2254576955,"182":0.2208532179,"183":0.221451202,"184":0.221451202,"185":0.186913389,"186":0.2208532179,"187":0.186913389,"188":0.186913389,"189":0.186913389,"190":0.186913389,"191":0.186913389,"192":0.186913389,"193":0.186913389,"194":0.186913389,"195":0.186913389,"196":0.186913389,"197":0.2111804472,"198":0.104244,"199":0.104244,"200":0.104244,"201":0.104244,"204":0.104244,"205":0.1397482269,"206":0.104244,"207":0.104244,"208":0.104244,"209":0.1044144806,"210":0.1288332639,"211":0.104244,"212":0.186913389,"213":0.186913389,"214":0.186913389,"215":0.186913389,"218":0.186913389,"219":0.2209027741,"220":0.186913389,"221":0.186913389,"222":0.186913389,"223":0.1870672888,"224":0.2111804472,"225":0.186913389,"226":0.104244,"230":0.1232991685,"231":0.186913389,"235":0.2122148044,"236":0.1220979443,"237":0.2148327561},"eatr_e":{"0":0.1491,"1":0.1491,"2":0.1491,"3":0.1491,"4":0.1491,"5":0.1491,"6":0.1491,"7":0.1491,"8":0.1491,"9":0.1491,"10":0.1491,"11":0.1491,"12":0.1491,"13":0.1491,"14":0.1491,"15":0.1491,"16":0.1491,"17":0.1491,"18":0.1491,"19":0.1491,"20":0.1491,"21":0.1491,"22":0.1491,"23":0.1491,"24":0.1491,"25":0.1491,"26":0.1491,"27":0.1491,"28":0.1491,"29":0.1491,"30":0.1491,"31":0.1491,"32":0.1491,"33":0.1491,"34":0.1491,"35":0.1491,"36":0.1491,"37":0.1491,"38":0.1491,"39":0.1491,"40":0.1491,"41":0.1491,"42":0.1491,"43":0.1491,"44":0.1491,"45":0.1491,"46":0.1491,"47":0.1491,"48":0.1491,"49":0.1491,"50":0.1491,"51":0.1491,"52":0.1491,"53":0.1491,"54":0.1491,"55":0.1491,"56":0.1491,"57":0.1491,"58":0.1491,"59":0.1491,"60":0.1491,"61":0.1491,"62":0.1491,"63":0.1491,"64":0.2199740764,"65":0.21,"66":0.1491,"67":0.1491,"68":0.1491,"69":0.1491,"70":0.1491,"71":0.1972581627,"72":0.2047683837,"73":0.2047683837,"74":0.2047683837,"75":0.211509477,"76":0.2083201425,"77":0.2083201425,"78":0.2074503241,"79":0.2101322644,"80":0.2101322644,"81":0.2101322644,"82":0.2139014779,"83":0.2083201425,"84":0.2090449913,"85":0.2090449913,"86":0.1491,"87":0.2083201425,"88":0.1491,"89":0.1491,"90":0.1491,"91":0.1491,"92":0.1491,"93":0.1491,"94":0.1491,"95":0.1491,"96":0.1491,"97":0.1491,"98":0.1953032216,"99":0.1515870215,"100":0.1515870215,"101":0.1515870215,"102":0.1515870215,"103":0.1515870215,"104":0.1515870215,"105":0.1515870215,"106":0.1515870215,"107":0.1515870215,"108":0.1515870215,"109":0.1515870215,"110":0.1515870215,"111":0.1515870215,"112":0.1515870215,"113":0.1515870215,"114":0.1515870215,"115":0.1515870215,"116":0.1515870215,"117":0.1515870215,"118":0.1515870215,"119":0.1515870215,"120":0.1515870215,"121":0.1515870215,"122":0.1515870215,"123":0.1515870215,"124":0.1515870215,"125":0.1515870215,"126":0.1515870215,"127":0.1515870215,"128":0.1515870215,"129":0.1515870215,"130":0.1515870215,"131":0.1515870215,"132":0.1515870215,"133":0.1515870215,"134":0.1515870215,"135":0.1515870215,"136":0.1515870215,"137":0.1515870215,"138":0.1515870215,"139":0.1515870215,"140":0.1515870215,"141":0.1515870215,"142":0.1515870215,"143":0.1515870215,"144":0.1515870215,"145":0.1515870215,"146":0.1515870215,"147":0.1515870215,"148":0.1515870215,"149":0.1515870215,"150":0.1515870215,"151":0.1515870215,"152":0.1515870215,"153":0.1515870215,"154":0.1515870215,"155":0.1515870215,"156":0.1515870215,"157":0.1515870215,"158":0.1515870215,"159":0.1515870215,"160":0.1515870215,"161":0.1515870215,"162":0.1515870215,"163":0.2149502862,"164":0.2050430106,"165":0.1515870215,"166":0.1515870215,"167":0.1515870215,"168":0.1515870215,"169":0.1515870215,"170":0.1935659513,"171":0.2002913401,"172":0.2002913401,"173":0.2002913401,"174":0.2066762036,"175":0.2036554079,"176":0.2036554079,"177":0.2028315546,"178":0.2053717691,"179":0.2053717691,"180":0.2053717691,"181":0.2089418003,"182":0.2036554079,"183":0.2043419524,"184":0.2043419524,"185":0.1515870215,"186":0.2036554079,"187":0.1515870215,"188":0.1515870215,"189":0.1515870215,"190":0.1515870215,"191":0.1515870215,"192":0.1515870215,"193":0.1515870215,"194":0.1515870215,"195":0.1515870215,"196":0.1515870215,"197":0.1915448392,"198":0.1491,"199":0.1491,"200":0.1491,"201":0.1491,"204":0.1491,"205":0.209535617,"206":0.1491,"207":0.1491,"208":0.1491,"209":0.1493931065,"210":0.1953032216,"211":0.1491,"212":0.1515870215,"213":0.1515870215,"214":0.1515870215,"215":0.1515870215,"218":0.1515870215,"219":0.2036140912,"220":0.1515870215,"221":0.1515870215,"222":0.1515870215,"223":0.1518231251,"224":0.1915448392,"225":0.1515870215,"226":0.1491,"230":0.1816990233,"231":0.1515870215,"235":0.1910124454,"236":0.17956266,"237":0.1951422496},"eatr_mix":{"0":0.13474608,"1":0.13474608,"2":0.13474608,"3":0.13474608,"4":0.13474608,"5":0.13474608,"6":0.13474608,"7":0.13474608,"8":0.13474608,"9":0.13474608,"10":0.13474608,"11":0.13474608,"12":0.13474608,"13":0.13474608,"14":0.13474608,"15":0.13474608,"16":0.13474608,"17":0.13474608,"18":0.13474608,"19":0.13474608,"20":0.13474608,"21":0.13474608,"22":0.13474608,"23":0.13474608,"24":0.13474608,"25":0.13474608,"26":0.13474608,"27":0.13474608,"28":0.13474608,"29":0.13474608,"30":0.13474608,"31":0.13474608,"32":0.13474608,"33":0.13474608,"34":0.13474608,"35":0.13474608,"36":0.13474608,"37":0.13474608,"38":0.13474608,"39":0.13474608,"40":0.13474608,"41":0.13474608,"42":0.13474608,"43":0.13474608,"44":0.13474608,"45":0.13474608,"46":0.13474608,"47":0.13474608,"48":0.13474608,"49":0.13474608,"50":0.13474608,"51":0.13474608,"52":0.13474608,"53":0.13474608,"54":0.13474608,"55":0.13474608,"56":0.13474608,"57":0.13474608,"58":0.13474608,"59":0.13474608,"60":0.13474608,"61":0.13474608,"62":0.13474608,"63":0.13474608,"64":0.197353212,"65":0.187152,"66":0.13474608,"67":0.13474608,"68":0.13474608,"69":0.13474608,"70":0.13474608,"71":0.1758007561,"72":0.18244629,"73":0.18244629,"74":0.18244629,"75":0.1889025463,"76":0.1858479734,"77":0.1858479734,"78":0.1850149081,"79":0.1875835262,"80":0.1875835262,"81":0.1875835262,"82":0.1911934759,"83":0.1858479734,"84":0.1865421945,"85":0.1865421945,"86":0.13474608,"87":0.1858479734,"88":0.13474608,"89":0.13474608,"90":0.13474608,"91":0.13474608,"92":0.13474608,"93":0.13474608,"94":0.13474608,"95":0.13474608,"96":0.13474608,"97":0.13474608,"98":0.1736960413,"99":0.1618316681,"100":0.1618316681,"101":0.1618316681,"102":0.1618316681,"103":0.1618316681,"104":0.1618316681,"105":0.1618316681,"106":0.1618316681,"107":0.1618316681,"108":0.1618316681,"109":0.1618316681,"110":0.1618316681,"111":0.1618316681,"112":0.1618316681,"113":0.1618316681,"114":0.1618316681,"115":0.1618316681,"116":0.1618316681,"117":0.1618316681,"118":0.1618316681,"119":0.1618316681,"120":0.1618316681,"121":0.1618316681,"122":0.1618316681,"123":0.1618316681,"124":0.1618316681,"125":0.1618316681,"126":0.1618316681,"127":0.1618316681,"128":0.1618316681,"129":0.1618316681,"130":0.1618316681,"131":0.1618316681,"132":0.1618316681,"133":0.1618316681,"134":0.1618316681,"135":0.1618316681,"136":0.1618316681,"137":0.1618316681,"138":0.1618316681,"139":0.1618316681,"140":0.1618316681,"141":0.1618316681,"142":0.1618316681,"143":0.1618316681,"144":0.1618316681,"145":0.1618316681,"146":0.1618316681,"147":0.1618316681,"148":0.1618316681,"149":0.1618316681,"150":0.1618316681,"151":0.1618316681,"152":0.1618316681,"153":0.1618316681,"154":0.1618316681,"155":0.1618316681,"156":0.1618316681,"157":0.1618316681,"158":0.1618316681,"159":0.1618316681,"160":0.1618316681,"161":0.1618316681,"162":0.1618316681,"163":0.2196612161,"164":0.2096136975,"165":0.1618316681,"166":0.1618316681,"167":0.1618316681,"168":0.1618316681,"169":0.1618316681,"170":0.1991435257,"171":0.2052765306,"172":0.2052765306,"173":0.2052765306,"174":0.2114538241,"175":0.2085312337,"176":0.2085312337,"177":0.2077341635,"178":0.2101917964,"179":0.2101917964,"180":0.2101917964,"181":0.213645767,"182":0.2085312337,"183":0.2091954588,"184":0.2091954588,"185":0.1618316681,"186":0.2085312337,"187":0.1618316681,"188":0.1618316681,"189":0.1618316681,"190":0.1618316681,"191":0.1618316681,"192":0.1618316681,"193":0.1618316681,"194":0.1618316681,"195":0.1618316681,"196":0.1618316681,"197":0.197048072,"198":0.13474608,"199":0.13474608,"200":0.13474608,"201":0.13474608,"204":0.13474608,"205":0.1870241871,"206":0.13474608,"207":0.13474608,"208":0.13474608,"209":0.1349990057,"210":0.1736960413,"211":0.13474608,"212":0.1618316681,"213":0.1618316681,"214":0.1618316681,"215":0.1618316681,"218":0.1618316681,"219":0.2085171204,"220":0.1618316681,"221":0.1618316681,"222":0.1618316681,"223":0.1620434268,"224":0.197048072,"225":0.1618316681,"226":0.13474608,"230":0.1629067891,"231":0.1618316681,"235":0.1970509676,"236":0.1611303784,"237":0.2008206726},"major_asset_group":{"0":"Equipment","1":"Equipment","2":"Equipment","3":"Equipment","4":"Equipment","5":"Equipment","6":"Equipment","7":"Equipment","8":"Equipment","9":"Equipment","10":"Equipment","11":"Equipment","12":"Equipment","13":"Equipment","14":"Equipment","15":"Equipment","16":"Equipment","17":"Equipment","18":"Equipment","19":"Equipment","20":"Equipment","21":"Equipment","22":"Equipment","23":"Equipment","24":"Equipment","25":"Equipment","26":"Equipment","27":"Equipment","28":"Equipment","29":"Equipment","30":"Equipment","31":"Equipment","32":"Equipment","33":"Equipment","34":"Equipment","35":"Equipment","36":"Equipment","37":"Equipment","38":"Equipment","39":"Equipment","40":"Equipment","41":"Intellectual Property","42":"Intellectual Property","43":"Intellectual Property","44":"Intellectual Property","45":"Intellectual Property","46":"Intellectual Property","47":"Intellectual Property","48":"Intellectual Property","49":"Intellectual Property","50":"Intellectual Property","51":"Intellectual Property","52":"Intellectual Property","53":"Intellectual Property","54":"Intellectual Property","55":"Intellectual Property","56":"Intellectual Property","57":"Intellectual Property","58":"Intellectual Property","59":"Intellectual Property","60":"Intellectual Property","61":"Intellectual Property","62":"Intellectual Property","63":"Intellectual Property","64":"Inventories","65":"Land","66":"Structures","67":"Structures","68":"Structures","69":"Structures","70":"Structures","71":"Structures","72":"Structures","73":"Structures","74":"Structures","75":"Structures","76":"Structures","77":"Structures","78":"Structures","79":"Structures","80":"Structures","81":"Structures","82":"Structures","83":"Structures","84":"Structures","85":"Structures","86":"Structures","87":"Structures","88":"Structures","89":"Structures","90":"Structures","91":"Structures","92":"Structures","93":"Structures","94":"Structures","95":"Structures","96":"Structures","97":"Structures","98":"Structures","99":"Equipment","100":"Equipment","101":"Equipment","102":"Equipment","103":"Equipment","104":"Equipment","105":"Equipment","106":"Equipment","107":"Equipment","108":"Equipment","109":"Equipment","110":"Equipment","111":"Equipment","112":"Equipment","113":"Equipment","114":"Equipment","115":"Equipment","116":"Equipment","117":"Equipment","118":"Equipment","119":"Equipment","120":"Equipment","121":"Equipment","122":"Equipment","123":"Equipment","124":"Equipment","125":"Equipment","126":"Equipment","127":"Equipment","128":"Equipment","129":"Equipment","130":"Equipment","131":"Equipment","132":"Equipment","133":"Equipment","134":"Equipment","135":"Equipment","136":"Equipment","137":"Equipment","138":"Equipment","139":"Equipment","140":"Intellectual Property","141":"Intellectual Property","142":"Intellectual Property","143":"Intellectual Property","144":"Intellectual Property","145":"Intellectual Property","146":"Intellectual Property","147":"Intellectual Property","148":"Intellectual Property","149":"Intellectual Property","150":"Intellectual Property","151":"Intellectual Property","152":"Intellectual Property","153":"Intellectual Property","154":"Intellectual Property","155":"Intellectual Property","156":"Intellectual Property","157":"Intellectual Property","158":"Intellectual Property","159":"Intellectual Property","160":"Intellectual Property","161":"Intellectual Property","162":"Intellectual Property","163":"Inventories","164":"Land","165":"Structures","166":"Structures","167":"Structures","168":"Structures","169":"Structures","170":"Structures","171":"Structures","172":"Structures","173":"Structures","174":"Structures","175":"Structures","176":"Structures","177":"Structures","178":"Structures","179":"Structures","180":"Structures","181":"Structures","182":"Structures","183":"Structures","184":"Structures","185":"Structures","186":"Structures","187":"Structures","188":"Structures","189":"Structures","190":"Structures","191":"Structures","192":"Structures","193":"Structures","194":"Structures","195":"Structures","196":"Structures","197":"Structures","198":"Equipment","199":"Equipment","200":"Equipment","201":"Intellectual Property","204":"Structures","205":"Structures","206":"Equipment","207":"Equipment","208":"Equipment","209":"Structures","210":"Structures","211":"Equipment","212":"Equipment","213":"Equipment","214":"Equipment","215":"Intellectual Property","218":"Structures","219":"Structures","220":"Equipment","221":"Equipment","222":"Equipment","223":"Structures","224":"Structures","225":"Equipment","226":"Equipment","230":"Structures","231":"Equipment","235":"Structures","236":"Overall","237":"Overall"},"metr_d":{"0":-0.4364303178,"1":-0.4364303178,"2":-0.4364303178,"3":-0.4364303178,"4":-0.4364303178,"5":-0.4364303178,"6":-0.4364303178,"7":-0.4364303178,"8":-0.4364303178,"9":-0.4364303178,"10":-0.4364303178,"11":-0.4364303178,"12":-0.4364303178,"13":-0.4364303178,"14":-0.4364303178,"15":-0.4364303178,"16":-0.4364303178,"17":-0.4364303178,"18":-0.4364303178,"19":-0.4364303178,"20":-0.4364303178,"21":-0.4364303178,"22":-0.4364303178,"23":-0.4364303178,"24":-0.4364303178,"25":-0.4364303178,"26":-0.4364303178,"27":-0.4364303178,"28":-0.4364303178,"29":-0.4364303178,"30":-0.4364303178,"31":-0.4364303178,"32":-0.4364303178,"33":-0.4364303178,"34":-0.4364303178,"35":-0.4364303178,"36":-0.4364303178,"37":-0.4364303178,"38":-0.4364303178,"39":-0.4364303178,"40":-0.4364303178,"41":-0.4364303178,"42":-0.4364303178,"43":-0.4364303178,"44":-0.4364303178,"45":-0.4364303178,"46":-0.4364303178,"47":-0.4364303178,"48":-0.4364303178,"49":-0.4364303178,"50":-0.4364303178,"51":-0.4364303178,"52":-0.4364303178,"53":-0.4364303178,"54":-0.4364303178,"55":-0.4364303178,"56":-0.4364303178,"57":-0.4364303178,"58":-0.4364303178,"59":-0.4364303178,"60":-0.4364303178,"61":-0.4364303178,"62":-0.4364303178,"63":-0.4364303178,"64":-0.0657878823,"65":-0.1347799511,"66":-0.4364303178,"67":-0.4364303178,"68":-0.4364303178,"69":-0.4364303178,"70":-0.4364303178,"71":-0.190040883,"72":-0.1552799092,"73":-0.1552799092,"74":-0.1552799092,"75":-0.115855148,"76":-0.1341668421,"77":-0.1341668421,"78":-0.1392657164,"79":-0.1236894227,"80":-0.1236894227,"81":-0.1236894227,"82":-0.1025047774,"83":-0.1341668421,"84":-0.1299525152,"85":-0.1299525152,"86":-0.4364303178,"87":-0.1341668421,"88":-0.4364303178,"89":-0.4364303178,"90":-0.4364303178,"91":-0.4364303178,"92":-0.4364303178,"93":-0.4364303178,"94":-0.4364303178,"95":-0.4364303178,"96":-0.4364303178,"97":-0.4364303178,"98":-0.2068261136,"99":0.0953562252,"100":0.0953562252,"101":0.0953562252,"102":0.0953562252,"103":0.0953562252,"104":0.0953562252,"105":0.0953562252,"106":0.0953562252,"107":0.0953562252,"108":0.0953562252,"109":0.0953562252,"110":0.0953562252,"111":0.0953562252,"112":0.0953562252,"113":0.0953562252,"114":0.0953562252,"115":0.0953562252,"116":0.0953562252,"117":0.0953562252,"118":0.0953562252,"119":0.0953562252,"120":0.0953562252,"121":0.0953562252,"122":0.0953562252,"123":0.0953562252,"124":0.0953562252,"125":0.0953562252,"126":0.0953562252,"127":0.0953562252,"128":0.0953562252,"129":0.0953562252,"130":0.0953562252,"131":0.0953562252,"132":0.0953562252,"133":0.0953562252,"134":0.0953562252,"135":0.0953562252,"136":0.0953562252,"137":0.0953562252,"138":0.0953562252,"139":0.0953562252,"140":0.0953562252,"141":0.0953562252,"142":0.0953562252,"143":0.0953562252,"144":0.0953562252,"145":0.0953562252,"146":0.0953562252,"147":0.0953562252,"148":0.0953562252,"149":0.0953562252,"150":0.0953562252,"151":0.0953562252,"152":0.0953562252,"153":0.0953562252,"154":0.0953562252,"155":0.0953562252,"156":0.0953562252,"157":0.0953562252,"158":0.0953562252,"159":0.0953562252,"160":0.0953562252,"161":0.0953562252,"162":0.0953562252,"163":0.3231751212,"164":0.2808471083,"165":0.0953562252,"166":0.0953562252,"167":0.0953562252,"168":0.0953562252,"169":0.0953562252,"170":0.2466519799,"171":0.2680900045,"172":0.2680900045,"173":0.2680900045,"174":0.2923231395,"175":0.2810611899,"176":0.2810611899,"177":0.2779272685,"178":0.2875036033,"179":0.2875036033,"180":0.2875036033,"181":0.3005407459,"182":0.2810611899,"183":0.2836520855,"184":0.2836520855,"185":0.0953562252,"186":0.2810611899,"187":0.0953562252,"188":0.0953562252,"189":0.0953562252,"190":0.0953562252,"191":0.0953562252,"192":0.0953562252,"193":0.0953562252,"194":0.0953562252,"195":0.0953562252,"196":0.0953562252,"197":0.2363865862,"198":-0.4364303178,"199":-0.4364303178,"200":-0.4364303178,"201":-0.4364303178,"204":-0.4364303178,"205":-0.1268710052,"206":-0.4364303178,"207":-0.4364303178,"208":-0.4364303178,"209":-0.4345380755,"210":-0.2068261136,"211":-0.4364303178,"212":0.0953562252,"213":0.0953562252,"214":0.0953562252,"215":0.0953562252,"218":0.0953562252,"219":0.2812766148,"220":0.0953562252,"221":0.0953562252,"222":0.0953562252,"223":0.0964145752,"224":0.2363865862,"225":0.0953562252,"226":-0.4364303178,"230":-0.2518613687,"231":0.0953562252,"235":0.2414272261,"236":-0.2620842588,"237":0.253892579},"metr_e":{"0":9.570888143e-16,"1":3.589083054e-16,"2":1.196361018e-16,"3":0.0,"4":2.392722036e-16,"5":-3.589083054e-16,"6":1.196361018e-16,"7":2.392722036e-16,"8":1.196361018e-16,"9":1.196361018e-16,"10":1.196361018e-16,"11":0.0,"12":-2.392722036e-16,"13":-2.392722036e-16,"14":2.392722036e-16,"15":0.0,"16":0.0,"17":1.196361018e-16,"18":-2.392722036e-16,"19":-1.196361018e-16,"20":-1.196361018e-16,"21":-5.98180509e-16,"22":0.0,"23":2.392722036e-16,"24":1.196361018e-16,"25":0.0,"26":-1.196361018e-16,"27":-2.392722036e-16,"28":1.196361018e-16,"29":-5.98180509e-16,"30":-1.196361018e-16,"31":0.0,"32":-1.196361018e-16,"33":3.589083054e-16,"34":-4.785444072e-16,"35":-3.589083054e-16,"36":-5.98180509e-16,"37":0.0,"38":-1.196361018e-16,"39":0.0,"40":1.196361018e-16,"41":-1.196361018e-16,"42":-4.785444072e-16,"43":1.196361018e-16,"44":0.0,"45":-3.589083054e-16,"46":-2.392722036e-16,"47":0.0,"48":1.196361018e-16,"49":-3.589083054e-16,"50":1.196361018e-16,"51":0.0,"52":0.0,"53":0.0,"54":0.0,"55":3.589083054e-16,"56":5.98180509e-16,"57":0.0,"58":-1.196361018e-16,"59":0.0,"60":1.196361018e-16,"61":-1.196361018e-16,"62":0.0,"63":2.392722036e-16,"64":0.2362673377,"65":0.21,"66":0.0,"67":-3.589083054e-16,"68":-1.196361018e-16,"69":0.0,"70":1.196361018e-16,"71":0.1736943007,"72":0.1954865318,"73":0.1954865318,"74":0.1954865318,"75":0.214090731,"76":0.2053971742,"77":0.2053971742,"78":0.2029927232,"79":0.2103601422,"80":0.2103601422,"81":0.2103601422,"82":0.2204870774,"83":0.2053971742,"84":0.2073898289,"85":0.2073898289,"86":0.0,"87":0.2053971742,"88":3.589083054e-16,"89":1.196361018e-16,"90":-2.392722036e-16,"91":-2.392722036e-16,"92":1.196361018e-16,"93":1.196361018e-16,"94":0.0,"95":0.0,"96":2.392722036e-16,"97":0.0,"98":0.1678266653,"99":0.0,"100":-3.992363776e-16,"101":-1.330787925e-16,"102":-2.661575851e-16,"103":-3.992363776e-16,"104":-5.323151701e-16,"105":-3.992363776e-16,"106":-3.992363776e-16,"107":0.0,"108":-2.661575851e-16,"109":1.330787925e-16,"110":1.330787925e-16,"111":-2.661575851e-16,"112":-2.661575851e-16,"113":-5.323151701e-16,"114":-1.330787925e-16,"115":1.330787925e-16,"116":-1.330787925e-16,"117":-2.661575851e-16,"118":-5.323151701e-16,"119":-2.661575851e-16,"120":2.661575851e-16,"121":-1.330787925e-16,"122":-2.661575851e-16,"123":-3.992363776e-16,"124":-3.992363776e-16,"125":-2.661575851e-16,"126":0.0,"127":-1.330787925e-16,"128":-1.330787925e-16,"129":-2.661575851e-16,"130":-2.661575851e-16,"131":1.330787925e-16,"132":0.0,"133":0.0,"134":-1.330787925e-16,"135":-2.661575851e-16,"136":-7.984727552e-16,"137":1.330787925e-16,"138":-1.330787925e-16,"139":-5.323151701e-16,"140":3.992363776e-16,"141":1.330787925e-16,"142":-1.330787925e-16,"143":-1.330787925e-16,"144":0.0,"145":0.0,"146":2.661575851e-16,"147":3.992363776e-16,"148":-2.661575851e-16,"149":-3.992363776e-16,"150":-5.323151701e-16,"151":-2.661575851e-16,"152":-2.661575851e-16,"153":-2.661575851e-16,"154":1.330787925e-16,"155":1.330787925e-16,"156":1.330787925e-16,"157":6.653939626e-16,"158":3.992363776e-16,"159":2.661575851e-16,"160":2.661575851e-16,"161":5.323151701e-16,"162":2.661575851e-16,"163":0.2341467251,"164":0.2050430106,"165":-2.661575851e-16,"166":1.330787925e-16,"167":2.661575851e-16,"168":-1.330787925e-16,"169":-1.330787925e-16,"170":0.1684350618,"171":0.1902850248,"172":0.1902850248,"173":0.1902850248,"174":0.2099920122,"175":0.2007892304,"176":0.2007892304,"177":0.1982420513,"178":0.2060442131,"179":0.2060442131,"180":0.2060442131,"181":0.2167562056,"182":0.2007892304,"183":0.202899549,"184":0.202899549,"185":1.330787925e-16,"186":0.2007892304,"187":0.0,"188":-1.330787925e-16,"189":2.661575851e-16,"190":3.992363776e-16,"191":3.992363776e-16,"192":2.661575851e-16,"193":3.992363776e-16,"194":1.330787925e-16,"195":-1.330787925e-16,"196":2.661575851e-16,"197":0.161636392,"198":2.392722036e-16,"199":1.196361018e-16,"200":-1.196361018e-16,"201":-1.196361018e-16,"204":-1.196361018e-16,"205":0.2087329275,"206":-2.392722036e-16,"207":1.196361018e-16,"208":0.0,"209":0.0012777475,"210":0.1678266653,"211":0.0,"212":-2.661575851e-16,"213":0.0,"214":0.0,"215":0.0,"218":-1.330787925e-16,"219":0.2006618735,"220":-6.653939626e-16,"221":-1.330787925e-16,"222":0.0,"223":0.0011379237,"224":0.161636392,"225":1.330787925e-16,"226":0.0,"230":0.1245668513,"231":1.330787925e-16,"235":0.159826973,"236":0.1173614879,"237":0.1736614008},"metr_mix":{"0":-0.0915560685,"1":-0.0915560685,"2":-0.0915560685,"3":-0.0915560685,"4":-0.0915560685,"5":-0.0915560685,"6":-0.0915560685,"7":-0.0915560685,"8":-0.0915560685,"9":-0.0915560685,"10":-0.0915560685,"11":-0.0915560685,"12":-0.0915560685,"13":-0.0915560685,"14":-0.0915560685,"15":-0.0915560685,"16":-0.0915560685,"17":-0.0915560685,"18":-0.0915560685,"19":-0.0915560685,"20":-0.0915560685,"21":-0.0915560685,"22":-0.0915560685,"23":-0.0915560685,"24":-0.0915560685,"25":-0.0915560685,"26":-0.0915560685,"27":-0.0915560685,"28":-0.0915560685,"29":-0.0915560685,"30":-0.0915560685,"31":-0.0915560685,"32":-0.0915560685,"33":-0.0915560685,"34":-0.0915560685,"35":-0.0915560685,"36":-0.0915560685,"37":-0.0915560685,"38":-0.0915560685,"39":-0.0915560685,"40":-0.0915560685,"41":-0.0915560685,"42":-0.0915560685,"43":-0.0915560685,"44":-0.0915560685,"45":-0.0915560685,"46":-0.0915560685,"47":-0.0915560685,"48":-0.0915560685,"49":-0.0915560685,"50":-0.0915560685,"51":-0.0915560685,"52":-0.0915560685,"53":-0.0915560685,"54":-0.0915560685,"55":-0.0915560685,"56":-0.0915560685,"57":-0.0915560685,"58":-0.0915560685,"59":-0.0915560685,"60":-0.0915560685,"61":-0.0915560685,"62":-0.0915560685,"63":-0.0915560685,"64":0.1715367124,"65":0.1376707059,"66":-0.0915560685,"67":-0.0915560685,"68":-0.0915560685,"69":-0.0915560685,"70":-0.0915560685,"71":0.0965771749,"72":0.1210975669,"73":0.1210975669,"74":0.1210975669,"75":0.1436775982,"76":0.1331409596,"77":0.1331409596,"78":0.1302221775,"79":0.1391592746,"80":0.1391592746,"81":0.1391592746,"82":0.1514135006,"83":0.1331409596,"84":0.1355583555,"85":0.1355583555,"86":-0.0915560685,"87":0.1331409596,"88":-0.0915560685,"89":-0.0915560685,"90":-0.0915560685,"91":-0.0915560685,"92":-0.0915560685,"93":-0.0915560685,"94":-0.0915560685,"95":-0.0915560685,"96":-0.0915560685,"97":-0.0915560685,"98":0.0885234718,"99":0.0196138052,"100":0.0196138052,"101":0.0196138052,"102":0.0196138052,"103":0.0196138052,"104":0.0196138052,"105":0.0196138052,"106":0.0196138052,"107":0.0196138052,"108":0.0196138052,"109":0.0196138052,"110":0.0196138052,"111":0.0196138052,"112":0.0196138052,"113":0.0196138052,"114":0.0196138052,"115":0.0196138052,"116":0.0196138052,"117":0.0196138052,"118":0.0196138052,"119":0.0196138052,"120":0.0196138052,"121":0.0196138052,"122":0.0196138052,"123":0.0196138052,"124":0.0196138052,"125":0.0196138052,"126":0.0196138052,"127":0.0196138052,"128":0.0196138052,"129":0.0196138052,"130":0.0196138052,"131":0.0196138052,"132":0.0196138052,"133":0.0196138052,"134":0.0196138052,"135":0.0196138052,"136":0.0196138052,"137":0.0196138052,"138":0.0196138052,"139":0.0196138052,"140":0.0196138052,"141":0.0196138052,"142":0.0196138052,"143":0.0196138052,"144":0.0196138052,"145":0.0196138052,"146":0.0196138052,"147":0.0196138052,"148":0.0196138052,"149":0.0196138052,"150":0.0196138052,"151":0.0196138052,"152":0.0196138052,"153":0.0196138052,"154":0.0196138052,"155":0.0196138052,"156":0.0196138052,"157":0.0196138052,"158":0.0196138052,"159":0.0196138052,"160":0.0196138052,"161":0.0196138052,"162":0.0196138052,"163":0.2528493439,"164":0.2206351421,"165":0.0196138052,"166":0.0196138052,"167":0.0196138052,"168":0.0196138052,"169":0.0196138052,"170":0.1839711543,"171":0.2058547326,"172":0.2058547326,"173":0.2058547326,"174":0.2267410889,"175":0.2169980303,"176":0.2169980303,"177":0.2142980738,"178":0.2225637649,"179":0.2225637649,"180":0.2225637649,"181":0.2338907332,"182":0.2169980303,"183":0.2192338598,"184":0.2192338598,"185":0.0196138052,"186":0.2169980303,"187":0.0196138052,"188":0.0196138052,"189":0.0196138052,"190":0.0196138052,"191":0.0196138052,"192":0.0196138052,"193":0.0196138052,"194":0.0196138052,"195":0.0196138052,"196":0.0196138052,"197":0.17621517,"198":-0.0915560685,"199":-0.0915560685,"200":-0.0915560685,"201":-0.0915560685,"204":-0.0915560685,"205":0.1372288209,"206":-0.0915560685,"207":-0.0915560685,"208":-0.0915560685,"209":-0.0901574668,"210":0.0885234718,"211":-0.0915560685,"212":0.0196138052,"213":0.0196138052,"214":0.0196138052,"215":0.0196138052,"218":0.0196138052,"219":0.2169503851,"220":0.0196138052,"221":0.0196138052,"222":0.0196138052,"223":0.0207331893,"224":0.17621517,"225":0.0196138052,"226":-0.0915560685,"230":0.0448756521,"231":0.0196138052,"235":0.1762259893,"236":0.0372852158,"237":0.1900744063},"mettr_d":{"0":-0.0588059617,"1":-0.0588059617,"2":-0.0588059617,"3":-0.0588059617,"4":-0.0588059617,"5":-0.0588059617,"6":-0.0588059617,"7":-0.0588059617,"8":-0.0588059617,"9":-0.0588059617,"10":-0.0588059617,"11":-0.0588059617,"12":-0.0588059617,"13":-0.0588059617,"14":-0.0588059617,"15":-0.0588059617,"16":-0.0588059617,"17":-0.0588059617,"18":-0.0588059617,"19":-0.0588059617,"20":-0.0588059617,"21":-0.0588059617,"22":-0.0588059617,"23":-0.0588059617,"24":-0.0588059617,"25":-0.0588059617,"26":-0.0588059617,"27":-0.0588059617,"28":-0.0588059617,"29":-0.0588059617,"30":-0.0588059617,"31":-0.0588059617,"32":-0.0588059617,"33":-0.0588059617,"34":-0.0588059617,"35":-0.0588059617,"36":-0.0588059617,"37":-0.0588059617,"38":-0.0588059617,"39":-0.0588059617,"40":-0.0588059617,"41":-0.0588059617,"42":-0.0588059617,"43":-0.0588059617,"44":-0.0588059617,"45":-0.0588059617,"46":-0.0588059617,"47":-0.0588059617,"48":-0.0588059617,"49":-0.0588059617,"50":-0.0588059617,"51":-0.0588059617,"52":-0.0588059617,"53":-0.0588059617,"54":-0.0588059617,"55":-0.0588059617,"56":-0.0588059617,"57":-0.0588059617,"58":-0.0588059617,"59":-0.0588059617,"60":-0.0588059617,"61":-0.0588059617,"62":-0.0588059617,"63":-0.0588059617,"64":0.214397977,"65":0.1635432903,"66":-0.0588059617,"67":-0.0588059617,"68":-0.0588059617,"69":-0.0588059617,"70":-0.0588059617,"71":0.1228099505,"72":0.1484325831,"73":0.1484325831,"74":0.1484325831,"75":0.1774929362,"76":0.1639952185,"77":0.1639952185,"78":0.1602367915,"79":0.1717182205,"80":0.1717182205,"81":0.1717182205,"82":0.1873336168,"83":0.1639952185,"84":0.1671016375,"85":0.1671016375,"86":-0.0588059617,"87":0.1639952185,"88":-0.0588059617,"89":-0.0588059617,"90":-0.0588059617,"91":-0.0588059617,"92":-0.0588059617,"93":-0.0588059617,"94":-0.0588059617,"95":-0.0588059617,"96":-0.0588059617,"97":-0.0588059617,"98":0.1104374031,"99":0.0953562252,"100":0.0953562252,"101":0.0953562252,"102":0.0953562252,"103":0.0953562252,"104":0.0953562252,"105":0.0953562252,"106":0.0953562252,"107":0.0953562252,"108":0.0953562252,"109":0.0953562252,"110":0.0953562252,"111":0.0953562252,"112":0.0953562252,"113":0.0953562252,"114":0.0953562252,"115":0.0953562252,"116":0.0953562252,"117":0.0953562252,"118":0.0953562252,"119":0.0953562252,"120":0.0953562252,"121":0.0953562252,"122":0.0953562252,"123":0.0953562252,"124":0.0953562252,"125":0.0953562252,"126":0.0953562252,"127":0.0953562252,"128":0.0953562252,"129":0.0953562252,"130":0.0953562252,"131":0.0953562252,"132":0.0953562252,"133":0.0953562252,"134":0.0953562252,"135":0.0953562252,"136":0.0953562252,"137":0.0953562252,"138":0.0953562252,"139":0.0953562252,"140":0.0953562252,"141":0.0953562252,"142":0.0953562252,"143":0.0953562252,"144":0.0953562252,"145":0.0953562252,"146":0.0953562252,"147":0.0953562252,"148":0.0953562252,"149":0.0953562252,"150":0.0953562252,"151":0.0953562252,"152":0.0953562252,"153":0.0953562252,"154":0.0953562252,"155":0.0953562252,"156":0.0953562252,"157":0.0953562252,"158":0.0953562252,"159":0.0953562252,"160":0.0953562252,"161":0.0953562252,"162":0.0953562252,"163":0.3231751212,"164":0.2808471083,"165":0.0953562252,"166":0.0953562252,"167":0.0953562252,"168":0.0953562252,"169":0.0953562252,"170":0.2466519799,"171":0.2680900045,"172":0.2680900045,"173":0.2680900045,"174":0.2923231395,"175":0.2810611899,"176":0.2810611899,"177":0.2779272685,"178":0.2875036033,"179":0.2875036033,"180":0.2875036033,"181":0.3005407459,"182":0.2810611899,"183":0.2836520855,"184":0.2836520855,"185":0.0953562252,"186":0.2810611899,"187":0.0953562252,"188":0.0953562252,"189":0.0953562252,"190":0.0953562252,"191":0.0953562252,"192":0.0953562252,"193":0.0953562252,"194":0.0953562252,"195":0.0953562252,"196":0.0953562252,"197":0.2363865862,"198":-0.0588059617,"199":-0.0588059617,"200":-0.0588059617,"201":-0.0588059617,"204":-0.0588059617,"205":0.1693730468,"206":-0.0588059617,"207":-0.0588059617,"208":-0.0588059617,"209":-0.0574111725,"210":0.1104374031,"211":-0.0588059617,"212":0.0953562252,"213":0.0953562252,"214":0.0953562252,"215":0.0953562252,"218":0.0953562252,"219":0.2812766148,"220":0.0953562252,"221":0.0953562252,"222":0.0953562252,"223":0.0964145752,"224":0.2363865862,"225":0.0953562252,"226":-0.0588059617,"230":0.0772415036,"231":0.0953562252,"235":0.2414272261,"236":0.0697061175,"237":0.253892579},"mettr_e":{"0":0.10101302,"1":0.10101302,"2":0.10101302,"3":0.10101302,"4":0.10101302,"5":0.10101302,"6":0.10101302,"7":0.10101302,"8":0.10101302,"9":0.10101302,"10":0.10101302,"11":0.10101302,"12":0.10101302,"13":0.10101302,"14":0.10101302,"15":0.10101302,"16":0.10101302,"17":0.10101302,"18":0.10101302,"19":0.10101302,"20":0.10101302,"21":0.10101302,"22":0.10101302,"23":0.10101302,"24":0.10101302,"25":0.10101302,"26":0.10101302,"27":0.10101302,"28":0.10101302,"29":0.10101302,"30":0.10101302,"31":0.10101302,"32":0.10101302,"33":0.10101302,"34":0.10101302,"35":0.10101302,"36":0.10101302,"37":0.10101302,"38":0.10101302,"39":0.10101302,"40":0.10101302,"41":0.10101302,"42":0.10101302,"43":0.10101302,"44":0.10101302,"45":0.10101302,"46":0.10101302,"47":0.10101302,"48":0.10101302,"49":0.10101302,"50":0.10101302,"51":0.10101302,"52":0.10101302,"53":0.10101302,"54":0.10101302,"55":0.10101302,"56":0.10101302,"57":0.10101302,"58":0.10101302,"59":0.10101302,"60":0.10101302,"61":0.10101302,"62":0.10101302,"63":0.10101302,"64":0.3134142804,"65":0.2898002858,"66":0.10101302,"67":0.10101302,"68":0.10101302,"69":0.10101302,"70":0.10101302,"71":0.2571619349,"72":0.2767528669,"73":0.2767528669,"74":0.2767528669,"75":0.2934777997,"76":0.2856624054,"77":0.2856624054,"78":0.2835008352,"79":0.290124049,"80":0.290124049,"81":0.290124049,"82":0.2992280318,"83":0.2856624054,"84":0.287453776,"85":0.287453776,"86":0.10101302,"87":0.2856624054,"88":0.10101302,"89":0.10101302,"90":0.10101302,"91":0.10101302,"92":0.10101302,"93":0.10101302,"94":0.10101302,"95":0.10101302,"96":0.10101302,"97":0.10101302,"98":0.251887007,"99":0.0,"100":-3.992363776e-16,"101":-1.330787925e-16,"102":-2.661575851e-16,"103":-3.992363776e-16,"104":-5.323151701e-16,"105":-3.992363776e-16,"106":-3.992363776e-16,"107":0.0,"108":-2.661575851e-16,"109":1.330787925e-16,"110":1.330787925e-16,"111":-2.661575851e-16,"112":-2.661575851e-16,"113":-5.323151701e-16,"114":-1.330787925e-16,"115":1.330787925e-16,"116":-1.330787925e-16,"117":-2.661575851e-16,"118":-5.323151701e-16,"119":-2.661575851e-16,"120":2.661575851e-16,"121":-1.330787925e-16,"122":-2.661575851e-16,"123":-3.992363776e-16,"124":-3.992363776e-16,"125":-2.661575851e-16,"126":0.0,"127":-1.330787925e-16,"128":-1.330787925e-16,"129":-2.661575851e-16,"130":-2.661575851e-16,"131":1.330787925e-16,"132":0.0,"133":0.0,"134":-1.330787925e-16,"135":-2.661575851e-16,"136":-7.984727552e-16,"137":1.330787925e-16,"138":-1.330787925e-16,"139":-5.323151701e-16,"140":3.992363776e-16,"141":1.330787925e-16,"142":-1.330787925e-16,"143":-1.330787925e-16,"144":0.0,"145":0.0,"146":2.661575851e-16,"147":3.992363776e-16,"148":-2.661575851e-16,"149":-3.992363776e-16,"150":-5.323151701e-16,"151":-2.661575851e-16,"152":-2.661575851e-16,"153":-2.661575851e-16,"154":1.330787925e-16,"155":1.330787925e-16,"156":1.330787925e-16,"157":6.653939626e-16,"158":3.992363776e-16,"159":2.661575851e-16,"160":2.661575851e-16,"161":5.323151701e-16,"162":2.661575851e-16,"163":0.2341467251,"164":0.2050430106,"165":-2.661575851e-16,"166":1.330787925e-16,"167":2.661575851e-16,"168":-1.330787925e-16,"169":-1.330787925e-16,"170":0.1684350618,"171":0.1902850248,"172":0.1902850248,"173":0.1902850248,"174":0.2099920122,"175":0.2007892304,"176":0.2007892304,"177":0.1982420513,"178":0.2060442131,"179":0.2060442131,"180":0.2060442131,"181":0.2167562056,"182":0.2007892304,"183":0.202899549,"184":0.202899549,"185":1.330787925e-16,"186":0.2007892304,"187":0.0,"188":-1.330787925e-16,"189":2.661575851e-16,"190":3.992363776e-16,"191":3.992363776e-16,"192":2.661575851e-16,"193":3.992363776e-16,"194":1.330787925e-16,"195":-1.330787925e-16,"196":2.661575851e-16,"197":0.161636392,"198":0.10101302,"199":0.10101302,"200":0.10101302,"201":0.10101302,"204":0.10101302,"205":0.2886612042,"206":0.10101302,"207":0.10101302,"208":0.10101302,"209":0.1021616984,"210":0.251887007,"211":0.10101302,"212":-2.661575851e-16,"213":0.0,"214":0.0,"215":0.0,"218":-1.330787925e-16,"219":0.2006618735,"220":-6.653939626e-16,"221":-1.330787925e-16,"222":0.0,"223":0.0011379237,"224":0.161636392,"225":1.330787925e-16,"226":0.10101302,"230":0.2129969975,"231":1.330787925e-16,"235":0.159826973,"236":0.2065194696,"237":0.1736614008},"mettr_mix":{"0":0.0674855655,"1":0.0674855655,"2":0.0674855655,"3":0.0674855655,"4":0.0674855655,"5":0.0674855655,"6":0.0674855655,"7":0.0674855655,"8":0.0674855655,"9":0.0674855655,"10":0.0674855655,"11":0.0674855655,"12":0.0674855655,"13":0.0674855655,"14":0.0674855655,"15":0.0674855655,"16":0.0674855655,"17":0.0674855655,"18":0.0674855655,"19":0.0674855655,"20":0.0674855655,"21":0.0674855655,"22":0.0674855655,"23":0.0674855655,"24":0.0674855655,"25":0.0674855655,"26":0.0674855655,"27":0.0674855655,"28":0.0674855655,"29":0.0674855655,"30":0.0674855655,"31":0.0674855655,"32":0.0674855655,"33":0.0674855655,"34":0.0674855655,"35":0.0674855655,"36":0.0674855655,"37":0.0674855655,"38":0.0674855655,"39":0.0674855655,"40":0.0674855655,"41":0.0674855655,"42":0.0674855655,"43":0.0674855655,"44":0.0674855655,"45":0.0674855655,"46":0.0674855655,"47":0.0674855655,"48":0.0674855655,"49":0.0674855655,"50":0.0674855655,"51":0.0674855655,"52":0.0674855655,"53":0.0674855655,"54":0.0674855655,"55":0.0674855655,"56":0.0674855655,"57":0.0674855655,"58":0.0674855655,"59":0.0674855655,"60":0.0674855655,"61":0.0674855655,"62":0.0674855655,"63":0.0674855655,"64":0.2922452667,"65":0.2633135968,"66":0.0674855655,"67":0.0674855655,"68":0.0674855655,"69":0.0674855655,"70":0.0674855655,"71":0.2282074653,"72":0.2491551932,"73":0.2491551932,"74":0.2491551932,"75":0.2684452743,"76":0.2594438424,"77":0.2594438424,"78":0.256950332,"79":0.2645852784,"80":0.2645852784,"81":0.2645852784,"82":0.2750540422,"83":0.2594438424,"84":0.2615090195,"85":0.2615090195,"86":0.0674855655,"87":0.2594438424,"88":0.0674855655,"89":0.0674855655,"90":0.0674855655,"91":0.0674855655,"92":0.0674855655,"93":0.0674855655,"94":0.0674855655,"95":0.0674855655,"96":0.0674855655,"97":0.0674855655,"98":0.2213272009,"99":0.0196138052,"100":0.0196138052,"101":0.0196138052,"102":0.0196138052,"103":0.0196138052,"104":0.0196138052,"105":0.0196138052,"106":0.0196138052,"107":0.0196138052,"108":0.0196138052,"109":0.0196138052,"110":0.0196138052,"111":0.0196138052,"112":0.0196138052,"113":0.0196138052,"114":0.0196138052,"115":0.0196138052,"116":0.0196138052,"117":0.0196138052,"118":0.0196138052,"119":0.0196138052,"120":0.0196138052,"121":0.0196138052,"122":0.0196138052,"123":0.0196138052,"124":0.0196138052,"125":0.0196138052,"126":0.0196138052,"127":0.0196138052,"128":0.0196138052,"129":0.0196138052,"130":0.0196138052,"131":0.0196138052,"132":0.0196138052,"133":0.0196138052,"134":0.0196138052,"135":0.0196138052,"136":0.0196138052,"137":0.0196138052,"138":0.0196138052,"139":0.0196138052,"140":0.0196138052,"141":0.0196138052,"142":0.0196138052,"143":0.0196138052,"144":0.0196138052,"145":0.0196138052,"146":0.0196138052,"147":0.0196138052,"148":0.0196138052,"149":0.0196138052,"150":0.0196138052,"151":0.0196138052,"152":0.0196138052,"153":0.0196138052,"154":0.0196138052,"155":0.0196138052,"156":0.0196138052,"157":0.0196138052,"158":0.0196138052,"159":0.0196138052,"160":0.0196138052,"161":0.0196138052,"162":0.0196138052,"163":0.2528493439,"164":0.2206351421,"165":0.0196138052,"166":0.0196138052,"167":0.0196138052,"168":0.0196138052,"169":0.0196138052,"170":0.1839711543,"171":0.2058547326,"172":0.2058547326,"173":0.2058547326,"174":0.2267410889,"175":0.2169980303,"176":0.2169980303,"177":0.2142980738,"178":0.2225637649,"179":0.2225637649,"180":0.2225637649,"181":0.2338907332,"182":0.2169980303,"183":0.2192338598,"184":0.2192338598,"185":0.0196138052,"186":0.2169980303,"187":0.0196138052,"188":0.0196138052,"189":0.0196138052,"190":0.0196138052,"191":0.0196138052,"192":0.0196138052,"193":0.0196138052,"194":0.0196138052,"195":0.0196138052,"196":0.0196138052,"197":0.17621517,"198":0.0674855655,"199":0.0674855655,"200":0.0674855655,"201":0.0674855655,"204":0.0674855655,"205":0.2629360952,"206":0.0674855655,"207":0.0674855655,"208":0.0674855655,"209":0.0686803885,"210":0.2213272009,"211":0.0674855655,"212":0.0196138052,"213":0.0196138052,"214":0.0196138052,"215":0.0196138052,"218":0.0196138052,"219":0.2169503851,"220":0.0196138052,"221":0.0196138052,"222":0.0196138052,"223":0.0207331893,"224":0.17621517,"225":0.0196138052,"226":0.0674855655,"230":0.1840389451,"231":0.0196138052,"235":0.1762259893,"236":0.1775544487,"237":0.1900744063},"minor_asset_group":{"0":"Computers and Software","1":"Computers and Software","2":"Computers and Software","3":"Computers and Software","4":"Computers and Software","5":"Computers and Software","6":"Computers and Software","7":"Computers and Software","8":"Computers and Software","9":"Computers and Software","10":"Industrial Machinery","11":"Industrial Machinery","12":"Instruments and Communications Equipment","13":"Instruments and Communications Equipment","14":"Instruments and Communications Equipment","15":"Instruments and Communications Equipment","16":"Instruments and Communications Equipment","17":"Instruments and Communications Equipment","18":"Office and Residential Equipment","19":"Office and Residential Equipment","20":"Office and Residential Equipment","21":"Other Equipment","22":"Other Equipment","23":"Other Equipment","24":"Other Industrial Equipment","25":"Other Industrial Equipment","26":"Other Industrial Equipment","27":"Other Industrial Equipment","28":"Other Industrial Equipment","29":"Other Industrial Equipment","30":"Other Industrial Equipment","31":"Other Industrial Equipment","32":"Other Industrial Equipment","33":"Transportation Equipment","34":"Transportation Equipment","35":"Transportation Equipment","36":"Transportation Equipment","37":"Transportation Equipment","38":"Transportation Equipment","39":"Transportation Equipment","40":"Transportation Equipment","41":"Intellectual Property","42":"Intellectual Property","43":"Intellectual Property","44":"Intellectual Property","45":"Intellectual Property","46":"Intellectual Property","47":"Intellectual Property","48":"Intellectual Property","49":"Intellectual Property","50":"Intellectual Property","51":"Intellectual Property","52":"Intellectual Property","53":"Intellectual Property","54":"Intellectual Property","55":"Intellectual Property","56":"Intellectual Property","57":"Intellectual Property","58":"Intellectual Property","59":"Intellectual Property","60":"Intellectual Property","61":"Intellectual Property","62":"Intellectual Property","63":"Intellectual Property","64":"Inventories","65":"Land","66":"Mining and Drilling Structures","67":"Mining and Drilling Structures","68":"Mining and Drilling Structures","69":"Mining and Drilling Structures","70":"Mining and Drilling Structures","71":"Nonresidential Buildings","72":"Nonresidential Buildings","73":"Nonresidential Buildings","74":"Nonresidential Buildings","75":"Nonresidential Buildings","76":"Nonresidential Buildings","77":"Nonresidential Buildings","78":"Nonresidential Buildings","79":"Nonresidential Buildings","80":"Nonresidential Buildings","81":"Nonresidential Buildings","82":"Nonresidential Buildings","83":"Nonresidential Buildings","84":"Nonresidential Buildings","85":"Nonresidential Buildings","86":"Other Structures","87":"Other Structures","88":"Other Structures","89":"Other Structures","90":"Other Structures","91":"Other Structures","92":"Other Structures","93":"Other Structures","94":"Other Structures","95":"Other Structures","96":"Other Structures","97":"Other Structures","98":"Residential Buildings","99":"Computers and Software","100":"Computers and Software","101":"Computers and Software","102":"Computers and Software","103":"Computers and Software","104":"Computers and Software","105":"Computers and Software","106":"Computers and Software","107":"Computers and Software","108":"Computers and Software","109":"Industrial Machinery","110":"Industrial Machinery","111":"Instruments and Communications Equipment","112":"Instruments and Communications Equipment","113":"Instruments and Communications Equipment","114":"Instruments and Communications Equipment","115":"Instruments and Communications Equipment","116":"Instruments and Communications Equipment","117":"Office and Residential Equipment","118":"Office and Residential Equipment","119":"Office and Residential Equipment","120":"Other Equipment","121":"Other Equipment","122":"Other Equipment","123":"Other Industrial Equipment","124":"Other Industrial Equipment","125":"Other Industrial Equipment","126":"Other Industrial Equipment","127":"Other Industrial Equipment","128":"Other Industrial Equipment","129":"Other Industrial Equipment","130":"Other Industrial Equipment","131":"Other Industrial Equipment","132":"Transportation Equipment","133":"Transportation Equipment","134":"Transportation Equipment","135":"Transportation Equipment","136":"Transportation Equipment","137":"Transportation Equipment","138":"Transportation Equipment","139":"Transportation Equipment","140":"Intellectual Property","141":"Intellectual Property","142":"Intellectual Property","143":"Intellectual Property","144":"Intellectual Property","145":"Intellectual Property","146":"Intellectual Property","147":"Intellectual Property","148":"Intellectual Property","149":"Intellectual Property","150":"Intellectual Property","151":"Intellectual Property","152":"Intellectual Property","153":"Intellectual Property","154":"Intellectual Property","155":"Intellectual Property","156":"Intellectual Property","157":"Intellectual Property","158":"Intellectual Property","159":"Intellectual Property","160":"Intellectual Property","161":"Intellectual Property","162":"Intellectual Property","163":"Inventories","164":"Land","165":"Mining and Drilling Structures","166":"Mining and Drilling Structures","167":"Mining and Drilling Structures","168":"Mining and Drilling Structures","169":"Mining and Drilling Structures","170":"Nonresidential Buildings","171":"Nonresidential Buildings","172":"Nonresidential Buildings","173":"Nonresidential Buildings","174":"Nonresidential Buildings","175":"Nonresidential Buildings","176":"Nonresidential Buildings","177":"Nonresidential Buildings","178":"Nonresidential Buildings","179":"Nonresidential Buildings","180":"Nonresidential Buildings","181":"Nonresidential Buildings","182":"Nonresidential Buildings","183":"Nonresidential Buildings","184":"Nonresidential Buildings","185":"Other Structures","186":"Other Structures","187":"Other Structures","188":"Other Structures","189":"Other Structures","190":"Other Structures","191":"Other Structures","192":"Other Structures","193":"Other Structures","194":"Other Structures","195":"Other Structures","196":"Other Structures","197":"Residential Buildings","198":"Computers and Software","199":"Industrial Machinery","200":"Instruments and Communications Equipment","201":"Intellectual Property","204":"Mining and Drilling Structures","205":"Nonresidential Buildings","206":"Office and Residential Equipment","207":"Other Equipment","208":"Other Industrial Equipment","209":"Other Structures","210":"Residential Buildings","211":"Transportation Equipment","212":"Computers and Software","213":"Industrial Machinery","214":"Instruments and Communications Equipment","215":"Intellectual Property","218":"Mining and Drilling Structures","219":"Nonresidential Buildings","220":"Office and Residential Equipment","221":"Other Equipment","222":"Other Industrial Equipment","223":"Other Structures","224":"Residential Buildings","225":"Transportation Equipment","226":"Equipment","230":"Structures","231":"Equipment","235":"Structures","236":"Overall","237":"Overall"},"rho_d":{"0":0.03272,"1":0.03272,"2":0.03272,"3":0.03272,"4":0.03272,"5":0.03272,"6":0.03272,"7":0.03272,"8":0.03272,"9":0.03272,"10":0.03272,"11":0.03272,"12":0.03272,"13":0.03272,"14":0.03272,"15":0.03272,"16":0.03272,"17":0.03272,"18":0.03272,"19":0.03272,"20":0.03272,"21":0.03272,"22":0.03272,"23":0.03272,"24":0.03272,"25":0.03272,"26":0.03272,"27":0.03272,"28":0.03272,"29":0.03272,"30":0.03272,"31":0.03272,"32":0.03272,"33":0.03272,"34":0.03272,"35":0.03272,"36":0.03272,"37":0.03272,"38":0.03272,"39":0.03272,"40":0.03272,"41":0.03272,"42":0.03272,"43":0.03272,"44":0.03272,"45":0.03272,"46":0.03272,"47":0.03272,"48":0.03272,"49":0.03272,"50":0.03272,"51":0.03272,"52":0.03272,"53":0.03272,"54":0.03272,"55":0.03272,"56":0.03272,"57":0.03272,"58":0.03272,"59":0.03272,"60":0.03272,"61":0.03272,"62":0.03272,"63":0.03272,"64":0.0440988313,"65":0.0414177215,"66":0.03272,"67":0.03272,"68":0.03272,"69":0.03272,"70":0.03272,"71":0.0394944415,"72":0.0406827814,"73":0.0406827814,"74":0.0406827814,"75":0.0421201624,"76":0.0414401111,"77":0.0414401111,"78":0.0412546426,"79":0.0418265039,"80":0.0418265039,"81":0.0418265039,"82":0.0426302008,"83":0.0414401111,"84":0.0415946682,"85":0.0415946682,"86":0.03272,"87":0.0414401111,"88":0.03272,"89":0.03272,"90":0.03272,"91":0.03272,"92":0.03272,"93":0.03272,"94":0.03272,"95":0.03272,"96":0.03272,"97":0.03272,"98":0.0389451301,"99":0.0330570753,"100":0.0330570753,"101":0.0330570753,"102":0.0330570753,"103":0.0330570753,"104":0.0330570753,"105":0.0330570753,"106":0.0330570753,"107":0.0330570753,"108":0.0330570753,"109":0.0330570753,"110":0.0330570753,"111":0.0330570753,"112":0.0330570753,"113":0.0330570753,"114":0.0330570753,"115":0.0330570753,"116":0.0330570753,"117":0.0330570753,"118":0.0330570753,"119":0.0330570753,"120":0.0330570753,"121":0.0330570753,"122":0.0330570753,"123":0.0330570753,"124":0.0330570753,"125":0.0330570753,"126":0.0330570753,"127":0.0330570753,"128":0.0330570753,"129":0.0330570753,"130":0.0330570753,"131":0.0330570753,"132":0.0330570753,"133":0.0330570753,"134":0.0330570753,"135":0.0330570753,"136":0.0330570753,"137":0.0330570753,"138":0.0330570753,"139":0.0330570753,"140":0.0330570753,"141":0.0330570753,"142":0.0330570753,"143":0.0330570753,"144":0.0330570753,"145":0.0330570753,"146":0.0330570753,"147":0.0330570753,"148":0.0330570753,"149":0.0330570753,"150":0.0330570753,"151":0.0330570753,"152":0.0330570753,"153":0.0330570753,"154":0.0330570753,"155":0.0330570753,"156":0.0330570753,"157":0.0330570753,"158":0.0330570753,"159":0.0330570753,"160":0.0330570753,"161":0.0330570753,"162":0.0330570753,"163":0.0441840693,"164":0.0415834765,"165":0.0330570753,"166":0.0330570753,"167":0.0330570753,"168":0.0330570753,"169":0.0330570753,"170":0.039695966,"171":0.0408586815,"172":0.0408586815,"173":0.0408586815,"174":0.0422578143,"175":0.041595859,"176":0.041595859,"177":0.0414153257,"178":0.04197197,"179":0.04197197,"180":0.04197197,"181":0.0427542808,"182":0.041595859,"183":0.0417463034,"184":0.0417463034,"185":0.0330570753,"186":0.041595859,"187":0.0330570753,"188":0.0330570753,"189":0.0330570753,"190":0.0330570753,"191":0.0330570753,"192":0.0330570753,"193":0.0330570753,"194":0.0330570753,"195":0.0330570753,"196":0.0330570753,"197":0.0391623259,"198":0.03272,"199":0.03272,"200":0.03272,"201":0.03272,"204":0.03272,"205":0.0417084119,"206":0.03272,"207":0.03272,"208":0.03272,"209":0.0327631597,"210":0.0389451301,"211":0.03272,"212":0.0330570753,"213":0.0330570753,"214":0.0330570753,"215":0.0330570753,"218":0.0330570753,"219":0.0416083266,"220":0.0330570753,"221":0.0330570753,"222":0.0330570753,"223":0.0330957943,"224":0.0391623259,"225":0.0330570753,"226":0.03272,"230":0.0375440933,"231":0.0330570753,"235":0.0394225556,"236":0.0372399859,"237":0.0400811954},"rho_e":{"0":0.058,"1":0.058,"2":0.058,"3":0.058,"4":0.058,"5":0.058,"6":0.058,"7":0.058,"8":0.058,"9":0.058,"10":0.058,"11":0.058,"12":0.058,"13":0.058,"14":0.058,"15":0.058,"16":0.058,"17":0.058,"18":0.058,"19":0.058,"20":0.058,"21":0.058,"22":0.058,"23":0.058,"24":0.058,"25":0.058,"26":0.058,"27":0.058,"28":0.058,"29":0.058,"30":0.058,"31":0.058,"32":0.058,"33":0.058,"34":0.058,"35":0.058,"36":0.058,"37":0.058,"38":0.058,"39":0.058,"40":0.058,"41":0.058,"42":0.058,"43":0.058,"44":0.058,"45":0.058,"46":0.058,"47":0.058,"48":0.058,"49":0.058,"50":0.058,"51":0.058,"52":0.058,"53":0.058,"54":0.058,"55":0.058,"56":0.058,"57":0.058,"58":0.058,"59":0.058,"60":0.058,"61":0.058,"62":0.058,"63":0.058,"64":0.0759428042,"65":0.0734177215,"66":0.058,"67":0.058,"68":0.058,"69":0.058,"70":0.058,"71":0.0701919399,"72":0.0720932617,"73":0.0720932617,"74":0.0720932617,"75":0.0737998676,"76":0.0729924412,"77":0.0729924412,"78":0.0727722339,"79":0.0734512062,"80":0.0734512062,"81":0.0734512062,"82":0.0744054374,"83":0.0729924412,"84":0.0731759472,"85":0.0731759472,"86":0.058,"87":0.0729924412,"88":0.058,"89":0.058,"90":0.058,"91":0.058,"92":0.058,"93":0.058,"94":0.058,"95":0.058,"96":0.058,"97":0.058,"98":0.0696970181,"99":0.0521412448,"100":0.0521412448,"101":0.0521412448,"102":0.0521412448,"103":0.0521412448,"104":0.0521412448,"105":0.0521412448,"106":0.0521412448,"107":0.0521412448,"108":0.0521412448,"109":0.0521412448,"110":0.0521412448,"111":0.0521412448,"112":0.0521412448,"113":0.0521412448,"114":0.0521412448,"115":0.0521412448,"116":0.0521412448,"117":0.0521412448,"118":0.0521412448,"119":0.0521412448,"120":0.0521412448,"121":0.0521412448,"122":0.0521412448,"123":0.0521412448,"124":0.0521412448,"125":0.0521412448,"126":0.0521412448,"127":0.0521412448,"128":0.0521412448,"129":0.0521412448,"130":0.0521412448,"131":0.0521412448,"132":0.0521412448,"133":0.0521412448,"134":0.0521412448,"135":0.0521412448,"136":0.0521412448,"137":0.0521412448,"138":0.0521412448,"139":0.0521412448,"140":0.0521412448,"141":0.0521412448,"142":0.0521412448,"143":0.0521412448,"144":0.0521412448,"145":0.0521412448,"146":0.0521412448,"147":0.0521412448,"148":0.0521412448,"149":0.0521412448,"150":0.0521412448,"151":0.0521412448,"152":0.0521412448,"153":0.0521412448,"154":0.0521412448,"155":0.0521412448,"156":0.0521412448,"157":0.0521412448,"158":0.0521412448,"159":0.0521412448,"160":0.0521412448,"161":0.0521412448,"162":0.0521412448,"163":0.0680825512,"164":0.06559002,"165":0.0521412448,"166":0.0521412448,"167":0.0521412448,"168":0.0521412448,"169":0.0521412448,"170":0.0627025533,"171":0.0643945665,"172":0.0643945665,"173":0.0643945665,"174":0.0660009084,"175":0.0652409187,"176":0.0652409187,"177":0.0650336488,"178":0.065672731,"179":0.065672731,"180":0.065672731,"181":0.0665709007,"182":0.0652409187,"183":0.0654136436,"184":0.0654136436,"185":0.0521412448,"186":0.0652409187,"187":0.0521412448,"188":0.0521412448,"189":0.0521412448,"190":0.0521412448,"191":0.0521412448,"192":0.0521412448,"193":0.0521412448,"194":0.0521412448,"195":0.0521412448,"196":0.0521412448,"197":0.0621940699,"198":0.058,"199":0.058,"200":0.058,"201":0.058,"204":0.058,"205":0.0733001562,"206":0.058,"207":0.058,"208":0.058,"209":0.0580742042,"210":0.0696970181,"211":0.058,"212":0.0521412448,"213":0.0521412448,"214":0.0521412448,"215":0.0521412448,"218":0.0521412448,"219":0.065230524,"220":0.0521412448,"221":0.0521412448,"222":0.0521412448,"223":0.0522006452,"224":0.0621940699,"225":0.0521412448,"226":0.058,"230":0.0662529173,"231":0.0521412448,"235":0.0620601271,"236":0.0657120658,"237":0.0630991278},"rho_mix":{"0":0.0499104,"1":0.0499104,"2":0.0499104,"3":0.0499104,"4":0.0499104,"5":0.0499104,"6":0.0499104,"7":0.0499104,"8":0.0499104,"9":0.0499104,"10":0.0499104,"11":0.0499104,"12":0.0499104,"13":0.0499104,"14":0.0499104,"15":0.0499104,"16":0.0499104,"17":0.0499104,"18":0.0499104,"19":0.0499104,"20":0.0499104,"21":0.0499104,"22":0.0499104,"23":0.0499104,"24":0.0499104,"25":0.0499104,"26":0.0499104,"27":0.0499104,"28":0.0499104,"29":0.0499104,"30":0.0499104,"31":0.0499104,"32":0.0499104,"33":0.0499104,"34":0.0499104,"35":0.0499104,"36":0.0499104,"37":0.0499104,"38":0.0499104,"39":0.0499104,"40":0.0499104,"41":0.0499104,"42":0.0499104,"43":0.0499104,"44":0.0499104,"45":0.0499104,"46":0.0499104,"47":0.0499104,"48":0.0499104,"49":0.0499104,"50":0.0499104,"51":0.0499104,"52":0.0499104,"53":0.0499104,"54":0.0499104,"55":0.0499104,"56":0.0499104,"57":0.0499104,"58":0.0499104,"59":0.0499104,"60":0.0499104,"61":0.0499104,"62":0.0499104,"63":0.0499104,"64":0.0657603068,"65":0.0631777215,"66":0.0499104,"67":0.0499104,"68":0.0499104,"69":0.0499104,"70":0.0499104,"71":0.0603039889,"72":0.0619864025,"73":0.0619864025,"74":0.0619864025,"75":0.0636208978,"76":0.0628475882,"77":0.0628475882,"78":0.0626366856,"79":0.0632869687,"80":0.0632869687,"81":0.0632869687,"82":0.06420088,"83":0.0628475882,"84":0.0630233404,"85":0.0630233404,"86":0.0499104,"87":0.0628475882,"88":0.0499104,"89":0.0499104,"90":0.0499104,"91":0.0499104,"92":0.0499104,"93":0.0499104,"94":0.0499104,"95":0.0499104,"96":0.0499104,"97":0.0499104,"98":0.0597711497,"99":0.0466068357,"100":0.0466068357,"101":0.0466068357,"102":0.0466068357,"103":0.0466068357,"104":0.0466068357,"105":0.0466068357,"106":0.0466068357,"107":0.0466068357,"108":0.0466068357,"109":0.0466068357,"110":0.0466068357,"111":0.0466068357,"112":0.0466068357,"113":0.0466068357,"114":0.0466068357,"115":0.0466068357,"116":0.0466068357,"117":0.0466068357,"118":0.0466068357,"119":0.0466068357,"120":0.0466068357,"121":0.0466068357,"122":0.0466068357,"123":0.0466068357,"124":0.0466068357,"125":0.0466068357,"126":0.0466068357,"127":0.0466068357,"128":0.0466068357,"129":0.0466068357,"130":0.0466068357,"131":0.0466068357,"132":0.0466068357,"133":0.0466068357,"134":0.0466068357,"135":0.0466068357,"136":0.0466068357,"137":0.0466068357,"138":0.0466068357,"139":0.0466068357,"140":0.0466068357,"141":0.0466068357,"142":0.0466068357,"143":0.0466068357,"144":0.0466068357,"145":0.0466068357,"146":0.0466068357,"147":0.0466068357,"148":0.0466068357,"149":0.0466068357,"150":0.0466068357,"151":0.0466068357,"152":0.0466068357,"153":0.0466068357,"154":0.0466068357,"155":0.0466068357,"156":0.0466068357,"157":0.0466068357,"158":0.0466068357,"159":0.0466068357,"160":0.0466068357,"161":0.0466068357,"162":0.0466068357,"163":0.0611559368,"164":0.0586281224,"165":0.0466068357,"166":0.0466068357,"167":0.0466068357,"168":0.0466068357,"169":0.0466068357,"170":0.0559939744,"171":0.0575369522,"172":0.0575369522,"173":0.0575369522,"174":0.0590910724,"175":0.0583557897,"176":0.0583557897,"177":0.0581552581,"178":0.0587735639,"179":0.0587735639,"180":0.0587735639,"181":0.0596425344,"182":0.0583557897,"183":0.0585228994,"184":0.0585228994,"185":0.0466068357,"186":0.0583557897,"187":0.0466068357,"188":0.0466068357,"189":0.0466068357,"190":0.0466068357,"191":0.0466068357,"192":0.0466068357,"193":0.0466068357,"194":0.0466068357,"195":0.0466068357,"196":0.0466068357,"197":0.0554667877,"198":0.0499104,"199":0.0499104,"200":0.0499104,"201":0.0499104,"204":0.0499104,"205":0.0631453638,"206":0.0499104,"207":0.0499104,"208":0.0499104,"209":0.0499744318,"210":0.0597711497,"211":0.0499104,"212":0.0466068357,"213":0.0466068357,"214":0.0466068357,"215":0.0466068357,"218":0.0466068357,"219":0.058352239,"220":0.0466068357,"221":0.0466068357,"222":0.0466068357,"223":0.0466601112,"224":0.0554667877,"225":0.0466068357,"226":0.0499104,"230":0.0570396934,"231":0.0466068357,"235":0.0554675162,"236":0.0565899692,"237":0.056415921},"tax_treat":{"0":"corporate","1":"corporate","2":"corporate","3":"corporate","4":"corporate","5":"corporate","6":"corporate","7":"corporate","8":"corporate","9":"corporate","10":"corporate","11":"corporate","12":"corporate","13":"corporate","14":"corporate","15":"corporate","16":"corporate","17":"corporate","18":"corporate","19":"corporate","20":"corporate","21":"corporate","22":"corporate","23":"corporate","24":"corporate","25":"corporate","26":"corporate","27":"corporate","28":"corporate","29":"corporate","30":"corporate","31":"corporate","32":"corporate","33":"corporate","34":"corporate","35":"corporate","36":"corporate","37":"corporate","38":"corporate","39":"corporate","40":"corporate","41":"corporate","42":"corporate","43":"corporate","44":"corporate","45":"corporate","46":"corporate","47":"corporate","48":"corporate","49":"corporate","50":"corporate","51":"corporate","52":"corporate","53":"corporate","54":"corporate","55":"corporate","56":"corporate","57":"corporate","58":"corporate","59":"corporate","60":"corporate","61":"corporate","62":"corporate","63":"corporate","64":"corporate","65":"corporate","66":"corporate","67":"corporate","68":"corporate","69":"corporate","70":"corporate","71":"corporate","72":"corporate","73":"corporate","74":"corporate","75":"corporate","76":"corporate","77":"corporate","78":"corporate","79":"corporate","80":"corporate","81":"corporate","82":"corporate","83":"corporate","84":"corporate","85":"corporate","86":"corporate","87":"corporate","88":"corporate","89":"corporate","90":"corporate","91":"corporate","92":"corporate","93":"corporate","94":"corporate","95":"corporate","96":"corporate","97":"corporate","98":"corporate","99":"non-corporate","100":"non-corporate","101":"non-corporate","102":"non-corporate","103":"non-corporate","104":"non-corporate","105":"non-corporate","106":"non-corporate","107":"non-corporate","108":"non-corporate","109":"non-corporate","110":"non-corporate","111":"non-corporate","112":"non-corporate","113":"non-corporate","114":"non-corporate","115":"non-corporate","116":"non-corporate","117":"non-corporate","118":"non-corporate","119":"non-corporate","120":"non-corporate","121":"non-corporate","122":"non-corporate","123":"non-corporate","124":"non-corporate","125":"non-corporate","126":"non-corporate","127":"non-corporate","128":"non-corporate","129":"non-corporate","130":"non-corporate","131":"non-corporate","132":"non-corporate","133":"non-corporate","134":"non-corporate","135":"non-corporate","136":"non-corporate","137":"non-corporate","138":"non-corporate","139":"non-corporate","140":"non-corporate","141":"non-corporate","142":"non-corporate","143":"non-corporate","144":"non-corporate","145":"non-corporate","146":"non-corporate","147":"non-corporate","148":"non-corporate","149":"non-corporate","150":"non-corporate","151":"non-corporate","152":"non-corporate","153":"non-corporate","154":"non-corporate","155":"non-corporate","156":"non-corporate","157":"non-corporate","158":"non-corporate","159":"non-corporate","160":"non-corporate","161":"non-corporate","162":"non-corporate","163":"non-corporate","164":"non-corporate","165":"non-corporate","166":"non-corporate","167":"non-corporate","168":"non-corporate","169":"non-corporate","170":"non-corporate","171":"non-corporate","172":"non-corporate","173":"non-corporate","174":"non-corporate","175":"non-corporate","176":"non-corporate","177":"non-corporate","178":"non-corporate","179":"non-corporate","180":"non-corporate","181":"non-corporate","182":"non-corporate","183":"non-corporate","184":"non-corporate","185":"non-corporate","186":"non-corporate","187":"non-corporate","188":"non-corporate","189":"non-corporate","190":"non-corporate","191":"non-corporate","192":"non-corporate","193":"non-corporate","194":"non-corporate","195":"non-corporate","196":"non-corporate","197":"non-corporate","198":"corporate","199":"corporate","200":"corporate","201":"corporate","204":"corporate","205":"corporate","206":"corporate","207":"corporate","208":"corporate","209":"corporate","210":"corporate","211":"corporate","212":"non-corporate","213":"non-corporate","214":"non-corporate","215":"non-corporate","218":"non-corporate","219":"non-corporate","220":"non-corporate","221":"non-corporate","222":"non-corporate","223":"non-corporate","224":"non-corporate","225":"non-corporate","226":"corporate","230":"corporate","231":"non-corporate","235":"non-corporate","236":"corporate","237":"non-corporate"},"tax_wedge_d":{"0":-0.0019241311,"1":-0.0019241311,"2":-0.0019241311,"3":-0.0019241311,"4":-0.0019241311,"5":-0.0019241311,"6":-0.0019241311,"7":-0.0019241311,"8":-0.0019241311,"9":-0.0019241311,"10":-0.0019241311,"11":-0.0019241311,"12":-0.0019241311,"13":-0.0019241311,"14":-0.0019241311,"15":-0.0019241311,"16":-0.0019241311,"17":-0.0019241311,"18":-0.0019241311,"19":-0.0019241311,"20":-0.0019241311,"21":-0.0019241311,"22":-0.0019241311,"23":-0.0019241311,"24":-0.0019241311,"25":-0.0019241311,"26":-0.0019241311,"27":-0.0019241311,"28":-0.0019241311,"29":-0.0019241311,"30":-0.0019241311,"31":-0.0019241311,"32":-0.0019241311,"33":-0.0019241311,"34":-0.0019241311,"35":-0.0019241311,"36":-0.0019241311,"37":-0.0019241311,"38":-0.0019241311,"39":-0.0019241311,"40":-0.0019241311,"41":-0.0019241311,"42":-0.0019241311,"43":-0.0019241311,"44":-0.0019241311,"45":-0.0019241311,"46":-0.0019241311,"47":-0.0019241311,"48":-0.0019241311,"49":-0.0019241311,"50":-0.0019241311,"51":-0.0019241311,"52":-0.0019241311,"53":-0.0019241311,"54":-0.0019241311,"55":-0.0019241311,"56":-0.0019241311,"57":-0.0019241311,"58":-0.0019241311,"59":-0.0019241311,"60":-0.0019241311,"61":-0.0019241311,"62":-0.0019241311,"63":-0.0019241311,"64":0.0094547002,"65":0.0067735905,"66":-0.0019241311,"67":-0.0019241311,"68":-0.0019241311,"69":-0.0019241311,"70":-0.0019241311,"71":0.0048503104,"72":0.0060386503,"73":0.0060386503,"74":0.0060386503,"75":0.0074760313,"76":0.0067959801,"77":0.0067959801,"78":0.0066105116,"79":0.0071823728,"80":0.0071823728,"81":0.0071823728,"82":0.0079860697,"83":0.0067959801,"84":0.0069505372,"85":0.0069505372,"86":-0.0019241311,"87":0.0067959801,"88":-0.0019241311,"89":-0.0019241311,"90":-0.0019241311,"91":-0.0019241311,"92":-0.0019241311,"93":-0.0019241311,"94":-0.0019241311,"95":-0.0019241311,"96":-0.0019241311,"97":-0.0019241311,"98":0.004300999,"99":0.0031521979,"100":0.0031521979,"101":0.0031521979,"102":0.0031521979,"103":0.0031521979,"104":0.0031521979,"105":0.0031521979,"106":0.0031521979,"107":0.0031521979,"108":0.0031521979,"109":0.0031521979,"110":0.0031521979,"111":0.0031521979,"112":0.0031521979,"113":0.0031521979,"114":0.0031521979,"115":0.0031521979,"116":0.0031521979,"117":0.0031521979,"118":0.0031521979,"119":0.0031521979,"120":0.0031521979,"121":0.0031521979,"122":0.0031521979,"123":0.0031521979,"124":0.0031521979,"125":0.0031521979,"126":0.0031521979,"127":0.0031521979,"128":0.0031521979,"129":0.0031521979,"130":0.0031521979,"131":0.0031521979,"132":0.0031521979,"133":0.0031521979,"134":0.0031521979,"135":0.0031521979,"136":0.0031521979,"137":0.0031521979,"138":0.0031521979,"139":0.0031521979,"140":0.0031521979,"141":0.0031521979,"142":0.0031521979,"143":0.0031521979,"144":0.0031521979,"145":0.0031521979,"146":0.0031521979,"147":0.0031521979,"148":0.0031521979,"149":0.0031521979,"150":0.0031521979,"151":0.0031521979,"152":0.0031521979,"153":0.0031521979,"154":0.0031521979,"155":0.0031521979,"156":0.0031521979,"157":0.0031521979,"158":0.0031521979,"159":0.0031521979,"160":0.0031521979,"161":0.0031521979,"162":0.0031521979,"163":0.014279192,"164":0.0116785991,"165":0.0031521979,"166":0.0031521979,"167":0.0031521979,"168":0.0031521979,"169":0.0031521979,"170":0.0097910886,"171":0.0109538041,"172":0.0109538041,"173":0.0109538041,"174":0.0123529369,"175":0.0116909816,"176":0.0116909816,"177":0.0115104484,"178":0.0120670926,"179":0.0120670926,"180":0.0120670926,"181":0.0128494034,"182":0.0116909816,"183":0.011841426,"184":0.011841426,"185":0.0031521979,"186":0.0116909816,"187":0.0031521979,"188":0.0031521979,"189":0.0031521979,"190":0.0031521979,"191":0.0031521979,"192":0.0031521979,"193":0.0031521979,"194":0.0031521979,"195":0.0031521979,"196":0.0031521979,"197":0.0092574485,"198":-0.0019241311,"199":-0.0019241311,"200":-0.0019241311,"201":-0.0019241311,"204":-0.0019241311,"205":0.0070642808,"206":-0.0019241311,"207":-0.0019241311,"208":-0.0019241311,"209":-0.0018809714,"210":0.004300999,"211":-0.0019241311,"212":0.0031521979,"213":0.0031521979,"214":0.0031521979,"215":0.0031521979,"218":0.0031521979,"219":0.0117034493,"220":0.0031521979,"221":0.0031521979,"222":0.0031521979,"223":0.003190917,"224":0.0092574485,"225":0.0031521979,"226":-0.0019241311,"230":0.0028999622,"231":0.0031521979,"235":0.0095176782,"236":0.0025958548,"237":0.0101763181},"tax_wedge_e":{"0":0.0058587552,"1":0.0058587552,"2":0.0058587552,"3":0.0058587552,"4":0.0058587552,"5":0.0058587552,"6":0.0058587552,"7":0.0058587552,"8":0.0058587552,"9":0.0058587552,"10":0.0058587552,"11":0.0058587552,"12":0.0058587552,"13":0.0058587552,"14":0.0058587552,"15":0.0058587552,"16":0.0058587552,"17":0.0058587552,"18":0.0058587552,"19":0.0058587552,"20":0.0058587552,"21":0.0058587552,"22":0.0058587552,"23":0.0058587552,"24":0.0058587552,"25":0.0058587552,"26":0.0058587552,"27":0.0058587552,"28":0.0058587552,"29":0.0058587552,"30":0.0058587552,"31":0.0058587552,"32":0.0058587552,"33":0.0058587552,"34":0.0058587552,"35":0.0058587552,"36":0.0058587552,"37":0.0058587552,"38":0.0058587552,"39":0.0058587552,"40":0.0058587552,"41":0.0058587552,"42":0.0058587552,"43":0.0058587552,"44":0.0058587552,"45":0.0058587552,"46":0.0058587552,"47":0.0058587552,"48":0.0058587552,"49":0.0058587552,"50":0.0058587552,"51":0.0058587552,"52":0.0058587552,"53":0.0058587552,"54":0.0058587552,"55":0.0058587552,"56":0.0058587552,"57":0.0058587552,"58":0.0058587552,"59":0.0058587552,"60":0.0058587552,"61":0.0058587552,"62":0.0058587552,"63":0.0058587552,"64":0.0238015593,"65":0.0212764767,"66":0.0058587552,"67":0.0058587552,"68":0.0058587552,"69":0.0058587552,"70":0.0058587552,"71":0.0180506951,"72":0.0199520169,"73":0.0199520169,"74":0.0199520169,"75":0.0216586228,"76":0.0208511963,"77":0.0208511963,"78":0.0206309891,"79":0.0213099613,"80":0.0213099613,"81":0.0213099613,"82":0.0222641926,"83":0.0208511963,"84":0.0210347023,"85":0.0210347023,"86":0.0058587552,"87":0.0208511963,"88":0.0058587552,"89":0.0058587552,"90":0.0058587552,"91":0.0058587552,"92":0.0058587552,"93":0.0058587552,"94":0.0058587552,"95":0.0058587552,"96":0.0058587552,"97":0.0058587552,"98":0.0175557733,"99":5.551115123e-17,"100":-2.081668171e-17,"101":-6.938893904e-18,"102":-1.387778781e-17,"103":-2.081668171e-17,"104":-2.775557562e-17,"105":-2.081668171e-17,"106":-2.081668171e-17,"107":0.0,"108":-1.387778781e-17,"109":6.938893904e-18,"110":6.938893904e-18,"111":-1.387778781e-17,"112":-1.387778781e-17,"113":-2.775557562e-17,"114":-6.938893904e-18,"115":6.938893904e-18,"116":-6.938893904e-18,"117":-1.387778781e-17,"118":-2.775557562e-17,"119":-1.387778781e-17,"120":1.387778781e-17,"121":-6.938893904e-18,"122":-1.387778781e-17,"123":-2.081668171e-17,"124":-2.081668171e-17,"125":-1.387778781e-17,"126":0.0,"127":-6.938893904e-18,"128":-6.938893904e-18,"129":-1.387778781e-17,"130":-1.387778781e-17,"131":6.938893904e-18,"132":0.0,"133":0.0,"134":-6.938893904e-18,"135":-1.387778781e-17,"136":-4.163336342e-17,"137":6.938893904e-18,"138":-6.938893904e-18,"139":-2.775557562e-17,"140":2.081668171e-17,"141":6.938893904e-18,"142":-6.938893904e-18,"143":-6.938893904e-18,"144":0.0,"145":0.0,"146":1.387778781e-17,"147":2.081668171e-17,"148":-1.387778781e-17,"149":-2.081668171e-17,"150":-2.775557562e-17,"151":-1.387778781e-17,"152":-1.387778781e-17,"153":-1.387778781e-17,"154":6.938893904e-18,"155":6.938893904e-18,"156":6.938893904e-18,"157":3.469446952e-17,"158":2.081668171e-17,"159":1.387778781e-17,"160":1.387778781e-17,"161":2.775557562e-17,"162":1.387778781e-17,"163":0.0159413064,"164":0.0134487752,"165":-1.387778781e-17,"166":6.938893904e-18,"167":1.387778781e-17,"168":-6.938893904e-18,"169":-6.938893904e-18,"170":0.0105613084,"171":0.0122533217,"172":0.0122533217,"173":0.0122533217,"174":0.0138596636,"175":0.0130996739,"176":0.0130996739,"177":0.0128924039,"178":0.0135314862,"179":0.0135314862,"180":0.0135314862,"181":0.0144296558,"182":0.0130996739,"183":0.0132723988,"184":0.0132723988,"185":6.938893904e-18,"186":0.0130996739,"187":0.0,"188":-6.938893904e-18,"189":1.387778781e-17,"190":2.081668171e-17,"191":2.081668171e-17,"192":1.387778781e-17,"193":2.081668171e-17,"194":6.938893904e-18,"195":-6.938893904e-18,"196":1.387778781e-17,"197":0.0100528251,"198":0.0058587552,"199":0.0058587552,"200":0.0058587552,"201":0.0058587552,"204":0.0058587552,"205":0.0211589114,"206":0.0058587552,"207":0.0058587552,"208":0.0058587552,"209":0.0059329593,"210":0.0175557733,"211":0.0058587552,"212":-1.387778781e-17,"213":0.0,"214":0.0,"215":0.0,"218":-6.938893904e-18,"219":0.0130892792,"220":-3.469446952e-17,"221":-6.938893904e-18,"222":0.0,"223":0.0000594004,"224":0.0100528251,"225":6.938893904e-18,"226":0.0058587552,"230":0.0141116725,"231":6.938893904e-18,"235":0.0099188823,"236":0.013570821,"237":0.0109578829},"tax_wedge_mix":{"0":0.0033682316,"1":0.0033682316,"2":0.0033682316,"3":0.0033682316,"4":0.0033682316,"5":0.0033682316,"6":0.0033682316,"7":0.0033682316,"8":0.0033682316,"9":0.0033682316,"10":0.0033682316,"11":0.0033682316,"12":0.0033682316,"13":0.0033682316,"14":0.0033682316,"15":0.0033682316,"16":0.0033682316,"17":0.0033682316,"18":0.0033682316,"19":0.0033682316,"20":0.0033682316,"21":0.0033682316,"22":0.0033682316,"23":0.0033682316,"24":0.0033682316,"25":0.0033682316,"26":0.0033682316,"27":0.0033682316,"28":0.0033682316,"29":0.0033682316,"30":0.0033682316,"31":0.0033682316,"32":0.0033682316,"33":0.0033682316,"34":0.0033682316,"35":0.0033682316,"36":0.0033682316,"37":0.0033682316,"38":0.0033682316,"39":0.0033682316,"40":0.0033682316,"41":0.0033682316,"42":0.0033682316,"43":0.0033682316,"44":0.0033682316,"45":0.0033682316,"46":0.0033682316,"47":0.0033682316,"48":0.0033682316,"49":0.0033682316,"50":0.0033682316,"51":0.0033682316,"52":0.0033682316,"53":0.0033682316,"54":0.0033682316,"55":0.0033682316,"56":0.0033682316,"57":0.0033682316,"58":0.0033682316,"59":0.0033682316,"60":0.0033682316,"61":0.0033682316,"62":0.0033682316,"63":0.0033682316,"64":0.0192181384,"65":0.0166355531,"66":0.0033682316,"67":0.0033682316,"68":0.0033682316,"69":0.0033682316,"70":0.0033682316,"71":0.0137618204,"72":0.0154442341,"73":0.0154442341,"74":0.0154442341,"75":0.0170787294,"76":0.0163054198,"77":0.0163054198,"78":0.0160945172,"79":0.0167448002,"80":0.0167448002,"81":0.0167448002,"82":0.0176587116,"83":0.0163054198,"84":0.016481172,"85":0.016481172,"86":0.0033682316,"87":0.0163054198,"88":0.0033682316,"89":0.0033682316,"90":0.0033682316,"91":0.0033682316,"92":0.0033682316,"93":0.0033682316,"94":0.0033682316,"95":0.0033682316,"96":0.0033682316,"97":0.0033682316,"98":0.0132289813,"99":0.0009141374,"100":0.0009141374,"101":0.0009141374,"102":0.0009141374,"103":0.0009141374,"104":0.0009141374,"105":0.0009141374,"106":0.0009141374,"107":0.0009141374,"108":0.0009141374,"109":0.0009141374,"110":0.0009141374,"111":0.0009141374,"112":0.0009141374,"113":0.0009141374,"114":0.0009141374,"115":0.0009141374,"116":0.0009141374,"117":0.0009141374,"118":0.0009141374,"119":0.0009141374,"120":0.0009141374,"121":0.0009141374,"122":0.0009141374,"123":0.0009141374,"124":0.0009141374,"125":0.0009141374,"126":0.0009141374,"127":0.0009141374,"128":0.0009141374,"129":0.0009141374,"130":0.0009141374,"131":0.0009141374,"132":0.0009141374,"133":0.0009141374,"134":0.0009141374,"135":0.0009141374,"136":0.0009141374,"137":0.0009141374,"138":0.0009141374,"139":0.0009141374,"140":0.0009141374,"141":0.0009141374,"142":0.0009141374,"143":0.0009141374,"144":0.0009141374,"145":0.0009141374,"146":0.0009141374,"147":0.0009141374,"148":0.0009141374,"149":0.0009141374,"150":0.0009141374,"151":0.0009141374,"152":0.0009141374,"153":0.0009141374,"154":0.0009141374,"155":0.0009141374,"156":0.0009141374,"157":0.0009141374,"158":0.0009141374,"159":0.0009141374,"160":0.0009141374,"161":0.0009141374,"162":0.0009141374,"163":0.0154632385,"164":0.0129354241,"165":0.0009141374,"166":0.0009141374,"167":0.0009141374,"168":0.0009141374,"169":0.0009141374,"170":0.0103012761,"171":0.0118442539,"172":0.0118442539,"173":0.0118442539,"174":0.0133983741,"175":0.0126630914,"176":0.0126630914,"177":0.0124625598,"178":0.0130808657,"179":0.0130808657,"180":0.0130808657,"181":0.0139498361,"182":0.0126630914,"183":0.0128302011,"184":0.0128302011,"185":0.0009141374,"186":0.0126630914,"187":0.0009141374,"188":0.0009141374,"189":0.0009141374,"190":0.0009141374,"191":0.0009141374,"192":0.0009141374,"193":0.0009141374,"194":0.0009141374,"195":0.0009141374,"196":0.0009141374,"197":0.0097740894,"198":0.0033682316,"199":0.0033682316,"200":0.0033682316,"201":0.0033682316,"204":0.0033682316,"205":0.0166031954,"206":0.0033682316,"207":0.0033682316,"208":0.0033682316,"209":0.0034322634,"210":0.0132289813,"211":0.0033682316,"212":0.0009141374,"213":0.0009141374,"214":0.0009141374,"215":0.0009141374,"218":0.0009141374,"219":0.0126595407,"220":0.0009141374,"221":0.0009141374,"222":0.0009141374,"223":0.0009674129,"224":0.0097740894,"225":0.0009141374,"226":0.0033682316,"230":0.010497525,"231":0.0009141374,"235":0.0097748179,"236":0.0100478008,"237":0.0107232227},"ucc_d":{"0":0.58272,"1":0.36272,"2":0.49602,"3":0.49602,"4":0.49602,"5":0.49602,"6":0.49602,"7":0.49602,"8":0.49602,"9":0.49602,"10":0.13582,"11":0.13992,"12":0.34462,"13":0.14562,"14":0.21272,"15":0.16772,"16":0.16772,"17":0.16772,"18":0.17022,"19":0.15062,"20":0.19772,"21":0.18552,"22":0.21612,"23":0.18002,"24":0.28272,"25":0.12442,"26":0.15522,"27":0.08272,"28":0.17792,"29":0.19602,"30":0.15062,"31":0.18772,"32":0.18272,"33":0.08432,"34":0.23902,"35":0.20522,"36":0.20522,"37":0.36602,"38":0.11862,"39":0.09382,"40":0.09162,"41":0.12572,"42":0.20072,"43":0.15372,"44":0.29972,"45":0.14172,"46":0.36272,"47":0.13272,"48":0.19272,"49":0.43272,"50":0.30272,"51":0.28272,"52":0.32272,"53":0.43272,"54":0.34272,"55":0.25272,"56":0.25272,"57":0.19272,"58":0.39272,"59":0.19272,"60":0.19272,"61":0.19272,"62":0.19272,"63":0.19272,"64":0.0440988313,"65":0.0414177215,"66":0.10782,"67":0.07772,"68":0.05642,"69":0.10782,"70":0.05642,"71":0.0582944415,"72":0.0594827814,"73":0.0594827814,"74":0.0594827814,"75":0.0702201624,"76":0.0651401111,"77":0.0651401111,"78":0.0637546426,"79":0.0680265039,"80":0.0680265039,"81":0.0680265039,"82":0.0740302008,"83":0.0651401111,"84":0.0662946682,"85":0.0662946682,"86":0.06272,"87":0.0651401111,"88":0.05642,"89":0.05662,"90":0.05522,"91":0.05522,"92":0.05522,"93":0.08832,"94":0.05032,"95":0.05762,"96":0.05382,"97":0.06302,"98":0.0552588901,"99":0.5830570753,"100":0.3630570753,"101":0.4963570753,"102":0.4963570753,"103":0.4963570753,"104":0.4963570753,"105":0.4963570753,"106":0.4963570753,"107":0.4963570753,"108":0.4963570753,"109":0.1361570753,"110":0.1402570753,"111":0.3449570753,"112":0.1459570753,"113":0.2130570753,"114":0.1680570753,"115":0.1680570753,"116":0.1680570753,"117":0.1705570753,"118":0.1509570753,"119":0.1980570753,"120":0.1858570753,"121":0.2164570753,"122":0.1803570753,"123":0.2830570753,"124":0.1247570753,"125":0.1555570753,"126":0.0830570753,"127":0.1782570753,"128":0.1963570753,"129":0.1509570753,"130":0.1880570753,"131":0.1830570753,"132":0.0846570753,"133":0.2393570753,"134":0.2055570753,"135":0.2055570753,"136":0.3663570753,"137":0.1189570753,"138":0.0941570753,"139":0.0919570753,"140":0.1260570753,"141":0.2010570753,"142":0.1540570753,"143":0.3000570753,"144":0.1420570753,"145":0.3630570753,"146":0.1330570753,"147":0.1930570753,"148":0.4330570753,"149":0.3030570753,"150":0.2830570753,"151":0.3230570753,"152":0.4330570753,"153":0.3430570753,"154":0.2530570753,"155":0.2530570753,"156":0.1930570753,"157":0.3930570753,"158":0.1930570753,"159":0.1930570753,"160":0.1930570753,"161":0.1930570753,"162":0.1930570753,"163":0.0441840693,"164":0.0415834765,"165":0.1081570753,"166":0.0780570753,"167":0.0567570753,"168":0.1081570753,"169":0.0567570753,"170":0.058495966,"171":0.0596586815,"172":0.0596586815,"173":0.0596586815,"174":0.0703578143,"175":0.065295859,"176":0.065295859,"177":0.0639153257,"178":0.06817197,"179":0.06817197,"180":0.06817197,"181":0.0741542808,"182":0.065295859,"183":0.0664463034,"184":0.0664463034,"185":0.0630570753,"186":0.065295859,"187":0.0567570753,"188":0.0569570753,"189":0.0555570753,"190":0.0555570753,"191":0.0555570753,"192":0.0886570753,"193":0.0506570753,"194":0.0579570753,"195":0.0541570753,"196":0.0633570753,"197":0.0554760859,"198":0.4457579075,"199":0.1384102731,"200":0.1575679886,"201":0.2091614085,"204":0.090316421,"205":0.0673142823,"206":0.1520474586,"207":0.1834640896,"208":0.1302185367,"209":0.0556609889,"210":0.0552588901,"211":0.1729214543,"212":0.4501320159,"213":0.138911223,"214":0.1641927807,"215":0.2186631384,"218":0.0950919916,"219":0.0659259561,"220":0.1534604397,"221":0.1831520243,"222":0.1558797443,"223":0.0582782719,"224":0.0554760859,"225":0.1872804397,"226":0.1781022047,"230":0.070021736,"231":0.1893879601,"235":0.064377772,"236":0.0988567214,"237":0.0664715278},"ucc_e":{"0":0.608,"1":0.388,"2":0.5213,"3":0.5213,"4":0.5213,"5":0.5213,"6":0.5213,"7":0.5213,"8":0.5213,"9":0.5213,"10":0.1611,"11":0.1652,"12":0.3699,"13":0.1709,"14":0.238,"15":0.193,"16":0.193,"17":0.193,"18":0.1955,"19":0.1759,"20":0.223,"21":0.2108,"22":0.2414,"23":0.2053,"24":0.308,"25":0.1497,"26":0.1805,"27":0.108,"28":0.2032,"29":0.2213,"30":0.1759,"31":0.213,"32":0.208,"33":0.1096,"34":0.2643,"35":0.2305,"36":0.2305,"37":0.3913,"38":0.1439,"39":0.1191,"40":0.1169,"41":0.151,"42":0.226,"43":0.179,"44":0.325,"45":0.167,"46":0.388,"47":0.158,"48":0.218,"49":0.458,"50":0.328,"51":0.308,"52":0.348,"53":0.458,"54":0.368,"55":0.278,"56":0.278,"57":0.218,"58":0.418,"59":0.218,"60":0.218,"61":0.218,"62":0.218,"63":0.218,"64":0.0759428042,"65":0.0734177215,"66":0.1331,"67":0.103,"68":0.0817,"69":0.1331,"70":0.0817,"71":0.0889919399,"72":0.0908932617,"73":0.0908932617,"74":0.0908932617,"75":0.1018998676,"76":0.0966924412,"77":0.0966924412,"78":0.0952722339,"79":0.0996512062,"80":0.0996512062,"81":0.0996512062,"82":0.1058054374,"83":0.0966924412,"84":0.0978759472,"85":0.0978759472,"86":0.088,"87":0.0966924412,"88":0.0817,"89":0.0819,"90":0.0805,"91":0.0805,"92":0.0805,"93":0.1136,"94":0.0756,"95":0.0829,"96":0.0791,"97":0.0883,"98":0.0860107781,"99":0.6021412448,"100":0.3821412448,"101":0.5154412448,"102":0.5154412448,"103":0.5154412448,"104":0.5154412448,"105":0.5154412448,"106":0.5154412448,"107":0.5154412448,"108":0.5154412448,"109":0.1552412448,"110":0.1593412448,"111":0.3640412448,"112":0.1650412448,"113":0.2321412448,"114":0.1871412448,"115":0.1871412448,"116":0.1871412448,"117":0.1896412448,"118":0.1700412448,"119":0.2171412448,"120":0.2049412448,"121":0.2355412448,"122":0.1994412448,"123":0.3021412448,"124":0.1438412448,"125":0.1746412448,"126":0.1021412448,"127":0.1973412448,"128":0.2154412448,"129":0.1700412448,"130":0.2071412448,"131":0.2021412448,"132":0.1037412448,"133":0.2584412448,"134":0.2246412448,"135":0.2246412448,"136":0.3854412448,"137":0.1380412448,"138":0.1132412448,"139":0.1110412448,"140":0.1451412448,"141":0.2201412448,"142":0.1731412448,"143":0.3191412448,"144":0.1611412448,"145":0.3821412448,"146":0.1521412448,"147":0.2121412448,"148":0.4521412448,"149":0.3221412448,"150":0.3021412448,"151":0.3421412448,"152":0.4521412448,"153":0.3621412448,"154":0.2721412448,"155":0.2721412448,"156":0.2121412448,"157":0.4121412448,"158":0.2121412448,"159":0.2121412448,"160":0.2121412448,"161":0.2121412448,"162":0.2121412448,"163":0.0680825512,"164":0.06559002,"165":0.1272412448,"166":0.0971412448,"167":0.0758412448,"168":0.1272412448,"169":0.0758412448,"170":0.0815025533,"171":0.0831945665,"172":0.0831945665,"173":0.0831945665,"174":0.0941009084,"175":0.0889409187,"176":0.0889409187,"177":0.0875336488,"178":0.091872731,"179":0.091872731,"180":0.091872731,"181":0.0979709007,"182":0.0889409187,"183":0.0901136436,"184":0.0901136436,"185":0.0821412448,"186":0.0889409187,"187":0.0758412448,"188":0.0760412448,"189":0.0746412448,"190":0.0746412448,"191":0.0746412448,"192":0.1077412448,"193":0.0697412448,"194":0.0770412448,"195":0.0732412448,"196":0.0824412448,"197":0.0785078299,"198":0.4710379075,"199":0.1636902731,"200":0.1828479886,"201":0.2344414085,"204":0.115596421,"205":0.0989060267,"206":0.1773274586,"207":0.2087440896,"208":0.1554985367,"209":0.0809720334,"210":0.0860107781,"211":0.1982014543,"212":0.4692161854,"213":0.1579953925,"214":0.1832769503,"215":0.237747308,"218":0.1141761612,"219":0.0895481535,"220":0.1725446093,"221":0.2022361939,"222":0.1749639139,"223":0.0773831228,"224":0.0785078299,"225":0.2063646093,"226":0.2033822047,"230":0.09873056,"231":0.2084721297,"235":0.0870153435,"236":0.1273288013,"237":0.0894894601},"ucc_mix":{"0":0.5999104,"1":0.3799104,"2":0.5132104,"3":0.5132104,"4":0.5132104,"5":0.5132104,"6":0.5132104,"7":0.5132104,"8":0.5132104,"9":0.5132104,"10":0.1530104,"11":0.1571104,"12":0.3618104,"13":0.1628104,"14":0.2299104,"15":0.1849104,"16":0.1849104,"17":0.1849104,"18":0.1874104,"19":0.1678104,"20":0.2149104,"21":0.2027104,"22":0.2333104,"23":0.1972104,"24":0.2999104,"25":0.1416104,"26":0.1724104,"27":0.0999104,"28":0.1951104,"29":0.2132104,"30":0.1678104,"31":0.2049104,"32":0.1999104,"33":0.1015104,"34":0.2562104,"35":0.2224104,"36":0.2224104,"37":0.3832104,"38":0.1358104,"39":0.1110104,"40":0.1088104,"41":0.1429104,"42":0.2179104,"43":0.1709104,"44":0.3169104,"45":0.1589104,"46":0.3799104,"47":0.1499104,"48":0.2099104,"49":0.4499104,"50":0.3199104,"51":0.2999104,"52":0.3399104,"53":0.4499104,"54":0.3599104,"55":0.2699104,"56":0.2699104,"57":0.2099104,"58":0.4099104,"59":0.2099104,"60":0.2099104,"61":0.2099104,"62":0.2099104,"63":0.2099104,"64":0.0657603068,"65":0.0631777215,"66":0.1250104,"67":0.0949104,"68":0.0736104,"69":0.1250104,"70":0.0736104,"71":0.0791039889,"72":0.0807864025,"73":0.0807864025,"74":0.0807864025,"75":0.0917208978,"76":0.0865475882,"77":0.0865475882,"78":0.0851366856,"79":0.0894869687,"80":0.0894869687,"81":0.0894869687,"82":0.09560088,"83":0.0865475882,"84":0.0877233404,"85":0.0877233404,"86":0.0799104,"87":0.0865475882,"88":0.0736104,"89":0.0738104,"90":0.0724104,"91":0.0724104,"92":0.0724104,"93":0.1055104,"94":0.0675104,"95":0.0748104,"96":0.0710104,"97":0.0802104,"98":0.0760849097,"99":0.5966068357,"100":0.3766068357,"101":0.5099068357,"102":0.5099068357,"103":0.5099068357,"104":0.5099068357,"105":0.5099068357,"106":0.5099068357,"107":0.5099068357,"108":0.5099068357,"109":0.1497068357,"110":0.1538068357,"111":0.3585068357,"112":0.1595068357,"113":0.2266068357,"114":0.1816068357,"115":0.1816068357,"116":0.1816068357,"117":0.1841068357,"118":0.1645068357,"119":0.2116068357,"120":0.1994068357,"121":0.2300068357,"122":0.1939068357,"123":0.2966068357,"124":0.1383068357,"125":0.1691068357,"126":0.0966068357,"127":0.1918068357,"128":0.2099068357,"129":0.1645068357,"130":0.2016068357,"131":0.1966068357,"132":0.0982068357,"133":0.2529068357,"134":0.2191068357,"135":0.2191068357,"136":0.3799068357,"137":0.1325068357,"138":0.1077068357,"139":0.1055068357,"140":0.1396068357,"141":0.2146068357,"142":0.1676068357,"143":0.3136068357,"144":0.1556068357,"145":0.3766068357,"146":0.1466068357,"147":0.2066068357,"148":0.4466068357,"149":0.3166068357,"150":0.2966068357,"151":0.3366068357,"152":0.4466068357,"153":0.3566068357,"154":0.2666068357,"155":0.2666068357,"156":0.2066068357,"157":0.4066068357,"158":0.2066068357,"159":0.2066068357,"160":0.2066068357,"161":0.2066068357,"162":0.2066068357,"163":0.0611559368,"164":0.0586281224,"165":0.1217068357,"166":0.0916068357,"167":0.0703068357,"168":0.1217068357,"169":0.0703068357,"170":0.0747939744,"171":0.0763369522,"172":0.0763369522,"173":0.0763369522,"174":0.0871910724,"175":0.0820557897,"176":0.0820557897,"177":0.0806552581,"178":0.0849735639,"179":0.0849735639,"180":0.0849735639,"181":0.0910425344,"182":0.0820557897,"183":0.0832228994,"184":0.0832228994,"185":0.0766068357,"186":0.0820557897,"187":0.0703068357,"188":0.0705068357,"189":0.0691068357,"190":0.0691068357,"191":0.0691068357,"192":0.1022068357,"193":0.0642068357,"194":0.0715068357,"195":0.0677068357,"196":0.0769068357,"197":0.0717805477,"198":0.4629483075,"199":0.1556006731,"200":0.1747583886,"201":0.2263518085,"204":0.107506821,"205":0.0887512343,"206":0.1692378586,"207":0.2006544896,"208":0.1474089367,"209":0.072872261,"210":0.0760849097,"211":0.1901118543,"212":0.4636817762,"213":0.1524609834,"214":0.1777425411,"215":0.2322128988,"218":0.108641752,"219":0.0826698685,"220":0.1670102001,"221":0.1967017847,"222":0.1694295047,"223":0.0718425888,"224":0.0717805477,"225":0.2008302001,"226":0.1952926047,"230":0.0895173361,"231":0.2029377205,"235":0.0804227326,"236":0.1182067047,"237":0.0828062533},"z_d":{"0":1.0,"1":1.0,"2":1.0,"3":1.0,"4":1.0,"5":1.0,"6":1.0,"7":1.0,"8":1.0,"9":1.0,"10":1.0,"11":1.0,"12":1.0,"13":1.0,"14":1.0,"15":1.0,"16":1.0,"17":1.0,"18":1.0,"19":1.0,"20":1.0,"21":1.0,"22":1.0,"23":1.0,"24":1.0,"25":1.0,"26":1.0,"27":1.0,"28":1.0,"29":1.0,"30":1.0,"31":1.0,"32":1.0,"33":1.0,"34":1.0,"35":1.0,"36":1.0,"37":1.0,"38":1.0,"39":1.0,"40":1.0,"41":1.0,"42":1.0,"43":1.0,"44":1.0,"45":1.0,"46":1.0,"47":1.0,"48":1.0,"49":1.0,"50":1.0,"51":1.0,"52":1.0,"53":1.0,"54":1.0,"55":1.0,"56":1.0,"57":1.0,"58":1.0,"59":1.0,"60":1.0,"61":1.0,"62":1.0,"63":1.0,"64":0.0,"65":0.0,"66":1.0,"67":1.0,"68":1.0,"69":1.0,"70":1.0,"71":0.5053415446,"72":0.4185709384,"73":0.4185709384,"74":0.4185709384,"75":0.4185709384,"76":0.4185709384,"77":0.4185709384,"78":0.4185709384,"79":0.4185709384,"80":0.4185709384,"81":0.4185709384,"82":0.4185709384,"83":0.4185709384,"84":0.4185709384,"85":0.4185709384,"86":1.0,"87":0.4185709384,"88":1.0,"89":1.0,"90":1.0,"91":1.0,"92":1.0,"93":1.0,"94":1.0,"95":1.0,"96":1.0,"97":1.0,"98":0.5224036143,"99":1.0,"100":1.0,"101":1.0,"102":1.0,"103":1.0,"104":1.0,"105":1.0,"106":1.0,"107":1.0,"108":1.0,"109":1.0,"110":1.0,"111":1.0,"112":1.0,"113":1.0,"114":1.0,"115":1.0,"116":1.0,"117":1.0,"118":1.0,"119":1.0,"120":1.0,"121":1.0,"122":1.0,"123":1.0,"124":1.0,"125":1.0,"126":1.0,"127":1.0,"128":1.0,"129":1.0,"130":1.0,"131":1.0,"132":1.0,"133":1.0,"134":1.0,"135":1.0,"136":1.0,"137":1.0,"138":1.0,"139":1.0,"140":1.0,"141":1.0,"142":1.0,"143":1.0,"144":1.0,"145":1.0,"146":1.0,"147":1.0,"148":1.0,"149":1.0,"150":1.0,"151":1.0,"152":1.0,"153":1.0,"154":1.0,"155":1.0,"156":1.0,"157":1.0,"158":1.0,"159":1.0,"160":1.0,"161":1.0,"162":1.0,"163":0.0,"164":0.0,"165":1.0,"166":1.0,"167":1.0,"168":1.0,"169":1.0,"170":0.5036521319,"171":0.4167232476,"172":0.4167232476,"173":0.4167232476,"174":0.4167232476,"175":0.4167232476,"176":0.4167232476,"177":0.4167232476,"178":0.4167232476,"179":0.4167232476,"180":0.4167232476,"181":0.4167232476,"182":0.4167232476,"183":0.4167232476,"184":0.4167232476,"185":1.0,"186":0.4167232476,"187":1.0,"188":1.0,"189":1.0,"190":1.0,"191":1.0,"192":1.0,"193":1.0,"194":1.0,"195":1.0,"196":1.0,"197":0.5205628497,"198":1.0,"199":1.0,"200":1.0,"201":1.0,"204":1.0,"205":0.4204887714,"206":1.0,"207":1.0,"208":1.0,"209":0.9971222524,"210":0.5224036143,"211":1.0,"212":1.0,"213":1.0,"214":1.0,"215":1.0,"218":1.0,"219":0.4227380789,"220":1.0,"221":1.0,"222":1.0,"223":0.9973551369,"224":0.5205628497,"225":1.0,"226":1.0,"230":0.6861050074,"231":1.0,"235":0.5536142803,"236":0.6095413425,"237":0.2813433989},"z_e":{"0":1.0,"1":1.0,"2":1.0,"3":1.0,"4":1.0,"5":1.0,"6":1.0,"7":1.0,"8":1.0,"9":1.0,"10":1.0,"11":1.0,"12":1.0,"13":1.0,"14":1.0,"15":1.0,"16":1.0,"17":1.0,"18":1.0,"19":1.0,"20":1.0,"21":1.0,"22":1.0,"23":1.0,"24":1.0,"25":1.0,"26":1.0,"27":1.0,"28":1.0,"29":1.0,"30":1.0,"31":1.0,"32":1.0,"33":1.0,"34":1.0,"35":1.0,"36":1.0,"37":1.0,"38":1.0,"39":1.0,"40":1.0,"41":1.0,"42":1.0,"43":1.0,"44":1.0,"45":1.0,"46":1.0,"47":1.0,"48":1.0,"49":1.0,"50":1.0,"51":1.0,"52":1.0,"53":1.0,"54":1.0,"55":1.0,"56":1.0,"57":1.0,"58":1.0,"59":1.0,"60":1.0,"61":1.0,"62":1.0,"63":1.0,"64":0.0,"65":0.0,"66":1.0,"67":1.0,"68":1.0,"69":1.0,"70":1.0,"71":0.4028005619,"72":0.309667861,"73":0.309667861,"74":0.309667861,"75":0.309667861,"76":0.309667861,"77":0.309667861,"78":0.309667861,"79":0.309667861,"80":0.309667861,"81":0.309667861,"82":0.309667861,"83":0.309667861,"84":0.309667861,"85":0.309667861,"86":1.0,"87":0.309667861,"88":1.0,"89":1.0,"90":1.0,"91":1.0,"92":1.0,"93":1.0,"94":1.0,"95":1.0,"96":1.0,"97":1.0,"98":0.4078745549,"99":1.0,"100":1.0,"101":1.0,"102":1.0,"103":1.0,"104":1.0,"105":1.0,"106":1.0,"107":1.0,"108":1.0,"109":1.0,"110":1.0,"111":1.0,"112":1.0,"113":1.0,"114":1.0,"115":1.0,"116":1.0,"117":1.0,"118":1.0,"119":1.0,"120":1.0,"121":1.0,"122":1.0,"123":1.0,"124":1.0,"125":1.0,"126":1.0,"127":1.0,"128":1.0,"129":1.0,"130":1.0,"131":1.0,"132":1.0,"133":1.0,"134":1.0,"135":1.0,"136":1.0,"137":1.0,"138":1.0,"139":1.0,"140":1.0,"141":1.0,"142":1.0,"143":1.0,"144":1.0,"145":1.0,"146":1.0,"147":1.0,"148":1.0,"149":1.0,"150":1.0,"151":1.0,"152":1.0,"153":1.0,"154":1.0,"155":1.0,"156":1.0,"157":1.0,"158":1.0,"159":1.0,"160":1.0,"161":1.0,"162":1.0,"163":0.0,"164":0.0,"165":1.0,"166":1.0,"167":1.0,"168":1.0,"169":1.0,"170":0.4228116146,"171":0.3303410267,"172":0.3303410267,"173":0.3303410267,"174":0.3303410267,"175":0.3303410267,"176":0.3303410267,"177":0.3303410267,"178":0.3303410267,"179":0.3303410267,"180":0.3303410267,"181":0.3303410267,"182":0.3303410267,"183":0.3303410267,"184":0.3303410267,"185":1.0,"186":0.3303410267,"187":1.0,"188":1.0,"189":1.0,"190":1.0,"191":1.0,"192":1.0,"193":1.0,"194":1.0,"195":1.0,"196":1.0,"197":0.4306470411,"198":1.0,"199":1.0,"200":1.0,"201":1.0,"204":1.0,"205":0.3117263111,"206":1.0,"207":1.0,"208":1.0,"209":0.9965832433,"210":0.4078745549,"211":1.0,"212":1.0,"213":1.0,"214":1.0,"215":1.0,"218":1.0,"219":0.3367393026,"220":1.0,"221":1.0,"222":1.0,"223":0.9969634375,"224":0.4306470411,"225":1.0,"226":1.0,"230":0.626262792,"231":1.0,"235":0.4825320829,"236":0.5832345238,"237":0.2602725311},"z_mix":{"0":1.0,"1":1.0,"2":1.0,"3":1.0,"4":1.0,"5":1.0,"6":1.0,"7":1.0,"8":1.0,"9":1.0,"10":1.0,"11":1.0,"12":1.0,"13":1.0,"14":1.0,"15":1.0,"16":1.0,"17":1.0,"18":1.0,"19":1.0,"20":1.0,"21":1.0,"22":1.0,"23":1.0,"24":1.0,"25":1.0,"26":1.0,"27":1.0,"28":1.0,"29":1.0,"30":1.0,"31":1.0,"32":1.0,"33":1.0,"34":1.0,"35":1.0,"36":1.0,"37":1.0,"38":1.0,"39":1.0,"40":1.0,"41":1.0,"42":1.0,"43":1.0,"44":1.0,"45":1.0,"46":1.0,"47":1.0,"48":1.0,"49":1.0,"50":1.0,"51":1.0,"52":1.0,"53":1.0,"54":1.0,"55":1.0,"56":1.0,"57":1.0,"58":1.0,"59":1.0,"60":1.0,"61":1.0,"62":1.0,"63":1.0,"64":0.0,"65":0.0,"66":1.0,"67":1.0,"68":1.0,"69":1.0,"70":1.0,"71":0.4309494414,"72":0.3388370406,"73":0.3388370406,"74":0.3388370406,"75":0.3388370406,"76":0.3388370406,"77":0.3388370406,"78":0.3388370406,"79":0.3388370406,"80":0.3388370406,"81":0.3388370406,"82":0.3388370406,"83":0.3388370406,"84":0.3388370406,"85":0.3388370406,"86":1.0,"87":0.3388370406,"88":1.0,"89":1.0,"90":1.0,"91":1.0,"92":1.0,"93":1.0,"94":1.0,"95":1.0,"96":1.0,"97":1.0,"98":0.4398539566,"99":1.0,"100":1.0,"101":1.0,"102":1.0,"103":1.0,"104":1.0,"105":1.0,"106":1.0,"107":1.0,"108":1.0,"109":1.0,"110":1.0,"111":1.0,"112":1.0,"113":1.0,"114":1.0,"115":1.0,"116":1.0,"117":1.0,"118":1.0,"119":1.0,"120":1.0,"121":1.0,"122":1.0,"123":1.0,"124":1.0,"125":1.0,"126":1.0,"127":1.0,"128":1.0,"129":1.0,"130":1.0,"131":1.0,"132":1.0,"133":1.0,"134":1.0,"135":1.0,"136":1.0,"137":1.0,"138":1.0,"139":1.0,"140":1.0,"141":1.0,"142":1.0,"143":1.0,"144":1.0,"145":1.0,"146":1.0,"147":1.0,"148":1.0,"149":1.0,"150":1.0,"151":1.0,"152":1.0,"153":1.0,"154":1.0,"155":1.0,"156":1.0,"157":1.0,"158":1.0,"159":1.0,"160":1.0,"161":1.0,"162":1.0,"163":0.0,"164":0.0,"165":1.0,"166":1.0,"167":1.0,"168":1.0,"169":1.0,"170":0.4435722787,"171":0.3521114351,"172":0.3521114351,"173":0.3521114351,"174":0.3521114351,"175":0.3521114351,"176":0.3521114351,"177":0.3521114351,"178":0.3521114351,"179":0.3521114351,"180":0.3521114351,"181":0.3521114351,"182":0.3521114351,"183":0.3521114351,"184":0.3521114351,"185":1.0,"186":0.3521114351,"187":1.0,"188":1.0,"189":1.0,"190":1.0,"191":1.0,"192":1.0,"193":1.0,"194":1.0,"195":1.0,"196":1.0,"197":0.4540696895,"198":1.0,"199":1.0,"200":1.0,"201":1.0,"204":1.0,"205":0.3408729397,"206":1.0,"207":1.0,"208":1.0,"209":0.9967276144,"210":0.4398539566,"211":1.0,"212":1.0,"213":1.0,"214":1.0,"215":1.0,"218":1.0,"219":0.3584398442,"220":1.0,"221":1.0,"222":1.0,"223":0.9970621552,"224":0.4540696895,"225":1.0,"226":1.0,"230":0.6423476831,"231":1.0,"235":0.5006504096,"236":0.5903054905,"237":0.2656433396}} \ No newline at end of file +{"index":{"0":0,"1":1,"2":2,"3":3,"4":4,"5":5,"6":6,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"26":26,"27":27,"28":28,"29":29,"30":30,"31":31,"32":32,"33":33,"34":34,"35":35,"36":36,"37":37,"38":38,"39":39,"40":40,"41":41,"42":42,"43":43,"44":44,"45":45,"46":46,"47":47,"48":48,"49":49,"50":50,"51":51,"52":52,"53":53,"54":54,"55":55,"56":56,"57":57,"58":58,"59":59,"60":60,"61":61,"62":62,"63":63,"64":64,"65":65,"66":66,"67":67,"68":68,"69":69,"70":70,"71":71,"72":72,"73":73,"74":74,"75":75,"76":76,"77":77,"78":78,"79":79,"80":80,"81":81,"82":82,"83":83,"84":84,"85":85,"86":86,"87":87,"88":88,"89":89,"90":90,"91":91,"92":92,"93":93,"94":94,"95":95,"96":96,"97":97,"98":98,"99":99,"100":100,"101":101,"102":102,"103":103,"104":104,"105":105,"106":106,"107":107,"108":108,"109":109,"110":110,"111":111,"112":112,"113":113,"114":114,"115":115,"116":116,"117":117,"118":118,"119":119,"120":120,"121":121,"122":122,"123":123,"124":124,"125":125,"126":126,"127":127,"128":128,"129":129,"130":130,"131":131,"132":132,"133":133,"134":134,"135":135,"136":136,"137":137,"138":138,"139":139,"140":140,"141":141,"142":142,"143":143,"144":144,"145":145,"146":146,"147":147,"148":148,"149":149,"150":150,"151":151,"152":152,"153":153,"154":154,"155":155,"156":156,"157":157,"158":158,"159":159,"160":160,"161":161,"162":162,"163":163,"164":164,"165":165,"166":166,"167":167,"168":168,"169":169,"170":170,"171":171,"172":172,"173":173,"174":174,"175":175,"176":176,"177":177,"178":178,"179":179,"180":180,"181":181,"182":182,"183":183,"184":184,"185":185,"186":186,"187":187,"188":188,"189":189,"190":190,"191":191,"192":192,"193":193,"194":194,"195":195,"196":196,"197":197,"198":198,"199":199,"200":200,"201":201,"204":204,"205":205,"206":206,"207":207,"208":208,"209":209,"210":210,"211":211,"212":212,"213":213,"214":214,"215":215,"218":218,"219":219,"220":220,"221":221,"222":222,"223":223,"224":224,"225":225,"226":226,"230":230,"231":231,"235":235,"236":236,"237":237},"Y":{"0":3.0,"1":3.0,"2":5.0,"3":5.0,"4":5.0,"5":5.0,"6":5.0,"7":5.0,"8":5.0,"9":5.0,"10":7.0,"11":7.0,"12":5.0,"13":7.0,"14":5.0,"15":7.0,"16":7.0,"17":7.0,"18":5.0,"19":7.0,"20":5.0,"21":7.0,"22":7.0,"23":7.0,"24":5.0,"25":7.0,"26":7.0,"27":15.0,"28":7.0,"29":5.0,"30":7.0,"31":5.0,"32":7.0,"33":15.0,"34":7.0,"35":5.0,"36":5.0,"37":5.0,"38":5.0,"39":10.0,"40":7.0,"41":15.0,"42":15.0,"43":15.0,"44":15.0,"45":15.0,"46":3.0,"47":5.0,"48":5.0,"49":5.0,"50":5.0,"51":5.0,"52":5.0,"53":5.0,"54":7.0,"55":7.0,"56":3.0,"57":5.0,"58":3.0,"59":5.0,"60":5.0,"61":3.0,"62":3.0,"63":7.0,"64":100.0,"65":100.0,"66":5.0,"67":7.0,"68":15.0,"69":5.0,"70":5.0,"71":39.0,"72":39.0,"73":39.0,"74":39.0,"75":39.0,"76":39.0,"77":39.0,"78":39.0,"79":39.0,"80":39.0,"81":39.0,"82":39.0,"83":39.0,"84":39.0,"85":39.0,"86":7.0,"87":39.0,"88":5.0,"89":20.0,"90":20.0,"91":20.0,"92":15.0,"93":7.0,"94":20.0,"95":7.0,"96":15.0,"97":5.0,"98":27.5,"99":3.0,"100":3.0,"101":5.0,"102":5.0,"103":5.0,"104":5.0,"105":5.0,"106":5.0,"107":5.0,"108":5.0,"109":7.0,"110":7.0,"111":5.0,"112":7.0,"113":5.0,"114":7.0,"115":7.0,"116":7.0,"117":5.0,"118":7.0,"119":5.0,"120":7.0,"121":7.0,"122":7.0,"123":5.0,"124":7.0,"125":7.0,"126":15.0,"127":7.0,"128":5.0,"129":7.0,"130":5.0,"131":7.0,"132":15.0,"133":7.0,"134":5.0,"135":5.0,"136":5.0,"137":5.0,"138":10.0,"139":7.0,"140":15.0,"141":15.0,"142":15.0,"143":15.0,"144":15.0,"145":3.0,"146":5.0,"147":5.0,"148":5.0,"149":5.0,"150":5.0,"151":5.0,"152":5.0,"153":7.0,"154":7.0,"155":3.0,"156":5.0,"157":3.0,"158":5.0,"159":5.0,"160":3.0,"161":3.0,"162":7.0,"163":100.0,"164":100.0,"165":5.0,"166":7.0,"167":15.0,"168":5.0,"169":5.0,"170":39.0,"171":39.0,"172":39.0,"173":39.0,"174":39.0,"175":39.0,"176":39.0,"177":39.0,"178":39.0,"179":39.0,"180":39.0,"181":39.0,"182":39.0,"183":39.0,"184":39.0,"185":7.0,"186":39.0,"187":5.0,"188":20.0,"189":20.0,"190":20.0,"191":15.0,"192":7.0,"193":20.0,"194":7.0,"195":15.0,"196":5.0,"197":27.5,"198":3.6471765317,"199":7.0,"200":6.9237794589,"201":7.3940296213,"204":7.7398736381,"205":39.0,"206":6.8906484402,"207":7.0,"208":9.94296719,"209":13.8795082047,"210":27.5,"211":6.5264402695,"212":3.7597024469,"213":7.0,"214":6.9283412137,"215":6.3324138404,"218":6.7302544262,"219":39.0,"220":6.8013194151,"221":7.0,"222":7.3569378484,"223":14.3449285894,"224":27.5,"225":5.6704198433,"226":7.2683713253,"230":25.7008772825,"231":6.5156950627,"235":31.0743963765,"236":38.7936686872,"237":68.6045439892},"asset_name":{"0":"Prepackaged software","1":"Custom software","2":"Mainframes","3":"PCs","4":"DASDs","5":"Printers","6":"Terminals","7":"Tape drives","8":"Storage devices","9":"System integrators","10":"Special industrial machinery","11":"General industrial equipment","12":"Office and accounting equipment","13":"Communications","14":"Photocopy and related equipment","15":"Nonelectro medical instruments","16":"Electro medical instruments","17":"Nonmedical instruments","18":"Household furniture","19":"Other furniture","20":"Household appliances","21":"Service industry machinery","22":"Other electrical","23":"Other","24":"Nuclear fuel","25":"Other fabricated metals","26":"Metalworking machinery","27":"Electric transmission and distribution","28":"Farm tractors","29":"Construction tractors","30":"Other agricultural machinery","31":"Other construction machinery","32":"Mining and oilfield machinery","33":"Steam engines","34":"Internal combustion engines","35":"Light trucks (including utility vehicles)","36":"Other trucks, buses and truck trailers","37":"Autos","38":"Aircraft","39":"Ships and boats","40":"Railroad equipment","41":"Theatrical movies","42":"Long-lived television programs","43":"Books","44":"Music","45":"Other entertainment originals","46":"Own account software","47":"Pharmaceutical and medicine manufacturing","48":"Chemical manufacturing, ex. pharma and med","49":"Computers and peripheral equipment manufacturing","50":"Communications equipment manufacturing","51":"Semiconductor and other component manufacturing","52":"Navigational and other instruments manufacturing","53":"Other computer and electronic manufacturing, n.e.c.","54":"Motor vehicles and parts manufacturing","55":"Aerospace products and parts manufacturing","56":"Software publishers","57":"Financial and real estate services","58":"Computer systems design and related services","59":"Scientific research and development services","60":"All other nonmanufacturing, n.e.c.","61":"Private universities and colleges","62":"Other nonprofit institutions","63":"Other manufacturing","64":"Inventories","65":"Land","66":"Petroleum and natural gas","67":"Mining","68":"Communication","69":"Gas","70":"Petroleum pipelines","71":"Religious","72":"Educational and vocational","73":"Hospitals","74":"Special care","75":"Lodging","76":"Air transportation","77":"Other transportation","78":"Warehouses","79":"Other commercial","80":"Multimerchandise shopping","81":"Food and beverage establishments","82":"Manufacturing","83":"Public safety","84":"Office","85":"Medical buildings","86":"Amusement and recreation","87":"Local transit structures","88":"Other land transportation","89":"Farm","90":"Water supply","91":"Sewage and waste disposal","92":"Highway and conservation and development","93":"Mobile structures","94":"Other railroad","95":"Track replacement","96":"Electric","97":"Wind and solar","98":"Residential","99":"Prepackaged software","100":"Custom software","101":"Mainframes","102":"PCs","103":"DASDs","104":"Printers","105":"Terminals","106":"Tape drives","107":"Storage devices","108":"System integrators","109":"Special industrial machinery","110":"General industrial equipment","111":"Office and accounting equipment","112":"Communications","113":"Photocopy and related equipment","114":"Nonelectro medical instruments","115":"Electro medical instruments","116":"Nonmedical instruments","117":"Household furniture","118":"Other furniture","119":"Household appliances","120":"Service industry machinery","121":"Other electrical","122":"Other","123":"Nuclear fuel","124":"Other fabricated metals","125":"Metalworking machinery","126":"Electric transmission and distribution","127":"Farm tractors","128":"Construction tractors","129":"Other agricultural machinery","130":"Other construction machinery","131":"Mining and oilfield machinery","132":"Steam engines","133":"Internal combustion engines","134":"Light trucks (including utility vehicles)","135":"Other trucks, buses and truck trailers","136":"Autos","137":"Aircraft","138":"Ships and boats","139":"Railroad equipment","140":"Theatrical movies","141":"Long-lived television programs","142":"Books","143":"Music","144":"Other entertainment originals","145":"Own account software","146":"Pharmaceutical and medicine manufacturing","147":"Chemical manufacturing, ex. pharma and med","148":"Computers and peripheral equipment manufacturing","149":"Communications equipment manufacturing","150":"Semiconductor and other component manufacturing","151":"Navigational and other instruments manufacturing","152":"Other computer and electronic manufacturing, n.e.c.","153":"Motor vehicles and parts manufacturing","154":"Aerospace products and parts manufacturing","155":"Software publishers","156":"Financial and real estate services","157":"Computer systems design and related services","158":"Scientific research and development services","159":"All other nonmanufacturing, n.e.c.","160":"Private universities and colleges","161":"Other nonprofit institutions","162":"Other manufacturing","163":"Inventories","164":"Land","165":"Petroleum and natural gas","166":"Mining","167":"Communication","168":"Gas","169":"Petroleum pipelines","170":"Religious","171":"Educational and vocational","172":"Hospitals","173":"Special care","174":"Lodging","175":"Air transportation","176":"Other transportation","177":"Warehouses","178":"Other commercial","179":"Multimerchandise shopping","180":"Food and beverage establishments","181":"Manufacturing","182":"Public safety","183":"Office","184":"Medical buildings","185":"Amusement and recreation","186":"Local transit structures","187":"Other land transportation","188":"Farm","189":"Water supply","190":"Sewage and waste disposal","191":"Highway and conservation and development","192":"Mobile structures","193":"Other railroad","194":"Track replacement","195":"Electric","196":"Wind and solar","197":"Residential","198":"Computers and Software","199":"Industrial Machinery","200":"Instruments and Communications Equipment","201":"Intellectual Property","204":"Mining and Drilling Structures","205":"Nonresidential Buildings","206":"Office and Residential Equipment","207":"Other Equipment","208":"Other Industrial Equipment","209":"Other Structures","210":"Residential Buildings","211":"Transportation Equipment","212":"Computers and Software","213":"Industrial Machinery","214":"Instruments and Communications Equipment","215":"Intellectual Property","218":"Mining and Drilling Structures","219":"Nonresidential Buildings","220":"Office and Residential Equipment","221":"Other Equipment","222":"Other Industrial Equipment","223":"Other Structures","224":"Residential Buildings","225":"Transportation Equipment","226":"Equipment","230":"Structures","231":"Equipment","235":"Structures","236":"Overall","237":"Overall"},"assets":{"0":72268924051.9082336426,"1":197240164682.6705322266,"2":17413293619.1456260681,"3":53550810952.9387893677,"4":0.0,"5":9260043911.0563106537,"6":12396994618.6385192871,"7":0.0,"8":7998988409.0723161697,"9":28310184525.0971412659,"10":277678587239.9380493164,"11":476419502165.166015625,"12":7268611167.0018863678,"13":498335724804.0314331055,"14":25020946205.429813385,"15":133227504585.5826721191,"16":75049828222.7880249023,"17":108363933020.2487182617,"18":8900871527.196844101,"19":201600171017.508026123,"20":2759304252.314576149,"21":100661650547.2224731445,"22":16821590672.8629779816,"23":219586535058.3394165039,"24":6455272413.3341999054,"25":117546642592.4276123047,"26":218890188223.7576293945,"27":423453356310.3550415039,"28":24563500689.0174293518,"29":9895536358.9214134216,"30":46750113836.6425476074,"31":123582273311.1085968018,"32":84858812348.8264923096,"33":91645013950.1812438965,"34":12363020746.6312923431,"35":167619978534.9744567871,"36":119548128283.1802215576,"37":136239832216.6345977783,"38":265993981320.4024658203,"39":62839620239.5145492554,"40":109045484545.8026428223,"41":157833135207.6000061035,"42":144610873940.8399963379,"43":67646468506.2269973755,"44":15406510045.2719993591,"45":15413496806.9536018372,"46":198787829234.9338378906,"47":396355667406.7600097656,"48":54399224281.8699951172,"49":9567048384.5297012329,"50":38393784818.3699951172,"51":83580996525.5449981689,"52":30814085766.7084999084,"53":1636224416.5211501122,"54":39313793397.9000015259,"55":33211530575.7000007629,"56":20657269549.4479980469,"57":6097212063.9197349548,"58":6318822870.5699996948,"59":22814623102.4029998779,"60":86239268420.7419128418,"61":8714364638.9400005341,"62":36718605375.196182251,"63":207322515563.4512939453,"64":1540550422351.1750488281,"65":3586506468628.5483398438,"66":1033008886591.3449707031,"67":82930242550.8560638428,"68":578746604536.4505615234,"69":365538319906.6795043945,"70":112623061581.4062805176,"71":100591058771.6496276855,"72":282731611173.25390625,"73":321465607211.4967651367,"74":70115662530.6401977539,"75":171809464720.120513916,"76":26676130902.0607643127,"77":3546598618.338347435,"78":281416771190.75390625,"79":342925648724.1744995117,"80":424453104849.459777832,"81":177715537880.9696655273,"82":1098167248468.8033447266,"83":15488160357.0082950592,"84":1125363275874.3352050781,"85":108684928850.3025817871,"86":163173271952.9853820801,"87":9253082151.44272995,"88":7047759108.8189249039,"89":109520310583.217010498,"90":41285680278.0343322754,"91":37655287429.6246185303,"92":22901934534.0979652405,"93":4708544169.5246629715,"94":135810301223.6219177246,"95":166460169103.5604858398,"96":1052404941676.5113525391,"97":119300186300.6925354004,"98":333776621894.0,"99":22158075947.241394043,"100":60800835314.359916687,"101":6190706381.1830024719,"102":20612189046.2605934143,"103":0.0,"104":3876956088.9794268608,"105":5141005380.9487981796,"106":0.0,"107":3192011590.9239988327,"108":11800815475.2877197266,"109":56031412759.6957244873,"110":114662497838.1790161133,"111":2542388832.9689154625,"112":102468863895.3965454102,"113":10079053795.0076828003,"114":111916495412.2192993164,"115":65668171777.0585479736,"116":59590066982.740776062,"117":8579128473.702334404,"118":97670828983.2067718506,"119":2193695747.8015151024,"120":66122349452.248878479,"121":3542409326.7197475433,"122":106207464937.4668884277,"123":357727587.1562304497,"124":36269357406.687461853,"125":40483811779.6103668213,"126":41257755573.2831878662,"127":30621499311.6047172546,"128":3719463640.4489221573,"129":80549886162.6989898682,"130":98513726689.5267944336,"131":18092187649.2234191895,"132":6902986050.143081665,"133":1555979253.6081163883,"134":77738021463.510848999,"135":52902871715.1460266113,"136":47539167782.3870010376,"137":86223598874.8378753662,"138":16387379759.8056716919,"139":29964515454.0211639404,"140":18409754458.466255188,"141":14909126060.4083938599,"142":14215531494.3494510651,"143":8069489954.0988121033,"144":11674503193.3987407684,"145":63396170766.9682846069,"146":68720410526.408996582,"147":9431775719.3292999268,"148":1249951615.1470029354,"149":5016215180.9325504303,"150":10920003474.8311214447,"151":4025914234.826259613,"152":213775583.6347059011,"153":5835206602.1280002594,"154":4929469423.5754003525,"155":949730450.6009244919,"156":1540787936.3055326939,"157":5115177129.213716507,"158":22860376897.4707717896,"159":33402731579.6361465454,"160":6064635361.6499996185,"161":44957394625.3166046143,"162":31261484438.196723938,"163":903249577643.8208007812,"164":9085892640842.869140625,"165":212937915737.6286010742,"166":17079757447.8750705719,"167":54922065479.1844787598,"168":31446708032.7703895569,"169":20777938418.3121185303,"170":198115941229.3613891602,"171":212838725537.274597168,"172":335377700162.3952026367,"173":75652337468.1600189209,"174":333097535279.5237426758,"175":6522869098.3693552017,"176":1255401381.7010712624,"177":129247228808.9672241211,"178":167854351277.2262573242,"179":242344895152.7531738281,"180":142536462115.3678588867,"181":312763751528.7327880859,"182":10144839642.5393390656,"183":595428227069.28125,"184":100075071146.9970550537,"185":164426728047.0282592773,"186":2713917848.414937973,"187":4956240890.7279005051,"188":210718689415.6276245117,"189":17351319722.4940376282,"190":18704712570.114112854,"191":14651065465.7115840912,"192":3986455830.48832798,"193":35355401894.7446212769,"194":41586561300.5069122314,"195":70225622111.3388519287,"196":13828813701.9312324524,"197":1251223923087.8999023438,"198":398439404770.5274658203,"199":754098089405.1041259766,"200":847266548005.0825195312,"201":1681853350900.4008789062,"204":2172847115166.7373046875,"205":4551150810123.3671875,"206":213260346797.0194396973,"207":337069776278.4248657227,"208":1055995696084.3908691406,"209":1869521468512.1320800781,"210":333776621894.0,"211":965295059837.3214111328,"212":133772595225.1848449707,"213":170693910597.8747558594,"214":352265040695.391784668,"215":387169616706.893737793,"218":337164385115.7706298828,"219":2863255336898.6499023438,"220":108443653204.7106323242,"221":175872223716.435546875,"222":349865415800.2400512695,"223":598505528799.1284179688,"224":1251223923087.8999023438,"225":319214520353.4597167969,"226":4571424921177.87109375,"230":8927296015696.234375,"231":1610127359593.2971191406,"235":5050149173901.4501953125,"236":20307631178754.234375,"237":17036588368688.330078125},"bea_asset_code":{"0":"ENS1","1":"ENS2","2":"EP1A","3":"EP1B","4":"EP1C","5":"EP1D","6":"EP1E","7":"EP1F","8":"EP1G","9":"EP1H","10":"EI40","11":"EI50","12":"EP12","13":"EP20","14":"EP31","15":"EP34","16":"EP35","17":"EP36","18":"EO11","19":"EO12","20":"EO71","21":"EO60","22":"EO72","23":"EO80","24":"EI11","25":"EI12","26":"EI30","27":"EI60","28":"EO21","29":"EO22","30":"EO30","31":"EO40","32":"EO50","33":"EI21","34":"EI22","35":"ET11","36":"ET12","37":"ET20","38":"ET30","39":"ET40","40":"ET50","41":"AE10","42":"AE20","43":"AE30","44":"AE40","45":"AE50","46":"ENS3","47":"RD11","48":"RD12","49":"RD21","50":"RD22","51":"RD23","52":"RD24","53":"RD25","54":"RD31","55":"RD32","56":"RD40","57":"RD50","58":"RD60","59":"RD70","60":"RD80","61":"RD91","62":"RD92","63":"RDOM","64":"INV","65":"LAND","66":"SM01","67":"SM02","68":"SU20","69":"SU40","70":"SU50","71":"SB10","72":"SB20","73":"SB31","74":"SB32","75":"SB41","76":"SB43","77":"SB45","78":"SC01","79":"SC02","80":"SC03","81":"SC04","82":"SI00","83":"SO03","84":"SOO1","85":"SOO2","86":"SB42","87":"SB44","88":"SB46","89":"SN00","90":"SO01","91":"SO02","92":"SO04","93":"SOMO","94":"SU11","95":"SU12","96":"SU30","97":"SU60","98":"RES","99":"ENS1","100":"ENS2","101":"EP1A","102":"EP1B","103":"EP1C","104":"EP1D","105":"EP1E","106":"EP1F","107":"EP1G","108":"EP1H","109":"EI40","110":"EI50","111":"EP12","112":"EP20","113":"EP31","114":"EP34","115":"EP35","116":"EP36","117":"EO11","118":"EO12","119":"EO71","120":"EO60","121":"EO72","122":"EO80","123":"EI11","124":"EI12","125":"EI30","126":"EI60","127":"EO21","128":"EO22","129":"EO30","130":"EO40","131":"EO50","132":"EI21","133":"EI22","134":"ET11","135":"ET12","136":"ET20","137":"ET30","138":"ET40","139":"ET50","140":"AE10","141":"AE20","142":"AE30","143":"AE40","144":"AE50","145":"ENS3","146":"RD11","147":"RD12","148":"RD21","149":"RD22","150":"RD23","151":"RD24","152":"RD25","153":"RD31","154":"RD32","155":"RD40","156":"RD50","157":"RD60","158":"RD70","159":"RD80","160":"RD91","161":"RD92","162":"RDOM","163":"INV","164":"LAND","165":"SM01","166":"SM02","167":"SU20","168":"SU40","169":"SU50","170":"SB10","171":"SB20","172":"SB31","173":"SB32","174":"SB41","175":"SB43","176":"SB45","177":"SC01","178":"SC02","179":"SC03","180":"SC04","181":"SI00","182":"SO03","183":"SOO1","184":"SOO2","185":"SB42","186":"SB44","187":"SB46","188":"SN00","189":"SO01","190":"SO02","191":"SO04","192":"SOMO","193":"SU11","194":"SU12","195":"SU30","196":"SU60","197":"RES","198":null,"199":null,"200":null,"201":null,"204":null,"205":null,"206":null,"207":null,"208":null,"209":null,"210":null,"211":null,"212":null,"213":null,"214":null,"215":null,"218":null,"219":null,"220":null,"221":null,"222":null,"223":null,"224":null,"225":null,"226":null,"230":null,"231":null,"235":null,"236":null,"237":null},"delta":{"0":0.55,"1":0.33,"2":0.4633,"3":0.4633,"4":0.4633,"5":0.4633,"6":0.4633,"7":0.4633,"8":0.4633,"9":0.4633,"10":0.1031,"11":0.1072,"12":0.3119,"13":0.1129,"14":0.18,"15":0.135,"16":0.135,"17":0.135,"18":0.1375,"19":0.1179,"20":0.165,"21":0.1528,"22":0.1834,"23":0.1473,"24":0.25,"25":0.0917,"26":0.1225,"27":0.05,"28":0.1452,"29":0.1633,"30":0.1179,"31":0.155,"32":0.15,"33":0.0516,"34":0.2063,"35":0.1725,"36":0.1725,"37":0.3333,"38":0.0859,"39":0.0611,"40":0.0589,"41":0.093,"42":0.168,"43":0.121,"44":0.267,"45":0.109,"46":0.33,"47":0.1,"48":0.16,"49":0.4,"50":0.27,"51":0.25,"52":0.29,"53":0.4,"54":0.31,"55":0.22,"56":0.22,"57":0.16,"58":0.36,"59":0.16,"60":0.16,"61":0.16,"62":0.16,"63":0.16,"64":0.0,"65":0.0,"66":0.0751,"67":0.045,"68":0.0237,"69":0.0751,"70":0.0237,"71":0.0188,"72":0.0188,"73":0.0188,"74":0.0188,"75":0.0281,"76":0.0237,"77":0.0237,"78":0.0225,"79":0.0262,"80":0.0262,"81":0.0262,"82":0.0314,"83":0.0237,"84":0.0247,"85":0.0247,"86":0.03,"87":0.0237,"88":0.0237,"89":0.0239,"90":0.0225,"91":0.0225,"92":0.0225,"93":0.0556,"94":0.0176,"95":0.0249,"96":0.0211,"97":0.0303,"98":0.01631376,"99":0.55,"100":0.33,"101":0.4633,"102":0.4633,"103":0.4633,"104":0.4633,"105":0.4633,"106":0.4633,"107":0.4633,"108":0.4633,"109":0.1031,"110":0.1072,"111":0.3119,"112":0.1129,"113":0.18,"114":0.135,"115":0.135,"116":0.135,"117":0.1375,"118":0.1179,"119":0.165,"120":0.1528,"121":0.1834,"122":0.1473,"123":0.25,"124":0.0917,"125":0.1225,"126":0.05,"127":0.1452,"128":0.1633,"129":0.1179,"130":0.155,"131":0.15,"132":0.0516,"133":0.2063,"134":0.1725,"135":0.1725,"136":0.3333,"137":0.0859,"138":0.0611,"139":0.0589,"140":0.093,"141":0.168,"142":0.121,"143":0.267,"144":0.109,"145":0.33,"146":0.1,"147":0.16,"148":0.4,"149":0.27,"150":0.25,"151":0.29,"152":0.4,"153":0.31,"154":0.22,"155":0.22,"156":0.16,"157":0.36,"158":0.16,"159":0.16,"160":0.16,"161":0.16,"162":0.16,"163":0.0,"164":0.0,"165":0.0751,"166":0.045,"167":0.0237,"168":0.0751,"169":0.0237,"170":0.0188,"171":0.0188,"172":0.0188,"173":0.0188,"174":0.0281,"175":0.0237,"176":0.0237,"177":0.0225,"178":0.0262,"179":0.0262,"180":0.0262,"181":0.0314,"182":0.0237,"183":0.0247,"184":0.0247,"185":0.03,"186":0.0237,"187":0.0237,"188":0.0239,"189":0.0225,"190":0.0225,"191":0.0225,"192":0.0556,"193":0.0176,"194":0.0249,"195":0.0211,"196":0.0303,"197":0.01631376,"198":0.4130379075,"199":0.1056902731,"200":0.1248479886,"201":0.1764414085,"204":0.057596421,"205":0.0256058705,"206":0.1193274586,"207":0.1507440896,"208":0.0974985367,"209":0.0228978292,"210":0.01631376,"211":0.1402014543,"212":0.4170749406,"213":0.1058541477,"214":0.1311357054,"215":0.1856060632,"218":0.0620349163,"219":0.0243176295,"220":0.1204033645,"221":0.150094949,"222":0.122822669,"223":0.0251824776,"224":0.01631376,"225":0.1542233644,"226":0.1453822047,"230":0.0324776427,"231":0.1563308849,"235":0.0249552164,"236":0.0616167355,"237":0.0263903323},"eatr_d":{"0":0.104244,"1":0.104244,"2":0.104244,"3":0.104244,"4":0.104244,"5":0.104244,"6":0.104244,"7":0.104244,"8":0.104244,"9":0.104244,"10":0.104244,"11":0.104244,"12":0.104244,"13":0.104244,"14":0.104244,"15":0.104244,"16":0.104244,"17":0.104244,"18":0.104244,"19":0.104244,"20":0.104244,"21":0.104244,"22":0.104244,"23":0.104244,"24":0.104244,"25":0.104244,"26":0.104244,"27":0.104244,"28":0.104244,"29":0.104244,"30":0.104244,"31":0.104244,"32":0.104244,"33":0.104244,"34":0.104244,"35":0.104244,"36":0.104244,"37":0.104244,"38":0.104244,"39":0.104244,"40":0.104244,"41":0.104244,"42":0.104244,"43":0.104244,"44":0.104244,"45":0.104244,"46":0.104244,"47":0.104244,"48":0.104244,"49":0.104244,"50":0.104244,"51":0.104244,"52":0.104244,"53":0.104244,"54":0.104244,"55":0.104244,"56":0.104244,"57":0.104244,"58":0.104244,"59":0.104244,"60":0.104244,"61":0.104244,"62":0.104244,"63":0.104244,"64":0.1491903836,"65":0.1386,"66":0.104244,"67":0.104244,"68":0.104244,"69":0.104244,"70":0.104244,"71":0.1310030438,"72":0.1356969865,"73":0.1356969865,"74":0.1356969865,"75":0.1413746413,"76":0.138688439,"77":0.138688439,"78":0.1379558384,"79":0.1402146903,"80":0.1402146903,"81":0.1402146903,"82":0.143389293,"83":0.138688439,"84":0.1392989396,"85":0.1392989396,"86":0.104244,"87":0.138688439,"88":0.104244,"89":0.104244,"90":0.104244,"91":0.104244,"92":0.104244,"93":0.104244,"94":0.104244,"95":0.104244,"96":0.104244,"97":0.104244,"98":0.1288332639,"99":0.1862096194,"100":0.1862096194,"101":0.1862096194,"102":0.1862096194,"103":0.1862096194,"104":0.1862096194,"105":0.1862096194,"106":0.1862096194,"107":0.1862096194,"108":0.1862096194,"109":0.1862096194,"110":0.1862096194,"111":0.1862096194,"112":0.1862096194,"113":0.1862096194,"114":0.1862096194,"115":0.1862096194,"116":0.1862096194,"117":0.1862096194,"118":0.1862096194,"119":0.1862096194,"120":0.1862096194,"121":0.1862096194,"122":0.1862096194,"123":0.1862096194,"124":0.1862096194,"125":0.1862096194,"126":0.1862096194,"127":0.1862096194,"128":0.1862096194,"129":0.1862096194,"130":0.1862096194,"131":0.1862096194,"132":0.1862096194,"133":0.1862096194,"134":0.1862096194,"135":0.1862096194,"136":0.1862096194,"137":0.1862096194,"138":0.1862096194,"139":0.1862096194,"140":0.1862096194,"141":0.1862096194,"142":0.1862096194,"143":0.1862096194,"144":0.1862096194,"145":0.1862096194,"146":0.1862096194,"147":0.1862096194,"148":0.1862096194,"149":0.1862096194,"150":0.1862096194,"151":0.1862096194,"152":0.1862096194,"153":0.1862096194,"154":0.1862096194,"155":0.1862096194,"156":0.1862096194,"157":0.1862096194,"158":0.1862096194,"159":0.1862096194,"160":0.1862096194,"161":0.1862096194,"162":0.1862096194,"163":0.2302953064,"164":0.2200077979,"165":0.1862096194,"166":0.1862096194,"167":0.1862096194,"168":0.1862096194,"169":0.1862096194,"170":0.2125242725,"171":0.2171315205,"172":0.2171315205,"173":0.2171315205,"174":0.2226700256,"175":0.2200496576,"176":0.2200496576,"177":0.2193350118,"178":0.221538503,"179":0.221538503,"180":0.221538503,"181":0.2246353016,"182":0.2200496576,"183":0.2206451958,"184":0.2206451958,"185":0.1862096194,"186":0.2200496576,"187":0.1862096194,"188":0.1862096194,"189":0.1862096194,"190":0.1862096194,"191":0.1862096194,"192":0.1862096194,"193":0.1862096194,"194":0.1862096194,"195":0.1862096194,"196":0.1862096194,"197":0.210412666,"198":0.104244,"199":0.104244,"200":0.104244,"201":0.104244,"204":0.104244,"205":0.1397482269,"206":0.104244,"207":0.104244,"208":0.104244,"209":0.1044144806,"210":0.1288332639,"211":0.104244,"212":0.1862096194,"213":0.1862096194,"214":0.1862096194,"215":0.1862096194,"218":0.1862096194,"219":0.2200986923,"220":0.1862096194,"221":0.1862096194,"222":0.1862096194,"223":0.1863630668,"224":0.210412666,"225":0.1862096194,"226":0.104244,"230":0.1232991685,"231":0.1862096194,"235":0.2114382482,"236":0.1220979443,"237":0.2140506007},"eatr_e":{"0":0.1491,"1":0.1491,"2":0.1491,"3":0.1491,"4":0.1491,"5":0.1491,"6":0.1491,"7":0.1491,"8":0.1491,"9":0.1491,"10":0.1491,"11":0.1491,"12":0.1491,"13":0.1491,"14":0.1491,"15":0.1491,"16":0.1491,"17":0.1491,"18":0.1491,"19":0.1491,"20":0.1491,"21":0.1491,"22":0.1491,"23":0.1491,"24":0.1491,"25":0.1491,"26":0.1491,"27":0.1491,"28":0.1491,"29":0.1491,"30":0.1491,"31":0.1491,"32":0.1491,"33":0.1491,"34":0.1491,"35":0.1491,"36":0.1491,"37":0.1491,"38":0.1491,"39":0.1491,"40":0.1491,"41":0.1491,"42":0.1491,"43":0.1491,"44":0.1491,"45":0.1491,"46":0.1491,"47":0.1491,"48":0.1491,"49":0.1491,"50":0.1491,"51":0.1491,"52":0.1491,"53":0.1491,"54":0.1491,"55":0.1491,"56":0.1491,"57":0.1491,"58":0.1491,"59":0.1491,"60":0.1491,"61":0.1491,"62":0.1491,"63":0.1491,"64":0.2199740764,"65":0.21,"66":0.1491,"67":0.1491,"68":0.1491,"69":0.1491,"70":0.1491,"71":0.1972581627,"72":0.2047683837,"73":0.2047683837,"74":0.2047683837,"75":0.211509477,"76":0.2083201425,"77":0.2083201425,"78":0.2074503241,"79":0.2101322644,"80":0.2101322644,"81":0.2101322644,"82":0.2139014779,"83":0.2083201425,"84":0.2090449913,"85":0.2090449913,"86":0.1491,"87":0.2083201425,"88":0.1491,"89":0.1491,"90":0.1491,"91":0.1491,"92":0.1491,"93":0.1491,"94":0.1491,"95":0.1491,"96":0.1491,"97":0.1491,"98":0.1953032216,"99":0.1507550931,"100":0.1507550931,"101":0.1507550931,"102":0.1507550931,"103":0.1507550931,"104":0.1507550931,"105":0.1507550931,"106":0.1507550931,"107":0.1507550931,"108":0.1507550931,"109":0.1507550931,"110":0.1507550931,"111":0.1507550931,"112":0.1507550931,"113":0.1507550931,"114":0.1507550931,"115":0.1507550931,"116":0.1507550931,"117":0.1507550931,"118":0.1507550931,"119":0.1507550931,"120":0.1507550931,"121":0.1507550931,"122":0.1507550931,"123":0.1507550931,"124":0.1507550931,"125":0.1507550931,"126":0.1507550931,"127":0.1507550931,"128":0.1507550931,"129":0.1507550931,"130":0.1507550931,"131":0.1507550931,"132":0.1507550931,"133":0.1507550931,"134":0.1507550931,"135":0.1507550931,"136":0.1507550931,"137":0.1507550931,"138":0.1507550931,"139":0.1507550931,"140":0.1507550931,"141":0.1507550931,"142":0.1507550931,"143":0.1507550931,"144":0.1507550931,"145":0.1507550931,"146":0.1507550931,"147":0.1507550931,"148":0.1507550931,"149":0.1507550931,"150":0.1507550931,"151":0.1507550931,"152":0.1507550931,"153":0.1507550931,"154":0.1507550931,"155":0.1507550931,"156":0.1507550931,"157":0.1507550931,"158":0.1507550931,"159":0.1507550931,"160":0.1507550931,"161":0.1507550931,"162":0.1507550931,"163":0.2139377853,"164":0.2040791502,"165":0.1507550931,"166":0.1507550931,"167":0.1507550931,"168":0.1507550931,"169":0.1507550931,"170":0.1926359193,"171":0.1993419677,"172":0.1993419677,"173":0.1993419677,"174":0.2057009503,"175":0.2026923994,"176":0.2026923994,"177":0.2018718855,"178":0.2044018034,"179":0.2044018034,"180":0.2044018034,"181":0.2079573635,"182":0.2026923994,"183":0.203376161,"184":0.203376161,"185":0.1507550931,"186":0.2026923994,"187":0.1507550931,"188":0.1507550931,"189":0.1507550931,"190":0.1507550931,"191":0.1507550931,"192":0.1507550931,"193":0.1507550931,"194":0.1507550931,"195":0.1507550931,"196":0.1507550931,"197":0.1906262186,"198":0.1491,"199":0.1491,"200":0.1491,"201":0.1491,"204":0.1491,"205":0.209535617,"206":0.1491,"207":0.1491,"208":0.1491,"209":0.1493931065,"210":0.1953032216,"211":0.1491,"212":0.1507550931,"213":0.1507550931,"214":0.1507550931,"215":0.1507550931,"218":0.1507550931,"219":0.2026507021,"220":0.1507550931,"221":0.1507550931,"222":0.1507550931,"223":0.1509906024,"224":0.1906262186,"225":0.1507550931,"226":0.1491,"230":0.1816990233,"231":0.1507550931,"235":0.1900844341,"236":0.17956266,"237":0.1942019043},"eatr_mix":{"0":0.13474608,"1":0.13474608,"2":0.13474608,"3":0.13474608,"4":0.13474608,"5":0.13474608,"6":0.13474608,"7":0.13474608,"8":0.13474608,"9":0.13474608,"10":0.13474608,"11":0.13474608,"12":0.13474608,"13":0.13474608,"14":0.13474608,"15":0.13474608,"16":0.13474608,"17":0.13474608,"18":0.13474608,"19":0.13474608,"20":0.13474608,"21":0.13474608,"22":0.13474608,"23":0.13474608,"24":0.13474608,"25":0.13474608,"26":0.13474608,"27":0.13474608,"28":0.13474608,"29":0.13474608,"30":0.13474608,"31":0.13474608,"32":0.13474608,"33":0.13474608,"34":0.13474608,"35":0.13474608,"36":0.13474608,"37":0.13474608,"38":0.13474608,"39":0.13474608,"40":0.13474608,"41":0.13474608,"42":0.13474608,"43":0.13474608,"44":0.13474608,"45":0.13474608,"46":0.13474608,"47":0.13474608,"48":0.13474608,"49":0.13474608,"50":0.13474608,"51":0.13474608,"52":0.13474608,"53":0.13474608,"54":0.13474608,"55":0.13474608,"56":0.13474608,"57":0.13474608,"58":0.13474608,"59":0.13474608,"60":0.13474608,"61":0.13474608,"62":0.13474608,"63":0.13474608,"64":0.197353212,"65":0.187152,"66":0.13474608,"67":0.13474608,"68":0.13474608,"69":0.13474608,"70":0.13474608,"71":0.1758007561,"72":0.18244629,"73":0.18244629,"74":0.18244629,"75":0.1889025463,"76":0.1858479734,"77":0.1858479734,"78":0.1850149081,"79":0.1875835262,"80":0.1875835262,"81":0.1875835262,"82":0.1911934759,"83":0.1858479734,"84":0.1865421945,"85":0.1865421945,"86":0.13474608,"87":0.1858479734,"88":0.13474608,"89":0.13474608,"90":0.13474608,"91":0.13474608,"92":0.13474608,"93":0.13474608,"94":0.13474608,"95":0.13474608,"96":0.13474608,"97":0.13474608,"98":0.1736960413,"99":0.1610369058,"100":0.1610369058,"101":0.1610369058,"102":0.1610369058,"103":0.1610369058,"104":0.1610369058,"105":0.1610369058,"106":0.1610369058,"107":0.1610369058,"108":0.1610369058,"109":0.1610369058,"110":0.1610369058,"111":0.1610369058,"112":0.1610369058,"113":0.1610369058,"114":0.1610369058,"115":0.1610369058,"116":0.1610369058,"117":0.1610369058,"118":0.1610369058,"119":0.1610369058,"120":0.1610369058,"121":0.1610369058,"122":0.1610369058,"123":0.1610369058,"124":0.1610369058,"125":0.1610369058,"126":0.1610369058,"127":0.1610369058,"128":0.1610369058,"129":0.1610369058,"130":0.1610369058,"131":0.1610369058,"132":0.1610369058,"133":0.1610369058,"134":0.1610369058,"135":0.1610369058,"136":0.1610369058,"137":0.1610369058,"138":0.1610369058,"139":0.1610369058,"140":0.1610369058,"141":0.1610369058,"142":0.1610369058,"143":0.1610369058,"144":0.1610369058,"145":0.1610369058,"146":0.1610369058,"147":0.1610369058,"148":0.1610369058,"149":0.1610369058,"150":0.1610369058,"151":0.1610369058,"152":0.1610369058,"153":0.1610369058,"154":0.1610369058,"155":0.1610369058,"156":0.1610369058,"157":0.1610369058,"158":0.1610369058,"159":0.1610369058,"160":0.1610369058,"161":0.1610369058,"162":0.1610369058,"163":0.2186971396,"164":0.208698458,"165":0.1610369058,"166":0.1610369058,"167":0.1610369058,"168":0.1610369058,"169":0.1610369058,"170":0.1982580903,"171":0.2043732883,"172":0.2043732883,"173":0.2043732883,"174":0.2105255581,"175":0.2076148068,"176":0.2076148068,"177":0.2068209655,"178":0.2092686427,"179":0.2092686427,"180":0.2092686427,"181":0.2127086215,"182":0.2076148068,"183":0.2082763412,"184":0.2082763412,"185":0.1610369058,"186":0.2076148068,"187":0.1610369058,"188":0.1610369058,"189":0.1610369058,"190":0.1610369058,"191":0.1610369058,"192":0.1610369058,"193":0.1610369058,"194":0.1610369058,"195":0.1610369058,"196":0.1610369058,"197":0.1961735479,"198":0.13474608,"199":0.13474608,"200":0.13474608,"201":0.13474608,"204":0.13474608,"205":0.1870241871,"206":0.13474608,"207":0.13474608,"208":0.13474608,"209":0.1349990057,"210":0.1736960413,"211":0.13474608,"212":0.1610369058,"213":0.1610369058,"214":0.1610369058,"215":0.1610369058,"218":0.1610369058,"219":0.2076002638,"220":0.1610369058,"221":0.1610369058,"222":0.1610369058,"223":0.1612481128,"224":0.1961735479,"225":0.1610369058,"226":0.13474608,"230":0.1629067891,"231":0.1610369058,"235":0.196167155,"236":0.1611303784,"237":0.199926284},"major_asset_group":{"0":"Equipment","1":"Equipment","2":"Equipment","3":"Equipment","4":"Equipment","5":"Equipment","6":"Equipment","7":"Equipment","8":"Equipment","9":"Equipment","10":"Equipment","11":"Equipment","12":"Equipment","13":"Equipment","14":"Equipment","15":"Equipment","16":"Equipment","17":"Equipment","18":"Equipment","19":"Equipment","20":"Equipment","21":"Equipment","22":"Equipment","23":"Equipment","24":"Equipment","25":"Equipment","26":"Equipment","27":"Equipment","28":"Equipment","29":"Equipment","30":"Equipment","31":"Equipment","32":"Equipment","33":"Equipment","34":"Equipment","35":"Equipment","36":"Equipment","37":"Equipment","38":"Equipment","39":"Equipment","40":"Equipment","41":"Intellectual Property","42":"Intellectual Property","43":"Intellectual Property","44":"Intellectual Property","45":"Intellectual Property","46":"Intellectual Property","47":"Intellectual Property","48":"Intellectual Property","49":"Intellectual Property","50":"Intellectual Property","51":"Intellectual Property","52":"Intellectual Property","53":"Intellectual Property","54":"Intellectual Property","55":"Intellectual Property","56":"Intellectual Property","57":"Intellectual Property","58":"Intellectual Property","59":"Intellectual Property","60":"Intellectual Property","61":"Intellectual Property","62":"Intellectual Property","63":"Intellectual Property","64":"Inventories","65":"Land","66":"Structures","67":"Structures","68":"Structures","69":"Structures","70":"Structures","71":"Structures","72":"Structures","73":"Structures","74":"Structures","75":"Structures","76":"Structures","77":"Structures","78":"Structures","79":"Structures","80":"Structures","81":"Structures","82":"Structures","83":"Structures","84":"Structures","85":"Structures","86":"Structures","87":"Structures","88":"Structures","89":"Structures","90":"Structures","91":"Structures","92":"Structures","93":"Structures","94":"Structures","95":"Structures","96":"Structures","97":"Structures","98":"Structures","99":"Equipment","100":"Equipment","101":"Equipment","102":"Equipment","103":"Equipment","104":"Equipment","105":"Equipment","106":"Equipment","107":"Equipment","108":"Equipment","109":"Equipment","110":"Equipment","111":"Equipment","112":"Equipment","113":"Equipment","114":"Equipment","115":"Equipment","116":"Equipment","117":"Equipment","118":"Equipment","119":"Equipment","120":"Equipment","121":"Equipment","122":"Equipment","123":"Equipment","124":"Equipment","125":"Equipment","126":"Equipment","127":"Equipment","128":"Equipment","129":"Equipment","130":"Equipment","131":"Equipment","132":"Equipment","133":"Equipment","134":"Equipment","135":"Equipment","136":"Equipment","137":"Equipment","138":"Equipment","139":"Equipment","140":"Intellectual Property","141":"Intellectual Property","142":"Intellectual Property","143":"Intellectual Property","144":"Intellectual Property","145":"Intellectual Property","146":"Intellectual Property","147":"Intellectual Property","148":"Intellectual Property","149":"Intellectual Property","150":"Intellectual Property","151":"Intellectual Property","152":"Intellectual Property","153":"Intellectual Property","154":"Intellectual Property","155":"Intellectual Property","156":"Intellectual Property","157":"Intellectual Property","158":"Intellectual Property","159":"Intellectual Property","160":"Intellectual Property","161":"Intellectual Property","162":"Intellectual Property","163":"Inventories","164":"Land","165":"Structures","166":"Structures","167":"Structures","168":"Structures","169":"Structures","170":"Structures","171":"Structures","172":"Structures","173":"Structures","174":"Structures","175":"Structures","176":"Structures","177":"Structures","178":"Structures","179":"Structures","180":"Structures","181":"Structures","182":"Structures","183":"Structures","184":"Structures","185":"Structures","186":"Structures","187":"Structures","188":"Structures","189":"Structures","190":"Structures","191":"Structures","192":"Structures","193":"Structures","194":"Structures","195":"Structures","196":"Structures","197":"Structures","198":"Equipment","199":"Equipment","200":"Equipment","201":"Intellectual Property","204":"Structures","205":"Structures","206":"Equipment","207":"Equipment","208":"Equipment","209":"Structures","210":"Structures","211":"Equipment","212":"Equipment","213":"Equipment","214":"Equipment","215":"Intellectual Property","218":"Structures","219":"Structures","220":"Equipment","221":"Equipment","222":"Equipment","223":"Structures","224":"Structures","225":"Equipment","226":"Equipment","230":"Structures","231":"Equipment","235":"Structures","236":"Overall","237":"Overall"},"metr_d":{"0":-0.4364303178,"1":-0.4364303178,"2":-0.4364303178,"3":-0.4364303178,"4":-0.4364303178,"5":-0.4364303178,"6":-0.4364303178,"7":-0.4364303178,"8":-0.4364303178,"9":-0.4364303178,"10":-0.4364303178,"11":-0.4364303178,"12":-0.4364303178,"13":-0.4364303178,"14":-0.4364303178,"15":-0.4364303178,"16":-0.4364303178,"17":-0.4364303178,"18":-0.4364303178,"19":-0.4364303178,"20":-0.4364303178,"21":-0.4364303178,"22":-0.4364303178,"23":-0.4364303178,"24":-0.4364303178,"25":-0.4364303178,"26":-0.4364303178,"27":-0.4364303178,"28":-0.4364303178,"29":-0.4364303178,"30":-0.4364303178,"31":-0.4364303178,"32":-0.4364303178,"33":-0.4364303178,"34":-0.4364303178,"35":-0.4364303178,"36":-0.4364303178,"37":-0.4364303178,"38":-0.4364303178,"39":-0.4364303178,"40":-0.4364303178,"41":-0.4364303178,"42":-0.4364303178,"43":-0.4364303178,"44":-0.4364303178,"45":-0.4364303178,"46":-0.4364303178,"47":-0.4364303178,"48":-0.4364303178,"49":-0.4364303178,"50":-0.4364303178,"51":-0.4364303178,"52":-0.4364303178,"53":-0.4364303178,"54":-0.4364303178,"55":-0.4364303178,"56":-0.4364303178,"57":-0.4364303178,"58":-0.4364303178,"59":-0.4364303178,"60":-0.4364303178,"61":-0.4364303178,"62":-0.4364303178,"63":-0.4364303178,"64":-0.0657878823,"65":-0.1347799511,"66":-0.4364303178,"67":-0.4364303178,"68":-0.4364303178,"69":-0.4364303178,"70":-0.4364303178,"71":-0.190040883,"72":-0.1552799092,"73":-0.1552799092,"74":-0.1552799092,"75":-0.115855148,"76":-0.1341668421,"77":-0.1341668421,"78":-0.1392657164,"79":-0.1236894227,"80":-0.1236894227,"81":-0.1236894227,"82":-0.1025047774,"83":-0.1341668421,"84":-0.1299525152,"85":-0.1299525152,"86":-0.4364303178,"87":-0.1341668421,"88":-0.4364303178,"89":-0.4364303178,"90":-0.4364303178,"91":-0.4364303178,"92":-0.4364303178,"93":-0.4364303178,"94":-0.4364303178,"95":-0.4364303178,"96":-0.4364303178,"97":-0.4364303178,"98":-0.2068261136,"99":0.0961798838,"100":0.0961798838,"101":0.0961798838,"102":0.0961798838,"103":0.0961798838,"104":0.0961798838,"105":0.0961798838,"106":0.0961798838,"107":0.0961798838,"108":0.0961798838,"109":0.0961798838,"110":0.0961798838,"111":0.0961798838,"112":0.0961798838,"113":0.0961798838,"114":0.0961798838,"115":0.0961798838,"116":0.0961798838,"117":0.0961798838,"118":0.0961798838,"119":0.0961798838,"120":0.0961798838,"121":0.0961798838,"122":0.0961798838,"123":0.0961798838,"124":0.0961798838,"125":0.0961798838,"126":0.0961798838,"127":0.0961798838,"128":0.0961798838,"129":0.0961798838,"130":0.0961798838,"131":0.0961798838,"132":0.0961798838,"133":0.0961798838,"134":0.0961798838,"135":0.0961798838,"136":0.0961798838,"137":0.0961798838,"138":0.0961798838,"139":0.0961798838,"140":0.0961798838,"141":0.0961798838,"142":0.0961798838,"143":0.0961798838,"144":0.0961798838,"145":0.0961798838,"146":0.0961798838,"147":0.0961798838,"148":0.0961798838,"149":0.0961798838,"150":0.0961798838,"151":0.0961798838,"152":0.0961798838,"153":0.0961798838,"154":0.0961798838,"155":0.0961798838,"156":0.0961798838,"157":0.0961798838,"158":0.0961798838,"159":0.0961798838,"160":0.0961798838,"161":0.0961798838,"162":0.0961798838,"163":0.3227028821,"164":0.2806307251,"165":0.0961798838,"166":0.0961798838,"167":0.0961798838,"168":0.0961798838,"169":0.0961798838,"170":0.2465863752,"171":0.2679162967,"172":0.2679162967,"173":0.2679162967,"174":0.2920116266,"175":0.2808125042,"176":0.2808125042,"177":0.2776964414,"178":0.2872187188,"179":0.2872187188,"180":0.2872187188,"181":0.3001847217,"182":0.2808125042,"183":0.2833887589,"184":0.2833887589,"185":0.0961798838,"186":0.2808125042,"187":0.0961798838,"188":0.0961798838,"189":0.0961798838,"190":0.0961798838,"191":0.0961798838,"192":0.0961798838,"193":0.0961798838,"194":0.0961798838,"195":0.0961798838,"196":0.0961798838,"197":0.236389388,"198":-0.4364303178,"199":-0.4364303178,"200":-0.4364303178,"201":-0.4364303178,"204":-0.4364303178,"205":-0.1268710052,"206":-0.4364303178,"207":-0.4364303178,"208":-0.4364303178,"209":-0.4345380755,"210":-0.2068261136,"211":-0.4364303178,"212":0.0961798838,"213":0.0961798838,"214":0.0961798838,"215":0.0961798838,"218":0.0961798838,"219":0.2810253242,"220":0.0961798838,"221":0.0961798838,"222":0.0961798838,"223":0.0972308084,"224":0.236389388,"225":0.0961798838,"226":-0.4364303178,"230":-0.2518613687,"231":0.0961798838,"235":0.2413761924,"236":-0.2620842588,"237":0.2537890936},"metr_e":{"0":9.570888143e-16,"1":3.589083054e-16,"2":1.196361018e-16,"3":0.0,"4":2.392722036e-16,"5":-3.589083054e-16,"6":1.196361018e-16,"7":2.392722036e-16,"8":1.196361018e-16,"9":1.196361018e-16,"10":1.196361018e-16,"11":0.0,"12":-2.392722036e-16,"13":-2.392722036e-16,"14":2.392722036e-16,"15":0.0,"16":0.0,"17":1.196361018e-16,"18":-2.392722036e-16,"19":-1.196361018e-16,"20":-1.196361018e-16,"21":-5.98180509e-16,"22":0.0,"23":2.392722036e-16,"24":1.196361018e-16,"25":0.0,"26":-1.196361018e-16,"27":-2.392722036e-16,"28":1.196361018e-16,"29":-5.98180509e-16,"30":-1.196361018e-16,"31":0.0,"32":-1.196361018e-16,"33":3.589083054e-16,"34":-4.785444072e-16,"35":-3.589083054e-16,"36":-5.98180509e-16,"37":0.0,"38":-1.196361018e-16,"39":0.0,"40":1.196361018e-16,"41":-1.196361018e-16,"42":-4.785444072e-16,"43":1.196361018e-16,"44":0.0,"45":-3.589083054e-16,"46":-2.392722036e-16,"47":0.0,"48":1.196361018e-16,"49":-3.589083054e-16,"50":1.196361018e-16,"51":0.0,"52":0.0,"53":0.0,"54":0.0,"55":3.589083054e-16,"56":5.98180509e-16,"57":0.0,"58":-1.196361018e-16,"59":0.0,"60":1.196361018e-16,"61":-1.196361018e-16,"62":0.0,"63":2.392722036e-16,"64":0.2362673377,"65":0.21,"66":0.0,"67":-3.589083054e-16,"68":-1.196361018e-16,"69":0.0,"70":1.196361018e-16,"71":0.1736943007,"72":0.1954865318,"73":0.1954865318,"74":0.1954865318,"75":0.214090731,"76":0.2053971742,"77":0.2053971742,"78":0.2029927232,"79":0.2103601422,"80":0.2103601422,"81":0.2103601422,"82":0.2204870774,"83":0.2053971742,"84":0.2073898289,"85":0.2073898289,"86":0.0,"87":0.2053971742,"88":3.589083054e-16,"89":1.196361018e-16,"90":-2.392722036e-16,"91":-2.392722036e-16,"92":1.196361018e-16,"93":1.196361018e-16,"94":0.0,"95":0.0,"96":2.392722036e-16,"97":0.0,"98":0.1678266653,"99":9.294665054e-16,"100":-5.311237174e-16,"101":-2.655618587e-16,"102":-1.327809293e-16,"103":-2.655618587e-16,"104":-2.655618587e-16,"105":-2.655618587e-16,"106":-2.655618587e-16,"107":-2.655618587e-16,"108":-3.98342788e-16,"109":3.98342788e-16,"110":0.0,"111":-2.655618587e-16,"112":-3.98342788e-16,"113":-5.311237174e-16,"114":0.0,"115":-3.98342788e-16,"116":-2.655618587e-16,"117":-1.327809293e-16,"118":-3.98342788e-16,"119":3.98342788e-16,"120":-3.98342788e-16,"121":-9.294665054e-16,"122":3.98342788e-16,"123":-2.655618587e-16,"124":-3.98342788e-16,"125":-1.327809293e-16,"126":1.327809293e-16,"127":-1.327809293e-16,"128":-9.294665054e-16,"129":-2.655618587e-16,"130":7.966855761e-16,"131":-3.98342788e-16,"132":-2.655618587e-16,"133":-1.327809293e-16,"134":-2.655618587e-16,"135":-2.655618587e-16,"136":-5.311237174e-16,"137":0.0,"138":0.0,"139":-1.327809293e-16,"140":5.311237174e-16,"141":1.327809293e-16,"142":0.0,"143":-1.327809293e-16,"144":0.0,"145":-3.98342788e-16,"146":2.655618587e-16,"147":2.655618587e-16,"148":-1.327809293e-16,"149":-2.655618587e-16,"150":-3.98342788e-16,"151":-2.655618587e-16,"152":-2.655618587e-16,"153":-3.98342788e-16,"154":2.655618587e-16,"155":3.98342788e-16,"156":5.311237174e-16,"157":-3.98342788e-16,"158":1.327809293e-16,"159":1.327809293e-16,"160":3.98342788e-16,"161":3.98342788e-16,"162":5.311237174e-16,"163":0.2330177527,"164":0.2040791502,"165":-2.655618587e-16,"166":2.655618587e-16,"167":1.327809293e-16,"168":0.0,"169":0.0,"170":0.1676253368,"171":0.1893827348,"172":0.1893827348,"173":0.1893827348,"174":0.208988855,"175":0.1998324184,"176":0.1998324184,"177":0.1972983016,"178":0.2050607744,"179":0.2050607744,"180":0.2050607744,"181":0.215719831,"182":0.1998324184,"183":0.2019319921,"184":0.2019319921,"185":1.327809293e-16,"186":0.1998324184,"187":0.0,"188":-1.327809293e-16,"189":3.98342788e-16,"190":3.98342788e-16,"191":5.311237174e-16,"192":3.98342788e-16,"193":1.327809293e-16,"194":-1.327809293e-16,"195":0.0,"196":3.98342788e-16,"197":0.1608756734,"198":2.392722036e-16,"199":1.196361018e-16,"200":-1.196361018e-16,"201":-1.196361018e-16,"204":-1.196361018e-16,"205":0.2087329275,"206":-2.392722036e-16,"207":1.196361018e-16,"208":0.0,"209":0.0012777475,"210":0.1678266653,"211":0.0,"212":0.0,"213":1.327809293e-16,"214":-2.655618587e-16,"215":-1.327809293e-16,"218":0.0,"219":0.1997040243,"220":-3.98342788e-16,"221":-1.327809293e-16,"222":2.655618587e-16,"223":0.0011311547,"224":0.1608756734,"225":1.327809293e-16,"226":0.0,"230":0.1245668513,"231":1.327809293e-16,"235":0.1590372939,"236":0.1173614879,"237":0.1728099612},"metr_mix":{"0":-0.0915560685,"1":-0.0915560685,"2":-0.0915560685,"3":-0.0915560685,"4":-0.0915560685,"5":-0.0915560685,"6":-0.0915560685,"7":-0.0915560685,"8":-0.0915560685,"9":-0.0915560685,"10":-0.0915560685,"11":-0.0915560685,"12":-0.0915560685,"13":-0.0915560685,"14":-0.0915560685,"15":-0.0915560685,"16":-0.0915560685,"17":-0.0915560685,"18":-0.0915560685,"19":-0.0915560685,"20":-0.0915560685,"21":-0.0915560685,"22":-0.0915560685,"23":-0.0915560685,"24":-0.0915560685,"25":-0.0915560685,"26":-0.0915560685,"27":-0.0915560685,"28":-0.0915560685,"29":-0.0915560685,"30":-0.0915560685,"31":-0.0915560685,"32":-0.0915560685,"33":-0.0915560685,"34":-0.0915560685,"35":-0.0915560685,"36":-0.0915560685,"37":-0.0915560685,"38":-0.0915560685,"39":-0.0915560685,"40":-0.0915560685,"41":-0.0915560685,"42":-0.0915560685,"43":-0.0915560685,"44":-0.0915560685,"45":-0.0915560685,"46":-0.0915560685,"47":-0.0915560685,"48":-0.0915560685,"49":-0.0915560685,"50":-0.0915560685,"51":-0.0915560685,"52":-0.0915560685,"53":-0.0915560685,"54":-0.0915560685,"55":-0.0915560685,"56":-0.0915560685,"57":-0.0915560685,"58":-0.0915560685,"59":-0.0915560685,"60":-0.0915560685,"61":-0.0915560685,"62":-0.0915560685,"63":-0.0915560685,"64":0.1715367124,"65":0.1376707059,"66":-0.0915560685,"67":-0.0915560685,"68":-0.0915560685,"69":-0.0915560685,"70":-0.0915560685,"71":0.0965771749,"72":0.1210975669,"73":0.1210975669,"74":0.1210975669,"75":0.1436775982,"76":0.1331409596,"77":0.1331409596,"78":0.1302221775,"79":0.1391592746,"80":0.1391592746,"81":0.1391592746,"82":0.1514135006,"83":0.1331409596,"84":0.1355583555,"85":0.1355583555,"86":-0.0915560685,"87":0.1331409596,"88":-0.0915560685,"89":-0.0915560685,"90":-0.0915560685,"91":-0.0915560685,"92":-0.0915560685,"93":-0.0915560685,"94":-0.0915560685,"95":-0.0915560685,"96":-0.0915560685,"97":-0.0915560685,"98":0.0885234718,"99":0.0197791379,"100":0.0197791379,"101":0.0197791379,"102":0.0197791379,"103":0.0197791379,"104":0.0197791379,"105":0.0197791379,"106":0.0197791379,"107":0.0197791379,"108":0.0197791379,"109":0.0197791379,"110":0.0197791379,"111":0.0197791379,"112":0.0197791379,"113":0.0197791379,"114":0.0197791379,"115":0.0197791379,"116":0.0197791379,"117":0.0197791379,"118":0.0197791379,"119":0.0197791379,"120":0.0197791379,"121":0.0197791379,"122":0.0197791379,"123":0.0197791379,"124":0.0197791379,"125":0.0197791379,"126":0.0197791379,"127":0.0197791379,"128":0.0197791379,"129":0.0197791379,"130":0.0197791379,"131":0.0197791379,"132":0.0197791379,"133":0.0197791379,"134":0.0197791379,"135":0.0197791379,"136":0.0197791379,"137":0.0197791379,"138":0.0197791379,"139":0.0197791379,"140":0.0197791379,"141":0.0197791379,"142":0.0197791379,"143":0.0197791379,"144":0.0197791379,"145":0.0197791379,"146":0.0197791379,"147":0.0197791379,"148":0.0197791379,"149":0.0197791379,"150":0.0197791379,"151":0.0197791379,"152":0.0197791379,"153":0.0197791379,"154":0.0197791379,"155":0.0197791379,"156":0.0197791379,"157":0.0197791379,"158":0.0197791379,"159":0.0197791379,"160":0.0197791379,"161":0.0197791379,"162":0.0197791379,"163":0.2518520544,"164":0.2198217785,"165":0.0197791379,"166":0.0197791379,"167":0.0197791379,"168":0.0197791379,"169":0.0197791379,"170":0.1833125961,"171":0.2051004895,"172":0.2051004895,"173":0.2051004895,"174":0.225878006,"175":0.2161848594,"176":0.2161848594,"177":0.2134990003,"178":0.2217218976,"179":0.2217218976,"180":0.2217218976,"181":0.2329919805,"182":0.2161848594,"183":0.2184091022,"184":0.2184091022,"185":0.0197791379,"186":0.2161848594,"187":0.0197791379,"188":0.0197791379,"189":0.0197791379,"190":0.0197791379,"191":0.0197791379,"192":0.0197791379,"193":0.0197791379,"194":0.0197791379,"195":0.0197791379,"196":0.0197791379,"197":0.1756100212,"198":-0.0915560685,"199":-0.0915560685,"200":-0.0915560685,"201":-0.0915560685,"204":-0.0915560685,"205":0.1372288209,"206":-0.0915560685,"207":-0.0915560685,"208":-0.0915560685,"209":-0.0901574668,"210":0.0885234718,"211":-0.0915560685,"212":0.0197791379,"213":0.0197791379,"214":0.0197791379,"215":0.0197791379,"218":0.0197791379,"219":0.2161358199,"220":0.0197791379,"221":0.0197791379,"222":0.0197791379,"223":0.0208916373,"224":0.1756100212,"225":0.0197791379,"226":-0.0915560685,"230":0.0448756521,"231":0.0197791379,"235":0.1755861753,"236":0.0372852158,"237":0.1893738095},"mettr_d":{"0":-0.0595318546,"1":-0.0595318546,"2":-0.0595318546,"3":-0.0595318546,"4":-0.0595318546,"5":-0.0595318546,"6":-0.0595318546,"7":-0.0595318546,"8":-0.0595318546,"9":-0.0595318546,"10":-0.0595318546,"11":-0.0595318546,"12":-0.0595318546,"13":-0.0595318546,"14":-0.0595318546,"15":-0.0595318546,"16":-0.0595318546,"17":-0.0595318546,"18":-0.0595318546,"19":-0.0595318546,"20":-0.0595318546,"21":-0.0595318546,"22":-0.0595318546,"23":-0.0595318546,"24":-0.0595318546,"25":-0.0595318546,"26":-0.0595318546,"27":-0.0595318546,"28":-0.0595318546,"29":-0.0595318546,"30":-0.0595318546,"31":-0.0595318546,"32":-0.0595318546,"33":-0.0595318546,"34":-0.0595318546,"35":-0.0595318546,"36":-0.0595318546,"37":-0.0595318546,"38":-0.0595318546,"39":-0.0595318546,"40":-0.0595318546,"41":-0.0595318546,"42":-0.0595318546,"43":-0.0595318546,"44":-0.0595318546,"45":-0.0595318546,"46":-0.0595318546,"47":-0.0595318546,"48":-0.0595318546,"49":-0.0595318546,"50":-0.0595318546,"51":-0.0595318546,"52":-0.0595318546,"53":-0.0595318546,"54":-0.0595318546,"55":-0.0595318546,"56":-0.0595318546,"57":-0.0595318546,"58":-0.0595318546,"59":-0.0595318546,"60":-0.0595318546,"61":-0.0595318546,"62":-0.0595318546,"63":-0.0595318546,"64":0.2138593864,"65":0.1629698349,"66":-0.0595318546,"67":-0.0595318546,"68":-0.0595318546,"69":-0.0595318546,"70":-0.0595318546,"71":0.1222085693,"72":0.1478487682,"73":0.1478487682,"74":0.1478487682,"75":0.1769290444,"76":0.163422073,"77":0.163422073,"78":0.1596610693,"79":0.1711503696,"80":0.1711503696,"81":0.1711503696,"82":0.1867764715,"83":0.163422073,"84":0.1665306217,"85":0.1665306217,"86":-0.0595318546,"87":0.163422073,"88":-0.0595318546,"89":-0.0595318546,"90":-0.0595318546,"91":-0.0595318546,"92":-0.0595318546,"93":-0.0595318546,"94":-0.0595318546,"95":-0.0595318546,"96":-0.0595318546,"97":-0.0595318546,"98":0.1098275395,"99":0.0961798838,"100":0.0961798838,"101":0.0961798838,"102":0.0961798838,"103":0.0961798838,"104":0.0961798838,"105":0.0961798838,"106":0.0961798838,"107":0.0961798838,"108":0.0961798838,"109":0.0961798838,"110":0.0961798838,"111":0.0961798838,"112":0.0961798838,"113":0.0961798838,"114":0.0961798838,"115":0.0961798838,"116":0.0961798838,"117":0.0961798838,"118":0.0961798838,"119":0.0961798838,"120":0.0961798838,"121":0.0961798838,"122":0.0961798838,"123":0.0961798838,"124":0.0961798838,"125":0.0961798838,"126":0.0961798838,"127":0.0961798838,"128":0.0961798838,"129":0.0961798838,"130":0.0961798838,"131":0.0961798838,"132":0.0961798838,"133":0.0961798838,"134":0.0961798838,"135":0.0961798838,"136":0.0961798838,"137":0.0961798838,"138":0.0961798838,"139":0.0961798838,"140":0.0961798838,"141":0.0961798838,"142":0.0961798838,"143":0.0961798838,"144":0.0961798838,"145":0.0961798838,"146":0.0961798838,"147":0.0961798838,"148":0.0961798838,"149":0.0961798838,"150":0.0961798838,"151":0.0961798838,"152":0.0961798838,"153":0.0961798838,"154":0.0961798838,"155":0.0961798838,"156":0.0961798838,"157":0.0961798838,"158":0.0961798838,"159":0.0961798838,"160":0.0961798838,"161":0.0961798838,"162":0.0961798838,"163":0.3227028821,"164":0.2806307251,"165":0.0961798838,"166":0.0961798838,"167":0.0961798838,"168":0.0961798838,"169":0.0961798838,"170":0.2465863752,"171":0.2679162967,"172":0.2679162967,"173":0.2679162967,"174":0.2920116266,"175":0.2808125042,"176":0.2808125042,"177":0.2776964414,"178":0.2872187188,"179":0.2872187188,"180":0.2872187188,"181":0.3001847217,"182":0.2808125042,"183":0.2833887589,"184":0.2833887589,"185":0.0961798838,"186":0.2808125042,"187":0.0961798838,"188":0.0961798838,"189":0.0961798838,"190":0.0961798838,"191":0.0961798838,"192":0.0961798838,"193":0.0961798838,"194":0.0961798838,"195":0.0961798838,"196":0.0961798838,"197":0.236389388,"198":-0.0595318546,"199":-0.0595318546,"200":-0.0595318546,"201":-0.0595318546,"204":-0.0595318546,"205":0.1688035882,"206":-0.0595318546,"207":-0.0595318546,"208":-0.0595318546,"209":-0.0581361091,"210":0.1098275395,"211":-0.0595318546,"212":0.0961798838,"213":0.0961798838,"214":0.0961798838,"215":0.0961798838,"218":0.0961798838,"219":0.2810253242,"220":0.0961798838,"221":0.0961798838,"222":0.0961798838,"223":0.0972308084,"224":0.236389388,"225":0.0961798838,"226":-0.0595318546,"230":0.0766088817,"231":0.0961798838,"235":0.2413761924,"236":0.0690683295,"237":0.2537890936},"mettr_e":{"0":0.0989963515,"1":0.0989963515,"2":0.0989963515,"3":0.0989963515,"4":0.0989963515,"5":0.0989963515,"6":0.0989963515,"7":0.0989963515,"8":0.0989963515,"9":0.0989963515,"10":0.0989963515,"11":0.0989963515,"12":0.0989963515,"13":0.0989963515,"14":0.0989963515,"15":0.0989963515,"16":0.0989963515,"17":0.0989963515,"18":0.0989963515,"19":0.0989963515,"20":0.0989963515,"21":0.0989963515,"22":0.0989963515,"23":0.0989963515,"24":0.0989963515,"25":0.0989963515,"26":0.0989963515,"27":0.0989963515,"28":0.0989963515,"29":0.0989963515,"30":0.0989963515,"31":0.0989963515,"32":0.0989963515,"33":0.0989963515,"34":0.0989963515,"35":0.0989963515,"36":0.0989963515,"37":0.0989963515,"38":0.0989963515,"39":0.0989963515,"40":0.0989963515,"41":0.0989963515,"42":0.0989963515,"43":0.0989963515,"44":0.0989963515,"45":0.0989963515,"46":0.0989963515,"47":0.0989963515,"48":0.0989963515,"49":0.0989963515,"50":0.0989963515,"51":0.0989963515,"52":0.0989963515,"53":0.0989963515,"54":0.0989963515,"55":0.0989963515,"56":0.0989963515,"57":0.0989963515,"58":0.0989963515,"59":0.0989963515,"60":0.0989963515,"61":0.0989963515,"62":0.0989963515,"63":0.0989963515,"64":0.3118740848,"65":0.2882071177,"66":0.0989963515,"67":0.0989963515,"68":0.0989963515,"69":0.0989963515,"70":0.0989963515,"71":0.2554955501,"72":0.2751304299,"73":0.2751304299,"74":0.2751304299,"75":0.2918928812,"76":0.2840599548,"77":0.2840599548,"78":0.2818935357,"79":0.2885316071,"80":0.2885316071,"81":0.2885316071,"82":0.2976560126,"83":0.2840599548,"84":0.285855344,"85":0.285855344,"86":0.0989963515,"87":0.2840599548,"88":0.0989963515,"89":0.0989963515,"90":0.0989963515,"91":0.0989963515,"92":0.0989963515,"93":0.0989963515,"94":0.0989963515,"95":0.0989963515,"96":0.0989963515,"97":0.0989963515,"98":0.2502087892,"99":7.966855761e-16,"100":-6.639046467e-16,"101":-3.98342788e-16,"102":-2.655618587e-16,"103":-3.98342788e-16,"104":-3.98342788e-16,"105":-3.98342788e-16,"106":-3.98342788e-16,"107":-3.98342788e-16,"108":-5.311237174e-16,"109":2.655618587e-16,"110":-1.327809293e-16,"111":-3.98342788e-16,"112":-5.311237174e-16,"113":-6.639046467e-16,"114":-1.327809293e-16,"115":-5.311237174e-16,"116":-3.98342788e-16,"117":-2.655618587e-16,"118":-5.311237174e-16,"119":2.655618587e-16,"120":-5.311237174e-16,"121":-0.0,"122":2.655618587e-16,"123":-3.98342788e-16,"124":-5.311237174e-16,"125":-2.655618587e-16,"126":0.0,"127":-2.655618587e-16,"128":-0.0,"129":-3.98342788e-16,"130":6.639046467e-16,"131":-5.311237174e-16,"132":-3.98342788e-16,"133":-2.655618587e-16,"134":-3.98342788e-16,"135":-3.98342788e-16,"136":-6.639046467e-16,"137":-1.327809293e-16,"138":-1.327809293e-16,"139":-2.655618587e-16,"140":3.98342788e-16,"141":0.0,"142":-1.327809293e-16,"143":-2.655618587e-16,"144":-1.327809293e-16,"145":-5.311237174e-16,"146":1.327809293e-16,"147":1.327809293e-16,"148":-2.655618587e-16,"149":-3.98342788e-16,"150":-5.311237174e-16,"151":-3.98342788e-16,"152":-3.98342788e-16,"153":-5.311237174e-16,"154":1.327809293e-16,"155":2.655618587e-16,"156":3.98342788e-16,"157":-5.311237174e-16,"158":0.0,"159":0.0,"160":2.655618587e-16,"161":2.655618587e-16,"162":3.98342788e-16,"163":0.2330177527,"164":0.2040791502,"165":-3.98342788e-16,"166":1.327809293e-16,"167":0.0,"168":-1.327809293e-16,"169":-1.327809293e-16,"170":0.1676253368,"171":0.1893827348,"172":0.1893827348,"173":0.1893827348,"174":0.208988855,"175":0.1998324184,"176":0.1998324184,"177":0.1972983016,"178":0.2050607744,"179":0.2050607744,"180":0.2050607744,"181":0.215719831,"182":0.1998324184,"183":0.2019319921,"184":0.2019319921,"185":0.0,"186":0.1998324184,"187":-1.327809293e-16,"188":-2.655618587e-16,"189":2.655618587e-16,"190":2.655618587e-16,"191":3.98342788e-16,"192":2.655618587e-16,"193":0.0,"194":-2.655618587e-16,"195":-1.327809293e-16,"196":2.655618587e-16,"197":0.1608756734,"198":0.0989963515,"199":0.0989963515,"200":0.0989963515,"201":0.0989963515,"204":0.0989963515,"205":0.2870654808,"206":0.0989963515,"207":0.0989963515,"208":0.0989963515,"209":0.1001476067,"210":0.2502087892,"211":0.0989963515,"212":-1.327809293e-16,"213":0.0,"214":-3.98342788e-16,"215":-2.655618587e-16,"218":-1.327809293e-16,"219":0.1997040243,"220":-5.311237174e-16,"221":-2.655618587e-16,"222":1.327809293e-16,"223":0.0011311547,"224":0.1608756734,"225":0.0,"226":0.0989963515,"230":0.211231539,"231":0.0,"235":0.1590372939,"236":0.2047394803,"237":0.1728099612},"mettr_mix":{"0":0.065739681,"1":0.065739681,"2":0.065739681,"3":0.065739681,"4":0.065739681,"5":0.065739681,"6":0.065739681,"7":0.065739681,"8":0.065739681,"9":0.065739681,"10":0.065739681,"11":0.065739681,"12":0.065739681,"13":0.065739681,"14":0.065739681,"15":0.065739681,"16":0.065739681,"17":0.065739681,"18":0.065739681,"19":0.065739681,"20":0.065739681,"21":0.065739681,"22":0.065739681,"23":0.065739681,"24":0.065739681,"25":0.065739681,"26":0.065739681,"27":0.065739681,"28":0.065739681,"29":0.065739681,"30":0.065739681,"31":0.065739681,"32":0.065739681,"33":0.065739681,"34":0.065739681,"35":0.065739681,"36":0.065739681,"37":0.065739681,"38":0.065739681,"39":0.065739681,"40":0.065739681,"41":0.065739681,"42":0.065739681,"43":0.065739681,"44":0.065739681,"45":0.065739681,"46":0.065739681,"47":0.065739681,"48":0.065739681,"49":0.065739681,"50":0.065739681,"51":0.065739681,"52":0.065739681,"53":0.065739681,"54":0.065739681,"55":0.065739681,"56":0.065739681,"57":0.065739681,"58":0.065739681,"59":0.065739681,"60":0.065739681,"61":0.065739681,"62":0.065739681,"63":0.065739681,"64":0.2909201847,"65":0.261934348,"66":0.065739681,"67":0.065739681,"68":0.065739681,"69":0.065739681,"70":0.065739681,"71":0.2267624896,"72":0.2477494365,"73":0.2477494365,"74":0.2477494365,"75":0.2670756332,"76":0.2580573486,"77":0.2580573486,"78":0.2555591697,"79":0.2632084105,"80":0.2632084105,"81":0.2632084105,"82":0.2736967742,"83":0.2580573486,"84":0.2601263921,"85":0.2601263921,"86":0.065739681,"87":0.2580573486,"88":0.065739681,"89":0.065739681,"90":0.065739681,"91":0.065739681,"92":0.065739681,"93":0.065739681,"94":0.065739681,"95":0.065739681,"96":0.065739681,"97":0.065739681,"98":0.2198693438,"99":0.0197791379,"100":0.0197791379,"101":0.0197791379,"102":0.0197791379,"103":0.0197791379,"104":0.0197791379,"105":0.0197791379,"106":0.0197791379,"107":0.0197791379,"108":0.0197791379,"109":0.0197791379,"110":0.0197791379,"111":0.0197791379,"112":0.0197791379,"113":0.0197791379,"114":0.0197791379,"115":0.0197791379,"116":0.0197791379,"117":0.0197791379,"118":0.0197791379,"119":0.0197791379,"120":0.0197791379,"121":0.0197791379,"122":0.0197791379,"123":0.0197791379,"124":0.0197791379,"125":0.0197791379,"126":0.0197791379,"127":0.0197791379,"128":0.0197791379,"129":0.0197791379,"130":0.0197791379,"131":0.0197791379,"132":0.0197791379,"133":0.0197791379,"134":0.0197791379,"135":0.0197791379,"136":0.0197791379,"137":0.0197791379,"138":0.0197791379,"139":0.0197791379,"140":0.0197791379,"141":0.0197791379,"142":0.0197791379,"143":0.0197791379,"144":0.0197791379,"145":0.0197791379,"146":0.0197791379,"147":0.0197791379,"148":0.0197791379,"149":0.0197791379,"150":0.0197791379,"151":0.0197791379,"152":0.0197791379,"153":0.0197791379,"154":0.0197791379,"155":0.0197791379,"156":0.0197791379,"157":0.0197791379,"158":0.0197791379,"159":0.0197791379,"160":0.0197791379,"161":0.0197791379,"162":0.0197791379,"163":0.2518520544,"164":0.2198217785,"165":0.0197791379,"166":0.0197791379,"167":0.0197791379,"168":0.0197791379,"169":0.0197791379,"170":0.1833125961,"171":0.2051004895,"172":0.2051004895,"173":0.2051004895,"174":0.225878006,"175":0.2161848594,"176":0.2161848594,"177":0.2134990003,"178":0.2217218976,"179":0.2217218976,"180":0.2217218976,"181":0.2329919805,"182":0.2161848594,"183":0.2184091022,"184":0.2184091022,"185":0.0197791379,"186":0.2161848594,"187":0.0197791379,"188":0.0197791379,"189":0.0197791379,"190":0.0197791379,"191":0.0197791379,"192":0.0197791379,"193":0.0197791379,"194":0.0197791379,"195":0.0197791379,"196":0.0197791379,"197":0.1756100212,"198":0.065739681,"199":0.065739681,"200":0.065739681,"201":0.065739681,"204":0.065739681,"205":0.2615561396,"206":0.065739681,"207":0.065739681,"208":0.065739681,"209":0.0669367409,"210":0.2198693438,"211":0.065739681,"212":0.0197791379,"213":0.0197791379,"214":0.0197791379,"215":0.0197791379,"218":0.0197791379,"219":0.2161358199,"220":0.0197791379,"221":0.0197791379,"222":0.0197791379,"223":0.0208916373,"224":0.1756100212,"225":0.0197791379,"226":0.065739681,"230":0.1825112756,"231":0.0197791379,"235":0.1755861753,"236":0.1760146387,"237":0.1893738095},"minor_asset_group":{"0":"Computers and Software","1":"Computers and Software","2":"Computers and Software","3":"Computers and Software","4":"Computers and Software","5":"Computers and Software","6":"Computers and Software","7":"Computers and Software","8":"Computers and Software","9":"Computers and Software","10":"Industrial Machinery","11":"Industrial Machinery","12":"Instruments and Communications Equipment","13":"Instruments and Communications Equipment","14":"Instruments and Communications Equipment","15":"Instruments and Communications Equipment","16":"Instruments and Communications Equipment","17":"Instruments and Communications Equipment","18":"Office and Residential Equipment","19":"Office and Residential Equipment","20":"Office and Residential Equipment","21":"Other Equipment","22":"Other Equipment","23":"Other Equipment","24":"Other Industrial Equipment","25":"Other Industrial Equipment","26":"Other Industrial Equipment","27":"Other Industrial Equipment","28":"Other Industrial Equipment","29":"Other Industrial Equipment","30":"Other Industrial Equipment","31":"Other Industrial Equipment","32":"Other Industrial Equipment","33":"Transportation Equipment","34":"Transportation Equipment","35":"Transportation Equipment","36":"Transportation Equipment","37":"Transportation Equipment","38":"Transportation Equipment","39":"Transportation Equipment","40":"Transportation Equipment","41":"Intellectual Property","42":"Intellectual Property","43":"Intellectual Property","44":"Intellectual Property","45":"Intellectual Property","46":"Intellectual Property","47":"Intellectual Property","48":"Intellectual Property","49":"Intellectual Property","50":"Intellectual Property","51":"Intellectual Property","52":"Intellectual Property","53":"Intellectual Property","54":"Intellectual Property","55":"Intellectual Property","56":"Intellectual Property","57":"Intellectual Property","58":"Intellectual Property","59":"Intellectual Property","60":"Intellectual Property","61":"Intellectual Property","62":"Intellectual Property","63":"Intellectual Property","64":"Inventories","65":"Land","66":"Mining and Drilling Structures","67":"Mining and Drilling Structures","68":"Mining and Drilling Structures","69":"Mining and Drilling Structures","70":"Mining and Drilling Structures","71":"Nonresidential Buildings","72":"Nonresidential Buildings","73":"Nonresidential Buildings","74":"Nonresidential Buildings","75":"Nonresidential Buildings","76":"Nonresidential Buildings","77":"Nonresidential Buildings","78":"Nonresidential Buildings","79":"Nonresidential Buildings","80":"Nonresidential Buildings","81":"Nonresidential Buildings","82":"Nonresidential Buildings","83":"Nonresidential Buildings","84":"Nonresidential Buildings","85":"Nonresidential Buildings","86":"Other Structures","87":"Other Structures","88":"Other Structures","89":"Other Structures","90":"Other Structures","91":"Other Structures","92":"Other Structures","93":"Other Structures","94":"Other Structures","95":"Other Structures","96":"Other Structures","97":"Other Structures","98":"Residential Buildings","99":"Computers and Software","100":"Computers and Software","101":"Computers and Software","102":"Computers and Software","103":"Computers and Software","104":"Computers and Software","105":"Computers and Software","106":"Computers and Software","107":"Computers and Software","108":"Computers and Software","109":"Industrial Machinery","110":"Industrial Machinery","111":"Instruments and Communications Equipment","112":"Instruments and Communications Equipment","113":"Instruments and Communications Equipment","114":"Instruments and Communications Equipment","115":"Instruments and Communications Equipment","116":"Instruments and Communications Equipment","117":"Office and Residential Equipment","118":"Office and Residential Equipment","119":"Office and Residential Equipment","120":"Other Equipment","121":"Other Equipment","122":"Other Equipment","123":"Other Industrial Equipment","124":"Other Industrial Equipment","125":"Other Industrial Equipment","126":"Other Industrial Equipment","127":"Other Industrial Equipment","128":"Other Industrial Equipment","129":"Other Industrial Equipment","130":"Other Industrial Equipment","131":"Other Industrial Equipment","132":"Transportation Equipment","133":"Transportation Equipment","134":"Transportation Equipment","135":"Transportation Equipment","136":"Transportation Equipment","137":"Transportation Equipment","138":"Transportation Equipment","139":"Transportation Equipment","140":"Intellectual Property","141":"Intellectual Property","142":"Intellectual Property","143":"Intellectual Property","144":"Intellectual Property","145":"Intellectual Property","146":"Intellectual Property","147":"Intellectual Property","148":"Intellectual Property","149":"Intellectual Property","150":"Intellectual Property","151":"Intellectual Property","152":"Intellectual Property","153":"Intellectual Property","154":"Intellectual Property","155":"Intellectual Property","156":"Intellectual Property","157":"Intellectual Property","158":"Intellectual Property","159":"Intellectual Property","160":"Intellectual Property","161":"Intellectual Property","162":"Intellectual Property","163":"Inventories","164":"Land","165":"Mining and Drilling Structures","166":"Mining and Drilling Structures","167":"Mining and Drilling Structures","168":"Mining and Drilling Structures","169":"Mining and Drilling Structures","170":"Nonresidential Buildings","171":"Nonresidential Buildings","172":"Nonresidential Buildings","173":"Nonresidential Buildings","174":"Nonresidential Buildings","175":"Nonresidential Buildings","176":"Nonresidential Buildings","177":"Nonresidential Buildings","178":"Nonresidential Buildings","179":"Nonresidential Buildings","180":"Nonresidential Buildings","181":"Nonresidential Buildings","182":"Nonresidential Buildings","183":"Nonresidential Buildings","184":"Nonresidential Buildings","185":"Other Structures","186":"Other Structures","187":"Other Structures","188":"Other Structures","189":"Other Structures","190":"Other Structures","191":"Other Structures","192":"Other Structures","193":"Other Structures","194":"Other Structures","195":"Other Structures","196":"Other Structures","197":"Residential Buildings","198":"Computers and Software","199":"Industrial Machinery","200":"Instruments and Communications Equipment","201":"Intellectual Property","204":"Mining and Drilling Structures","205":"Nonresidential Buildings","206":"Office and Residential Equipment","207":"Other Equipment","208":"Other Industrial Equipment","209":"Other Structures","210":"Residential Buildings","211":"Transportation Equipment","212":"Computers and Software","213":"Industrial Machinery","214":"Instruments and Communications Equipment","215":"Intellectual Property","218":"Mining and Drilling Structures","219":"Nonresidential Buildings","220":"Office and Residential Equipment","221":"Other Equipment","222":"Other Industrial Equipment","223":"Other Structures","224":"Residential Buildings","225":"Transportation Equipment","226":"Equipment","230":"Structures","231":"Equipment","235":"Structures","236":"Overall","237":"Overall"},"rho_d":{"0":0.03272,"1":0.03272,"2":0.03272,"3":0.03272,"4":0.03272,"5":0.03272,"6":0.03272,"7":0.03272,"8":0.03272,"9":0.03272,"10":0.03272,"11":0.03272,"12":0.03272,"13":0.03272,"14":0.03272,"15":0.03272,"16":0.03272,"17":0.03272,"18":0.03272,"19":0.03272,"20":0.03272,"21":0.03272,"22":0.03272,"23":0.03272,"24":0.03272,"25":0.03272,"26":0.03272,"27":0.03272,"28":0.03272,"29":0.03272,"30":0.03272,"31":0.03272,"32":0.03272,"33":0.03272,"34":0.03272,"35":0.03272,"36":0.03272,"37":0.03272,"38":0.03272,"39":0.03272,"40":0.03272,"41":0.03272,"42":0.03272,"43":0.03272,"44":0.03272,"45":0.03272,"46":0.03272,"47":0.03272,"48":0.03272,"49":0.03272,"50":0.03272,"51":0.03272,"52":0.03272,"53":0.03272,"54":0.03272,"55":0.03272,"56":0.03272,"57":0.03272,"58":0.03272,"59":0.03272,"60":0.03272,"61":0.03272,"62":0.03272,"63":0.03272,"64":0.0440988313,"65":0.0414177215,"66":0.03272,"67":0.03272,"68":0.03272,"69":0.03272,"70":0.03272,"71":0.0394944415,"72":0.0406827814,"73":0.0406827814,"74":0.0406827814,"75":0.0421201624,"76":0.0414401111,"77":0.0414401111,"78":0.0412546426,"79":0.0418265039,"80":0.0418265039,"81":0.0418265039,"82":0.0426302008,"83":0.0414401111,"84":0.0415946682,"85":0.0415946682,"86":0.03272,"87":0.0414401111,"88":0.03272,"89":0.03272,"90":0.03272,"91":0.03272,"92":0.03272,"93":0.03272,"94":0.03272,"95":0.03272,"96":0.03272,"97":0.03272,"98":0.0389451301,"99":0.0331226178,"100":0.0331226178,"101":0.0331226178,"102":0.0331226178,"103":0.0331226178,"104":0.0331226178,"105":0.0331226178,"106":0.0331226178,"107":0.0331226178,"108":0.0331226178,"109":0.0331226178,"110":0.0331226178,"111":0.0331226178,"112":0.0331226178,"113":0.0331226178,"114":0.0331226178,"115":0.0331226178,"116":0.0331226178,"117":0.0331226178,"118":0.0331226178,"119":0.0331226178,"120":0.0331226178,"121":0.0331226178,"122":0.0331226178,"123":0.0331226178,"124":0.0331226178,"125":0.0331226178,"126":0.0331226178,"127":0.0331226178,"128":0.0331226178,"129":0.0331226178,"130":0.0331226178,"131":0.0331226178,"132":0.0331226178,"133":0.0331226178,"134":0.0331226178,"135":0.0331226178,"136":0.0331226178,"137":0.0331226178,"138":0.0331226178,"139":0.0331226178,"140":0.0331226178,"141":0.0331226178,"142":0.0331226178,"143":0.0331226178,"144":0.0331226178,"145":0.0331226178,"146":0.0331226178,"147":0.0331226178,"148":0.0331226178,"149":0.0331226178,"150":0.0331226178,"151":0.0331226178,"152":0.0331226178,"153":0.0331226178,"154":0.0331226178,"155":0.0331226178,"156":0.0331226178,"157":0.0331226178,"158":0.0331226178,"159":0.0331226178,"160":0.0331226178,"161":0.0331226178,"162":0.0331226178,"163":0.0442005251,"164":0.0416154669,"165":0.0331226178,"166":0.0331226178,"167":0.0331226178,"168":0.0331226178,"169":0.0331226178,"170":0.0397349972,"171":0.0408927123,"172":0.0408927123,"173":0.0408927123,"174":0.0422844349,"175":0.0416259855,"176":0.0416259855,"177":0.0414464084,"178":0.0420001044,"179":0.0420001044,"180":0.0420001044,"181":0.0427782719,"182":0.0416259855,"183":0.0417756331,"184":0.0417756331,"185":0.0331226178,"186":0.0416259855,"187":0.0331226178,"188":0.0331226178,"189":0.0331226178,"190":0.0331226178,"191":0.0331226178,"192":0.0331226178,"193":0.0331226178,"194":0.0331226178,"195":0.0331226178,"196":0.0331226178,"197":0.03920439,"198":0.03272,"199":0.03272,"200":0.03272,"201":0.03272,"204":0.03272,"205":0.0417084119,"206":0.03272,"207":0.03272,"208":0.03272,"209":0.0327631597,"210":0.0389451301,"211":0.03272,"212":0.0331226178,"213":0.0331226178,"214":0.0331226178,"215":0.0331226178,"218":0.0331226178,"219":0.041638307,"220":0.0331226178,"221":0.0331226178,"222":0.0331226178,"223":0.0331611762,"224":0.03920439,"225":0.0331226178,"226":0.03272,"230":0.0375440933,"231":0.0331226178,"235":0.0394620996,"236":0.0372399859,"237":0.0401185348},"rho_e":{"0":0.058,"1":0.058,"2":0.058,"3":0.058,"4":0.058,"5":0.058,"6":0.058,"7":0.058,"8":0.058,"9":0.058,"10":0.058,"11":0.058,"12":0.058,"13":0.058,"14":0.058,"15":0.058,"16":0.058,"17":0.058,"18":0.058,"19":0.058,"20":0.058,"21":0.058,"22":0.058,"23":0.058,"24":0.058,"25":0.058,"26":0.058,"27":0.058,"28":0.058,"29":0.058,"30":0.058,"31":0.058,"32":0.058,"33":0.058,"34":0.058,"35":0.058,"36":0.058,"37":0.058,"38":0.058,"39":0.058,"40":0.058,"41":0.058,"42":0.058,"43":0.058,"44":0.058,"45":0.058,"46":0.058,"47":0.058,"48":0.058,"49":0.058,"50":0.058,"51":0.058,"52":0.058,"53":0.058,"54":0.058,"55":0.058,"56":0.058,"57":0.058,"58":0.058,"59":0.058,"60":0.058,"61":0.058,"62":0.058,"63":0.058,"64":0.0759428042,"65":0.0734177215,"66":0.058,"67":0.058,"68":0.058,"69":0.058,"70":0.058,"71":0.0701919399,"72":0.0720932617,"73":0.0720932617,"74":0.0720932617,"75":0.0737998676,"76":0.0729924412,"77":0.0729924412,"78":0.0727722339,"79":0.0734512062,"80":0.0734512062,"81":0.0734512062,"82":0.0744054374,"83":0.0729924412,"84":0.0731759472,"85":0.0731759472,"86":0.058,"87":0.0729924412,"88":0.058,"89":0.058,"90":0.058,"91":0.058,"92":0.058,"93":0.058,"94":0.058,"95":0.058,"96":0.058,"97":0.058,"98":0.0696970181,"99":0.0522582116,"100":0.0522582116,"101":0.0522582116,"102":0.0522582116,"103":0.0522582116,"104":0.0522582116,"105":0.0522582116,"106":0.0522582116,"107":0.0522582116,"108":0.0522582116,"109":0.0522582116,"110":0.0522582116,"111":0.0522582116,"112":0.0522582116,"113":0.0522582116,"114":0.0522582116,"115":0.0522582116,"116":0.0522582116,"117":0.0522582116,"118":0.0522582116,"119":0.0522582116,"120":0.0522582116,"121":0.0522582116,"122":0.0522582116,"123":0.0522582116,"124":0.0522582116,"125":0.0522582116,"126":0.0522582116,"127":0.0522582116,"128":0.0522582116,"129":0.0522582116,"130":0.0522582116,"131":0.0522582116,"132":0.0522582116,"133":0.0522582116,"134":0.0522582116,"135":0.0522582116,"136":0.0522582116,"137":0.0522582116,"138":0.0522582116,"139":0.0522582116,"140":0.0522582116,"141":0.0522582116,"142":0.0522582116,"143":0.0522582116,"144":0.0522582116,"145":0.0522582116,"146":0.0522582116,"147":0.0522582116,"148":0.0522582116,"149":0.0522582116,"150":0.0522582116,"151":0.0522582116,"152":0.0522582116,"153":0.0522582116,"154":0.0522582116,"155":0.0522582116,"156":0.0522582116,"157":0.0522582116,"158":0.0522582116,"159":0.0522582116,"160":0.0522582116,"161":0.0522582116,"162":0.0522582116,"163":0.0681348386,"164":0.0656575483,"165":0.0522582116,"166":0.0522582116,"167":0.0522582116,"168":0.0522582116,"169":0.0522582116,"170":0.0627820787,"171":0.064467183,"172":0.064467183,"173":0.064467183,"174":0.0660650763,"175":0.0653090838,"176":0.0653090838,"177":0.065102904,"178":0.065738625,"179":0.065738625,"180":0.065738625,"181":0.0666320706,"182":0.0653090838,"183":0.0654809002,"184":0.0654809002,"185":0.0522582116,"186":0.0653090838,"187":0.0522582116,"188":0.0522582116,"189":0.0522582116,"190":0.0522582116,"191":0.0522582116,"192":0.0522582116,"193":0.0522582116,"194":0.0522582116,"195":0.0522582116,"196":0.0522582116,"197":0.0622770786,"198":0.058,"199":0.058,"200":0.058,"201":0.058,"204":0.058,"205":0.0733001562,"206":0.058,"207":0.058,"208":0.058,"209":0.0580742042,"210":0.0696970181,"211":0.058,"212":0.0522582116,"213":0.0522582116,"214":0.0522582116,"215":0.0522582116,"218":0.0522582116,"219":0.065298606,"220":0.0522582116,"221":0.0522582116,"222":0.0522582116,"223":0.0523173907,"224":0.0622770786,"225":0.0522582116,"226":0.058,"230":0.0662529173,"231":0.0522582116,"235":0.0621409383,"236":0.0657120658,"237":0.0631755814},"rho_mix":{"0":0.0499104,"1":0.0499104,"2":0.0499104,"3":0.0499104,"4":0.0499104,"5":0.0499104,"6":0.0499104,"7":0.0499104,"8":0.0499104,"9":0.0499104,"10":0.0499104,"11":0.0499104,"12":0.0499104,"13":0.0499104,"14":0.0499104,"15":0.0499104,"16":0.0499104,"17":0.0499104,"18":0.0499104,"19":0.0499104,"20":0.0499104,"21":0.0499104,"22":0.0499104,"23":0.0499104,"24":0.0499104,"25":0.0499104,"26":0.0499104,"27":0.0499104,"28":0.0499104,"29":0.0499104,"30":0.0499104,"31":0.0499104,"32":0.0499104,"33":0.0499104,"34":0.0499104,"35":0.0499104,"36":0.0499104,"37":0.0499104,"38":0.0499104,"39":0.0499104,"40":0.0499104,"41":0.0499104,"42":0.0499104,"43":0.0499104,"44":0.0499104,"45":0.0499104,"46":0.0499104,"47":0.0499104,"48":0.0499104,"49":0.0499104,"50":0.0499104,"51":0.0499104,"52":0.0499104,"53":0.0499104,"54":0.0499104,"55":0.0499104,"56":0.0499104,"57":0.0499104,"58":0.0499104,"59":0.0499104,"60":0.0499104,"61":0.0499104,"62":0.0499104,"63":0.0499104,"64":0.0657603068,"65":0.0631777215,"66":0.0499104,"67":0.0499104,"68":0.0499104,"69":0.0499104,"70":0.0499104,"71":0.0603039889,"72":0.0619864025,"73":0.0619864025,"74":0.0619864025,"75":0.0636208978,"76":0.0628475882,"77":0.0628475882,"78":0.0626366856,"79":0.0632869687,"80":0.0632869687,"81":0.0632869687,"82":0.06420088,"83":0.0628475882,"84":0.0630233404,"85":0.0630233404,"86":0.0499104,"87":0.0628475882,"88":0.0499104,"89":0.0499104,"90":0.0499104,"91":0.0499104,"92":0.0499104,"93":0.0499104,"94":0.0499104,"95":0.0499104,"96":0.0499104,"97":0.0499104,"98":0.0597711497,"99":0.0467088894,"100":0.0467088894,"101":0.0467088894,"102":0.0467088894,"103":0.0467088894,"104":0.0467088894,"105":0.0467088894,"106":0.0467088894,"107":0.0467088894,"108":0.0467088894,"109":0.0467088894,"110":0.0467088894,"111":0.0467088894,"112":0.0467088894,"113":0.0467088894,"114":0.0467088894,"115":0.0467088894,"116":0.0467088894,"117":0.0467088894,"118":0.0467088894,"119":0.0467088894,"120":0.0467088894,"121":0.0467088894,"122":0.0467088894,"123":0.0467088894,"124":0.0467088894,"125":0.0467088894,"126":0.0467088894,"127":0.0467088894,"128":0.0467088894,"129":0.0467088894,"130":0.0467088894,"131":0.0467088894,"132":0.0467088894,"133":0.0467088894,"134":0.0467088894,"135":0.0467088894,"136":0.0467088894,"137":0.0467088894,"138":0.0467088894,"139":0.0467088894,"140":0.0467088894,"141":0.0467088894,"142":0.0467088894,"143":0.0467088894,"144":0.0467088894,"145":0.0467088894,"146":0.0467088894,"147":0.0467088894,"148":0.0467088894,"149":0.0467088894,"150":0.0467088894,"151":0.0467088894,"152":0.0467088894,"153":0.0467088894,"154":0.0467088894,"155":0.0467088894,"156":0.0467088894,"157":0.0467088894,"158":0.0467088894,"159":0.0467088894,"160":0.0467088894,"161":0.0467088894,"162":0.0467088894,"163":0.0611978261,"164":0.0586853447,"165":0.0467088894,"166":0.0467088894,"167":0.0467088894,"168":0.0467088894,"169":0.0467088894,"170":0.0560618758,"171":0.0575985105,"172":0.0575985105,"173":0.0575985105,"174":0.0591444607,"175":0.0584130434,"176":0.0584130434,"177":0.058213566,"178":0.0588286214,"179":0.0588286214,"180":0.0588286214,"181":0.0596930236,"182":0.0584130434,"183":0.0585792746,"184":0.0585792746,"185":0.0467088894,"186":0.0584130434,"187":0.0467088894,"188":0.0467088894,"189":0.0467088894,"190":0.0467088894,"191":0.0467088894,"192":0.0467088894,"193":0.0467088894,"194":0.0467088894,"195":0.0467088894,"196":0.0467088894,"197":0.0555380694,"198":0.0499104,"199":0.0499104,"200":0.0499104,"201":0.0499104,"204":0.0499104,"205":0.0631453638,"206":0.0499104,"207":0.0499104,"208":0.0499104,"209":0.0499744318,"210":0.0597711497,"211":0.0499104,"212":0.0467088894,"213":0.0467088894,"214":0.0467088894,"215":0.0467088894,"218":0.0467088894,"219":0.058409389,"220":0.0467088894,"221":0.0467088894,"222":0.0467088894,"223":0.0467619618,"224":0.0555380694,"225":0.0467088894,"226":0.0499104,"230":0.0570396934,"231":0.0467088894,"235":0.055536463,"236":0.0565899692,"237":0.0564810617},"tax_treat":{"0":"corporate","1":"corporate","2":"corporate","3":"corporate","4":"corporate","5":"corporate","6":"corporate","7":"corporate","8":"corporate","9":"corporate","10":"corporate","11":"corporate","12":"corporate","13":"corporate","14":"corporate","15":"corporate","16":"corporate","17":"corporate","18":"corporate","19":"corporate","20":"corporate","21":"corporate","22":"corporate","23":"corporate","24":"corporate","25":"corporate","26":"corporate","27":"corporate","28":"corporate","29":"corporate","30":"corporate","31":"corporate","32":"corporate","33":"corporate","34":"corporate","35":"corporate","36":"corporate","37":"corporate","38":"corporate","39":"corporate","40":"corporate","41":"corporate","42":"corporate","43":"corporate","44":"corporate","45":"corporate","46":"corporate","47":"corporate","48":"corporate","49":"corporate","50":"corporate","51":"corporate","52":"corporate","53":"corporate","54":"corporate","55":"corporate","56":"corporate","57":"corporate","58":"corporate","59":"corporate","60":"corporate","61":"corporate","62":"corporate","63":"corporate","64":"corporate","65":"corporate","66":"corporate","67":"corporate","68":"corporate","69":"corporate","70":"corporate","71":"corporate","72":"corporate","73":"corporate","74":"corporate","75":"corporate","76":"corporate","77":"corporate","78":"corporate","79":"corporate","80":"corporate","81":"corporate","82":"corporate","83":"corporate","84":"corporate","85":"corporate","86":"corporate","87":"corporate","88":"corporate","89":"corporate","90":"corporate","91":"corporate","92":"corporate","93":"corporate","94":"corporate","95":"corporate","96":"corporate","97":"corporate","98":"corporate","99":"non-corporate","100":"non-corporate","101":"non-corporate","102":"non-corporate","103":"non-corporate","104":"non-corporate","105":"non-corporate","106":"non-corporate","107":"non-corporate","108":"non-corporate","109":"non-corporate","110":"non-corporate","111":"non-corporate","112":"non-corporate","113":"non-corporate","114":"non-corporate","115":"non-corporate","116":"non-corporate","117":"non-corporate","118":"non-corporate","119":"non-corporate","120":"non-corporate","121":"non-corporate","122":"non-corporate","123":"non-corporate","124":"non-corporate","125":"non-corporate","126":"non-corporate","127":"non-corporate","128":"non-corporate","129":"non-corporate","130":"non-corporate","131":"non-corporate","132":"non-corporate","133":"non-corporate","134":"non-corporate","135":"non-corporate","136":"non-corporate","137":"non-corporate","138":"non-corporate","139":"non-corporate","140":"non-corporate","141":"non-corporate","142":"non-corporate","143":"non-corporate","144":"non-corporate","145":"non-corporate","146":"non-corporate","147":"non-corporate","148":"non-corporate","149":"non-corporate","150":"non-corporate","151":"non-corporate","152":"non-corporate","153":"non-corporate","154":"non-corporate","155":"non-corporate","156":"non-corporate","157":"non-corporate","158":"non-corporate","159":"non-corporate","160":"non-corporate","161":"non-corporate","162":"non-corporate","163":"non-corporate","164":"non-corporate","165":"non-corporate","166":"non-corporate","167":"non-corporate","168":"non-corporate","169":"non-corporate","170":"non-corporate","171":"non-corporate","172":"non-corporate","173":"non-corporate","174":"non-corporate","175":"non-corporate","176":"non-corporate","177":"non-corporate","178":"non-corporate","179":"non-corporate","180":"non-corporate","181":"non-corporate","182":"non-corporate","183":"non-corporate","184":"non-corporate","185":"non-corporate","186":"non-corporate","187":"non-corporate","188":"non-corporate","189":"non-corporate","190":"non-corporate","191":"non-corporate","192":"non-corporate","193":"non-corporate","194":"non-corporate","195":"non-corporate","196":"non-corporate","197":"non-corporate","198":"corporate","199":"corporate","200":"corporate","201":"corporate","204":"corporate","205":"corporate","206":"corporate","207":"corporate","208":"corporate","209":"corporate","210":"corporate","211":"corporate","212":"non-corporate","213":"non-corporate","214":"non-corporate","215":"non-corporate","218":"non-corporate","219":"non-corporate","220":"non-corporate","221":"non-corporate","222":"non-corporate","223":"non-corporate","224":"non-corporate","225":"non-corporate","226":"corporate","230":"corporate","231":"non-corporate","235":"non-corporate","236":"corporate","237":"non-corporate"},"tax_wedge_d":{"0":-0.0019478823,"1":-0.0019478823,"2":-0.0019478823,"3":-0.0019478823,"4":-0.0019478823,"5":-0.0019478823,"6":-0.0019478823,"7":-0.0019478823,"8":-0.0019478823,"9":-0.0019478823,"10":-0.0019478823,"11":-0.0019478823,"12":-0.0019478823,"13":-0.0019478823,"14":-0.0019478823,"15":-0.0019478823,"16":-0.0019478823,"17":-0.0019478823,"18":-0.0019478823,"19":-0.0019478823,"20":-0.0019478823,"21":-0.0019478823,"22":-0.0019478823,"23":-0.0019478823,"24":-0.0019478823,"25":-0.0019478823,"26":-0.0019478823,"27":-0.0019478823,"28":-0.0019478823,"29":-0.0019478823,"30":-0.0019478823,"31":-0.0019478823,"32":-0.0019478823,"33":-0.0019478823,"34":-0.0019478823,"35":-0.0019478823,"36":-0.0019478823,"37":-0.0019478823,"38":-0.0019478823,"39":-0.0019478823,"40":-0.0019478823,"41":-0.0019478823,"42":-0.0019478823,"43":-0.0019478823,"44":-0.0019478823,"45":-0.0019478823,"46":-0.0019478823,"47":-0.0019478823,"48":-0.0019478823,"49":-0.0019478823,"50":-0.0019478823,"51":-0.0019478823,"52":-0.0019478823,"53":-0.0019478823,"54":-0.0019478823,"55":-0.0019478823,"56":-0.0019478823,"57":-0.0019478823,"58":-0.0019478823,"59":-0.0019478823,"60":-0.0019478823,"61":-0.0019478823,"62":-0.0019478823,"63":-0.0019478823,"64":0.009430949,"65":0.0067498392,"66":-0.0019478823,"67":-0.0019478823,"68":-0.0019478823,"69":-0.0019478823,"70":-0.0019478823,"71":0.0048265592,"72":0.0060148991,"73":0.0060148991,"74":0.0060148991,"75":0.0074522801,"76":0.0067722289,"77":0.0067722289,"78":0.0065867604,"79":0.0071586216,"80":0.0071586216,"81":0.0071586216,"82":0.0079623185,"83":0.0067722289,"84":0.006926786,"85":0.006926786,"86":-0.0019478823,"87":0.0067722289,"88":-0.0019478823,"89":-0.0019478823,"90":-0.0019478823,"91":-0.0019478823,"92":-0.0019478823,"93":-0.0019478823,"94":-0.0019478823,"95":-0.0019478823,"96":-0.0019478823,"97":-0.0019478823,"98":0.0042772478,"99":0.0031857295,"100":0.0031857295,"101":0.0031857295,"102":0.0031857295,"103":0.0031857295,"104":0.0031857295,"105":0.0031857295,"106":0.0031857295,"107":0.0031857295,"108":0.0031857295,"109":0.0031857295,"110":0.0031857295,"111":0.0031857295,"112":0.0031857295,"113":0.0031857295,"114":0.0031857295,"115":0.0031857295,"116":0.0031857295,"117":0.0031857295,"118":0.0031857295,"119":0.0031857295,"120":0.0031857295,"121":0.0031857295,"122":0.0031857295,"123":0.0031857295,"124":0.0031857295,"125":0.0031857295,"126":0.0031857295,"127":0.0031857295,"128":0.0031857295,"129":0.0031857295,"130":0.0031857295,"131":0.0031857295,"132":0.0031857295,"133":0.0031857295,"134":0.0031857295,"135":0.0031857295,"136":0.0031857295,"137":0.0031857295,"138":0.0031857295,"139":0.0031857295,"140":0.0031857295,"141":0.0031857295,"142":0.0031857295,"143":0.0031857295,"144":0.0031857295,"145":0.0031857295,"146":0.0031857295,"147":0.0031857295,"148":0.0031857295,"149":0.0031857295,"150":0.0031857295,"151":0.0031857295,"152":0.0031857295,"153":0.0031857295,"154":0.0031857295,"155":0.0031857295,"156":0.0031857295,"157":0.0031857295,"158":0.0031857295,"159":0.0031857295,"160":0.0031857295,"161":0.0031857295,"162":0.0031857295,"163":0.0142636368,"164":0.0116785787,"165":0.0031857295,"166":0.0031857295,"167":0.0031857295,"168":0.0031857295,"169":0.0031857295,"170":0.0097981089,"171":0.010955824,"172":0.010955824,"173":0.010955824,"174":0.0123475466,"175":0.0116890972,"176":0.0116890972,"177":0.0115095201,"178":0.0120632162,"179":0.0120632162,"180":0.0120632162,"181":0.0128413836,"182":0.0116890972,"183":0.0118387448,"184":0.0118387448,"185":0.0031857295,"186":0.0116890972,"187":0.0031857295,"188":0.0031857295,"189":0.0031857295,"190":0.0031857295,"191":0.0031857295,"192":0.0031857295,"193":0.0031857295,"194":0.0031857295,"195":0.0031857295,"196":0.0031857295,"197":0.0092675018,"198":-0.0019478823,"199":-0.0019478823,"200":-0.0019478823,"201":-0.0019478823,"204":-0.0019478823,"205":0.0070405296,"206":-0.0019478823,"207":-0.0019478823,"208":-0.0019478823,"209":-0.0019047226,"210":0.0042772478,"211":-0.0019478823,"212":0.0031857295,"213":0.0031857295,"214":0.0031857295,"215":0.0031857295,"218":0.0031857295,"219":0.0117014187,"220":0.0031857295,"221":0.0031857295,"222":0.0031857295,"223":0.003224288,"224":0.0092675018,"225":0.0031857295,"226":-0.0019478823,"230":0.002876211,"231":0.0031857295,"235":0.0095252113,"236":0.0025721036,"237":0.0101816466},"tax_wedge_e":{"0":0.0057417884,"1":0.0057417884,"2":0.0057417884,"3":0.0057417884,"4":0.0057417884,"5":0.0057417884,"6":0.0057417884,"7":0.0057417884,"8":0.0057417884,"9":0.0057417884,"10":0.0057417884,"11":0.0057417884,"12":0.0057417884,"13":0.0057417884,"14":0.0057417884,"15":0.0057417884,"16":0.0057417884,"17":0.0057417884,"18":0.0057417884,"19":0.0057417884,"20":0.0057417884,"21":0.0057417884,"22":0.0057417884,"23":0.0057417884,"24":0.0057417884,"25":0.0057417884,"26":0.0057417884,"27":0.0057417884,"28":0.0057417884,"29":0.0057417884,"30":0.0057417884,"31":0.0057417884,"32":0.0057417884,"33":0.0057417884,"34":0.0057417884,"35":0.0057417884,"36":0.0057417884,"37":0.0057417884,"38":0.0057417884,"39":0.0057417884,"40":0.0057417884,"41":0.0057417884,"42":0.0057417884,"43":0.0057417884,"44":0.0057417884,"45":0.0057417884,"46":0.0057417884,"47":0.0057417884,"48":0.0057417884,"49":0.0057417884,"50":0.0057417884,"51":0.0057417884,"52":0.0057417884,"53":0.0057417884,"54":0.0057417884,"55":0.0057417884,"56":0.0057417884,"57":0.0057417884,"58":0.0057417884,"59":0.0057417884,"60":0.0057417884,"61":0.0057417884,"62":0.0057417884,"63":0.0057417884,"64":0.0236845925,"65":0.0211595099,"66":0.0057417884,"67":0.0057417884,"68":0.0057417884,"69":0.0057417884,"70":0.0057417884,"71":0.0179337283,"72":0.0198350501,"73":0.0198350501,"74":0.0198350501,"75":0.021541656,"76":0.0207342295,"77":0.0207342295,"78":0.0205140223,"79":0.0211929946,"80":0.0211929946,"81":0.0211929946,"82":0.0221472258,"83":0.0207342295,"84":0.0209177355,"85":0.0209177355,"86":0.0057417884,"87":0.0207342295,"88":0.0057417884,"89":0.0057417884,"90":0.0057417884,"91":0.0057417884,"92":0.0057417884,"93":0.0057417884,"94":0.0057417884,"95":0.0057417884,"96":0.0057417884,"97":0.0057417884,"98":0.0174388065,"99":4.163336342e-17,"100":-3.469446952e-17,"101":-2.081668171e-17,"102":-1.387778781e-17,"103":-2.081668171e-17,"104":-2.081668171e-17,"105":-2.081668171e-17,"106":-2.081668171e-17,"107":-2.081668171e-17,"108":-2.775557562e-17,"109":1.387778781e-17,"110":-6.938893904e-18,"111":-2.081668171e-17,"112":-2.775557562e-17,"113":-3.469446952e-17,"114":-6.938893904e-18,"115":-2.775557562e-17,"116":-2.081668171e-17,"117":-1.387778781e-17,"118":-2.775557562e-17,"119":1.387778781e-17,"120":-2.775557562e-17,"121":-5.551115123e-17,"122":1.387778781e-17,"123":-2.081668171e-17,"124":-2.775557562e-17,"125":-1.387778781e-17,"126":0.0,"127":-1.387778781e-17,"128":-5.551115123e-17,"129":-2.081668171e-17,"130":3.469446952e-17,"131":-2.775557562e-17,"132":-2.081668171e-17,"133":-1.387778781e-17,"134":-2.081668171e-17,"135":-2.081668171e-17,"136":-3.469446952e-17,"137":-6.938893904e-18,"138":-6.938893904e-18,"139":-1.387778781e-17,"140":2.081668171e-17,"141":0.0,"142":-6.938893904e-18,"143":-1.387778781e-17,"144":-6.938893904e-18,"145":-2.775557562e-17,"146":6.938893904e-18,"147":6.938893904e-18,"148":-1.387778781e-17,"149":-2.081668171e-17,"150":-2.775557562e-17,"151":-2.081668171e-17,"152":-2.081668171e-17,"153":-2.775557562e-17,"154":6.938893904e-18,"155":1.387778781e-17,"156":2.081668171e-17,"157":-2.775557562e-17,"158":0.0,"159":0.0,"160":1.387778781e-17,"161":1.387778781e-17,"162":2.081668171e-17,"163":0.015876627,"164":0.0133993367,"165":-2.081668171e-17,"166":6.938893904e-18,"167":0.0,"168":-6.938893904e-18,"169":-6.938893904e-18,"170":0.0105238671,"171":0.0122089714,"172":0.0122089714,"173":0.0122089714,"174":0.0138068646,"175":0.0130508722,"176":0.0130508722,"177":0.0128446924,"178":0.0134804133,"179":0.0134804133,"180":0.0134804133,"181":0.014373859,"182":0.0130508722,"183":0.0132226886,"184":0.0132226886,"185":0.0,"186":0.0130508722,"187":-6.938893904e-18,"188":-1.387778781e-17,"189":1.387778781e-17,"190":1.387778781e-17,"191":2.081668171e-17,"192":1.387778781e-17,"193":0.0,"194":-1.387778781e-17,"195":-6.938893904e-18,"196":1.387778781e-17,"197":0.010018867,"198":0.0057417884,"199":0.0057417884,"200":0.0057417884,"201":0.0057417884,"204":0.0057417884,"205":0.0210419446,"206":0.0057417884,"207":0.0057417884,"208":0.0057417884,"209":0.0058159926,"210":0.0174388065,"211":0.0057417884,"212":-6.938893904e-18,"213":0.0,"214":-2.081668171e-17,"215":-1.387778781e-17,"218":-6.938893904e-18,"219":0.0130403944,"220":-2.775557562e-17,"221":-1.387778781e-17,"222":6.938893904e-18,"223":0.0000591791,"224":0.010018867,"225":0.0,"226":0.0057417884,"230":0.0139947057,"231":0.0,"235":0.0098827267,"236":0.0134538542,"237":0.0109173698},"tax_wedge_mix":{"0":0.0032810938,"1":0.0032810938,"2":0.0032810938,"3":0.0032810938,"4":0.0032810938,"5":0.0032810938,"6":0.0032810938,"7":0.0032810938,"8":0.0032810938,"9":0.0032810938,"10":0.0032810938,"11":0.0032810938,"12":0.0032810938,"13":0.0032810938,"14":0.0032810938,"15":0.0032810938,"16":0.0032810938,"17":0.0032810938,"18":0.0032810938,"19":0.0032810938,"20":0.0032810938,"21":0.0032810938,"22":0.0032810938,"23":0.0032810938,"24":0.0032810938,"25":0.0032810938,"26":0.0032810938,"27":0.0032810938,"28":0.0032810938,"29":0.0032810938,"30":0.0032810938,"31":0.0032810938,"32":0.0032810938,"33":0.0032810938,"34":0.0032810938,"35":0.0032810938,"36":0.0032810938,"37":0.0032810938,"38":0.0032810938,"39":0.0032810938,"40":0.0032810938,"41":0.0032810938,"42":0.0032810938,"43":0.0032810938,"44":0.0032810938,"45":0.0032810938,"46":0.0032810938,"47":0.0032810938,"48":0.0032810938,"49":0.0032810938,"50":0.0032810938,"51":0.0032810938,"52":0.0032810938,"53":0.0032810938,"54":0.0032810938,"55":0.0032810938,"56":0.0032810938,"57":0.0032810938,"58":0.0032810938,"59":0.0032810938,"60":0.0032810938,"61":0.0032810938,"62":0.0032810938,"63":0.0032810938,"64":0.0191310006,"65":0.0165484153,"66":0.0032810938,"67":0.0032810938,"68":0.0032810938,"69":0.0032810938,"70":0.0032810938,"71":0.0136746827,"72":0.0153570963,"73":0.0153570963,"74":0.0153570963,"75":0.0169915916,"76":0.016218282,"77":0.016218282,"78":0.0160073794,"79":0.0166576624,"80":0.0166576624,"81":0.0166576624,"82":0.0175715738,"83":0.016218282,"84":0.0163940342,"85":0.0163940342,"86":0.0032810938,"87":0.016218282,"88":0.0032810938,"89":0.0032810938,"90":0.0032810938,"91":0.0032810938,"92":0.0032810938,"93":0.0032810938,"94":0.0032810938,"95":0.0032810938,"96":0.0032810938,"97":0.0032810938,"98":0.0131418435,"99":0.0009238616,"100":0.0009238616,"101":0.0009238616,"102":0.0009238616,"103":0.0009238616,"104":0.0009238616,"105":0.0009238616,"106":0.0009238616,"107":0.0009238616,"108":0.0009238616,"109":0.0009238616,"110":0.0009238616,"111":0.0009238616,"112":0.0009238616,"113":0.0009238616,"114":0.0009238616,"115":0.0009238616,"116":0.0009238616,"117":0.0009238616,"118":0.0009238616,"119":0.0009238616,"120":0.0009238616,"121":0.0009238616,"122":0.0009238616,"123":0.0009238616,"124":0.0009238616,"125":0.0009238616,"126":0.0009238616,"127":0.0009238616,"128":0.0009238616,"129":0.0009238616,"130":0.0009238616,"131":0.0009238616,"132":0.0009238616,"133":0.0009238616,"134":0.0009238616,"135":0.0009238616,"136":0.0009238616,"137":0.0009238616,"138":0.0009238616,"139":0.0009238616,"140":0.0009238616,"141":0.0009238616,"142":0.0009238616,"143":0.0009238616,"144":0.0009238616,"145":0.0009238616,"146":0.0009238616,"147":0.0009238616,"148":0.0009238616,"149":0.0009238616,"150":0.0009238616,"151":0.0009238616,"152":0.0009238616,"153":0.0009238616,"154":0.0009238616,"155":0.0009238616,"156":0.0009238616,"157":0.0009238616,"158":0.0009238616,"159":0.0009238616,"160":0.0009238616,"161":0.0009238616,"162":0.0009238616,"163":0.0154127982,"164":0.0129003168,"165":0.0009238616,"166":0.0009238616,"167":0.0009238616,"168":0.0009238616,"169":0.0009238616,"170":0.010276848,"171":0.0118134827,"172":0.0118134827,"173":0.0118134827,"174":0.0133594328,"175":0.0126280156,"176":0.0126280156,"177":0.0124285381,"178":0.0130435936,"179":0.0130435936,"180":0.0130435936,"181":0.0139079958,"182":0.0126280156,"183":0.0127942468,"184":0.0127942468,"185":0.0009238616,"186":0.0126280156,"187":0.0009238616,"188":0.0009238616,"189":0.0009238616,"190":0.0009238616,"191":0.0009238616,"192":0.0009238616,"193":0.0009238616,"194":0.0009238616,"195":0.0009238616,"196":0.0009238616,"197":0.0097530415,"198":0.0032810938,"199":0.0032810938,"200":0.0032810938,"201":0.0032810938,"204":0.0032810938,"205":0.0165160576,"206":0.0032810938,"207":0.0032810938,"208":0.0032810938,"209":0.0033451256,"210":0.0131418435,"211":0.0032810938,"212":0.0009238616,"213":0.0009238616,"214":0.0009238616,"215":0.0009238616,"218":0.0009238616,"219":0.0126243612,"220":0.0009238616,"221":0.0009238616,"222":0.0009238616,"223":0.0009769339,"224":0.0097530415,"225":0.0009238616,"226":0.0032810938,"230":0.0104103872,"231":0.0009238616,"235":0.0097514351,"236":0.009960663,"237":0.0106960338},"ucc_d":{"0":0.58272,"1":0.36272,"2":0.49602,"3":0.49602,"4":0.49602,"5":0.49602,"6":0.49602,"7":0.49602,"8":0.49602,"9":0.49602,"10":0.13582,"11":0.13992,"12":0.34462,"13":0.14562,"14":0.21272,"15":0.16772,"16":0.16772,"17":0.16772,"18":0.17022,"19":0.15062,"20":0.19772,"21":0.18552,"22":0.21612,"23":0.18002,"24":0.28272,"25":0.12442,"26":0.15522,"27":0.08272,"28":0.17792,"29":0.19602,"30":0.15062,"31":0.18772,"32":0.18272,"33":0.08432,"34":0.23902,"35":0.20522,"36":0.20522,"37":0.36602,"38":0.11862,"39":0.09382,"40":0.09162,"41":0.12572,"42":0.20072,"43":0.15372,"44":0.29972,"45":0.14172,"46":0.36272,"47":0.13272,"48":0.19272,"49":0.43272,"50":0.30272,"51":0.28272,"52":0.32272,"53":0.43272,"54":0.34272,"55":0.25272,"56":0.25272,"57":0.19272,"58":0.39272,"59":0.19272,"60":0.19272,"61":0.19272,"62":0.19272,"63":0.19272,"64":0.0440988313,"65":0.0414177215,"66":0.10782,"67":0.07772,"68":0.05642,"69":0.10782,"70":0.05642,"71":0.0582944415,"72":0.0594827814,"73":0.0594827814,"74":0.0594827814,"75":0.0702201624,"76":0.0651401111,"77":0.0651401111,"78":0.0637546426,"79":0.0680265039,"80":0.0680265039,"81":0.0680265039,"82":0.0740302008,"83":0.0651401111,"84":0.0662946682,"85":0.0662946682,"86":0.06272,"87":0.0651401111,"88":0.05642,"89":0.05662,"90":0.05522,"91":0.05522,"92":0.05522,"93":0.08832,"94":0.05032,"95":0.05762,"96":0.05382,"97":0.06302,"98":0.0552588901,"99":0.5831226178,"100":0.3631226178,"101":0.4964226178,"102":0.4964226178,"103":0.4964226178,"104":0.4964226178,"105":0.4964226178,"106":0.4964226178,"107":0.4964226178,"108":0.4964226178,"109":0.1362226178,"110":0.1403226178,"111":0.3450226178,"112":0.1460226178,"113":0.2131226178,"114":0.1681226178,"115":0.1681226178,"116":0.1681226178,"117":0.1706226178,"118":0.1510226178,"119":0.1981226178,"120":0.1859226178,"121":0.2165226178,"122":0.1804226178,"123":0.2831226178,"124":0.1248226178,"125":0.1556226178,"126":0.0831226178,"127":0.1783226178,"128":0.1964226178,"129":0.1510226178,"130":0.1881226178,"131":0.1831226178,"132":0.0847226178,"133":0.2394226178,"134":0.2056226178,"135":0.2056226178,"136":0.3664226178,"137":0.1190226178,"138":0.0942226178,"139":0.0920226178,"140":0.1261226178,"141":0.2011226178,"142":0.1541226178,"143":0.3001226178,"144":0.1421226178,"145":0.3631226178,"146":0.1331226178,"147":0.1931226178,"148":0.4331226178,"149":0.3031226178,"150":0.2831226178,"151":0.3231226178,"152":0.4331226178,"153":0.3431226178,"154":0.2531226178,"155":0.2531226178,"156":0.1931226178,"157":0.3931226178,"158":0.1931226178,"159":0.1931226178,"160":0.1931226178,"161":0.1931226178,"162":0.1931226178,"163":0.0442005251,"164":0.0416154669,"165":0.1082226178,"166":0.0781226178,"167":0.0568226178,"168":0.1082226178,"169":0.0568226178,"170":0.0585349972,"171":0.0596927123,"172":0.0596927123,"173":0.0596927123,"174":0.0703844349,"175":0.0653259855,"176":0.0653259855,"177":0.0639464084,"178":0.0682001044,"179":0.0682001044,"180":0.0682001044,"181":0.0741782719,"182":0.0653259855,"183":0.0664756331,"184":0.0664756331,"185":0.0631226178,"186":0.0653259855,"187":0.0568226178,"188":0.0570226178,"189":0.0556226178,"190":0.0556226178,"191":0.0556226178,"192":0.0887226178,"193":0.0507226178,"194":0.0580226178,"195":0.0542226178,"196":0.0634226178,"197":0.05551815,"198":0.4457579075,"199":0.1384102731,"200":0.1575679886,"201":0.2091614085,"204":0.090316421,"205":0.0673142823,"206":0.1520474586,"207":0.1834640896,"208":0.1302185367,"209":0.0556609889,"210":0.0552588901,"211":0.1729214543,"212":0.4501975584,"213":0.1389767655,"214":0.1642583232,"215":0.218728681,"218":0.0951575341,"219":0.0659559364,"220":0.1535259822,"221":0.1832175668,"222":0.1559452868,"223":0.0583436538,"224":0.05551815,"225":0.1873459822,"226":0.1781022047,"230":0.070021736,"231":0.1894535026,"235":0.064417316,"236":0.0988567214,"237":0.0665088672},"ucc_e":{"0":0.608,"1":0.388,"2":0.5213,"3":0.5213,"4":0.5213,"5":0.5213,"6":0.5213,"7":0.5213,"8":0.5213,"9":0.5213,"10":0.1611,"11":0.1652,"12":0.3699,"13":0.1709,"14":0.238,"15":0.193,"16":0.193,"17":0.193,"18":0.1955,"19":0.1759,"20":0.223,"21":0.2108,"22":0.2414,"23":0.2053,"24":0.308,"25":0.1497,"26":0.1805,"27":0.108,"28":0.2032,"29":0.2213,"30":0.1759,"31":0.213,"32":0.208,"33":0.1096,"34":0.2643,"35":0.2305,"36":0.2305,"37":0.3913,"38":0.1439,"39":0.1191,"40":0.1169,"41":0.151,"42":0.226,"43":0.179,"44":0.325,"45":0.167,"46":0.388,"47":0.158,"48":0.218,"49":0.458,"50":0.328,"51":0.308,"52":0.348,"53":0.458,"54":0.368,"55":0.278,"56":0.278,"57":0.218,"58":0.418,"59":0.218,"60":0.218,"61":0.218,"62":0.218,"63":0.218,"64":0.0759428042,"65":0.0734177215,"66":0.1331,"67":0.103,"68":0.0817,"69":0.1331,"70":0.0817,"71":0.0889919399,"72":0.0908932617,"73":0.0908932617,"74":0.0908932617,"75":0.1018998676,"76":0.0966924412,"77":0.0966924412,"78":0.0952722339,"79":0.0996512062,"80":0.0996512062,"81":0.0996512062,"82":0.1058054374,"83":0.0966924412,"84":0.0978759472,"85":0.0978759472,"86":0.088,"87":0.0966924412,"88":0.0817,"89":0.0819,"90":0.0805,"91":0.0805,"92":0.0805,"93":0.1136,"94":0.0756,"95":0.0829,"96":0.0791,"97":0.0883,"98":0.0860107781,"99":0.6022582116,"100":0.3822582116,"101":0.5155582116,"102":0.5155582116,"103":0.5155582116,"104":0.5155582116,"105":0.5155582116,"106":0.5155582116,"107":0.5155582116,"108":0.5155582116,"109":0.1553582116,"110":0.1594582116,"111":0.3641582116,"112":0.1651582116,"113":0.2322582116,"114":0.1872582116,"115":0.1872582116,"116":0.1872582116,"117":0.1897582116,"118":0.1701582116,"119":0.2172582116,"120":0.2050582116,"121":0.2356582116,"122":0.1995582116,"123":0.3022582116,"124":0.1439582116,"125":0.1747582116,"126":0.1022582116,"127":0.1974582116,"128":0.2155582116,"129":0.1701582116,"130":0.2072582116,"131":0.2022582116,"132":0.1038582116,"133":0.2585582116,"134":0.2247582116,"135":0.2247582116,"136":0.3855582116,"137":0.1381582116,"138":0.1133582116,"139":0.1111582116,"140":0.1452582116,"141":0.2202582116,"142":0.1732582116,"143":0.3192582116,"144":0.1612582116,"145":0.3822582116,"146":0.1522582116,"147":0.2122582116,"148":0.4522582116,"149":0.3222582116,"150":0.3022582116,"151":0.3422582116,"152":0.4522582116,"153":0.3622582116,"154":0.2722582116,"155":0.2722582116,"156":0.2122582116,"157":0.4122582116,"158":0.2122582116,"159":0.2122582116,"160":0.2122582116,"161":0.2122582116,"162":0.2122582116,"163":0.0681348386,"164":0.0656575483,"165":0.1273582116,"166":0.0972582116,"167":0.0759582116,"168":0.1273582116,"169":0.0759582116,"170":0.0815820787,"171":0.083267183,"172":0.083267183,"173":0.083267183,"174":0.0941650763,"175":0.0890090838,"176":0.0890090838,"177":0.087602904,"178":0.091938625,"179":0.091938625,"180":0.091938625,"181":0.0980320706,"182":0.0890090838,"183":0.0901809002,"184":0.0901809002,"185":0.0822582116,"186":0.0890090838,"187":0.0759582116,"188":0.0761582116,"189":0.0747582116,"190":0.0747582116,"191":0.0747582116,"192":0.1078582116,"193":0.0698582116,"194":0.0771582116,"195":0.0733582116,"196":0.0825582116,"197":0.0785908386,"198":0.4710379075,"199":0.1636902731,"200":0.1828479886,"201":0.2344414085,"204":0.115596421,"205":0.0989060267,"206":0.1773274586,"207":0.2087440896,"208":0.1554985367,"209":0.0809720334,"210":0.0860107781,"211":0.1982014543,"212":0.4693331522,"213":0.1581123593,"214":0.183393917,"215":0.2378642748,"218":0.114293128,"219":0.0896162355,"220":0.1726615761,"221":0.2023531606,"222":0.1750808806,"223":0.0774998682,"224":0.0785908386,"225":0.206481576,"226":0.2033822047,"230":0.09873056,"231":0.2085890965,"235":0.0870961547,"236":0.1273288013,"237":0.0895659137},"ucc_mix":{"0":0.5999104,"1":0.3799104,"2":0.5132104,"3":0.5132104,"4":0.5132104,"5":0.5132104,"6":0.5132104,"7":0.5132104,"8":0.5132104,"9":0.5132104,"10":0.1530104,"11":0.1571104,"12":0.3618104,"13":0.1628104,"14":0.2299104,"15":0.1849104,"16":0.1849104,"17":0.1849104,"18":0.1874104,"19":0.1678104,"20":0.2149104,"21":0.2027104,"22":0.2333104,"23":0.1972104,"24":0.2999104,"25":0.1416104,"26":0.1724104,"27":0.0999104,"28":0.1951104,"29":0.2132104,"30":0.1678104,"31":0.2049104,"32":0.1999104,"33":0.1015104,"34":0.2562104,"35":0.2224104,"36":0.2224104,"37":0.3832104,"38":0.1358104,"39":0.1110104,"40":0.1088104,"41":0.1429104,"42":0.2179104,"43":0.1709104,"44":0.3169104,"45":0.1589104,"46":0.3799104,"47":0.1499104,"48":0.2099104,"49":0.4499104,"50":0.3199104,"51":0.2999104,"52":0.3399104,"53":0.4499104,"54":0.3599104,"55":0.2699104,"56":0.2699104,"57":0.2099104,"58":0.4099104,"59":0.2099104,"60":0.2099104,"61":0.2099104,"62":0.2099104,"63":0.2099104,"64":0.0657603068,"65":0.0631777215,"66":0.1250104,"67":0.0949104,"68":0.0736104,"69":0.1250104,"70":0.0736104,"71":0.0791039889,"72":0.0807864025,"73":0.0807864025,"74":0.0807864025,"75":0.0917208978,"76":0.0865475882,"77":0.0865475882,"78":0.0851366856,"79":0.0894869687,"80":0.0894869687,"81":0.0894869687,"82":0.09560088,"83":0.0865475882,"84":0.0877233404,"85":0.0877233404,"86":0.0799104,"87":0.0865475882,"88":0.0736104,"89":0.0738104,"90":0.0724104,"91":0.0724104,"92":0.0724104,"93":0.1055104,"94":0.0675104,"95":0.0748104,"96":0.0710104,"97":0.0802104,"98":0.0760849097,"99":0.5967088894,"100":0.3767088894,"101":0.5100088894,"102":0.5100088894,"103":0.5100088894,"104":0.5100088894,"105":0.5100088894,"106":0.5100088894,"107":0.5100088894,"108":0.5100088894,"109":0.1498088894,"110":0.1539088894,"111":0.3586088894,"112":0.1596088894,"113":0.2267088894,"114":0.1817088894,"115":0.1817088894,"116":0.1817088894,"117":0.1842088894,"118":0.1646088894,"119":0.2117088894,"120":0.1995088894,"121":0.2301088894,"122":0.1940088894,"123":0.2967088894,"124":0.1384088894,"125":0.1692088894,"126":0.0967088894,"127":0.1919088894,"128":0.2100088894,"129":0.1646088894,"130":0.2017088894,"131":0.1967088894,"132":0.0983088894,"133":0.2530088894,"134":0.2192088894,"135":0.2192088894,"136":0.3800088894,"137":0.1326088894,"138":0.1078088894,"139":0.1056088894,"140":0.1397088894,"141":0.2147088894,"142":0.1677088894,"143":0.3137088894,"144":0.1557088894,"145":0.3767088894,"146":0.1467088894,"147":0.2067088894,"148":0.4467088894,"149":0.3167088894,"150":0.2967088894,"151":0.3367088894,"152":0.4467088894,"153":0.3567088894,"154":0.2667088894,"155":0.2667088894,"156":0.2067088894,"157":0.4067088894,"158":0.2067088894,"159":0.2067088894,"160":0.2067088894,"161":0.2067088894,"162":0.2067088894,"163":0.0611978261,"164":0.0586853447,"165":0.1218088894,"166":0.0917088894,"167":0.0704088894,"168":0.1218088894,"169":0.0704088894,"170":0.0748618758,"171":0.0763985105,"172":0.0763985105,"173":0.0763985105,"174":0.0872444607,"175":0.0821130434,"176":0.0821130434,"177":0.080713566,"178":0.0850286214,"179":0.0850286214,"180":0.0850286214,"181":0.0910930236,"182":0.0821130434,"183":0.0832792746,"184":0.0832792746,"185":0.0767088894,"186":0.0821130434,"187":0.0704088894,"188":0.0706088894,"189":0.0692088894,"190":0.0692088894,"191":0.0692088894,"192":0.1023088894,"193":0.0643088894,"194":0.0716088894,"195":0.0678088894,"196":0.0770088894,"197":0.0718518294,"198":0.4629483075,"199":0.1556006731,"200":0.1747583886,"201":0.2263518085,"204":0.107506821,"205":0.0887512343,"206":0.1692378586,"207":0.2006544896,"208":0.1474089367,"209":0.072872261,"210":0.0760849097,"211":0.1901118543,"212":0.46378383,"213":0.1525630371,"214":0.1778445948,"215":0.2323149526,"218":0.1087438057,"219":0.0827270185,"220":0.1671122539,"221":0.1968038384,"222":0.1695315584,"223":0.0719444394,"224":0.0718518294,"225":0.2009322538,"226":0.1952926047,"230":0.0895173361,"231":0.2030397743,"235":0.0804916794,"236":0.1182067047,"237":0.082871394},"z_d":{"0":1.0,"1":1.0,"2":1.0,"3":1.0,"4":1.0,"5":1.0,"6":1.0,"7":1.0,"8":1.0,"9":1.0,"10":1.0,"11":1.0,"12":1.0,"13":1.0,"14":1.0,"15":1.0,"16":1.0,"17":1.0,"18":1.0,"19":1.0,"20":1.0,"21":1.0,"22":1.0,"23":1.0,"24":1.0,"25":1.0,"26":1.0,"27":1.0,"28":1.0,"29":1.0,"30":1.0,"31":1.0,"32":1.0,"33":1.0,"34":1.0,"35":1.0,"36":1.0,"37":1.0,"38":1.0,"39":1.0,"40":1.0,"41":1.0,"42":1.0,"43":1.0,"44":1.0,"45":1.0,"46":1.0,"47":1.0,"48":1.0,"49":1.0,"50":1.0,"51":1.0,"52":1.0,"53":1.0,"54":1.0,"55":1.0,"56":1.0,"57":1.0,"58":1.0,"59":1.0,"60":1.0,"61":1.0,"62":1.0,"63":1.0,"64":0.0,"65":0.0,"66":1.0,"67":1.0,"68":1.0,"69":1.0,"70":1.0,"71":0.5053415446,"72":0.4185709384,"73":0.4185709384,"74":0.4185709384,"75":0.4185709384,"76":0.4185709384,"77":0.4185709384,"78":0.4185709384,"79":0.4185709384,"80":0.4185709384,"81":0.4185709384,"82":0.4185709384,"83":0.4185709384,"84":0.4185709384,"85":0.4185709384,"86":1.0,"87":0.4185709384,"88":1.0,"89":1.0,"90":1.0,"91":1.0,"92":1.0,"93":1.0,"94":1.0,"95":1.0,"96":1.0,"97":1.0,"98":0.5224036143,"99":1.0,"100":1.0,"101":1.0,"102":1.0,"103":1.0,"104":1.0,"105":1.0,"106":1.0,"107":1.0,"108":1.0,"109":1.0,"110":1.0,"111":1.0,"112":1.0,"113":1.0,"114":1.0,"115":1.0,"116":1.0,"117":1.0,"118":1.0,"119":1.0,"120":1.0,"121":1.0,"122":1.0,"123":1.0,"124":1.0,"125":1.0,"126":1.0,"127":1.0,"128":1.0,"129":1.0,"130":1.0,"131":1.0,"132":1.0,"133":1.0,"134":1.0,"135":1.0,"136":1.0,"137":1.0,"138":1.0,"139":1.0,"140":1.0,"141":1.0,"142":1.0,"143":1.0,"144":1.0,"145":1.0,"146":1.0,"147":1.0,"148":1.0,"149":1.0,"150":1.0,"151":1.0,"152":1.0,"153":1.0,"154":1.0,"155":1.0,"156":1.0,"157":1.0,"158":1.0,"159":1.0,"160":1.0,"161":1.0,"162":1.0,"163":0.0,"164":0.0,"165":1.0,"166":1.0,"167":1.0,"168":1.0,"169":1.0,"170":0.5033248545,"171":0.4163654877,"172":0.4163654877,"173":0.4163654877,"174":0.4163654877,"175":0.4163654877,"176":0.4163654877,"177":0.4163654877,"178":0.4163654877,"179":0.4163654877,"180":0.4163654877,"181":0.4163654877,"182":0.4163654877,"183":0.4163654877,"184":0.4163654877,"185":1.0,"186":0.4163654877,"187":1.0,"188":1.0,"189":1.0,"190":1.0,"191":1.0,"192":1.0,"193":1.0,"194":1.0,"195":1.0,"196":1.0,"197":0.5202060655,"198":1.0,"199":1.0,"200":1.0,"201":1.0,"204":1.0,"205":0.4204887714,"206":1.0,"207":1.0,"208":1.0,"209":0.9971222524,"210":0.5224036143,"211":1.0,"212":1.0,"213":1.0,"214":1.0,"215":1.0,"218":1.0,"219":0.4223824282,"220":1.0,"221":1.0,"222":1.0,"223":0.9973535146,"224":0.5202060655,"225":1.0,"226":1.0,"230":0.6861050074,"231":1.0,"235":0.5533240499,"236":0.6095413425,"237":0.281257366},"z_e":{"0":1.0,"1":1.0,"2":1.0,"3":1.0,"4":1.0,"5":1.0,"6":1.0,"7":1.0,"8":1.0,"9":1.0,"10":1.0,"11":1.0,"12":1.0,"13":1.0,"14":1.0,"15":1.0,"16":1.0,"17":1.0,"18":1.0,"19":1.0,"20":1.0,"21":1.0,"22":1.0,"23":1.0,"24":1.0,"25":1.0,"26":1.0,"27":1.0,"28":1.0,"29":1.0,"30":1.0,"31":1.0,"32":1.0,"33":1.0,"34":1.0,"35":1.0,"36":1.0,"37":1.0,"38":1.0,"39":1.0,"40":1.0,"41":1.0,"42":1.0,"43":1.0,"44":1.0,"45":1.0,"46":1.0,"47":1.0,"48":1.0,"49":1.0,"50":1.0,"51":1.0,"52":1.0,"53":1.0,"54":1.0,"55":1.0,"56":1.0,"57":1.0,"58":1.0,"59":1.0,"60":1.0,"61":1.0,"62":1.0,"63":1.0,"64":0.0,"65":0.0,"66":1.0,"67":1.0,"68":1.0,"69":1.0,"70":1.0,"71":0.4028005619,"72":0.309667861,"73":0.309667861,"74":0.309667861,"75":0.309667861,"76":0.309667861,"77":0.309667861,"78":0.309667861,"79":0.309667861,"80":0.309667861,"81":0.309667861,"82":0.309667861,"83":0.309667861,"84":0.309667861,"85":0.309667861,"86":1.0,"87":0.309667861,"88":1.0,"89":1.0,"90":1.0,"91":1.0,"92":1.0,"93":1.0,"94":1.0,"95":1.0,"96":1.0,"97":1.0,"98":0.4078745549,"99":1.0,"100":1.0,"101":1.0,"102":1.0,"103":1.0,"104":1.0,"105":1.0,"106":1.0,"107":1.0,"108":1.0,"109":1.0,"110":1.0,"111":1.0,"112":1.0,"113":1.0,"114":1.0,"115":1.0,"116":1.0,"117":1.0,"118":1.0,"119":1.0,"120":1.0,"121":1.0,"122":1.0,"123":1.0,"124":1.0,"125":1.0,"126":1.0,"127":1.0,"128":1.0,"129":1.0,"130":1.0,"131":1.0,"132":1.0,"133":1.0,"134":1.0,"135":1.0,"136":1.0,"137":1.0,"138":1.0,"139":1.0,"140":1.0,"141":1.0,"142":1.0,"143":1.0,"144":1.0,"145":1.0,"146":1.0,"147":1.0,"148":1.0,"149":1.0,"150":1.0,"151":1.0,"152":1.0,"153":1.0,"154":1.0,"155":1.0,"156":1.0,"157":1.0,"158":1.0,"159":1.0,"160":1.0,"161":1.0,"162":1.0,"163":0.0,"164":0.0,"165":1.0,"166":1.0,"167":1.0,"168":1.0,"169":1.0,"170":0.4223931623,"171":0.3299055071,"172":0.3299055071,"173":0.3299055071,"174":0.3299055071,"175":0.3299055071,"176":0.3299055071,"177":0.3299055071,"178":0.3299055071,"179":0.3299055071,"180":0.3299055071,"181":0.3299055071,"182":0.3299055071,"183":0.3299055071,"184":0.3299055071,"185":1.0,"186":0.3299055071,"187":1.0,"188":1.0,"189":1.0,"190":1.0,"191":1.0,"192":1.0,"193":1.0,"194":1.0,"195":1.0,"196":1.0,"197":0.4301727463,"198":1.0,"199":1.0,"200":1.0,"201":1.0,"204":1.0,"205":0.3117263111,"206":1.0,"207":1.0,"208":1.0,"209":0.9965832433,"210":0.4078745549,"211":1.0,"212":1.0,"213":1.0,"214":1.0,"215":1.0,"218":1.0,"219":0.3363049639,"220":1.0,"221":1.0,"222":1.0,"223":0.9969614626,"224":0.4301727463,"225":1.0,"226":1.0,"230":0.626262792,"231":1.0,"235":0.4821680831,"236":0.5832345238,"237":0.2601646308},"z_mix":{"0":1.0,"1":1.0,"2":1.0,"3":1.0,"4":1.0,"5":1.0,"6":1.0,"7":1.0,"8":1.0,"9":1.0,"10":1.0,"11":1.0,"12":1.0,"13":1.0,"14":1.0,"15":1.0,"16":1.0,"17":1.0,"18":1.0,"19":1.0,"20":1.0,"21":1.0,"22":1.0,"23":1.0,"24":1.0,"25":1.0,"26":1.0,"27":1.0,"28":1.0,"29":1.0,"30":1.0,"31":1.0,"32":1.0,"33":1.0,"34":1.0,"35":1.0,"36":1.0,"37":1.0,"38":1.0,"39":1.0,"40":1.0,"41":1.0,"42":1.0,"43":1.0,"44":1.0,"45":1.0,"46":1.0,"47":1.0,"48":1.0,"49":1.0,"50":1.0,"51":1.0,"52":1.0,"53":1.0,"54":1.0,"55":1.0,"56":1.0,"57":1.0,"58":1.0,"59":1.0,"60":1.0,"61":1.0,"62":1.0,"63":1.0,"64":0.0,"65":0.0,"66":1.0,"67":1.0,"68":1.0,"69":1.0,"70":1.0,"71":0.4309494414,"72":0.3388370406,"73":0.3388370406,"74":0.3388370406,"75":0.3388370406,"76":0.3388370406,"77":0.3388370406,"78":0.3388370406,"79":0.3388370406,"80":0.3388370406,"81":0.3388370406,"82":0.3388370406,"83":0.3388370406,"84":0.3388370406,"85":0.3388370406,"86":1.0,"87":0.3388370406,"88":1.0,"89":1.0,"90":1.0,"91":1.0,"92":1.0,"93":1.0,"94":1.0,"95":1.0,"96":1.0,"97":1.0,"98":0.4398539566,"99":1.0,"100":1.0,"101":1.0,"102":1.0,"103":1.0,"104":1.0,"105":1.0,"106":1.0,"107":1.0,"108":1.0,"109":1.0,"110":1.0,"111":1.0,"112":1.0,"113":1.0,"114":1.0,"115":1.0,"116":1.0,"117":1.0,"118":1.0,"119":1.0,"120":1.0,"121":1.0,"122":1.0,"123":1.0,"124":1.0,"125":1.0,"126":1.0,"127":1.0,"128":1.0,"129":1.0,"130":1.0,"131":1.0,"132":1.0,"133":1.0,"134":1.0,"135":1.0,"136":1.0,"137":1.0,"138":1.0,"139":1.0,"140":1.0,"141":1.0,"142":1.0,"143":1.0,"144":1.0,"145":1.0,"146":1.0,"147":1.0,"148":1.0,"149":1.0,"150":1.0,"151":1.0,"152":1.0,"153":1.0,"154":1.0,"155":1.0,"156":1.0,"157":1.0,"158":1.0,"159":1.0,"160":1.0,"161":1.0,"162":1.0,"163":0.0,"164":0.0,"165":1.0,"166":1.0,"167":1.0,"168":1.0,"169":1.0,"170":0.4431716839,"171":0.3516884211,"172":0.3516884211,"173":0.3516884211,"174":0.3516884211,"175":0.3516884211,"176":0.3516884211,"177":0.3516884211,"178":0.3516884211,"179":0.3516884211,"180":0.3516884211,"181":0.3516884211,"182":0.3516884211,"183":0.3516884211,"184":0.3516884211,"185":1.0,"186":0.3516884211,"187":1.0,"188":1.0,"189":1.0,"190":1.0,"191":1.0,"192":1.0,"193":1.0,"194":1.0,"195":1.0,"196":1.0,"197":0.453619794,"198":1.0,"199":1.0,"200":1.0,"201":1.0,"204":1.0,"205":0.3408729397,"206":1.0,"207":1.0,"208":1.0,"209":0.9967276144,"210":0.4398539566,"211":1.0,"212":1.0,"213":1.0,"214":1.0,"215":1.0,"218":1.0,"219":0.3580183814,"220":1.0,"221":1.0,"222":1.0,"223":0.9970602371,"224":0.453619794,"225":1.0,"226":1.0,"230":0.6423476831,"231":1.0,"235":0.5002997619,"236":0.5903054905,"237":0.2655393972}} \ No newline at end of file diff --git a/ccc/tests/run_ccc_industry_output.json b/ccc/tests/run_ccc_industry_output.json index c4b10e84..70ac50fa 100644 --- a/ccc/tests/run_ccc_industry_output.json +++ b/ccc/tests/run_ccc_industry_output.json @@ -1 +1 @@ -{"index":{"0":0,"1":1,"2":2,"3":3,"4":4,"5":5,"6":6,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"26":26,"27":27,"28":28,"29":29,"30":30,"31":31,"32":32,"33":33,"34":34,"35":35,"36":36,"37":37,"38":38,"39":39,"40":40,"41":41,"42":42,"43":43,"44":44,"45":45,"46":46,"47":47,"48":48,"49":49,"50":50,"51":51,"52":52,"53":53,"54":54,"55":55,"56":56,"57":57,"58":58,"59":59,"60":60,"61":61,"62":62,"63":63,"64":64,"65":65,"66":66,"67":67,"68":68,"69":69,"70":70,"71":71,"72":72,"73":73,"74":74,"75":75,"76":76,"77":77,"78":78,"79":79,"80":80,"81":81,"82":82,"83":83,"84":84,"85":85,"86":86,"87":87,"88":88,"89":89,"90":90,"91":91,"92":92,"93":93,"94":94,"95":95,"96":96,"97":97,"98":98,"99":99,"100":100,"101":101,"102":102,"103":103,"104":104,"105":105,"106":106,"107":107,"108":108,"109":109,"110":110,"111":111,"112":112,"113":113,"114":114,"115":115,"116":116,"117":117,"118":118,"119":119,"120":120,"121":121,"122":122,"123":123,"124":124,"125":125,"126":126,"127":127,"130":130,"131":131,"132":132,"133":133,"134":134,"135":135,"136":136,"137":137,"138":138,"140":140,"143":143,"144":144,"145":145,"146":146,"149":149,"150":150,"151":151,"152":152,"153":153,"154":154,"155":155,"156":156,"157":157,"159":159,"162":162,"163":163},"Industry":{"0":"Accommodation","1":"Food\u00a0services\u00a0and\u00a0drinking\u00a0places","2":"Administrative\u00a0and\u00a0support\u00a0services","3":"Waste\u00a0management\u00a0and\u00a0remediation\u00a0services","4":"Farms","5":"Forestry,\u00a0fishing,\u00a0and\u00a0related\u00a0activities","6":"Performing\u00a0arts,\u00a0spectator\u00a0sports,\u00a0museums,\u00a0and\u00a0related activities","7":"Amusements,\u00a0gambling,\u00a0and\u00a0recreation\u00a0industries","8":"Construction","9":"Educational services","10":"Credit\u00a0intermediation\u00a0and\u00a0related\u00a0activities","11":"Securities,\u00a0commodity\u00a0contracts,\u00a0and\u00a0investments","12":"Insurance\u00a0carriers\u00a0and\u00a0related\u00a0activities","13":"Funds,\u00a0trusts,\u00a0and\u00a0other\u00a0financial\u00a0vehicles","14":"Ambulatory\u00a0health\u00a0care\u00a0services","15":"Hospitals","16":"Nursing\u00a0and\u00a0residential\u00a0care\u00a0facilities","17":"Social assistance","18":"Publishing\u00a0industries\u00a0(including\u00a0software)","19":"Motion\u00a0picture\u00a0and\u00a0sound\u00a0recording\u00a0industries","20":"Broadcasting\u00a0and\u00a0telecommunications","21":"Information\u00a0and\u00a0data\u00a0processing\u00a0services","22":"Management\u00a0of\u00a0companies\u00a0and\u00a0enterprises","23":"Food,\u00a0beverage,\u00a0and\u00a0tobacco\u00a0products","24":"Textile\u00a0mills\u00a0and\u00a0textile\u00a0product\u00a0mills","25":"Apparel\u00a0and\u00a0leather\u00a0and\u00a0allied\u00a0products","26":"Wood\u00a0products","27":"Paper\u00a0products","28":"Printing\u00a0and\u00a0related\u00a0support\u00a0activities","29":"Petroleum\u00a0and\u00a0coal\u00a0products","30":"Chemical\u00a0products","31":"Plastics\u00a0and\u00a0rubber\u00a0products","32":"Nonmetallic\u00a0mineral\u00a0products","33":"Primary\u00a0metals","34":"Fabricated\u00a0metal\u00a0products","35":"Machinery","36":"Computer\u00a0and\u00a0electronic\u00a0products","37":"Electrical\u00a0equipment,\u00a0appliances,\u00a0and\u00a0components","38":"Motor\u00a0vehicles,\u00a0bodies\u00a0and\u00a0trailers,\u00a0and\u00a0parts","39":"Other\u00a0transportation\u00a0equipment","40":"Furniture\u00a0and\u00a0related\u00a0products","41":"Miscellaneous\u00a0manufacturing","42":"Oil\u00a0and\u00a0gas\u00a0extraction","43":"Mining,\u00a0except\u00a0oil\u00a0and\u00a0gas","44":"Support\u00a0activities\u00a0for\u00a0mining","45":"Other\u00a0services,\u00a0except\u00a0government","46":"Legal\u00a0services","47":"Miscellaneous\u00a0professional,\u00a0scientific,\u00a0and\u00a0technical services","48":"Computer\u00a0systems\u00a0design\u00a0and\u00a0related\u00a0services","49":"Real\u00a0estate","50":"Rental\u00a0and\u00a0leasing\u00a0services\u00a0and\u00a0lessors\u00a0of\u00a0intangible assets","51":"Retail trade","52":"Air\u00a0transportation","53":"Railroad\u00a0transportation","54":"Water\u00a0transportation","55":"Truck\u00a0transportation","56":"Transit\u00a0and\u00a0ground\u00a0passenger\u00a0transportation","57":"Pipeline\u00a0transportation","58":"Other\u00a0transportation\u00a0and\u00a0support\u00a0activities","59":"Warehousing\u00a0and\u00a0storage","60":"Utilities","61":"Wholesale trade","62":"Accommodation","63":"Food\u00a0services\u00a0and\u00a0drinking\u00a0places","64":"Administrative\u00a0and\u00a0support\u00a0services","65":"Waste\u00a0management\u00a0and\u00a0remediation\u00a0services","66":"Farms","67":"Forestry,\u00a0fishing,\u00a0and\u00a0related\u00a0activities","68":"Performing\u00a0arts,\u00a0spectator\u00a0sports,\u00a0museums,\u00a0and\u00a0related activities","69":"Amusements,\u00a0gambling,\u00a0and\u00a0recreation\u00a0industries","70":"Construction","71":"Educational services","72":"Credit\u00a0intermediation\u00a0and\u00a0related\u00a0activities","73":"Securities,\u00a0commodity\u00a0contracts,\u00a0and\u00a0investments","74":"Insurance\u00a0carriers\u00a0and\u00a0related\u00a0activities","75":"Funds,\u00a0trusts,\u00a0and\u00a0other\u00a0financial\u00a0vehicles","76":"Ambulatory\u00a0health\u00a0care\u00a0services","77":"Hospitals","78":"Nursing\u00a0and\u00a0residential\u00a0care\u00a0facilities","79":"Social assistance","80":"Publishing\u00a0industries\u00a0(including\u00a0software)","81":"Motion\u00a0picture\u00a0and\u00a0sound\u00a0recording\u00a0industries","82":"Broadcasting\u00a0and\u00a0telecommunications","83":"Information\u00a0and\u00a0data\u00a0processing\u00a0services","84":"Management\u00a0of\u00a0companies\u00a0and\u00a0enterprises","85":"Food,\u00a0beverage,\u00a0and\u00a0tobacco\u00a0products","86":"Textile\u00a0mills\u00a0and\u00a0textile\u00a0product\u00a0mills","87":"Apparel\u00a0and\u00a0leather\u00a0and\u00a0allied\u00a0products","88":"Wood\u00a0products","89":"Paper\u00a0products","90":"Printing\u00a0and\u00a0related\u00a0support\u00a0activities","91":"Petroleum\u00a0and\u00a0coal\u00a0products","92":"Chemical\u00a0products","93":"Plastics\u00a0and\u00a0rubber\u00a0products","94":"Nonmetallic\u00a0mineral\u00a0products","95":"Primary\u00a0metals","96":"Fabricated\u00a0metal\u00a0products","97":"Machinery","98":"Computer\u00a0and\u00a0electronic\u00a0products","99":"Electrical\u00a0equipment,\u00a0appliances,\u00a0and\u00a0components","100":"Motor\u00a0vehicles,\u00a0bodies\u00a0and\u00a0trailers,\u00a0and\u00a0parts","101":"Other\u00a0transportation\u00a0equipment","102":"Furniture\u00a0and\u00a0related\u00a0products","103":"Miscellaneous\u00a0manufacturing","104":"Oil\u00a0and\u00a0gas\u00a0extraction","105":"Mining,\u00a0except\u00a0oil\u00a0and\u00a0gas","106":"Support\u00a0activities\u00a0for\u00a0mining","107":"Other\u00a0services,\u00a0except\u00a0government","108":"Legal\u00a0services","109":"Miscellaneous\u00a0professional,\u00a0scientific,\u00a0and\u00a0technical services","110":"Computer\u00a0systems\u00a0design\u00a0and\u00a0related\u00a0services","111":"Real\u00a0estate","112":"Rental\u00a0and\u00a0leasing\u00a0services\u00a0and\u00a0lessors\u00a0of\u00a0intangible assets","113":"Retail trade","114":"Air\u00a0transportation","115":"Railroad\u00a0transportation","116":"Water\u00a0transportation","117":"Truck\u00a0transportation","118":"Transit\u00a0and\u00a0ground\u00a0passenger\u00a0transportation","119":"Pipeline\u00a0transportation","120":"Other\u00a0transportation\u00a0and\u00a0support\u00a0activities","121":"Warehousing\u00a0and\u00a0storage","122":"Utilities","123":"Wholesale trade","124":"Accommodation and food services","125":"Administrative and waste management services","126":"Agriculture, forestry, fishing, and hunting","127":"Arts, entertainment, and recreation","130":"Finance and insurance","131":"Health care and social assistance","132":"Information","133":"Management of companies and enterprises","134":"Manufacturing","135":"Mining","136":"Other services, except government","137":"Professional, scientific, and technical services","138":"Real estate and rental and leasing","140":"Transportation and warehousing","143":"Accommodation and food services","144":"Administrative and waste management services","145":"Agriculture, forestry, fishing, and hunting","146":"Arts, entertainment, and recreation","149":"Finance and insurance","150":"Health care and social assistance","151":"Information","152":"Management of companies and enterprises","153":"Manufacturing","154":"Mining","155":"Other services, except government","156":"Professional, scientific, and technical services","157":"Real estate and rental and leasing","159":"Transportation and warehousing","162":"Overall","163":"Overall"},"Y":{"0":66.1934234369,"1":44.7870835379,"2":21.9001831585,"3":30.7995812681,"4":56.6326118625,"5":58.6987144746,"6":26.4510022771,"7":36.3066552362,"8":50.9348360982,"9":34.2248021666,"10":22.9167464666,"11":54.616987429,"12":29.9813161118,"13":54.3935089127,"14":27.2140661775,"15":33.8160446456,"16":30.3350897195,"17":34.1970057055,"18":25.8974495361,"19":20.7614747019,"20":17.19060929,"21":13.105738063,"22":44.3218780844,"23":42.7980477746,"24":37.1740225563,"25":56.6628080705,"26":48.6697205271,"27":32.30789007,"28":27.313112114,"29":59.5731364866,"30":25.2566071375,"31":35.7790479412,"32":49.779440837,"33":39.0228600842,"34":36.46004845,"35":38.1743609744,"36":26.2667838315,"37":46.3099779047,"38":35.2521418645,"39":49.50530429,"40":43.1478147663,"41":39.1105183037,"42":8.6983521778,"43":31.0086916313,"44":14.8050644959,"45":38.4927271135,"46":28.8442207726,"47":19.641369101,"48":22.0880587146,"49":84.5023518469,"50":12.6097003406,"51":59.0923466355,"52":14.6696588482,"53":14.8795395962,"54":17.0996597308,"55":20.6158420804,"56":25.8544101879,"57":8.4182619834,"58":23.5993735813,"59":40.2730346624,"60":15.0681319551,"61":62.5678652056,"62":57.7990519271,"63":37.7954426989,"64":22.9039847121,"65":28.007855409,"66":61.5167840375,"67":80.9626823668,"68":24.8876526037,"69":35.674833132,"70":61.5859440451,"71":34.0822380977,"72":29.5842577041,"73":68.6704673508,"74":34.2978382088,"75":58.6993904778,"76":26.8889252665,"77":33.2592772451,"78":30.3350897201,"79":36.9294081642,"80":33.44919293,"81":22.0724117612,"82":19.1151843504,"83":17.0550217962,"84":43.2763359068,"85":48.3048855609,"86":40.6870171307,"87":57.5936024771,"88":49.759980623,"89":35.2466500655,"90":29.6484908587,"91":57.3109431963,"92":28.2483141885,"93":41.7029458354,"94":50.6576949166,"95":43.3913287196,"96":40.5710887552,"97":45.5971933963,"98":27.7559863136,"99":51.1982202072,"100":39.5910254709,"101":55.7108934133,"102":46.123479628,"103":44.1028276439,"104":9.2603603085,"105":36.4716083411,"106":15.7471235809,"107":36.3185679025,"108":29.9398360817,"109":19.8461410327,"110":22.6604715753,"111":84.960221247,"112":14.2602517609,"113":68.4042228137,"114":14.961548748,"115":15.1416855436,"116":17.5064165197,"117":19.7473254727,"118":25.50512431,"119":8.493344648,"120":23.5406167936,"121":38.8718162591,"122":16.1399515867,"123":74.9033725116,"124":57.5328173271,"125":25.4135166777,"126":56.8127756221,"127":32.0028800964,"130":28.6448206565,"131":31.9520514046,"132":18.4031591864,"133":44.3218780844,"134":36.9228874568,"135":11.9802902586,"136":38.4927271135,"137":20.5687518566,"138":78.1181618074,"140":16.622308138,"143":51.992852816,"144":24.6449253698,"145":65.5667572743,"146":30.7939536513,"149":55.5668607817,"150":31.7701656397,"151":20.477092227,"152":43.2763359068,"153":40.1575743212,"154":13.417247087,"155":36.3185679025,"156":20.9684647916,"157":83.6826330063,"159":17.7825973066,"162":38.7936686872,"163":68.6045439892},"assets":{"0":251468621610.9022827148,"1":170870560831.6054992676,"2":106492097790.5230865479,"3":69464866307.1923217773,"4":359601192716.5429077148,"5":34352705962.8314361572,"6":79922779339.3306732178,"7":103100531850.1275482178,"8":167674309864.1975097656,"9":321852335173.162902832,"10":742471769336.486328125,"11":117288646632.7509918213,"12":242704259871.5009765625,"13":34266597921.9499473572,"14":187676386626.3576049805,"15":476870682069.5441894531,"16":45367688456.1200714111,"17":32821172821.6854019165,"18":205722166040.0869750977,"19":275276618185.1412353516,"20":1290507877813.3349609375,"21":118194411065.6137390137,"22":424413435043.7565917969,"23":382744557828.2229003906,"24":39763433350.6629333496,"25":23802489967.0470733643,"26":45996624948.891166687,"27":129541595783.7065734863,"28":49933189821.8591842651,"29":329428164622.0134887695,"30":863500170455.3681640625,"31":110331312312.7066345215,"32":116582519996.1656036377,"33":186378975799.425201416,"34":185026333665.7300415039,"35":272319888397.2880249023,"36":503974938260.4633789062,"37":97409347475.0587921143,"38":238664334578.3887939453,"39":222225359206.1832885742,"40":27298970230.4111976624,"41":132809342156.7745361328,"42":1206378685719.6235351562,"43":190223523014.2608032227,"44":120225750256.2843933105,"45":227393671624.0822143555,"46":20028299847.2376480103,"47":249009155856.5887756348,"48":42903264705.6848220825,"49":2545926908840.6557617188,"50":248115752512.012512207,"51":1608593695005.1538085938,"52":190656359022.7489013672,"53":331352975210.2105712891,"54":36714023796.1497192383,"55":108471874449.8662719727,"56":35034660346.8604888916,"57":169678725932.0599975586,"58":110872018726.7323150635,"59":33575803410.7719497681,"60":2043225324419.2265625,"61":973137443870.9088134766,"62":321835229078.1927490234,"63":131618330778.7992248535,"64":87779837154.6023254395,"65":45442362954.1839599609,"66":695254770987.6424560547,"67":182890160759.9651489258,"68":85913620169.5155334473,"69":103963170327.328125,"70":416883328406.9496459961,"71":223504365062.3242797852,"72":75859556179.7386169434,"73":178435565511.1371154785,"74":22117554581.3422851562,"75":32975922704.0225601196,"76":165185547973.7158813477,"77":468740246235.207824707,"78":44969311542.0389709473,"79":33500693280.9723625183,"80":10531454693.9851989746,"81":32648570358.8763084412,"82":114376654728.1431884766,"83":9622690881.1126461029,"84":90403382551.3785247803,"85":75311838089.0727386475,"86":7854948624.3696289062,"87":5338390836.4029083252,"88":13100141973.2179260254,"89":18990987477.7587127686,"90":7652157518.5940599442,"91":36804972259.2728424072,"92":155956627360.7209777832,"93":18759113941.0206604004,"94":17930326841.1746673584,"95":31384946425.5561637878,"96":33868174282.694316864,"97":44994036766.7347335815,"98":67202508361.1462249756,"99":13457767002.2784061432,"100":37968439962.3398895264,"101":37605705698.8262023926,"102":3398491339.2459998131,"103":21983133311.4125061035,"104":250060628349.9204101562,"105":42556976403.1628112793,"106":25044165259.3080673218,"107":434659499245.3933105469,"108":24694671280.0868492126,"109":250145961935.0880737305,"110":34987856978.9233474731,"111":10194539931205.201171875,"112":187611316433.8890991211,"113":599107994988.6729736328,"114":47796425035.4379577637,"115":83039763589.1802825928,"116":9217710064.5257263184,"117":37317255861.6797409058,"118":10233125938.3128376007,"119":33708295455.2028007507,"120":34235605978.8197860718,"121":15189477206.5546169281,"122":110848021471.9063720703,"123":387578651034.0488891602,"124":422339182442.5078125,"125":175956964097.715423584,"126":393953898679.3743286133,"127":183023311189.4582214355,"130":1136731273762.6882324219,"131":742735929973.7072753906,"132":1889701073104.1774902344,"133":424413435043.7565917969,"134":3957731548856.3671875,"135":1516827958990.1687011719,"136":227393671624.0822143555,"137":311940720409.5112304688,"138":2794042661352.6674804688,"140":1016356440895.4002685547,"143":453453559856.9920043945,"144":133222200108.7863006592,"145":878144931747.6075439453,"146":189876790496.8436889648,"149":309388598976.2406005859,"150":712395799031.9350585938,"151":167179370662.1173706055,"152":90403382551.3785247803,"153":649562708071.8395996094,"154":317661770012.3912963867,"155":434659499245.3933105469,"156":309828490194.0982666016,"157":10382151247639.08984375,"159":270737659129.7137756348,"162":20307631178754.234375,"163":17036588368688.330078125},"bea_ind_code":{"0":"7210","1":"7220","2":"5610","3":"5620","4":"110C","5":"113F","6":"711A","7":"7130","8":"2300","9":"6100","10":"5220","11":"5230","12":"5240","13":"5250","14":"6210","15":"622H","16":"6230","17":"6240","18":"5110","19":"5120","20":"5130","21":"5140","22":"5500","23":"311A","24":"313T","25":"315A","26":"3210","27":"3220","28":"3230","29":"3240","30":"3250","31":"3260","32":"3270","33":"3310","34":"3320","35":"3330","36":"3340","37":"3350","38":"336M","39":"336O","40":"3370","41":"338A","42":"2110","43":"2120","44":"2130","45":"8100","46":"5411","47":"5412","48":"5415","49":"5310","50":"5320","51":"44RT","52":"4810","53":"4820","54":"4830","55":"4840","56":"4850","57":"4860","58":"487S","59":"4930","60":"2200","61":"4200","62":"7210","63":"7220","64":"5610","65":"5620","66":"110C","67":"113F","68":"711A","69":"7130","70":"2300","71":"6100","72":"5220","73":"5230","74":"5240","75":"5250","76":"6210","77":"622H","78":"6230","79":"6240","80":"5110","81":"5120","82":"5130","83":"5140","84":"5500","85":"311A","86":"313T","87":"315A","88":"3210","89":"3220","90":"3230","91":"3240","92":"3250","93":"3260","94":"3270","95":"3310","96":"3320","97":"3330","98":"3340","99":"3350","100":"336M","101":"336O","102":"3370","103":"338A","104":"2110","105":"2120","106":"2130","107":"8100","108":"5411","109":"5412","110":"5415","111":"5310","112":"5320","113":"44RT","114":"4810","115":"4820","116":"4830","117":"4840","118":"4850","119":"4860","120":"487S","121":"4930","122":"2200","123":"4200","124":null,"125":null,"126":null,"127":null,"130":null,"131":null,"132":null,"133":null,"134":null,"135":null,"136":null,"137":null,"138":null,"140":null,"143":null,"144":null,"145":null,"146":null,"149":null,"150":null,"151":null,"152":null,"153":null,"154":null,"155":null,"156":null,"157":null,"159":null,"162":null,"163":null},"delta":{"0":0.0216294988,"1":0.0518898942,"2":0.1492064034,"3":0.0482275032,"4":0.0376177798,"5":0.0463821112,"6":0.0749563912,"7":0.0404180738,"8":0.0677242948,"9":0.0439328069,"10":0.1142261356,"11":0.059132994,"12":0.1147457008,"13":0.0210962664,"14":0.0763139691,"15":0.0503772857,"16":0.0490702769,"17":0.0517618347,"18":0.1404107611,"19":0.1023300662,"20":0.0703452279,"21":0.2101554577,"22":0.0754230864,"23":0.0606281378,"24":0.0562147876,"25":0.0391982725,"26":0.0499124352,"27":0.0743722243,"28":0.0873835885,"29":0.0424779245,"30":0.0814072155,"31":0.0751014292,"32":0.0552811481,"33":0.0609753484,"34":0.0730719676,"35":0.0805204428,"36":0.1499201327,"37":0.0686281985,"38":0.1096543879,"39":0.0773329504,"40":0.0648866527,"41":0.083771224,"42":0.0733672069,"43":0.0553139953,"44":0.0958738584,"45":0.0429838025,"46":0.1006663663,"47":0.1470806933,"48":0.2002092956,"49":0.0052170272,"50":0.1361344086,"51":0.0364291557,"52":0.0738532479,"53":0.0304382234,"54":0.069700499,"55":0.1290060519,"56":0.080273934,"57":0.0538277388,"58":0.0636658008,"59":0.043557305,"60":0.0418614967,"61":0.0542222472,"62":0.0270002304,"63":0.058460739,"64":0.1472886829,"65":0.0501731268,"66":0.0333811467,"67":0.0213792615,"68":0.0765496562,"69":0.040819011,"70":0.0530226466,"71":0.0440279922,"72":0.1043458787,"73":0.0408216414,"74":0.107671841,"75":0.019104488,"76":0.0766548701,"77":0.0508010653,"78":0.0490702769,"79":0.0496124771,"80":0.1261015905,"81":0.1006370918,"82":0.0687103312,"83":0.2006040384,"84":0.0768394382,"85":0.0547914607,"86":0.0530714661,"87":0.0383563736,"88":0.0488522902,"89":0.0711434563,"90":0.084576015,"91":0.0448548904,"92":0.07814878,"93":0.0681738894,"94":0.0543143947,"95":0.0566070081,"96":0.068344205,"97":0.0708530983,"98":0.1468921699,"99":0.0623799004,"100":0.1023062279,"101":0.0678290508,"102":0.0614904608,"103":0.0769028478,"104":0.0729155942,"105":0.0509340849,"106":0.0948137151,"107":0.044503194,"108":0.0991163641,"109":0.1467058985,"110":0.1987383737,"111":0.0051569417,"112":0.1335632212,"113":0.0281367273,"114":0.0736006258,"115":0.030344466,"116":0.0693585083,"117":0.1304174657,"118":0.0806520894,"119":0.0537836085,"120":0.0637147637,"121":0.0445791768,"122":0.0413332196,"123":0.0363536717,"124":0.0338722907,"125":0.1093416226,"126":0.0383820279,"127":0.0555002964,"130":0.1058451371,"131":0.0569123803,"132":0.0913768607,"133":0.0754230864,"134":0.0826211257,"135":0.0728870823,"136":0.0429838025,"137":0.1514077668,"138":0.0168427139,"140":0.0602012427,"143":0.0361318813,"144":0.1141623695,"145":0.0308815289,"146":0.056986069,"149":0.0588615441,"150":0.0566307235,"151":0.086152369,"152":0.0768394382,"153":0.0766712396,"154":0.0716971712,"155":0.044503194,"156":0.1487886537,"157":0.0074773155,"159":0.0629410677,"162":0.0616167355,"163":0.0263903323},"eatr_d":{"0":0.137893204,"1":0.1294059838,"2":0.116959407,"3":0.1144035467,"4":0.1237443119,"5":0.1259978597,"6":0.1162693611,"7":0.1192307484,"8":0.1248370899,"9":0.1306801355,"10":0.1207326856,"11":0.1323464722,"12":0.1271568856,"13":0.1383479107,"14":0.1240269959,"15":0.1281925171,"16":0.1280581209,"17":0.1278860614,"18":0.1164871871,"19":0.1086511194,"20":0.1087252435,"21":0.1105734255,"22":0.1311565284,"23":0.1273148949,"24":0.1296847536,"25":0.1362155619,"26":0.1310034891,"27":0.1217686835,"28":0.1212184077,"29":0.129364705,"30":0.1164497943,"31":0.123456369,"32":0.1277488528,"33":0.1260410862,"34":0.1240764048,"35":0.1237676322,"36":0.1190613347,"37":0.1281206763,"38":0.1222003803,"39":0.1294193573,"40":0.1289291674,"41":0.124237077,"42":0.1072038442,"43":0.1177345139,"44":0.1091016693,"45":0.1274464811,"46":0.1253770647,"47":0.115530636,"48":0.1186817372,"49":0.1369599443,"50":0.1080490046,"51":0.1359133939,"52":0.1127872133,"53":0.1055976963,"54":0.1108319438,"55":0.1136583882,"56":0.1223150409,"57":0.1072158979,"58":0.1136443202,"59":0.1314905277,"60":0.1057284608,"61":0.1344600786,"62":0.2198649167,"63":0.2105353079,"64":0.1997470743,"65":0.1959893857,"66":0.2081502652,"67":0.2150589188,"68":0.1983150838,"69":0.2015479851,"70":0.2096819086,"71":0.2129662288,"72":0.205209153,"73":0.2170325038,"74":0.2102288684,"75":0.2205879831,"76":0.2063489071,"77":0.2104398016,"78":0.2103862543,"79":0.2106024929,"80":0.2014745861,"81":0.1918832704,"82":0.1921403662,"83":0.1944226464,"84":0.2134410828,"85":0.2116283508,"86":0.2129972619,"87":0.21869673,"88":0.2136994821,"89":0.2054378702,"90":0.204600722,"91":0.2115913251,"92":0.2002346409,"93":0.208163563,"94":0.2107475316,"95":0.2101208325,"96":0.208101107,"97":0.2091025166,"98":0.2022423942,"99":0.2124652436,"100":0.2064228572,"101":0.2141333475,"102":0.2124777352,"103":0.2088038055,"104":0.1900106614,"105":0.2017240807,"106":0.1919407709,"107":0.2093409792,"108":0.2079388248,"109":0.1979838505,"110":0.2012153927,"111":0.2192726312,"112":0.1912883791,"113":0.2212508294,"114":0.1954478687,"115":0.1883562177,"116":0.1935666933,"117":0.1959428671,"118":0.2046618008,"119":0.1898698717,"120":0.1962060551,"121":0.2135995427,"122":0.1888034321,"123":0.2211896801,"124":0.1344594329,"125":0.1159503961,"126":0.1239408208,"127":0.1179375672,"130":0.1238336471,"131":0.1271182114,"132":0.1096750467,"133":0.1311565284,"134":0.1231128946,"135":0.1086749066,"136":0.1274464811,"137":0.1165962223,"138":0.1343926036,"140":0.1105753149,"143":0.2171569271,"144":0.1984653191,"145":0.2095891219,"146":0.2000851931,"149":0.2140260947,"150":0.209495503,"151":0.1928095324,"152":0.2134410828,"153":0.2069831248,"154":0.1917320699,"155":0.2093409792,"156":0.1991422319,"157":0.21876694,"159":0.194044949,"162":0.1220979443,"163":0.2148327561},"eatr_e":{"0":0.2071280223,"1":0.1922827504,"2":0.1709084885,"3":0.166670708,"4":0.1816453897,"5":0.1871378338,"6":0.1700868117,"7":0.1751265023,"8":0.183942477,"9":0.1957887605,"10":0.1772713788,"11":0.1975494664,"12":0.1881572204,"13":0.2079476754,"14":0.1832693188,"15":0.1914258351,"16":0.1907365327,"17":0.1899948546,"18":0.1699087727,"19":0.1564679668,"20":0.1567590476,"21":0.1600142926,"22":0.1954353938,"23":0.1871229228,"24":0.1910670834,"25":0.2012014158,"26":0.1935676579,"27":0.1780690023,"28":0.1771784076,"29":0.1918534019,"30":0.1691857353,"31":0.1805347851,"32":0.1888513419,"33":0.184962405,"34":0.1816270212,"35":0.1809736703,"36":0.1736262788,"37":0.1882524959,"38":0.1784803404,"39":0.1898969996,"40":0.1898118618,"41":0.1818115325,"42":0.1540562833,"43":0.1719721853,"44":0.1572358165,"45":0.1899983833,"46":0.1852897085,"47":0.1681843232,"48":0.1736419359,"49":0.2072012148,"50":0.155641333,"51":0.2023682041,"52":0.1637573425,"53":0.1514737194,"54":0.1603742963,"55":0.1651618754,"56":0.1801173995,"57":0.1541697076,"58":0.1652988419,"59":0.1961479465,"60":0.1516169996,"61":0.1983675132,"62":0.2020469766,"63":0.1876352092,"64":0.1712505044,"65":0.1655379558,"66":0.1835494767,"67":0.1958067672,"68":0.1692792602,"69":0.1742234025,"70":0.1868375302,"71":0.1924314491,"72":0.1793687816,"73":0.1980613158,"74":0.1872042442,"75":0.20354096,"76":0.1815106503,"77":0.1884990168,"78":0.1880901973,"79":0.1881991724,"80":0.1737779797,"81":0.1590157294,"82":0.159540575,"83":0.1631914667,"84":0.1922570795,"85":0.18808373,"86":0.1901972945,"87":0.1982659848,"88":0.1915200741,"89":0.1789842535,"90":0.177776449,"91":0.1888613443,"92":0.1712369287,"93":0.1827610026,"94":0.1874860432,"95":0.1857591411,"96":0.182739713,"97":0.1840692058,"98":0.1742850459,"99":0.1890886788,"100":0.1802166915,"101":0.1912432554,"102":0.1893078795,"103":0.1836276669,"104":0.1562610649,"105":0.1743052565,"106":0.1592165466,"107":0.1867190203,"108":0.1837715037,"109":0.1684158397,"110":0.1733860377,"111":0.2026387629,"112":0.1583017933,"113":0.2025319521,"114":0.1646480615,"115":0.1538390195,"116":0.1617542033,"117":0.1653385718,"118":0.178766476,"119":0.1560942809,"120":0.1658538855,"121":0.1926610744,"122":0.1544725664,"123":0.2015835406,"124":0.201121902,"125":0.1692354836,"126":0.1821243298,"127":0.1729257658,"130":0.1826126604,"131":0.1892594878,"132":0.1583517937,"133":0.1954353938,"134":0.1802500207,"135":0.1565551084,"136":0.1899983833,"137":0.1700332039,"138":0.2026226093,"140":0.1599818295,"143":0.1978638519,"144":0.1693019424,"145":0.1861022875,"146":0.1719863246,"149":0.1932859527,"150":0.1868386947,"151":0.160545104,"152":0.1922570795,"153":0.1812066975,"154":0.158911443,"155":0.1867190203,"156":0.1702010198,"157":0.201837569,"159":0.1625221666,"162":0.17956266,"163":0.1951422496},"eatr_mix":{"0":0.1848970728,"1":0.1720834037,"2":0.1535916668,"3":0.1499207666,"4":0.1631239172,"5":0.1675550939,"6":0.1528112567,"7":0.1572114145,"8":0.1650131264,"9":0.1747752343,"10":0.1590994488,"11":0.1766099509,"12":0.1685323901,"13":0.1855453542,"14":0.1642044431,"15":0.1710369501,"16":0.1705280994,"17":0.1700007099,"18":0.1527772136,"19":0.1411586069,"20":0.1413724421,"21":0.1441644051,"22":0.1747687778,"23":0.1679459789,"24":0.1713550294,"25":0.1803559443,"26":0.1734984231,"27":0.1600173863,"28":0.1592252994,"29":0.1718360196,"30":0.1522910023,"31":0.162238127,"32":0.1692648115,"33":0.1660662268,"34":0.1631758542,"35":0.1626404696,"36":0.1561306334,"37":0.1689766814,"38":0.1604448243,"39":0.17052113,"40":0.1702815329,"41":0.1633604749,"42":0.139054084,"43":0.154594138,"44":0.1418225031,"45":0.1698307845,"46":0.1660171785,"47":0.1512936694,"48":0.1559934818,"49":0.1846665455,"50":0.1404026205,"51":0.1810321868,"52":0.1474034148,"53":0.1367929424,"54":0.1444944723,"55":0.1486575445,"56":0.1615303543,"57":0.1391300069,"58":0.1487354698,"59":0.1753308963,"60":0.1369295556,"61":0.1778913714,"62":0.2071582203,"63":0.1942238825,"64":0.1794837214,"65":0.1743539161,"66":0.1906874675,"67":0.2013849809,"68":0.177667389,"69":0.1821306603,"70":0.1934542453,"71":0.1982819099,"72":0.1868205452,"73":0.203533393,"74":0.193823606,"75":0.2084152385,"76":0.1886505194,"77":0.1947710167,"78":0.1944675174,"79":0.1946289987,"80":0.1817909546,"81":0.1685428468,"82":0.1689856169,"83":0.1722323814,"84":0.1983422825,"85":0.194892146,"86":0.1967708359,"87":0.2041616434,"88":0.197923902,"89":0.186636246,"90":0.1855296167,"91":0.1954402741,"92":0.1796357552,"93":0.1901118532,"94":0.194212748,"95":0.1928022306,"96":0.1900758966,"97":0.1913160983,"98":0.1823727897,"99":0.1958509991,"100":0.1878029109,"101":0.1978708026,"102":0.1960010352,"103":0.1909151103,"104":0.166042878,"105":0.1822444489,"106":0.1687003306,"107":0.1931894874,"108":0.1907218592,"109":0.176965979,"110":0.1814206754,"111":0.2074311194,"112":0.1678626807,"113":0.2079319223,"114":0.1735545995,"115":0.1638487506,"116":0.1709644812,"117":0.1741999467,"118":0.186222854,"119":0.1658806952,"120":0.1746361263,"121":0.1986571365,"122":0.1644267225,"123":0.2072634077,"124":0.1797129011,"125":0.1521424568,"126":0.163510315,"127":0.1552899497,"130":0.163717435,"131":0.1692336225,"132":0.1427574997,"133":0.1747687778,"134":0.1619364766,"135":0.1412223715,"136":0.1698307845,"137":0.1528853954,"138":0.1807358335,"140":0.1441465984,"143":0.2034039308,"144":0.1777339344,"145":0.1929154254,"146":0.1801111623,"149":0.1992617339,"150":0.1933260004,"151":0.1698927003,"152":0.1983422825,"153":0.1886658939,"154":0.1684229049,"155":0.1931894874,"156":0.1785654356,"157":0.2067160954,"159":0.1716469187,"162":0.1611303784,"163":0.2008206726},"major_industry":{"0":"Accommodation and food services","1":"Accommodation and food services","2":"Administrative and waste management services","3":"Administrative and waste management services","4":"Agriculture, forestry, fishing, and hunting","5":"Agriculture, forestry, fishing, and hunting","6":"Arts, entertainment, and recreation","7":"Arts, entertainment, and recreation","8":"Construction","9":"Educational services","10":"Finance and insurance","11":"Finance and insurance","12":"Finance and insurance","13":"Finance and insurance","14":"Health care and social assistance","15":"Health care and social assistance","16":"Health care and social assistance","17":"Health care and social assistance","18":"Information","19":"Information","20":"Information","21":"Information","22":"Management of companies and enterprises","23":"Manufacturing","24":"Manufacturing","25":"Manufacturing","26":"Manufacturing","27":"Manufacturing","28":"Manufacturing","29":"Manufacturing","30":"Manufacturing","31":"Manufacturing","32":"Manufacturing","33":"Manufacturing","34":"Manufacturing","35":"Manufacturing","36":"Manufacturing","37":"Manufacturing","38":"Manufacturing","39":"Manufacturing","40":"Manufacturing","41":"Manufacturing","42":"Mining","43":"Mining","44":"Mining","45":"Other services, except government","46":"Professional, scientific, and technical services","47":"Professional, scientific, and technical services","48":"Professional, scientific, and technical services","49":"Real estate and rental and leasing","50":"Real estate and rental and leasing","51":"Retail trade","52":"Transportation and warehousing","53":"Transportation and warehousing","54":"Transportation and warehousing","55":"Transportation and warehousing","56":"Transportation and warehousing","57":"Transportation and warehousing","58":"Transportation and warehousing","59":"Transportation and warehousing","60":"Utilities","61":"Wholesale trade","62":"Accommodation and food services","63":"Accommodation and food services","64":"Administrative and waste management services","65":"Administrative and waste management services","66":"Agriculture, forestry, fishing, and hunting","67":"Agriculture, forestry, fishing, and hunting","68":"Arts, entertainment, and recreation","69":"Arts, entertainment, and recreation","70":"Construction","71":"Educational services","72":"Finance and insurance","73":"Finance and insurance","74":"Finance and insurance","75":"Finance and insurance","76":"Health care and social assistance","77":"Health care and social assistance","78":"Health care and social assistance","79":"Health care and social assistance","80":"Information","81":"Information","82":"Information","83":"Information","84":"Management of companies and enterprises","85":"Manufacturing","86":"Manufacturing","87":"Manufacturing","88":"Manufacturing","89":"Manufacturing","90":"Manufacturing","91":"Manufacturing","92":"Manufacturing","93":"Manufacturing","94":"Manufacturing","95":"Manufacturing","96":"Manufacturing","97":"Manufacturing","98":"Manufacturing","99":"Manufacturing","100":"Manufacturing","101":"Manufacturing","102":"Manufacturing","103":"Manufacturing","104":"Mining","105":"Mining","106":"Mining","107":"Other services, except government","108":"Professional, scientific, and technical services","109":"Professional, scientific, and technical services","110":"Professional, scientific, and technical services","111":"Real estate and rental and leasing","112":"Real estate and rental and leasing","113":"Retail trade","114":"Transportation and warehousing","115":"Transportation and warehousing","116":"Transportation and warehousing","117":"Transportation and warehousing","118":"Transportation and warehousing","119":"Transportation and warehousing","120":"Transportation and warehousing","121":"Transportation and warehousing","122":"Utilities","123":"Wholesale trade","124":"Accommodation and food services","125":"Administrative and waste management services","126":"Agriculture, forestry, fishing, and hunting","127":"Arts, entertainment, and recreation","130":"Finance and insurance","131":"Health care and social assistance","132":"Information","133":"Management of companies and enterprises","134":"Manufacturing","135":"Mining","136":"Other services, except government","137":"Professional, scientific, and technical services","138":"Real estate and rental and leasing","140":"Transportation and warehousing","143":"Accommodation and food services","144":"Administrative and waste management services","145":"Agriculture, forestry, fishing, and hunting","146":"Arts, entertainment, and recreation","149":"Finance and insurance","150":"Health care and social assistance","151":"Information","152":"Management of companies and enterprises","153":"Manufacturing","154":"Mining","155":"Other services, except government","156":"Professional, scientific, and technical services","157":"Real estate and rental and leasing","159":"Transportation and warehousing","162":"Overall","163":"Overall"},"metr_d":{"0":-0.139703778,"1":-0.2023497754,"2":-0.3077682126,"3":-0.3317451697,"4":-0.2481149541,"5":-0.2294876253,"6":-0.3141561521,"7":-0.2871735193,"8":-0.2390123172,"9":-0.1925092395,"10":-0.273907766,"11":-0.1798802823,"12":-0.2201222394,"13":-0.1365312184,"14":-0.2457474496,"15":-0.2118738145,"16":-0.212937928,"17":-0.21430298,"18":-0.3121329482,"19":-0.3890643106,"20":-0.3882943495,"21":-0.3693686602,"22":-0.1888712043,"23":-0.2188565024,"24":-0.2001829246,"25":-0.1515637687,"26":-0.1900374859,"27":-0.2649156179,"28":-0.2696759796,"29":-0.202671297,"30":-0.3124798159,"31":-0.2505357718,"32":-0.2153937435,"33":-0.2291357579,"34":-0.2453345667,"35":-0.247919304,"36":-0.288687214,"37":-0.2124423982,"38":-0.261205981,"39":-0.2022456465,"40":-0.206074217,"41":-0.2439938095,"42":-0.4042708148,"43":-0.3006664955,"44":-0.3843973824,"45":-0.2178044301,"46":-0.2345632653,"47":-0.3210642554,"48":-0.2920918387,"49":-0.146271078,"50":-0.3953505372,"51":-0.1537262096,"52":-0.3473674049,"53":-0.4215411552,"54":-0.3667624482,"55":-0.3389020482,"56":-0.2602243384,"57":-0.4041427917,"58":-0.3390379042,"59":-0.1863337847,"60":-0.4201192211,"61":-0.1642412426,"62":0.2767378305,"63":0.233208625,"64":0.1758529201,"65":0.1538064238,"66":0.221226639,"67":0.2549502534,"68":0.1675882138,"69":0.1860167347,"70":0.2289639096,"71":0.2450475421,"72":0.205925338,"73":0.2640542328,"74":0.2316898169,"75":0.2799059929,"76":0.2119257899,"77":0.2327359109,"78":0.2324706204,"79":0.2335408124,"80":0.185607395,"81":0.1283264446,"82":0.1299667665,"83":0.1442619579,"84":0.2473175943,"85":0.2385775146,"86":0.2451963151,"87":0.2715600202,"88":0.2485471527,"89":0.2071367804,"90":0.2026845761,"91":0.2383968792,"92":0.1786295759,"93":0.2212944826,"94":0.2342569563,"95":0.2311529224,"96":0.220975738,"97":0.2260551926,"98":0.1898691261,"99":0.2426376784,"100":0.2123119829,"101":0.2506026326,"102":0.2426979528,"103":0.2245469845,"104":0.1161896385,"105":0.1869971279,"106":0.1286938459,"107":0.2272549978,"108":0.2201463089,"109":0.1656528466,"110":0.1841585973,"111":0.2741218475,"112":0.1245071033,"113":0.2827860104,"114":0.1505317104,"115":0.1051821033,"116":0.1389560407,"117":0.1535261037,"118":0.2030111014,"119":0.1152634738,"120":0.1551096265,"121":0.2480720811,"122":0.1081845122,"123":0.2825212865,"124":-0.1642459565,"125":-0.3171300336,"126":-0.2464682211,"127":-0.2988188034,"130":-0.2473657916,"131":-0.220432441,"132":-0.3785033278,"133":-0.1888712043,"134":-0.2534357698,"135":-0.3888171293,"136":-0.2178044301,"137":-0.3111225498,"138":-0.1647340956,"140":-0.3693495764,"143":0.2646207369,"144":0.1684630687,"145":0.2284995649,"146":0.1777804721,"149":0.2500955589,"150":0.2280304875,"151":0.1342073736,"152":0.2473175943,"153":0.2152256431,"154":0.1273588642,"155":0.2272549978,"156":0.1723821875,"157":0.2718733086,"159":0.1419287546,"162":-0.2620842588,"163":0.253892579},"metr_e":{"0":0.202098081,"1":0.1585952483,"2":0.0869180975,"3":0.0712314328,"4":0.1243873997,"5":0.1423902905,"6":0.0839181065,"7":0.1020141071,"8":0.1320078426,"9":0.169291745,"10":0.1095006327,"11":0.1745615547,"12":0.1456504521,"13":0.2043693365,"14":0.1297884575,"15":0.1559388594,"16":0.1537898571,"17":0.1514653109,"18":0.0832654753,"19":0.0311584139,"20":0.0323495457,"21":0.0454735112,"22":0.1682259974,"23":0.1423424184,"24":0.1548217617,"25":0.1852814848,"26":0.1625472041,"27":0.1122529327,"28":0.1091787133,"29":0.1572663854,"30":0.0806054781,"31":0.1206548486,"32":0.1478562153,"33":0.1353490318,"34":0.1243259241,"35":0.1221336632,"36":0.0967024354,"37":0.1459538924,"38":0.1136656673,"39":0.1511576627,"40":0.1508898145,"41":0.1249430541,"42":0.0211756045,"43":0.0907726591,"44":0.0342942165,"45":0.1514764007,"46":0.1364158026,"47":0.0768957641,"48":0.096758195,"49":0.2023014242,"50":0.0277597011,"51":0.1886480253,"52":0.0601308758,"53":0.0102548118,"54":0.0469030859,"55":0.0655153879,"56":0.1192438476,"57":0.0216497158,"58":0.0660371723,"59":0.1703722482,"60":0.0108670764,"61":0.176987295,"62":0.1958011636,"63":0.1481644939,"64":0.0866562104,"65":0.0630689897,"66":0.1336152158,"67":0.1758450276,"68":0.0786522812,"69":0.0984675898,"70":0.1453624767,"71":0.1646324315,"72":0.1182041621,"73":0.1831683142,"74":0.1466529236,"75":0.2004363502,"76":0.1261674804,"77":0.1511781543,"78":0.1497545232,"79":0.1501344735,"80":0.0967174109,"81":0.0346038033,"82":0.036958241,"83":0.0530235186,"84":0.1640448933,"85":0.1497319638,"86":0.157041378,"87":0.1838266872,"88":0.1615523971,"89":0.1167591212,"90":0.1121892791,"91":0.1524359071,"92":0.0866015639,"93":0.1307500622,"94":0.1476419142,"95":0.1415449686,"96":0.1306724374,"97":0.1354934989,"98":0.0987092681,"99":0.1532231557,"100":0.1213739256,"101":0.160612373,"102":0.1539808535,"103":0.1338983137,"104":0.0220552522,"105":0.0987884772,"106":0.0355060202,"107":0.1449446117,"108":0.1344186114,"109":0.0751021478,"110":0.095171742,"111":0.1976436346,"112":0.0313825701,"113":0.1973117137,"114":0.0592844828,"115":0.0107492793,"116":0.046763419,"117":0.0622237068,"118":0.1159386191,"119":0.0212850055,"120":0.0644052493,"121":0.1654048955,"122":0.0137318114,"123":0.1943523809,"124":0.185051046,"125":0.0807889925,"126":0.125987274,"127":0.0942006274,"130":0.1276125087,"131":0.1491479023,"132":0.0388157083,"133":0.1682259974,"134":0.1196926733,"135":0.0315153134,"136":0.1514764007,"137":0.0837216961,"138":0.1893783709,"140":0.0453443895,"143":0.1825321109,"144":0.0787451767,"145":0.1427634044,"146":0.0896083661,"149":0.1674997825,"150":0.1453665808,"151":0.0414326451,"152":0.1640448933,"153":0.1250461737,"154":0.0341346068,"155":0.1449446117,"156":0.0824123324,"157":0.1951471641,"159":0.0501185969,"162":0.1173614879,"163":0.1736614008},"metr_mix":{"0":0.1298077346,"1":0.0822548777,"2":0.0036837849,"3":-0.0135419321,"4":0.0457952193,"5":0.0641825048,"6":0.0000708917,"7":0.0201055782,"8":0.0537221688,"9":0.0926708657,"10":0.0284580791,"11":0.0996358135,"12":0.0681428452,"13":0.1320829516,"14":0.0503451873,"15":0.0781408004,"16":0.0761269226,"17":0.0740303672,"18":-0.0000873065,"19":-0.0571697423,"20":-0.0560603673,"21":-0.0417864581,"22":0.0926461653,"23":0.0657705378,"24":0.0793952088,"25":0.1135294314,"26":0.0877599045,"27":0.032467724,"28":0.0290097722,"29":0.081285618,"30":-0.002352207,"31":0.0420326111,"32":0.0710889641,"33":0.0580839758,"34":0.0460149171,"35":0.0437453298,"36":0.0152593408,"37":0.0699322046,"38":0.0343235446,"39":0.0760992789,"40":0.0751479186,"41":0.0467950595,"42":-0.0682136382,"43":0.008286574,"44":-0.0537330448,"45":0.0733528266,"46":0.0578817172,"47":-0.0070302998,"48":0.0146409212,"49":0.1289957952,"50":-0.0611105493,"51":0.1159920026,"52":-0.0257030383,"53":-0.0803394807,"54":-0.0401244538,"55":-0.0196081858,"56":0.0390047805,"57":-0.0678112076,"58":-0.0192318712,"59":0.0947916181,"60":-0.0795990558,"61":0.1044372558,"62":0.2123355349,"63":0.165525601,"64":0.104904446,"65":0.0816877605,"66":0.1517426103,"67":0.1921074875,"68":0.0968194676,"69":0.116430839,"70":0.1625642481,"71":0.1807997706,"72":0.1361407772,"73":0.1997552354,"74":0.1639880653,"75":0.2166062682,"76":0.1435950735,"77":0.1676181181,"78":0.1664586814,"79":0.1670759789,"80":0.114968184,"81":0.0538888258,"82":0.0560660421,"83":0.0717301693,"84":0.1810227895,"85":0.1680799596,"86":0.175177968,"87":0.2019643462,"88":0.1794747759,"89":0.1353828462,"90":0.1308037114,"91":0.1701634706,"92":0.1055746286,"93":0.1494559823,"94":0.1654829078,"95":0.1600389795,"96":0.1493127353,"97":0.1542258424,"98":0.1174704166,"99":0.171717866,"100":0.1401584465,"101":0.179277889,"102":0.1722842289,"103":0.1526435326,"104":0.0414048897,"105":0.1169196929,"106":0.0546643647,"107":0.1615406678,"108":0.1518788423,"109":0.0936580772,"110":0.1133683647,"111":0.213266665,"112":0.0505246365,"113":0.2149696875,"114":0.077961288,"115":0.0301735746,"116":0.065675413,"117":0.0809722882,"118":0.1336779229,"119":0.0405836185,"120":0.0829962607,"121":0.1821839072,"122":0.0331575552,"123":0.2126946947,"124":0.1111749973,"125":-0.0030462184,"126":0.0474272944,"127":0.0114564303,"130":0.048299836,"131":0.0709638882,"132":-0.0489307011,"133":0.0926461653,"134":0.0407444957,"135":-0.0568386884,"136":0.0733528266,"137":0.0004152414,"138":0.1149145031,"140":-0.0418762722,"143":0.1992984881,"144":0.0971182555,"145":0.1604784776,"146":0.1076638182,"149":0.1844043338,"150":0.1620687528,"151":0.0604952634,"152":0.1810227895,"153":0.143657156,"154":0.0532973098,"155":0.1615406678,"156":0.1008350853,"157":0.2108223201,"159":0.0689441202,"162":0.0372852158,"163":0.1900744063},"mettr_d":{"0":0.1599138923,"1":0.1137369531,"2":0.0360320561,"3":0.0183584212,"4":0.0800030201,"5":0.093733395,"6":0.0313234474,"7":0.0512125935,"8":0.0867126572,"9":0.1209905023,"10":0.0609909019,"11":0.1302994225,"12":0.1006367068,"13":0.1622524151,"14":0.0817481294,"15":0.1067166965,"16":0.1059323286,"17":0.1049261363,"18":0.0328147695,"19":-0.0238920433,"20":-0.0233244979,"21":-0.0093741987,"22":0.1236721314,"23":0.1015696932,"24":0.1153341586,"25":0.1511717844,"26":0.1228124546,"27":0.0676190967,"28":0.0641101904,"29":0.1134999566,"30":0.0325590902,"31":0.0782186132,"32":0.1041221246,"33":0.0939927597,"34":0.0820524691,"35":0.0801472356,"36":0.0500968352,"37":0.1062975883,"38":0.0703535041,"39":0.1138137074,"40":0.110991633,"41":0.0830407536,"42":-0.035100897,"43":0.041266797,"44":-0.0204520077,"45":0.1023451854,"46":0.0899920942,"47":0.026231421,"48":0.0475872551,"49":0.1550730753,"50":-0.0285256786,"51":0.1495778293,"52":0.0068431283,"53":-0.0478310233,"54":-0.007453136,"55":0.0130830203,"56":0.0710770819,"57":-0.03500653,"58":0.0129828797,"59":0.1255424867,"60":-0.0467829027,"61":0.1418271021,"62":0.2767378305,"63":0.233208625,"64":0.1758529201,"65":0.1538064238,"66":0.221226639,"67":0.2549502534,"68":0.1675882138,"69":0.1860167347,"70":0.2289639096,"71":0.2450475421,"72":0.205925338,"73":0.2640542328,"74":0.2316898169,"75":0.2799059929,"76":0.2119257899,"77":0.2327359109,"78":0.2324706204,"79":0.2335408124,"80":0.185607395,"81":0.1283264446,"82":0.1299667665,"83":0.1442619579,"84":0.2473175943,"85":0.2385775146,"86":0.2451963151,"87":0.2715600202,"88":0.2485471527,"89":0.2071367804,"90":0.2026845761,"91":0.2383968792,"92":0.1786295759,"93":0.2212944826,"94":0.2342569563,"95":0.2311529224,"96":0.220975738,"97":0.2260551926,"98":0.1898691261,"99":0.2426376784,"100":0.2123119829,"101":0.2506026326,"102":0.2426979528,"103":0.2245469845,"104":0.1161896385,"105":0.1869971279,"106":0.1286938459,"107":0.2272549978,"108":0.2201463089,"109":0.1656528466,"110":0.1841585973,"111":0.2741218475,"112":0.1245071033,"113":0.2827860104,"114":0.1505317104,"115":0.1051821033,"116":0.1389560407,"117":0.1535261037,"118":0.2030111014,"119":0.1152634738,"120":0.1551096265,"121":0.2480720811,"122":0.1081845122,"123":0.2825212865,"124":0.1418236275,"125":0.029131372,"126":0.0812168421,"127":0.0426287477,"130":0.0805552346,"131":0.1004080544,"132":-0.016107446,"133":0.1236721314,"134":0.0760809981,"135":-0.0237098437,"136":0.1023451854,"137":0.0335595434,"138":0.1414638156,"140":-0.0093601319,"143":0.2646207369,"144":0.1684630687,"145":0.2284995649,"146":0.1777804721,"149":0.2500955589,"150":0.2280304875,"151":0.1342073736,"152":0.2473175943,"153":0.2152256431,"154":0.1273588642,"155":0.2272549978,"156":0.1723821875,"157":0.2718733086,"159":0.1419287546,"162":0.0697061175,"163":0.253892579},"mettr_e":{"0":0.2826965636,"1":0.2435880834,"2":0.179151258,"3":0.1650491507,"4":0.2128356728,"5":0.2290200373,"6":0.1764543052,"7":0.1927223741,"8":0.2196863518,"9":0.2532040946,"10":0.1994526632,"11":0.2579415849,"12":0.2319508801,"13":0.2847383927,"14":0.2176911535,"15":0.2412000243,"16":0.2392680992,"17":0.2371783624,"18":0.1758675982,"19":0.1290240285,"20":0.1300948404,"21":0.1418931145,"22":0.2522460014,"23":0.2289770008,"24":0.240195768,"25":0.2675786625,"26":0.2471408401,"27":0.2019269449,"28":0.1991632618,"29":0.2423934529,"30":0.1734762954,"31":0.209480158,"32":0.2339338325,"33":0.2226900374,"34":0.2127804071,"35":0.210809593,"36":0.1879472504,"37":0.232223669,"38":0.203196975,"39":0.2369017908,"40":0.2366609987,"41":0.2133351989,"42":0.1200496127,"43":0.1826164587,"44":0.1318430742,"45":0.2371883321,"46":0.2236490504,"47":0.1701413108,"48":0.1879973776,"49":0.2828793664,"50":0.1259686298,"51":0.2706051386,"52":0.1550698944,"53":0.1102319623,"54":0.1431782836,"55":0.1599105007,"56":0.2082116864,"57":0.1204758327,"58":0.1603795782,"59":0.254175453,"60":0.1107823803,"61":0.2601222938,"62":0.1958011636,"63":0.1481644939,"64":0.0866562104,"65":0.0630689897,"66":0.1336152158,"67":0.1758450276,"68":0.0786522812,"69":0.0984675898,"70":0.1453624767,"71":0.1646324315,"72":0.1182041621,"73":0.1831683142,"74":0.1466529236,"75":0.2004363502,"76":0.1261674804,"77":0.1511781543,"78":0.1497545232,"79":0.1501344735,"80":0.0967174109,"81":0.0346038033,"82":0.036958241,"83":0.0530235186,"84":0.1640448933,"85":0.1497319638,"86":0.157041378,"87":0.1838266872,"88":0.1615523971,"89":0.1167591212,"90":0.1121892791,"91":0.1524359071,"92":0.0866015639,"93":0.1307500622,"94":0.1476419142,"95":0.1415449686,"96":0.1306724374,"97":0.1354934989,"98":0.0987092681,"99":0.1532231557,"100":0.1213739256,"101":0.160612373,"102":0.1539808535,"103":0.1338983137,"104":0.0220552522,"105":0.0987884772,"106":0.0355060202,"107":0.1449446117,"108":0.1344186114,"109":0.0751021478,"110":0.095171742,"111":0.1976436346,"112":0.0313825701,"113":0.1973117137,"114":0.0592844828,"115":0.0107492793,"116":0.046763419,"117":0.0622237068,"118":0.1159386191,"119":0.0212850055,"120":0.0644052493,"121":0.1654048955,"122":0.0137318114,"123":0.1943523809,"124":0.267371501,"125":0.1736412724,"126":0.214273939,"127":0.1856981576,"130":0.2157350039,"131":0.2350950423,"132":0.1359078364,"133":0.2522460014,"134":0.2086151749,"135":0.1293448764,"136":0.2371883321,"137":0.1762777348,"138":0.2712617098,"140":0.1417770358,"143":0.1825321109,"144":0.0787451767,"145":0.1427634044,"146":0.0896083661,"149":0.1674997825,"150":0.1453665808,"151":0.0414326451,"152":0.1640448933,"153":0.1250461737,"154":0.0341346068,"155":0.1449446117,"156":0.0824123324,"157":0.1951471641,"159":0.0501185969,"162":0.2065194696,"163":0.1736614008},"mettr_mix":{"0":0.2565962742,"1":0.2159719519,"2":0.1488488051,"3":0.1341329053,"4":0.1848245297,"5":0.2005327554,"6":0.1457623169,"7":0.1628779144,"8":0.1915965088,"9":0.2248703122,"10":0.1700134412,"11":0.2308204549,"12":0.2039160674,"13":0.258539988,"14":0.1887115594,"15":0.2124573029,"16":0.2107368506,"17":0.208945767,"18":0.1456271684,"19":0.0968617436,"20":0.0978094808,"21":0.1100036564,"22":0.2248492107,"23":0.2018894092,"24":0.2135289418,"25":0.2426897483,"26":0.2206748866,"27":0.1734388738,"28":0.1704847517,"29":0.2151439151,"30":0.1436922679,"31":0.1816101401,"32":0.2064329315,"33":0.1953227928,"34":0.1850122171,"35":0.1830733127,"36":0.1587377822,"37":0.2054447139,"38":0.1750242981,"39":0.2107132346,"40":0.2099004893,"41":0.1856786914,"42":0.0874269627,"43":0.1527809598,"44":0.0997977083,"45":0.2083669453,"46":0.1951500037,"47":0.1396957814,"48":0.1582094675,"49":0.2559026358,"50":0.0934951192,"51":0.2447935185,"52":0.1237436937,"53":0.0770678768,"54":0.1114235037,"55":0.1289505155,"56":0.1790234697,"57":0.0877707585,"58":0.1292720004,"59":0.2266820673,"60":0.0777004204,"61":0.2349223186,"62":0.2123355349,"63":0.165525601,"64":0.104904446,"65":0.0816877605,"66":0.1517426103,"67":0.1921074875,"68":0.0968194676,"69":0.116430839,"70":0.1625642481,"71":0.1807997706,"72":0.1361407772,"73":0.1997552354,"74":0.1639880653,"75":0.2166062682,"76":0.1435950735,"77":0.1676181181,"78":0.1664586814,"79":0.1670759789,"80":0.114968184,"81":0.0538888258,"82":0.0560660421,"83":0.0717301693,"84":0.1810227895,"85":0.1680799596,"86":0.175177968,"87":0.2019643462,"88":0.1794747759,"89":0.1353828462,"90":0.1308037114,"91":0.1701634706,"92":0.1055746286,"93":0.1494559823,"94":0.1654829078,"95":0.1600389795,"96":0.1493127353,"97":0.1542258424,"98":0.1174704166,"99":0.171717866,"100":0.1401584465,"101":0.179277889,"102":0.1722842289,"103":0.1526435326,"104":0.0414048897,"105":0.1169196929,"106":0.0546643647,"107":0.1615406678,"108":0.1518788423,"109":0.0936580772,"110":0.1133683647,"111":0.213266665,"112":0.0505246365,"113":0.2149696875,"114":0.077961288,"115":0.0301735746,"116":0.065675413,"117":0.0809722882,"118":0.1336779229,"119":0.0405836185,"120":0.0829962607,"121":0.1821839072,"122":0.0331575552,"123":0.2126946947,"124":0.2406783593,"125":0.1430993751,"126":0.1862188086,"127":0.1554889625,"130":0.1869642193,"131":0.2063260794,"132":0.1039003421,"133":0.2248492107,"134":0.1805097054,"135":0.0971445624,"136":0.2083669453,"137":0.1460564942,"138":0.2438730126,"140":0.1099269283,"143":0.1992984881,"144":0.0971182555,"145":0.1604784776,"146":0.1076638182,"149":0.1844043338,"150":0.1620687528,"151":0.0604952634,"152":0.1810227895,"153":0.143657156,"154":0.0532973098,"155":0.1615406678,"156":0.1008350853,"157":0.2108223201,"159":0.0689441202,"162":0.1775544487,"163":0.1900744063},"rho_d":{"0":0.0412387858,"1":0.0390901225,"2":0.0359390904,"3":0.0352920371,"4":0.0376567878,"5":0.0382273063,"6":0.0357643952,"7":0.0365141135,"8":0.0379334405,"9":0.0394126925,"10":0.0368943508,"11":0.0398345499,"12":0.0385207305,"13":0.0413539015,"14":0.0377283534,"15":0.0387829157,"16":0.0387488914,"17":0.038705332,"18":0.035819541,"19":0.0338357264,"20":0.033854492,"21":0.0343223862,"22":0.0395332983,"23":0.0385607329,"24":0.0391606971,"25":0.0408140663,"26":0.0394945542,"27":0.0371566287,"28":0.0370173184,"29":0.0390796722,"30":0.0358100745,"31":0.0375838909,"32":0.0386705956,"33":0.0382382497,"34":0.037740862,"35":0.0376626917,"36":0.036471224,"37":0.0387647282,"38":0.0372659191,"39":0.0390935082,"40":0.0389694095,"41":0.0377815385,"42":0.0334693276,"43":0.03613532,"44":0.0339497897,"45":0.0385940458,"46":0.038070143,"47":0.0355773762,"48":0.0363751233,"49":0.0410025176,"50":0.0336832923,"51":0.0407375681,"52":0.0348828388,"53":0.0330627079,"54":0.0343878339,"55":0.0351033894,"56":0.0372949471,"57":0.0334723792,"58":0.0350998279,"59":0.0396178551,"60":0.0330958129,"61":0.0403696401,"62":0.0413472163,"63":0.0390000179,"64":0.0362858501,"65":0.0353404684,"66":0.0383999747,"67":0.0401380948,"68":0.0359255814,"69":0.0367389339,"70":0.0387853146,"71":0.0396116034,"72":0.0376600322,"73":0.0406346211,"74":0.0389229221,"75":0.0415291296,"76":0.0379467783,"77":0.0389759899,"78":0.0389625181,"79":0.0390169207,"80":0.0367204677,"81":0.0343074276,"82":0.0343721093,"83":0.0349462989,"84":0.03973107,"85":0.0392750122,"86":0.0396194109,"87":0.0410533169,"88":0.0397960797,"89":0.0377175743,"90":0.0375069596,"91":0.039265697,"92":0.036408515,"93":0.0384033203,"94":0.0390534104,"95":0.0388957417,"96":0.0383876072,"97":0.0386395478,"98":0.0369136375,"99":0.0394855626,"100":0.0379653831,"101":0.0399052341,"102":0.0394887053,"103":0.0385643963,"104":0.0338363055,"105":0.036783237,"106":0.0343218939,"107":0.0386995416,"108":0.0383467793,"109":0.0358422477,"110":0.0366552583,"111":0.0411982056,"112":0.0341577613,"113":0.0416958924,"114":0.0352042304,"115":0.0334200707,"116":0.0347309531,"117":0.035328765,"118":0.0375223261,"119":0.0338008848,"120":0.0353949794,"121":0.0397709363,"122":0.0335325836,"123":0.0416805082,"124":0.0403694767,"125":0.0356836446,"126":0.0377065369,"127":0.0361867259,"130":0.0376794043,"131":0.0385109396,"132":0.0340949485,"133":0.0395332983,"134":0.0374969353,"135":0.0338417485,"136":0.0385940458,"137":0.0358471449,"138":0.0403525579,"140":0.0343228645,"143":0.0406659242,"144":0.0359633785,"145":0.0387619708,"146":0.036370916,"149":0.0398782508,"150":0.0387384176,"151":0.0345404621,"152":0.03973107,"153":0.0381063386,"154":0.0342693877,"155":0.0386995416,"156":0.0361336802,"157":0.0410709808,"159":0.0348512755,"162":0.0372399859,"163":0.0400811954},"rho_e":{"0":0.0726906386,"1":0.0689323419,"2":0.0635211363,"3":0.0624482805,"4":0.0662393392,"5":0.0676298313,"6":0.0633131169,"7":0.0645889879,"8":0.0668208802,"9":0.0698199394,"10":0.0651319946,"11":0.0702656877,"12":0.0678879039,"13":0.0728981457,"14":0.0666504605,"15":0.0687154013,"16":0.0685408943,"17":0.0683531277,"18":0.0632680437,"19":0.059865308,"20":0.0599389994,"21":0.0607631121,"22":0.0697304795,"23":0.0676260564,"24":0.0686245781,"25":0.0711902319,"26":0.0692576349,"27":0.0653339246,"28":0.0651084576,"29":0.068823646,"30":0.0630849963,"31":0.0659581734,"32":0.0680636309,"33":0.0670790899,"34":0.0662346889,"35":0.0660692836,"36":0.0642091845,"37":0.0679120243,"38":0.0654380609,"39":0.0683283543,"40":0.0683068005,"41":0.0662814006,"42":0.0592547553,"43":0.0637904267,"44":0.0600597004,"45":0.0683540211,"46":0.0671619515,"47":0.0628314742,"48":0.0642131483,"49":0.0727091683,"50":0.0596560337,"51":0.0714856213,"52":0.0617107196,"53":0.0586009416,"54":0.0608542522,"55":0.0620662976,"56":0.0658525062,"57":0.0592834703,"58":0.0621009726,"59":0.0699108725,"60":0.0586372151,"61":0.0704727881,"62":0.06483626,"63":0.061210462,"64":0.0570883006,"65":0.0556511037,"66":0.0601825491,"67":0.063266311,"68":0.0565923633,"69":0.05783624,"70":0.0610097771,"71":0.0624171285,"72":0.059130745,"73":0.0638335238,"74":0.0611020372,"75":0.0652121252,"76":0.0596696091,"77":0.0614277838,"78":0.0613249306,"79":0.0613523472,"80":0.0577241779,"81":0.0540102033,"82":0.0541422471,"83":0.0550607601,"84":0.0623732595,"85":0.0613233035,"86":0.0618550466,"87":0.0638850156,"88":0.0621878394,"89":0.0590340032,"90":0.0587301365,"91":0.0615189403,"92":0.0570848852,"93":0.0599841801,"94":0.0611729339,"95":0.0607384696,"96":0.059978824,"97":0.0603133057,"98":0.0578517486,"99":0.0615761345,"100":0.0593440672,"101":0.0621181956,"102":0.0616312823,"103":0.0602022207,"104":0.0533171684,"105":0.0578568333,"106":0.0540607261,"107":0.0609799617,"108":0.060238408,"109":0.0563751388,"110":0.0576255708,"111":0.0649851451,"112":0.053830587,"113":0.064958273,"114":0.0554272188,"115":0.0527078159,"116":0.0546991648,"117":0.0556009415,"118":0.0589792134,"119":0.0532752079,"120":0.0557305872,"121":0.062474899,"122":0.0528672074,"123":0.064719666,"124":0.0711701018,"125":0.0630975908,"126":0.0663605898,"127":0.0640318395,"130":0.0664842178,"131":0.0681669589,"132":0.0603422263,"133":0.0697304795,"134":0.0658860812,"135":0.0598873692,"136":0.0683540211,"137":0.0632995453,"138":0.0715500277,"140":0.0607548936,"143":0.0637838446,"144":0.0565980698,"145":0.0608248004,"146":0.0572734227,"149":0.0626321096,"150":0.0610100701,"151":0.0543949724,"152":0.0623732595,"153":0.0595931388,"154":0.0539839663,"155":0.0609799617,"156":0.0568242651,"157":0.064783576,"159":0.0548923736,"162":0.0657120658,"163":0.0630991278},"rho_mix":{"0":0.0626068539,"1":0.059362887,"2":0.0546814346,"3":0.0537520928,"4":0.0570946626,"5":0.0582164795,"6":0.0544838625,"7":0.0555978264,"8":0.0575729434,"9":0.0600443631,"10":0.0560758098,"11":0.0605088483,"12":0.0584638962,"13":0.0627709757,"14":0.0573682135,"15":0.0590979621,"16":0.0589691391,"17":0.0588356228,"18":0.054475244,"19":0.0515338245,"20":0.05158796,"21":0.0522947861,"22":0.0600427286,"23":0.0583154377,"24":0.0591784884,"25":0.0614572011,"26":0.0597211198,"27":0.0563081991,"28":0.0561076707,"29":0.0593002581,"30":0.0543521525,"31":0.0568704119,"32":0.0586493194,"33":0.0578395511,"34":0.0571078112,"35":0.0569722708,"36":0.055324211,"37":0.058576375,"38":0.0564164112,"39":0.0589673747,"40":0.0589067172,"41":0.0571545506,"42":0.0510010339,"43":0.0549352248,"44":0.0517018995,"45":0.0587926037,"46":0.0578271338,"47":0.0540996631,"48":0.0552894891,"49":0.0625484925,"50":0.0513424356,"51":0.0616284017,"52":0.0531147886,"53":0.050428593,"54":0.0523783474,"55":0.0534322897,"56":0.0566912289,"57":0.0510202549,"58":0.0534520177,"59":0.0601850371,"60":0.0504631786,"61":0.0608332586,"62":0.0580103588,"63":0.0547562613,"64":0.0510478441,"65":0.0497572572,"66":0.053866549,"67":0.056557893,"68":0.0505908804,"69":0.0517137767,"70":0.0545626314,"71":0.0557772039,"72":0.0528936858,"73":0.0570984033,"74":0.0546555574,"75":0.0583266069,"76":0.0533540815,"77":0.0548939126,"78":0.0548175564,"79":0.0548581829,"80":0.0516283115,"81":0.0482952739,"82":0.0484066686,"83":0.0492235089,"84":0.0557923929,"85":0.054924387,"86":0.055397039,"87":0.0572564622,"88":0.0556871342,"89":0.0528473187,"90":0.0525689063,"91":0.0550622884,"92":0.0510860936,"93":0.0537217326,"94":0.0547534601,"95":0.0543985937,"96":0.0537126864,"97":0.0540247037,"98":0.051774693,"99":0.055165621,"100":0.0531408352,"101":0.0556737752,"102":0.055203368,"103":0.0539238208,"104":0.0476663169,"105":0.0517424043,"106":0.0483348946,"107":0.0544960221,"108":0.0538752015,"109":0.0504144155,"110":0.0515351545,"111":0.0580790164,"112":0.0481241536,"113":0.0582050114,"114":0.0495561604,"115":0.0471143053,"116":0.048904523,"117":0.0497185207,"118":0.0527433151,"119":0.047625514,"120":0.0498282573,"121":0.0558716057,"122":0.0472597149,"123":0.0580368225,"124":0.0612944053,"125":0.054314546,"126":0.0571924848,"127":0.0551113797,"130":0.0572449203,"131":0.0586414234,"132":0.0519386075,"133":0.0600427286,"134":0.0567940447,"135":0.0515499675,"136":0.0587926037,"137":0.0545026317,"138":0.0615533756,"140":0.0522902781,"143":0.0570658324,"144":0.0506076223,"145":0.0544270719,"146":0.0512056994,"149":0.0560237139,"150":0.0545303668,"151":0.048634878,"152":0.0557923929,"153":0.0533579496,"154":0.0482650982,"155":0.0544960221,"156":0.0508168163,"157":0.0578991264,"159":0.0490762147,"162":0.0565899692,"163":0.056415921},"tax_treat":{"0":"corporate","1":"corporate","2":"corporate","3":"corporate","4":"corporate","5":"corporate","6":"corporate","7":"corporate","8":"corporate","9":"corporate","10":"corporate","11":"corporate","12":"corporate","13":"corporate","14":"corporate","15":"corporate","16":"corporate","17":"corporate","18":"corporate","19":"corporate","20":"corporate","21":"corporate","22":"corporate","23":"corporate","24":"corporate","25":"corporate","26":"corporate","27":"corporate","28":"corporate","29":"corporate","30":"corporate","31":"corporate","32":"corporate","33":"corporate","34":"corporate","35":"corporate","36":"corporate","37":"corporate","38":"corporate","39":"corporate","40":"corporate","41":"corporate","42":"corporate","43":"corporate","44":"corporate","45":"corporate","46":"corporate","47":"corporate","48":"corporate","49":"corporate","50":"corporate","51":"corporate","52":"corporate","53":"corporate","54":"corporate","55":"corporate","56":"corporate","57":"corporate","58":"corporate","59":"corporate","60":"corporate","61":"corporate","62":"non-corporate","63":"non-corporate","64":"non-corporate","65":"non-corporate","66":"non-corporate","67":"non-corporate","68":"non-corporate","69":"non-corporate","70":"non-corporate","71":"non-corporate","72":"non-corporate","73":"non-corporate","74":"non-corporate","75":"non-corporate","76":"non-corporate","77":"non-corporate","78":"non-corporate","79":"non-corporate","80":"non-corporate","81":"non-corporate","82":"non-corporate","83":"non-corporate","84":"non-corporate","85":"non-corporate","86":"non-corporate","87":"non-corporate","88":"non-corporate","89":"non-corporate","90":"non-corporate","91":"non-corporate","92":"non-corporate","93":"non-corporate","94":"non-corporate","95":"non-corporate","96":"non-corporate","97":"non-corporate","98":"non-corporate","99":"non-corporate","100":"non-corporate","101":"non-corporate","102":"non-corporate","103":"non-corporate","104":"non-corporate","105":"non-corporate","106":"non-corporate","107":"non-corporate","108":"non-corporate","109":"non-corporate","110":"non-corporate","111":"non-corporate","112":"non-corporate","113":"non-corporate","114":"non-corporate","115":"non-corporate","116":"non-corporate","117":"non-corporate","118":"non-corporate","119":"non-corporate","120":"non-corporate","121":"non-corporate","122":"non-corporate","123":"non-corporate","124":"corporate","125":"corporate","126":"corporate","127":"corporate","130":"corporate","131":"corporate","132":"corporate","133":"corporate","134":"corporate","135":"corporate","136":"corporate","137":"corporate","138":"corporate","140":"corporate","143":"non-corporate","144":"non-corporate","145":"non-corporate","146":"non-corporate","149":"non-corporate","150":"non-corporate","151":"non-corporate","152":"non-corporate","153":"non-corporate","154":"non-corporate","155":"non-corporate","156":"non-corporate","157":"non-corporate","159":"non-corporate","162":"corporate","163":"non-corporate"},"tax_wedge_d":{"0":0.0065946548,"1":0.0044459914,"2":0.0012949593,"3":0.0006479061,"4":0.0030126568,"5":0.0035831752,"6":0.0011202642,"7":0.0018699825,"8":0.0032893094,"9":0.0047685615,"10":0.0022502197,"11":0.0051904189,"12":0.0038765995,"13":0.0067097704,"14":0.0030842223,"15":0.0041387846,"16":0.0041047603,"17":0.0040612009,"18":0.00117541,"19":-0.0008084046,"20":-0.000789639,"21":-0.0003217449,"22":0.0048891673,"23":0.0039166018,"24":0.0045165661,"25":0.0061699352,"26":0.0048504231,"27":0.0025124977,"28":0.0023731873,"29":0.0044355411,"30":0.0011659434,"31":0.0029397598,"32":0.0040264646,"33":0.0035941186,"34":0.0030967309,"35":0.0030185606,"36":0.0018270929,"37":0.0041205971,"38":0.002621788,"39":0.0044493771,"40":0.0043252784,"41":0.0031374074,"42":-0.0011748034,"43":0.0014911889,"44":-0.0006943414,"45":0.0039499148,"46":0.0034260119,"47":0.0009332451,"48":0.0017309923,"49":0.0063583865,"50":-0.0009608388,"51":0.006093437,"52":0.0002387077,"53":-0.0015814232,"54":-0.0002562972,"55":0.0004592584,"56":0.002650816,"57":-0.0011717518,"58":0.0004556968,"59":0.0049737241,"60":-0.0015483182,"61":0.0057255091,"62":0.0114423389,"63":0.0090951406,"64":0.0063809727,"65":0.0054355911,"66":0.0084950973,"67":0.0102332174,"68":0.006020704,"69":0.0068340565,"70":0.0088804373,"71":0.0097067261,"72":0.0077551549,"73":0.0107297437,"74":0.0090180447,"75":0.0116242523,"76":0.008041901,"77":0.0090711125,"78":0.0090576408,"79":0.0091120434,"80":0.0068155904,"81":0.0044025502,"82":0.0044672319,"83":0.0050414215,"84":0.0098261927,"85":0.0093701348,"86":0.0097145336,"87":0.0111484396,"88":0.0098912023,"89":0.0078126969,"90":0.0076020822,"91":0.0093608196,"92":0.0065036376,"93":0.0084984429,"94":0.0091485331,"95":0.0089908644,"96":0.0084827298,"97":0.0087346704,"98":0.0070087601,"99":0.0095806852,"100":0.0080605058,"101":0.0100003567,"102":0.0095838279,"103":0.0086595189,"104":0.0039314281,"105":0.0068783597,"106":0.0044170165,"107":0.0087946642,"108":0.0084419019,"109":0.0059373704,"110":0.006750381,"111":0.0112933282,"112":0.0042528839,"113":0.0117910151,"114":0.005299353,"115":0.0035151933,"116":0.0048260757,"117":0.0054238876,"118":0.0076174488,"119":0.0038960074,"120":0.005490102,"121":0.0098660589,"122":0.0036277062,"123":0.0117756308,"124":0.0057253456,"125":0.0010395135,"126":0.0030624059,"127":0.0015425948,"130":0.0030352733,"131":0.0038668085,"132":-0.0005491825,"133":0.0048891673,"134":0.0028528043,"135":-0.0008023826,"136":0.0039499148,"137":0.0012030138,"138":0.0057084268,"140":-0.0003212665,"143":0.0107610468,"144":0.0060585011,"145":0.0088570935,"146":0.0064660386,"149":0.0099733734,"150":0.0088335403,"151":0.0046355847,"152":0.0098261927,"153":0.0082014612,"154":0.0043645103,"155":0.0087946642,"156":0.0062288028,"157":0.0111661034,"159":0.0049463981,"162":0.0025958548,"163":0.0101763181},"tax_wedge_e":{"0":0.0205493937,"1":0.016791097,"2":0.0113798915,"3":0.0103070357,"4":0.0140980943,"5":0.0154885865,"6":0.0111718721,"7":0.0124477431,"8":0.0146796354,"9":0.0176786945,"10":0.0129907498,"11":0.0181244428,"12":0.0157466591,"13":0.0207569008,"14":0.0145092156,"15":0.0165741565,"16":0.0163996495,"17":0.0162118829,"18":0.0111267989,"19":0.0077240632,"20":0.0077977546,"21":0.0086218672,"22":0.0175892346,"23":0.0154848116,"24":0.0164833332,"25":0.019048987,"26":0.0171163901,"27":0.0131926798,"28":0.0129672128,"29":0.0166824012,"30":0.0109437515,"31":0.0138169286,"32":0.015922386,"33":0.014937845,"34":0.0140934441,"35":0.0139280388,"36":0.0120679397,"37":0.0157707794,"38":0.013296816,"39":0.0161871095,"40":0.0161655556,"41":0.0141401558,"42":0.0071135104,"43":0.0116491818,"44":0.0079184555,"45":0.0162127763,"46":0.0150207067,"47":0.0106902294,"48":0.0120719035,"49":0.0205679235,"50":0.0075147888,"51":0.0193443765,"52":0.0095694748,"53":0.0064596968,"54":0.0087130074,"55":0.0099250527,"56":0.0137112614,"57":0.0071422254,"58":0.0099597278,"59":0.0177696277,"60":0.0064959703,"61":0.0183315433,"62":0.0126950151,"63":0.0090692171,"64":0.0049470558,"65":0.0035098589,"66":0.0080413043,"67":0.0111250662,"68":0.0044511185,"69":0.0056949952,"70":0.0088685323,"71":0.0102758836,"72":0.0069895002,"73":0.0116922789,"74":0.0089607924,"75":0.0130708804,"76":0.0075283642,"77":0.009286539,"78":0.0091836857,"79":0.0092111023,"80":0.005582933,"81":0.0018689585,"82":0.0020010022,"83":0.0029195152,"84":0.0102320147,"85":0.0091820587,"86":0.0097138018,"87":0.0117437708,"88":0.0100465945,"89":0.0068927583,"90":0.0065888917,"91":0.0093776955,"92":0.0049436403,"93":0.0078429353,"94":0.0090316891,"95":0.0085972248,"96":0.0078375791,"97":0.0081720608,"98":0.0057105038,"99":0.0094348896,"100":0.0072028224,"101":0.0099769508,"102":0.0094900374,"103":0.0080609758,"104":0.0011759236,"105":0.0057155885,"106":0.0019194812,"107":0.0088387169,"108":0.0080971632,"109":0.004233894,"110":0.005484326,"111":0.0128439003,"112":0.0016893422,"113":0.0128170282,"114":0.003285974,"115":0.000566571,"116":0.00255792,"117":0.0034596967,"118":0.0068379686,"119":0.0011339631,"120":0.0035893424,"121":0.0103336541,"122":0.0007259625,"123":0.0125784212,"124":0.0190288569,"125":0.0109563459,"126":0.014219345,"127":0.0118905946,"130":0.014342973,"131":0.0160257141,"132":0.0082009814,"133":0.0175892346,"134":0.0137448363,"135":0.0077461244,"136":0.0162127763,"137":0.0111583005,"138":0.0194087828,"140":0.0086136487,"143":0.0116425998,"144":0.004456825,"145":0.0086835556,"146":0.0051321778,"149":0.0104908647,"150":0.0088688253,"151":0.0022537276,"152":0.0102320147,"153":0.007451894,"154":0.0018427215,"155":0.0088387169,"156":0.0046830202,"157":0.0126423311,"159":0.0027511287,"162":0.013570821,"163":0.0109578829},"tax_wedge_mix":{"0":0.0160646854,"1":0.0128207186,"2":0.0081392662,"3":0.0072099244,"4":0.0105524942,"5":0.011674311,"6":0.007941694,"7":0.009055658,"8":0.011030775,"9":0.0135021947,"10":0.0095336414,"11":0.0139666799,"12":0.0119217278,"13":0.0162288073,"14":0.010826045,"15":0.0125557936,"16":0.0124269707,"17":0.0122934543,"18":0.0079330755,"19":0.0049916561,"20":0.0050457916,"21":0.0057526177,"22":0.0135005601,"23":0.0117732693,"24":0.01263632,"25":0.0149150327,"26":0.0131789513,"27":0.0097660306,"28":0.0095655023,"29":0.0127580897,"30":0.0078099841,"31":0.0103282435,"32":0.0121071509,"33":0.0112973827,"34":0.0105656428,"35":0.0104301023,"36":0.0087820426,"37":0.0120342066,"38":0.0098742428,"39":0.0124252063,"40":0.0123645488,"41":0.0106123822,"42":0.0044588655,"43":0.0083930564,"44":0.0051597311,"45":0.0122504352,"46":0.0112849654,"47":0.0075574947,"48":0.0087473206,"49":0.0160063241,"50":0.0048002671,"51":0.0150862333,"52":0.0065726201,"53":0.0038864246,"54":0.005836179,"55":0.0068901213,"56":0.0101490605,"57":0.0044780865,"58":0.0069098492,"59":0.0136428686,"60":0.0039210102,"61":0.0142910902,"62":0.0123176606,"63":0.0090635631,"64":0.0053551458,"65":0.0040645589,"66":0.0081738508,"67":0.0108651947,"68":0.0048981821,"69":0.0060210784,"70":0.0088699332,"71":0.0100845057,"72":0.0072009875,"73":0.011405705,"74":0.0089628591,"75":0.0126339087,"76":0.0076613833,"77":0.0092012143,"78":0.0091248582,"79":0.0091654846,"80":0.0059356132,"81":0.0026025756,"82":0.0027139703,"83":0.0035308106,"84":0.0100996946,"85":0.0092316888,"86":0.0097043407,"87":0.011563764,"88":0.0099944359,"89":0.0071546204,"90":0.0068762081,"91":0.0093695901,"92":0.0053933954,"93":0.0080290343,"94":0.0090607618,"95":0.0087058954,"96":0.0080199881,"97":0.0083320054,"98":0.0060819948,"99":0.0094729227,"100":0.0074481369,"101":0.0099810769,"102":0.0095106697,"103":0.0082311225,"104":0.0019736186,"105":0.006049706,"106":0.0026421963,"107":0.0088033238,"108":0.0081825032,"109":0.0047217172,"110":0.0058424562,"111":0.0123863181,"112":0.0024314554,"113":0.0125123131,"114":0.0038634621,"115":0.001421607,"116":0.0032118247,"117":0.0040258224,"118":0.0070506168,"119":0.0019328157,"120":0.004135559,"121":0.0101789074,"122":0.0015670166,"123":0.0123441242,"124":0.0147522369,"125":0.0077723776,"126":0.0106503164,"127":0.0085692112,"130":0.0107027518,"131":0.012099255,"132":0.0053964391,"133":0.0135005601,"134":0.0102518763,"135":0.005007799,"136":0.0122504352,"137":0.0079604633,"138":0.0150112071,"140":0.0057481097,"143":0.0113731341,"144":0.004914924,"145":0.0087343736,"146":0.0055130011,"149":0.0103310156,"150":0.0088376685,"151":0.0029421798,"152":0.0100996946,"153":0.0076652513,"154":0.0025723999,"155":0.0088033238,"156":0.005124118,"157":0.0122064282,"159":0.0033835164,"162":0.0100478008,"163":0.0107232227},"ucc_d":{"0":0.0628682846,"1":0.0909800167,"2":0.1851454938,"3":0.0835195403,"4":0.0752745677,"5":0.0846094175,"6":0.1107207864,"7":0.0769321873,"8":0.1056577352,"9":0.0833454994,"10":0.1511204864,"11":0.0989675439,"12":0.1532664313,"13":0.0624501679,"14":0.1140423225,"15":0.0891602014,"16":0.0878191682,"17":0.0904671667,"18":0.1762303022,"19":0.1361657926,"20":0.1041997199,"21":0.2444778438,"22":0.1149563847,"23":0.0991888706,"24":0.0953754847,"25":0.0800123387,"26":0.0894069894,"27":0.111528853,"28":0.1244009069,"29":0.0815575967,"30":0.11721729,"31":0.1126853201,"32":0.0939517437,"33":0.0992135981,"34":0.1108128295,"35":0.1181831345,"36":0.1863913567,"37":0.1073929267,"38":0.146920307,"39":0.1164264585,"40":0.1038560622,"41":0.1215527624,"42":0.1068365346,"43":0.0914493152,"44":0.1298236481,"45":0.0815778483,"46":0.1387365093,"47":0.1826580695,"48":0.2365844189,"49":0.0462195448,"50":0.1698177009,"51":0.0771667238,"52":0.1087360867,"53":0.0635009313,"54":0.1040883329,"55":0.1641094413,"56":0.1175688811,"57":0.087300118,"58":0.0987656287,"59":0.0831751601,"60":0.0749573096,"61":0.0945918874,"62":0.0683474467,"63":0.0974607569,"64":0.1835745329,"65":0.0855135952,"66":0.0717811214,"67":0.0615173563,"68":0.1124752376,"69":0.0775579449,"70":0.0918079613,"71":0.0836395956,"72":0.1420059109,"73":0.0814562625,"74":0.146594763,"75":0.0606336177,"76":0.1146016484,"77":0.0897770552,"78":0.088032795,"79":0.0886293978,"80":0.1628220582,"81":0.1349445193,"82":0.1030824404,"83":0.2355503372,"84":0.1165705082,"85":0.0940664729,"86":0.0926908771,"87":0.0794096905,"88":0.0886483699,"89":0.1088610305,"90":0.1220829746,"91":0.0841205874,"92":0.114557295,"93":0.1065772097,"94":0.0933678051,"95":0.0955027498,"96":0.1067318122,"97":0.109492646,"98":0.1838058074,"99":0.101865463,"100":0.140271611,"101":0.1077342849,"102":0.1009791661,"103":0.1154672441,"104":0.1067518997,"105":0.0877173219,"106":0.129135609,"107":0.0832027356,"108":0.1374631434,"109":0.1825481463,"110":0.2353936321,"111":0.0463551473,"112":0.1677209825,"113":0.0698326197,"114":0.1088048562,"115":0.0637645367,"116":0.1040894614,"117":0.1657462307,"118":0.1181744155,"119":0.0875844932,"120":0.0991097431,"121":0.0843501131,"122":0.0748658031,"123":0.0780341799,"124":0.0742417674,"125":0.1450252672,"126":0.0760885648,"127":0.0916870223,"130":0.1435245414,"131":0.0954233199,"132":0.1254718092,"133":0.1149563847,"134":0.120118061,"135":0.1067288308,"136":0.0815778483,"137":0.1872549117,"138":0.0571952718,"140":0.0945241072,"143":0.0767978055,"144":0.150125748,"145":0.0696434997,"146":0.093356985,"149":0.0987397949,"150":0.0953691412,"151":0.1206928311,"152":0.1165705082,"153":0.1147775782,"154":0.1059665588,"155":0.0832027356,"156":0.1849223339,"157":0.0485482963,"159":0.0977923432,"162":0.0988567214,"163":0.0664715278},"ucc_e":{"0":0.0943201374,"1":0.1208222361,"2":0.2127275397,"3":0.1106757837,"4":0.103857119,"5":0.1140119425,"6":0.138269508,"7":0.1050070617,"8":0.134545175,"9":0.1137527462,"10":0.1793581302,"11":0.1293986816,"12":0.1826336047,"13":0.0939944121,"14":0.1429644296,"15":0.119092687,"16":0.1176111712,"17":0.1201149624,"18":0.2036788049,"19":0.1621953743,"20":0.1302842273,"21":0.2709185697,"22":0.1451535659,"23":0.1282541942,"24":0.1248393657,"25":0.1103885043,"26":0.1191700701,"27":0.1397061489,"28":0.1524920461,"29":0.1113015705,"30":0.1444922117,"31":0.1410596026,"32":0.1233447789,"33":0.1280544383,"34":0.1393066565,"35":0.1465897264,"36":0.2141293172,"37":0.1365402228,"38":0.1750924488,"39":0.1456613047,"40":0.1331934532,"41":0.1500526246,"42":0.1326219622,"43":0.1191044219,"44":0.1559335587,"45":0.1113378236,"46":0.1678283178,"47":0.2099121676,"48":0.2644224439,"49":0.0779261955,"50":0.1957904423,"51":0.107914777,"52":0.1355639675,"53":0.089039165,"54":0.1305547513,"55":0.1910723494,"56":0.1461264402,"57":0.1131112091,"58":0.1257667734,"59":0.1134681776,"60":0.1004987118,"61":0.1246950354,"62":0.0918364904,"63":0.1196712009,"64":0.2043769835,"65":0.1058242305,"66":0.0935636958,"67":0.0846455725,"68":0.1331420195,"69":0.098655251,"70":0.1140324238,"71":0.1064451207,"72":0.1634766237,"73":0.1046551652,"74":0.1687738782,"75":0.0843166132,"76":0.1363244792,"77":0.1122288492,"78":0.1103952074,"79":0.1109648243,"80":0.1838257684,"81":0.154647295,"82":0.1228525782,"83":0.2556647984,"84":0.1392126977,"85":0.1161147642,"86":0.1149265127,"87":0.1022413892,"88":0.1110401296,"89":0.1301774594,"90":0.1433061516,"91":0.1063738307,"92":0.1352336652,"93":0.1281580696,"94":0.1154873286,"95":0.1173454777,"96":0.128323029,"97":0.1311664039,"98":0.2047439185,"99":0.1239560349,"100":0.1616502951,"101":0.1299472465,"102":0.1231217431,"103":0.1371050685,"104":0.1262327626,"105":0.1087909182,"106":0.1488744411,"107":0.1054831557,"108":0.1593547721,"109":0.2030810374,"110":0.2563639445,"111":0.0701420868,"112":0.1873938082,"113":0.0930950003,"114":0.1290278446,"115":0.0830522819,"116":0.1240576731,"117":0.1860184072,"118":0.1396313027,"119":0.1070588164,"120":0.1194453509,"121":0.1070540757,"122":0.0942004269,"123":0.1010733377,"124":0.1050423925,"125":0.1724392134,"126":0.1047426177,"127":0.1195321358,"130":0.1723293549,"131":0.1250793393,"132":0.151719087,"133":0.1451535659,"134":0.1485072069,"135":0.1327744515,"136":0.1113378236,"137":0.2147073121,"138":0.0883927416,"140":0.1209561363,"143":0.099915726,"144":0.1707604394,"145":0.0917063293,"146":0.1142594917,"149":0.1214936536,"150":0.1176407937,"151":0.1405473414,"152":0.1392126977,"153":0.1362643784,"154":0.1256811375,"155":0.1054831557,"156":0.2056129188,"157":0.0722608914,"159":0.1178334412,"162":0.1273288013,"163":0.0894894601},"ucc_mix":{"0":0.0842363527,"1":0.1112527812,"2":0.203887838,"3":0.101979596,"4":0.0947124424,"5":0.1045985907,"6":0.1294402536,"7":0.0960159002,"8":0.1252972381,"9":0.10397717,"10":0.1703019454,"11":0.1196418423,"12":0.173209597,"13":0.0838672422,"14":0.1336821826,"15":0.1094752478,"16":0.1080394159,"17":0.1105974574,"18":0.1948860051,"19":0.1538638908,"20":0.1219331879,"21":0.2624502438,"22":0.135465815,"23":0.1189435755,"24":0.115393276,"25":0.1006554736,"26":0.109633555,"27":0.1306804233,"28":0.1434912592,"29":0.1017781826,"30":0.1357593679,"31":0.1319718411,"32":0.1139304674,"33":0.1188148995,"34":0.1301797788,"35":0.1374927136,"36":0.2052443437,"37":0.1272045735,"38":0.1660707991,"39":0.1363003251,"40":0.1237933699,"41":0.1409257745,"42":0.1243682408,"43":0.1102492201,"44":0.1475757579,"45":0.1017764062,"46":0.1584935001,"47":0.2011803565,"48":0.2554987846,"49":0.0677655198,"50":0.1874768442,"51":0.0980575575,"52":0.1269680364,"53":0.0808668164,"54":0.1220788465,"55":0.1824383416,"56":0.1369651629,"57":0.1048479937,"58":0.1171178184,"59":0.1037423421,"60":0.0923246753,"61":0.1150555058,"62":0.0850105893,"63":0.1132170003,"64":0.198336527,"65":0.099930384,"66":0.0872476957,"67":0.0779371545,"68":0.1271405366,"69":0.0925327877,"70":0.1075852781,"71":0.0998051962,"72":0.1572395644,"73":0.0979200446,"74":0.1623273984,"75":0.077431095,"76":0.1300089516,"77":0.1056949779,"78":0.1038878333,"79":0.10447066,"80":0.177729902,"81":0.1489323656,"82":0.1171169997,"83":0.2498275473,"84":0.132631831,"85":0.1097158478,"86":0.1084685051,"87":0.0956128358,"88":0.1045394245,"89":0.123990775,"90":0.1371449214,"91":0.0999171787,"92":0.1292348737,"93":0.121895622,"94":0.1090678548,"95":0.1110056018,"96":0.1220568914,"97":0.124877802,"98":0.198666863,"99":0.1175455214,"100":0.155447063,"101":0.123502826,"102":0.1166938288,"103":0.1308266686,"104":0.1205819111,"105":0.1026764892,"106":0.1431486096,"107":0.0989992161,"108":0.1529915656,"109":0.197120314,"110":0.2502735282,"111":0.0632359581,"112":0.1816873748,"113":0.0863417387,"114":0.1231567862,"115":0.0774587713,"116":0.1182630313,"117":0.1801359864,"118":0.1333954044,"119":0.1014091224,"120":0.113543021,"121":0.1004507825,"122":0.0885929345,"123":0.0943904942,"124":0.0951666961,"125":0.1636561686,"126":0.0955745127,"127":0.1106116761,"130":0.1630900573,"131":0.1155538038,"132":0.1433154682,"133":0.135465815,"134":0.1394151704,"135":0.1244370497,"136":0.1017764062,"137":0.2059103986,"138":0.0783960895,"140":0.1124915208,"143":0.0931977137,"144":0.1647699918,"145":0.0853086008,"146":0.1081917684,"149":0.114885258,"150":0.1111610903,"151":0.134787247,"152":0.132631831,"153":0.1300291892,"154":0.1199622693,"155":0.0989992161,"156":0.19960547,"157":0.0653764419,"159":0.1120172824,"162":0.1182067047,"163":0.0828062533},"z_d":{"0":0.2532274929,"1":0.4856009889,"2":0.7597648966,"3":0.771510709,"4":0.5032152972,"5":0.4232388199,"6":0.7542758943,"7":0.645229316,"8":0.5002068956,"9":0.5103108568,"10":0.717235413,"11":0.3844606379,"12":0.6045662157,"13":0.3214153639,"14":0.6505232277,"15":0.5427231807,"16":0.5760500263,"17":0.5620943041,"18":0.7575528205,"19":0.9064313709,"20":0.9129157403,"21":0.8814373194,"22":0.4640052889,"23":0.5455302356,"24":0.5603624903,"25":0.3763621003,"26":0.466952784,"27":0.6676777985,"28":0.7041058731,"29":0.3960859581,"30":0.7575489942,"31":0.6310956746,"32":0.480363167,"33":0.5855351075,"34":0.6201352767,"35":0.6133937831,"36":0.7257396339,"37":0.5171577213,"38":0.6463783064,"39":0.4883953419,"40":0.5268468915,"41":0.601599314,"42":0.9486881529,"43":0.7050015285,"44":0.9011142716,"45":0.5440699152,"46":0.6296375192,"47":0.7937820329,"48":0.7415685916,"49":0.1154518334,"50":0.9154269473,"51":0.3369327853,"52":0.8502050444,"53":0.9625710712,"54":0.8753656691,"55":0.8057180601,"56":0.6842069026,"57":0.9497031771,"58":0.8080534436,"59":0.4854503647,"60":0.9676723784,"61":0.3485967387,"62":0.315036814,"63":0.5461471563,"64":0.7494729665,"65":0.8023656262,"66":0.4465416016,"67":0.1949977973,"68":0.7698033736,"69":0.651317522,"70":0.3914578531,"71":0.509893851,"72":0.6544548825,"73":0.2648687379,"74":0.5662729253,"75":0.2898794586,"76":0.6524040959,"77":0.5459691763,"78":0.574702652,"79":0.5376733532,"80":0.6799853044,"81":0.8913413827,"82":0.8915353832,"83":0.8411062059,"84":0.4716945235,"85":0.4925183402,"86":0.5281777209,"87":0.3675877666,"88":0.4563825657,"89":0.6382248336,"90":0.6809035908,"91":0.4179271584,"92":0.7269624582,"93":0.5724632088,"94":0.4715134658,"95":0.5430519203,"96":0.5795490769,"97":0.5393913892,"98":0.7106363135,"99":0.4696333617,"100":0.6026993934,"101":0.4280152497,"102":0.4986519615,"103":0.5518950796,"104":0.9427327361,"105":0.6489124841,"106":0.8910254053,"107":0.5621327794,"108":0.6189405239,"109":0.7913118694,"110":0.7354919171,"111":0.1118758135,"112":0.8980425415,"113":0.2596221267,"114":0.8468741083,"115":0.9596013462,"116":0.8708029205,"117":0.8142537771,"118":0.6865298131,"119":0.9487765191,"120":0.8083376267,"121":0.4955885698,"122":0.9554264188,"123":0.2334550319,"124":0.3472414779,"125":0.7644019469,"126":0.4962413634,"127":0.692847871,"130":0.6469114891,"131":0.5728540352,"132":0.8930887076,"133":0.4640052889,"134":0.6209489011,"135":0.9143569465,"136":0.5440699152,"137":0.7760617987,"138":0.1864909875,"140":0.8772404827,"143":0.3821183416,"144":0.7675147601,"145":0.394152884,"146":0.7049288582,"149":0.3846045889,"150":0.572072249,"151":0.8752682548,"152":0.4716945235,"153":0.5885303647,"154":0.8992932361,"155":0.5621327794,"156":0.7712695737,"157":0.1260822887,"159":0.8598131303,"162":0.6095413425,"163":0.2813433989},"z_e":{"0":0.2027746368,"1":0.4361240946,"2":0.7283096878,"3":0.7562229233,"4":0.5032152972,"5":0.4118697451,"6":0.7251116737,"7":0.6270026572,"8":0.4878831056,"9":0.4207352499,"10":0.6693939052,"11":0.3384990042,"12":0.5403152195,"13":0.243973079,"14":0.5903739598,"15":0.4655960627,"16":0.4966324358,"17":0.4956297471,"18":0.7335464084,"19":0.9008080989,"20":0.9030636938,"21":0.8647410386,"22":0.4047596123,"23":0.5133354151,"24":0.507209551,"25":0.3347499337,"26":0.4276841077,"27":0.6389251318,"28":0.6687946757,"29":0.3780655843,"30":0.7413036209,"31":0.6039126677,"32":0.453419655,"33":0.5515805043,"34":0.5909334051,"35":0.589422404,"36":0.6989446523,"37":0.4886650074,"38":0.6233952511,"39":0.4643163662,"40":0.4883128026,"41":0.5772468654,"42":0.9418229701,"43":0.6880307219,"44":0.8936867224,"45":0.4762238415,"46":0.5696438301,"47":0.7673432264,"48":0.7042547948,"49":0.0921097155,"50":0.909742455,"51":0.2900705541,"52":0.8252023572,"53":0.9622557774,"54":0.8595095599,"55":0.7894292377,"56":0.6313943326,"57":0.9409699122,"58":0.7881905977,"59":0.4134264082,"60":0.9656333114,"61":0.3253879588,"62":0.2650804313,"63":0.5019323059,"64":0.7248432903,"65":0.7897501054,"66":0.4465416016,"67":0.1908410701,"68":0.746178518,"69":0.6367166719,"70":0.3838046211,"71":0.4386890195,"72":0.6197892953,"73":0.239701227,"74":0.5184506985,"75":0.2342516216,"76":0.6044804039,"77":0.4842770746,"78":0.5117089378,"79":0.4871453934,"80":0.6628839053,"81":0.8869547833,"82":0.883902344,"83":0.8284645795,"84":0.4238182433,"85":0.4694397714,"86":0.4883741523,"87":0.335289802,"88":0.4258961305,"89":0.6164082605,"90":0.6537945592,"91":0.4028334999,"92":0.7145923568,"93":0.552890471,"94":0.4505155443,"95":0.5180485367,"96":0.5578847203,"97":0.52266008,"98":0.689811728,"99":0.4490905394,"100":0.5856908144,"101":0.4112629906,"102":0.4696864178,"103":0.5341623983,"104":0.9373207748,"105":0.6365170947,"106":0.8851989997,"107":0.5066398424,"108":0.5720860839,"109":0.7703939749,"110":0.7061119605,"111":0.0940709637,"112":0.8936187477,"113":0.2309122286,"114":0.8271097966,"115":0.9593520249,"116":0.8582875215,"117":0.801192081,"118":0.6444413962,"119":0.9418549486,"120":0.7925702459,"121":0.4371186859,"122":0.9538294359,"123":0.2211124138,"124":0.2971834778,"125":0.7393293663,"126":0.4952499822,"127":0.6698449882,"130":0.5948680359,"131":0.5003481907,"132":0.8818836776,"133":0.4047596123,"134":0.5960643609,"135":0.906179856,"136":0.4762238415,"137":0.7459728761,"138":0.1647168969,"140":0.8623116343,"143":0.3338284821,"144":0.7469831367,"145":0.3932871676,"146":0.6862449131,"149":0.3522421001,"150":0.5140155086,"151":0.8673844665,"152":0.4238182433,"153":0.5697732631,"154":0.8929130342,"155":0.5066398424,"156":0.747328833,"157":0.1085192422,"159":0.8462941384,"162":0.5832345238,"163":0.2602725311},"z_mix":{"0":0.2162881982,"1":0.4493762492,"2":0.7367348183,"3":0.7603176852,"4":0.5032152972,"5":0.4149148986,"6":0.7329231737,"7":0.6318845825,"8":0.4911839917,"9":0.4447287882,"10":0.6822080292,"11":0.3508096127,"12":0.5575245482,"13":0.2647156326,"14":0.6064846597,"15":0.4862542111,"16":0.5179048076,"17":0.5134359587,"18":0.7399764135,"19":0.902314266,"20":0.9057025262,"21":0.8692130592,"22":0.4206282895,"23":0.5219586471,"24":0.521446317,"25":0.3458955578,"26":0.4382020389,"27":0.646626399,"28":0.6782526147,"29":0.3828922571,"30":0.7456548681,"31":0.6111935089,"32":0.4606363486,"33":0.5606750859,"34":0.5987549898,"35":0.5958430257,"36":0.7061215627,"37":0.4962966474,"38":0.6295511549,"39":0.4707658072,"40":0.498633978,"41":0.5837695548,"42":0.9436617772,"43":0.6925762731,"44":0.8956761567,"45":0.4946961609,"46":0.585712859,"47":0.774424737,"48":0.7142491206,"49":0.0985326619,"50":0.9112650197,"51":0.3026223834,"52":0.83189921,"53":0.9623402274,"54":0.8637565445,"55":0.7937921226,"56":0.6455399324,"57":0.9433090764,"58":0.793510768,"59":0.4327176879,"60":0.966179466,"61":0.3316043219,"62":0.2776706477,"63":0.5130755173,"64":0.7310505642,"65":0.7929295217,"66":0.4465416016,"67":0.1918886659,"68":0.7521325529,"69":0.6403964392,"70":0.385733428,"71":0.4566350002,"72":0.6285258615,"73":0.2460440483,"74":0.530503056,"75":0.2482711816,"76":0.6165583331,"77":0.4998249821,"78":0.5275852967,"79":0.4998818256,"80":0.6671938714,"81":0.8880603124,"82":0.8858260588,"83":0.831650575,"84":0.4358842236,"85":0.4752561288,"86":0.498405614,"87":0.34342967,"88":0.4335794494,"89":0.6219065644,"90":0.6606266907,"91":0.4066374668,"92":0.7177099215,"93":0.5578232742,"94":0.4558075282,"95":0.524349994,"96":0.563344662,"97":0.5268767745,"98":0.6950600271,"99":0.4542678273,"100":0.5899773875,"101":0.415484965,"102":0.4769864352,"103":0.5386314628,"104":0.9386847199,"105":0.6396410325,"106":0.8866673948,"107":0.5208011963,"108":0.5838945357,"109":0.7756657901,"110":0.71351642,"111":0.0986517022,"112":0.8947336507,"113":0.2381478172,"114":0.8320908811,"115":0.9594148599,"116":0.8614417047,"117":0.8044839442,"118":0.655048695,"119":0.9435993517,"120":0.7965440071,"121":0.4518545104,"122":0.9542319142,"123":0.224223052,"124":0.3105912789,"125":0.7460449397,"126":0.495515519,"127":0.6760062027,"130":0.6088076313,"131":0.5197687704,"132":0.8848848978,"133":0.4206282895,"134":0.6027295685,"135":0.9083700514,"136":0.4946961609,"137":0.7540320532,"138":0.170704681,"140":0.8663102565,"143":0.3459986944,"144":0.7521576022,"145":0.3935053491,"146":0.690953719,"149":0.3603982298,"150":0.5286473434,"151":0.8693713747,"152":0.4358842236,"153":0.5745005063,"154":0.8945209994,"155":0.5208011963,"156":0.7533624785,"157":0.1130373511,"159":0.8497012512,"162":0.5903054905,"163":0.2656433396}} \ No newline at end of file +{"index":{"0":0,"1":1,"2":2,"3":3,"4":4,"5":5,"6":6,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"26":26,"27":27,"28":28,"29":29,"30":30,"31":31,"32":32,"33":33,"34":34,"35":35,"36":36,"37":37,"38":38,"39":39,"40":40,"41":41,"42":42,"43":43,"44":44,"45":45,"46":46,"47":47,"48":48,"49":49,"50":50,"51":51,"52":52,"53":53,"54":54,"55":55,"56":56,"57":57,"58":58,"59":59,"60":60,"61":61,"62":62,"63":63,"64":64,"65":65,"66":66,"67":67,"68":68,"69":69,"70":70,"71":71,"72":72,"73":73,"74":74,"75":75,"76":76,"77":77,"78":78,"79":79,"80":80,"81":81,"82":82,"83":83,"84":84,"85":85,"86":86,"87":87,"88":88,"89":89,"90":90,"91":91,"92":92,"93":93,"94":94,"95":95,"96":96,"97":97,"98":98,"99":99,"100":100,"101":101,"102":102,"103":103,"104":104,"105":105,"106":106,"107":107,"108":108,"109":109,"110":110,"111":111,"112":112,"113":113,"114":114,"115":115,"116":116,"117":117,"118":118,"119":119,"120":120,"121":121,"122":122,"123":123,"124":124,"125":125,"126":126,"127":127,"130":130,"131":131,"132":132,"133":133,"134":134,"135":135,"136":136,"137":137,"138":138,"140":140,"143":143,"144":144,"145":145,"146":146,"149":149,"150":150,"151":151,"152":152,"153":153,"154":154,"155":155,"156":156,"157":157,"159":159,"162":162,"163":163},"Industry":{"0":"Accommodation","1":"Food\u00a0services\u00a0and\u00a0drinking\u00a0places","2":"Administrative\u00a0and\u00a0support\u00a0services","3":"Waste\u00a0management\u00a0and\u00a0remediation\u00a0services","4":"Farms","5":"Forestry,\u00a0fishing,\u00a0and\u00a0related\u00a0activities","6":"Performing\u00a0arts,\u00a0spectator\u00a0sports,\u00a0museums,\u00a0and\u00a0related activities","7":"Amusements,\u00a0gambling,\u00a0and\u00a0recreation\u00a0industries","8":"Construction","9":"Educational services","10":"Credit\u00a0intermediation\u00a0and\u00a0related\u00a0activities","11":"Securities,\u00a0commodity\u00a0contracts,\u00a0and\u00a0investments","12":"Insurance\u00a0carriers\u00a0and\u00a0related\u00a0activities","13":"Funds,\u00a0trusts,\u00a0and\u00a0other\u00a0financial\u00a0vehicles","14":"Ambulatory\u00a0health\u00a0care\u00a0services","15":"Hospitals","16":"Nursing\u00a0and\u00a0residential\u00a0care\u00a0facilities","17":"Social assistance","18":"Publishing\u00a0industries\u00a0(including\u00a0software)","19":"Motion\u00a0picture\u00a0and\u00a0sound\u00a0recording\u00a0industries","20":"Broadcasting\u00a0and\u00a0telecommunications","21":"Information\u00a0and\u00a0data\u00a0processing\u00a0services","22":"Management\u00a0of\u00a0companies\u00a0and\u00a0enterprises","23":"Food,\u00a0beverage,\u00a0and\u00a0tobacco\u00a0products","24":"Textile\u00a0mills\u00a0and\u00a0textile\u00a0product\u00a0mills","25":"Apparel\u00a0and\u00a0leather\u00a0and\u00a0allied\u00a0products","26":"Wood\u00a0products","27":"Paper\u00a0products","28":"Printing\u00a0and\u00a0related\u00a0support\u00a0activities","29":"Petroleum\u00a0and\u00a0coal\u00a0products","30":"Chemical\u00a0products","31":"Plastics\u00a0and\u00a0rubber\u00a0products","32":"Nonmetallic\u00a0mineral\u00a0products","33":"Primary\u00a0metals","34":"Fabricated\u00a0metal\u00a0products","35":"Machinery","36":"Computer\u00a0and\u00a0electronic\u00a0products","37":"Electrical\u00a0equipment,\u00a0appliances,\u00a0and\u00a0components","38":"Motor\u00a0vehicles,\u00a0bodies\u00a0and\u00a0trailers,\u00a0and\u00a0parts","39":"Other\u00a0transportation\u00a0equipment","40":"Furniture\u00a0and\u00a0related\u00a0products","41":"Miscellaneous\u00a0manufacturing","42":"Oil\u00a0and\u00a0gas\u00a0extraction","43":"Mining,\u00a0except\u00a0oil\u00a0and\u00a0gas","44":"Support\u00a0activities\u00a0for\u00a0mining","45":"Other\u00a0services,\u00a0except\u00a0government","46":"Legal\u00a0services","47":"Miscellaneous\u00a0professional,\u00a0scientific,\u00a0and\u00a0technical services","48":"Computer\u00a0systems\u00a0design\u00a0and\u00a0related\u00a0services","49":"Real\u00a0estate","50":"Rental\u00a0and\u00a0leasing\u00a0services\u00a0and\u00a0lessors\u00a0of\u00a0intangible assets","51":"Retail trade","52":"Air\u00a0transportation","53":"Railroad\u00a0transportation","54":"Water\u00a0transportation","55":"Truck\u00a0transportation","56":"Transit\u00a0and\u00a0ground\u00a0passenger\u00a0transportation","57":"Pipeline\u00a0transportation","58":"Other\u00a0transportation\u00a0and\u00a0support\u00a0activities","59":"Warehousing\u00a0and\u00a0storage","60":"Utilities","61":"Wholesale trade","62":"Accommodation","63":"Food\u00a0services\u00a0and\u00a0drinking\u00a0places","64":"Administrative\u00a0and\u00a0support\u00a0services","65":"Waste\u00a0management\u00a0and\u00a0remediation\u00a0services","66":"Farms","67":"Forestry,\u00a0fishing,\u00a0and\u00a0related\u00a0activities","68":"Performing\u00a0arts,\u00a0spectator\u00a0sports,\u00a0museums,\u00a0and\u00a0related activities","69":"Amusements,\u00a0gambling,\u00a0and\u00a0recreation\u00a0industries","70":"Construction","71":"Educational services","72":"Credit\u00a0intermediation\u00a0and\u00a0related\u00a0activities","73":"Securities,\u00a0commodity\u00a0contracts,\u00a0and\u00a0investments","74":"Insurance\u00a0carriers\u00a0and\u00a0related\u00a0activities","75":"Funds,\u00a0trusts,\u00a0and\u00a0other\u00a0financial\u00a0vehicles","76":"Ambulatory\u00a0health\u00a0care\u00a0services","77":"Hospitals","78":"Nursing\u00a0and\u00a0residential\u00a0care\u00a0facilities","79":"Social assistance","80":"Publishing\u00a0industries\u00a0(including\u00a0software)","81":"Motion\u00a0picture\u00a0and\u00a0sound\u00a0recording\u00a0industries","82":"Broadcasting\u00a0and\u00a0telecommunications","83":"Information\u00a0and\u00a0data\u00a0processing\u00a0services","84":"Management\u00a0of\u00a0companies\u00a0and\u00a0enterprises","85":"Food,\u00a0beverage,\u00a0and\u00a0tobacco\u00a0products","86":"Textile\u00a0mills\u00a0and\u00a0textile\u00a0product\u00a0mills","87":"Apparel\u00a0and\u00a0leather\u00a0and\u00a0allied\u00a0products","88":"Wood\u00a0products","89":"Paper\u00a0products","90":"Printing\u00a0and\u00a0related\u00a0support\u00a0activities","91":"Petroleum\u00a0and\u00a0coal\u00a0products","92":"Chemical\u00a0products","93":"Plastics\u00a0and\u00a0rubber\u00a0products","94":"Nonmetallic\u00a0mineral\u00a0products","95":"Primary\u00a0metals","96":"Fabricated\u00a0metal\u00a0products","97":"Machinery","98":"Computer\u00a0and\u00a0electronic\u00a0products","99":"Electrical\u00a0equipment,\u00a0appliances,\u00a0and\u00a0components","100":"Motor\u00a0vehicles,\u00a0bodies\u00a0and\u00a0trailers,\u00a0and\u00a0parts","101":"Other\u00a0transportation\u00a0equipment","102":"Furniture\u00a0and\u00a0related\u00a0products","103":"Miscellaneous\u00a0manufacturing","104":"Oil\u00a0and\u00a0gas\u00a0extraction","105":"Mining,\u00a0except\u00a0oil\u00a0and\u00a0gas","106":"Support\u00a0activities\u00a0for\u00a0mining","107":"Other\u00a0services,\u00a0except\u00a0government","108":"Legal\u00a0services","109":"Miscellaneous\u00a0professional,\u00a0scientific,\u00a0and\u00a0technical services","110":"Computer\u00a0systems\u00a0design\u00a0and\u00a0related\u00a0services","111":"Real\u00a0estate","112":"Rental\u00a0and\u00a0leasing\u00a0services\u00a0and\u00a0lessors\u00a0of\u00a0intangible assets","113":"Retail trade","114":"Air\u00a0transportation","115":"Railroad\u00a0transportation","116":"Water\u00a0transportation","117":"Truck\u00a0transportation","118":"Transit\u00a0and\u00a0ground\u00a0passenger\u00a0transportation","119":"Pipeline\u00a0transportation","120":"Other\u00a0transportation\u00a0and\u00a0support\u00a0activities","121":"Warehousing\u00a0and\u00a0storage","122":"Utilities","123":"Wholesale trade","124":"Accommodation and food services","125":"Administrative and waste management services","126":"Agriculture, forestry, fishing, and hunting","127":"Arts, entertainment, and recreation","130":"Finance and insurance","131":"Health care and social assistance","132":"Information","133":"Management of companies and enterprises","134":"Manufacturing","135":"Mining","136":"Other services, except government","137":"Professional, scientific, and technical services","138":"Real estate and rental and leasing","140":"Transportation and warehousing","143":"Accommodation and food services","144":"Administrative and waste management services","145":"Agriculture, forestry, fishing, and hunting","146":"Arts, entertainment, and recreation","149":"Finance and insurance","150":"Health care and social assistance","151":"Information","152":"Management of companies and enterprises","153":"Manufacturing","154":"Mining","155":"Other services, except government","156":"Professional, scientific, and technical services","157":"Real estate and rental and leasing","159":"Transportation and warehousing","162":"Overall","163":"Overall"},"Y":{"0":66.1934234369,"1":44.7870835379,"2":21.9001831585,"3":30.7995812681,"4":56.6326118625,"5":58.6987144746,"6":26.4510022771,"7":36.3066552362,"8":50.9348360982,"9":34.2248021666,"10":22.9167464666,"11":54.616987429,"12":29.9813161118,"13":54.3935089127,"14":27.2140661775,"15":33.8160446456,"16":30.3350897195,"17":34.1970057055,"18":25.8974495361,"19":20.7614747019,"20":17.19060929,"21":13.105738063,"22":44.3218780844,"23":42.7980477746,"24":37.1740225563,"25":56.6628080705,"26":48.6697205271,"27":32.30789007,"28":27.313112114,"29":59.5731364866,"30":25.2566071375,"31":35.7790479412,"32":49.779440837,"33":39.0228600842,"34":36.46004845,"35":38.1743609744,"36":26.2667838315,"37":46.3099779047,"38":35.2521418645,"39":49.50530429,"40":43.1478147663,"41":39.1105183037,"42":8.6983521778,"43":31.0086916313,"44":14.8050644959,"45":38.4927271135,"46":28.8442207726,"47":19.641369101,"48":22.0880587146,"49":84.5023518469,"50":12.6097003406,"51":59.0923466355,"52":14.6696588482,"53":14.8795395962,"54":17.0996597308,"55":20.6158420804,"56":25.8544101879,"57":8.4182619834,"58":23.5993735813,"59":40.2730346624,"60":15.0681319551,"61":62.5678652056,"62":57.7990519271,"63":37.7954426989,"64":22.9039847121,"65":28.007855409,"66":61.5167840375,"67":80.9626823668,"68":24.8876526037,"69":35.674833132,"70":61.5859440451,"71":34.0822380977,"72":29.5842577041,"73":68.6704673508,"74":34.2978382088,"75":58.6993904778,"76":26.8889252665,"77":33.2592772451,"78":30.3350897201,"79":36.9294081642,"80":33.44919293,"81":22.0724117612,"82":19.1151843504,"83":17.0550217962,"84":43.2763359068,"85":48.3048855609,"86":40.6870171307,"87":57.5936024771,"88":49.759980623,"89":35.2466500655,"90":29.6484908587,"91":57.3109431963,"92":28.2483141885,"93":41.7029458354,"94":50.6576949166,"95":43.3913287196,"96":40.5710887552,"97":45.5971933963,"98":27.7559863136,"99":51.1982202072,"100":39.5910254709,"101":55.7108934133,"102":46.123479628,"103":44.1028276439,"104":9.2603603085,"105":36.4716083411,"106":15.7471235809,"107":36.3185679025,"108":29.9398360817,"109":19.8461410327,"110":22.6604715753,"111":84.960221247,"112":14.2602517609,"113":68.4042228137,"114":14.961548748,"115":15.1416855436,"116":17.5064165197,"117":19.7473254727,"118":25.50512431,"119":8.493344648,"120":23.5406167936,"121":38.8718162591,"122":16.1399515867,"123":74.9033725116,"124":57.5328173271,"125":25.4135166777,"126":56.8127756221,"127":32.0028800964,"130":28.6448206565,"131":31.9520514046,"132":18.4031591864,"133":44.3218780844,"134":36.9228874568,"135":11.9802902586,"136":38.4927271135,"137":20.5687518566,"138":78.1181618074,"140":16.622308138,"143":51.992852816,"144":24.6449253698,"145":65.5667572743,"146":30.7939536513,"149":55.5668607817,"150":31.7701656397,"151":20.477092227,"152":43.2763359068,"153":40.1575743212,"154":13.417247087,"155":36.3185679025,"156":20.9684647916,"157":83.6826330063,"159":17.7825973066,"162":38.7936686872,"163":68.6045439892},"assets":{"0":251468621610.9022827148,"1":170870560831.6054992676,"2":106492097790.5230865479,"3":69464866307.1923217773,"4":359601192716.5429077148,"5":34352705962.8314361572,"6":79922779339.3306732178,"7":103100531850.1275482178,"8":167674309864.1975097656,"9":321852335173.162902832,"10":742471769336.486328125,"11":117288646632.7509918213,"12":242704259871.5009765625,"13":34266597921.9499473572,"14":187676386626.3576049805,"15":476870682069.5441894531,"16":45367688456.1200714111,"17":32821172821.6854019165,"18":205722166040.0869750977,"19":275276618185.1412353516,"20":1290507877813.3349609375,"21":118194411065.6137390137,"22":424413435043.7565917969,"23":382744557828.2229003906,"24":39763433350.6629333496,"25":23802489967.0470733643,"26":45996624948.891166687,"27":129541595783.7065734863,"28":49933189821.8591842651,"29":329428164622.0134887695,"30":863500170455.3681640625,"31":110331312312.7066345215,"32":116582519996.1656036377,"33":186378975799.425201416,"34":185026333665.7300415039,"35":272319888397.2880249023,"36":503974938260.4633789062,"37":97409347475.0587921143,"38":238664334578.3887939453,"39":222225359206.1832885742,"40":27298970230.4111976624,"41":132809342156.7745361328,"42":1206378685719.6235351562,"43":190223523014.2608032227,"44":120225750256.2843933105,"45":227393671624.0822143555,"46":20028299847.2376480103,"47":249009155856.5887756348,"48":42903264705.6848220825,"49":2545926908840.6557617188,"50":248115752512.012512207,"51":1608593695005.1538085938,"52":190656359022.7489013672,"53":331352975210.2105712891,"54":36714023796.1497192383,"55":108471874449.8662719727,"56":35034660346.8604888916,"57":169678725932.0599975586,"58":110872018726.7323150635,"59":33575803410.7719497681,"60":2043225324419.2265625,"61":973137443870.9088134766,"62":321835229078.1927490234,"63":131618330778.7992248535,"64":87779837154.6023254395,"65":45442362954.1839599609,"66":695254770987.6424560547,"67":182890160759.9651489258,"68":85913620169.5155334473,"69":103963170327.328125,"70":416883328406.9496459961,"71":223504365062.3242797852,"72":75859556179.7386169434,"73":178435565511.1371154785,"74":22117554581.3422851562,"75":32975922704.0225601196,"76":165185547973.7158813477,"77":468740246235.207824707,"78":44969311542.0389709473,"79":33500693280.9723625183,"80":10531454693.9851989746,"81":32648570358.8763084412,"82":114376654728.1431884766,"83":9622690881.1126461029,"84":90403382551.3785247803,"85":75311838089.0727386475,"86":7854948624.3696289062,"87":5338390836.4029083252,"88":13100141973.2179260254,"89":18990987477.7587127686,"90":7652157518.5940599442,"91":36804972259.2728424072,"92":155956627360.7209777832,"93":18759113941.0206604004,"94":17930326841.1746673584,"95":31384946425.5561637878,"96":33868174282.694316864,"97":44994036766.7347335815,"98":67202508361.1462249756,"99":13457767002.2784061432,"100":37968439962.3398895264,"101":37605705698.8262023926,"102":3398491339.2459998131,"103":21983133311.4125061035,"104":250060628349.9204101562,"105":42556976403.1628112793,"106":25044165259.3080673218,"107":434659499245.3933105469,"108":24694671280.0868492126,"109":250145961935.0880737305,"110":34987856978.9233474731,"111":10194539931205.201171875,"112":187611316433.8890991211,"113":599107994988.6729736328,"114":47796425035.4379577637,"115":83039763589.1802825928,"116":9217710064.5257263184,"117":37317255861.6797409058,"118":10233125938.3128376007,"119":33708295455.2028007507,"120":34235605978.8197860718,"121":15189477206.5546169281,"122":110848021471.9063720703,"123":387578651034.0488891602,"124":422339182442.5078125,"125":175956964097.715423584,"126":393953898679.3743286133,"127":183023311189.4582214355,"130":1136731273762.6882324219,"131":742735929973.7072753906,"132":1889701073104.1774902344,"133":424413435043.7565917969,"134":3957731548856.3671875,"135":1516827958990.1687011719,"136":227393671624.0822143555,"137":311940720409.5112304688,"138":2794042661352.6674804688,"140":1016356440895.4002685547,"143":453453559856.9920043945,"144":133222200108.7863006592,"145":878144931747.6075439453,"146":189876790496.8436889648,"149":309388598976.2406005859,"150":712395799031.9350585938,"151":167179370662.1173706055,"152":90403382551.3785247803,"153":649562708071.8395996094,"154":317661770012.3912963867,"155":434659499245.3933105469,"156":309828490194.0982666016,"157":10382151247639.08984375,"159":270737659129.7137756348,"162":20307631178754.234375,"163":17036588368688.330078125},"bea_ind_code":{"0":"7210","1":"7220","2":"5610","3":"5620","4":"110C","5":"113F","6":"711A","7":"7130","8":"2300","9":"6100","10":"5220","11":"5230","12":"5240","13":"5250","14":"6210","15":"622H","16":"6230","17":"6240","18":"5110","19":"5120","20":"5130","21":"5140","22":"5500","23":"311A","24":"313T","25":"315A","26":"3210","27":"3220","28":"3230","29":"3240","30":"3250","31":"3260","32":"3270","33":"3310","34":"3320","35":"3330","36":"3340","37":"3350","38":"336M","39":"336O","40":"3370","41":"338A","42":"2110","43":"2120","44":"2130","45":"8100","46":"5411","47":"5412","48":"5415","49":"5310","50":"5320","51":"44RT","52":"4810","53":"4820","54":"4830","55":"4840","56":"4850","57":"4860","58":"487S","59":"4930","60":"2200","61":"4200","62":"7210","63":"7220","64":"5610","65":"5620","66":"110C","67":"113F","68":"711A","69":"7130","70":"2300","71":"6100","72":"5220","73":"5230","74":"5240","75":"5250","76":"6210","77":"622H","78":"6230","79":"6240","80":"5110","81":"5120","82":"5130","83":"5140","84":"5500","85":"311A","86":"313T","87":"315A","88":"3210","89":"3220","90":"3230","91":"3240","92":"3250","93":"3260","94":"3270","95":"3310","96":"3320","97":"3330","98":"3340","99":"3350","100":"336M","101":"336O","102":"3370","103":"338A","104":"2110","105":"2120","106":"2130","107":"8100","108":"5411","109":"5412","110":"5415","111":"5310","112":"5320","113":"44RT","114":"4810","115":"4820","116":"4830","117":"4840","118":"4850","119":"4860","120":"487S","121":"4930","122":"2200","123":"4200","124":null,"125":null,"126":null,"127":null,"130":null,"131":null,"132":null,"133":null,"134":null,"135":null,"136":null,"137":null,"138":null,"140":null,"143":null,"144":null,"145":null,"146":null,"149":null,"150":null,"151":null,"152":null,"153":null,"154":null,"155":null,"156":null,"157":null,"159":null,"162":null,"163":null},"delta":{"0":0.0216294988,"1":0.0518898942,"2":0.1492064034,"3":0.0482275032,"4":0.0376177798,"5":0.0463821112,"6":0.0749563912,"7":0.0404180738,"8":0.0677242948,"9":0.0439328069,"10":0.1142261356,"11":0.059132994,"12":0.1147457008,"13":0.0210962664,"14":0.0763139691,"15":0.0503772857,"16":0.0490702769,"17":0.0517618347,"18":0.1404107611,"19":0.1023300662,"20":0.0703452279,"21":0.2101554577,"22":0.0754230864,"23":0.0606281378,"24":0.0562147876,"25":0.0391982725,"26":0.0499124352,"27":0.0743722243,"28":0.0873835885,"29":0.0424779245,"30":0.0814072155,"31":0.0751014292,"32":0.0552811481,"33":0.0609753484,"34":0.0730719676,"35":0.0805204428,"36":0.1499201327,"37":0.0686281985,"38":0.1096543879,"39":0.0773329504,"40":0.0648866527,"41":0.083771224,"42":0.0733672069,"43":0.0553139953,"44":0.0958738584,"45":0.0429838025,"46":0.1006663663,"47":0.1470806933,"48":0.2002092956,"49":0.0052170272,"50":0.1361344086,"51":0.0364291557,"52":0.0738532479,"53":0.0304382234,"54":0.069700499,"55":0.1290060519,"56":0.080273934,"57":0.0538277388,"58":0.0636658008,"59":0.043557305,"60":0.0418614967,"61":0.0542222472,"62":0.0270002304,"63":0.058460739,"64":0.1472886829,"65":0.0501731268,"66":0.0333811467,"67":0.0213792615,"68":0.0765496562,"69":0.040819011,"70":0.0530226466,"71":0.0440279922,"72":0.1043458787,"73":0.0408216414,"74":0.107671841,"75":0.019104488,"76":0.0766548701,"77":0.0508010653,"78":0.0490702769,"79":0.0496124771,"80":0.1261015905,"81":0.1006370918,"82":0.0687103312,"83":0.2006040384,"84":0.0768394382,"85":0.0547914607,"86":0.0530714661,"87":0.0383563736,"88":0.0488522902,"89":0.0711434563,"90":0.084576015,"91":0.0448548904,"92":0.07814878,"93":0.0681738894,"94":0.0543143947,"95":0.0566070081,"96":0.068344205,"97":0.0708530983,"98":0.1468921699,"99":0.0623799004,"100":0.1023062279,"101":0.0678290508,"102":0.0614904608,"103":0.0769028478,"104":0.0729155942,"105":0.0509340849,"106":0.0948137151,"107":0.044503194,"108":0.0991163641,"109":0.1467058985,"110":0.1987383737,"111":0.0051569417,"112":0.1335632212,"113":0.0281367273,"114":0.0736006258,"115":0.030344466,"116":0.0693585083,"117":0.1304174657,"118":0.0806520894,"119":0.0537836085,"120":0.0637147637,"121":0.0445791768,"122":0.0413332196,"123":0.0363536717,"124":0.0338722907,"125":0.1093416226,"126":0.0383820279,"127":0.0555002964,"130":0.1058451371,"131":0.0569123803,"132":0.0913768607,"133":0.0754230864,"134":0.0826211257,"135":0.0728870823,"136":0.0429838025,"137":0.1514077668,"138":0.0168427139,"140":0.0602012427,"143":0.0361318813,"144":0.1141623695,"145":0.0308815289,"146":0.056986069,"149":0.0588615441,"150":0.0566307235,"151":0.086152369,"152":0.0768394382,"153":0.0766712396,"154":0.0716971712,"155":0.044503194,"156":0.1487886537,"157":0.0074773155,"159":0.0629410677,"162":0.0616167355,"163":0.0263903323},"eatr_d":{"0":0.137893204,"1":0.1294059838,"2":0.116959407,"3":0.1144035467,"4":0.1237443119,"5":0.1259978597,"6":0.1162693611,"7":0.1192307484,"8":0.1248370899,"9":0.1306801355,"10":0.1207326856,"11":0.1323464722,"12":0.1271568856,"13":0.1383479107,"14":0.1240269959,"15":0.1281925171,"16":0.1280581209,"17":0.1278860614,"18":0.1164871871,"19":0.1086511194,"20":0.1087252435,"21":0.1105734255,"22":0.1311565284,"23":0.1273148949,"24":0.1296847536,"25":0.1362155619,"26":0.1310034891,"27":0.1217686835,"28":0.1212184077,"29":0.129364705,"30":0.1164497943,"31":0.123456369,"32":0.1277488528,"33":0.1260410862,"34":0.1240764048,"35":0.1237676322,"36":0.1190613347,"37":0.1281206763,"38":0.1222003803,"39":0.1294193573,"40":0.1289291674,"41":0.124237077,"42":0.1072038442,"43":0.1177345139,"44":0.1091016693,"45":0.1274464811,"46":0.1253770647,"47":0.115530636,"48":0.1186817372,"49":0.1369599443,"50":0.1080490046,"51":0.1359133939,"52":0.1127872133,"53":0.1055976963,"54":0.1108319438,"55":0.1136583882,"56":0.1223150409,"57":0.1072158979,"58":0.1136443202,"59":0.1314905277,"60":0.1057284608,"61":0.1344600786,"62":0.2190649764,"63":0.2097619363,"64":0.1990057174,"65":0.1952593214,"66":0.2073835134,"67":0.2142776974,"68":0.1975785841,"69":0.2008024405,"70":0.2089136487,"71":0.2121884917,"72":0.2044509931,"73":0.2162425014,"74":0.2094563998,"75":0.2197870222,"76":0.2055883747,"77":0.2096694061,"78":0.2096149362,"79":0.2098302131,"80":0.2007280894,"81":0.1911644757,"82":0.1914211762,"83":0.1936972564,"84":0.2126598023,"85":0.2108483944,"86":0.2122129958,"87":0.2178940539,"88":0.2129142494,"89":0.204677024,"90":0.2038423957,"91":0.2108144266,"92":0.199489736,"93":0.2073936148,"94":0.2099726408,"95":0.2093451147,"96":0.2073315287,"97":0.2083295038,"98":0.2014914061,"99":0.2116820184,"100":0.2056583845,"101":0.213344107,"102":0.2116949292,"103":0.2080316835,"104":0.1892976106,"105":0.2009774844,"106":0.1912221475,"107":0.2085734895,"108":0.2071732061,"109":0.1972472418,"110":0.2004693137,"111":0.2184800475,"112":0.1905719441,"113":0.2204420298,"114":0.1947189539,"115":0.1876484278,"116":0.1928433584,"117":0.1952125175,"118":0.20390578,"119":0.1891573364,"120":0.1954752183,"121":0.2128180052,"122":0.1880941492,"123":0.2203786758,"124":0.1344594329,"125":0.1159503961,"126":0.1239408208,"127":0.1179375672,"130":0.1238336471,"131":0.1271182114,"132":0.1096750467,"133":0.1311565284,"134":0.1231128946,"135":0.1086749066,"136":0.1274464811,"137":0.1165962223,"138":0.1343926036,"140":0.1105753149,"143":0.2163646985,"144":0.1977278142,"145":0.2088193566,"146":0.199343741,"149":0.2132439853,"150":0.2087272476,"151":0.1920883425,"152":0.2126598023,"153":0.2062174284,"154":0.1910140857,"155":0.2085734895,"156":0.1984022415,"157":0.2179757324,"159":0.1933203252,"162":0.1220979443,"163":0.2140506007},"eatr_e":{"0":0.2071280223,"1":0.1922827504,"2":0.1709084885,"3":0.166670708,"4":0.1816453897,"5":0.1871378338,"6":0.1700868117,"7":0.1751265023,"8":0.183942477,"9":0.1957887605,"10":0.1772713788,"11":0.1975494664,"12":0.1881572204,"13":0.2079476754,"14":0.1832693188,"15":0.1914258351,"16":0.1907365327,"17":0.1899948546,"18":0.1699087727,"19":0.1564679668,"20":0.1567590476,"21":0.1600142926,"22":0.1954353938,"23":0.1871229228,"24":0.1910670834,"25":0.2012014158,"26":0.1935676579,"27":0.1780690023,"28":0.1771784076,"29":0.1918534019,"30":0.1691857353,"31":0.1805347851,"32":0.1888513419,"33":0.184962405,"34":0.1816270212,"35":0.1809736703,"36":0.1736262788,"37":0.1882524959,"38":0.1784803404,"39":0.1898969996,"40":0.1898118618,"41":0.1818115325,"42":0.1540562833,"43":0.1719721853,"44":0.1572358165,"45":0.1899983833,"46":0.1852897085,"47":0.1681843232,"48":0.1736419359,"49":0.2072012148,"50":0.155641333,"51":0.2023682041,"52":0.1637573425,"53":0.1514737194,"54":0.1603742963,"55":0.1651618754,"56":0.1801173995,"57":0.1541697076,"58":0.1652988419,"59":0.1961479465,"60":0.1516169996,"61":0.1983675132,"62":0.2010862008,"63":0.1867110968,"64":0.1703686749,"65":0.1646706085,"66":0.1826328605,"67":0.1948651767,"68":0.1684034391,"69":0.1733343538,"70":0.1859163415,"71":0.1915006649,"72":0.1784653376,"73":0.1971115834,"74":0.1862815385,"75":0.202578243,"76":0.1806037962,"77":0.1875777564,"78":0.1871686245,"79":0.1872758418,"80":0.1728888543,"81":0.1581640497,"82":0.1586881544,"83":0.1623304191,"84":0.1913218675,"85":0.1871528952,"86":0.1892615049,"87":0.1973066729,"88":0.1905815842,"89":0.1780783509,"90":0.1768740911,"91":0.1879315563,"92":0.170351665,"93":0.1818437521,"94":0.1865596242,"95":0.1848342928,"96":0.1818228681,"97":0.1831480223,"98":0.1733920318,"99":0.1881541504,"100":0.1793064196,"101":0.1903014736,"102":0.1883737461,"103":0.1827076963,"104":0.1554169391,"105":0.173415138,"106":0.1583648192,"107":0.1858019821,"108":0.1828579686,"109":0.1675406278,"110":0.1724983839,"111":0.2016817718,"112":0.1574527321,"113":0.2015630345,"114":0.1637830645,"115":0.153001451,"116":0.1608963517,"117":0.1644711963,"118":0.1778657946,"119":0.1552508618,"120":0.1649858034,"121":0.1917259601,"122":0.1536332053,"123":0.2006132366,"124":0.201121902,"125":0.1692354836,"126":0.1821243298,"127":0.1729257658,"130":0.1826126604,"131":0.1892594878,"132":0.1583517937,"133":0.1954353938,"134":0.1802500207,"135":0.1565551084,"136":0.1899983833,"137":0.1700332039,"138":0.2026226093,"140":0.1599818295,"143":0.196913718,"144":0.1684250528,"145":0.1851804699,"146":0.171103261,"149":0.192348118,"150":0.1859206577,"151":0.1596900193,"152":0.1913218675,"153":0.1802944359,"154":0.1580605563,"155":0.1858019821,"156":0.1693213483,"157":0.2008825282,"159":0.1616625116,"162":0.17956266,"163":0.1942019043},"eatr_mix":{"0":0.1848970728,"1":0.1720834037,"2":0.1535916668,"3":0.1499207666,"4":0.1631239172,"5":0.1675550939,"6":0.1528112567,"7":0.1572114145,"8":0.1650131264,"9":0.1747752343,"10":0.1590994488,"11":0.1766099509,"12":0.1685323901,"13":0.1855453542,"14":0.1642044431,"15":0.1710369501,"16":0.1705280994,"17":0.1700007099,"18":0.1527772136,"19":0.1411586069,"20":0.1413724421,"21":0.1441644051,"22":0.1747687778,"23":0.1679459789,"24":0.1713550294,"25":0.1803559443,"26":0.1734984231,"27":0.1600173863,"28":0.1592252994,"29":0.1718360196,"30":0.1522910023,"31":0.162238127,"32":0.1692648115,"33":0.1660662268,"34":0.1631758542,"35":0.1626404696,"36":0.1561306334,"37":0.1689766814,"38":0.1604448243,"39":0.17052113,"40":0.1702815329,"41":0.1633604749,"42":0.139054084,"43":0.154594138,"44":0.1418225031,"45":0.1698307845,"46":0.1660171785,"47":0.1512936694,"48":0.1559934818,"49":0.1846665455,"50":0.1404026205,"51":0.1810321868,"52":0.1474034148,"53":0.1367929424,"54":0.1444944723,"55":0.1486575445,"56":0.1615303543,"57":0.1391300069,"58":0.1487354698,"59":0.1753308963,"60":0.1369295556,"61":0.1778913714,"62":0.2062442703,"63":0.1933436524,"64":0.178642725,"65":0.1735264287,"66":0.1898143099,"67":0.2004899134,"68":0.1768320675,"69":0.1812832824,"70":0.1925774347,"71":0.1973958118,"72":0.185959367,"73":0.2026300782,"74":0.1929446518,"75":0.2074996468,"76":0.1877862904,"77":0.1938937696,"78":0.1935897794,"79":0.1937496754,"80":0.180943255,"81":0.16772972,"82":0.1681718621,"83":0.1714107242,"84":0.1974518942,"85":0.1940051446,"86":0.1958791271,"87":0.2032478696,"88":0.197029962,"89":0.1857724845,"90":0.184669122,"91":0.1945548756,"92":0.178791238,"93":0.1892373867,"94":0.1933303445,"95":0.1919207158,"96":0.1892018333,"97":0.1904379412,"98":0.181521036,"99":0.1949604197,"100":0.1869349783,"101":0.1969733131,"102":0.1951108868,"103":0.1900380756,"104":0.165236783,"105":0.1813959952,"106":0.1678872246,"107":0.1923160273,"108":0.1898514013,"109":0.1761310411,"110":0.1805741914,"111":0.2065218754,"112":0.167052098,"113":0.2070095453,"114":0.1727291445,"115":0.1630488188,"116":0.1701456878,"117":0.1733723556,"118":0.185364289,"119":0.165075259,"120":0.1738079072,"121":0.197766792,"122":0.1636250902,"123":0.2063393433,"124":0.1797129011,"125":0.1521424568,"126":0.163510315,"127":0.1552899497,"130":0.163717435,"131":0.1692336225,"132":0.1427574997,"133":0.1747687778,"134":0.1619364766,"135":0.1412223715,"136":0.1698307845,"137":0.1528853954,"138":0.1807358335,"140":0.1441465984,"143":0.2024997682,"144":0.1768975459,"145":0.1920377046,"146":0.1792692396,"149":0.1983691837,"150":0.1924516432,"151":0.1690764749,"152":0.1974518942,"153":0.1877962004,"154":0.1676105824,"155":0.1923160273,"156":0.1777263627,"157":0.2058086343,"159":0.1708264754,"162":0.1611303784,"163":0.199926284},"major_industry":{"0":"Accommodation and food services","1":"Accommodation and food services","2":"Administrative and waste management services","3":"Administrative and waste management services","4":"Agriculture, forestry, fishing, and hunting","5":"Agriculture, forestry, fishing, and hunting","6":"Arts, entertainment, and recreation","7":"Arts, entertainment, and recreation","8":"Construction","9":"Educational services","10":"Finance and insurance","11":"Finance and insurance","12":"Finance and insurance","13":"Finance and insurance","14":"Health care and social assistance","15":"Health care and social assistance","16":"Health care and social assistance","17":"Health care and social assistance","18":"Information","19":"Information","20":"Information","21":"Information","22":"Management of companies and enterprises","23":"Manufacturing","24":"Manufacturing","25":"Manufacturing","26":"Manufacturing","27":"Manufacturing","28":"Manufacturing","29":"Manufacturing","30":"Manufacturing","31":"Manufacturing","32":"Manufacturing","33":"Manufacturing","34":"Manufacturing","35":"Manufacturing","36":"Manufacturing","37":"Manufacturing","38":"Manufacturing","39":"Manufacturing","40":"Manufacturing","41":"Manufacturing","42":"Mining","43":"Mining","44":"Mining","45":"Other services, except government","46":"Professional, scientific, and technical services","47":"Professional, scientific, and technical services","48":"Professional, scientific, and technical services","49":"Real estate and rental and leasing","50":"Real estate and rental and leasing","51":"Retail trade","52":"Transportation and warehousing","53":"Transportation and warehousing","54":"Transportation and warehousing","55":"Transportation and warehousing","56":"Transportation and warehousing","57":"Transportation and warehousing","58":"Transportation and warehousing","59":"Transportation and warehousing","60":"Utilities","61":"Wholesale trade","62":"Accommodation and food services","63":"Accommodation and food services","64":"Administrative and waste management services","65":"Administrative and waste management services","66":"Agriculture, forestry, fishing, and hunting","67":"Agriculture, forestry, fishing, and hunting","68":"Arts, entertainment, and recreation","69":"Arts, entertainment, and recreation","70":"Construction","71":"Educational services","72":"Finance and insurance","73":"Finance and insurance","74":"Finance and insurance","75":"Finance and insurance","76":"Health care and social assistance","77":"Health care and social assistance","78":"Health care and social assistance","79":"Health care and social assistance","80":"Information","81":"Information","82":"Information","83":"Information","84":"Management of companies and enterprises","85":"Manufacturing","86":"Manufacturing","87":"Manufacturing","88":"Manufacturing","89":"Manufacturing","90":"Manufacturing","91":"Manufacturing","92":"Manufacturing","93":"Manufacturing","94":"Manufacturing","95":"Manufacturing","96":"Manufacturing","97":"Manufacturing","98":"Manufacturing","99":"Manufacturing","100":"Manufacturing","101":"Manufacturing","102":"Manufacturing","103":"Manufacturing","104":"Mining","105":"Mining","106":"Mining","107":"Other services, except government","108":"Professional, scientific, and technical services","109":"Professional, scientific, and technical services","110":"Professional, scientific, and technical services","111":"Real estate and rental and leasing","112":"Real estate and rental and leasing","113":"Retail trade","114":"Transportation and warehousing","115":"Transportation and warehousing","116":"Transportation and warehousing","117":"Transportation and warehousing","118":"Transportation and warehousing","119":"Transportation and warehousing","120":"Transportation and warehousing","121":"Transportation and warehousing","122":"Utilities","123":"Wholesale trade","124":"Accommodation and food services","125":"Administrative and waste management services","126":"Agriculture, forestry, fishing, and hunting","127":"Arts, entertainment, and recreation","130":"Finance and insurance","131":"Health care and social assistance","132":"Information","133":"Management of companies and enterprises","134":"Manufacturing","135":"Mining","136":"Other services, except government","137":"Professional, scientific, and technical services","138":"Real estate and rental and leasing","140":"Transportation and warehousing","143":"Accommodation and food services","144":"Administrative and waste management services","145":"Agriculture, forestry, fishing, and hunting","146":"Arts, entertainment, and recreation","149":"Finance and insurance","150":"Health care and social assistance","151":"Information","152":"Management of companies and enterprises","153":"Manufacturing","154":"Mining","155":"Other services, except government","156":"Professional, scientific, and technical services","157":"Real estate and rental and leasing","159":"Transportation and warehousing","162":"Overall","163":"Overall"},"metr_d":{"0":-0.139703778,"1":-0.2023497754,"2":-0.3077682126,"3":-0.3317451697,"4":-0.2481149541,"5":-0.2294876253,"6":-0.3141561521,"7":-0.2871735193,"8":-0.2390123172,"9":-0.1925092395,"10":-0.273907766,"11":-0.1798802823,"12":-0.2201222394,"13":-0.1365312184,"14":-0.2457474496,"15":-0.2118738145,"16":-0.212937928,"17":-0.21430298,"18":-0.3121329482,"19":-0.3890643106,"20":-0.3882943495,"21":-0.3693686602,"22":-0.1888712043,"23":-0.2188565024,"24":-0.2001829246,"25":-0.1515637687,"26":-0.1900374859,"27":-0.2649156179,"28":-0.2696759796,"29":-0.202671297,"30":-0.3124798159,"31":-0.2505357718,"32":-0.2153937435,"33":-0.2291357579,"34":-0.2453345667,"35":-0.247919304,"36":-0.288687214,"37":-0.2124423982,"38":-0.261205981,"39":-0.2022456465,"40":-0.206074217,"41":-0.2439938095,"42":-0.4042708148,"43":-0.3006664955,"44":-0.3843973824,"45":-0.2178044301,"46":-0.2345632653,"47":-0.3210642554,"48":-0.2920918387,"49":-0.146271078,"50":-0.3953505372,"51":-0.1537262096,"52":-0.3473674049,"53":-0.4215411552,"54":-0.3667624482,"55":-0.3389020482,"56":-0.2602243384,"57":-0.4041427917,"58":-0.3390379042,"59":-0.1863337847,"60":-0.4201192211,"61":-0.1642412426,"62":0.2765119681,"63":0.233191132,"64":0.1761556126,"65":0.1542448767,"66":0.2212700263,"67":0.2548490066,"68":0.1679442423,"69":0.1862658724,"70":0.2289814574,"71":0.2449831317,"72":0.2060514603,"73":0.2638950097,"74":0.2316801974,"75":0.2796704673,"76":0.2120240809,"77":0.2327341809,"78":0.232464932,"79":0.2335279615,"80":0.1858524189,"81":0.1289232224,"82":0.1305550663,"83":0.1447610261,"84":0.2472315581,"85":0.238516067,"86":0.2451003612,"87":0.2713306116,"88":0.2484398618,"89":0.2072455918,"90":0.2028182548,"91":0.2383507048,"92":0.1789038525,"93":0.2213214399,"94":0.2342296475,"95":0.2311283916,"96":0.2210053283,"97":0.2260556308,"98":0.1900772076,"99":0.2425519379,"100":0.2123887824,"101":0.250472357,"102":0.2426141075,"103":0.2245553645,"104":0.1168687534,"105":0.1872376045,"106":0.1292903749,"107":0.2272803868,"108":0.2201980651,"109":0.1660143135,"110":0.1844101316,"111":0.2739328893,"112":0.1251330108,"113":0.2825119546,"114":0.1509880013,"115":0.1059388908,"116":0.1394862417,"117":0.1539637714,"118":0.2031562156,"119":0.1159495032,"120":0.1555391438,"121":0.2479832793,"122":0.1089194731,"123":0.2822380985,"124":-0.1642459565,"125":-0.3171300336,"126":-0.2464682211,"127":-0.2988188034,"130":-0.2473657916,"131":-0.220432441,"132":-0.3785033278,"133":-0.1888712043,"134":-0.2534357698,"135":-0.3888171293,"136":-0.2178044301,"137":-0.3111225498,"138":-0.1647340956,"140":-0.3693495764,"143":0.2644503588,"144":0.1688105303,"145":0.2285106718,"146":0.1780768315,"149":0.2499999341,"150":0.2280502302,"151":0.1347677839,"152":0.2472315581,"153":0.2152889362,"154":0.1279643452,"155":0.2272803868,"156":0.1727032221,"157":0.2716944473,"159":0.1424406028,"162":-0.2620842588,"163":0.2537890936},"metr_e":{"0":0.202098081,"1":0.1585952483,"2":0.0869180975,"3":0.0712314328,"4":0.1243873997,"5":0.1423902905,"6":0.0839181065,"7":0.1020141071,"8":0.1320078426,"9":0.169291745,"10":0.1095006327,"11":0.1745615547,"12":0.1456504521,"13":0.2043693365,"14":0.1297884575,"15":0.1559388594,"16":0.1537898571,"17":0.1514653109,"18":0.0832654753,"19":0.0311584139,"20":0.0323495457,"21":0.0454735112,"22":0.1682259974,"23":0.1423424184,"24":0.1548217617,"25":0.1852814848,"26":0.1625472041,"27":0.1122529327,"28":0.1091787133,"29":0.1572663854,"30":0.0806054781,"31":0.1206548486,"32":0.1478562153,"33":0.1353490318,"34":0.1243259241,"35":0.1221336632,"36":0.0967024354,"37":0.1459538924,"38":0.1136656673,"39":0.1511576627,"40":0.1508898145,"41":0.1249430541,"42":0.0211756045,"43":0.0907726591,"44":0.0342942165,"45":0.1514764007,"46":0.1364158026,"47":0.0768957641,"48":0.096758195,"49":0.2023014242,"50":0.0277597011,"51":0.1886480253,"52":0.0601308758,"53":0.0102548118,"54":0.0469030859,"55":0.0655153879,"56":0.1192438476,"57":0.0216497158,"58":0.0660371723,"59":0.1703722482,"60":0.0108670764,"61":0.176987295,"62":0.1948566636,"63":0.1474071857,"64":0.0861830192,"65":0.0627156909,"66":0.1329099966,"67":0.1749864874,"68":0.0782231626,"69":0.0979380904,"70":0.1446201685,"71":0.1638259429,"72":0.117577089,"73":0.1822737255,"74":0.1459030867,"75":0.1994808106,"76":0.1255119092,"77":0.1504257273,"78":0.1490034047,"79":0.1493765996,"80":0.0961916031,"81":0.0344001099,"82":0.0367441362,"83":0.0527248033,"84":0.1632243919,"85":0.1489486276,"86":0.1562294745,"87":0.1829005159,"88":0.1607245241,"89":0.1161257499,"90":0.1115786425,"91":0.1516518634,"92":0.0861147136,"93":0.1300477844,"94":0.1468774091,"95":0.1407962596,"96":0.1299717786,"97":0.1347684249,"98":0.0981637119,"99":0.152421478,"100":0.1207150699,"101":0.159774717,"102":0.1531793586,"103":0.1331804598,"104":0.0219248049,"105":0.0982540656,"106":0.0352993856,"107":0.144217637,"108":0.1337230474,"109":0.0746845174,"110":0.0946552746,"111":0.1967088526,"112":0.0312004759,"113":0.1963402673,"114":0.0589514378,"115":0.010686085,"116":0.0464964444,"117":0.0618725692,"118":0.1153265546,"119":0.0211602656,"120":0.0640452604,"121":0.1645827021,"122":0.0136503623,"123":0.1933796782,"124":0.185051046,"125":0.0807889925,"126":0.125987274,"127":0.0942006274,"130":0.1276125087,"131":0.1491479023,"132":0.0388157083,"133":0.1682259974,"134":0.1196926733,"135":0.0315153134,"136":0.1514764007,"137":0.0837216961,"138":0.1893783709,"140":0.0453443895,"143":0.1816370336,"144":0.0783114595,"145":0.1420233468,"146":0.0891231537,"149":0.1666654132,"150":0.1446353535,"151":0.0411933925,"152":0.1632243919,"153":0.1243728579,"154":0.0339358924,"155":0.144217637,"156":0.081958188,"157":0.1942212928,"159":0.0498341402,"162":0.1173614879,"163":0.1728099612},"metr_mix":{"0":0.1298077346,"1":0.0822548777,"2":0.0036837849,"3":-0.0135419321,"4":0.0457952193,"5":0.0641825048,"6":0.0000708917,"7":0.0201055782,"8":0.0537221688,"9":0.0926708657,"10":0.0284580791,"11":0.0996358135,"12":0.0681428452,"13":0.1320829516,"14":0.0503451873,"15":0.0781408004,"16":0.0761269226,"17":0.0740303672,"18":-0.0000873065,"19":-0.0571697423,"20":-0.0560603673,"21":-0.0417864581,"22":0.0926461653,"23":0.0657705378,"24":0.0793952088,"25":0.1135294314,"26":0.0877599045,"27":0.032467724,"28":0.0290097722,"29":0.081285618,"30":-0.002352207,"31":0.0420326111,"32":0.0710889641,"33":0.0580839758,"34":0.0460149171,"35":0.0437453298,"36":0.0152593408,"37":0.0699322046,"38":0.0343235446,"39":0.0760992789,"40":0.0751479186,"41":0.0467950595,"42":-0.0682136382,"43":0.008286574,"44":-0.0537330448,"45":0.0733528266,"46":0.0578817172,"47":-0.0070302998,"48":0.0146409212,"49":0.1289957952,"50":-0.0611105493,"51":0.1159920026,"52":-0.0257030383,"53":-0.0803394807,"54":-0.0401244538,"55":-0.0196081858,"56":0.0390047805,"57":-0.0678112076,"58":-0.0192318712,"59":0.0947916181,"60":-0.0795990558,"61":0.1044372558,"62":0.2115362548,"63":0.1649177742,"64":0.1045877299,"65":0.0814938212,"66":0.1511877497,"67":0.1914014171,"68":0.0965487545,"69":0.116058141,"70":0.1619748772,"71":0.1801439213,"72":0.1356657401,"73":0.1990089613,"74":0.1633878725,"75":0.2157963686,"76":0.1430920466,"77":0.1670179554,"78":0.1658587204,"79":0.1664688693,"80":0.114597596,"81":0.0538459273,"82":0.0560132633,"83":0.0715920575,"84":0.1803507585,"85":0.1674418663,"86":0.174510384,"87":0.2011784428,"88":0.1787920658,"89":0.1348988133,"90":0.1303429597,"91":0.1695279248,"92":0.1052407555,"93":0.1489003254,"94":0.1648668377,"95":0.1594359865,"96":0.1487589576,"97":0.1536465763,"98":0.1170765225,"99":0.1710601505,"100":0.1396474683,"101":0.1785823432,"102":0.1716272081,"103":0.1520716454,"104":0.0414371098,"105":0.1165412221,"106":0.0546191393,"107":0.1609661098,"108":0.1513343918,"109":0.0933974333,"110":0.1130068574,"111":0.2124822874,"112":0.0505049101,"113":0.2141387011,"114":0.0777873301,"115":0.0302750062,"116":0.0655688777,"117":0.0807798758,"118":0.1332189223,"119":0.0406218723,"120":0.0827952796,"121":0.1815101965,"122":0.0332400484,"123":0.2118605037,"124":0.1111749973,"125":-0.0030462184,"126":0.0474272944,"127":0.0114564303,"130":0.048299836,"131":0.0709638882,"132":-0.0489307011,"133":0.0926461653,"134":0.0407444957,"135":-0.0568386884,"136":0.0733528266,"137":0.0004152414,"138":0.1149145031,"140":-0.0418762722,"143":0.1985498495,"144":0.096841981,"145":0.1598893938,"146":0.1073361228,"149":0.1837190584,"150":0.1614897525,"151":0.060416789,"152":0.1803507585,"153":0.1431319821,"154":0.0532602238,"155":0.1609661098,"156":0.1005372165,"157":0.210047088,"159":0.0688199697,"162":0.0372852158,"163":0.1893738095},"mettr_d":{"0":0.1593379487,"1":0.1131293516,"2":0.035371182,"3":0.0176854304,"4":0.0793722915,"5":0.0931120795,"6":0.0306593451,"7":0.0505621268,"8":0.0860865286,"9":0.1203878737,"10":0.060347139,"11":0.1297031759,"12":0.1000201241,"13":0.1616780747,"14":0.0811185971,"15":0.1061042821,"16":0.1053193765,"17":0.1043124944,"18":0.0321516897,"19":-0.024594,"20":-0.0240260656,"21":-0.0100662024,"22":0.1230713413,"23":0.1009537501,"24":0.1147276522,"25":0.1505898474,"26":0.1222110751,"27":0.0669798779,"28":0.063468566,"29":0.1128921926,"30":0.031895835,"31":0.0775866612,"32":0.1035079314,"33":0.093371622,"34":0.0814231455,"35":0.0795166058,"36":0.0494456036,"37":0.1056848865,"38":0.0697161599,"39":0.1132061586,"40":0.1103821494,"41":0.0824121075,"42":-0.0358105383,"43":0.0406095117,"44":-0.021151606,"45":0.101729774,"46":0.0893682138,"47":0.0255638278,"48":0.0469343029,"49":0.1544938129,"50":-0.029230812,"51":0.1489947996,"52":0.0061622429,"53":-0.0485493921,"54":-0.0081438226,"55":0.0124064129,"56":0.0704402338,"57":-0.0357161066,"58":0.0123062036,"59":0.1249429789,"60":-0.0475005529,"61":0.1412387586,"62":0.2765119681,"63":0.233191132,"64":0.1761556126,"65":0.1542448767,"66":0.2212700263,"67":0.2548490066,"68":0.1679442423,"69":0.1862658724,"70":0.2289814574,"71":0.2449831317,"72":0.2060514603,"73":0.2638950097,"74":0.2316801974,"75":0.2796704673,"76":0.2120240809,"77":0.2327341809,"78":0.232464932,"79":0.2335279615,"80":0.1858524189,"81":0.1289232224,"82":0.1305550663,"83":0.1447610261,"84":0.2472315581,"85":0.238516067,"86":0.2451003612,"87":0.2713306116,"88":0.2484398618,"89":0.2072455918,"90":0.2028182548,"91":0.2383507048,"92":0.1789038525,"93":0.2213214399,"94":0.2342296475,"95":0.2311283916,"96":0.2210053283,"97":0.2260556308,"98":0.1900772076,"99":0.2425519379,"100":0.2123887824,"101":0.250472357,"102":0.2426141075,"103":0.2245553645,"104":0.1168687534,"105":0.1872376045,"106":0.1292903749,"107":0.2272803868,"108":0.2201980651,"109":0.1660143135,"110":0.1844101316,"111":0.2739328893,"112":0.1251330108,"113":0.2825119546,"114":0.1509880013,"115":0.1059388908,"116":0.1394862417,"117":0.1539637714,"118":0.2031562156,"119":0.1159495032,"120":0.1555391438,"121":0.2479832793,"122":0.1089194731,"123":0.2822380985,"124":0.1412352816,"125":0.0284657669,"126":0.0805869456,"127":0.0419723961,"130":0.0799248846,"131":0.099791315,"132":-0.0168040658,"133":0.1230713413,"134":0.0754475806,"135":-0.0244116755,"136":0.101729774,"137":0.0328969742,"138":0.1408752231,"140":-0.0100521259,"143":0.2644503588,"144":0.1688105303,"145":0.2285106718,"146":0.1780768315,"149":0.2499999341,"150":0.2280502302,"151":0.1347677839,"152":0.2472315581,"153":0.2152889362,"154":0.1279643452,"155":0.2272803868,"156":0.1727032221,"157":0.2716944473,"159":0.1424406028,"162":0.0690683295,"163":0.2537890936},"mettr_e":{"0":0.2810874598,"1":0.2418912489,"2":0.1773098745,"3":0.1631761324,"4":0.2110698524,"5":0.2272905227,"6":0.1746068716,"7":0.1909114342,"8":0.2179358993,"9":0.2515288314,"10":0.1976568211,"11":0.2562769492,"12":0.2302279402,"13":0.2831338693,"14":0.2159362252,"15":0.2394978327,"16":0.2375615738,"17":0.2354671492,"18":0.1740188485,"19":0.1270701961,"20":0.1281434102,"21":0.139968151,"22":0.2505685889,"23":0.2272473898,"24":0.2384913236,"25":0.2659356453,"26":0.2454519754,"27":0.2001366534,"28":0.1973667705,"29":0.2406939385,"30":0.1716221814,"31":0.2077068103,"32":0.2322153409,"33":0.2209463229,"34":0.2110144627,"35":0.2090392276,"36":0.1861255986,"37":0.230501341,"38":0.2014095324,"39":0.2351899571,"40":0.2349486249,"41":0.2115704991,"42":0.1180756484,"43":0.1807828485,"44":0.1298955657,"45":0.2354771412,"46":0.2219074873,"47":0.1682797155,"48":0.1861758382,"49":0.2812706727,"50":0.1240079434,"51":0.2689689105,"52":0.1531744899,"53":0.1082359743,"54":0.141256203,"55":0.158025955,"56":0.2064354932,"57":0.1185028244,"58":0.1584960847,"59":0.2525023688,"60":0.108787627,"61":0.25846255,"62":0.1948566636,"63":0.1474071857,"64":0.0861830192,"65":0.0627156909,"66":0.1329099966,"67":0.1749864874,"68":0.0782231626,"69":0.0979380904,"70":0.1446201685,"71":0.1638259429,"72":0.117577089,"73":0.1822737255,"74":0.1459030867,"75":0.1994808106,"76":0.1255119092,"77":0.1504257273,"78":0.1490034047,"79":0.1493765996,"80":0.0961916031,"81":0.0344001099,"82":0.0367441362,"83":0.0527248033,"84":0.1632243919,"85":0.1489486276,"86":0.1562294745,"87":0.1829005159,"88":0.1607245241,"89":0.1161257499,"90":0.1115786425,"91":0.1516518634,"92":0.0861147136,"93":0.1300477844,"94":0.1468774091,"95":0.1407962596,"96":0.1299717786,"97":0.1347684249,"98":0.0981637119,"99":0.152421478,"100":0.1207150699,"101":0.159774717,"102":0.1531793586,"103":0.1331804598,"104":0.0219248049,"105":0.0982540656,"106":0.0352993856,"107":0.144217637,"108":0.1337230474,"109":0.0746845174,"110":0.0946552746,"111":0.1967088526,"112":0.0312004759,"113":0.1963402673,"114":0.0589514378,"115":0.010686085,"116":0.0464964444,"117":0.0618725692,"118":0.1153265546,"119":0.0211602656,"120":0.0640452604,"121":0.1645827021,"122":0.0136503623,"123":0.1933796782,"124":0.2657280191,"125":0.1717875285,"126":0.212511345,"127":0.1838714605,"130":0.2139756874,"131":0.2333791556,"132":0.1339694463,"133":0.2505685889,"134":0.2068398868,"135":0.1273917638,"136":0.2354771412,"137":0.1744299051,"138":0.2696269546,"140":0.1398518118,"143":0.1816370336,"144":0.0783114595,"145":0.1420233468,"146":0.0891231537,"149":0.1666654132,"150":0.1446353535,"151":0.0411933925,"152":0.1632243919,"153":0.1243728579,"154":0.0339358924,"155":0.144217637,"156":0.081958188,"157":0.1942212928,"159":0.0498341402,"162":0.2047394803,"163":0.1728099612},"mettr_mix":{"0":0.255204449,"1":0.2145040685,"2":0.1472552515,"3":0.1325118001,"4":0.1832983311,"5":0.1990359663,"6":0.1441629847,"7":0.1613106266,"8":0.1900829888,"9":0.2234190886,"10":0.1684595128,"11":0.2293803713,"12":0.2024256125,"13":0.2571518019,"14":0.1871926382,"15":0.2109828392,"16":0.2092591659,"17":0.207464729,"18":0.1440275832,"19":0.0951708581,"20":0.0961203697,"21":0.1083373756,"22":0.2233979476,"23":0.20039516,"24":0.2120564845,"25":0.2412718869,"26":0.2192158082,"27":0.1718913586,"28":0.1689317056,"29":0.2136744814,"30":0.1420890601,"31":0.1800779234,"32":0.2049471889,"33":0.1938162494,"34":0.1834863699,"35":0.1815438354,"36":0.1571627431,"37":0.2039571211,"38":0.1734797511,"39":0.2092355057,"40":0.2084212387,"41":0.184154092,"42":0.0857184131,"43":0.1511947681,"44":0.0981123196,"45":0.2068848236,"46":0.1936431367,"47":0.1380850912,"48":0.1566334393,"49":0.2545095119,"50":0.0917979306,"51":0.2433795958,"52":0.1221031374,"53":0.0753399325,"54":0.1097598812,"55":0.1273197076,"56":0.1774864101,"57":0.0860628526,"58":0.1276417944,"59":0.2252342357,"60":0.0759736605,"61":0.2334899147,"62":0.2115362548,"63":0.1649177742,"64":0.1045877299,"65":0.0814938212,"66":0.1511877497,"67":0.1914014171,"68":0.0965487545,"69":0.116058141,"70":0.1619748772,"71":0.1801439213,"72":0.1356657401,"73":0.1990089613,"74":0.1633878725,"75":0.2157963686,"76":0.1430920466,"77":0.1670179554,"78":0.1658587204,"79":0.1664688693,"80":0.114597596,"81":0.0538459273,"82":0.0560132633,"83":0.0715920575,"84":0.1803507585,"85":0.1674418663,"86":0.174510384,"87":0.2011784428,"88":0.1787920658,"89":0.1348988133,"90":0.1303429597,"91":0.1695279248,"92":0.1052407555,"93":0.1489003254,"94":0.1648668377,"95":0.1594359865,"96":0.1487589576,"97":0.1536465763,"98":0.1170765225,"99":0.1710601505,"100":0.1396474683,"101":0.1785823432,"102":0.1716272081,"103":0.1520716454,"104":0.0414371098,"105":0.1165412221,"106":0.0546191393,"107":0.1609661098,"108":0.1513343918,"109":0.0933974333,"110":0.1130068574,"111":0.2124822874,"112":0.0505049101,"113":0.2141387011,"114":0.0777873301,"115":0.0302750062,"116":0.0655688777,"117":0.0807798758,"118":0.1332189223,"119":0.0406218723,"120":0.0827952796,"121":0.1815101965,"122":0.0332400484,"123":0.2118605037,"124":0.2392567321,"125":0.1414950573,"126":0.1846952204,"127":0.1539078408,"130":0.1854420267,"131":0.2048401367,"132":0.1022226345,"133":0.2233979476,"134":0.1789754284,"135":0.0954542064,"136":0.2068848236,"137":0.1444577127,"138":0.2424573665,"140":0.1082605039,"143":0.1985498495,"144":0.096841981,"145":0.1598893938,"146":0.1073361228,"149":0.1837190584,"150":0.1614897525,"151":0.060416789,"152":0.1803507585,"153":0.1431319821,"154":0.0532602238,"155":0.1609661098,"156":0.1005372165,"157":0.210047088,"159":0.0688199697,"162":0.1760146387,"163":0.1893738095},"rho_d":{"0":0.0412387858,"1":0.0390901225,"2":0.0359390904,"3":0.0352920371,"4":0.0376567878,"5":0.0382273063,"6":0.0357643952,"7":0.0365141135,"8":0.0379334405,"9":0.0394126925,"10":0.0368943508,"11":0.0398345499,"12":0.0385207305,"13":0.0413539015,"14":0.0377283534,"15":0.0387829157,"16":0.0387488914,"17":0.038705332,"18":0.035819541,"19":0.0338357264,"20":0.033854492,"21":0.0343223862,"22":0.0395332983,"23":0.0385607329,"24":0.0391606971,"25":0.0408140663,"26":0.0394945542,"27":0.0371566287,"28":0.0370173184,"29":0.0390796722,"30":0.0358100745,"31":0.0375838909,"32":0.0386705956,"33":0.0382382497,"34":0.037740862,"35":0.0376626917,"36":0.036471224,"37":0.0387647282,"38":0.0372659191,"39":0.0390935082,"40":0.0389694095,"41":0.0377815385,"42":0.0334693276,"43":0.03613532,"44":0.0339497897,"45":0.0385940458,"46":0.038070143,"47":0.0355773762,"48":0.0363751233,"49":0.0410025176,"50":0.0336832923,"51":0.0407375681,"52":0.0348828388,"53":0.0330627079,"54":0.0343878339,"55":0.0351033894,"56":0.0372949471,"57":0.0334723792,"58":0.0350998279,"59":0.0396178551,"60":0.0330958129,"61":0.0403696401,"62":0.0413785535,"63":0.0390408738,"64":0.0363380375,"65":0.0353966384,"66":0.0384432207,"67":0.0401756,"68":0.0359794256,"69":0.0367895204,"70":0.038827715,"71":0.0396506217,"72":0.0377063333,"73":0.0406693184,"74":0.0389640982,"75":0.0415599901,"76":0.037992136,"77":0.0390176227,"78":0.0390039355,"79":0.0390580305,"80":0.0367708373,"81":0.0343676804,"82":0.0344321844,"83":0.0350041207,"84":0.0397690533,"85":0.0393138804,"86":0.0396567791,"87":0.0410843226,"88":0.039832991,"89":0.0377631306,"90":0.0375534041,"91":0.0393053449,"92":0.0364596623,"93":0.038445759,"94":0.0390938199,"95":0.0389361344,"96":0.0384301579,"97":0.0386809304,"98":0.0369626445,"99":0.0395233545,"100":0.0380097281,"101":0.0399410062,"102":0.0395265987,"103":0.0386060937,"104":0.0338985721,"105":0.0368335056,"106":0.0343821722,"107":0.0387422394,"108":0.0383903744,"109":0.0358961655,"110":0.0367058118,"111":0.0412315719,"112":0.0342187883,"113":0.0417245813,"114":0.0352608541,"115":0.0334841634,"116":0.0347895521,"117":0.0353848774,"118":0.0375693315,"119":0.0338633238,"120":0.0354508892,"121":0.0398088067,"122":0.0335961648,"123":0.0417086616,"124":0.0403694767,"125":0.0356836446,"126":0.0377065369,"127":0.0361867259,"130":0.0376794043,"131":0.0385109396,"132":0.0340949485,"133":0.0395332983,"134":0.0374969353,"135":0.0338417485,"136":0.0385940458,"137":0.0358471449,"138":0.0403525579,"140":0.0343228645,"143":0.0407000243,"144":0.0360169244,"145":0.0388040212,"146":0.0364229765,"149":0.0399158475,"150":0.0387808759,"151":0.0345998308,"152":0.0397690533,"153":0.0381502054,"154":0.0343298902,"155":0.0387422394,"156":0.0361863953,"157":0.0411048469,"159":0.0349094049,"162":0.0372399859,"163":0.0401185348},"rho_e":{"0":0.0726906386,"1":0.0689323419,"2":0.0635211363,"3":0.0624482805,"4":0.0662393392,"5":0.0676298313,"6":0.0633131169,"7":0.0645889879,"8":0.0668208802,"9":0.0698199394,"10":0.0651319946,"11":0.0702656877,"12":0.0678879039,"13":0.0728981457,"14":0.0666504605,"15":0.0687154013,"16":0.0685408943,"17":0.0683531277,"18":0.0632680437,"19":0.059865308,"20":0.0599389994,"21":0.0607631121,"22":0.0697304795,"23":0.0676260564,"24":0.0686245781,"25":0.0711902319,"26":0.0692576349,"27":0.0653339246,"28":0.0651084576,"29":0.068823646,"30":0.0630849963,"31":0.0659581734,"32":0.0680636309,"33":0.0670790899,"34":0.0662346889,"35":0.0660692836,"36":0.0642091845,"37":0.0679120243,"38":0.0654380609,"39":0.0683283543,"40":0.0683068005,"41":0.0662814006,"42":0.0592547553,"43":0.0637904267,"44":0.0600597004,"45":0.0683540211,"46":0.0671619515,"47":0.0628314742,"48":0.0642131483,"49":0.0727091683,"50":0.0596560337,"51":0.0714856213,"52":0.0617107196,"53":0.0586009416,"54":0.0608542522,"55":0.0620662976,"56":0.0658525062,"57":0.0592834703,"58":0.0621009726,"59":0.0699108725,"60":0.0586372151,"61":0.0704727881,"62":0.0649054761,"63":0.0612932818,"64":0.0571867373,"65":0.0557549199,"66":0.0602684974,"67":0.0633422493,"68":0.0566929104,"69":0.0579319568,"70":0.0610935747,"71":0.0624968105,"72":0.059221277,"73":0.0639067292,"74":0.0611853418,"75":0.0652803984,"76":0.0597586316,"77":0.0615110571,"78":0.0614082499,"79":0.0614351916,"80":0.0578200112,"81":0.0541199436,"82":0.0542516413,"83":0.0551668742,"84":0.0624518821,"85":0.0614042975,"86":0.0619341516,"87":0.0639557516,"88":0.0622658628,"89":0.0591240344,"90":0.0588214265,"91":0.0615999604,"92":0.057182463,"93":0.0600702092,"94":0.0612552196,"95":0.0608216761,"96":0.0600649615,"97":0.0603979479,"98":0.0579464503,"99":0.0616558941,"100":0.0594326251,"101":0.0621954762,"102":0.0617110744,"103":0.0602873022,"104":0.0534296462,"105":0.0579522564,"106":0.0541703932,"107":0.0610648383,"108":0.0603250629,"109":0.056476102,"110":0.0577218933,"111":0.065055132,"112":0.0539412028,"113":0.0650252955,"114":0.0555318968,"115":0.0528226793,"116":0.0548065199,"117":0.0557048114,"118":0.0590706231,"119":0.0533879141,"120":0.0558341225,"121":0.062553423,"122":0.0529814273,"123":0.0647866291,"124":0.0711701018,"125":0.0630975908,"126":0.0663605898,"127":0.0640318395,"130":0.0664842178,"131":0.0681669589,"132":0.0603422263,"133":0.0697304795,"134":0.0658860812,"135":0.0598873692,"136":0.0683540211,"137":0.0632995453,"138":0.0715500277,"140":0.0607548936,"143":0.0638570094,"144":0.0566983415,"145":0.0609086639,"146":0.057371325,"149":0.0627097596,"150":0.0610946593,"151":0.0545033912,"152":0.0624518821,"153":0.0596808951,"154":0.0540939377,"155":0.0610648383,"156":0.0569235638,"157":0.064854297,"159":0.0549990416,"162":0.0657120658,"163":0.0631755814},"rho_mix":{"0":0.0626068539,"1":0.059362887,"2":0.0546814346,"3":0.0537520928,"4":0.0570946626,"5":0.0582164795,"6":0.0544838625,"7":0.0555978264,"8":0.0575729434,"9":0.0600443631,"10":0.0560758098,"11":0.0605088483,"12":0.0584638962,"13":0.0627709757,"14":0.0573682135,"15":0.0590979621,"16":0.0589691391,"17":0.0588356228,"18":0.054475244,"19":0.0515338245,"20":0.05158796,"21":0.0522947861,"22":0.0600427286,"23":0.0583154377,"24":0.0591784884,"25":0.0614572011,"26":0.0597211198,"27":0.0563081991,"28":0.0561076707,"29":0.0593002581,"30":0.0543521525,"31":0.0568704119,"32":0.0586493194,"33":0.0578395511,"34":0.0571078112,"35":0.0569722708,"36":0.055324211,"37":0.058576375,"38":0.0564164112,"39":0.0589673747,"40":0.0589067172,"41":0.0571545506,"42":0.0510010339,"43":0.0549352248,"44":0.0517018995,"45":0.0587926037,"46":0.0578271338,"47":0.0540996631,"48":0.0552894891,"49":0.0625484925,"50":0.0513424356,"51":0.0616284017,"52":0.0531147886,"53":0.050428593,"54":0.0523783474,"55":0.0534322897,"56":0.0566912289,"57":0.0510202549,"58":0.0534520177,"59":0.0601850371,"60":0.0504631786,"61":0.0608332586,"62":0.0580686533,"63":0.0548269696,"64":0.051132902,"65":0.0498472726,"66":0.053940112,"67":0.0566226912,"68":0.0506779177,"69":0.0517964246,"70":0.0546344335,"71":0.0558452014,"72":0.0529714371,"73":0.0571604745,"74":0.0547267083,"75":0.0583841059,"76":0.0534305087,"77":0.0549652038,"78":0.0548888167,"79":0.0549289956,"80":0.0517109821,"81":0.0483906682,"82":0.0485017703,"83":0.0493156357,"84":0.0558592939,"85":0.0549931902,"86":0.0554640869,"87":0.0573157139,"88":0.0557532702,"89":0.052924477,"90":0.0526472227,"91":0.0551313274,"92":0.0511702205,"93":0.053795142,"94":0.0548236256,"95":0.0544694123,"96":0.0537862081,"97":0.0540968188,"98":0.0518561676,"99":0.055233233,"100":0.0532165899,"101":0.0557390354,"102":0.0552710426,"103":0.0539963401,"104":0.0477642399,"105":0.0518247472,"106":0.0484302462,"107":0.0545687467,"108":0.0539494324,"109":0.0505017629,"110":0.0516182433,"111":0.0581384102,"112":0.0482203945,"113":0.0582609525,"114":0.04964693,"115":0.0472144455,"116":0.0489977557,"117":0.0498085569,"118":0.0528219051,"119":0.0477236519,"120":0.0499180028,"121":0.0559384218,"122":0.0473592517,"123":0.0580925433,"124":0.0612944053,"125":0.054314546,"126":0.0571924848,"127":0.0551113797,"130":0.0572449203,"131":0.0586414234,"132":0.0519386075,"133":0.0600427286,"134":0.0567940447,"135":0.0515499675,"136":0.0587926037,"137":0.0545026317,"138":0.0615533756,"140":0.0522902781,"143":0.05712773,"144":0.0506943712,"145":0.0544988094,"146":0.0512903334,"149":0.0560897915,"150":0.0546028244,"151":0.0487290825,"152":0.0558592939,"153":0.0534329989,"154":0.0483607312,"155":0.0545687467,"156":0.0509026373,"157":0.0579591861,"159":0.0491688249,"162":0.0565899692,"163":0.0564810617},"tax_treat":{"0":"corporate","1":"corporate","2":"corporate","3":"corporate","4":"corporate","5":"corporate","6":"corporate","7":"corporate","8":"corporate","9":"corporate","10":"corporate","11":"corporate","12":"corporate","13":"corporate","14":"corporate","15":"corporate","16":"corporate","17":"corporate","18":"corporate","19":"corporate","20":"corporate","21":"corporate","22":"corporate","23":"corporate","24":"corporate","25":"corporate","26":"corporate","27":"corporate","28":"corporate","29":"corporate","30":"corporate","31":"corporate","32":"corporate","33":"corporate","34":"corporate","35":"corporate","36":"corporate","37":"corporate","38":"corporate","39":"corporate","40":"corporate","41":"corporate","42":"corporate","43":"corporate","44":"corporate","45":"corporate","46":"corporate","47":"corporate","48":"corporate","49":"corporate","50":"corporate","51":"corporate","52":"corporate","53":"corporate","54":"corporate","55":"corporate","56":"corporate","57":"corporate","58":"corporate","59":"corporate","60":"corporate","61":"corporate","62":"non-corporate","63":"non-corporate","64":"non-corporate","65":"non-corporate","66":"non-corporate","67":"non-corporate","68":"non-corporate","69":"non-corporate","70":"non-corporate","71":"non-corporate","72":"non-corporate","73":"non-corporate","74":"non-corporate","75":"non-corporate","76":"non-corporate","77":"non-corporate","78":"non-corporate","79":"non-corporate","80":"non-corporate","81":"non-corporate","82":"non-corporate","83":"non-corporate","84":"non-corporate","85":"non-corporate","86":"non-corporate","87":"non-corporate","88":"non-corporate","89":"non-corporate","90":"non-corporate","91":"non-corporate","92":"non-corporate","93":"non-corporate","94":"non-corporate","95":"non-corporate","96":"non-corporate","97":"non-corporate","98":"non-corporate","99":"non-corporate","100":"non-corporate","101":"non-corporate","102":"non-corporate","103":"non-corporate","104":"non-corporate","105":"non-corporate","106":"non-corporate","107":"non-corporate","108":"non-corporate","109":"non-corporate","110":"non-corporate","111":"non-corporate","112":"non-corporate","113":"non-corporate","114":"non-corporate","115":"non-corporate","116":"non-corporate","117":"non-corporate","118":"non-corporate","119":"non-corporate","120":"non-corporate","121":"non-corporate","122":"non-corporate","123":"non-corporate","124":"corporate","125":"corporate","126":"corporate","127":"corporate","130":"corporate","131":"corporate","132":"corporate","133":"corporate","134":"corporate","135":"corporate","136":"corporate","137":"corporate","138":"corporate","140":"corporate","143":"non-corporate","144":"non-corporate","145":"non-corporate","146":"non-corporate","149":"non-corporate","150":"non-corporate","151":"non-corporate","152":"non-corporate","153":"non-corporate","154":"non-corporate","155":"non-corporate","156":"non-corporate","157":"non-corporate","159":"non-corporate","162":"corporate","163":"non-corporate"},"tax_wedge_d":{"0":0.0065709035,"1":0.0044222402,"2":0.0012712081,"3":0.0006241549,"4":0.0029889055,"5":0.003559424,"6":0.0010965129,"7":0.0018462312,"8":0.0032655582,"9":0.0047448103,"10":0.0022264685,"11":0.0051666676,"12":0.0038528482,"13":0.0066860192,"14":0.0030604711,"15":0.0041150334,"16":0.0040810091,"17":0.0040374497,"18":0.0011516588,"19":-0.0008321559,"20":-0.0008133902,"21":-0.0003454961,"22":0.0048654161,"23":0.0038928506,"24":0.0044928148,"25":0.006146184,"26":0.0048266719,"27":0.0024887465,"28":0.0023494361,"29":0.0044117899,"30":0.0011421922,"31":0.0029160086,"32":0.0040027134,"33":0.0035703674,"34":0.0030729797,"35":0.0029948094,"36":0.0018033417,"37":0.0040968459,"38":0.0025980368,"39":0.0044256259,"40":0.0043015272,"41":0.0031136562,"42":-0.0011985546,"43":0.0014674377,"44":-0.0007180926,"45":0.0039261636,"46":0.0034022607,"47":0.0009094939,"48":0.0017072411,"49":0.0063346353,"50":-0.00098459,"51":0.0060696858,"52":0.0002149565,"53":-0.0016051744,"54":-0.0002800484,"55":0.0004355071,"56":0.0026270648,"57":-0.0011955031,"58":0.0004319456,"59":0.0049499728,"60":-0.0015720694,"61":0.0057017579,"62":0.0114416653,"63":0.0091039856,"64":0.0064011493,"65":0.0054597501,"66":0.0085063325,"67":0.0102387118,"68":0.0060425374,"69":0.0068526321,"70":0.0088908268,"71":0.0097137335,"72":0.007769445,"73":0.0107324302,"74":0.00902721,"75":0.0116231019,"76":0.0080552477,"77":0.0090807345,"78":0.0090670472,"79":0.0091211422,"80":0.0068339491,"81":0.0044307921,"82":0.0044952961,"83":0.0050672324,"84":0.009832165,"85":0.0093769921,"86":0.0097198909,"87":0.0111474344,"88":0.0098961028,"89":0.0078262423,"90":0.0076165159,"91":0.0093684567,"92":0.006522774,"93":0.0085088707,"94":0.0091569317,"95":0.0089992461,"96":0.0084932697,"97":0.0087440421,"98":0.0070257563,"99":0.0095864662,"100":0.0080728399,"101":0.010004118,"102":0.0095897105,"103":0.0086692054,"104":0.0039616839,"105":0.0068966174,"106":0.0044452839,"107":0.0088053512,"108":0.0084534862,"109":0.0059592773,"110":0.0067689236,"111":0.0112946836,"112":0.0042819,"113":0.011787693,"114":0.0053239659,"115":0.0035472751,"116":0.0048526639,"117":0.0054479892,"118":0.0076324432,"119":0.0039264356,"120":0.005514001,"121":0.0098719184,"122":0.0036592766,"123":0.0117717733,"124":0.0057015944,"125":0.0010157623,"126":0.0030386546,"127":0.0015188436,"130":0.003011522,"131":0.0038430573,"132":-0.0005729338,"133":0.0048654161,"134":0.002829053,"135":-0.0008261338,"136":0.0039261636,"137":0.0011792626,"138":0.0056846756,"140":-0.0003450178,"143":0.010763136,"144":0.0060800361,"145":0.008867133,"146":0.0064860882,"149":0.0099789592,"150":0.0088439877,"151":0.0046629425,"152":0.009832165,"153":0.0082133171,"154":0.0043930019,"155":0.0088053512,"156":0.0062495071,"157":0.0111679587,"159":0.0049725167,"162":0.0025721036,"163":0.0101816466},"tax_wedge_e":{"0":0.0204324269,"1":0.0166741303,"2":0.0112629247,"3":0.0101900689,"4":0.0139811275,"5":0.0153716197,"6":0.0110549053,"7":0.0123307763,"8":0.0145626686,"9":0.0175617278,"10":0.012873783,"11":0.0180074761,"12":0.0156296923,"13":0.020639934,"14":0.0143922488,"15":0.0164571897,"16":0.0162826827,"17":0.0160949161,"18":0.0110098321,"19":0.0076070964,"20":0.0076807878,"21":0.0085049004,"22":0.0174722678,"23":0.0153678448,"24":0.0163663665,"25":0.0189320202,"26":0.0169994233,"27":0.013075713,"28":0.012850246,"29":0.0165654344,"30":0.0108267847,"31":0.0136999618,"32":0.0158054192,"33":0.0148208783,"34":0.0139764773,"35":0.013811072,"36":0.0119509729,"37":0.0156538127,"38":0.0131798492,"39":0.0160701427,"40":0.0160485888,"41":0.014023189,"42":0.0069965436,"43":0.011532215,"44":0.0078014888,"45":0.0160958095,"46":0.0149037399,"47":0.0105732626,"48":0.0119549367,"49":0.0204509567,"50":0.007397822,"51":0.0192274097,"52":0.009452508,"53":0.00634273,"54":0.0085960406,"55":0.0098080859,"56":0.0135942946,"57":0.0070252587,"58":0.009842761,"59":0.0176526609,"60":0.0063790035,"61":0.0182145765,"62":0.0126472645,"63":0.0090350702,"64":0.0049285257,"65":0.0034967083,"66":0.0080102858,"67":0.0110840377,"68":0.0044346987,"69":0.0056737452,"70":0.0088353631,"71":0.0102385989,"72":0.0069630654,"73":0.0116485176,"74":0.0089271302,"75":0.0130221868,"76":0.0075004199,"77":0.0092528455,"78":0.0091500383,"79":0.00917698,"80":0.0055617996,"81":0.001861732,"82":0.0019934297,"83":0.0029086626,"84":0.0101936705,"85":0.0091460858,"86":0.00967594,"87":0.01169754,"88":0.0100076512,"89":0.0068658228,"90":0.0065632149,"91":0.0093417488,"92":0.0049242514,"93":0.0078119976,"94":0.0089970079,"95":0.0085634645,"96":0.0078067499,"97":0.0081397363,"98":0.0056882386,"99":0.0093976825,"100":0.0071744135,"101":0.0099372646,"102":0.0094528628,"103":0.0080290906,"104":0.0011714346,"105":0.0056940448,"106":0.0019121816,"107":0.0088066267,"108":0.0080668512,"109":0.0042178904,"110":0.0054636817,"111":0.0127969204,"112":0.0016829912,"113":0.0127670839,"114":0.0032736852,"115":0.0005644676,"116":0.0025483083,"117":0.0034465998,"118":0.0068124114,"119":0.0011297024,"120":0.0035759109,"121":0.0102952114,"122":0.0007232157,"123":0.0125284175,"124":0.0189118902,"125":0.0108393792,"126":0.0141023782,"127":0.0117736278,"130":0.0142260062,"131":0.0159087473,"132":0.0080840146,"133":0.0174722678,"134":0.0136278696,"135":0.0076291576,"136":0.0160958095,"137":0.0110413337,"138":0.0192918161,"140":0.0084966819,"143":0.0115987978,"144":0.0044401299,"145":0.0086504523,"146":0.0051131134,"149":0.010451548,"150":0.0088364476,"151":0.0022451796,"152":0.0101936705,"153":0.0074226835,"154":0.001835726,"155":0.0088066267,"156":0.0046653521,"157":0.0125960854,"159":0.0027408299,"162":0.0134538542,"163":0.0109173698},"tax_wedge_mix":{"0":0.0159775476,"1":0.0127335808,"2":0.0080521284,"3":0.0071227866,"4":0.0104653564,"5":0.0115871732,"6":0.0078545562,"7":0.0089685202,"8":0.0109436372,"9":0.0134150569,"10":0.0094465036,"11":0.0138795421,"12":0.01183459,"13":0.0161416695,"14":0.0107389072,"15":0.0124686558,"16":0.0123398329,"17":0.0122063165,"18":0.0078459377,"19":0.0049045183,"20":0.0049586538,"21":0.0056654799,"22":0.0134134223,"23":0.0116861315,"24":0.0125491822,"25":0.0148278949,"26":0.0130918135,"27":0.0096788928,"28":0.0094783645,"29":0.0126709519,"30":0.0077228463,"31":0.0102411057,"32":0.0120200131,"33":0.0112102449,"34":0.010478505,"35":0.0103429645,"36":0.0086949048,"37":0.0119470688,"38":0.009787105,"39":0.0123380685,"40":0.012277411,"41":0.0105252444,"42":0.0043717277,"43":0.0083059186,"44":0.0050725933,"45":0.0121632974,"46":0.0111978276,"47":0.0074703569,"48":0.0086601828,"49":0.0159191863,"50":0.0047131293,"51":0.0149990955,"52":0.0064854823,"53":0.0037992868,"54":0.0057490412,"55":0.0068029835,"56":0.0100619227,"57":0.0043909487,"58":0.0068227115,"59":0.0135557308,"60":0.0038338724,"61":0.0142039524,"62":0.0122836254,"63":0.0090419418,"64":0.0053478741,"65":0.0040622447,"66":0.0081550841,"67":0.0108376633,"68":0.0048928898,"69":0.0060113967,"70":0.0088494057,"71":0.0100601736,"72":0.0071864092,"73":0.0113754467,"74":0.0089416804,"75":0.012599078,"76":0.0076454808,"77":0.009180176,"78":0.0091037889,"79":0.0091439678,"80":0.0059259542,"81":0.0026056404,"82":0.0027167424,"83":0.0035306078,"84":0.010074266,"85":0.0092081624,"86":0.0096790591,"87":0.0115306861,"88":0.0099682423,"89":0.0071394491,"90":0.0068621948,"91":0.0093462995,"92":0.0053851927,"93":0.0080101141,"94":0.0090385978,"95":0.0086843845,"96":0.0080011802,"97":0.008311791,"98":0.0060711398,"99":0.0094482051,"100":0.0074315621,"101":0.0099540075,"102":0.0094860147,"103":0.0082113123,"104":0.0019792121,"105":0.0060397194,"106":0.0026452184,"107":0.0087837189,"108":0.0081644045,"109":0.004716735,"110":0.0058332155,"111":0.0123533824,"112":0.0024353667,"113":0.0124759247,"114":0.0038619021,"115":0.0014294176,"116":0.0032127279,"117":0.004023529,"118":0.0070368773,"119":0.0019386241,"120":0.004132975,"121":0.0101533939,"122":0.0015742238,"123":0.0123075155,"124":0.0146650991,"125":0.0076852398,"126":0.0105631786,"127":0.0084820735,"130":0.010615614,"131":0.0120121172,"132":0.0053093013,"133":0.0134134223,"134":0.0101647385,"135":0.0049206612,"136":0.0121632974,"137":0.0078733255,"138":0.0149240693,"140":0.0056609719,"143":0.0113427022,"144":0.0049093433,"145":0.0087137816,"146":0.0055053055,"149":0.0103047637,"150":0.0088177966,"151":0.0029440547,"152":0.010074266,"153":0.007647971,"154":0.0025757034,"155":0.0087837189,"156":0.0051176095,"157":0.0121741583,"159":0.003383797,"162":0.009960663,"163":0.0106960338},"ucc_d":{"0":0.0628682846,"1":0.0909800167,"2":0.1851454938,"3":0.0835195403,"4":0.0752745677,"5":0.0846094175,"6":0.1107207864,"7":0.0769321873,"8":0.1056577352,"9":0.0833454994,"10":0.1511204864,"11":0.0989675439,"12":0.1532664313,"13":0.0624501679,"14":0.1140423225,"15":0.0891602014,"16":0.0878191682,"17":0.0904671667,"18":0.1762303022,"19":0.1361657926,"20":0.1041997199,"21":0.2444778438,"22":0.1149563847,"23":0.0991888706,"24":0.0953754847,"25":0.0800123387,"26":0.0894069894,"27":0.111528853,"28":0.1244009069,"29":0.0815575967,"30":0.11721729,"31":0.1126853201,"32":0.0939517437,"33":0.0992135981,"34":0.1108128295,"35":0.1181831345,"36":0.1863913567,"37":0.1073929267,"38":0.146920307,"39":0.1164264585,"40":0.1038560622,"41":0.1215527624,"42":0.1068365346,"43":0.0914493152,"44":0.1298236481,"45":0.0815778483,"46":0.1387365093,"47":0.1826580695,"48":0.2365844189,"49":0.0462195448,"50":0.1698177009,"51":0.0771667238,"52":0.1087360867,"53":0.0635009313,"54":0.1040883329,"55":0.1641094413,"56":0.1175688811,"57":0.087300118,"58":0.0987656287,"59":0.0831751601,"60":0.0749573096,"61":0.0945918874,"62":0.0683787839,"63":0.0975016128,"64":0.1836267204,"65":0.0855697652,"66":0.0718243674,"67":0.0615548615,"68":0.1125290819,"69":0.0776085314,"70":0.0918503617,"71":0.083678614,"72":0.142052212,"73":0.0814909598,"74":0.1466359392,"75":0.0606644781,"76":0.1146470061,"77":0.0898186881,"78":0.0880742123,"79":0.0886705076,"80":0.1628724278,"81":0.1350047721,"82":0.1031425155,"83":0.235608159,"84":0.1166084914,"85":0.0941053411,"86":0.0927282453,"87":0.0794406962,"88":0.0886852813,"89":0.1089065869,"90":0.1221294192,"91":0.0841602353,"92":0.1146084423,"93":0.1066196484,"94":0.0934082146,"95":0.0955431425,"96":0.1067743629,"97":0.1095340286,"98":0.1838548144,"99":0.1019032549,"100":0.140315956,"101":0.1077700571,"102":0.1010170595,"103":0.1155089415,"104":0.1068141663,"105":0.0877675905,"106":0.1291958873,"107":0.0832454334,"108":0.1375067386,"109":0.1826020641,"110":0.2354441856,"111":0.0463885136,"112":0.1677820095,"113":0.0698613086,"114":0.10886148,"115":0.0638286294,"116":0.1041480604,"117":0.1658023431,"118":0.1182214208,"119":0.0876469323,"120":0.0991656529,"121":0.0843879834,"122":0.0749293844,"123":0.0780623333,"124":0.0742417674,"125":0.1450252672,"126":0.0760885648,"127":0.0916870223,"130":0.1435245414,"131":0.0954233199,"132":0.1254718092,"133":0.1149563847,"134":0.120118061,"135":0.1067288308,"136":0.0815778483,"137":0.1872549117,"138":0.0571952718,"140":0.0945241072,"143":0.0768319056,"144":0.1501792939,"145":0.0696855501,"146":0.0934090455,"149":0.0987773916,"150":0.0954115995,"151":0.1207521998,"152":0.1166084914,"153":0.114821445,"154":0.1060270613,"155":0.0832454334,"156":0.184975049,"157":0.0485821624,"159":0.0978504726,"162":0.0988567214,"163":0.0665088672},"ucc_e":{"0":0.0943201374,"1":0.1208222361,"2":0.2127275397,"3":0.1106757837,"4":0.103857119,"5":0.1140119425,"6":0.138269508,"7":0.1050070617,"8":0.134545175,"9":0.1137527462,"10":0.1793581302,"11":0.1293986816,"12":0.1826336047,"13":0.0939944121,"14":0.1429644296,"15":0.119092687,"16":0.1176111712,"17":0.1201149624,"18":0.2036788049,"19":0.1621953743,"20":0.1302842273,"21":0.2709185697,"22":0.1451535659,"23":0.1282541942,"24":0.1248393657,"25":0.1103885043,"26":0.1191700701,"27":0.1397061489,"28":0.1524920461,"29":0.1113015705,"30":0.1444922117,"31":0.1410596026,"32":0.1233447789,"33":0.1280544383,"34":0.1393066565,"35":0.1465897264,"36":0.2141293172,"37":0.1365402228,"38":0.1750924488,"39":0.1456613047,"40":0.1331934532,"41":0.1500526246,"42":0.1326219622,"43":0.1191044219,"44":0.1559335587,"45":0.1113378236,"46":0.1678283178,"47":0.2099121676,"48":0.2644224439,"49":0.0779261955,"50":0.1957904423,"51":0.107914777,"52":0.1355639675,"53":0.089039165,"54":0.1305547513,"55":0.1910723494,"56":0.1461264402,"57":0.1131112091,"58":0.1257667734,"59":0.1134681776,"60":0.1004987118,"61":0.1246950354,"62":0.0919057066,"63":0.1197540207,"64":0.2044754202,"65":0.1059280467,"66":0.0936496441,"67":0.0847215108,"68":0.1332425666,"69":0.0987509679,"70":0.1141162213,"71":0.1065248027,"72":0.1635671556,"73":0.1047283706,"74":0.1688571828,"75":0.0843848864,"76":0.1364135016,"77":0.1123121225,"78":0.1104785268,"79":0.1110476687,"80":0.1839216017,"81":0.1547570354,"82":0.1229619725,"83":0.2557709126,"84":0.1392913202,"85":0.1161957582,"86":0.1150056177,"87":0.1023121252,"88":0.111118153,"89":0.1302674907,"90":0.1433974416,"91":0.1064548508,"92":0.1353312431,"93":0.1282440987,"94":0.1155696143,"95":0.1174286842,"96":0.1284091665,"97":0.1312510462,"98":0.2048386202,"99":0.1240357945,"100":0.161738853,"101":0.1300245271,"102":0.1232015352,"103":0.1371901501,"104":0.1263452404,"105":0.1088863413,"106":0.1489841083,"107":0.1055680323,"108":0.159441427,"109":0.2031820006,"110":0.256460267,"111":0.0702120737,"112":0.187504424,"113":0.0931620228,"114":0.1291325226,"115":0.0831671453,"116":0.1241650282,"117":0.1861222771,"118":0.1397227124,"119":0.1071715225,"120":0.1195488862,"121":0.1071325998,"122":0.0943146469,"123":0.1011403008,"124":0.1050423925,"125":0.1724392134,"126":0.1047426177,"127":0.1195321358,"130":0.1723293549,"131":0.1250793393,"132":0.151719087,"133":0.1451535659,"134":0.1485072069,"135":0.1327744515,"136":0.1113378236,"137":0.2147073121,"138":0.0883927416,"140":0.1209561363,"143":0.0999888907,"144":0.170860711,"145":0.0917901928,"146":0.114357394,"149":0.1215713037,"150":0.1177253828,"151":0.1406557602,"152":0.1392913202,"153":0.1363521347,"154":0.1257911088,"155":0.1055680323,"156":0.2057122175,"157":0.0723316125,"159":0.1179401092,"162":0.1273288013,"163":0.0895659137},"ucc_mix":{"0":0.0842363527,"1":0.1112527812,"2":0.203887838,"3":0.101979596,"4":0.0947124424,"5":0.1045985907,"6":0.1294402536,"7":0.0960159002,"8":0.1252972381,"9":0.10397717,"10":0.1703019454,"11":0.1196418423,"12":0.173209597,"13":0.0838672422,"14":0.1336821826,"15":0.1094752478,"16":0.1080394159,"17":0.1105974574,"18":0.1948860051,"19":0.1538638908,"20":0.1219331879,"21":0.2624502438,"22":0.135465815,"23":0.1189435755,"24":0.115393276,"25":0.1006554736,"26":0.109633555,"27":0.1306804233,"28":0.1434912592,"29":0.1017781826,"30":0.1357593679,"31":0.1319718411,"32":0.1139304674,"33":0.1188148995,"34":0.1301797788,"35":0.1374927136,"36":0.2052443437,"37":0.1272045735,"38":0.1660707991,"39":0.1363003251,"40":0.1237933699,"41":0.1409257745,"42":0.1243682408,"43":0.1102492201,"44":0.1475757579,"45":0.1017764062,"46":0.1584935001,"47":0.2011803565,"48":0.2554987846,"49":0.0677655198,"50":0.1874768442,"51":0.0980575575,"52":0.1269680364,"53":0.0808668164,"54":0.1220788465,"55":0.1824383416,"56":0.1369651629,"57":0.1048479937,"58":0.1171178184,"59":0.1037423421,"60":0.0923246753,"61":0.1150555058,"62":0.0850688837,"63":0.1132877086,"64":0.1984215849,"65":0.1000203993,"66":0.0873212587,"67":0.0780019527,"68":0.1272275739,"69":0.0926154356,"70":0.1076570801,"71":0.0998731936,"72":0.1573173157,"73":0.0979821159,"74":0.1623985493,"75":0.0774885939,"76":0.1300853788,"77":0.1057662691,"78":0.1039590936,"79":0.1045414727,"80":0.1778125726,"81":0.14902776,"82":0.1172121014,"83":0.249919674,"84":0.132698732,"85":0.109784651,"86":0.1085355531,"87":0.0956720875,"88":0.1046055604,"89":0.1240679333,"90":0.1372232377,"91":0.0999862178,"92":0.1293190006,"93":0.1219690314,"94":0.1091380203,"95":0.1110764204,"96":0.1221304131,"97":0.1249499171,"98":0.1987483375,"99":0.1176131334,"100":0.1555228177,"101":0.1235680862,"102":0.1167615034,"103":0.1308991879,"104":0.1206798341,"105":0.1027588321,"106":0.1432439613,"107":0.0990719407,"108":0.1530657965,"109":0.1972076614,"110":0.250356617,"111":0.063295352,"112":0.1817836157,"113":0.0863976799,"114":0.1232475558,"115":0.0775589115,"116":0.118356264,"117":0.1802260226,"118":0.1334739945,"119":0.1015072604,"120":0.1136327665,"121":0.1005175985,"122":0.0886924712,"123":0.0944462151,"124":0.0951666961,"125":0.1636561686,"126":0.0955745127,"127":0.1106116761,"130":0.1630900573,"131":0.1155538038,"132":0.1433154682,"133":0.135465815,"134":0.1394151704,"135":0.1244370497,"136":0.1017764062,"137":0.2059103986,"138":0.0783960895,"140":0.1124915208,"143":0.0932596114,"144":0.1648567407,"145":0.0853803383,"146":0.1082764024,"149":0.1149513356,"150":0.111233548,"151":0.1348814515,"152":0.132698732,"153":0.1301042385,"154":0.1200579024,"155":0.0990719407,"156":0.199691291,"157":0.0654365016,"159":0.1121098925,"162":0.1182067047,"163":0.082871394},"z_d":{"0":0.2532274929,"1":0.4856009889,"2":0.7597648966,"3":0.771510709,"4":0.5032152972,"5":0.4232388199,"6":0.7542758943,"7":0.645229316,"8":0.5002068956,"9":0.5103108568,"10":0.717235413,"11":0.3844606379,"12":0.6045662157,"13":0.3214153639,"14":0.6505232277,"15":0.5427231807,"16":0.5760500263,"17":0.5620943041,"18":0.7575528205,"19":0.9064313709,"20":0.9129157403,"21":0.8814373194,"22":0.4640052889,"23":0.5455302356,"24":0.5603624903,"25":0.3763621003,"26":0.466952784,"27":0.6676777985,"28":0.7041058731,"29":0.3960859581,"30":0.7575489942,"31":0.6310956746,"32":0.480363167,"33":0.5855351075,"34":0.6201352767,"35":0.6133937831,"36":0.7257396339,"37":0.5171577213,"38":0.6463783064,"39":0.4883953419,"40":0.5268468915,"41":0.601599314,"42":0.9486881529,"43":0.7050015285,"44":0.9011142716,"45":0.5440699152,"46":0.6296375192,"47":0.7937820329,"48":0.7415685916,"49":0.1154518334,"50":0.9154269473,"51":0.3369327853,"52":0.8502050444,"53":0.9625710712,"54":0.8753656691,"55":0.8057180601,"56":0.6842069026,"57":0.9497031771,"58":0.8080534436,"59":0.4854503647,"60":0.9676723784,"61":0.3485967387,"62":0.3148299151,"63":0.5459640365,"64":0.7493709604,"65":0.8023133779,"66":0.4465416016,"67":0.1949805818,"68":0.7697055291,"69":0.6512570512,"70":0.3914261567,"71":0.5095989622,"72":0.6543113118,"73":0.2647645043,"74":0.5660748652,"75":0.2896490708,"76":0.6522056155,"77":0.545713673,"78":0.574441766,"79":0.5374641292,"80":0.6799144774,"81":0.8913232152,"82":0.8915037704,"83":0.8410538494,"84":0.4714962395,"85":0.4924227582,"86":0.5280128708,"87":0.3674540017,"88":0.4562563034,"89":0.6381344782,"90":0.6807913162,"91":0.4178646467,"92":0.7269112263,"93":0.5723821465,"94":0.471426501,"95":0.5429483665,"96":0.579459352,"97":0.539322095,"98":0.7105500666,"99":0.4695482817,"100":0.6026289508,"101":0.4279458687,"102":0.498531998,"103":0.5518216381,"104":0.942710322,"105":0.6488611475,"106":0.8910012747,"107":0.5619063721,"108":0.618746472,"109":0.791225236,"110":0.7353702373,"111":0.111803989,"112":0.8980242199,"113":0.2595032221,"114":0.8467922526,"115":0.9596003136,"116":0.8707510868,"117":0.8141996809,"118":0.6863555001,"119":0.9487478527,"120":0.8082723247,"121":0.4953464114,"122":0.9554198048,"123":0.2334039138,"124":0.3472414779,"125":0.7644019469,"126":0.4962413634,"127":0.692847871,"130":0.6469114891,"131":0.5728540352,"132":0.8930887076,"133":0.4640052889,"134":0.6209489011,"135":0.9143569465,"136":0.5440699152,"137":0.7760617987,"138":0.1864909875,"140":0.8772404827,"143":0.3819183447,"144":0.7674297265,"145":0.3941492986,"146":0.7048514769,"149":0.3844705566,"150":0.5718318043,"151":0.8752356034,"152":0.4714962395,"153":0.5884526805,"154":0.8992668119,"155":0.5619063721,"156":0.7711704209,"157":0.1260114311,"159":0.8597571401,"162":0.6095413425,"163":0.281257366},"z_e":{"0":0.2027746368,"1":0.4361240946,"2":0.7283096878,"3":0.7562229233,"4":0.5032152972,"5":0.4118697451,"6":0.7251116737,"7":0.6270026572,"8":0.4878831056,"9":0.4207352499,"10":0.6693939052,"11":0.3384990042,"12":0.5403152195,"13":0.243973079,"14":0.5903739598,"15":0.4655960627,"16":0.4966324358,"17":0.4956297471,"18":0.7335464084,"19":0.9008080989,"20":0.9030636938,"21":0.8647410386,"22":0.4047596123,"23":0.5133354151,"24":0.507209551,"25":0.3347499337,"26":0.4276841077,"27":0.6389251318,"28":0.6687946757,"29":0.3780655843,"30":0.7413036209,"31":0.6039126677,"32":0.453419655,"33":0.5515805043,"34":0.5909334051,"35":0.589422404,"36":0.6989446523,"37":0.4886650074,"38":0.6233952511,"39":0.4643163662,"40":0.4883128026,"41":0.5772468654,"42":0.9418229701,"43":0.6880307219,"44":0.8936867224,"45":0.4762238415,"46":0.5696438301,"47":0.7673432264,"48":0.7042547948,"49":0.0921097155,"50":0.909742455,"51":0.2900705541,"52":0.8252023572,"53":0.9622557774,"54":0.8595095599,"55":0.7894292377,"56":0.6313943326,"57":0.9409699122,"58":0.7881905977,"59":0.4134264082,"60":0.9656333114,"61":0.3253879588,"62":0.2648285626,"63":0.5017093847,"64":0.724719113,"65":0.7896865008,"66":0.4465416016,"67":0.1908201128,"68":0.7460594068,"69":0.6366430578,"70":0.3837660351,"71":0.4383300029,"72":0.6196145193,"73":0.2395743381,"74":0.5182095897,"75":0.2339711587,"76":0.6042387835,"77":0.4839660368,"78":0.5113913261,"79":0.4868905821,"80":0.662797684,"81":0.8869326671,"82":0.8838638598,"83":0.8284008432,"84":0.423576862,"85":0.4693234145,"86":0.4881734717,"87":0.3351269629,"88":0.4257424249,"89":0.6162982663,"90":0.6536578817,"91":0.4027574011,"92":0.7145299896,"93":0.5527917897,"94":0.4504096775,"95":0.5179224753,"96":0.5577754935,"97":0.5225757246,"98":0.6897067352,"99":0.4489869671,"100":0.585605061,"101":0.4111785295,"102":0.4695403801,"103":0.5340729941,"104":0.9372934889,"105":0.6364545999,"106":0.8851696243,"107":0.5063551194,"108":0.5718498544,"109":0.7702885117,"110":0.7059638335,"111":0.0939786232,"112":0.8935964439,"113":0.2307674799,"114":0.8270101494,"115":0.9593507679,"116":0.8582244217,"117":0.8011262269,"118":0.644229196,"119":0.9418200516,"120":0.7924907504,"121":0.436823894,"122":0.9538213842,"123":0.2210501851,"124":0.2971834778,"125":0.7393293663,"126":0.4952499822,"127":0.6698449882,"130":0.5948680359,"131":0.5003481907,"132":0.8818836776,"133":0.4047596123,"134":0.5960643609,"135":0.906179856,"136":0.4762238415,"137":0.7459728761,"138":0.1647168969,"140":0.8623116343,"143":0.3335850156,"144":0.7468796209,"145":0.3932828028,"146":0.6861507128,"149":0.3520789358,"150":0.513722796,"151":0.8673447181,"152":0.423576862,"153":0.5696786941,"154":0.8928808667,"155":0.5063551194,"156":0.7472081292,"157":0.1084281673,"159":0.8462259787,"162":0.5832345238,"163":0.2601646308},"z_mix":{"0":0.2162881982,"1":0.4493762492,"2":0.7367348183,"3":0.7603176852,"4":0.5032152972,"5":0.4149148986,"6":0.7329231737,"7":0.6318845825,"8":0.4911839917,"9":0.4447287882,"10":0.6822080292,"11":0.3508096127,"12":0.5575245482,"13":0.2647156326,"14":0.6064846597,"15":0.4862542111,"16":0.5179048076,"17":0.5134359587,"18":0.7399764135,"19":0.902314266,"20":0.9057025262,"21":0.8692130592,"22":0.4206282895,"23":0.5219586471,"24":0.521446317,"25":0.3458955578,"26":0.4382020389,"27":0.646626399,"28":0.6782526147,"29":0.3828922571,"30":0.7456548681,"31":0.6111935089,"32":0.4606363486,"33":0.5606750859,"34":0.5987549898,"35":0.5958430257,"36":0.7061215627,"37":0.4962966474,"38":0.6295511549,"39":0.4707658072,"40":0.498633978,"41":0.5837695548,"42":0.9436617772,"43":0.6925762731,"44":0.8956761567,"45":0.4946961609,"46":0.585712859,"47":0.774424737,"48":0.7142491206,"49":0.0985326619,"50":0.9112650197,"51":0.3026223834,"52":0.83189921,"53":0.9623402274,"54":0.8637565445,"55":0.7937921226,"56":0.6455399324,"57":0.9433090764,"58":0.793510768,"59":0.4327176879,"60":0.966179466,"61":0.3316043219,"62":0.2774260112,"63":0.5128589971,"64":0.7309299526,"65":0.7928677434,"66":0.4465416016,"67":0.1918683104,"68":0.7520168619,"69":0.6403249388,"70":0.38569595,"71":0.4562863021,"72":0.628356104,"73":0.2459208029,"74":0.5302688704,"75":0.247998772,"76":0.6163236506,"77":0.4995228756,"78":0.5272768112,"79":0.4996343637,"80":0.6671101258,"81":0.8880388313,"82":0.8857886797,"83":0.8315886689,"84":0.4356497733,"85":0.475143113,"86":0.4982106958,"87":0.3432715068,"88":0.4334301572,"89":0.6217997286,"90":0.6604939377,"91":0.4065635532,"92":0.717649345,"93":0.5577274264,"94":0.4557047013,"95":0.5242275523,"96":0.5632385716,"97":0.5267948412,"98":0.694958049,"99":0.4541672291,"100":0.5898940965,"101":0.4154029291,"102":0.4768445908,"103":0.5385446258,"104":0.9386582175,"105":0.6395803323,"106":0.8866388629,"107":0.5205273033,"108":0.5836650894,"109":0.7755633552,"110":0.7133725463,"111":0.0985633363,"112":0.8947119874,"113":0.2380072247,"114":0.8319940952,"115":0.959413639,"116":0.8613804167,"117":0.804419981,"118":0.6548425878,"119":0.9435654567,"120":0.7964667942,"121":0.4515681832,"122":0.9542240937,"123":0.2241626102,"124":0.3105912789,"125":0.7460449397,"126":0.495515519,"127":0.6760062027,"130":0.6088076313,"131":0.5197687704,"132":0.8848848978,"133":0.4206282895,"134":0.6027295685,"135":0.9083700514,"136":0.4946961609,"137":0.7540320532,"138":0.170704681,"140":0.8663102565,"143":0.3457622188,"144":0.7520570588,"145":0.3935011097,"146":0.6908622237,"149":0.3602397506,"150":0.5283630377,"151":0.8693327678,"152":0.4356497733,"153":0.5744086527,"154":0.8944897555,"155":0.5205273033,"156":0.7532452407,"157":0.1129501906,"159":0.8496350487,"162":0.5903054905,"163":0.2655393972}} \ No newline at end of file From d648040cbb05fb4077e1ba53c01cc5e013754927 Mon Sep 17 00:00:00 2001 From: jdebacker Date: Sun, 15 Sep 2024 18:08:17 -0400 Subject: [PATCH 10/10] update test value for new taxcalc --- ccc/tests/test_calculator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ccc/tests/test_calculator.py b/ccc/tests/test_calculator.py index f893c755..67904b47 100644 --- a/ccc/tests/test_calculator.py +++ b/ccc/tests/test_calculator.py @@ -334,7 +334,7 @@ def test_p_param_return_value(): dp = DepreciationParams() calc1 = Calculator(p, dp, assets) obj = calc1.p_param("tau_int") - assert np.allclose(obj, np.array([0.31391843])) + assert np.allclose(obj, np.array([0.31334561])) def test_p_param_set_value():